diff --git a/.gitignore b/.gitignore index 076dff94..bc1c6fc9 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,7 @@ sysinfo.txt *.apk *.unitypackage +.Quest App Launcher.exe +.Quest App Launcher_Data + +Logs/ \ No newline at end of file diff --git a/Assets/AssetBundles.meta b/Assets/AssetBundles.meta new file mode 100644 index 00000000..d62f905f --- /dev/null +++ b/Assets/AssetBundles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7d7dd711496223843aa5998ba1a6da1a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor.meta b/Assets/Editor.meta new file mode 100644 index 00000000..b16611db --- /dev/null +++ b/Assets/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 85fdc8774095f444d8379406829a438e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor/BuildAssetBundles.cs b/Assets/Editor/BuildAssetBundles.cs new file mode 100644 index 00000000..bda3ead3 --- /dev/null +++ b/Assets/Editor/BuildAssetBundles.cs @@ -0,0 +1,11 @@ +using UnityEditor; + +public class CreateAssetBundles +{ + + [MenuItem("Assets/Build AssetBundles")] + static void BuildAllAssetBundles() + { + BuildPipeline.BuildAssetBundles("Assets/AssetBundles", BuildAssetBundleOptions.None, BuildTarget.StandaloneWindows64); + } +} \ No newline at end of file diff --git a/Assets/Editor/BuildAssetBundles.cs.meta b/Assets/Editor/BuildAssetBundles.cs.meta new file mode 100644 index 00000000..c032a251 --- /dev/null +++ b/Assets/Editor/BuildAssetBundles.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: bf7b9dfcf6a58934dbef5bfa00749229 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor/PrefabCleanup.cs b/Assets/Editor/PrefabCleanup.cs new file mode 100644 index 00000000..1166af83 --- /dev/null +++ b/Assets/Editor/PrefabCleanup.cs @@ -0,0 +1,50 @@ +#if UNITY_EDITOR +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.SceneManagement; +using UnityEditor; + +public class NullComponentAndMissingPrefabSearchTool +{ + [MenuItem("Tools/Log Missing Prefabs And Components")] + public static void Search() + { + results.Clear(); + GameObject[] gos = SceneManager.GetActiveScene().GetRootGameObjects(); + foreach (GameObject go in gos) Traverse(go.transform); + Debug.Log("> Total Results: " + results.Count); + foreach (string result in results) Debug.Log("> " + result); + } + + private static List results = new List(); + private static void AppendComponentResult(string childPath, int index) + { + results.Add("Missing Component " + index + " of " + childPath); + } + private static void AppendTransformResult(string childPath, string name) + { + results.Add("Missing Prefab for \"" + name + "\" of " + childPath); + } + private static void Traverse(Transform transform, string path = "") + { + string thisPath = path + "/" + transform.name; + Component[] components = transform.GetComponents(); + for (int i = 0; i < components.Length; i++) + { + if (components[i] == null) AppendComponentResult(thisPath, i); + } + for (int c = 0; c < transform.childCount; c++) + { + Transform t = transform.GetChild(c); + PrefabAssetType pt = PrefabUtility.GetPrefabAssetType(t.gameObject); + if (pt == PrefabAssetType.MissingAsset) + { + AppendTransformResult(path + "/" + transform.name, t.name); + } else + { + Traverse(t, thisPath); + } + } + } +} +#endif \ No newline at end of file diff --git a/Assets/Editor/PrefabCleanup.cs.meta b/Assets/Editor/PrefabCleanup.cs.meta new file mode 100644 index 00000000..255578ce --- /dev/null +++ b/Assets/Editor/PrefabCleanup.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 151125b226154f847a86772147b53eae +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/OVRInputSelection/InputSystem/OVRInputHelpers.cs b/Assets/OVRInputSelection/InputSystem/OVRInputHelpers.cs index 21f1c96f..f8706e3b 100644 --- a/Assets/OVRInputSelection/InputSystem/OVRInputHelpers.cs +++ b/Assets/OVRInputSelection/InputSystem/OVRInputHelpers.cs @@ -201,16 +201,6 @@ public static OVRInput.Controller GetConnectedControllers(HandFilter filter = Ha return OVRInput.Controller.LTouch; } - if (((filter & HandFilter.Right) == HandFilter.Right) && (controller & OVRInput.Controller.RTrackedRemote) == OVRInput.Controller.RTrackedRemote) - { - return OVRInput.Controller.RTrackedRemote; - } - - if (((filter & HandFilter.Left) == HandFilter.Left) && (controller & OVRInput.Controller.LTrackedRemote) == OVRInput.Controller.LTrackedRemote) - { - return OVRInput.Controller.LTrackedRemote; - } - controller = OVRInput.Controller.None; if (OVRPlugin.GetHandTrackingEnabled()) { diff --git a/Assets/OVRInputSelection/InputSystem/OVRRawRaycaster.cs b/Assets/OVRInputSelection/InputSystem/OVRRawRaycaster.cs index 56635ec4..3ac4e2c2 100644 --- a/Assets/OVRInputSelection/InputSystem/OVRRawRaycaster.cs +++ b/Assets/OVRInputSelection/InputSystem/OVRRawRaycaster.cs @@ -190,10 +190,8 @@ void ProcessButtonPresses(OVRInput.Controller activeController, bool isLeft, Tra { // Handle selection callbacks. An object is selected if the button selecting it was // pressed AND released while hovering over the object. - if (isLeft && (activeController & OVRInput.Controller.LTouch) != OVRInput.Controller.LTouch && - (activeController & OVRInput.Controller.LTrackedRemote) != OVRInput.Controller.LTrackedRemote || - !isLeft && (activeController & OVRInput.Controller.RTouch) != OVRInput.Controller.RTouch && - (activeController & OVRInput.Controller.RTrackedRemote) != OVRInput.Controller.RTrackedRemote) + if (isLeft && (activeController & OVRInput.Controller.LTouch) != OVRInput.Controller.LTouch || + !isLeft && (activeController & OVRInput.Controller.RTouch) != OVRInput.Controller.RTouch) { return; } diff --git a/Assets/Oculus/AudioManager/Scripts/Audio/AudioManager_Sound.cs b/Assets/Oculus/AudioManager/Scripts/Audio/AudioManager_Sound.cs index 36530e3c..a7c596e7 100644 --- a/Assets/Oculus/AudioManager/Scripts/Audio/AudioManager_Sound.cs +++ b/Assets/Oculus/AudioManager/Scripts/Audio/AudioManager_Sound.cs @@ -53,6 +53,17 @@ public enum Fade { static public bool SoundEnabled { get { return soundEnabled; } } static readonly AnimationCurve defaultReverbZoneMix = new AnimationCurve( new Keyframe[2] { new Keyframe( 0f, 1.0f ), new Keyframe( 1f, 1f ) } ); + + // Calculate the maximum number of emitters that can be running at one time. + static private int CalculateMaxEmittersSize() { + return theAudioManager.maxSoundEmitters + (int)EmitterChannel.Any; + } + + // Verify if this index is valid + static private bool ValidateEmitterIndex(int index) { + return index > -1 && index < CalculateMaxEmittersSize(); + } + /* ----------------------- @@ -79,7 +90,7 @@ void InitializeSoundSystem() { } // we allocate maxSoundEmitters + reserved channels - soundEmitters = new SoundEmitter[maxSoundEmitters+(int)EmitterChannel.Any]; + soundEmitters = new SoundEmitter[CalculateMaxEmittersSize()]; // see if the sound emitters have already been created, if so, nuke it, it shouldn't exist in the scene upon load soundEmitterParent = GameObject.Find( "__SoundEmitters__" ); @@ -90,7 +101,7 @@ void InitializeSoundSystem() { // create them all soundEmitterParent = new GameObject( "__SoundEmitters__" ); - for ( int i = 0; i < maxSoundEmitters + (int)EmitterChannel.Any; i++ ) { + for ( int i = 0; i < CalculateMaxEmittersSize(); i++ ) { GameObject emitterObject = new GameObject( "SoundEmitter_" + i ); emitterObject.transform.parent = soundEmitterParent.transform; emitterObject.transform.position = Vector3.zero; @@ -640,7 +651,7 @@ static public int PlaySoundAt( Vector3 position, AudioClip clip, float volume = ----------------------- */ public static void SetOnFinished( int emitterIdx, System.Action onFinished ) { - if ( emitterIdx >= 0 && emitterIdx < theAudioManager.maxSoundEmitters ) { + if ( ValidateEmitterIndex(emitterIdx) ) { theAudioManager.soundEmitters[emitterIdx].SetOnFinished( onFinished ); } } @@ -651,7 +662,7 @@ public static void SetOnFinished( int emitterIdx, System.Action onFinished ) { ----------------------- */ public static void SetOnFinished( int emitterIdx, System.Action onFinished, object obj ) { - if ( emitterIdx >= 0 && emitterIdx < theAudioManager.maxSoundEmitters ) { + if ( ValidateEmitterIndex(emitterIdx) ) { theAudioManager.soundEmitters[emitterIdx].SetOnFinished( onFinished, obj ); } } diff --git a/Assets/Oculus/OculusProjectConfig.asset b/Assets/Oculus/OculusProjectConfig.asset index aebef11d..392b89e5 100644 --- a/Assets/Oculus/OculusProjectConfig.asset +++ b/Assets/Oculus/OculusProjectConfig.asset @@ -12,9 +12,11 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 05d394ae2a81edd4cbc3c51917e766e3, type: 3} m_Name: OculusProjectConfig m_EditorClassIdentifier: - targetDeviceTypes: 01000000 + targetDeviceTypes: 0100000002000000 handTrackingSupport: 1 - colorGamut: 0 disableBackups: 1 enableNSCConfig: 1 - focusAware: 0 + securityXmlPath: + skipUnneededShaders: 0 + focusAware: 1 + requiresSystemKeyboard: 0 diff --git a/Assets/Oculus/OculusProjectConfig.asset.meta b/Assets/Oculus/OculusProjectConfig.asset.meta index 896b6524..0955017d 100644 --- a/Assets/Oculus/OculusProjectConfig.asset.meta +++ b/Assets/Oculus/OculusProjectConfig.asset.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 -guid: 10ace22946bbe714a9fce09f84fd47b3 +guid: 5bc4850dfd5d50c4a9e4194db309b0f2 NativeFormatImporter: externalObjects: {} - mainObjectFileID: 0 + mainObjectFileID: 11400000 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Oculus/Platform/Editor/Oculus.Platform.Editor.asmdef.meta b/Assets/Oculus/Platform/Editor/Oculus.Platform.Editor.asmdef.meta index a5344a0e..20ae64e2 100644 --- a/Assets/Oculus/Platform/Editor/Oculus.Platform.Editor.asmdef.meta +++ b/Assets/Oculus/Platform/Editor/Oculus.Platform.Editor.asmdef.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ae177491a94151a4899094505be41938 +guid: f4e29993458aabe4783ebc1d4f2b901c AssemblyDefinitionImporter: externalObjects: {} userData: diff --git a/Assets/Oculus/Platform/Editor/OculusPlatformSettingsEditor.cs b/Assets/Oculus/Platform/Editor/OculusPlatformSettingsEditor.cs index 0d549192..6fba0401 100644 --- a/Assets/Oculus/Platform/Editor/OculusPlatformSettingsEditor.cs +++ b/Assets/Oculus/Platform/Editor/OculusPlatformSettingsEditor.cs @@ -102,7 +102,12 @@ public override void OnInspectorGUI() var useStandaloneLabel = "Use Standalone Platform [?]"; var useStandaloneHint = "If this is checked your app will use a debug platform with the User info below. " - + "Otherwise your app will connect to the Oculus Platform. This setting only applies to the Unity Editor"; + + "Otherwise your app will connect to the Oculus Platform. This setting only applies to the Unity Editor on Windows"; + +#if !UNITY_STANDALONE_WIN + PlatformSettings.UseStandalonePlatform = false; + GUI.enabled = false; +#endif PlatformSettings.UseStandalonePlatform = MakeToggle(new GUIContent(useStandaloneLabel, useStandaloneHint), PlatformSettings.UseStandalonePlatform); diff --git a/Assets/Oculus/Platform/Editor/OculusPluginUpdaterStub.cs b/Assets/Oculus/Platform/Editor/OculusPluginUpdaterStub.cs index e758c85d..8f7882d9 100644 --- a/Assets/Oculus/Platform/Editor/OculusPluginUpdaterStub.cs +++ b/Assets/Oculus/Platform/Editor/OculusPluginUpdaterStub.cs @@ -1,24 +1,3 @@ -/************************************************************************************ - -Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. - -Licensed under the Oculus SDK License Version 3.4.1 (the "License"); -you may not use the Oculus SDK except in compliance with the License, -which is provided at the time of installation or download, or which -otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at - -https://developer.oculus.com/licenses/sdk-3.4.1 - -Unless required by applicable law or agreed to in writing, the Oculus SDK -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -************************************************************************************/ - using UnityEngine; using System.Collections; @@ -27,4 +6,3 @@ public class OculusPluginUpdaterStub : ScriptableObject // Stub helper class to locate script paths through Unity Editor API. // Required to be a standalone class in a separate file or else MonoScript.FromScriptableObject() returns an empty string path. } - diff --git a/Assets/Oculus/Platform/Oculus.Platform.asmdef b/Assets/Oculus/Platform/Oculus.Platform.asmdef index 79b6289b..d2298a29 100644 --- a/Assets/Oculus/Platform/Oculus.Platform.asmdef +++ b/Assets/Oculus/Platform/Oculus.Platform.asmdef @@ -17,4 +17,4 @@ "define": "USING_XR_SDK_OCULUS" } ] -} \ No newline at end of file +} diff --git a/Assets/Oculus/Platform/Oculus.Platform.asmdef.meta b/Assets/Oculus/Platform/Oculus.Platform.asmdef.meta index 1a52b09c..4dda67aa 100644 --- a/Assets/Oculus/Platform/Oculus.Platform.asmdef.meta +++ b/Assets/Oculus/Platform/Oculus.Platform.asmdef.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 8c01d52dc9e9c7c41b509ed43aa1d098 +guid: 11a50625806386e41bf68d6c43ed5e9b AssemblyDefinitionImporter: externalObjects: {} userData: diff --git a/Assets/Oculus/Platform/Plugins/Android32/libovrplatformloader.so b/Assets/Oculus/Platform/Plugins/Android32/libovrplatformloader.so index 28ff6fa0..09206563 100644 Binary files a/Assets/Oculus/Platform/Plugins/Android32/libovrplatformloader.so and b/Assets/Oculus/Platform/Plugins/Android32/libovrplatformloader.so differ diff --git a/Assets/Oculus/Platform/Plugins/Android32/libovrplatformloader.so.meta b/Assets/Oculus/Platform/Plugins/Android32/libovrplatformloader.so.meta index 26d12119..81b9bf0f 100644 --- a/Assets/Oculus/Platform/Plugins/Android32/libovrplatformloader.so.meta +++ b/Assets/Oculus/Platform/Plugins/Android32/libovrplatformloader.so.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 18fb0e7057360374fa820eece0d5d112 +guid: 0f6799f68b8632243aecd359ca68d22f PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Plugins/Android64/libovrplatformloader.so b/Assets/Oculus/Platform/Plugins/Android64/libovrplatformloader.so index 1819e11f..4664faac 100644 Binary files a/Assets/Oculus/Platform/Plugins/Android64/libovrplatformloader.so and b/Assets/Oculus/Platform/Plugins/Android64/libovrplatformloader.so differ diff --git a/Assets/Oculus/Platform/Plugins/Android64/libovrplatformloader.so.meta b/Assets/Oculus/Platform/Plugins/Android64/libovrplatformloader.so.meta index 3de8f46b..161b47fc 100644 --- a/Assets/Oculus/Platform/Plugins/Android64/libovrplatformloader.so.meta +++ b/Assets/Oculus/Platform/Plugins/Android64/libovrplatformloader.so.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 456b08f21cd27084d92a877dbf2b9ee5 +guid: be74dd1bddfd5cd41990c3fb63a1103b PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/AbuseReportOptions.cs b/Assets/Oculus/Platform/Scripts/AbuseReportOptions.cs index f10c695d..a632732c 100644 --- a/Assets/Oculus/Platform/Scripts/AbuseReportOptions.cs +++ b/Assets/Oculus/Platform/Scripts/AbuseReportOptions.cs @@ -23,7 +23,7 @@ public void SetReportType(AbuseReportType value) { } - // For passing to native C + /// For passing to native C public static explicit operator IntPtr(AbuseReportOptions options) { return options != null ? options.Handle : IntPtr.Zero; } diff --git a/Assets/Oculus/Platform/Scripts/AbuseReportType.cs b/Assets/Oculus/Platform/Scripts/AbuseReportType.cs index ed582fad..ba7bb79f 100644 --- a/Assets/Oculus/Platform/Scripts/AbuseReportType.cs +++ b/Assets/Oculus/Platform/Scripts/AbuseReportType.cs @@ -10,9 +10,11 @@ public enum AbuseReportType : int [Description("UNKNOWN")] Unknown, + /// A report for something besides a user, like a world. [Description("OBJECT")] Object, + /// A report for a user's behavior or profile. [Description("USER")] User, diff --git a/Assets/Oculus/Platform/Scripts/AbuseReportVideoMode.cs b/Assets/Oculus/Platform/Scripts/AbuseReportVideoMode.cs new file mode 100644 index 00000000..1d9f4837 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/AbuseReportVideoMode.cs @@ -0,0 +1,28 @@ +// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! + +namespace Oculus.Platform +{ + + using Description = System.ComponentModel.DescriptionAttribute; + + public enum AbuseReportVideoMode : int + { + [Description("UNKNOWN")] + Unknown, + + /// The UI will collect video evidence if the object_type supports it. + [Description("COLLECT")] + Collect, + + /// The UI will try to collect video evidence if the object_type supports it, + /// but will allow the user to skip that step if they wish. + [Description("OPTIONAL")] + Optional, + + /// The UI will not collect video evidence. + [Description("SKIP")] + Skip, + + } + +} diff --git a/Assets/Oculus/Platform/Scripts/AbuseReportVideoMode.cs.meta b/Assets/Oculus/Platform/Scripts/AbuseReportVideoMode.cs.meta new file mode 100644 index 00000000..acb86830 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/AbuseReportVideoMode.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 90d15aa6f2984244dbc68baaadac0642 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Platform/Scripts/AdvancedAbuseReportOptions.cs b/Assets/Oculus/Platform/Scripts/AdvancedAbuseReportOptions.cs new file mode 100644 index 00000000..c02d72ba --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/AdvancedAbuseReportOptions.cs @@ -0,0 +1,43 @@ +// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! + +namespace Oculus.Platform +{ + using System; + using System.Collections; + using Oculus.Platform.Models; + using System.Collections.Generic; + using UnityEngine; + + public class AdvancedAbuseReportOptions { + + public AdvancedAbuseReportOptions() { + Handle = CAPI.ovr_AdvancedAbuseReportOptions_Create(); + } + + /// If report_type is content, a string representing the type of content being + /// reported. This should correspond to the object_type string used in the UI + public void SetObjectType(string value) { + CAPI.ovr_AdvancedAbuseReportOptions_SetObjectType(Handle, value); + } + + public void SetReportType(AbuseReportType value) { + CAPI.ovr_AdvancedAbuseReportOptions_SetReportType(Handle, value); + } + + public void SetVideoMode(AbuseReportVideoMode value) { + CAPI.ovr_AdvancedAbuseReportOptions_SetVideoMode(Handle, value); + } + + + /// For passing to native C + public static explicit operator IntPtr(AdvancedAbuseReportOptions options) { + return options != null ? options.Handle : IntPtr.Zero; + } + + ~AdvancedAbuseReportOptions() { + CAPI.ovr_AdvancedAbuseReportOptions_Destroy(Handle); + } + + IntPtr Handle; + } +} diff --git a/Assets/Oculus/Platform/Scripts/AdvancedAbuseReportOptions.cs.meta b/Assets/Oculus/Platform/Scripts/AdvancedAbuseReportOptions.cs.meta new file mode 100644 index 00000000..ae667d43 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/AdvancedAbuseReportOptions.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1e6c74959c674e54e82b50d2ed3ba68f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Platform/Scripts/ApplicationOptions.cs b/Assets/Oculus/Platform/Scripts/ApplicationOptions.cs index 9542bd8c..349793f5 100644 --- a/Assets/Oculus/Platform/Scripts/ApplicationOptions.cs +++ b/Assets/Oculus/Platform/Scripts/ApplicationOptions.cs @@ -14,12 +14,14 @@ public ApplicationOptions() { Handle = CAPI.ovr_ApplicationOptions_Create(); } + /// A message to be passed to a launched app, which can be retrieved with + /// LaunchDetails.GetDeeplinkMessage() public void SetDeeplinkMessage(string value) { CAPI.ovr_ApplicationOptions_SetDeeplinkMessage(Handle, value); } - // For passing to native C + /// For passing to native C public static explicit operator IntPtr(ApplicationOptions options) { return options != null ? options.Handle : IntPtr.Zero; } diff --git a/Assets/Oculus/Platform/Scripts/CAPI.cs b/Assets/Oculus/Platform/Scripts/CAPI.cs index 9a676885..666d100e 100644 --- a/Assets/Oculus/Platform/Scripts/CAPI.cs +++ b/Assets/Oculus/Platform/Scripts/CAPI.cs @@ -362,6 +362,15 @@ public static void LogNewEvent(string eventName, Dictionary valu [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern IntPtr ovr_ApplicationLifecycle_GetLaunchDetails(); + public static void ovr_ApplicationLifecycle_LogDeeplinkResult(string trackingID, LaunchResult result) { + IntPtr trackingID_native = StringToNative(trackingID); + ovr_ApplicationLifecycle_LogDeeplinkResult_Native(trackingID_native, result); + Marshal.FreeCoTaskMem(trackingID_native); + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ApplicationLifecycle_LogDeeplinkResult")] + private static extern void ovr_ApplicationLifecycle_LogDeeplinkResult_Native(IntPtr trackingID, LaunchResult result); + public static ulong ovr_HTTP_StartTransfer(string url, ovrKeyValuePair[] headers) { IntPtr url_native = StringToNative(url); UIntPtr headers_length = (UIntPtr)headers.Length; @@ -411,6 +420,9 @@ public static string ovr_Message_GetStringForJavascript(IntPtr message) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern UIntPtr ovr_NetSync_GetPcmBufferMaxSamples(); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern bool ovr_NetSync_GetVoipAmplitude(long connection_id, UInt64 sessionId, ref float amplitude); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern void ovr_NetSync_SetListenerPosition(long connection_id, ref ovrNetSyncVec3 position); @@ -513,6 +525,9 @@ public static string ovr_Message_GetStringForJavascript(IntPtr message) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern void ovr_Voip_Stop(UInt64 userID); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_AbuseReport_LaunchAdvancedReportFlow(UInt64 content_id, IntPtr abuse_report_options); + public static ulong ovr_Achievements_AddCount(string name, ulong count) { IntPtr name_native = StringToNative(name); var result = (ovr_Achievements_AddCount_Native(name_native, count)); @@ -673,6 +688,58 @@ public static ulong ovr_Avatar_UpdateMetaData(string avatarMetaData, string imag [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern ulong ovr_Cal_ProposeApplication(UInt64 groupingObject, UInt64[] userIDs, int numUserIDs, UInt64 proposed_application_ID); + public static ulong ovr_Challenges_Create(string leaderboardName, IntPtr challengeOptions) { + IntPtr leaderboardName_native = StringToNative(leaderboardName); + var result = (ovr_Challenges_Create_Native(leaderboardName_native, challengeOptions)); + Marshal.FreeCoTaskMem(leaderboardName_native); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Challenges_Create")] + private static extern ulong ovr_Challenges_Create_Native(IntPtr leaderboardName, IntPtr challengeOptions); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_DeclineInvite(UInt64 challengeID); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_Delete(UInt64 challengeID); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_Get(UInt64 challengeID); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_GetEntries(UInt64 challengeID, int limit, LeaderboardFilterType filter, LeaderboardStartAt startAt); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_GetEntriesAfterRank(UInt64 challengeID, int limit, ulong afterRank); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_GetEntriesByIds(UInt64 challengeID, int limit, LeaderboardStartAt startAt, UInt64[] userIDs, uint userIDLength); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_GetList(IntPtr challengeOptions, int limit); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_GetNextChallenges(IntPtr handle); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_GetNextEntries(IntPtr handle); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_GetPreviousChallenges(IntPtr handle); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_GetPreviousEntries(IntPtr handle); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_Join(UInt64 challengeID); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_Leave(UInt64 challengeID); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Challenges_UpdateInfo(UInt64 challengeID, IntPtr challengeOptions); + public static ulong ovr_CloudStorage_Delete(string bucket, string key) { IntPtr bucket_native = StringToNative(bucket); IntPtr key_native = StringToNative(key); @@ -969,6 +1036,16 @@ public static ulong ovr_Leaderboard_WriteEntry(string leaderboardName, long scor [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Leaderboard_WriteEntry")] private static extern ulong ovr_Leaderboard_WriteEntry_Native(IntPtr leaderboardName, long score, byte[] extraData, uint extraDataLength, bool forceUpdate); + public static ulong ovr_Leaderboard_WriteEntryWithSupplementaryMetric(string leaderboardName, long score, long supplementaryMetric, byte[] extraData, uint extraDataLength, bool forceUpdate) { + IntPtr leaderboardName_native = StringToNative(leaderboardName); + var result = (ovr_Leaderboard_WriteEntryWithSupplementaryMetric_Native(leaderboardName_native, score, supplementaryMetric, extraData, extraDataLength, forceUpdate)); + Marshal.FreeCoTaskMem(leaderboardName_native); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Leaderboard_WriteEntryWithSupplementaryMetric")] + private static extern ulong ovr_Leaderboard_WriteEntryWithSupplementaryMetric_Native(IntPtr leaderboardName, long score, long supplementaryMetric, byte[] extraData, uint extraDataLength, bool forceUpdate); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern ulong ovr_Livestreaming_GetStatus(); @@ -982,6 +1059,9 @@ public static ulong ovr_Livestreaming_IsAllowedForApplication(string packageName [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Livestreaming_IsAllowedForApplication")] private static extern ulong ovr_Livestreaming_IsAllowedForApplication_Native(IntPtr packageName); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_Livestreaming_LaunchLivestreamingFlow(); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern ulong ovr_Livestreaming_PauseStream(); @@ -1165,6 +1245,28 @@ public static ulong ovr_Media_ShareToFacebook(string postTextSuggestion, string [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern ulong ovr_NetSync_SetVoipAttenuation(long connection_id, float[] distances, float[] decibels, UIntPtr count); + public static ulong ovr_NetSync_SetVoipAttenuationModel(long connection_id, string name, float[] distances, float[] decibels, UIntPtr count) { + IntPtr name_native = StringToNative(name); + var result = (ovr_NetSync_SetVoipAttenuationModel_Native(connection_id, name_native, distances, decibels, count)); + Marshal.FreeCoTaskMem(name_native); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_NetSync_SetVoipAttenuationModel")] + private static extern ulong ovr_NetSync_SetVoipAttenuationModel_Native(long connection_id, IntPtr name, float[] distances, float[] decibels, UIntPtr count); + + public static ulong ovr_NetSync_SetVoipChannelCfg(long connection_id, string channel_name, string attnmodel, bool disable_spatialization) { + IntPtr channel_name_native = StringToNative(channel_name); + IntPtr attnmodel_native = StringToNative(attnmodel); + var result = (ovr_NetSync_SetVoipChannelCfg_Native(connection_id, channel_name_native, attnmodel_native, disable_spatialization)); + Marshal.FreeCoTaskMem(channel_name_native); + Marshal.FreeCoTaskMem(attnmodel_native); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_NetSync_SetVoipChannelCfg")] + private static extern ulong ovr_NetSync_SetVoipChannelCfg_Native(long connection_id, IntPtr channel_name, IntPtr attnmodel, bool disable_spatialization); + public static ulong ovr_NetSync_SetVoipGroup(long connection_id, string group_id) { IntPtr group_id_native = StringToNative(group_id); var result = (ovr_NetSync_SetVoipGroup_Native(connection_id, group_id_native)); @@ -1175,12 +1277,18 @@ public static ulong ovr_NetSync_SetVoipGroup(long connection_id, string group_id [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_NetSync_SetVoipGroup")] private static extern ulong ovr_NetSync_SetVoipGroup_Native(long connection_id, IntPtr group_id); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_NetSync_SetVoipListentoChannels(long connection_id, string[] listento_channels, UIntPtr count); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern ulong ovr_NetSync_SetVoipMicSource(long connection_id, NetSyncVoipMicSource mic_source); [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern ulong ovr_NetSync_SetVoipSessionMuted(long connection_id, UInt64 session_id, bool muted); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_NetSync_SetVoipSpeaktoChannels(long connection_id, string[] speakto_channels, UIntPtr count); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern ulong ovr_NetSync_SetVoipStreamMode(long connection_id, UInt64 sessionId, NetSyncVoipStreamMode streamMode); @@ -1409,6 +1517,76 @@ public static ulong ovr_User_TestUserCreateDeviceManifest(string deviceID, UInt6 [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_TestUserCreateDeviceManifest")] private static extern ulong ovr_User_TestUserCreateDeviceManifest_Native(IntPtr deviceID, UInt64[] appIDs, int numAppIDs); + public static ulong ovr_UserDataStore_PrivateDeleteEntryByKey(UInt64 userID, string key) { + IntPtr key_native = StringToNative(key); + var result = (ovr_UserDataStore_PrivateDeleteEntryByKey_Native(userID, key_native)); + Marshal.FreeCoTaskMem(key_native); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserDataStore_PrivateDeleteEntryByKey")] + private static extern ulong ovr_UserDataStore_PrivateDeleteEntryByKey_Native(UInt64 userID, IntPtr key); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_UserDataStore_PrivateGetEntries(UInt64 userID); + + public static ulong ovr_UserDataStore_PrivateGetEntryByKey(UInt64 userID, string key) { + IntPtr key_native = StringToNative(key); + var result = (ovr_UserDataStore_PrivateGetEntryByKey_Native(userID, key_native)); + Marshal.FreeCoTaskMem(key_native); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserDataStore_PrivateGetEntryByKey")] + private static extern ulong ovr_UserDataStore_PrivateGetEntryByKey_Native(UInt64 userID, IntPtr key); + + public static ulong ovr_UserDataStore_PrivateWriteEntry(UInt64 userID, string key, string value) { + IntPtr key_native = StringToNative(key); + IntPtr value_native = StringToNative(value); + var result = (ovr_UserDataStore_PrivateWriteEntry_Native(userID, key_native, value_native)); + Marshal.FreeCoTaskMem(key_native); + Marshal.FreeCoTaskMem(value_native); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserDataStore_PrivateWriteEntry")] + private static extern ulong ovr_UserDataStore_PrivateWriteEntry_Native(UInt64 userID, IntPtr key, IntPtr value); + + public static ulong ovr_UserDataStore_PublicDeleteEntryByKey(UInt64 userID, string key) { + IntPtr key_native = StringToNative(key); + var result = (ovr_UserDataStore_PublicDeleteEntryByKey_Native(userID, key_native)); + Marshal.FreeCoTaskMem(key_native); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserDataStore_PublicDeleteEntryByKey")] + private static extern ulong ovr_UserDataStore_PublicDeleteEntryByKey_Native(UInt64 userID, IntPtr key); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_UserDataStore_PublicGetEntries(UInt64 userID); + + public static ulong ovr_UserDataStore_PublicGetEntryByKey(UInt64 userID, string key) { + IntPtr key_native = StringToNative(key); + var result = (ovr_UserDataStore_PublicGetEntryByKey_Native(userID, key_native)); + Marshal.FreeCoTaskMem(key_native); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserDataStore_PublicGetEntryByKey")] + private static extern ulong ovr_UserDataStore_PublicGetEntryByKey_Native(UInt64 userID, IntPtr key); + + public static ulong ovr_UserDataStore_PublicWriteEntry(UInt64 userID, string key, string value) { + IntPtr key_native = StringToNative(key); + IntPtr value_native = StringToNative(value); + var result = (ovr_UserDataStore_PublicWriteEntry_Native(userID, key_native, value_native)); + Marshal.FreeCoTaskMem(key_native); + Marshal.FreeCoTaskMem(value_native); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_UserDataStore_PublicWriteEntry")] + private static extern ulong ovr_UserDataStore_PublicWriteEntry_Native(UInt64 userID, IntPtr key, IntPtr value); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern ulong ovr_Voip_SetSystemVoipSuppressed(bool suppressed); @@ -1683,6 +1861,154 @@ public static string ovr_CalApplicationSuggestion_GetSocialContext(IntPtr obj) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern UIntPtr ovr_CalApplicationSuggestionArray_GetSize(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ChallengeCreationType ovr_Challenge_GetCreationType(IntPtr obj); + + public static string ovr_Challenge_GetDescription(IntPtr obj) { + var result = StringFromNative(ovr_Challenge_GetDescription_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Challenge_GetDescription")] + private static extern IntPtr ovr_Challenge_GetDescription_Native(IntPtr obj); + + public static DateTime ovr_Challenge_GetEndDate(IntPtr obj) { + var result = DateTimeFromNative(ovr_Challenge_GetEndDate_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Challenge_GetEndDate")] + private static extern ulong ovr_Challenge_GetEndDate_Native(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern UInt64 ovr_Challenge_GetID(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_Challenge_GetInvitedUsers(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_Challenge_GetLeaderboard(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_Challenge_GetParticipants(IntPtr obj); + + public static DateTime ovr_Challenge_GetStartDate(IntPtr obj) { + var result = DateTimeFromNative(ovr_Challenge_GetStartDate_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Challenge_GetStartDate")] + private static extern ulong ovr_Challenge_GetStartDate_Native(IntPtr obj); + + public static string ovr_Challenge_GetTitle(IntPtr obj) { + var result = StringFromNative(ovr_Challenge_GetTitle_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Challenge_GetTitle")] + private static extern IntPtr ovr_Challenge_GetTitle_Native(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ChallengeVisibility ovr_Challenge_GetVisibility(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_ChallengeArray_GetElement(IntPtr obj, UIntPtr index); + + public static string ovr_ChallengeArray_GetNextUrl(IntPtr obj) { + var result = StringFromNative(ovr_ChallengeArray_GetNextUrl_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeArray_GetNextUrl")] + private static extern IntPtr ovr_ChallengeArray_GetNextUrl_Native(IntPtr obj); + + public static string ovr_ChallengeArray_GetPreviousUrl(IntPtr obj) { + var result = StringFromNative(ovr_ChallengeArray_GetPreviousUrl_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeArray_GetPreviousUrl")] + private static extern IntPtr ovr_ChallengeArray_GetPreviousUrl_Native(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern UIntPtr ovr_ChallengeArray_GetSize(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_ChallengeArray_GetTotalCount(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern bool ovr_ChallengeArray_HasNextPage(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern bool ovr_ChallengeArray_HasPreviousPage(IntPtr obj); + + public static string ovr_ChallengeEntry_GetDisplayScore(IntPtr obj) { + var result = StringFromNative(ovr_ChallengeEntry_GetDisplayScore_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeEntry_GetDisplayScore")] + private static extern IntPtr ovr_ChallengeEntry_GetDisplayScore_Native(IntPtr obj); + + public static byte[] ovr_ChallengeEntry_GetExtraData(IntPtr obj) { + var result = BlobFromNative(ovr_LeaderboardEntry_GetExtraDataLength(obj), ovr_ChallengeEntry_GetExtraData_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeEntry_GetExtraData")] + private static extern IntPtr ovr_ChallengeEntry_GetExtraData_Native(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern uint ovr_ChallengeEntry_GetExtraDataLength(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern int ovr_ChallengeEntry_GetRank(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern long ovr_ChallengeEntry_GetScore(IntPtr obj); + + public static DateTime ovr_ChallengeEntry_GetTimestamp(IntPtr obj) { + var result = DateTimeFromNative(ovr_ChallengeEntry_GetTimestamp_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeEntry_GetTimestamp")] + private static extern ulong ovr_ChallengeEntry_GetTimestamp_Native(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_ChallengeEntry_GetUser(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_ChallengeEntryArray_GetElement(IntPtr obj, UIntPtr index); + + public static string ovr_ChallengeEntryArray_GetNextUrl(IntPtr obj) { + var result = StringFromNative(ovr_ChallengeEntryArray_GetNextUrl_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeEntryArray_GetNextUrl")] + private static extern IntPtr ovr_ChallengeEntryArray_GetNextUrl_Native(IntPtr obj); + + public static string ovr_ChallengeEntryArray_GetPreviousUrl(IntPtr obj) { + var result = StringFromNative(ovr_ChallengeEntryArray_GetPreviousUrl_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeEntryArray_GetPreviousUrl")] + private static extern IntPtr ovr_ChallengeEntryArray_GetPreviousUrl_Native(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern UIntPtr ovr_ChallengeEntryArray_GetSize(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern ulong ovr_ChallengeEntryArray_GetTotalCount(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern bool ovr_ChallengeEntryArray_HasNextPage(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern bool ovr_ChallengeEntryArray_HasPreviousPage(IntPtr obj); + public static string ovr_CloudStorage2UserDirectoryPathResponse_GetPath(IntPtr obj) { var result = StringFromNative(ovr_CloudStorage2UserDirectoryPathResponse_GetPath_Native(obj)); return result; @@ -2019,6 +2345,14 @@ public static string ovr_LaunchDetails_GetLaunchSource(IntPtr obj) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern UInt64 ovr_LaunchDetails_GetRoomID(IntPtr obj); + public static string ovr_LaunchDetails_GetTrackingID(IntPtr obj) { + var result = StringFromNative(ovr_LaunchDetails_GetTrackingID_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LaunchDetails_GetTrackingID")] + private static extern IntPtr ovr_LaunchDetails_GetTrackingID_Native(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern IntPtr ovr_LaunchDetails_GetUsers(IntPtr obj); @@ -2040,6 +2374,22 @@ public static string ovr_LaunchDetails_GetLaunchSource(IntPtr obj) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern bool ovr_LaunchUnblockFlowResult_GetDidUnblock(IntPtr obj); + public static string ovr_Leaderboard_GetApiName(IntPtr obj) { + var result = StringFromNative(ovr_Leaderboard_GetApiName_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_Leaderboard_GetApiName")] + private static extern IntPtr ovr_Leaderboard_GetApiName_Native(IntPtr obj); + + public static string ovr_LeaderboardEntry_GetDisplayScore(IntPtr obj) { + var result = StringFromNative(ovr_LeaderboardEntry_GetDisplayScore_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_LeaderboardEntry_GetDisplayScore")] + private static extern IntPtr ovr_LeaderboardEntry_GetDisplayScore_Native(IntPtr obj); + public static byte[] ovr_LeaderboardEntry_GetExtraData(IntPtr obj) { var result = BlobFromNative(ovr_LeaderboardEntry_GetExtraDataLength(obj), ovr_LeaderboardEntry_GetExtraData_Native(obj)); return result; @@ -2057,6 +2407,9 @@ public static byte[] ovr_LeaderboardEntry_GetExtraData(IntPtr obj) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern long ovr_LeaderboardEntry_GetScore(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_LeaderboardEntry_GetSupplementaryMetric(IntPtr obj); + public static DateTime ovr_LeaderboardEntry_GetTimestamp(IntPtr obj) { var result = DateTimeFromNative(ovr_LeaderboardEntry_GetTimestamp_Native(obj)); return result; @@ -2102,6 +2455,12 @@ public static string ovr_LeaderboardEntryArray_GetPreviousUrl(IntPtr obj) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern bool ovr_LeaderboardUpdateStatus_GetDidUpdate(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern UInt64 ovr_LeaderboardUpdateStatus_GetUpdatedChallengeId(IntPtr obj, uint index); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern uint ovr_LeaderboardUpdateStatus_GetUpdatedChallengeIdsSize(IntPtr obj); + public static string ovr_LinkedAccount_GetAccessToken(IntPtr obj) { var result = StringFromNative(ovr_LinkedAccount_GetAccessToken_Native(obj)); return result; @@ -2372,6 +2731,15 @@ public static string ovr_MatchmakingNotification_GetTraceId(IntPtr obj) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern IntPtr ovr_Message_GetCalApplicationSuggestionArray(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_Message_GetChallenge(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_Message_GetChallengeArray(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_Message_GetChallengeEntryArray(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern IntPtr ovr_Message_GetCloudStorageConflictMetadata(IntPtr obj); @@ -2387,6 +2755,9 @@ public static string ovr_MatchmakingNotification_GetTraceId(IntPtr obj) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern IntPtr ovr_Message_GetCloudStorageUpdateResponse(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_Message_GetDataStore(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern IntPtr ovr_Message_GetDestinationArray(IntPtr obj); @@ -2548,6 +2919,9 @@ public static string ovr_Message_GetString(IntPtr obj) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern IntPtr ovr_Message_GetUserArray(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_Message_GetUserDataStoreUpdateResponse(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern IntPtr ovr_Message_GetUserProof(IntPtr obj); @@ -2988,6 +3362,12 @@ public static string ovr_RoomInviteNotificationArray_GetNextUrl(IntPtr obj) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern ShareMediaStatus ovr_ShareMediaResult_GetStatus(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern UInt64 ovr_SupplementaryMetric_GetID(IntPtr obj); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern long ovr_SupplementaryMetric_GetMetric(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern bool ovr_SystemPermission_GetHasPermission(IntPtr obj); @@ -3082,6 +3462,14 @@ public static string ovr_TestUserAppAccess_GetAccessToken(IntPtr obj) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern UIntPtr ovr_TestUserAppAccessArray_GetSize(IntPtr obj); + public static string ovr_User_GetDisplayName(IntPtr obj) { + var result = StringFromNative(ovr_User_GetDisplayName_Native(obj)); + return result; + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_User_GetDisplayName")] + private static extern IntPtr ovr_User_GetDisplayName_Native(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern UInt64 ovr_User_GetID(IntPtr obj); @@ -3184,6 +3572,9 @@ public static string ovr_UserArray_GetNextUrl(IntPtr obj) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern bool ovr_UserArray_HasNextPage(IntPtr obj); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern bool ovr_UserDataStoreUpdateResponse_GetSuccess(IntPtr obj); + public static string ovr_UserProof_GetNonce(IntPtr obj) { var result = StringFromNative(ovr_UserProof_GetNonce_Native(obj)); return result; @@ -3225,6 +3616,27 @@ public static string ovr_UserProof_GetNonce(IntPtr obj) { [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern void ovr_AbuseReportOptions_SetReportType(IntPtr handle, AbuseReportType value); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_AdvancedAbuseReportOptions_Create(); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern void ovr_AdvancedAbuseReportOptions_Destroy(IntPtr handle); + + public static void ovr_AdvancedAbuseReportOptions_SetObjectType(IntPtr handle, string value) { + IntPtr value_native = StringToNative(value); + ovr_AdvancedAbuseReportOptions_SetObjectType_Native(handle, value_native); + Marshal.FreeCoTaskMem(value_native); + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_AdvancedAbuseReportOptions_SetObjectType")] + private static extern void ovr_AdvancedAbuseReportOptions_SetObjectType_Native(IntPtr handle, IntPtr value); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern void ovr_AdvancedAbuseReportOptions_SetReportType(IntPtr handle, AbuseReportType value); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern void ovr_AdvancedAbuseReportOptions_SetVideoMode(IntPtr handle, AbuseReportVideoMode value); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern IntPtr ovr_ApplicationOptions_Create(); @@ -3240,6 +3652,70 @@ public static void ovr_ApplicationOptions_SetDeeplinkMessage(IntPtr handle, stri [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ApplicationOptions_SetDeeplinkMessage")] private static extern void ovr_ApplicationOptions_SetDeeplinkMessage_Native(IntPtr handle, IntPtr value); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern IntPtr ovr_ChallengeOptions_Create(); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern void ovr_ChallengeOptions_Destroy(IntPtr handle); + + public static void ovr_ChallengeOptions_SetDescription(IntPtr handle, string value) { + IntPtr value_native = StringToNative(value); + ovr_ChallengeOptions_SetDescription_Native(handle, value_native); + Marshal.FreeCoTaskMem(value_native); + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeOptions_SetDescription")] + private static extern void ovr_ChallengeOptions_SetDescription_Native(IntPtr handle, IntPtr value); + + public static void ovr_ChallengeOptions_SetEndDate(IntPtr handle, DateTime value) { + ulong value_native = DateTimeToNative(value); + ovr_ChallengeOptions_SetEndDate_Native(handle, value_native); + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeOptions_SetEndDate")] + private static extern void ovr_ChallengeOptions_SetEndDate_Native(IntPtr handle, ulong value); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern void ovr_ChallengeOptions_SetIncludeActiveChallenges(IntPtr handle, bool value); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern void ovr_ChallengeOptions_SetIncludeFutureChallenges(IntPtr handle, bool value); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern void ovr_ChallengeOptions_SetIncludePastChallenges(IntPtr handle, bool value); + + public static void ovr_ChallengeOptions_SetLeaderboardName(IntPtr handle, string value) { + IntPtr value_native = StringToNative(value); + ovr_ChallengeOptions_SetLeaderboardName_Native(handle, value_native); + Marshal.FreeCoTaskMem(value_native); + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeOptions_SetLeaderboardName")] + private static extern void ovr_ChallengeOptions_SetLeaderboardName_Native(IntPtr handle, IntPtr value); + + public static void ovr_ChallengeOptions_SetStartDate(IntPtr handle, DateTime value) { + ulong value_native = DateTimeToNative(value); + ovr_ChallengeOptions_SetStartDate_Native(handle, value_native); + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeOptions_SetStartDate")] + private static extern void ovr_ChallengeOptions_SetStartDate_Native(IntPtr handle, ulong value); + + public static void ovr_ChallengeOptions_SetTitle(IntPtr handle, string value) { + IntPtr value_native = StringToNative(value); + ovr_ChallengeOptions_SetTitle_Native(handle, value_native); + Marshal.FreeCoTaskMem(value_native); + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_ChallengeOptions_SetTitle")] + private static extern void ovr_ChallengeOptions_SetTitle_Native(IntPtr handle, IntPtr value); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern void ovr_ChallengeOptions_SetViewerFilter(IntPtr handle, ChallengeViewerFilter value); + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] + public static extern void ovr_ChallengeOptions_SetVisibility(IntPtr handle, ChallengeVisibility value); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern IntPtr ovr_MatchmakingOptions_Create(); @@ -3395,6 +3871,15 @@ public static void ovr_RichPresenceOptions_SetEndTime(IntPtr handle, DateTime va [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern void ovr_RichPresenceOptions_SetExtraContext(IntPtr handle, RichPresenceExtraContext value); + public static void ovr_RichPresenceOptions_SetInstanceId(IntPtr handle, string value) { + IntPtr value_native = StringToNative(value); + ovr_RichPresenceOptions_SetInstanceId_Native(handle, value_native); + Marshal.FreeCoTaskMem(value_native); + } + + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl, EntryPoint="ovr_RichPresenceOptions_SetInstanceId")] + private static extern void ovr_RichPresenceOptions_SetInstanceId_Native(IntPtr handle, IntPtr value); + [DllImport(DLL_NAME, CallingConvention=CallingConvention.Cdecl)] public static extern void ovr_RichPresenceOptions_SetIsIdle(IntPtr handle, bool value); diff --git a/Assets/Oculus/Platform/Scripts/ChallengeCreationType.cs b/Assets/Oculus/Platform/Scripts/ChallengeCreationType.cs new file mode 100644 index 00000000..0e739096 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/ChallengeCreationType.cs @@ -0,0 +1,21 @@ +// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! + +namespace Oculus.Platform +{ + + using Description = System.ComponentModel.DescriptionAttribute; + + public enum ChallengeCreationType : int + { + [Description("UNKNOWN")] + Unknown, + + [Description("USER_CREATED")] + UserCreated, + + [Description("DEVELOPER_CREATED")] + DeveloperCreated, + + } + +} diff --git a/Assets/Oculus/Platform/Scripts/ChallengeCreationType.cs.meta b/Assets/Oculus/Platform/Scripts/ChallengeCreationType.cs.meta new file mode 100644 index 00000000..29026354 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/ChallengeCreationType.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 283905012d3ab1d448b79052c004956c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Platform/Scripts/ChallengeOptions.cs b/Assets/Oculus/Platform/Scripts/ChallengeOptions.cs new file mode 100644 index 00000000..0d953976 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/ChallengeOptions.cs @@ -0,0 +1,70 @@ +// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! + +namespace Oculus.Platform +{ + using System; + using System.Collections; + using Oculus.Platform.Models; + using System.Collections.Generic; + using UnityEngine; + + public class ChallengeOptions { + + public ChallengeOptions() { + Handle = CAPI.ovr_ChallengeOptions_Create(); + } + + public void SetDescription(string value) { + CAPI.ovr_ChallengeOptions_SetDescription(Handle, value); + } + + public void SetEndDate(DateTime value) { + CAPI.ovr_ChallengeOptions_SetEndDate(Handle, value); + } + + public void SetIncludeActiveChallenges(bool value) { + CAPI.ovr_ChallengeOptions_SetIncludeActiveChallenges(Handle, value); + } + + public void SetIncludeFutureChallenges(bool value) { + CAPI.ovr_ChallengeOptions_SetIncludeFutureChallenges(Handle, value); + } + + public void SetIncludePastChallenges(bool value) { + CAPI.ovr_ChallengeOptions_SetIncludePastChallenges(Handle, value); + } + + /// Optional: Only find challenges belonging to this leaderboard. + public void SetLeaderboardName(string value) { + CAPI.ovr_ChallengeOptions_SetLeaderboardName(Handle, value); + } + + public void SetStartDate(DateTime value) { + CAPI.ovr_ChallengeOptions_SetStartDate(Handle, value); + } + + public void SetTitle(string value) { + CAPI.ovr_ChallengeOptions_SetTitle(Handle, value); + } + + public void SetViewerFilter(ChallengeViewerFilter value) { + CAPI.ovr_ChallengeOptions_SetViewerFilter(Handle, value); + } + + public void SetVisibility(ChallengeVisibility value) { + CAPI.ovr_ChallengeOptions_SetVisibility(Handle, value); + } + + + /// For passing to native C + public static explicit operator IntPtr(ChallengeOptions options) { + return options != null ? options.Handle : IntPtr.Zero; + } + + ~ChallengeOptions() { + CAPI.ovr_ChallengeOptions_Destroy(Handle); + } + + IntPtr Handle; + } +} diff --git a/Assets/Oculus/Platform/Scripts/ChallengeOptions.cs.meta b/Assets/Oculus/Platform/Scripts/ChallengeOptions.cs.meta new file mode 100644 index 00000000..392f10ea --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/ChallengeOptions.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1bd3fe1ed059d8743b28d7f665b0f283 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Platform/Scripts/ChallengeViewerFilter.cs b/Assets/Oculus/Platform/Scripts/ChallengeViewerFilter.cs new file mode 100644 index 00000000..29e8726f --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/ChallengeViewerFilter.cs @@ -0,0 +1,27 @@ +// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! + +namespace Oculus.Platform +{ + + using Description = System.ComponentModel.DescriptionAttribute; + + public enum ChallengeViewerFilter : int + { + [Description("UNKNOWN")] + Unknown, + + [Description("ALL_VISIBLE")] + AllVisible, + + [Description("PARTICIPATING")] + Participating, + + [Description("INVITED")] + Invited, + + [Description("PARTICIPATING_OR_INVITED")] + ParticipatingOrInvited, + + } + +} diff --git a/Assets/Oculus/Platform/Scripts/ChallengeViewerFilter.cs.meta b/Assets/Oculus/Platform/Scripts/ChallengeViewerFilter.cs.meta new file mode 100644 index 00000000..b355f0d7 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/ChallengeViewerFilter.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c0d67266a9e53274086041a053b41123 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Platform/Scripts/ChallengeVisibility.cs b/Assets/Oculus/Platform/Scripts/ChallengeVisibility.cs new file mode 100644 index 00000000..1c2edfb1 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/ChallengeVisibility.cs @@ -0,0 +1,27 @@ +// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! + +namespace Oculus.Platform +{ + + using Description = System.ComponentModel.DescriptionAttribute; + + public enum ChallengeVisibility : int + { + [Description("UNKNOWN")] + Unknown, + + /// Only those invited can participate in it. Everyone can see it + [Description("INVITE_ONLY")] + InviteOnly, + + /// Everyone can participate and see this challenge + [Description("PUBLIC")] + Public, + + /// Only those invited can participate and see this challenge + [Description("PRIVATE")] + Private, + + } + +} diff --git a/Assets/Oculus/Platform/Scripts/ChallengeVisibility.cs.meta b/Assets/Oculus/Platform/Scripts/ChallengeVisibility.cs.meta new file mode 100644 index 00000000..bc643e75 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/ChallengeVisibility.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 78eb4b050f81a8048bed0d7ea4e189e2 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Platform/Scripts/LaunchResult.cs b/Assets/Oculus/Platform/Scripts/LaunchResult.cs new file mode 100644 index 00000000..7924db9c --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/LaunchResult.cs @@ -0,0 +1,33 @@ +// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! + +namespace Oculus.Platform +{ + + using Description = System.ComponentModel.DescriptionAttribute; + + public enum LaunchResult : int + { + [Description("UNKNOWN")] + Unknown, + + [Description("SUCCESS")] + Success, + + [Description("FAILED_ROOM_FULL")] + FailedRoomFull, + + [Description("FAILED_GAME_ALREADY_STARTED")] + FailedGameAlreadyStarted, + + [Description("FAILED_ROOM_NOT_FOUND")] + FailedRoomNotFound, + + [Description("FAILED_USER_DECLINED")] + FailedUserDeclined, + + [Description("FAILED_OTHER_REASON")] + FailedOtherReason, + + } + +} diff --git a/Assets/Oculus/Platform/Scripts/LaunchResult.cs.meta b/Assets/Oculus/Platform/Scripts/LaunchResult.cs.meta new file mode 100644 index 00000000..6c4e4223 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/LaunchResult.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 36deaec7717e4804cb0a33e4647592f7 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Platform/Scripts/MatchmakingOptions.cs b/Assets/Oculus/Platform/Scripts/MatchmakingOptions.cs index 2888e898..ee4fdd54 100644 --- a/Assets/Oculus/Platform/Scripts/MatchmakingOptions.cs +++ b/Assets/Oculus/Platform/Scripts/MatchmakingOptions.cs @@ -63,7 +63,7 @@ public void SetEnqueueQueryKey(string value) { } - // For passing to native C + /// For passing to native C public static explicit operator IntPtr(MatchmakingOptions options) { return options != null ? options.Handle : IntPtr.Zero; } diff --git a/Assets/Oculus/Platform/Scripts/Message.cs b/Assets/Oculus/Platform/Scripts/Message.cs index e47bb352..4eb3916b 100644 --- a/Assets/Oculus/Platform/Scripts/Message.cs +++ b/Assets/Oculus/Platform/Scripts/Message.cs @@ -90,6 +90,21 @@ public enum MessageType : uint AssetFile_Status = 0x02D32F60, AssetFile_StatusById = 0x5D955D38, AssetFile_StatusByName = 0x41CFDA50, + Challenges_Create = 0x6859D641, + Challenges_DeclineInvite = 0x568E76C0, + Challenges_Delete = 0x264885CA, + Challenges_Get = 0x77584EF3, + Challenges_GetEntries = 0x121AB45F, + Challenges_GetEntriesAfterRank = 0x08891A7F, + Challenges_GetEntriesByIds = 0x316509DC, + Challenges_GetList = 0x43264356, + Challenges_GetNextChallenges = 0x5B7CA1B6, + Challenges_GetNextEntries = 0x7F4CA0C6, + Challenges_GetPreviousChallenges = 0x0EB4040D, + Challenges_GetPreviousEntries = 0x78C90470, + Challenges_Join = 0x21248069, + Challenges_Leave = 0x296116E5, + Challenges_UpdateInfo = 0x1175BE60, CloudStorage2_GetUserDirectoryPath = 0x76A42EEE, CloudStorage_Delete = 0x28DA456D, CloudStorage_GetNextCloudStorageMetadataArrayPage = 0x5C07A2EF, @@ -117,7 +132,9 @@ public enum MessageType : uint Leaderboard_GetNextEntries = 0x4E207CD9, Leaderboard_GetPreviousEntries = 0x4901DAC0, Leaderboard_WriteEntry = 0x117FC8FE, + Leaderboard_WriteEntryWithSupplementaryMetric = 0x72C692FA, Livestreaming_GetStatus = 0x489A6995, + Livestreaming_LaunchLivestreamingFlow = 0x6AB156BD, Livestreaming_PauseStream = 0x369C7683, Livestreaming_ResumeStream = 0x22526D8F, Matchmaking_Browse = 0x1E6532C8, @@ -166,6 +183,14 @@ public enum MessageType : uint Room_UpdateMembershipLockStatus = 0x370BB7AC, Room_UpdateOwner = 0x32B63D1D, Room_UpdatePrivateRoomJoinPolicy = 0x1141029B, + UserDataStore_PrivateDeleteEntryByKey = 0x5C896F3E, + UserDataStore_PrivateGetEntries = 0x6C8A8228, + UserDataStore_PrivateGetEntryByKey = 0x1C068319, + UserDataStore_PrivateWriteEntry = 0x41D2828B, + UserDataStore_PublicDeleteEntryByKey = 0x1DD5E5FB, + UserDataStore_PublicGetEntries = 0x167D4BC2, + UserDataStore_PublicGetEntryByKey = 0x195C66C6, + UserDataStore_PublicWriteEntry = 0x34364A0A, User_Get = 0x6BCF9E47, User_GetAccessToken = 0x06A85ABE, User_GetLoggedInUser = 0x436F345D, @@ -269,6 +294,9 @@ public enum MessageType : uint /// functions at any time to get the current state directly. Notification_Voip_SystemVoipState = 0x58D254A5, + /// Get surface and update action from platform webrtc for update. + Notification_Vrcamera_GetSurfaceUpdate = 0x37F21084, + Platform_InitializeWithAccessToken = 0x35692F2B, Platform_InitializeStandaloneOculus = 0x51F8CE0C, @@ -305,11 +333,15 @@ public enum MessageType : uint public virtual CalApplicationFinalized GetCalApplicationFinalized() { return null; } public virtual CalApplicationProposed GetCalApplicationProposed() { return null; } public virtual CalApplicationSuggestionList GetCalApplicationSuggestionList() { return null; } + public virtual Challenge GetChallenge() { return null; } + public virtual ChallengeEntryList GetChallengeEntryList() { return null; } + public virtual ChallengeList GetChallengeList() { return null; } public virtual CloudStorageConflictMetadata GetCloudStorageConflictMetadata() { return null; } public virtual CloudStorageData GetCloudStorageData() { return null; } public virtual CloudStorageMetadata GetCloudStorageMetadata() { return null; } public virtual CloudStorageMetadataList GetCloudStorageMetadataList() { return null; } public virtual CloudStorageUpdateResponse GetCloudStorageUpdateResponse() { return null; } + public virtual Dictionary GetDataStore() { return null; } public virtual DestinationList GetDestinationList() { return null; } public virtual InstalledApplicationList GetInstalledApplicationList() { return null; } public virtual LaunchBlockFlowResult GetLaunchBlockFlowResult() { return null; } @@ -352,6 +384,7 @@ public enum MessageType : uint public virtual SystemVoipState GetSystemVoipState() { return null; } public virtual User GetUser() { return null; } public virtual UserAndRoomList GetUserAndRoomList() { return null; } + public virtual UserDataStoreUpdateResponse GetUserDataStoreUpdateResponse() { return null; } public virtual UserList GetUserList() { return null; } public virtual UserProof GetUserProof() { return null; } public virtual UserReportID GetUserReportID() { return null; } @@ -432,6 +465,29 @@ internal static Message ParseMessageHandle(IntPtr messageHandle) message = new MessageWithCalApplicationProposed(messageHandle); break; + case Message.MessageType.Challenges_Create: + case Message.MessageType.Challenges_DeclineInvite: + case Message.MessageType.Challenges_Get: + case Message.MessageType.Challenges_Join: + case Message.MessageType.Challenges_Leave: + case Message.MessageType.Challenges_UpdateInfo: + message = new MessageWithChallenge(messageHandle); + break; + + case Message.MessageType.Challenges_GetList: + case Message.MessageType.Challenges_GetNextChallenges: + case Message.MessageType.Challenges_GetPreviousChallenges: + message = new MessageWithChallengeList(messageHandle); + break; + + case Message.MessageType.Challenges_GetEntries: + case Message.MessageType.Challenges_GetEntriesAfterRank: + case Message.MessageType.Challenges_GetEntriesByIds: + case Message.MessageType.Challenges_GetNextEntries: + case Message.MessageType.Challenges_GetPreviousEntries: + message = new MessageWithChallengeEntryList(messageHandle); + break; + case Message.MessageType.CloudStorage_LoadConflictMetadata: message = new MessageWithCloudStorageConflictMetadata(messageHandle); break; @@ -457,14 +513,26 @@ internal static Message ParseMessageHandle(IntPtr messageHandle) message = new MessageWithCloudStorageUpdateResponse(messageHandle); break; + case Message.MessageType.UserDataStore_PrivateGetEntries: + case Message.MessageType.UserDataStore_PrivateGetEntryByKey: + message = new MessageWithDataStoreUnderPrivateUserDataStore(messageHandle); + break; + + case Message.MessageType.UserDataStore_PublicGetEntries: + case Message.MessageType.UserDataStore_PublicGetEntryByKey: + message = new MessageWithDataStoreUnderPublicUserDataStore(messageHandle); + break; + case Message.MessageType.RichPresence_GetDestinations: case Message.MessageType.RichPresence_GetNextDestinationArrayPage: message = new MessageWithDestinationList(messageHandle); break; case Message.MessageType.ApplicationLifecycle_RegisterSessionKey: + case Message.MessageType.Challenges_Delete: case Message.MessageType.Entitlement_GetIsViewerEntitled: case Message.MessageType.IAP_ConsumePurchase: + case Message.MessageType.Livestreaming_LaunchLivestreamingFlow: case Message.MessageType.Matchmaking_Cancel: case Message.MessageType.Matchmaking_Cancel2: case Message.MessageType.Matchmaking_ReportResultInsecure: @@ -491,6 +559,7 @@ internal static Message ParseMessageHandle(IntPtr messageHandle) break; case Message.MessageType.Leaderboard_WriteEntry: + case Message.MessageType.Leaderboard_WriteEntryWithSupplementaryMetric: message = new MessageWithLeaderboardDidUpdate(messageHandle); break; @@ -619,6 +688,7 @@ internal static Message ParseMessageHandle(IntPtr messageHandle) case Message.MessageType.CloudStorage2_GetUserDirectoryPath: case Message.MessageType.Notification_ApplicationLifecycle_LaunchIntentChanged: case Message.MessageType.Notification_Room_InviteAccepted: + case Message.MessageType.Notification_Vrcamera_GetSurfaceUpdate: case Message.MessageType.User_GetAccessToken: message = new MessageWithString(messageHandle); break; @@ -645,6 +715,13 @@ internal static Message ParseMessageHandle(IntPtr messageHandle) message = new MessageWithUserList(messageHandle); break; + case Message.MessageType.UserDataStore_PrivateDeleteEntryByKey: + case Message.MessageType.UserDataStore_PrivateWriteEntry: + case Message.MessageType.UserDataStore_PublicDeleteEntryByKey: + case Message.MessageType.UserDataStore_PublicWriteEntry: + message = new MessageWithUserDataStoreUpdateResponse(messageHandle); + break; + case Message.MessageType.User_GetUserProof: message = new MessageWithUserProof(messageHandle); break; @@ -881,6 +958,42 @@ protected override CalApplicationSuggestionList GetDataFromMessage(IntPtr c_mess return new CalApplicationSuggestionList(obj); } + } + public class MessageWithChallenge : Message + { + public MessageWithChallenge(IntPtr c_message) : base(c_message) { } + public override Challenge GetChallenge() { return Data; } + protected override Challenge GetDataFromMessage(IntPtr c_message) + { + var msg = CAPI.ovr_Message_GetNativeMessage(c_message); + var obj = CAPI.ovr_Message_GetChallenge(msg); + return new Challenge(obj); + } + + } + public class MessageWithChallengeList : Message + { + public MessageWithChallengeList(IntPtr c_message) : base(c_message) { } + public override ChallengeList GetChallengeList() { return Data; } + protected override ChallengeList GetDataFromMessage(IntPtr c_message) + { + var msg = CAPI.ovr_Message_GetNativeMessage(c_message); + var obj = CAPI.ovr_Message_GetChallengeArray(msg); + return new ChallengeList(obj); + } + + } + public class MessageWithChallengeEntryList : Message + { + public MessageWithChallengeEntryList(IntPtr c_message) : base(c_message) { } + public override ChallengeEntryList GetChallengeEntryList() { return Data; } + protected override ChallengeEntryList GetDataFromMessage(IntPtr c_message) + { + var msg = CAPI.ovr_Message_GetNativeMessage(c_message); + var obj = CAPI.ovr_Message_GetChallengeEntryArray(msg); + return new ChallengeEntryList(obj); + } + } public class MessageWithCloudStorageConflictMetadata : Message { @@ -941,6 +1054,30 @@ protected override CloudStorageUpdateResponse GetDataFromMessage(IntPtr c_messag return new CloudStorageUpdateResponse(obj); } + } + public class MessageWithDataStoreUnderPrivateUserDataStore : Message> + { + public MessageWithDataStoreUnderPrivateUserDataStore(IntPtr c_message) : base(c_message) { } + public override Dictionary GetDataStore() { return Data; } + protected override Dictionary GetDataFromMessage(IntPtr c_message) + { + var msg = CAPI.ovr_Message_GetNativeMessage(c_message); + var obj = CAPI.ovr_Message_GetDataStore(msg); + return CAPI.DataStoreFromNative(obj); + } + + } + public class MessageWithDataStoreUnderPublicUserDataStore : Message> + { + public MessageWithDataStoreUnderPublicUserDataStore(IntPtr c_message) : base(c_message) { } + public override Dictionary GetDataStore() { return Data; } + protected override Dictionary GetDataFromMessage(IntPtr c_message) + { + var msg = CAPI.ovr_Message_GetNativeMessage(c_message); + var obj = CAPI.ovr_Message_GetDataStore(msg); + return CAPI.DataStoreFromNative(obj); + } + } public class MessageWithDestinationList : Message { @@ -1466,6 +1603,18 @@ protected override UserList GetDataFromMessage(IntPtr c_message) return new UserList(obj); } + } + public class MessageWithUserDataStoreUpdateResponse : Message + { + public MessageWithUserDataStoreUpdateResponse(IntPtr c_message) : base(c_message) { } + public override UserDataStoreUpdateResponse GetUserDataStoreUpdateResponse() { return Data; } + protected override UserDataStoreUpdateResponse GetDataFromMessage(IntPtr c_message) + { + var msg = CAPI.ovr_Message_GetNativeMessage(c_message); + var obj = CAPI.ovr_Message_GetUserDataStoreUpdateResponse(msg); + return new UserDataStoreUpdateResponse(obj); + } + } public class MessageWithUserProof : Message { diff --git a/Assets/Oculus/Platform/Scripts/MicrophoneInput.cs b/Assets/Oculus/Platform/Scripts/MicrophoneInput.cs index e310f4a7..23affcbf 100644 --- a/Assets/Oculus/Platform/Scripts/MicrophoneInput.cs +++ b/Assets/Oculus/Platform/Scripts/MicrophoneInput.cs @@ -1,5 +1,5 @@ //This file is deprecated. Use the high level voip system instead: -// https://developer.oculus.com/documentation/platform/latest/concepts/dg-cc-voip/ +// https://developer.oculus.com/documentation/unity/ps-voip/ // // NOTE for android developers: The existence of UnityEngine.Microphone causes Unity to insert the // android.permission.RECORD_AUDIO permission into the AndroidManifest.xml generated at build time diff --git a/Assets/Oculus/Platform/Scripts/MicrophoneInputNative.cs b/Assets/Oculus/Platform/Scripts/MicrophoneInputNative.cs index 23a1bf98..38f699ea 100644 --- a/Assets/Oculus/Platform/Scripts/MicrophoneInputNative.cs +++ b/Assets/Oculus/Platform/Scripts/MicrophoneInputNative.cs @@ -1,5 +1,5 @@ //This file is deprecated. Use the high level voip system instead: -// https://developer.oculus.com/documentation/platform/latest/concepts/dg-cc-voip/ +// https://developer.oculus.com/documentation/unity/ps-voip/ #if OVR_PLATFORM_USE_MICROPHONE using UnityEngine; diff --git a/Assets/Oculus/Platform/Scripts/Models/Challenge.cs b/Assets/Oculus/Platform/Scripts/Models/Challenge.cs new file mode 100644 index 00000000..071cb886 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/Models/Challenge.cs @@ -0,0 +1,79 @@ +// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! + +#pragma warning disable 0618 + +namespace Oculus.Platform.Models +{ + using System; + using System.Collections; + using Oculus.Platform.Models; + using System.Collections.Generic; + using UnityEngine; + + public class Challenge + { + public readonly ChallengeCreationType CreationType; + public readonly string Description; + public readonly DateTime EndDate; + public readonly UInt64 ID; + // May be null. Check before using. + public readonly UserList InvitedUsersOptional; + [Obsolete("Deprecated in favor of InvitedUsersOptional")] + public readonly UserList InvitedUsers; + public readonly Leaderboard Leaderboard; + // May be null. Check before using. + public readonly UserList ParticipantsOptional; + [Obsolete("Deprecated in favor of ParticipantsOptional")] + public readonly UserList Participants; + public readonly DateTime StartDate; + public readonly string Title; + public readonly ChallengeVisibility Visibility; + + + public Challenge(IntPtr o) + { + CreationType = CAPI.ovr_Challenge_GetCreationType(o); + Description = CAPI.ovr_Challenge_GetDescription(o); + EndDate = CAPI.ovr_Challenge_GetEndDate(o); + ID = CAPI.ovr_Challenge_GetID(o); + { + var pointer = CAPI.ovr_Challenge_GetInvitedUsers(o); + InvitedUsers = new UserList(pointer); + if (pointer == IntPtr.Zero) { + InvitedUsersOptional = null; + } else { + InvitedUsersOptional = InvitedUsers; + } + } + Leaderboard = new Leaderboard(CAPI.ovr_Challenge_GetLeaderboard(o)); + { + var pointer = CAPI.ovr_Challenge_GetParticipants(o); + Participants = new UserList(pointer); + if (pointer == IntPtr.Zero) { + ParticipantsOptional = null; + } else { + ParticipantsOptional = Participants; + } + } + StartDate = CAPI.ovr_Challenge_GetStartDate(o); + Title = CAPI.ovr_Challenge_GetTitle(o); + Visibility = CAPI.ovr_Challenge_GetVisibility(o); + } + } + + public class ChallengeList : DeserializableList { + public ChallengeList(IntPtr a) { + var count = (int)CAPI.ovr_ChallengeArray_GetSize(a); + _Data = new List(count); + for (int i = 0; i < count; i++) { + _Data.Add(new Challenge(CAPI.ovr_ChallengeArray_GetElement(a, (UIntPtr)i))); + } + + TotalCount = CAPI.ovr_ChallengeArray_GetTotalCount(a); + _PreviousUrl = CAPI.ovr_ChallengeArray_GetPreviousUrl(a); + _NextUrl = CAPI.ovr_ChallengeArray_GetNextUrl(a); + } + + public readonly ulong TotalCount; + } +} diff --git a/Assets/Oculus/Platform/Scripts/Models/Challenge.cs.meta b/Assets/Oculus/Platform/Scripts/Models/Challenge.cs.meta new file mode 100644 index 00000000..7b16c298 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/Models/Challenge.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 980dacd59c1d6ba4b8c85edbbba95e2b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Platform/Scripts/Models/ChallengeEntry.cs b/Assets/Oculus/Platform/Scripts/Models/ChallengeEntry.cs new file mode 100644 index 00000000..10928332 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/Models/ChallengeEntry.cs @@ -0,0 +1,47 @@ +// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! + +namespace Oculus.Platform.Models +{ + using System; + using System.Collections; + using Oculus.Platform.Models; + using System.Collections.Generic; + using UnityEngine; + + public class ChallengeEntry + { + public readonly string DisplayScore; + public readonly byte[] ExtraData; + public readonly int Rank; + public readonly long Score; + public readonly DateTime Timestamp; + public readonly User User; + + + public ChallengeEntry(IntPtr o) + { + DisplayScore = CAPI.ovr_ChallengeEntry_GetDisplayScore(o); + ExtraData = CAPI.ovr_ChallengeEntry_GetExtraData(o); + Rank = CAPI.ovr_ChallengeEntry_GetRank(o); + Score = CAPI.ovr_ChallengeEntry_GetScore(o); + Timestamp = CAPI.ovr_ChallengeEntry_GetTimestamp(o); + User = new User(CAPI.ovr_ChallengeEntry_GetUser(o)); + } + } + + public class ChallengeEntryList : DeserializableList { + public ChallengeEntryList(IntPtr a) { + var count = (int)CAPI.ovr_ChallengeEntryArray_GetSize(a); + _Data = new List(count); + for (int i = 0; i < count; i++) { + _Data.Add(new ChallengeEntry(CAPI.ovr_ChallengeEntryArray_GetElement(a, (UIntPtr)i))); + } + + TotalCount = CAPI.ovr_ChallengeEntryArray_GetTotalCount(a); + _PreviousUrl = CAPI.ovr_ChallengeEntryArray_GetPreviousUrl(a); + _NextUrl = CAPI.ovr_ChallengeEntryArray_GetNextUrl(a); + } + + public readonly ulong TotalCount; + } +} diff --git a/Assets/Oculus/Platform/Scripts/Models/ChallengeEntry.cs.meta b/Assets/Oculus/Platform/Scripts/Models/ChallengeEntry.cs.meta new file mode 100644 index 00000000..8c19a95c --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/Models/ChallengeEntry.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 48af2a6d18bc82b4f9137e3e9ba65d1c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Platform/Scripts/Models/Destination.cs.meta b/Assets/Oculus/Platform/Scripts/Models/Destination.cs.meta index 5b8cfbe8..12748e4a 100644 --- a/Assets/Oculus/Platform/Scripts/Models/Destination.cs.meta +++ b/Assets/Oculus/Platform/Scripts/Models/Destination.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ebbae1565298c9f428c5d96f362d06ab +guid: 344bbfb660179b5458e12baf1eefded0 MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/Models/LaunchDetails.cs b/Assets/Oculus/Platform/Scripts/Models/LaunchDetails.cs index 08284486..eb322c36 100644 --- a/Assets/Oculus/Platform/Scripts/Models/LaunchDetails.cs +++ b/Assets/Oculus/Platform/Scripts/Models/LaunchDetails.cs @@ -17,6 +17,7 @@ public class LaunchDetails public readonly string LaunchSource; public readonly LaunchType LaunchType; public readonly UInt64 RoomID; + public readonly string TrackingID; // May be null. Check before using. public readonly UserList UsersOptional; [Obsolete("Deprecated in favor of UsersOptional")] @@ -30,6 +31,7 @@ public LaunchDetails(IntPtr o) LaunchSource = CAPI.ovr_LaunchDetails_GetLaunchSource(o); LaunchType = CAPI.ovr_LaunchDetails_GetLaunchType(o); RoomID = CAPI.ovr_LaunchDetails_GetRoomID(o); + TrackingID = CAPI.ovr_LaunchDetails_GetTrackingID(o); { var pointer = CAPI.ovr_LaunchDetails_GetUsers(o); Users = new UserList(pointer); diff --git a/Assets/Oculus/Platform/Scripts/Models/Leaderboard.cs b/Assets/Oculus/Platform/Scripts/Models/Leaderboard.cs new file mode 100644 index 00000000..7ffa9e1e --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/Models/Leaderboard.cs @@ -0,0 +1,22 @@ +// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! + +namespace Oculus.Platform.Models +{ + using System; + using System.Collections; + using Oculus.Platform.Models; + using System.Collections.Generic; + using UnityEngine; + + public class Leaderboard + { + public readonly string ApiName; + + + public Leaderboard(IntPtr o) + { + ApiName = CAPI.ovr_Leaderboard_GetApiName(o); + } + } + +} diff --git a/Assets/Oculus/Platform/Scripts/Models/Leaderboard.cs.meta b/Assets/Oculus/Platform/Scripts/Models/Leaderboard.cs.meta new file mode 100644 index 00000000..d2118ffd --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/Models/Leaderboard.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ead2c7f7409f1df44b92755574fe82e9 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Platform/Scripts/Models/LeaderboardEntry.cs b/Assets/Oculus/Platform/Scripts/Models/LeaderboardEntry.cs index bebd0fc7..3f9dc438 100644 --- a/Assets/Oculus/Platform/Scripts/Models/LeaderboardEntry.cs +++ b/Assets/Oculus/Platform/Scripts/Models/LeaderboardEntry.cs @@ -1,5 +1,7 @@ // This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! +#pragma warning disable 0618 + namespace Oculus.Platform.Models { using System; @@ -10,18 +12,33 @@ namespace Oculus.Platform.Models public class LeaderboardEntry { + public readonly string DisplayScore; public readonly byte[] ExtraData; public readonly int Rank; public readonly long Score; + // May be null. Check before using. + public readonly SupplementaryMetric SupplementaryMetricOptional; + [Obsolete("Deprecated in favor of SupplementaryMetricOptional")] + public readonly SupplementaryMetric SupplementaryMetric; public readonly DateTime Timestamp; public readonly User User; public LeaderboardEntry(IntPtr o) { + DisplayScore = CAPI.ovr_LeaderboardEntry_GetDisplayScore(o); ExtraData = CAPI.ovr_LeaderboardEntry_GetExtraData(o); Rank = CAPI.ovr_LeaderboardEntry_GetRank(o); Score = CAPI.ovr_LeaderboardEntry_GetScore(o); + { + var pointer = CAPI.ovr_LeaderboardEntry_GetSupplementaryMetric(o); + SupplementaryMetric = new SupplementaryMetric(pointer); + if (pointer == IntPtr.Zero) { + SupplementaryMetricOptional = null; + } else { + SupplementaryMetricOptional = SupplementaryMetric; + } + } Timestamp = CAPI.ovr_LeaderboardEntry_GetTimestamp(o); User = new User(CAPI.ovr_LeaderboardEntry_GetUser(o)); } diff --git a/Assets/Oculus/Platform/Scripts/Models/NetSyncConnection.cs.meta b/Assets/Oculus/Platform/Scripts/Models/NetSyncConnection.cs.meta index 705a7895..d6acf6a2 100644 --- a/Assets/Oculus/Platform/Scripts/Models/NetSyncConnection.cs.meta +++ b/Assets/Oculus/Platform/Scripts/Models/NetSyncConnection.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 021def392a7307c4a950a32b1f73f00e +guid: 433ad12c9bdbf3e43bf28b96fc4a7d8c MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/Models/NetSyncSession.cs.meta b/Assets/Oculus/Platform/Scripts/Models/NetSyncSession.cs.meta index 6c96184c..68dfdf0c 100644 --- a/Assets/Oculus/Platform/Scripts/Models/NetSyncSession.cs.meta +++ b/Assets/Oculus/Platform/Scripts/Models/NetSyncSession.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 0ee57f638fd886546bfe5aa2316a8d5d +guid: 27ceeaefdd34b124ab5b669191773656 MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/Models/NetSyncSessionsChangedNotification.cs.meta b/Assets/Oculus/Platform/Scripts/Models/NetSyncSessionsChangedNotification.cs.meta index f7a8ad91..faf58b6a 100644 --- a/Assets/Oculus/Platform/Scripts/Models/NetSyncSessionsChangedNotification.cs.meta +++ b/Assets/Oculus/Platform/Scripts/Models/NetSyncSessionsChangedNotification.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b141b04a9242dae4da12d2683e4811e7 +guid: b80c7d30a84eea44995ec04733b7d56b MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/Models/NetSyncSetSessionPropertyResult.cs.meta b/Assets/Oculus/Platform/Scripts/Models/NetSyncSetSessionPropertyResult.cs.meta index 76e48a60..1ecccd9a 100644 --- a/Assets/Oculus/Platform/Scripts/Models/NetSyncSetSessionPropertyResult.cs.meta +++ b/Assets/Oculus/Platform/Scripts/Models/NetSyncSetSessionPropertyResult.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 0b9cc57b6344c564bb11f4ca56f08386 +guid: bb71a8bde13dd2541ac540817b38ed26 MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/Models/NetSyncVoipAttenuationValue.cs.meta b/Assets/Oculus/Platform/Scripts/Models/NetSyncVoipAttenuationValue.cs.meta index c0808474..35450257 100644 --- a/Assets/Oculus/Platform/Scripts/Models/NetSyncVoipAttenuationValue.cs.meta +++ b/Assets/Oculus/Platform/Scripts/Models/NetSyncVoipAttenuationValue.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 0718d02a322b48142b1e78ecce538848 +guid: f68939e9088f0e1409b7581c3b7f7423 MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/Models/PartyUpdateNotification.cs.meta b/Assets/Oculus/Platform/Scripts/Models/PartyUpdateNotification.cs.meta index 7ced1af1..2c55a830 100644 --- a/Assets/Oculus/Platform/Scripts/Models/PartyUpdateNotification.cs.meta +++ b/Assets/Oculus/Platform/Scripts/Models/PartyUpdateNotification.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 06673c5a5c4d6bc4484abdb4adfebc26 +guid: 3fa93ce6e640c324bbbfdb2c1933b052 MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/Models/SupplementaryMetric.cs b/Assets/Oculus/Platform/Scripts/Models/SupplementaryMetric.cs new file mode 100644 index 00000000..372223cb --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/Models/SupplementaryMetric.cs @@ -0,0 +1,24 @@ +// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! + +namespace Oculus.Platform.Models +{ + using System; + using System.Collections; + using Oculus.Platform.Models; + using System.Collections.Generic; + using UnityEngine; + + public class SupplementaryMetric + { + public readonly UInt64 ID; + public readonly long Metric; + + + public SupplementaryMetric(IntPtr o) + { + ID = CAPI.ovr_SupplementaryMetric_GetID(o); + Metric = CAPI.ovr_SupplementaryMetric_GetMetric(o); + } + } + +} diff --git a/Assets/Oculus/Platform/Scripts/Models/SupplementaryMetric.cs.meta b/Assets/Oculus/Platform/Scripts/Models/SupplementaryMetric.cs.meta new file mode 100644 index 00000000..a4a5e491 --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/Models/SupplementaryMetric.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1dacb5d9d5aa77549acc917882846641 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Platform/Scripts/Models/Team.cs.meta b/Assets/Oculus/Platform/Scripts/Models/Team.cs.meta index e3ade1b5..d2dc08f3 100644 --- a/Assets/Oculus/Platform/Scripts/Models/Team.cs.meta +++ b/Assets/Oculus/Platform/Scripts/Models/Team.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ac77b89c30c104d41976fa9364ab87f0 +guid: 6688bd35bbe07f34e887affd44231678 MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/Models/User.cs b/Assets/Oculus/Platform/Scripts/Models/User.cs index e90cfeea..df01778a 100644 --- a/Assets/Oculus/Platform/Scripts/Models/User.cs +++ b/Assets/Oculus/Platform/Scripts/Models/User.cs @@ -10,6 +10,7 @@ namespace Oculus.Platform.Models public class User { + public readonly string DisplayName; public readonly UInt64 ID; public readonly string ImageURL; public readonly string InviteToken; @@ -23,6 +24,7 @@ public class User public User(IntPtr o) { + DisplayName = CAPI.ovr_User_GetDisplayName(o); ID = CAPI.ovr_User_GetID(o); ImageURL = CAPI.ovr_User_GetImageUrl(o); InviteToken = CAPI.ovr_User_GetInviteToken(o); diff --git a/Assets/Oculus/Platform/Scripts/Models/UserDataStoreUpdateResponse.cs b/Assets/Oculus/Platform/Scripts/Models/UserDataStoreUpdateResponse.cs new file mode 100644 index 00000000..d51b0e9a --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/Models/UserDataStoreUpdateResponse.cs @@ -0,0 +1,22 @@ +// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it! + +namespace Oculus.Platform.Models +{ + using System; + using System.Collections; + using Oculus.Platform.Models; + using System.Collections.Generic; + using UnityEngine; + + public class UserDataStoreUpdateResponse + { + public readonly bool Success; + + + public UserDataStoreUpdateResponse(IntPtr o) + { + Success = CAPI.ovr_UserDataStoreUpdateResponse_GetSuccess(o); + } + } + +} diff --git a/Assets/Oculus/Platform/Scripts/Models/UserDataStoreUpdateResponse.cs.meta b/Assets/Oculus/Platform/Scripts/Models/UserDataStoreUpdateResponse.cs.meta new file mode 100644 index 00000000..9f1de63a --- /dev/null +++ b/Assets/Oculus/Platform/Scripts/Models/UserDataStoreUpdateResponse.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 65d59282b50d88341a6aef59542a7643 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Platform/Scripts/NetSyncConnectionStatus.cs.meta b/Assets/Oculus/Platform/Scripts/NetSyncConnectionStatus.cs.meta index 4f01959e..71a5a25b 100644 --- a/Assets/Oculus/Platform/Scripts/NetSyncConnectionStatus.cs.meta +++ b/Assets/Oculus/Platform/Scripts/NetSyncConnectionStatus.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 65f225aade97b5b43a58c1a30f40c229 +guid: 7d99139a9949b644f8e0c30424a66811 MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/NetSyncDisconnectReason.cs.meta b/Assets/Oculus/Platform/Scripts/NetSyncDisconnectReason.cs.meta index 81a58f6f..1959f58e 100644 --- a/Assets/Oculus/Platform/Scripts/NetSyncDisconnectReason.cs.meta +++ b/Assets/Oculus/Platform/Scripts/NetSyncDisconnectReason.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 28d59554b5e6ce94793295ce54af14ff +guid: bc8a40d383dac8d43a18afa26e1ef18e MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/NetSyncOptions.cs b/Assets/Oculus/Platform/Scripts/NetSyncOptions.cs index b4378f58..3219703b 100644 --- a/Assets/Oculus/Platform/Scripts/NetSyncOptions.cs +++ b/Assets/Oculus/Platform/Scripts/NetSyncOptions.cs @@ -14,20 +14,24 @@ public NetSyncOptions() { Handle = CAPI.ovr_NetSyncOptions_Create(); } + /// If provided, immediately set the voip_group to this value upon connection public void SetVoipGroup(string value) { CAPI.ovr_NetSyncOptions_SetVoipGroup(Handle, value); } + /// When a new remote voip user connects, default that connection to this + /// stream type by default. public void SetVoipStreamDefault(NetSyncVoipStreamMode value) { CAPI.ovr_NetSyncOptions_SetVoipStreamDefault(Handle, value); } + /// Unique identifier within the current application grouping public void SetZoneId(string value) { CAPI.ovr_NetSyncOptions_SetZoneId(Handle, value); } - // For passing to native C + /// For passing to native C public static explicit operator IntPtr(NetSyncOptions options) { return options != null ? options.Handle : IntPtr.Zero; } diff --git a/Assets/Oculus/Platform/Scripts/NetSyncOptions.cs.meta b/Assets/Oculus/Platform/Scripts/NetSyncOptions.cs.meta index 74e72048..57def246 100644 --- a/Assets/Oculus/Platform/Scripts/NetSyncOptions.cs.meta +++ b/Assets/Oculus/Platform/Scripts/NetSyncOptions.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 21315400743b3414aa3d9e7517a93d6d +guid: 7c113c0763b38384cb2d3a261568d3ab MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/NetSyncVoipMicSource.cs.meta b/Assets/Oculus/Platform/Scripts/NetSyncVoipMicSource.cs.meta index 57571684..2e36e035 100644 --- a/Assets/Oculus/Platform/Scripts/NetSyncVoipMicSource.cs.meta +++ b/Assets/Oculus/Platform/Scripts/NetSyncVoipMicSource.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 325d0224e7aea0740be07d6c6c73101b +guid: d56c6286b086058499e240163af8998f MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/NetSyncVoipStreamMode.cs.meta b/Assets/Oculus/Platform/Scripts/NetSyncVoipStreamMode.cs.meta index 7a018108..378a1eee 100644 --- a/Assets/Oculus/Platform/Scripts/NetSyncVoipStreamMode.cs.meta +++ b/Assets/Oculus/Platform/Scripts/NetSyncVoipStreamMode.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 71eb8470c05652e4a94ba8fbc7ca17e6 +guid: 786a1d3fe7542a44597d50bc5719cc0d MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/PartyUpdateAction.cs.meta b/Assets/Oculus/Platform/Scripts/PartyUpdateAction.cs.meta index fd85febb..413efa44 100644 --- a/Assets/Oculus/Platform/Scripts/PartyUpdateAction.cs.meta +++ b/Assets/Oculus/Platform/Scripts/PartyUpdateAction.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ef0fea52eb00cec459f6961c574f0335 +guid: 7d07fd1552d5aa54d85a23bc7f82f966 MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/Platform.cs b/Assets/Oculus/Platform/Scripts/Platform.cs index dc35771f..dc952eec 100644 --- a/Assets/Oculus/Platform/Scripts/Platform.cs +++ b/Assets/Oculus/Platform/Scripts/Platform.cs @@ -148,6 +148,9 @@ public static partial class ApplicationLifecycle public static Models.LaunchDetails GetLaunchDetails() { return new Models.LaunchDetails(CAPI.ovr_ApplicationLifecycle_GetLaunchDetails()); } + public static void LogDeeplinkResult(string trackingID, LaunchResult result) { + CAPI.ovr_ApplicationLifecycle_LogDeeplinkResult(trackingID, result); + } } public static partial class Rooms @@ -399,6 +402,49 @@ public static partial class Leaderboards } } + public static partial class Challenges + { + public static Request GetNextEntries(Models.ChallengeEntryList list) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_HTTP_GetWithMessageType(list.NextUrl, (int)Message.MessageType.Challenges_GetNextEntries)); + } + + return null; + } + + public static Request GetPreviousEntries(Models.ChallengeEntryList list) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_HTTP_GetWithMessageType(list.PreviousUrl, (int)Message.MessageType.Challenges_GetPreviousEntries)); + } + + return null; + } + + public static Request GetNextChallenges(Models.ChallengeList list) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_HTTP_GetWithMessageType(list.NextUrl, (int)Message.MessageType.Challenges_GetNextChallenges)); + } + + return null; + } + + public static Request GetPreviousChallenges(Models.ChallengeList list) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_HTTP_GetWithMessageType(list.PreviousUrl, (int)Message.MessageType.Challenges_GetPreviousChallenges)); + } + + return null; + } + } + public static partial class Voip { public static void Start(UInt64 userID) @@ -495,6 +541,10 @@ public static void SetNewConnectionOptions(VoipOptions voipOptions) } } + public static partial class AbuseReport + { + } + public static partial class Achievements { /// Add 'count' to the achievement with the given name. This must be a COUNT @@ -635,7 +685,7 @@ public static void SetLaunchIntentChangedNotificationCallback(Message.Ca callback ); } - + } public static partial class AssetFile @@ -828,7 +878,7 @@ public static void SetDownloadUpdateNotificationCallback(Message Create(string leaderboardName, ChallengeOptions challengeOptions) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Challenges_Create(leaderboardName, (IntPtr)challengeOptions)); + } + + return null; + } + + /// If the current user has an invite to the challenge, decline the invite + /// + public static Request DeclineInvite(UInt64 challengeID) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Challenges_DeclineInvite(challengeID)); + } + + return null; + } + + /// If the current user has permission, deletes a challenge + /// + public static Request Delete(UInt64 challengeID) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Challenges_Delete(challengeID)); + } + + return null; + } + + /// Gets the information for a single challenge + /// \param challengeID The id of the challenge whose entries to return. + /// + public static Request Get(UInt64 challengeID) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Challenges_Get(challengeID)); + } + + return null; + } + + /// Requests a block of challenge entries. + /// \param challengeID The id of the challenge whose entries to return. + /// \param limit Defines the maximum number of entries to return. + /// \param filter Allows you to restrict the returned values by friends. + /// \param startAt Defines whether to center the query on the user or start at the top of the challenge. + /// + public static Request GetEntries(UInt64 challengeID, int limit, LeaderboardFilterType filter, LeaderboardStartAt startAt) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Challenges_GetEntries(challengeID, limit, filter, startAt)); + } + + return null; + } + + /// Requests a block of challenge entries. + /// \param challengeID The id of the challenge whose entries to return. + /// \param limit The maximum number of entries to return. + /// \param afterRank The position after which to start. For example, 10 returns challenge results starting with the 11th user. + /// + public static Request GetEntriesAfterRank(UInt64 challengeID, int limit, ulong afterRank) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Challenges_GetEntriesAfterRank(challengeID, limit, afterRank)); + } + + return null; + } + + /// Requests a block of challenge entries. Will return only entries matching + /// the user IDs passed in. + /// \param challengeID The id of the challenge whose entries to return. + /// \param limit Defines the maximum number of entries to return. + /// \param startAt Defines whether to center the query on the user or start at the top of the challenge. If this is LeaderboardStartAt.CenteredOnViewer or LeaderboardStartAt.CenteredOnViewerOrTop, then the current user's ID will be automatically added to the query. + /// \param userIDs Defines a list of user ids to get entries for. + /// + public static Request GetEntriesByIds(UInt64 challengeID, int limit, LeaderboardStartAt startAt, UInt64[] userIDs) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Challenges_GetEntriesByIds(challengeID, limit, startAt, userIDs, (uint)(userIDs != null ? userIDs.Length : 0))); + } + + return null; + } + + /// Requests for a list of challenge + /// + public static Request GetList(ChallengeOptions challengeOptions, int limit) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Challenges_GetList((IntPtr)challengeOptions, limit)); + } + + return null; + } + + /// If the current user has permission, join the challenge + /// + public static Request Join(UInt64 challengeID) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Challenges_Join(challengeID)); + } + + return null; + } + + /// If the current user has permission, leave the challenge + /// + public static Request Leave(UInt64 challengeID) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Challenges_Leave(challengeID)); + } + + return null; + } + + /// If the current user has permission, updates a challenge information + /// + public static Request UpdateInfo(UInt64 challengeID, ChallengeOptions challengeOptions) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Challenges_UpdateInfo(challengeID, (IntPtr)challengeOptions)); + } + + return null; + } + + } + public static partial class CloudStorage { /// Deletes the specified save data buffer. Conflicts are handled just like @@ -1217,6 +1416,23 @@ public static Request WriteEntry(string leaderboardName, long score, byte[ return null; } + /// Writes a single entry to a leaderboard, can include supplementary metrics + /// \param leaderboardName The leaderboard for which to write the entry. + /// \param score The score to write. + /// \param supplementaryMetric A metric that can be used for tiebreakers. + /// \param extraData A 2KB custom data field that is associated with the leaderboard entry. This can be a game replay or anything that provides more detail about the entry to the viewer. + /// \param forceUpdate If true, the score always updates. This happens ecen if it is not the user's best score. + /// + public static Request WriteEntryWithSupplementaryMetric(string leaderboardName, long score, long supplementaryMetric, byte[] extraData = null, bool forceUpdate = false) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Leaderboard_WriteEntryWithSupplementaryMetric(leaderboardName, score, supplementaryMetric, extraData, (uint)(extraData != null ? extraData.Length : 0), forceUpdate)); + } + + return null; + } + } public static partial class Livestreaming @@ -1233,6 +1449,18 @@ public static partial class Livestreaming return null; } + /// Launch the Livestreaming Flow. + /// + public static Request LaunchLivestreamingFlow() + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_Livestreaming_LaunchLivestreamingFlow()); + } + + return null; + } + /// Pauses the livestreaming session if there is one. NOTE: this function is /// safe to call if no session is active. /// @@ -1271,7 +1499,7 @@ public static void SetStatusUpdateNotificationCallback(Message.Callba callback ); } - + } public static partial class Media @@ -1658,7 +1886,7 @@ public static void SetConnectionStatusChangedNotificationCallback(Message. callback ); } - + /// Generated in response to Net.Ping(). Either contains ping time in /// microseconds or indicates that there was a timeout. /// @@ -1707,7 +1935,7 @@ public static void SetPingResultNotificationCallback(Message. callback ); } - + } public static partial class Notifications @@ -1765,7 +1993,7 @@ public static void SetPartyUpdateNotificationCallback(Message.Cal callback ); } - + /// Handle this to notify the user when they've received an invitation to join /// a room in your game. You can use this in lieu of, or in addition to, /// polling for room invitations via @@ -2166,7 +2394,7 @@ public static void SetRoomInviteReceivedNotificationCallback(Message.Callback c callback ); } - + } public static partial class Users @@ -2355,6 +2583,122 @@ public static Request LaunchProfile(UInt64 userID) } + public static partial class UserDataStore + { + /// Delete an entry by a key from a private user data store. + /// \param userID The ID of the user who owns this private user data store. + /// \param key The key of entry. + /// + public static Request PrivateDeleteEntryByKey(UInt64 userID, string key) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_UserDataStore_PrivateDeleteEntryByKey(userID, key)); + } + + return null; + } + + /// Get entries from a private user data store. + /// \param userID The ID of the user who owns this private user data store. + /// + public static Request> PrivateGetEntries(UInt64 userID) + { + if (Core.IsInitialized()) + { + return new Request>(CAPI.ovr_UserDataStore_PrivateGetEntries(userID)); + } + + return null; + } + + /// Get an entry by a key from a private user data store. + /// \param userID The ID of the user who owns this private user data store. + /// \param key The key of entry. + /// + public static Request> PrivateGetEntryByKey(UInt64 userID, string key) + { + if (Core.IsInitialized()) + { + return new Request>(CAPI.ovr_UserDataStore_PrivateGetEntryByKey(userID, key)); + } + + return null; + } + + /// Write a single entry to a private user data store. + /// \param userID The ID of the user who owns this private user data store. + /// \param key The key of entry. + /// \param value The value of entry. + /// + public static Request PrivateWriteEntry(UInt64 userID, string key, string value) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_UserDataStore_PrivateWriteEntry(userID, key, value)); + } + + return null; + } + + /// Delete an entry by a key from a public user data store. + /// \param userID The ID of the user who owns this public user data store. + /// \param key The key of entry. + /// + public static Request PublicDeleteEntryByKey(UInt64 userID, string key) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_UserDataStore_PublicDeleteEntryByKey(userID, key)); + } + + return null; + } + + /// Get entries from a public user data store. + /// \param userID The ID of the user who owns this public user data store. + /// + public static Request> PublicGetEntries(UInt64 userID) + { + if (Core.IsInitialized()) + { + return new Request>(CAPI.ovr_UserDataStore_PublicGetEntries(userID)); + } + + return null; + } + + /// Get an entry by a key from a public user data store. + /// \param userID The ID of the user who owns this public user data store. + /// \param key The key of entry. + /// + public static Request> PublicGetEntryByKey(UInt64 userID, string key) + { + if (Core.IsInitialized()) + { + return new Request>(CAPI.ovr_UserDataStore_PublicGetEntryByKey(userID, key)); + } + + return null; + } + + /// Write a single entry to a public user data store. + /// \param userID The ID of the user who owns this public user data store. + /// \param key The key of entry. + /// \param value The value of entry. + /// + public static Request PublicWriteEntry(UInt64 userID, string key, string value) + { + if (Core.IsInitialized()) + { + return new Request(CAPI.ovr_UserDataStore_PublicWriteEntry(userID, key, value)); + } + + return null; + } + + } + public static partial class Voip { /// Sets whether SystemVoip should be suppressed so that this app's Voip can @@ -2381,7 +2725,7 @@ public static void SetVoipConnectRequestCallback(Message. callback ); } - + /// Sent to indicate that the state of the VoIP connection changed. Use /// Message.GetNetworkingPeer() and NetworkingPeer.GetState() to extract the /// current state. @@ -2393,7 +2737,7 @@ public static void SetVoipStateChangeCallback(Message.Cal callback ); } - + /// Sent to indicate that some part of the overall state of SystemVoip has /// changed. Use Message.GetSystemVoipState() and the properties of /// SystemVoipState to extract the state that triggered the notification. @@ -2409,7 +2753,21 @@ public static void SetSystemVoipStateNotificationCallback(Message.Callback callback) + { + Callback.SetNotificationCallback( + Message.MessageType.Notification_Vrcamera_GetSurfaceUpdate, + callback + ); + } + } diff --git a/Assets/Oculus/Platform/Scripts/PlatformInternal.cs b/Assets/Oculus/Platform/Scripts/PlatformInternal.cs index c200adb9..0098622d 100644 --- a/Assets/Oculus/Platform/Scripts/PlatformInternal.cs +++ b/Assets/Oculus/Platform/Scripts/PlatformInternal.cs @@ -14,6 +14,7 @@ public static class PlatformInternal { // Keep this enum in sync with ovrMessageTypeInternal in OVR_Platform_Internal.h public enum MessageTypeInternal : uint { //TODO - rename this to type; it's already in Message class + AbuseReport_LaunchAdvancedReportFlow = 0x4CB13A6E, Application_ExecuteCoordinatedLaunch = 0x267DB4F4, Application_GetInstalledApplications = 0x520F744C, Avatar_UpdateMetaData = 0x7BCFD98E, @@ -42,9 +43,13 @@ public enum MessageTypeInternal : uint { //TODO - rename this to type; it's alre NetSync_GetVoipAttenuation = 0x112ACA17, NetSync_GetVoipAttenuationDefault = 0x577BA8A0, NetSync_SetVoipAttenuation = 0x3497D7F6, + NetSync_SetVoipAttenuationModel = 0x6A94AD8E, + NetSync_SetVoipChannelCfg = 0x5C95A4F3, NetSync_SetVoipGroup = 0x58129C8E, + NetSync_SetVoipListentoChannels = 0x5ED0EA32, NetSync_SetVoipMicSource = 0x3302F770, NetSync_SetVoipSessionMuted = 0x5585FF0A, + NetSync_SetVoipSpeaktoChannels = 0x2DAFCDD5, NetSync_SetVoipStreamMode = 0x67E19D37, Party_Create = 0x1AD31B4F, Party_GatherInApplication = 0x7287C183, @@ -101,8 +106,12 @@ internal static Message ParseMessageHandle(IntPtr messageHandle, Message.Message case MessageTypeInternal.Livestreaming_StopPartyStream: case MessageTypeInternal.Livestreaming_UpdateMicStatus: case MessageTypeInternal.NetSync_SetVoipAttenuation: + case MessageTypeInternal.NetSync_SetVoipAttenuationModel: + case MessageTypeInternal.NetSync_SetVoipChannelCfg: case MessageTypeInternal.NetSync_SetVoipGroup: + case MessageTypeInternal.NetSync_SetVoipListentoChannels: case MessageTypeInternal.NetSync_SetVoipMicSource: + case MessageTypeInternal.NetSync_SetVoipSpeaktoChannels: case MessageTypeInternal.Party_Leave: case MessageTypeInternal.User_CancelRecordingForReportFlow: case MessageTypeInternal.User_TestUserCreateDeviceManifest: @@ -117,6 +126,7 @@ internal static Message ParseMessageHandle(IntPtr messageHandle, Message.Message message = new MessageWithLaunchBlockFlowResult(messageHandle); break; + case MessageTypeInternal.AbuseReport_LaunchAdvancedReportFlow: case MessageTypeInternal.User_LaunchReportFlow2: message = new MessageWithLaunchReportFlowResult(messageHandle); break; diff --git a/Assets/Oculus/Platform/Scripts/RichPresenceExtraContext.cs.meta b/Assets/Oculus/Platform/Scripts/RichPresenceExtraContext.cs.meta index 80b8d546..3bc70029 100644 --- a/Assets/Oculus/Platform/Scripts/RichPresenceExtraContext.cs.meta +++ b/Assets/Oculus/Platform/Scripts/RichPresenceExtraContext.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ddde54b747ea4fa42a8a9f66bad7d790 +guid: 3f8cf77ef2738b6449804829344ba214 MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/RichPresenceOptions.cs b/Assets/Oculus/Platform/Scripts/RichPresenceOptions.cs index 4beba132..e7efa099 100644 --- a/Assets/Oculus/Platform/Scripts/RichPresenceOptions.cs +++ b/Assets/Oculus/Platform/Scripts/RichPresenceOptions.cs @@ -14,26 +14,35 @@ public RichPresenceOptions() { Handle = CAPI.ovr_RichPresenceOptions_Create(); } + /// This the unique API Name that refers to an in-app destination public void SetApiName(string value) { CAPI.ovr_RichPresenceOptions_SetApiName(Handle, value); } + /// DEPRECATED: Unused + [Obsolete("Deprecated")] public void SetArgs(string key, string value) { CAPI.ovr_RichPresenceOptions_SetArgsString(Handle, key, value); } + [Obsolete("Deprecated")] public void ClearArgs() { CAPI.ovr_RichPresenceOptions_ClearArgs(Handle); } + /// The current amount of users that have joined this user's + /// squad/team/game/match etc. public void SetCurrentCapacity(uint value) { CAPI.ovr_RichPresenceOptions_SetCurrentCapacity(Handle, value); } + /// Optionally passed in to use a different deeplink message than the one + /// defined in the api_name public void SetDeeplinkMessageOverride(string value) { CAPI.ovr_RichPresenceOptions_SetDeeplinkMessageOverride(Handle, value); } + /// The time the current match/game/round etc. ends public void SetEndTime(DateTime value) { CAPI.ovr_RichPresenceOptions_SetEndTime(Handle, value); } @@ -42,28 +51,40 @@ public void SetExtraContext(RichPresenceExtraContext value) { CAPI.ovr_RichPresenceOptions_SetExtraContext(Handle, value); } + /// Users reported with the same instance ID will be considered to be together + /// and could interact with each other + public void SetInstanceId(string value) { + CAPI.ovr_RichPresenceOptions_SetInstanceId(Handle, value); + } + + /// Set whether or not the person is shown as active or idle public void SetIsIdle(bool value) { CAPI.ovr_RichPresenceOptions_SetIsIdle(Handle, value); } + /// Set whether or not the person is shown as joinable or not to others public void SetIsJoinable(bool value) { CAPI.ovr_RichPresenceOptions_SetIsJoinable(Handle, value); } + /// DEPRECATED: unused + [Obsolete("Deprecated")] public void SetJoinableId(string value) { CAPI.ovr_RichPresenceOptions_SetJoinableId(Handle, value); } + /// The maximum that can join this user public void SetMaxCapacity(uint value) { CAPI.ovr_RichPresenceOptions_SetMaxCapacity(Handle, value); } + /// The time the current match/game/round etc. started public void SetStartTime(DateTime value) { CAPI.ovr_RichPresenceOptions_SetStartTime(Handle, value); } - // For passing to native C + /// For passing to native C public static explicit operator IntPtr(RichPresenceOptions options) { return options != null ? options.Handle : IntPtr.Zero; } diff --git a/Assets/Oculus/Platform/Scripts/RichPresenceOptions.cs.meta b/Assets/Oculus/Platform/Scripts/RichPresenceOptions.cs.meta index 1c658693..8d04ba69 100644 --- a/Assets/Oculus/Platform/Scripts/RichPresenceOptions.cs.meta +++ b/Assets/Oculus/Platform/Scripts/RichPresenceOptions.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 386aad0a25d6ca240922fb0cec4ee80a +guid: bb600ac7811913243b20b4dbc46ffbac MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Platform/Scripts/RoomOptions.cs b/Assets/Oculus/Platform/Scripts/RoomOptions.cs index dd398d60..fbbfc253 100644 --- a/Assets/Oculus/Platform/Scripts/RoomOptions.cs +++ b/Assets/Oculus/Platform/Scripts/RoomOptions.cs @@ -47,7 +47,7 @@ public void SetTurnOffUpdates(bool value) { } - // For passing to native C + /// For passing to native C public static explicit operator IntPtr(RoomOptions options) { return options != null ? options.Handle : IntPtr.Zero; } diff --git a/Assets/Oculus/Platform/Scripts/UserOptions.cs b/Assets/Oculus/Platform/Scripts/UserOptions.cs index 2aa869ed..ddf8a621 100644 --- a/Assets/Oculus/Platform/Scripts/UserOptions.cs +++ b/Assets/Oculus/Platform/Scripts/UserOptions.cs @@ -31,7 +31,7 @@ public void SetTimeWindow(TimeWindow value) { } - // For passing to native C + /// For passing to native C public static explicit operator IntPtr(UserOptions options) { return options != null ? options.Handle : IntPtr.Zero; } diff --git a/Assets/Oculus/Platform/Scripts/VoipInput.cs b/Assets/Oculus/Platform/Scripts/VoipInput.cs index d5cd5ee6..61735e0a 100644 --- a/Assets/Oculus/Platform/Scripts/VoipInput.cs +++ b/Assets/Oculus/Platform/Scripts/VoipInput.cs @@ -1,5 +1,5 @@ //This file is deprecated. Use the high level voip system instead: -// https://developer.oculus.com/documentation/platform/latest/concepts/dg-cc-voip/ +// https://developer.oculus.com/documentation/unity/ps-voip/ #if false namespace Oculus.Platform { diff --git a/Assets/Oculus/Platform/Scripts/VoipOptions.cs b/Assets/Oculus/Platform/Scripts/VoipOptions.cs index 1f26fc73..91cca668 100644 --- a/Assets/Oculus/Platform/Scripts/VoipOptions.cs +++ b/Assets/Oculus/Platform/Scripts/VoipOptions.cs @@ -14,16 +14,27 @@ public VoipOptions() { Handle = CAPI.ovr_VoipOptions_Create(); } + /// Sets the maximum average bitrate the audio codec should use. Higher + /// bitrates will increase audio quality at the expense of increased network + /// usage. Use a lower bitrate if you think the quality is good but the network + /// usage is too much. Use a higher bitrate if you think the quality is bad and + /// you can afford to have a large streaming bitrate. public void SetBitrateForNewConnections(VoipBitrate value) { CAPI.ovr_VoipOptions_SetBitrateForNewConnections(Handle, value); } + /// Set the opus codec to use discontinous transmission (DTX). DTX only + /// transmits data when a person is speaking. Setting this to true takes + /// advantage of the fact that in a two-way converstation each individual + /// speaks for less than half the time. Enabling DTX will conserve battery + /// power and reduce transmission rate when a pause in the voice chat is + /// detected. public void SetCreateNewConnectionUseDtx(VoipDtxState value) { CAPI.ovr_VoipOptions_SetCreateNewConnectionUseDtx(Handle, value); } - // For passing to native C + /// For passing to native C public static explicit operator IntPtr(VoipOptions options) { return options != null ? options.Handle : IntPtr.Zero; } diff --git a/Assets/Oculus/Spatializer/Plugins/Android/libs/arm64-v8a/libAudioPluginOculusSpatializer.so b/Assets/Oculus/Spatializer/Plugins/Android/libs/arm64-v8a/libAudioPluginOculusSpatializer.so index 53e34f29..c6afc1ee 100644 Binary files a/Assets/Oculus/Spatializer/Plugins/Android/libs/arm64-v8a/libAudioPluginOculusSpatializer.so and b/Assets/Oculus/Spatializer/Plugins/Android/libs/arm64-v8a/libAudioPluginOculusSpatializer.so differ diff --git a/Assets/Oculus/Spatializer/Plugins/Android/libs/armeabi-v7a/libAudioPluginOculusSpatializer.so b/Assets/Oculus/Spatializer/Plugins/Android/libs/armeabi-v7a/libAudioPluginOculusSpatializer.so index 46ae1851..94b50306 100644 Binary files a/Assets/Oculus/Spatializer/Plugins/Android/libs/armeabi-v7a/libAudioPluginOculusSpatializer.so and b/Assets/Oculus/Spatializer/Plugins/Android/libs/armeabi-v7a/libAudioPluginOculusSpatializer.so differ diff --git a/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/Info.plist b/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/Info.plist index 8f812fa4..315f0ba3 100644 --- a/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/Info.plist +++ b/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/Info.plist @@ -15,17 +15,17 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleLongVersionString - 1.48.0 + 1.57.0 CFBundleName CFBundlePackageType APPL CFBundleShortVersionString - 1.48.0 + 1.57.0 CFBundleSignature ???? CFBundleVersion - 1.48.0 + 1.57.0 CSResourcesFileMapped LSRequiresCarbon diff --git a/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/Info.plist.meta b/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/Info.plist.meta index 9abb443d..7f108435 100644 --- a/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/Info.plist.meta +++ b/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/Info.plist.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 -guid: c76f915af578f004cbba304c0968b3c9 -timeCreated: 1587079909 +guid: 73ea634f3440126468d352cee973030c +timeCreated: 1611977727 licenseType: Store DefaultImporter: userData: diff --git a/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/MacOS/AudioPluginOculusSpatializer b/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/MacOS/AudioPluginOculusSpatializer index 9aea5a64..517014ee 100644 Binary files a/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/MacOS/AudioPluginOculusSpatializer and b/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/MacOS/AudioPluginOculusSpatializer differ diff --git a/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/MacOS/AudioPluginOculusSpatializer.meta b/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/MacOS/AudioPluginOculusSpatializer.meta index 1386c6f4..e8984f2c 100644 --- a/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/MacOS/AudioPluginOculusSpatializer.meta +++ b/Assets/Oculus/Spatializer/Plugins/AudioPluginOculusSpatializer.bundle/Contents/MacOS/AudioPluginOculusSpatializer.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 -guid: 77716eac5f114614ab5cd7dbe9d1f29e -timeCreated: 1587079909 +guid: b8c21b377c17c4044b765bfa2196a17b +timeCreated: 1611977727 licenseType: Store DefaultImporter: userData: diff --git a/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll b/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll index 049afd6a..45719541 100644 Binary files a/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll and b/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll differ diff --git a/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.meta b/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.meta index 7471a13c..a1ce3152 100644 --- a/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.meta +++ b/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 2110d36298c920d41bb38b2c4a49e2b4 +guid: 274149ea700742b4494bd7710cb164d7 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.old0 b/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.old0 new file mode 100644 index 00000000..049afd6a Binary files /dev/null and b/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.old0 differ diff --git a/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.old0.meta b/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.old0.meta new file mode 100644 index 00000000..7471a13c --- /dev/null +++ b/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.old0.meta @@ -0,0 +1,60 @@ +fileFormatVersion: 2 +guid: 2110d36298c920d41bb38b2c4a49e2b4 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 1 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Editor + second: + enabled: 0 + settings: + CPU: X86 + OS: Windows + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + CPU: X86 + DefaultValueInitialized: true + OS: Windows + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: x86 + - first: + Standalone: Win + second: + enabled: 1 + settings: + CPU: AnyCPU + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.old1 b/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.old1 new file mode 100644 index 00000000..645fe780 Binary files /dev/null and b/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.old1 differ diff --git a/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.old1.meta b/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.old1.meta new file mode 100644 index 00000000..8f135d31 --- /dev/null +++ b/Assets/Oculus/Spatializer/Plugins/x86/AudioPluginOculusSpatializer.dll.old1.meta @@ -0,0 +1,60 @@ +fileFormatVersion: 2 +guid: 8a3dc477ce8cdb244999dba378640acf +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 1 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Editor + second: + enabled: 0 + settings: + CPU: X86 + OS: Windows + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + CPU: X86 + DefaultValueInitialized: true + OS: Windows + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: x86 + - first: + Standalone: Win + second: + enabled: 1 + settings: + CPU: AnyCPU + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll b/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll index e0bd26b1..488db6c7 100644 Binary files a/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll and b/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll differ diff --git a/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.meta b/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.meta index 7668b7dc..80934db6 100644 --- a/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.meta +++ b/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 3c5db0898f7e5514d8c970e5ad173f34 +guid: 0f78b052108cc704f833e77e1741117e PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.old0 b/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.old0 new file mode 100644 index 00000000..e0bd26b1 Binary files /dev/null and b/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.old0 differ diff --git a/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.old0.meta b/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.old0.meta new file mode 100644 index 00000000..7668b7dc --- /dev/null +++ b/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.old0.meta @@ -0,0 +1,60 @@ +fileFormatVersion: 2 +guid: 3c5db0898f7e5514d8c970e5ad173f34 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 1 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Editor + second: + enabled: 0 + settings: + CPU: X86_64 + OS: Windows + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + CPU: X86_64 + DefaultValueInitialized: true + OS: Windows + - first: + Standalone: Linux64 + second: + enabled: 1 + settings: + CPU: AnyCPU + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: x86_64 + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 1 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.old1 b/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.old1 new file mode 100644 index 00000000..1dc9945e Binary files /dev/null and b/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.old1 differ diff --git a/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.old1.meta b/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.old1.meta new file mode 100644 index 00000000..f08a1757 --- /dev/null +++ b/Assets/Oculus/Spatializer/Plugins/x86_64/AudioPluginOculusSpatializer.dll.old1.meta @@ -0,0 +1,60 @@ +fileFormatVersion: 2 +guid: 70bc5248c094c9848b111592adb19265 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 1 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Editor + second: + enabled: 0 + settings: + CPU: X86_64 + OS: Windows + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + CPU: X86_64 + DefaultValueInitialized: true + OS: Windows + - first: + Standalone: Linux64 + second: + enabled: 1 + settings: + CPU: AnyCPU + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: x86_64 + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 1 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/Spatializer/editor/ONSPAudioPluginUpdater.cs b/Assets/Oculus/Spatializer/editor/ONSPAudioPluginUpdater.cs index e74fcd44..412fb8d2 100644 --- a/Assets/Oculus/Spatializer/editor/ONSPAudioPluginUpdater.cs +++ b/Assets/Oculus/Spatializer/editor/ONSPAudioPluginUpdater.cs @@ -308,10 +308,6 @@ private static void AttemptSpatializerPluginUpdate(bool triggeredByAutoUpdate) } } } - else - { - UnityEngine.Debug.Log("No new spatializer plugin(s) found"); - } } private static void RestartUnityEditor() diff --git a/Assets/Oculus/Spatializer/editor/ONSPAudioPluginUpdater.cs.meta b/Assets/Oculus/Spatializer/editor/ONSPAudioPluginUpdater.cs.meta index 348c1fa5..c6828f31 100644 --- a/Assets/Oculus/Spatializer/editor/ONSPAudioPluginUpdater.cs.meta +++ b/Assets/Oculus/Spatializer/editor/ONSPAudioPluginUpdater.cs.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 -guid: 04af4d701ed82b842aa38a8234356364 -timeCreated: 1587079911 +guid: 01003325ce51f0849839bce334f0766d +timeCreated: 1611977730 licenseType: Store MonoImporter: serializedVersion: 2 diff --git a/Assets/Oculus/Spatializer/editor/ONSPAudioPluginUpdaterStub.cs.meta b/Assets/Oculus/Spatializer/editor/ONSPAudioPluginUpdaterStub.cs.meta index ffb29b4d..a20d3b1e 100644 --- a/Assets/Oculus/Spatializer/editor/ONSPAudioPluginUpdaterStub.cs.meta +++ b/Assets/Oculus/Spatializer/editor/ONSPAudioPluginUpdaterStub.cs.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 -guid: d53b5f22c937b8544909d42dd8c18b84 -timeCreated: 1587079912 +guid: 6a15444a2512a5c468e7dcd4b3f726ca +timeCreated: 1611977730 licenseType: Store MonoImporter: serializedVersion: 2 diff --git a/Assets/Oculus/Spatializer/scripts/ONSPAmbisonicsNative.cs b/Assets/Oculus/Spatializer/scripts/ONSPAmbisonicsNative.cs index 583b5977..702a1679 100644 --- a/Assets/Oculus/Spatializer/scripts/ONSPAmbisonicsNative.cs +++ b/Assets/Oculus/Spatializer/scripts/ONSPAmbisonicsNative.cs @@ -3,16 +3,16 @@ Content : Native interface into the Oculus Ambisonics Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus SDK Version 3.5 (the "License"); -you may not use the Oculus SDK except in compliance with the License, -which is provided at the time of installation or download, or which +Licensed under the Oculus SDK Version 3.5 (the "License"); +you may not use the Oculus SDK except in compliance with the License, +which is provided at the time of installation or download, or which otherwise accompanies this software in either electronic or hard copy form. You may obtain a copy of the License at https://developer.oculus.com/licenses/sdk-3.5/ -Unless required by applicable law or agreed to in writing, the Oculus SDK +Unless required by applicable law or agreed to in writing, the Oculus SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and @@ -24,16 +24,17 @@ limitations under the License. public class ONSPAmbisonicsNative : MonoBehaviour { + // this caches the audio source so that per-frame reflection isnt needed to use them. + AudioSource source; #if !UNITY_5 static int numFOAChannels = 4; // we are only dealing with 1st order Ambisonics at this time - static int paramVSpeakerMode = 6; // set speaker mode (OculusAmbi or VSpeaker) - static int paramAmbiStat = 7; // use this to return internal Ambisonic status + static int paramAmbiStat = 6; // use this to return internal Ambisonic status // Staus codes that may return from Ambisonic engine public enum ovrAmbisonicsNativeStatus { Uninitialized = -1, // Ambisonic stream not initialized (inital status) - NotEnabled, // Ambisonic has not been enabled on clip + NotEnabled, // Ambisonic has not been enabled on clip Success, // Stream initialized and playing StreamError, // Something wrong with input stream (not a 4-channel AmbiX format stream?) ProcessError, // Handling of stream error @@ -42,21 +43,6 @@ public enum ovrAmbisonicsNativeStatus // current status ovrAmbisonicsNativeStatus currentStatus = ovrAmbisonicsNativeStatus.Uninitialized; - - // true to use Virtual Speaker output. Otherwise use OculusAmbi - [SerializeField] - private bool useVirtualSpeakers = false; - public bool UseVirtualSpeakers - { - get - { - return useVirtualSpeakers; - } - set - { - useVirtualSpeakers = value; - } - } #endif /// /// OnEnable this instance. @@ -68,7 +54,7 @@ void OnEnable() Debug.Log("Ambisonic ERROR: Ambisonic support in Unity 2017 or higher"); #else - AudioSource source = GetComponent(); + source = GetComponent(); currentStatus = ovrAmbisonicsNativeStatus.Uninitialized; @@ -106,20 +92,12 @@ void OnEnable() /// void Update() { - AudioSource source = GetComponent(); - if (source == null) { // We already caught the error in Awake so bail return; } - // Set speaker mode - if(useVirtualSpeakers == true) - source.SetAmbisonicDecoderFloat(paramVSpeakerMode, 1.0f); // VSpeakerMode - else - source.SetAmbisonicDecoderFloat(paramVSpeakerMode, 0.0f); // OclusAmbi - float statusF = 0.0f; // PGG 5/25/2017 There is a bug in the 2017.2 beta that does not // allow for ambisonic params to be passed through to native diff --git a/Assets/Oculus/Spatializer/scripts/ONSPAudioSource.cs b/Assets/Oculus/Spatializer/scripts/ONSPAudioSource.cs index 77465396..ac9cb36d 100644 --- a/Assets/Oculus/Spatializer/scripts/ONSPAudioSource.cs +++ b/Assets/Oculus/Spatializer/scripts/ONSPAudioSource.cs @@ -3,16 +3,16 @@ Content : Interface into the Oculus Native Spatializer Plugin Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus SDK Version 3.5 (the "License"); -you may not use the Oculus SDK except in compliance with the License, -which is provided at the time of installation or download, or which +Licensed under the Oculus SDK Version 3.5 (the "License"); +you may not use the Oculus SDK except in compliance with the License, +which is provided at the time of installation or download, or which otherwise accompanies this software in either electronic or hard copy form. You may obtain a copy of the License at https://developer.oculus.com/licenses/sdk-3.5/ -Unless required by applicable law or agreed to in writing, the Oculus SDK +Unless required by applicable law or agreed to in writing, the Oculus SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and @@ -31,8 +31,8 @@ public class ONSPAudioSource : MonoBehaviour { #if TEST_READONLY_PARAMETERS // Spatializer read-only system parameters (global) - static int readOnly_GlobalRelectionOn = 8; - static int readOnly_NumberOfUsedSpatializedVoices = 9; + static int readOnly_GlobalRelectionOn = 7; + static int readOnly_NumberOfUsedSpatializedVoices = 8; #endif [RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)] @@ -45,7 +45,7 @@ static void OnBeforeSceneLoadRuntimeMethod() public const string strONSPS = "AudioPluginOculusSpatializer"; [DllImport(strONSPS)] - private static extern void ONSP_GetGlobalRoomReflectionValues(ref bool reflOn, ref bool reverbOn, + private static extern void ONSP_GetGlobalRoomReflectionValues(ref bool reflOn, ref bool reverbOn, ref float width, ref float height, ref float length); // Public @@ -77,7 +77,7 @@ public float Gain gain = Mathf.Clamp(value, 0.0f, 24.0f); } } - + [SerializeField] private bool useInvSqr = false; public bool UseInvSqr @@ -88,7 +88,7 @@ public bool UseInvSqr } set { - useInvSqr = value; + useInvSqr = value; } } @@ -188,7 +188,7 @@ void Update() // We might iterate through multiple sources / game object var source = GetComponent(); - // READ-ONLY PARAMETER TEST + // READ-ONLY PARAMETER TEST #if TEST_READONLY_PARAMETERS float rfl_enabled = 0.0f; source.GetSpatializerFloat(readOnly_GlobalRelectionOn, out rfl_enabled); @@ -201,8 +201,8 @@ void Update() #endif // Check to see if we should disable spatializion - if ((Application.isPlaying == false) || - (AudioListener.pause == true) || + if ((Application.isPlaying == false) || + (AudioListener.pause == true) || (source.isPlaying == false) || (source.isActiveAndEnabled == false) ) @@ -212,7 +212,7 @@ void Update() } else { - SetParameters(ref source); + SetParameters(ref source); } } @@ -224,7 +224,6 @@ enum Parameters : int P_FAR, P_RADIUS, P_DISABLE_RFL, - P_VSPEAKERMODE, P_AMBISTAT, P_READONLY_GLOBAL_RFL_ENABLED, // READ-ONLY P_READONLY_NUM_VOICES, // READ-ONLY @@ -240,7 +239,7 @@ public void SetParameters(ref AudioSource source) { // See if we should enable spatialization source.spatialize = enableSpatialization; - + source.SetSpatializerFloat((int)Parameters.P_GAIN, gain); // All inputs are floats; convert bool to 0.0 and 1.0 if(useInvSqr == true) @@ -261,10 +260,10 @@ public void SetParameters(ref AudioSource source) source.SetSpatializerFloat((int)Parameters.P_SENDLEVEL, reverbSend); } - private static ONSPAudioSource RoomReflectionGizmoAS = null; + private static ONSPAudioSource RoomReflectionGizmoAS = null; /// - /// + /// /// void OnDrawGizmos() { @@ -301,7 +300,7 @@ void OnDrawGizmos() c.a = colorSolidAlpha; Gizmos.color = c; Gizmos.DrawSphere(transform.position, Far); - + // VolumetricRadius (purple) c.r = 1.0f; c.g = 0.0f; @@ -345,9 +344,9 @@ void OnDrawGizmos() } /// - /// + /// /// - void OnDestroy() + void OnDestroy() { // We will null out single pointer instance // of the room reflection gizmo since we are being destroyed. @@ -358,7 +357,7 @@ void OnDestroy() RoomReflectionGizmoAS = null; } } - + [System.Runtime.InteropServices.DllImport("AudioPluginOculusSpatializer")] private static extern int OSP_SetGlobalVoiceLimit(int VoiceLimit); } diff --git a/Assets/Oculus/Spatializer/scripts/ONSPPropagationGeometry.cs b/Assets/Oculus/Spatializer/scripts/ONSPPropagationGeometry.cs index 223d371c..dcadce62 100644 --- a/Assets/Oculus/Spatializer/scripts/ONSPPropagationGeometry.cs +++ b/Assets/Oculus/Spatializer/scripts/ONSPPropagationGeometry.cs @@ -419,12 +419,12 @@ private int uploadMesh(IntPtr geometryHandle, GameObject meshObject, Matrix4x4 w { // For each grid cell output two triangles indices[indexOffset + 0] = (vertexOffset + (y * wRes) + x); - indices[indexOffset + 1] = (vertexOffset + ((y + 1) * wRes) + x); - indices[indexOffset + 2] = (vertexOffset + (y * wRes) + x + 1); + indices[indexOffset + 1] = (vertexOffset + (y * wRes) + x + 1); + indices[indexOffset + 2] = (vertexOffset + ((y + 1) * wRes) + x); indices[indexOffset + 3] = (vertexOffset + ((y + 1) * wRes) + x); - indices[indexOffset + 4] = (vertexOffset + ((y + 1) * wRes) + x + 1); - indices[indexOffset + 5] = (vertexOffset + (y * wRes) + x + 1); + indices[indexOffset + 4] = (vertexOffset + (y * wRes) + x + 1); + indices[indexOffset + 5] = (vertexOffset + ((y + 1) * wRes) + x + 1); indexOffset += 6; } } diff --git a/Assets/Oculus/Spatializer/scripts/ONSPPropagationInterface.cs b/Assets/Oculus/Spatializer/scripts/ONSPPropagationInterface.cs index cd0e2d57..28c0288b 100644 --- a/Assets/Oculus/Spatializer/scripts/ONSPPropagationInterface.cs +++ b/Assets/Oculus/Spatializer/scripts/ONSPPropagationInterface.cs @@ -124,6 +124,7 @@ public class ClientType public const uint OVRA_CLIENT_TYPE_OTHER = 11; public const uint OVRA_CLIENT_TYPE_WWISE_UNKNOWN = 12; public const uint OVRA_CLIENT_TYPE_WWISE_2019_1 = 13; + public const uint OVRA_CLIENT_TYPE_WWISE_2019_2 = 14; } public interface PropagationInterface diff --git a/Assets/Oculus/Spatializer/scripts/OculusSpatializerUnity.cs b/Assets/Oculus/Spatializer/scripts/OculusSpatializerUnity.cs index 30cd733e..239342e8 100644 --- a/Assets/Oculus/Spatializer/scripts/OculusSpatializerUnity.cs +++ b/Assets/Oculus/Spatializer/scripts/OculusSpatializerUnity.cs @@ -22,6 +22,7 @@ limitations under the License. using System.Collections.Generic; using UnityEngine; using System.Runtime.InteropServices; +using AOT; public class OculusSpatializerUnity : MonoBehaviour { @@ -35,9 +36,6 @@ public class OculusSpatializerUnity : MonoBehaviour public int rayCacheSize = 512; public bool dynamicReflectionsEnabled = true; - - AudioRaycastCallback _raycastCallback; // cache an instance of the delegate so the GC doesn't nuke it! - float particleSize = 0.2f; float particleOffset = 0.1f; @@ -58,6 +56,7 @@ public class OculusSpatializerUnity : MonoBehaviour static LayerMask gLayerMask = -1; static Vector3 swapHandedness(Vector3 vec) { return new Vector3(vec.x, vec.y, -vec.z); } + [MonoPInvokeCallback(typeof(AudioRaycastCallback))] static void AudioRaycast(Vector3 origin, Vector3 direction, out Vector3 point, out Vector3 normal, System.IntPtr data) { point = Vector3.zero; @@ -73,8 +72,7 @@ static void AudioRaycast(Vector3 origin, Vector3 direction, out Vector3 point, o void Start() { - _raycastCallback = new AudioRaycastCallback(AudioRaycast); - OSP_Unity_AssignRaycastCallback(_raycastCallback, System.IntPtr.Zero); + OSP_Unity_AssignRaycastCallback(AudioRaycast, System.IntPtr.Zero); } void OnDestroy() @@ -86,7 +84,7 @@ void Update() { if (dynamicReflectionsEnabled) { - OSP_Unity_AssignRaycastCallback(_raycastCallback, System.IntPtr.Zero); + OSP_Unity_AssignRaycastCallback(AudioRaycast, System.IntPtr.Zero); } else { @@ -324,7 +322,7 @@ public delegate void AudioRaycastCallback(Vector3 origin, Vector3 direction, private const string strOSP = "AudioPluginOculusSpatializer"; [DllImport(strOSP)] - private static extern int OSP_Unity_AssignRaycastCallback(System.MulticastDelegate callback, System.IntPtr data); + private static extern int OSP_Unity_AssignRaycastCallback(AudioRaycastCallback callback, System.IntPtr data); [DllImport(strOSP)] private static extern int OSP_Unity_AssignRaycastCallback(System.IntPtr callback, System.IntPtr data); diff --git a/Assets/Oculus/VR/AudioClips.meta b/Assets/Oculus/VR/AudioClips.meta new file mode 100644 index 00000000..40eeb8db --- /dev/null +++ b/Assets/Oculus/VR/AudioClips.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 095d7a3dae7d8ea4cb761651027164ce +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/AudioClips/sfx_belt_in.wav b/Assets/Oculus/VR/AudioClips/sfx_belt_in.wav new file mode 100644 index 00000000..6e1229cb Binary files /dev/null and b/Assets/Oculus/VR/AudioClips/sfx_belt_in.wav differ diff --git a/Assets/Oculus/VR/AudioClips/sfx_belt_in.wav.meta b/Assets/Oculus/VR/AudioClips/sfx_belt_in.wav.meta new file mode 100644 index 00000000..75494615 --- /dev/null +++ b/Assets/Oculus/VR/AudioClips/sfx_belt_in.wav.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: d716392289ac6764994885f5821f7d7b +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Editor/OVRBuild.cs b/Assets/Oculus/VR/Editor/OVRBuild.cs index 17ebf9f0..48a5d7f2 100644 --- a/Assets/Oculus/VR/Editor/OVRBuild.cs +++ b/Assets/Oculus/VR/Editor/OVRBuild.cs @@ -19,6 +19,20 @@ limitations under the License. ************************************************************************************/ +#if USING_XR_MANAGEMENT && USING_XR_SDK_OCULUS +#define USING_XR_SDK +#endif + +#if UNITY_2020_1_OR_NEWER +#define REQUIRES_XR_SDK +#endif + +// Unit made a change that broke `BuildOptions.AcceptExternalModificationsToPlayer` +// Thread detailing issue: https://forum.unity.com/threads/oculus-build-invalidoperationexception-the-build-target-does-not-support-build-appending.994930/ +#if UNITY_2020_1_OR_NEWER || UNITY_2019_4_OR_NEWER +#define DONT_USE_BUILD_OPTIONS_EXTERNAL_MODIFICATIONS_FLAG +#endif + using UnityEngine; using UnityEditor; using System; @@ -32,626 +46,660 @@ limitations under the License. /// partial class OculusBuildApp : EditorWindow { - static void SetPCTarget() - { - if (EditorUserBuildSettings.activeBuildTarget != BuildTarget.StandaloneWindows) - { - EditorUserBuildSettings.SwitchActiveBuildTarget (BuildTargetGroup.Standalone, BuildTarget.StandaloneWindows); - } - UnityEditorInternal.VR.VREditor.SetVREnabledOnTargetGroup(BuildTargetGroup.Standalone, true); - PlayerSettings.virtualRealitySupported = true; - AssetDatabase.SaveAssets(); - } - - static void SetAndroidTarget() - { - EditorUserBuildSettings.androidBuildSubtarget = MobileTextureSubtarget.ASTC; - EditorUserBuildSettings.androidBuildSystem = AndroidBuildSystem.Gradle; - - if (EditorUserBuildSettings.activeBuildTarget != BuildTarget.Android) - { - EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.Android, BuildTarget.Android); - } - - UnityEditorInternal.VR.VREditor.SetVREnabledOnTargetGroup(BuildTargetGroup.Standalone, true); - PlayerSettings.virtualRealitySupported = true; - AssetDatabase.SaveAssets(); - } - -#if UNITY_EDITOR_WIN && UNITY_2018_3_OR_NEWER && UNITY_ANDROID - // Build setting constants - const string REMOTE_APK_PATH = "/sdcard/Oculus/Temp"; - const float USB_TRANSFER_SPEED_THRES = 25.0f; - const float USB_3_TRANSFER_SPEED = 32.0f; - const int NUM_BUILD_AND_RUN_STEPS = 9; - const int BYTES_TO_MEGABYTES = 1048576; - - // Progress bar variables - static int totalBuildSteps; - static int currentStep; - static string progressMessage; - - // Build setting varaibles - static string gradlePath; - static string jdkPath; - static string androidSdkPath; - static string applicationIdentifier; - static string productName; - static string dataPath; - - static string gradleTempExport; - static string gradleExport; - static bool showCancel; - static bool buildFailed; - - static double totalBuildTime; - - static DirectorySyncer.CancellationTokenSource syncCancelToken; - static Process gradleBuildProcess; - static Thread buildThread; - - static bool? apkOutputSuccessful; - - private void OnGUI() - { - // Fix progress bar window size - minSize = new Vector2(500, 170); - maxSize = new Vector2(500, 170); - - // Show progress bar - Rect progressRect = EditorGUILayout.BeginVertical(); - progressRect.height = 25.0f; - float progress = currentStep / (float)totalBuildSteps; - EditorGUI.ProgressBar(progressRect, progress, progressMessage); - - // Show cancel button only after Unity export has finished. - if (showCancel) - { - GUIContent btnTxt = new GUIContent("Cancel"); - var rt = GUILayoutUtility.GetRect(btnTxt, GUI.skin.button, GUILayout.ExpandWidth(false)); - rt.center = new Vector2(EditorGUIUtility.currentViewWidth / 2, progressRect.height * 2); - if (GUI.Button(rt, btnTxt, GUI.skin.button)) - { - CancelBuild(); - } - } - EditorGUILayout.EndVertical(); - - // Close window if progress has completed or Unity export failed - if (progress >= 1.0f || buildFailed) - { - Close(); - } - } - - void Update() - { - // Force window update if not in focus to ensure progress bar still updates - var window = EditorWindow.focusedWindow; - if (window != null && window.ToString().Contains("OculusBuildApp")) - { - Repaint(); - } - } - - void CancelBuild() - { - SetProgressBarMessage("Canceling . . ."); - - if (syncCancelToken != null) - { - syncCancelToken.Cancel(); - } - - if (apkOutputSuccessful.HasValue && apkOutputSuccessful.Value) - { - buildThread.Abort(); - buildFailed = true; - } - - if (gradleBuildProcess != null && !gradleBuildProcess.HasExited) - { - var cancelThread = new Thread(delegate () - { - CancelGradleBuild(); - }); - cancelThread.Start(); - } - } - - void CancelGradleBuild() - { - Process cancelGradleProcess = new Process(); - string arguments = "-Xmx1024m -classpath \"" + gradlePath + - "\" org.gradle.launcher.GradleMain --stop"; - var processInfo = new System.Diagnostics.ProcessStartInfo - { - WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal, - FileName = jdkPath, - Arguments = arguments, - RedirectStandardInput = true, - UseShellExecute = false, - CreateNoWindow = true, - RedirectStandardError = true, - RedirectStandardOutput = true, - }; - - cancelGradleProcess.StartInfo = processInfo; - cancelGradleProcess.EnableRaisingEvents = true; - - cancelGradleProcess.OutputDataReceived += new DataReceivedEventHandler( - (s, e) => - { - if (e != null && e.Data != null && e.Data.Length != 0) - { - UnityEngine.Debug.LogFormat("Gradle: {0}", e.Data); - } - } - ); - - apkOutputSuccessful = false; - - cancelGradleProcess.Start(); - cancelGradleProcess.BeginOutputReadLine(); - cancelGradleProcess.WaitForExit(); - - buildFailed = true; - } - - [MenuItem("Oculus/OVR Build/OVR Build APK And Run %k", false, 20)] - static void StartBuildAndRun() - { - EditorWindow.GetWindow(typeof(OculusBuildApp)); - - showCancel = false; - buildFailed = false; - totalBuildTime = 0; - - InitializeProgressBar(NUM_BUILD_AND_RUN_STEPS); - IncrementProgressBar("Exporting Unity Project . . ."); - - OVRPlugin.SetDeveloperMode(OVRPlugin.Bool.True); - OVRPlugin.AddCustomMetadata("build_type", "ovr_build_and_run"); - - if (!CheckADBDevices()) - { - buildFailed = true; - return; - } - - // Record OVR Build and Run start event - OVRPlugin.SendEvent("ovr_build_and_run_start", "", "ovrbuild"); - - apkOutputSuccessful = null; - syncCancelToken = null; - gradleBuildProcess = null; - - UnityEngine.Debug.Log("OVRBuild: Starting Unity build ..."); - - SetupDirectories(); - - // 1. Get scenes to build in Unity, and export gradle project - var buildResult = UnityBuildPlayer(); - - if (buildResult.summary.result == UnityEditor.Build.Reporting.BuildResult.Succeeded) - { - foreach (var step in buildResult.steps) - { - // Only log top level build steps & specific nested steps to reduce the number of events sent - if (step.depth == 1 || - (step.name.StartsWith("Packaging assets") && step.name.EndsWith(".assets")) || - step.name.Equals("Managed Stripping: (Mono)") || - step.name.Equals("Splitting assets") || - step.name.Equals("IL2CPP") || - step.name.Equals("Exporting project") - ) - { - OVRPlugin.SendEvent($"build_step_unity_build_player {step.name}", step.duration.TotalSeconds.ToString(), "ovrbuild"); - } - } - - OVRPlugin.SendEvent("build_step_unity_export", buildResult.summary.totalTime.TotalSeconds.ToString(), "ovrbuild"); - totalBuildTime += buildResult.summary.totalTime.TotalSeconds; - - // Set static variables so build thread has updated data - showCancel = true; - gradlePath = OVRConfig.Instance.GetGradlePath(); - jdkPath = OVRConfig.Instance.GetJDKPath(); - androidSdkPath = OVRConfig.Instance.GetAndroidSDKPath(); - applicationIdentifier = PlayerSettings.GetApplicationIdentifier(BuildTargetGroup.Android); + static void SetPCTarget() + { + if (EditorUserBuildSettings.activeBuildTarget != BuildTarget.StandaloneWindows) + { + EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.Standalone, BuildTarget.StandaloneWindows); + } +#if !USING_XR_SDK && !REQUIRES_XR_SDK + UnityEditorInternal.VR.VREditor.SetVREnabledOnTargetGroup(BuildTargetGroup.Standalone, true); +#pragma warning disable 618 + PlayerSettings.virtualRealitySupported = true; +#pragma warning restore 618 +#endif + AssetDatabase.SaveAssets(); + } + + static void SetAndroidTarget() + { + EditorUserBuildSettings.androidBuildSubtarget = MobileTextureSubtarget.ASTC; + EditorUserBuildSettings.androidBuildSystem = AndroidBuildSystem.Gradle; + + if (EditorUserBuildSettings.activeBuildTarget != BuildTarget.Android) + { + EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.Android, BuildTarget.Android); + } + +#if !USING_XR_SDK && !REQUIRES_XR_SDK + UnityEditorInternal.VR.VREditor.SetVREnabledOnTargetGroup(BuildTargetGroup.Standalone, true); +#pragma warning disable 618 + PlayerSettings.virtualRealitySupported = true; +#pragma warning restore 618 +#endif + AssetDatabase.SaveAssets(); + } + +#if UNITY_EDITOR_WIN && UNITY_ANDROID + // Build setting constants + const string REMOTE_APK_PATH = "/data/local/tmp"; + const float USB_TRANSFER_SPEED_THRES = 25.0f; + const float USB_3_TRANSFER_SPEED = 32.0f; + const float TRANSFER_SPEED_CHECK_THRESHOLD = 4.0f; + const int NUM_BUILD_AND_RUN_STEPS = 9; + const int BYTES_TO_MEGABYTES = 1048576; + + // Progress bar variables + static int totalBuildSteps; + static int currentStep; + static string progressMessage; + + // Build setting varaibles + static string gradlePath; + static string jdkPath; + static string androidSdkPath; + static string applicationIdentifier; + static string productName; + static string dataPath; + + static string gradleTempExport; + static string gradleExport; + static bool showCancel; + static bool buildFailed; + + static double totalBuildTime; + + static DirectorySyncer.CancellationTokenSource syncCancelToken; + static Process gradleBuildProcess; + static Thread buildThread; + + static bool? apkOutputSuccessful; + + private void OnGUI() + { + // Fix progress bar window size + minSize = new Vector2(500, 170); + maxSize = new Vector2(500, 170); + + // Show progress bar + Rect progressRect = EditorGUILayout.BeginVertical(); + progressRect.height = 25.0f; + float progress = currentStep / (float)totalBuildSteps; + EditorGUI.ProgressBar(progressRect, progress, progressMessage); + + // Show cancel button only after Unity export has finished. + if (showCancel) + { + GUIContent btnTxt = new GUIContent("Cancel"); + var rt = GUILayoutUtility.GetRect(btnTxt, GUI.skin.button, GUILayout.ExpandWidth(false)); + rt.center = new Vector2(EditorGUIUtility.currentViewWidth / 2, progressRect.height * 2); + if (GUI.Button(rt, btnTxt, GUI.skin.button)) + { + CancelBuild(); + } + } + EditorGUILayout.EndVertical(); + + // Close window if progress has completed or Unity export failed + if (progress >= 1.0f || buildFailed) + { + Close(); + } + } + + void Update() + { + // Force window update if not in focus to ensure progress bar still updates + var window = EditorWindow.focusedWindow; + if (window != null && window.ToString().Contains("OculusBuildApp")) + { + Repaint(); + } + } + + void CancelBuild() + { + SetProgressBarMessage("Canceling . . ."); + + if (syncCancelToken != null) + { + syncCancelToken.Cancel(); + } + + if (apkOutputSuccessful.HasValue && apkOutputSuccessful.Value) + { + buildThread.Abort(); + buildFailed = true; + } + + if (gradleBuildProcess != null && !gradleBuildProcess.HasExited) + { + var cancelThread = new Thread(delegate () + { + CancelGradleBuild(); + }); + cancelThread.Start(); + } + } + + void CancelGradleBuild() + { + Process cancelGradleProcess = new Process(); + string arguments = "-Xmx1024m -classpath \"" + gradlePath + + "\" org.gradle.launcher.GradleMain --stop"; + var processInfo = new System.Diagnostics.ProcessStartInfo + { + WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal, + FileName = jdkPath, + Arguments = arguments, + RedirectStandardInput = true, + UseShellExecute = false, + CreateNoWindow = true, + RedirectStandardError = true, + RedirectStandardOutput = true, + }; + + cancelGradleProcess.StartInfo = processInfo; + cancelGradleProcess.EnableRaisingEvents = true; + + cancelGradleProcess.OutputDataReceived += new DataReceivedEventHandler( + (s, e) => + { + if (e != null && e.Data != null && e.Data.Length != 0) + { + UnityEngine.Debug.LogFormat("Gradle: {0}", e.Data); + } + } + ); + + apkOutputSuccessful = false; + + cancelGradleProcess.Start(); + cancelGradleProcess.BeginOutputReadLine(); + cancelGradleProcess.WaitForExit(); + + buildFailed = true; + } + + [MenuItem("Oculus/OVR Build/OVR Build APK And Run %k", false, 20)] + static void StartBuildAndRun() + { + EditorWindow.GetWindow(typeof(OculusBuildApp)); + + showCancel = false; + buildFailed = false; + totalBuildTime = 0; + + InitializeProgressBar(NUM_BUILD_AND_RUN_STEPS); + IncrementProgressBar("Exporting Unity Project . . ."); + + OVRPlugin.SetDeveloperMode(OVRPlugin.Bool.True); + OVRPlugin.AddCustomMetadata("build_type", "ovr_build_and_run"); + + if (!CheckADBDevices()) + { + buildFailed = true; + return; + } + + // Record OVR Build and Run start event + OVRPlugin.SendEvent("ovr_build_and_run_start", "", "ovrbuild"); + + apkOutputSuccessful = null; + syncCancelToken = null; + gradleBuildProcess = null; + + UnityEngine.Debug.Log("OVRBuild: Starting Unity build ..."); + + SetupDirectories(); + + // 1. Get scenes to build in Unity, and export gradle project + var buildResult = UnityBuildPlayer(); + + if (buildResult.summary.result == UnityEditor.Build.Reporting.BuildResult.Succeeded) + { + foreach (var step in buildResult.steps) + { + // Only log top level build steps & specific nested steps to reduce the number of events sent + if (step.depth == 1 || + (step.name.StartsWith("Packaging assets") && step.name.EndsWith(".assets")) || + step.name.Equals("Managed Stripping: (Mono)") || + step.name.Equals("Splitting assets") || + step.name.Equals("IL2CPP") || + step.name.Equals("Exporting project") + ) + { + OVRPlugin.SendEvent($"build_step_unity_build_player {step.name}", step.duration.TotalSeconds.ToString(), "ovrbuild"); + } + } + + OVRPlugin.SendEvent("build_step_unity_export", buildResult.summary.totalTime.TotalSeconds.ToString(), "ovrbuild"); + totalBuildTime += buildResult.summary.totalTime.TotalSeconds; + + // Set static variables so build thread has updated data + showCancel = true; + gradlePath = OVRConfig.Instance.GetGradlePath(); + jdkPath = OVRConfig.Instance.GetJDKPath(); + androidSdkPath = OVRConfig.Instance.GetAndroidSDKPath(); + applicationIdentifier = PlayerSettings.GetApplicationIdentifier(BuildTargetGroup.Android); #if UNITY_2019_3_OR_NEWER - productName = "launcher"; + productName = "launcher"; #else productName = Application.productName; #endif - dataPath = Application.dataPath; - - buildThread = new Thread(delegate () - { - OVRBuildRun(); - }); - buildThread.Start(); - return; - } - else if (buildResult.summary.result == UnityEditor.Build.Reporting.BuildResult.Cancelled) - { - UnityEngine.Debug.Log("Build cancelled."); - } - else - { - UnityEngine.Debug.Log("Build failed."); - } - buildFailed = true; - } - - private static UnityEditor.Build.Reporting.BuildReport UnityBuildPlayer() - { - var sceneList = GetScenesToBuild(); - var buildPlayerOptions = new BuildPlayerOptions - { - scenes = sceneList.ToArray(), - locationPathName = gradleTempExport, - target = BuildTarget.Android, - options = BuildOptions.AcceptExternalModificationsToPlayer | - BuildOptions.Development | - BuildOptions.AllowDebugging - }; - - var buildResult = BuildPipeline.BuildPlayer(buildPlayerOptions); - - UnityEngine.Debug.Log(UnityBuildPlayerSummary(buildResult)); - - return buildResult; - } - - private static string UnityBuildPlayerSummary(UnityEditor.Build.Reporting.BuildReport report) - { - var sb = new System.Text.StringBuilder(); - - sb.Append($"Unity Build Player: Build {report.summary.result} ({report.summary.totalSize} bytes) in {report.summary.totalTime.TotalSeconds:0.00}s"); - - foreach (var step in report.steps) - { - sb.AppendLine(); - if (step.depth > 0) - { - sb.Append(new String('-', step.depth)); - sb.Append(' '); - } - sb.Append($"{step.name}: {step.duration:g}"); - } - - return sb.ToString(); - } - - private static void OVRBuildRun() - { - // 2. Process gradle project - IncrementProgressBar("Processing gradle project . . ."); - if (ProcessGradleProject()) - { - // 3. Build gradle project - IncrementProgressBar("Starting gradle build . . ."); - if (BuildGradleProject()) - { - OVRPlugin.SendEvent("build_complete", totalBuildTime.ToString(), "ovrbuild"); - // 4. Deploy and run - if (DeployAPK()) - { - return; - } - } - } - buildFailed = true; - } - - private static bool BuildGradleProject() - { - gradleBuildProcess = new Process(); - string arguments = "-Xmx4096m -classpath \"" + gradlePath + - "\" org.gradle.launcher.GradleMain assembleDebug -x validateSigningDebug --profile"; + dataPath = Application.dataPath; + + buildThread = new Thread(delegate () + { + OVRBuildRun(); + }); + buildThread.Start(); + return; + } + else if (buildResult.summary.result == UnityEditor.Build.Reporting.BuildResult.Cancelled) + { + UnityEngine.Debug.Log("Build cancelled."); + } + else + { + UnityEngine.Debug.Log("Build failed."); + } + buildFailed = true; + } + + private static UnityEditor.Build.Reporting.BuildReport UnityBuildPlayer() + { + // Unity introduced a possible bug with Unity 2020.1.10f1 that causes an exception + // when building with the option 'BuildOptions.AcceptExternalModificationsToPlayer' + // In order to maintain the same logic, we are using `EditorUserBuildSettings.exportAsGoogleAndroidProject` +#if DONT_USE_BUILD_OPTIONS_EXTERNAL_MODIFICATIONS_FLAG + bool previousExportAsGoogleAndroidProject = EditorUserBuildSettings.exportAsGoogleAndroidProject; + EditorUserBuildSettings.exportAsGoogleAndroidProject = true; +#endif + try + { + var sceneList = GetScenesToBuild(); + var buildPlayerOptions = new BuildPlayerOptions + { + scenes = sceneList.ToArray(), + locationPathName = gradleTempExport, + target = BuildTarget.Android, + options = BuildOptions.Development + | BuildOptions.AllowDebugging +#if !DONT_USE_BUILD_OPTIONS_EXTERNAL_MODIFICATIONS_FLAG + | BuildOptions.AcceptExternalModificationsToPlayer +#endif + }; + + var buildResult = BuildPipeline.BuildPlayer(buildPlayerOptions); + + UnityEngine.Debug.Log(UnityBuildPlayerSummary(buildResult)); + + return buildResult; + } + finally + { +#if DONT_USE_BUILD_OPTIONS_EXTERNAL_MODIFICATIONS_FLAG + EditorUserBuildSettings.exportAsGoogleAndroidProject = previousExportAsGoogleAndroidProject; +#endif + } + } + + private static string UnityBuildPlayerSummary(UnityEditor.Build.Reporting.BuildReport report) + { + var sb = new System.Text.StringBuilder(); + + sb.Append($"Unity Build Player: Build {report.summary.result} ({report.summary.totalSize} bytes) in {report.summary.totalTime.TotalSeconds:0.00}s"); + + foreach (var step in report.steps) + { + sb.AppendLine(); + if (step.depth > 0) + { + sb.Append(new String('-', step.depth)); + sb.Append(' '); + } + sb.Append($"{step.name}: {step.duration:g}"); + } + + return sb.ToString(); + } + + private static void OVRBuildRun() + { + // 2. Process gradle project + IncrementProgressBar("Processing gradle project . . ."); + if (ProcessGradleProject()) + { + // 3. Build gradle project + IncrementProgressBar("Starting gradle build . . ."); + if (BuildGradleProject()) + { + OVRPlugin.SendEvent("build_complete", totalBuildTime.ToString(), "ovrbuild"); + // 4. Deploy and run + if (DeployAPK()) + { + return; + } + } + } + buildFailed = true; + } + + private static bool BuildGradleProject() + { + gradleBuildProcess = new Process(); + string arguments = "-Xmx4096m -classpath \"" + gradlePath + + "\" org.gradle.launcher.GradleMain assembleDebug -x validateSigningDebug --profile"; #if UNITY_2019_3_OR_NEWER - var gradleProjectPath = gradleExport; + var gradleProjectPath = gradleExport; #else var gradleProjectPath = Path.Combine(gradleExport, productName); #endif - var processInfo = new System.Diagnostics.ProcessStartInfo - { - WorkingDirectory = gradleProjectPath, - WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal, - FileName = jdkPath, - Arguments = arguments, - RedirectStandardInput = true, - UseShellExecute = false, - CreateNoWindow = true, - RedirectStandardError = true, - RedirectStandardOutput = true, - }; - - gradleBuildProcess.StartInfo = processInfo; - gradleBuildProcess.EnableRaisingEvents = true; - - DateTime gradleStartTime = System.DateTime.Now; - DateTime gradleEndTime = System.DateTime.MinValue; - - gradleBuildProcess.Exited += new System.EventHandler( - (s, e) => - { - UnityEngine.Debug.Log("Gradle: Exited"); - } - ); - - gradleBuildProcess.OutputDataReceived += new DataReceivedEventHandler( - (s, e) => - { - if (e != null && e.Data != null && - e.Data.Length != 0 && - (e.Data.Contains("BUILD") || e.Data.StartsWith("See the profiling report at:"))) - { - UnityEngine.Debug.LogFormat("Gradle: {0}", e.Data); - if (e.Data.Contains("SUCCESSFUL")) - { - UnityEngine.Debug.LogFormat("APK Build Completed: {0}", - Path.Combine(Path.Combine(gradleProjectPath, "build\\outputs\\apk\\debug"), productName + "-debug.apk").Replace("/", "\\")); - if (!apkOutputSuccessful.HasValue) - { - apkOutputSuccessful = true; - } - gradleEndTime = System.DateTime.Now; - } - else if (e.Data.Contains("FAILED")) - { - apkOutputSuccessful = false; - } - } - } - ); - - gradleBuildProcess.ErrorDataReceived += new DataReceivedEventHandler( - (s, e) => - { - if (e != null && e.Data != null && - e.Data.Length != 0) - { - UnityEngine.Debug.LogErrorFormat("Gradle: {0}", e.Data); - } - apkOutputSuccessful = false; - } - ); - - gradleBuildProcess.Start(); - gradleBuildProcess.BeginOutputReadLine(); - IncrementProgressBar("Building gradle project . . ."); - - gradleBuildProcess.WaitForExit(); - - // Add a timeout for if gradle unexpectedlly exits or errors out - Stopwatch timeout = new Stopwatch(); - timeout.Start(); - while (apkOutputSuccessful == null) - { - if (timeout.ElapsedMilliseconds > 5000) - { - UnityEngine.Debug.LogError("Gradle has exited unexpectedly."); - apkOutputSuccessful = false; - } - System.Threading.Thread.Sleep(100); - } - - // Record time it takes to build gradle project only if we had a successful build - double gradleTime = (gradleEndTime - gradleStartTime).TotalSeconds; - if (gradleTime > 0) - { - OVRPlugin.SendEvent("build_step_building_gradle_project", gradleTime.ToString(), "ovrbuild"); - totalBuildTime += gradleTime; - } - - return apkOutputSuccessful.HasValue && apkOutputSuccessful.Value; - } - - private static bool ProcessGradleProject() - { - DateTime syncStartTime = System.DateTime.Now; - DateTime syncEndTime = System.DateTime.MinValue; - - try - { - var ps = System.Text.RegularExpressions.Regex.Escape("" + Path.DirectorySeparatorChar); - // ignore files .gradle/** build/** foo/.gradle/** and bar/build/** - var ignorePattern = string.Format("^([^{0}]+{0})?(\\.gradle|build){0}", ps); - - var syncer = new DirectorySyncer(gradleTempExport, - gradleExport, ignorePattern); - - syncCancelToken = new DirectorySyncer.CancellationTokenSource(); - var syncResult = syncer.Synchronize(syncCancelToken.Token); - syncEndTime = System.DateTime.Now; - } - catch (Exception e) - { - UnityEngine.Debug.Log("OVRBuild: Processing gradle project failed with exception: " + - e.Message); - return false; - } - - if (syncCancelToken.IsCancellationRequested) - { - return false; - } - - // Record time it takes to sync gradle projects only if the sync was successful - double syncTime = (syncEndTime - syncStartTime).TotalSeconds; - if (syncTime > 0) - { - OVRPlugin.SendEvent("build_step_sync_gradle_project", syncTime.ToString(), "ovrbuild"); - totalBuildTime += syncTime; - } - - return true; - } - - private static List GetScenesToBuild() - { - var sceneList = new List(); - foreach (var scene in EditorBuildSettings.scenes) - { - // Enumerate scenes in project and check if scene is enabled to build - if (scene.enabled) - { - sceneList.Add(scene.path); - } - } - return sceneList; - } - - public static bool DeployAPK() - { - // Create new instance of ADB Tool - var adbTool = new OVRADBTool(androidSdkPath); - - if (adbTool.isReady) - { - string apkPathLocal; - string gradleExportFolder = Path.Combine(Path.Combine(gradleExport, productName), "build\\outputs\\apk\\debug"); - - // Check to see if gradle output directory exists - gradleExportFolder = gradleExportFolder.Replace("/", "\\"); - if (!Directory.Exists(gradleExportFolder)) - { - UnityEngine.Debug.LogError("Could not find the gradle project at the expected path: " + gradleExportFolder); - return false; - } - - // Search for output APK in gradle output directory - apkPathLocal = Path.Combine(gradleExportFolder, productName + "-debug.apk"); - if (!System.IO.File.Exists(apkPathLocal)) - { - UnityEngine.Debug.LogError(string.Format("Could not find {0} in the gradle project.", productName + "-debug.apk")); - return false; - } - - string output, error; - DateTime timerStart; - - // Ensure that the Oculus temp directory is on the device by making it - IncrementProgressBar("Making Temp directory on device"); - string[] mkdirCommand = { "-d shell", "mkdir -p", REMOTE_APK_PATH }; - if (adbTool.RunCommand(mkdirCommand, null, out output, out error) != 0) return false; - - // Push APK to device, also time how long it takes - timerStart = System.DateTime.Now; - IncrementProgressBar("Pushing APK to device . . ."); - string[] pushCommand = { "-d push", "\"" + apkPathLocal + "\"", REMOTE_APK_PATH }; - if (adbTool.RunCommand(pushCommand, null, out output, out error) != 0) return false; - - // Calculate the transfer speed and determine if user is using USB 2.0 or 3.0 - TimeSpan pushTime = System.DateTime.Now - timerStart; - FileInfo apkInfo = new System.IO.FileInfo(apkPathLocal); - double transferSpeed = (apkInfo.Length / pushTime.TotalSeconds) / BYTES_TO_MEGABYTES; - bool informLog = transferSpeed < USB_TRANSFER_SPEED_THRES; - UnityEngine.Debug.Log("OVRADBTool: Push Success"); - - // Install the APK package on the device - IncrementProgressBar("Installing APK . . ."); - string apkPath = REMOTE_APK_PATH + "/" + productName + "-debug.apk"; - apkPath = apkPath.Replace(" ", "\\ "); - string[] installCommand = { "-d shell", "pm install -r", apkPath }; - - timerStart = System.DateTime.Now; - if (adbTool.RunCommand(installCommand, null, out output, out error) != 0) return false; - TimeSpan installTime = System.DateTime.Now - timerStart; - UnityEngine.Debug.Log("OVRADBTool: Install Success"); - - // Start the application on the device - IncrementProgressBar("Launching application on device . . ."); + var processInfo = new System.Diagnostics.ProcessStartInfo + { + WorkingDirectory = gradleProjectPath, + WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal, + FileName = jdkPath, + Arguments = arguments, + RedirectStandardInput = true, + UseShellExecute = false, + CreateNoWindow = true, + RedirectStandardError = true, + RedirectStandardOutput = true, + }; + + gradleBuildProcess.StartInfo = processInfo; + gradleBuildProcess.EnableRaisingEvents = true; + + DateTime gradleStartTime = System.DateTime.Now; + DateTime gradleEndTime = System.DateTime.MinValue; + + gradleBuildProcess.Exited += new System.EventHandler( + (s, e) => + { + UnityEngine.Debug.Log("Gradle: Exited"); + } + ); + + gradleBuildProcess.OutputDataReceived += new DataReceivedEventHandler( + (s, e) => + { + if (e != null && e.Data != null && + e.Data.Length != 0 && + (e.Data.Contains("BUILD") || e.Data.StartsWith("See the profiling report at:"))) + { + UnityEngine.Debug.LogFormat("Gradle: {0}", e.Data); + if (e.Data.Contains("SUCCESSFUL")) + { + UnityEngine.Debug.LogFormat("APK Build Completed: {0}", + Path.Combine(Path.Combine(gradleProjectPath, "build\\outputs\\apk\\debug"), productName + "-debug.apk").Replace("/", "\\")); + if (!apkOutputSuccessful.HasValue) + { + apkOutputSuccessful = true; + } + gradleEndTime = System.DateTime.Now; + } + else if (e.Data.Contains("FAILED")) + { + apkOutputSuccessful = false; + } + } + } + ); + + gradleBuildProcess.ErrorDataReceived += new DataReceivedEventHandler( + (s, e) => + { + if (e != null && e.Data != null && + e.Data.Length != 0) + { + UnityEngine.Debug.LogErrorFormat("Gradle: {0}", e.Data); + } + apkOutputSuccessful = false; + } + ); + + gradleBuildProcess.Start(); + gradleBuildProcess.BeginOutputReadLine(); + IncrementProgressBar("Building gradle project . . ."); + + gradleBuildProcess.WaitForExit(); + + // Add a timeout for if gradle unexpectedlly exits or errors out + Stopwatch timeout = new Stopwatch(); + timeout.Start(); + while (apkOutputSuccessful == null) + { + if (timeout.ElapsedMilliseconds > 5000) + { + UnityEngine.Debug.LogError("Gradle has exited unexpectedly."); + apkOutputSuccessful = false; + } + System.Threading.Thread.Sleep(100); + } + + // Record time it takes to build gradle project only if we had a successful build + double gradleTime = (gradleEndTime - gradleStartTime).TotalSeconds; + if (gradleTime > 0) + { + OVRPlugin.SendEvent("build_step_building_gradle_project", gradleTime.ToString(), "ovrbuild"); + totalBuildTime += gradleTime; + } + + return apkOutputSuccessful.HasValue && apkOutputSuccessful.Value; + } + + private static bool ProcessGradleProject() + { + DateTime syncStartTime = System.DateTime.Now; + DateTime syncEndTime = System.DateTime.MinValue; + + try + { + var ps = System.Text.RegularExpressions.Regex.Escape("" + Path.DirectorySeparatorChar); + // ignore files .gradle/** build/** foo/.gradle/** and bar/build/** + var ignorePattern = string.Format("^([^{0}]+{0})?(\\.gradle|build){0}", ps); + + var syncer = new DirectorySyncer(gradleTempExport, + gradleExport, ignorePattern); + + syncCancelToken = new DirectorySyncer.CancellationTokenSource(); + var syncResult = syncer.Synchronize(syncCancelToken.Token); + syncEndTime = System.DateTime.Now; + } + catch (Exception e) + { + UnityEngine.Debug.Log("OVRBuild: Processing gradle project failed with exception: " + + e.Message); + return false; + } + + if (syncCancelToken.IsCancellationRequested) + { + return false; + } + + // Record time it takes to sync gradle projects only if the sync was successful + double syncTime = (syncEndTime - syncStartTime).TotalSeconds; + if (syncTime > 0) + { + OVRPlugin.SendEvent("build_step_sync_gradle_project", syncTime.ToString(), "ovrbuild"); + totalBuildTime += syncTime; + } + + return true; + } + + private static List GetScenesToBuild() + { + var sceneList = new List(); + foreach (var scene in EditorBuildSettings.scenes) + { + // Enumerate scenes in project and check if scene is enabled to build + if (scene.enabled) + { + sceneList.Add(scene.path); + } + } + return sceneList; + } + + public static bool DeployAPK() + { + // Create new instance of ADB Tool + var adbTool = new OVRADBTool(androidSdkPath); + + if (adbTool.isReady) + { + string apkPathLocal; + string gradleExportFolder = Path.Combine(Path.Combine(gradleExport, productName), "build\\outputs\\apk\\debug"); + + // Check to see if gradle output directory exists + gradleExportFolder = gradleExportFolder.Replace("/", "\\"); + if (!Directory.Exists(gradleExportFolder)) + { + UnityEngine.Debug.LogError("Could not find the gradle project at the expected path: " + gradleExportFolder); + return false; + } + + // Search for output APK in gradle output directory + apkPathLocal = Path.Combine(gradleExportFolder, productName + "-debug.apk"); + if (!System.IO.File.Exists(apkPathLocal)) + { + UnityEngine.Debug.LogError(string.Format("Could not find {0} in the gradle project.", productName + "-debug.apk")); + return false; + } + + string output, error; + DateTime timerStart; + + // Ensure that the Oculus temp directory is on the device by making it + IncrementProgressBar("Making Temp directory on device"); + string[] mkdirCommand = { "-d shell", "mkdir -p", REMOTE_APK_PATH }; + if (adbTool.RunCommand(mkdirCommand, null, out output, out error) != 0) return false; + + // Push APK to device, also time how long it takes + timerStart = System.DateTime.Now; + IncrementProgressBar("Pushing APK to device . . ."); + string[] pushCommand = { "-d push", "\"" + apkPathLocal + "\"", REMOTE_APK_PATH }; + if (adbTool.RunCommand(pushCommand, null, out output, out error) != 0) return false; + + // Calculate the transfer speed and determine if user is using USB 2.0 or 3.0 + // Only bother informing the user on non-trivial transfers, as for very short + // periods of time, things like process creation overhead can dwarf the actual + // transfer time. + TimeSpan pushTime = System.DateTime.Now - timerStart; + bool trivialPush = pushTime.TotalSeconds < TRANSFER_SPEED_CHECK_THRESHOLD; + long? apkSize = (trivialPush ? (long?)null : new System.IO.FileInfo(apkPathLocal).Length); + double? transferSpeed = (apkSize / pushTime.TotalSeconds) / BYTES_TO_MEGABYTES; + bool informLog = transferSpeed.HasValue && transferSpeed.Value < USB_TRANSFER_SPEED_THRES; + UnityEngine.Debug.Log("OVRADBTool: Push Success"); + + // Install the APK package on the device + IncrementProgressBar("Installing APK . . ."); + string apkPath = REMOTE_APK_PATH + "/" + productName + "-debug.apk"; + apkPath = apkPath.Replace(" ", "\\ "); + string[] installCommand = { "-d shell", "pm install -r", apkPath }; + + timerStart = System.DateTime.Now; + if (adbTool.RunCommand(installCommand, null, out output, out error) != 0) return false; + TimeSpan installTime = System.DateTime.Now - timerStart; + UnityEngine.Debug.Log("OVRADBTool: Install Success"); + + // Start the application on the device + IncrementProgressBar("Launching application on device . . ."); #if UNITY_2019_3_OR_NEWER - string playerActivityName = "\"" + applicationIdentifier + "/com.unity3d.player.UnityPlayerActivity\""; + string playerActivityName = "\"" + applicationIdentifier + "/com.unity3d.player.UnityPlayerActivity\""; #else string playerActivityName = "\"" + applicationIdentifier + "/" + applicationIdentifier + ".UnityPlayerActivity\""; #endif - string[] appStartCommand = { "-d shell", "am start -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -S -f 0x10200000 -n", playerActivityName }; - if (adbTool.RunCommand(appStartCommand, null, out output, out error) != 0) return false; - UnityEngine.Debug.Log("OVRADBTool: Application Start Success"); - - // Send back metrics on push and install steps - OVRPlugin.AddCustomMetadata("transfer_speed", transferSpeed.ToString()); - OVRPlugin.SendEvent("build_step_push_apk", pushTime.TotalSeconds.ToString(), "ovrbuild"); - OVRPlugin.SendEvent("build_step_install_apk", installTime.TotalSeconds.ToString(), "ovrbuild"); - - IncrementProgressBar("Success!"); - - // If the user is using a USB 2.0 cable, inform them about improved transfer speeds and estimate time saved - if (informLog) - { - var usb3Time = apkInfo.Length / (USB_3_TRANSFER_SPEED * BYTES_TO_MEGABYTES); - UnityEngine.Debug.Log(string.Format("OVRBuild has detected slow transfer speeds. A USB 3.0 cable is recommended to reduce the time it takes to deploy your project by approximatly {0:0.0} seconds", pushTime.TotalSeconds - usb3Time)); - return true; - } - } - else - { - UnityEngine.Debug.LogError("Could not find the ADB executable in the specified Android SDK directory."); - } - return false; - } - - private static bool CheckADBDevices() - { - // Check if there are any ADB devices connected before starting the build process - var adbTool = new OVRADBTool(OVRConfig.Instance.GetAndroidSDKPath()); - if (adbTool.isReady) - { - List devices = adbTool.GetDevices(); - if (devices.Count == 0) - { - OVRPlugin.SendEvent("no_adb_devices", "", "ovrbuild"); - UnityEngine.Debug.LogError("No ADB devices connected. Cannot perform OVR Build and Run."); - return false; - } - else if(devices.Count > 1) - { - OVRPlugin.SendEvent("multiple_adb_devices", "", "ovrbuild"); - UnityEngine.Debug.LogError("Multiple ADB devices connected. Cannot perform OVR Build and Run."); - return false; - } - } - else - { - OVRPlugin.SendEvent("ovr_adbtool_initialize_failure", "", "ovrbuild"); - UnityEngine.Debug.LogError("OVR ADB Tool failed to initialize. Check the Android SDK path in [Edit -> Preferences -> External Tools]"); - return false; - } - return true; - } - - private static void SetupDirectories() - { - gradleTempExport = Path.Combine(Path.Combine(Application.dataPath, "../Temp"), "OVRGradleTempExport"); - gradleExport = Path.Combine(Path.Combine(Application.dataPath, "../Temp"), "OVRGradleExport"); - if (!Directory.Exists(gradleExport)) - { - Directory.CreateDirectory(gradleExport); - } - } - - private static void InitializeProgressBar(int stepCount) - { - currentStep = 0; - totalBuildSteps = stepCount; - } - - private static void IncrementProgressBar(string message) - { - currentStep++; - progressMessage = message; - UnityEngine.Debug.Log("OVRBuild: " + message); - } - - private static void SetProgressBarMessage(string message) - { - progressMessage = message; - UnityEngine.Debug.Log("OVRBuild: " + message); - } -#endif //UNITY_EDITOR_WIN && UNITY_2018_1_OR_NEWER && UNITY_ANDROID - } + string[] appStartCommand = { "-d shell", "am start -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -S -f 0x10200000 -n", playerActivityName }; + if (adbTool.RunCommand(appStartCommand, null, out output, out error) != 0) return false; + UnityEngine.Debug.Log("OVRADBTool: Application Start Success"); + + // Send back metrics on push and install steps + if (transferSpeed.HasValue) + { + OVRPlugin.AddCustomMetadata("transfer_speed", transferSpeed.Value.ToString()); + } + OVRPlugin.SendEvent("build_step_push_apk", pushTime.TotalSeconds.ToString(), "ovrbuild"); + OVRPlugin.SendEvent("build_step_install_apk", installTime.TotalSeconds.ToString(), "ovrbuild"); + + IncrementProgressBar("Success!"); + + // If the user is using a USB 2.0 cable, inform them about improved transfer speeds and estimate time saved + if (informLog) + { + float usb3Time = apkSize.Value / (USB_3_TRANSFER_SPEED * BYTES_TO_MEGABYTES); // `informLog` can't be true if `apkSize` is null. + UnityEngine.Debug.Log(string.Format("OVRBuild has detected slow transfer speeds. A USB 3.0 cable is recommended to reduce the time it takes to deploy your project by approximatly {0:0.0} seconds", pushTime.TotalSeconds - usb3Time)); + return true; + } + } + else + { + UnityEngine.Debug.LogError("Could not find the ADB executable in the specified Android SDK directory."); + } + return false; + } + + private static bool CheckADBDevices() + { + // Check if there are any ADB devices connected before starting the build process + var adbTool = new OVRADBTool(OVRConfig.Instance.GetAndroidSDKPath()); + if (adbTool.isReady) + { + List devices = adbTool.GetDevices(); + if (devices.Count == 0) + { + OVRPlugin.SendEvent("no_adb_devices", "", "ovrbuild"); + UnityEngine.Debug.LogError("No ADB devices connected. Cannot perform OVR Build and Run."); + return false; + } + else if (devices.Count > 1) + { + OVRPlugin.SendEvent("multiple_adb_devices", "", "ovrbuild"); + UnityEngine.Debug.LogError("Multiple ADB devices connected. Cannot perform OVR Build and Run."); + return false; + } + } + else + { + OVRPlugin.SendEvent("ovr_adbtool_initialize_failure", "", "ovrbuild"); + UnityEngine.Debug.LogError("OVR ADB Tool failed to initialize. Check the Android SDK path in [Edit -> Preferences -> External Tools]"); + return false; + } + return true; + } + + private static void SetupDirectories() + { + gradleTempExport = Path.Combine(Path.Combine(Application.dataPath, "../Temp"), "OVRGradleTempExport"); + gradleExport = Path.Combine(Path.Combine(Application.dataPath, "../Temp"), "OVRGradleExport"); + if (!Directory.Exists(gradleExport)) + { + Directory.CreateDirectory(gradleExport); + } + } + + private static void InitializeProgressBar(int stepCount) + { + currentStep = 0; + totalBuildSteps = stepCount; + } + + private static void IncrementProgressBar(string message) + { + currentStep++; + progressMessage = message; + UnityEngine.Debug.Log("OVRBuild: " + message); + } + + private static void SetProgressBarMessage(string message) + { + progressMessage = message; + UnityEngine.Debug.Log("OVRBuild: " + message); + } +#endif //UNITY_EDITOR_WIN && UNITY_ANDROID + } diff --git a/Assets/Oculus/VR/Editor/OVRBundleManager.cs b/Assets/Oculus/VR/Editor/OVRBundleManager.cs index 0dc25575..d7577376 100644 --- a/Assets/Oculus/VR/Editor/OVRBundleManager.cs +++ b/Assets/Oculus/VR/Editor/OVRBundleManager.cs @@ -7,9 +7,7 @@ using UnityEngine; using UnityEditor; -#if UNITY_2018_1_OR_NEWER using UnityEditor.Build.Reporting; -#endif public class OVRBundleManager { @@ -27,17 +25,14 @@ public class OVRBundleManager private static string projectDefaultAppIdentifier; private static string projectDefaultVersion; + private static AndroidArchitecture projectAndroidArchitecture; private static ScriptingImplementation projectScriptImplementation; -#if UNITY_2018_3_OR_NEWER private static ManagedStrippingLevel projectManagedStrippingLevel; -#else - private static StrippingLevel projectStrippingLevel; -#endif private static bool projectStripEngineCode; public static void BuildDeployTransitionAPK(bool useOptionalTransitionApkPackage) { - OVRBundleTool.PrintLog("Building and deploying transition APK . . . ", true); + OVRBundleTool.PrintLog("Building and deploying transition APK . . .\n", true); if (!Directory.Exists(BUNDLE_MANAGER_OUTPUT_PATH)) { @@ -67,7 +62,6 @@ public static void BuildDeployTransitionAPK(bool useOptionalTransitionApkPackage string apkOutputPath = Path.Combine(BUNDLE_MANAGER_OUTPUT_PATH, "OVRTransition.apk"); DateTime apkBuildStart = DateTime.Now; -#if UNITY_2018_1_OR_NEWER var buildPlayerOptions = new BuildPlayerOptions { scenes = buildScenes, @@ -87,36 +81,36 @@ public static void BuildDeployTransitionAPK(bool useOptionalTransitionApkPackage { OVRBundleTool.PrintError(); } -#else - string error = BuildPipeline.BuildPlayer(buildScenes, apkOutputPath, BuildTarget.Android, - BuildOptions.Development | BuildOptions.AutoRunPlayer); - - if (string.IsNullOrEmpty(error)) - { - OVRBundleTool.PrintSuccess(); - } - else - { - OVRBundleTool.PrintError(); - } -#endif OVRPlugin.SendEvent("oculus_bundle_tool", "apk_build_time", (DateTime.Now - apkBuildStart).TotalSeconds.ToString()); PostbuildProjectSettingUpdate(); } private static void PrebuildProjectSettingUpdate() { - // Modify application identifier for transition APK + // Save existing settings as some modifications can change other settings projectDefaultAppIdentifier = PlayerSettings.GetApplicationIdentifier(BuildTargetGroup.Android); - PlayerSettings.SetApplicationIdentifier(BuildTargetGroup.Android, + projectDefaultVersion = PlayerSettings.bundleVersion; + projectAndroidArchitecture = PlayerSettings.Android.targetArchitectures; + projectScriptImplementation = PlayerSettings.GetScriptingBackend(EditorUserBuildSettings.selectedBuildTargetGroup); + projectManagedStrippingLevel = PlayerSettings.GetManagedStrippingLevel(BuildTargetGroup.Android); + projectStripEngineCode = PlayerSettings.stripEngineCode; + + // Modify application identifier for transition APK + PlayerSettings.SetApplicationIdentifier(BuildTargetGroup.Android, projectDefaultAppIdentifier + GetTransitionApkOptionalIdentifier()); // Set VersionCode as a unique identifier for transition APK - projectDefaultVersion = PlayerSettings.bundleVersion; PlayerSettings.bundleVersion = TRANSITION_APK_VERSION_NAME; + // Modify Android target architecture as ARM64 does not support Mono. + if (projectAndroidArchitecture != AndroidArchitecture.ARMv7) + { + // Show message in console to make it more clear to developers + OVRBundleTool.PrintLog("Build will use ARMv7 as Android architecture."); + PlayerSettings.Android.targetArchitectures = AndroidArchitecture.ARMv7; + } + // Modify IL2CPP option as it strips script symbols that are necessary for the scenes at runtime - projectScriptImplementation = PlayerSettings.GetScriptingBackend(EditorUserBuildSettings.selectedBuildTargetGroup); if (projectScriptImplementation != ScriptingImplementation.Mono2x) { // Show message in console to make it more clear to developers @@ -125,25 +119,15 @@ private static void PrebuildProjectSettingUpdate() } // Avoid stripping managed code that are necessary for the scenes at runtime -#if UNITY_2018_3_OR_NEWER - projectManagedStrippingLevel = PlayerSettings.GetManagedStrippingLevel(BuildTargetGroup.Android); if (projectManagedStrippingLevel != ManagedStrippingLevel.Disabled) { OVRBundleTool.PrintLog("Build will set Managed Stripping Level to Disabled."); PlayerSettings.SetManagedStrippingLevel(BuildTargetGroup.Android, ManagedStrippingLevel.Disabled); } -#else - projectStrippingLevel = PlayerSettings.strippingLevel; - if (projectStrippingLevel != StrippingLevel.Disabled) - { - OVRBundleTool.PrintLog("Build will set Stripping Level to Disabled."); - PlayerSettings.strippingLevel = StrippingLevel.Disabled; - } -#endif - projectStripEngineCode = PlayerSettings.stripEngineCode; if (projectStripEngineCode) { + OVRBundleTool.PrintLog("Build will set Strip Engine Code to Disabled."); PlayerSettings.stripEngineCode = false; } } @@ -164,22 +148,22 @@ private static void PostbuildProjectSettingUpdate() } // Restore managed stripping level -#if UNITY_2018_3_OR_NEWER if (PlayerSettings.GetManagedStrippingLevel(BuildTargetGroup.Android) != projectManagedStrippingLevel) { PlayerSettings.SetManagedStrippingLevel(BuildTargetGroup.Android, projectManagedStrippingLevel); } -#else - if (PlayerSettings.strippingLevel != projectStrippingLevel) - { - PlayerSettings.strippingLevel = projectStrippingLevel; - } -#endif + // Restore Strip Engine Code if (PlayerSettings.stripEngineCode != projectStripEngineCode) { PlayerSettings.stripEngineCode = projectStripEngineCode; } + + // Restore Android Architecture + if (PlayerSettings.Android.targetArchitectures != projectAndroidArchitecture) + { + PlayerSettings.Android.targetArchitectures = projectAndroidArchitecture; + } } // Build and deploy a list of scenes. It's suggested to only build and deploy one active scene that's being modified and @@ -208,7 +192,7 @@ public static void BuildDeployScenes(List sceneLi private static void BuildSceneBundles(List sceneList) { DateTime totalStart = DateTime.Now; - // Keeps track of dependent assets across scenes + // Keeps track of dependent assets across scenes // to ensure each asset is only packaged once in one of the scene bundles. // uniqueAssetInSceneBundle is a map from "asset unique identifier" to the first scene that references the asset. // It supports different assets with same file name as "asset unique identifier" contain full qualified asset file path @@ -295,9 +279,9 @@ private static void BuildSceneBundles(List sceneL OVRPlugin.SendEvent("oculus_bundle_tool", "bundle_build_time", bundleBuildTime.ToString()); } - private static void ProcessAssets(string[] assetPaths, + private static void ProcessAssets(string[] assetPaths, string assetParent, - ref Dictionary uniqueAssetInSceneBundle, + ref Dictionary uniqueAssetInSceneBundle, ref Dictionary> extToAssetList) { foreach (string asset in assetPaths) @@ -590,6 +574,9 @@ public static void DeleteRemoteAssetBundles() OVRADBTool adbTool = new OVRADBTool(OVRConfig.Instance.GetAndroidSDKPath()); if (adbTool.isReady) { + externalSceneCache = EXTERNAL_STORAGE_PATH + "/" + PlayerSettings.GetApplicationIdentifier(BuildTargetGroup.Android) + + GetTransitionApkOptionalIdentifier() + "/cache/scenes"; + bool failure = false; string fileExistsError = "No such file or directory"; OVRBundleTool.PrintLog("Deleting device bundles . . . "); @@ -649,7 +636,7 @@ private static string GetTransitionApkOptionalIdentifier() if (OVRBundleTool.GetUseOptionalTransitionApkPackage()) { // Append .transition to default app package name to optionally allow both - // full build apk and transition apk to be installed on device + // full build apk and transition apk to be installed on device transitionApkOptionalIdentifier = ".transition"; } else diff --git a/Assets/Oculus/VR/Editor/OVRBundleTool.cs b/Assets/Oculus/VR/Editor/OVRBundleTool.cs index b9ba3dca..de2ec537 100644 --- a/Assets/Oculus/VR/Editor/OVRBundleTool.cs +++ b/Assets/Oculus/VR/Editor/OVRBundleTool.cs @@ -8,6 +8,7 @@ using UnityEngine; using UnityEditor; + public class OVRBundleTool : EditorWindow { private static List buildableScenes; @@ -65,6 +66,21 @@ public EditorSceneInfo(string path, string name) } } + private enum GuiAction + { + None, + OpenBuildSettingsWindow, + BuildAndDeployScenes, + BuildAndDeployApp, + ClearDeviceBundles, + ClearLocalBundles, + LaunchApp, + UninstallApk, + ClearLog, + } + + private GuiAction action = GuiAction.None; + private static ApkStatus currentApkStatus; [MenuItem("Oculus/OVR Build/OVR Scene Quick Preview %l", false, 10)] @@ -132,7 +148,7 @@ private void OnGUI() var buildSettingBtnRt = GUILayoutUtility.GetRect(buildSettingsBtnTxt, GUI.skin.button, GUILayout.Width(150)); if (GUI.Button(buildSettingBtnRt, buildSettingsBtnTxt)) { - OpenBuildSettingsWindow(); + action = GuiAction.OpenBuildSettingsWindow; } } else @@ -159,25 +175,7 @@ private void OnGUI() var sceneBtnRt = GUILayoutUtility.GetRect(sceneBtnTxt, GUI.skin.button, GUILayout.Width(200)); if (GUI.Button(sceneBtnRt, sceneBtnTxt)) { - // Check the latest transition apk status - CheckForTransitionAPK(); - // Show a dialog to prompt for building and deploying transition APK - if (currentApkStatus != ApkStatus.OK && - EditorUtility.DisplayDialog("Build and Deploy OVR Transition APK?", - "OVR Transition APK status not ready, it is required to load your scene bundle for quick preview.", - "Yes", - "No")) - { - PrintLog("Building OVR Transition APK"); - OVRBundleManager.BuildDeployTransitionAPK(useOptionalTransitionApkPackage); - CheckForTransitionAPK(); - } - - for (int i = 0; i < buildableScenes.Count; i++) - { - buildableScenes[i].buildStatus = SceneBundleStatus.QUEUED; - } - OVRBundleManager.BuildDeployScenes(buildableScenes, forceRestart); + action = GuiAction.BuildAndDeployScenes; } GUIContent forceRestartLabel = new GUIContent("Force Restart [?]", "Relaunch the application after scene bundles are finished deploying."); @@ -223,8 +221,7 @@ private void OnGUI() var rt = GUILayoutUtility.GetRect(btnTxt, GUI.skin.button, GUILayout.Width(200)); if (GUI.Button(rt, btnTxt)) { - OVRBundleManager.BuildDeployTransitionAPK(useOptionalTransitionApkPackage); - CheckForTransitionAPK(); + action = GuiAction.BuildAndDeployApp; } } EditorGUILayout.EndHorizontal(); @@ -241,14 +238,14 @@ private void OnGUI() var clearDeviceBundlesBtnRt = GUILayoutUtility.GetRect(clearDeviceBundlesTxt, GUI.skin.button, GUILayout.ExpandWidth(true)); if (GUI.Button(clearDeviceBundlesBtnRt, clearDeviceBundlesTxt)) { - OVRBundleManager.DeleteRemoteAssetBundles(); + action = GuiAction.ClearDeviceBundles; } GUIContent clearLocalBundlesTxt = new GUIContent("Delete Local Bundles"); var clearLocalBundlesBtnRt = GUILayoutUtility.GetRect(clearLocalBundlesTxt, GUI.skin.button, GUILayout.ExpandWidth(true)); if (GUI.Button(clearLocalBundlesBtnRt, clearLocalBundlesTxt)) { - OVRBundleManager.DeleteLocalAssetBundles(); + action = GuiAction.ClearLocalBundles; } } EditorGUILayout.EndHorizontal(); @@ -259,7 +256,7 @@ private void OnGUI() { EditorGUILayout.BeginHorizontal(); { - GUIContent useOptionalTransitionPackageLabel = new GUIContent("Use optional APK package name [?]", + GUIContent useOptionalTransitionPackageLabel = new GUIContent("Use optional APK package name [?]", "This allows both full build APK and transition APK to be installed on device. However, platform services like Entitlement check may fail."); EditorGUILayout.LabelField(useOptionalTransitionPackageLabel, GUILayout.ExpandWidth(false)); @@ -281,28 +278,27 @@ private void OnGUI() var launchBtnRt = GUILayoutUtility.GetRect(launchBtnTxt, GUI.skin.button, GUILayout.ExpandWidth(true)); if (GUI.Button(launchBtnRt, launchBtnTxt)) { - OVRBundleManager.LaunchApplication(); + action = GuiAction.LaunchApp; } var buildSettingBtnRt = GUILayoutUtility.GetRect(buildSettingsBtnTxt, GUI.skin.button, GUILayout.ExpandWidth(true)); if (GUI.Button(buildSettingBtnRt, buildSettingsBtnTxt)) { - OpenBuildSettingsWindow(); + action = GuiAction.OpenBuildSettingsWindow; } GUIContent uninstallTxt = new GUIContent("Uninstall APK"); var uninstallBtnRt = GUILayoutUtility.GetRect(uninstallTxt, GUI.skin.button, GUILayout.ExpandWidth(true)); if (GUI.Button(uninstallBtnRt, uninstallTxt)) { - OVRBundleManager.UninstallAPK(); - CheckForTransitionAPK(); + action = GuiAction.UninstallApk; } GUIContent clearLogTxt = new GUIContent("Clear Log"); var clearLogBtnRt = GUILayoutUtility.GetRect(clearLogTxt, GUI.skin.button, GUILayout.ExpandWidth(true)); if (GUI.Button(clearLogBtnRt, clearLogTxt)) { - PrintLog("", true); + action = GuiAction.ClearLog; } } EditorGUILayout.EndHorizontal(); @@ -319,6 +315,61 @@ private void OnGUI() } } + private void Update() + { + switch (action) + { + case GuiAction.OpenBuildSettingsWindow: + OpenBuildSettingsWindow(); + break; + case GuiAction.BuildAndDeployScenes: + // Check the latest transition apk status + CheckForTransitionAPK(); + // Show a dialog to prompt for building and deploying transition APK + if (currentApkStatus != ApkStatus.OK && + EditorUtility.DisplayDialog("Build and Deploy OVR Transition APK?", + "OVR Transition APK status not ready, it is required to load your scene bundle for quick preview.", + "Yes", + "No")) + { + PrintLog("Building OVR Transition APK"); + OVRBundleManager.BuildDeployTransitionAPK(useOptionalTransitionApkPackage); + CheckForTransitionAPK(); + } + + for (int i = 0; i < buildableScenes.Count; i++) + { + buildableScenes[i].buildStatus = SceneBundleStatus.QUEUED; + } + OVRBundleManager.BuildDeployScenes(buildableScenes, forceRestart); + break; + case GuiAction.BuildAndDeployApp: + OVRBundleManager.BuildDeployTransitionAPK(useOptionalTransitionApkPackage); + CheckForTransitionAPK(); + break; + case GuiAction.ClearDeviceBundles: + OVRBundleManager.DeleteRemoteAssetBundles(); + break; + case GuiAction.ClearLocalBundles: + OVRBundleManager.DeleteLocalAssetBundles(); + break; + case GuiAction.LaunchApp: + OVRBundleManager.LaunchApplication(); + break; + case GuiAction.UninstallApk: + OVRBundleManager.UninstallAPK(); + CheckForTransitionAPK(); + break; + case GuiAction.ClearLog: + PrintLog("", true); + break; + default: + break; + } + + action = GuiAction.None; + } + private static void OpenBuildSettingsWindow() { EditorWindow.GetWindow(System.Type.GetType("UnityEditor.BuildPlayerWindow,UnityEditor")); @@ -439,7 +490,7 @@ public static void PrintLog(string message, bool clear = false) { toolLog += message + "\n"; } - + GUIContent logContent = new GUIContent(toolLog); logBoxSize = logBoxStyle.CalcSize(logContent); diff --git a/Assets/Oculus/VR/Editor/OVRDeviceSelector.cs b/Assets/Oculus/VR/Editor/OVRDeviceSelector.cs index a9e9ec85..1e1262d7 100644 --- a/Assets/Oculus/VR/Editor/OVRDeviceSelector.cs +++ b/Assets/Oculus/VR/Editor/OVRDeviceSelector.cs @@ -26,15 +26,13 @@ limitations under the License. public class OVRDeviceSelector { - public static bool isTargetDeviceGearVrOrGo + public static bool isTargetDeviceQuestFamily { get { - OVRProjectConfig projectConfig = OVRProjectConfig.GetProjectConfig(); - return projectConfig.targetDeviceTypes.Contains(OVRProjectConfig.DeviceType.GearVrOrGo); + return isTargetDeviceQuest || isTargetDeviceQuest2; } } - public static bool isTargetDeviceQuest { get @@ -43,4 +41,13 @@ public static bool isTargetDeviceQuest return projectConfig.targetDeviceTypes.Contains(OVRProjectConfig.DeviceType.Quest); } } + + public static bool isTargetDeviceQuest2 + { + get + { + OVRProjectConfig projectConfig = OVRProjectConfig.GetProjectConfig(); + return projectConfig.targetDeviceTypes.Contains(OVRProjectConfig.DeviceType.Quest2); + } + } } diff --git a/Assets/Oculus/VR/Editor/OVREngineConfigurationUpdater.cs b/Assets/Oculus/VR/Editor/OVREngineConfigurationUpdater.cs index 3bedfc44..19752ca6 100644 --- a/Assets/Oculus/VR/Editor/OVREngineConfigurationUpdater.cs +++ b/Assets/Oculus/VR/Editor/OVREngineConfigurationUpdater.cs @@ -23,6 +23,10 @@ limitations under the License. #define USING_XR_SDK #endif +#if UNITY_2020_1_OR_NEWER +#define REQUIRES_XR_SDK +#endif + using UnityEngine; using UnityEditor; using UnityEditor.Callbacks; @@ -51,7 +55,6 @@ static void ToggleUtilities() Debug.Log("Using required project settings: " + setPrefsForUtilities); } -#if UNITY_2017_3_OR_NEWER private static readonly string dashSupportEnableConfirmedKey = "Oculus_Utilities_OVREngineConfiguration_DashSupportEnableConfirmed_" + Application.unityVersion + OVRManager.utilitiesVersion; private static bool dashSupportEnableConfirmed { @@ -65,41 +68,12 @@ private static bool dashSupportEnableConfirmed PlayerPrefs.SetInt(dashSupportEnableConfirmedKey, value ? 1 : 0); } } - - private static void DashSupportWarningPrompt() - { - /// - /// Since Unity 2017.3.0f1 and 2017.3.0f2 have "Dash Support" enabled by default - /// We need prompt developers in case they never test their app with dash - /// - /// - if (Application.unityVersion == "2017.3.0f1" || Application.unityVersion == "2017.3.0f2") - { - if (!dashSupportEnableConfirmed) - { - bool dialogResult = EditorUtility.DisplayDialog("Oculus Dash support", "Your current Unity engine " + Application.unityVersion + - " has Oculus Dash Supporting enabled by default. please make sure to test your app with Dash enabled runtime 1.21 or newer," + - " Otherwise, you can also turn it off under XR Settings -> Oculus", "Understand", "Learn more "); - - if (!dialogResult) - { - Application.OpenURL("https://developer.oculus.com/documentation/unity/latest/concepts/unity-lifecycle/"); - } - dashSupportEnableConfirmed = true; - } - } - } -#endif static OVREngineConfigurationUpdater() { EditorApplication.delayCall += OnDelayCall; EditorApplication.update += OnUpdate; - -#if UNITY_2017_3_OR_NEWER - DashSupportWarningPrompt(); -#endif } static void OnDelayCall() @@ -113,9 +87,6 @@ static void OnDelayCall() OVRPlugin.AddCustomMetadata("build_target", EditorUserBuildSettings.activeBuildTarget.ToString()); EnforceAndroidSettings(); EnforceInputManagerBindings(); -#if UNITY_ANDROID - EnforceOSIG(); -#endif } static void OnUpdate() @@ -124,9 +95,7 @@ static void OnUpdate() return; EnforceBundleId(); -#if !USING_XR_SDK EnforceVRSupport(); -#endif EnforceInstallLocation(); } @@ -142,7 +111,10 @@ static void EnforceAndroidSettings() PlayerSettings.defaultInterfaceOrientation = UIOrientation.LandscapeLeft; } +#if !USING_XR_SDK && !REQUIRES_XR_SDK +#pragma warning disable 618 if (!PlayerSettings.virtualRealitySupported) +#pragma warning restore 618 { // NOTE: This value should not affect the main window surface // when Built-in VR support is enabled. @@ -158,6 +130,7 @@ static void EnforceAndroidSettings() QualitySettings.antiAliasing = 1; } } +#endif if (QualitySettings.vSyncCount != 0) { @@ -169,7 +142,10 @@ static void EnforceAndroidSettings() static void EnforceVRSupport() { +#if !USING_XR_SDK && !REQUIRES_XR_SDK +#pragma warning disable 618 if (PlayerSettings.virtualRealitySupported) +#pragma warning restore 618 return; var mgrs = GameObject.FindObjectsOfType(); @@ -178,14 +154,12 @@ static void EnforceVRSupport() if (mgrs [i].isActiveAndEnabled) { Debug.Log ("Enabling Unity VR support"); +#pragma warning disable 618 PlayerSettings.virtualRealitySupported = true; +#pragma warning restore 618 bool oculusFound = false; -#if UNITY_2017_2_OR_NEWER foreach (var device in UnityEngine.XR.XRSettings.supportedDevices) -#else - foreach (var device in UnityEngine.VR.VRSettings.supportedDevices) -#endif oculusFound |= (device == "Oculus"); if (!oculusFound) @@ -194,19 +168,28 @@ static void EnforceVRSupport() return; } } +#endif } private static void EnforceBundleId() { +#if !USING_XR_SDK && !REQUIRES_XR_SDK +#pragma warning disable 618 if (!PlayerSettings.virtualRealitySupported) + { return; - + } +#pragma warning restore 618 +#endif + +#if USING_XR_SDK || !REQUIRES_XR_SDK if (PlayerSettings.applicationIdentifier == "" || PlayerSettings.applicationIdentifier == "com.Company.ProductName") { string defaultBundleId = "com.oculus.UnitySample"; Debug.LogWarning("\"" + PlayerSettings.applicationIdentifier + "\" is not a valid bundle identifier. Defaulting to \"" + defaultBundleId + "\"."); PlayerSettings.applicationIdentifier = defaultBundleId; } +#endif } private static void EnforceInstallLocation() @@ -219,14 +202,6 @@ private static void EnforceInputManagerBindings() { try { - BindAxis(new Axis() { name = "Oculus_GearVR_LThumbstickX", axis = 0, }); - BindAxis(new Axis() { name = "Oculus_GearVR_LThumbstickY", axis = 1, invert = true }); - BindAxis(new Axis() { name = "Oculus_GearVR_RThumbstickX", axis = 2, }); - BindAxis(new Axis() { name = "Oculus_GearVR_RThumbstickY", axis = 3, invert = true }); - BindAxis(new Axis() { name = "Oculus_GearVR_DpadX", axis = 4, }); - BindAxis(new Axis() { name = "Oculus_GearVR_DpadY", axis = 5, invert = true }); - BindAxis(new Axis() { name = "Oculus_GearVR_LIndexTrigger", axis = 12, }); - BindAxis(new Axis() { name = "Oculus_GearVR_RIndexTrigger", axis = 11, }); BindAxis(new Axis() { name = "Oculus_CrossPlatform_Button2", positiveButton = "joystick button 0", gravity = 1000f, sensitivity = 1000f, type = 0 }); BindAxis(new Axis() { name = "Oculus_CrossPlatform_Button4", positiveButton = "joystick button 2", gravity = 1000f, sensitivity = 1000f, type = 0 }); BindAxis(new Axis() { name = "Oculus_CrossPlatform_PrimaryThumbstick", positiveButton = "joystick button 8", gravity = 0f, dead = 0f, sensitivity = 0.1f, type = 0 }); @@ -242,36 +217,8 @@ private static void EnforceInputManagerBindings() } catch { - Debug.LogError("Failed to apply Oculus GearVR input manager bindings."); - } - } - - private static void EnforceOSIG() - { - // Don't bug the user in play mode. - if (Application.isPlaying) - return; - - // Don't warn if the project may be set up for submission or global signing. - if (File.Exists(androidManifestPath)) - return; - - bool foundPossibleOsig = false; - if (Directory.Exists(androidAssetsPath)) - { - var files = Directory.GetFiles(androidAssetsPath); - for (int i = 0; i < files.Length; ++i) - { - if (!files[i].Contains(".txt")) - { - foundPossibleOsig = true; - break; - } - } + Debug.LogError("Failed to apply Oculus input manager bindings."); } - - if (!foundPossibleOsig) - Debug.LogWarning("Missing Gear VR OSIG at " + androidAssetsPath + ". Please see https://dashboard.oculus.com/tools/osig-generator"); } private class Axis diff --git a/Assets/Oculus/VR/Editor/OVRGradleGeneration.cs b/Assets/Oculus/VR/Editor/OVRGradleGeneration.cs index a3a6f9c1..712a86b2 100644 --- a/Assets/Oculus/VR/Editor/OVRGradleGeneration.cs +++ b/Assets/Oculus/VR/Editor/OVRGradleGeneration.cs @@ -36,16 +36,13 @@ limitations under the License. using UnityEngine; using UnityEngine.Rendering; using UnityEditor.Build; -#if UNITY_2018_1_OR_NEWER using UnityEditor.Build.Reporting; -#endif #if UNITY_ANDROID using UnityEditor.Android; #endif [InitializeOnLoad] public class OVRGradleGeneration -#if UNITY_2018_2_OR_NEWER : IPreprocessBuildWithReport, IPostprocessBuildWithReport #if UNITY_ANDROID , IPostGenerateGradleAndroidProject @@ -54,7 +51,7 @@ public class OVRGradleGeneration public OVRADBTool adbTool; public Process adbProcess; - public int callbackOrder { get { return 3; } } + public int callbackOrder { get { return 99999; } } static private System.DateTime buildStartTime; static private System.Guid buildGuid; @@ -106,6 +103,32 @@ public void OnPreprocessBuild(BuildReport report) } #endif +#if UNITY_ANDROID + bool useOpenXR = OVRPluginUpdater.IsOVRPluginOpenXRActivated(); +#if USING_XR_SDK + if (useOpenXR) + { + UnityEngine.Debug.LogWarning("Oculus Utilities Plugin with OpenXR is being used, which is under experimental status"); + + if (PlayerSettings.colorSpace != ColorSpace.Linear) + { + throw new BuildFailedException("Oculus Utilities Plugin with OpenXR only supports linear lighting. Please set 'Rendering/Color Space' to 'Linear' in Player Settings"); + } + } +#else + if (useOpenXR) + { + throw new BuildFailedException("Oculus Utilities Plugin with OpenXR only supports XR Plug-in Managmenent with Oculus XR Plugin."); + } +#endif +#endif + +#if UNITY_ANDROID && USING_XR_SDK && !USING_COMPATIBLE_OCULUS_XR_PLUGIN_VERSION + if (PlayerSettings.Android.targetArchitectures != AndroidArchitecture.ARM64) + throw new BuildFailedException("Your project is using an Oculus XR Plugin version with known issues. Please navigate to the Package Manager and upgrade the Oculus XR Plugin to the latest verified version. When performing the upgrade" + + ", you must first \"Remove\" the Oculus XR Plugin package, and then \"Install\" the package at the verified version. Be sure to remove, then install, not just upgrade."); +#endif + buildStartTime = System.DateTime.Now; buildGuid = System.Guid.NewGuid(); @@ -138,24 +161,22 @@ public void OnPostGenerateGradleAndroidProject(string path) UnityEngine.Debug.Log("OVRGradleGeneration triggered."); var targetOculusPlatform = new List(); - if (OVRDeviceSelector.isTargetDeviceGearVrOrGo) - { - targetOculusPlatform.Add("geargo"); - } - if (OVRDeviceSelector.isTargetDeviceQuest) + if (OVRDeviceSelector.isTargetDeviceQuestFamily) { targetOculusPlatform.Add("quest"); } OVRPlugin.AddCustomMetadata("target_oculus_platform", String.Join("_", targetOculusPlatform.ToArray())); - UnityEngine.Debug.LogFormat(" GearVR or Go = {0} Quest = {1}", OVRDeviceSelector.isTargetDeviceGearVrOrGo, OVRDeviceSelector.isTargetDeviceQuest); + UnityEngine.Debug.LogFormat("QuestFamily = {0}: Quest = {1}, Quest2 = {2}", + OVRDeviceSelector.isTargetDeviceQuestFamily, + OVRDeviceSelector.isTargetDeviceQuest, + OVRDeviceSelector.isTargetDeviceQuest2); #if UNITY_2019_3_OR_NEWER string gradleBuildPath = Path.Combine(path, "../launcher/build.gradle"); #else string gradleBuildPath = Path.Combine(path, "build.gradle"); #endif - //Enable v2signing for Quest only - bool v2SigningEnabled = OVRDeviceSelector.isTargetDeviceQuest && !OVRDeviceSelector.isTargetDeviceGearVrOrGo; + bool v2SigningEnabled = true; if (File.Exists(gradleBuildPath)) { @@ -213,8 +234,20 @@ public void PatchAndroidManifest(string path) { if (projectConfig.enableNSCConfig) { + // If no custom xml security path is specified, look for the default location in the integrations package. + string securityConfigFile = projectConfig.securityXmlPath; + if (string.IsNullOrEmpty(securityConfigFile)) + { + securityConfigFile = GetOculusProjectNetworkSecConfigPath(); + } + else + { + Uri configUri = new Uri(Path.GetFullPath(securityConfigFile)); + Uri projectUri = new Uri(Application.dataPath); + Uri relativeUri = projectUri.MakeRelativeUri(configUri); + securityConfigFile = relativeUri.ToString(); + } - string securityConfigFile = GetOculusProjectNetworkSecConfigPath(); string xmlDirectory = Path.Combine(path, "src/main/res/xml"); try { @@ -424,7 +457,4 @@ public void TimeDeploy() } } #endif -#else -{ -#endif } diff --git a/Assets/Oculus/VR/Editor/OVRLint.cs b/Assets/Oculus/VR/Editor/OVRLint.cs index abd93022..3ff3e7e3 100644 --- a/Assets/Oculus/VR/Editor/OVRLint.cs +++ b/Assets/Oculus/VR/Editor/OVRLint.cs @@ -1,12 +1,12 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use +Licensed under the Oculus Master SDK License Version 1.0 (the "License"); you may not use the Utilities SDK except in compliance with the License, which is provided at the time of installation or download, or which otherwise accompanies this software in either electronic or hard copy form. You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +https://developer.oculus.com/licenses/oculusmastersdk-1.0/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -16,6 +16,14 @@ permissions and limitations under the License. #if UNITY_EDITOR +#if USING_XR_MANAGEMENT && USING_XR_SDK_OCULUS +#define USING_XR_SDK +#endif + +#if UNITY_2020_1_OR_NEWER +#define REQUIRES_XR_SDK +#endif + using UnityEngine; using UnityEditor; using System.Collections.Generic; @@ -27,38 +35,38 @@ permissions and limitations under the License. ///Scans the project and warns about the following conditions: ///Audio sources > 16 ///Using MSAA levels other than recommended level -///Excessive pixel lights (>1 on Gear VR; >3 on Rift) -///Directional Lightmapping Modes (on Gear; use Non-Directional) +///Excessive pixel lights (>1 on Mobile; >3 on Rift) +///Directional Lightmapping Modes (on Mobile; use Non-Directional) ///Preload audio setting on individual audio clips ///Decompressing audio clips on load ///Disabling occlusion mesh ///Android target API level set to 21 or higher -///Unity skybox use (on by default, but if you can't see the skybox switching to Color is much faster on Gear) +///Unity skybox use (on by default, but if you can't see the skybox switching to Color is much faster on Mobile) ///Lights marked as "baked" but that were not included in the last bake (and are therefore realtime). ///Lack of static batching and dynamic batching settings activated. -///Full screen image effects (Gear) +///Full screen image effects (Mobile) ///Warn about large textures that are marked as uncompressed. ///32-bit depth buffer (use 16) -///Use of projectors (Gear; can be used carefully but slow enough to warrant a warning) -///Maybe in the future once quantified: Graphics jobs and IL2CPP on Gear. +///Use of projectors (Mobile; can be used carefully but slow enough to warrant a warning) +///Maybe in the future once quantified: Graphics jobs and IL2CPP on Mobile. ///Real-time global illumination -///No texture compression, or non-ASTC texture compression as a global setting (Gear). +///No texture compression, or non-ASTC texture compression as a global setting (Mobile). ///Using deferred rendering -///Excessive texture resolution after LOD bias (>2k on Gear VR; >4k on Rift) +///Excessive texture resolution after LOD bias (>2k on Mobile; >4k on Rift) ///Not using trilinear or aniso filtering and not generating mipmaps ///Excessive render scale (>1.2) ///Slow physics settings: Sleep Threshold < 0.005, Default Contact Offset < 0.01, Solver Iteration Count > 6 ///Shadows on when approaching the geometry or draw call limits ///Non-static objects with colliders that are missing rigidbodies on themselves or in the parent chain. -///No initialization of GPU/CPU throttling settings, or init to dangerous values (-1 or > 3) (Gear) +///No initialization of GPU/CPU throttling settings, or init to dangerous values (-1 or > 3) (Mobile) ///Using inefficient effects: SSAO, motion blur, global fog, parallax mapping, etc. ///Too many Overlay layers -///Use of Standard shader or Standard Specular shader on Gear. More generally, excessive use of multipass shaders (legacy specular, etc). -///Multiple cameras with clears (on Gear, potential for excessive fill cost) +///Use of Standard shader or Standard Specular shader on Mobile. More generally, excessive use of multipass shaders (legacy specular, etc). +///Multiple cameras with clears (on Mobile, potential for excessive fill cost) ///Excessive shader passes (>2) ///Material pointers that have been instanced in the editor (esp. if we could determine that the instance has no deltas from the original) -///Excessive draw calls (>150 on Gear VR; >2000 on Rift) -///Excessive tris or verts (>100k on Gear VR; >1M on Rift) +///Excessive draw calls (>150 on Mobile; >2000 on Rift) +///Excessive tris or verts (>100k on Mobile; >1M on Rift) ///Large textures, lots of prefabs in startup scene (for bootstrap optimization) ///GPU skinning: testing Android-only, as most Rift devs are GPU-bound. /// @@ -66,17 +74,14 @@ permissions and limitations under the License. public class OVRLint : EditorWindow { //TODO: The following require reflection or static analysis. - ///Use of ONSP reflections (Gear) - ///Use of LoadLevelAsync / LoadLevelAdditiveAsync (on Gear, this kills frame rate so dramatically it's probably better to just go to black and load synchronously) + ///Use of ONSP reflections (Mobile) + ///Use of LoadLevelAsync / LoadLevelAdditiveAsync (on Mobile, this kills frame rate so dramatically it's probably better to just go to black and load synchronously) ///Use of Linq in non-editor assemblies (common cause of GCs). Minor: use of foreach. ///Use of Unity WWW (exceptionally high overhead for large file downloads, but acceptable for tiny gets). ///Declared but empty Awake/Start/Update/OnCollisionEnter/OnCollisionExit/OnCollisionStay. Also OnCollision* star methods that declare the Collision argument but do not reference it (omitting it short-circuits the collision contact calculation). private static List mRecords = new List(); private static List mRuntimeEditModeRequiredRecords = new List(); -#if !UNITY_2017_2_OR_NEWER - private static bool mWasPlaying = false; -#endif private Vector2 mScrollPosition; [MenuItem("Oculus/Tools/OVR Performance Lint Tool")] @@ -86,34 +91,13 @@ static void Init() EditorWindow.GetWindow(typeof(OVRLint)); OVRPlugin.SendEvent("perf_lint", "activated"); OVRLint.RunCheck(); -#if !UNITY_2017_2_OR_NEWER - mWasPlaying = EditorApplication.isPlaying; -#endif } OVRLint() { -#if UNITY_2017_2_OR_NEWER EditorApplication.playModeStateChanged += HandlePlayModeState; -#else - EditorApplication.playmodeStateChanged += () => - { - // When Unity starts playing, it would also trigger play mode changed event with isPlaying == false - // Fixes should only be applied when it was transitioned from playing mode - if (!EditorApplication.isPlaying && mWasPlaying) - { - ApplyEditModeRequiredFix(); - mWasPlaying = false; - } - else - { - mWasPlaying = true; - } - }; -#endif } -#if UNITY_2017_2_OR_NEWER private static void HandlePlayModeState(PlayModeStateChange state) { if (state == PlayModeStateChange.EnteredEditMode) @@ -121,7 +105,6 @@ private static void HandlePlayModeState(PlayModeStateChange state) ApplyEditModeRequiredFix(); } } -#endif private static void ApplyEditModeRequiredFix() { @@ -223,8 +206,10 @@ void OnGUI() { GUILayout.Label(record.message); } + if (record.buttonNames != null) { + EditorGUILayout.BeginVertical(GUILayout.Width(200.0f)); for (int y = 0; y < record.buttonNames.Length; y++) { if (GUILayout.Button(record.buttonNames[y], EditorStyles.toolbarButton, GUILayout.Width(200))) @@ -254,7 +239,7 @@ void OnGUI() } } } - + EditorGUILayout.EndVertical(); } GUI.enabled = true; EditorGUILayout.EndHorizontal(); @@ -336,20 +321,12 @@ static void CheckStaticCommonIssues() } #endif -#if UNITY_2017_2_OR_NEWER if ((!PlayerSettings.MTRendering || !PlayerSettings.GetMobileMTRendering(BuildTargetGroup.Android))) -#else - if ((!PlayerSettings.MTRendering || !PlayerSettings.mobileMTRendering)) -#endif { AddFix("Optimize MT Rendering", "For CPU performance, please enable multithreaded rendering.", delegate (UnityEngine.Object obj, bool last, int selected) { -#if UNITY_2017_2_OR_NEWER PlayerSettings.SetMobileMTRendering(BuildTargetGroup.Standalone, true); PlayerSettings.SetMobileMTRendering(BuildTargetGroup.Android, true); -#else - PlayerSettings.MTRendering = PlayerSettings.mobileMTRendering = true; -#endif }, null, false, "Fix"); } @@ -363,7 +340,8 @@ static void CheckStaticCommonIssues() } #endif -#if UNITY_2017_3_OR_NEWER && !UNITY_ANDROID +#if !UNITY_ANDROID && !USING_XR_SDK && !REQUIRES_XR_SDK +#pragma warning disable 618 if (!PlayerSettings.VROculus.dashSupport) { AddFix("Enable Dash Integration", "We recommend to enable Dash Integration for better user experience.", delegate (UnityEngine.Object obj, bool last, int selected) @@ -379,6 +357,7 @@ static void CheckStaticCommonIssues() PlayerSettings.VROculus.sharedDepthBuffer = true; }, null, false, "Fix"); } +#pragma warning restore 618 #endif BuildTargetGroup target = EditorUserBuildSettings.selectedBuildTargetGroup; @@ -422,11 +401,7 @@ static void CheckStaticCommonIssues() var lights = GameObject.FindObjectsOfType(); for (int i = 0; i < lights.Length; ++i) { -#if UNITY_2017_3_OR_NEWER if (lights [i].type != LightType.Directional && !lights [i].bakingOutput.isBaked && IsLightBaked(lights[i])) -#else - if (lights[i].type != LightType.Directional && !lights[i].isBaked && IsLightBaked(lights[i])) -#endif { AddFix("Unbaked Lights", "The following lights in the scene are marked as Baked, but they don't have up to date lightmap data. Generate the lightmap data, or set it to auto-generate, in Window->Lighting->Settings.", null, lights[i], false, null); } @@ -625,19 +600,11 @@ static void CheckRuntimeCommonIssues() }, null, true, "Stop Play and Fix"); } -#if UNITY_2017_2_OR_NEWER if (UnityEngine.XR.XRSettings.eyeTextureResolutionScale > 1.5) -#else - if (UnityEngine.VR.VRSettings.renderScale > 1.5) -#endif { AddFix("Optimize Render Scale", "Render scale above 1.5 is extremely expensive on the GPU, with little if any positive visual benefit.", delegate (UnityEngine.Object obj, bool last, int selected) { -#if UNITY_2017_2_OR_NEWER UnityEngine.XR.XRSettings.eyeTextureResolutionScale = 1.5f; -#else - UnityEngine.VR.VRSettings.renderScale = 1.5f; -#endif }, null, false, "Fix"); } } @@ -645,22 +612,18 @@ static void CheckRuntimeCommonIssues() #if UNITY_ANDROID static void CheckStaticAndroidIssues() { - if (OVRDeviceSelector.isTargetDeviceQuest && PlayerSettings.Android.targetArchitectures != AndroidArchitecture.ARM64) + if (OVRDeviceSelector.isTargetDeviceQuestFamily && PlayerSettings.Android.targetArchitectures != AndroidArchitecture.ARM64) { - // Quest store is only accepting 64-bit apps as of November 25th 2019 - AddFix("Set Target Architecture to ARM64", "32-bit Quest apps are no longer being accepted on the Oculus Store.", - delegate (UnityEngine.Object obj, bool last, int selected) - { - PlayerSettings.Android.targetArchitectures = AndroidArchitecture.ARM64; - }, null, false, "Fix"); + // Quest store is only accepting 64-bit apps as of November 25th 2019 + AddFix("Set Target Architecture to ARM64", "32-bit Quest apps are no longer being accepted on the Oculus Store.", + delegate (UnityEngine.Object obj, bool last, int selected) + { + PlayerSettings.Android.targetArchitectures = AndroidArchitecture.ARM64; + }, null, false, "Fix"); } - // Check that the minSDKVersion meets requirement, 21 for Gear and Go, 23 for Quest - AndroidSdkVersions recommendedAndroidMinSdkVersion = AndroidSdkVersions.AndroidApiLevel21; - if (OVRDeviceSelector.isTargetDeviceQuest) - { - recommendedAndroidMinSdkVersion = AndroidSdkVersions.AndroidApiLevel23; - } + // Check that the minSDKVersion meets requirement, 23 for Quest + AndroidSdkVersions recommendedAndroidMinSdkVersion = AndroidSdkVersions.AndroidApiLevel23; if ((int)PlayerSettings.Android.minSdkVersion < (int)recommendedAndroidMinSdkVersion) { AddFix("Set Min Android API Level", "Please require at least API level " + (int)recommendedAndroidMinSdkVersion, delegate (UnityEngine.Object obj, bool last, int selected) @@ -672,7 +635,7 @@ static void CheckStaticAndroidIssues() // Check that compileSDKVersion meets minimal version 26 as required for Quest's headtracking feature // Unity Sets compileSDKVersion in Gradle as the value used in targetSdkVersion AndroidSdkVersions requiredAndroidTargetSdkVersion = AndroidSdkVersions.AndroidApiLevel26; - if (OVRDeviceSelector.isTargetDeviceQuest && + if (OVRDeviceSelector.isTargetDeviceQuestFamily && (int)PlayerSettings.Android.targetSdkVersion < (int)requiredAndroidTargetSdkVersion) { AddFix("Set Android Target SDK Level", "Oculus Quest apps require at least target API level " + @@ -692,16 +655,9 @@ static void CheckStaticAndroidIssues() }, null, false, "Fix"); } - if (OVRPlatformToolSettings.TargetPlatform == OVRPlatformTool.TargetPlatform.OculusGoGearVR && - !OVRPlugin.supportsGearVR) - { - AddFix("Gear VR Not Supported", "Target Oculus Platform Gear VR is no longer supported after Oculus Utilities v1.41.0. " + - "This app will only target Oculus Go.", null, null, false); - } - if (!PlayerSettings.gpuSkinning) { - AddFix("Optimize GPU Skinning", "If you are CPU-bound, consider using GPU skinning.", + AddFix("Optimize GPU Skinning", "If you are CPU-bound, consider using GPU skinning.", delegate (UnityEngine.Object obj, bool last, int selected) { PlayerSettings.gpuSkinning = true; diff --git a/Assets/Oculus/VR/Editor/OVRManifestPreprocessor.cs b/Assets/Oculus/VR/Editor/OVRManifestPreprocessor.cs index a937c9f1..fec65de0 100644 --- a/Assets/Oculus/VR/Editor/OVRManifestPreprocessor.cs +++ b/Assets/Oculus/VR/Editor/OVRManifestPreprocessor.cs @@ -199,10 +199,10 @@ public static void PatchAndroidManifest(string sourceFile, string destinationFil "/manifest", "uses-feature", "android.hardware.vr.headtracking", - OVRDeviceSelector.isTargetDeviceQuest, - modifyIfFound, + OVRDeviceSelector.isTargetDeviceQuestFamily, + true, "version", "1", - "required", OVRDeviceSelector.isTargetDeviceGearVrOrGo ? "false" : "true"); + "required", "true"); // If Quest is the target device, add the handtracking manifest tags if needed // Mapping of project setting to manifest setting: @@ -210,7 +210,7 @@ public static void PatchAndroidManifest(string sourceFile, string destinationFil // OVRProjectConfig.HandTrackingSupport.ControllersAndHands => manifest entry present and required=false // OVRProjectConfig.HandTrackingSupport.HandsOnly => manifest entry present and required=true OVRProjectConfig.HandTrackingSupport targetHandTrackingSupport = OVRProjectConfig.GetProjectConfig().handTrackingSupport; - bool handTrackingEntryNeeded = OVRDeviceSelector.isTargetDeviceQuest && (targetHandTrackingSupport != OVRProjectConfig.HandTrackingSupport.ControllersOnly); + bool handTrackingEntryNeeded = OVRDeviceSelector.isTargetDeviceQuestFamily && (targetHandTrackingSupport != OVRProjectConfig.HandTrackingSupport.ControllersOnly); AddOrRemoveTag(doc, androidNamepsaceURI, @@ -224,30 +224,61 @@ public static void PatchAndroidManifest(string sourceFile, string destinationFil androidNamepsaceURI, "/manifest", "uses-permission", - "oculus.permission.handtracking", + "com.oculus.permission.HAND_TRACKING", handTrackingEntryNeeded, modifyIfFound); - // Add Colorspace metadata if targeting Quest - AddOrRemoveTag(doc, - androidNamepsaceURI, - "/manifest/application", - "meta-data", - "com.oculus.application.colorspace", - OVRDeviceSelector.isTargetDeviceQuest && projectConfig.colorGamut != OVRProjectConfig.ColorGamut.Default, - modifyIfFound, - "value", OVRProjectConfig.ColorGamutToString(projectConfig.colorGamut)); - // Add focus aware tag if this app is targeting Quest + // Add focus aware tag if this app is targeting Quest Family AddOrRemoveTag(doc, androidNamepsaceURI, "/manifest/application/activity", "meta-data", "com.oculus.vr.focusaware", - OVRDeviceSelector.isTargetDeviceQuest, + OVRDeviceSelector.isTargetDeviceQuestFamily, modifyIfFound, "value", projectConfig.focusAware ? "true" : "false"); + // Add support devices manifest according to the target devices + if (OVRDeviceSelector.isTargetDeviceQuestFamily) + { + string targetDeviceValue = "quest"; + if (OVRDeviceSelector.isTargetDeviceQuest && OVRDeviceSelector.isTargetDeviceQuest2) + { + targetDeviceValue = "quest|quest2"; + } + else if (OVRDeviceSelector.isTargetDeviceQuest2) + { + targetDeviceValue = "quest2"; + } + else if (OVRDeviceSelector.isTargetDeviceQuest) + { + targetDeviceValue = "quest"; + } + else + { + Debug.LogError("Unexpected target devices"); + } + AddOrRemoveTag(doc, + androidNamepsaceURI, + "/manifest/application", + "meta-data", + "com.oculus.supportedDevices", + true, + modifyIfFound, + "value", targetDeviceValue); + } + + // Add system keyboard tag + AddOrRemoveTag(doc, + androidNamepsaceURI, + "/manifest", + "uses-feature", + "oculus.software.overlay_keyboard", + projectConfig.focusAware && projectConfig.requiresSystemKeyboard, + modifyIfFound, + "required", "false"); + // make sure the VR Mode tag is set in the manifest AddOrRemoveTag(doc, androidNamepsaceURI, @@ -258,8 +289,17 @@ public static void PatchAndroidManifest(string sourceFile, string destinationFil modifyIfFound, "value", "vr_only"); - // make sure android label and icon are set in the manifest - AddOrRemoveTag(doc, + // Add VR intent filter tag in the manifest + AddOrRemoveTag(doc, + androidNamepsaceURI, + "/manifest/application/activity/intent-filter", + "category", + "com.oculus.intent.category.VR", + required: true, + modifyIfFound: true); + + // make sure android label and icon are set in the manifest + AddOrRemoveTag(doc, androidNamepsaceURI, "/manifest", "application", @@ -267,18 +307,13 @@ public static void PatchAndroidManifest(string sourceFile, string destinationFil true, modifyIfFound, "label", "@string/app_name", -#if UNITY_2018_2_OR_NEWER "icon", "@mipmap/app_icon", -#else - "icon", "@drawable/app_icon", -#endif // Disable allowBackup in manifest and add Android NSC XML file "allowBackup", projectConfig.disableBackups ? "false" : "true", "networkSecurityConfig", projectConfig.enableNSCConfig && enableSecurity ? "@xml/network_sec_config" : null ); doc.Save(destinationFile); - } catch (System.Exception e) { diff --git a/Assets/Oculus/VR/Editor/OVRPlatformTool.cs b/Assets/Oculus/VR/Editor/OVRPlatformTool.cs index fa755f08..71a6dfaa 100644 --- a/Assets/Oculus/VR/Editor/OVRPlatformTool.cs +++ b/Assets/Oculus/VR/Editor/OVRPlatformTool.cs @@ -15,10 +15,18 @@ public class OVRPlatformTool : EditorWindow { public enum TargetPlatform { - Rift, - OculusGoGearVR, - Quest, - None, + Rift = 0, + //OculusGoGearVR = 1, // DEPRECATED + Quest = 2, + None = 3, + }; + + public enum GamepadType + { + OFF, + TWINSTICK, + RIGHT_D_PAD, + LEFT_D_PAD, }; const string urlPlatformUtil = @@ -50,21 +58,6 @@ public enum TargetPlatform private static GUIStyle boldFoldoutStyle; - string[] platformOptions = new string[] - { - "Oculus Rift", - "Oculus Go | Gear VR", - "Oculus Quest" - }; - - string[] gamepadOptions = new string[] - { - "Off", - "Twinstick", - "Right D Pad", - "Left D Pad" - }; - [MenuItem("Oculus/Tools/Oculus Platform Tool")] static void Init() { @@ -74,17 +67,18 @@ static void Init() // Populate initial target platform value based on OVRDeviceSelector #if UNITY_ANDROID - if (OVRDeviceSelector.isTargetDeviceQuest) + if (OVRDeviceSelector.isTargetDeviceQuestFamily) { OVRPlatformToolSettings.TargetPlatform = TargetPlatform.Quest; } - else - { - OVRPlatformToolSettings.TargetPlatform = TargetPlatform.OculusGoGearVR; - } #else OVRPlatformToolSettings.TargetPlatform = TargetPlatform.Rift; #endif + // If no debug symbol directory is set, default to the expected place + if(string.IsNullOrEmpty(OVRPlatformToolSettings.DebugSymbolsDirectory)) + { + OVRPlatformToolSettings.DebugSymbolsDirectory = Path.Combine(Application.dataPath, "../Temp/StagingArea/symbols"); + } EditorUtility.SetDirty(OVRPlatformToolSettings.Instance); // Load redist packages by calling list-redists in the CLI @@ -112,7 +106,11 @@ void OnGUI() this.titleContent.text = "OVR Platform Tool"; GUIContent TargetPlatformLabel = new GUIContent("Target Oculus Platform"); - OVRPlatformToolSettings.TargetPlatform = (TargetPlatform)MakePopup(TargetPlatformLabel, (int)OVRPlatformToolSettings.TargetPlatform, platformOptions); + OVRPlatformToolSettings.TargetPlatform = (TargetPlatform)MakeEnumPopup(TargetPlatformLabel, OVRPlatformToolSettings.TargetPlatform); + + if (OVRPlatformToolSettings.TargetPlatform == TargetPlatform.None) + return; + SetOVRProjectConfig(OVRPlatformToolSettings.TargetPlatform); SetDirtyOnGUIChange(); @@ -165,11 +163,12 @@ void OnGUI() OVRPlatformToolSettings.ApkBuildPath = MakeFileDirectoryField(ApkPathLabel, OVRPlatformToolSettings.ApkBuildPath, "Choose APK File", true, "apk"); - if (OVRPlatformToolSettings.TargetPlatform == TargetPlatform.OculusGoGearVR) - { - // Go and Gear VR specific fields - } - else if (OVRPlatformToolSettings.TargetPlatform == TargetPlatform.Quest) + GUIContent DebugSymbolLabel = new GUIContent("Debug Symbols Directory [?]: ", + "The full path to the directory containing the app symbols (libil2cpp.sym.so)"); + OVRPlatformToolSettings.DebugSymbolsDirectory = MakeFileDirectoryField(DebugSymbolLabel, OVRPlatformToolSettings.DebugSymbolsDirectory, + "Choose Debug Symbols Directory", false); + + if (OVRPlatformToolSettings.TargetPlatform == TargetPlatform.Quest) { // Quest specific fields } @@ -193,7 +192,7 @@ void OnGUI() GUIContent GamepadEmulationLabel = new GUIContent("Gamepad Emulation [?]: ", "Specifies the type of gamepad emulation used by the Oculus Touch controllers."); - OVRPlatformToolSettings.RiftGamepadEmulation = (OVRPlatformToolSettings.GamepadType)MakePopup(GamepadEmulationLabel, (int)OVRPlatformToolSettings.RiftGamepadEmulation, gamepadOptions); + OVRPlatformToolSettings.RiftGamepadEmulation = (GamepadType)MakeEnumPopup(GamepadEmulationLabel, OVRPlatformToolSettings.RiftGamepadEmulation); show2DCommands = EditorGUILayout.Foldout(show2DCommands, "2D", boldFoldoutStyle); if (show2DCommands) @@ -242,11 +241,7 @@ void OnGUI() } else { - if (OVRPlatformToolSettings.TargetPlatform == TargetPlatform.OculusGoGearVR) - { - // Go and Gear VR specific optional fields - } - else if (OVRPlatformToolSettings.TargetPlatform == TargetPlatform.Quest) + if (OVRPlatformToolSettings.TargetPlatform == TargetPlatform.Quest) { // Quest specific optional fields } @@ -313,14 +308,6 @@ void OnGUI() GUILayout.FlexibleSpace(); - if (OVRPlatformToolSettings.TargetPlatform != TargetPlatform.Rift) - { - // Skip Unneeded Shaders Option - GUIContent SkipUnneededShadersLabel = new GUIContent("Skip Unneeded Shaders (Recommended) [?]: ", - "Prevent building shaders that are not used by default for the current Target Oculus Platform."); - OVRPlatformToolSettings.SkipUnneededShaders = MakeToggleBox(SkipUnneededShadersLabel, OVRPlatformToolSettings.SkipUnneededShaders); - } - // Run OVR Lint Option EditorGUIUtility.labelWidth = DEFAULT_LABEL_WIDTH; GUIContent RunOvrLintLabel = new GUIContent("Run OVR Lint (Recommended) [?]: ", @@ -374,16 +361,12 @@ void OnGUI() private void SetOVRProjectConfig(TargetPlatform targetPlatform) { #if UNITY_ANDROID - var targetDeviceTypes = new List(); - if (targetPlatform == TargetPlatform.Quest && !OVRDeviceSelector.isTargetDeviceQuest) + if (targetPlatform == TargetPlatform.Quest && !OVRDeviceSelector.isTargetDeviceQuestFamily) { targetDeviceTypes.Add(OVRProjectConfig.DeviceType.Quest); - } - else if (targetPlatform == TargetPlatform.OculusGoGearVR && !OVRDeviceSelector.isTargetDeviceGearVrOrGo) - { - targetDeviceTypes.Add(OVRProjectConfig.DeviceType.GearVrOrGo); + targetDeviceTypes.Add(OVRProjectConfig.DeviceType.Quest2); } if (targetDeviceTypes.Count != 0) @@ -433,7 +416,7 @@ private void OnUpload(TargetPlatform targetPlatform) static void ExecuteCommand(TargetPlatform targetPlatform) { string dataPath = Application.dataPath; - + // If we already have a copy of the platform util, check if it needs to be updated if (!ranSelfUpdate && File.Exists(dataPath + "/Oculus/VR/Editor/Tools/ovr-platform-util.exe")) { @@ -621,9 +604,17 @@ static void Command(TargetPlatform targetPlatform, string dataPath, string uploa ovrPlatUtilProcess.OutputDataReceived += new DataReceivedEventHandler( (s, e) => { - if (e.Data != null && e.Data.Length != 0 && !e.Data.Contains("\u001b")) + if (e.Data != null && e.Data.Length != 0) { - OVRPlatformTool.log += e.Data + "\n"; + int index = e.Data.IndexOf("\u001b"); + if (index >= 0) + { + OVRPlatformTool.log += e.Data.Substring(0, index) + "\n"; + } + else + { + OVRPlatformTool.log += e.Data + "\n"; + } } } ); @@ -659,9 +650,6 @@ private static bool genUploadCommand(TargetPlatform targetPlatform, out string c case TargetPlatform.Rift: command = "upload-rift-build"; break; - case TargetPlatform.OculusGoGearVR: - command = "upload-mobile-build"; - break; case TargetPlatform.Quest: command = "upload-quest-build"; break; @@ -735,15 +723,15 @@ private static bool genUploadCommand(TargetPlatform targetPlatform, out string c } // Add Gamepad Emulation - if (OVRPlatformToolSettings.RiftGamepadEmulation > OVRPlatformToolSettings.GamepadType.OFF && - OVRPlatformToolSettings.RiftGamepadEmulation <= OVRPlatformToolSettings.GamepadType.LEFT_D_PAD) + if (OVRPlatformToolSettings.RiftGamepadEmulation > GamepadType.OFF && + OVRPlatformToolSettings.RiftGamepadEmulation <= GamepadType.LEFT_D_PAD) { command += " --gamepad-emulation "; switch (OVRPlatformToolSettings.RiftGamepadEmulation) { - case OVRPlatformToolSettings.GamepadType.TWINSTICK: command += "TWINSTICK"; break; - case OVRPlatformToolSettings.GamepadType.RIGHT_D_PAD: command += "RIGHT_D_PAD"; break; - case OVRPlatformToolSettings.GamepadType.LEFT_D_PAD: command += "LEFT_D_PAD"; break; + case GamepadType.TWINSTICK: command += "TWINSTICK"; break; + case GamepadType.RIGHT_D_PAD: command += "RIGHT_D_PAD"; break; + case GamepadType.LEFT_D_PAD: command += "LEFT_D_PAD"; break; default: command += "OFF"; break; } } @@ -768,11 +756,15 @@ private static bool genUploadCommand(TargetPlatform targetPlatform, out string c command += " --obb \"" + OVRPlatformToolSettings.ObbFilePath + "\""; } - if (OVRPlatformToolSettings.TargetPlatform == TargetPlatform.OculusGoGearVR) + // Add Debug Symbols Path + if (!string.IsNullOrEmpty(OVRPlatformToolSettings.DebugSymbolsDirectory)) { - // Go and Gear VR specific commands + ValidateTextField(DirectoryValidator, OVRPlatformToolSettings.DebugSymbolsDirectory, "Debug Symbols Directory", ref success); + command += " --debug-symbols-dir \"" + OVRPlatformToolSettings.DebugSymbolsDirectory + "\""; + command += " --debug-symbols-pattern \"*.sym.so\""; } - else if (OVRPlatformToolSettings.TargetPlatform == TargetPlatform.Quest) + + if (OVRPlatformToolSettings.TargetPlatform == TargetPlatform.Quest) { // Quest specific commands } @@ -979,13 +971,13 @@ private bool MakeToggleBox(GUIContent label, bool variable) return result; } - private int MakePopup(GUIContent label, int variable, string[] options) + private Enum MakeEnumPopup(GUIContent label, Enum selected) { - int result = 0; + Enum result; EditorGUILayout.BeginHorizontal(); EditorGUILayout.LabelField(label, GUILayout.ExpandWidth(false)); - result = EditorGUILayout.Popup(variable, options); + result = EditorGUILayout.EnumPopup(selected); EditorGUILayout.EndHorizontal(); return result; @@ -1057,7 +1049,6 @@ private static void SetDirtyOnGUIChange() private static IEnumerator ProvisionPlatformUtil(string dataPath) { UnityEngine.Debug.Log("Started Provisioning Oculus Platform Util"); -#if UNITY_2018_3_OR_NEWER var webRequest = new UnityWebRequest(urlPlatformUtil, UnityWebRequest.kHttpVerbGET); string path = dataPath; webRequest.downloadHandler = new DownloadHandlerFile(path); @@ -1065,7 +1056,12 @@ private static IEnumerator ProvisionPlatformUtil(string dataPath) webRequest.timeout = 60; UnityWebRequestAsyncOperation webOp = webRequest.SendWebRequest(); while (!webOp.isDone) { } +#if UNITY_2020_1_OR_NEWER + if (webRequest.result == UnityWebRequest.Result.ConnectionError || + webRequest.result == UnityWebRequest.Result.ProtocolError) +#else if (webRequest.isNetworkError || webRequest.isHttpError) +#endif { var networkErrorMsg = "Failed to provision Oculus Platform Util\n"; UnityEngine.Debug.LogError(networkErrorMsg); @@ -1077,32 +1073,6 @@ private static IEnumerator ProvisionPlatformUtil(string dataPath) } SetDirtyOnGUIChange(); yield return webOp; -#else - using (WWW www = new WWW(urlPlatformUtil)) - { - float timer = 0; - float timeOut = 60; - yield return www; - while (!www.isDone && timer < timeOut) - { - timer += Time.deltaTime; - if (www.error != null) - { - UnityEngine.Debug.Log("Download error: " + www.error); - break; - } - OVRPlatformTool.log = string.Format("Downloading.. {0:P1}", www.progress); - SetDirtyOnGUIChange(); - yield return new WaitForSeconds(1f); - } - if (www.isDone) - { - System.IO.File.WriteAllBytes(dataPath, www.bytes); - OVRPlatformTool.log = "Completed Provisioning Oculus Platform Util\n"; - SetDirtyOnGUIChange(); - } - } -#endif } private static void DrawAssetConfigList(Rect rect) diff --git a/Assets/Oculus/VR/Editor/OVRPlatformToolSettings.cs b/Assets/Oculus/VR/Editor/OVRPlatformToolSettings.cs index e7db960a..943cf08f 100644 --- a/Assets/Oculus/VR/Editor/OVRPlatformToolSettings.cs +++ b/Assets/Oculus/VR/Editor/OVRPlatformToolSettings.cs @@ -30,14 +30,6 @@ static void Update() EditorApplication.update -= Update; } - public enum GamepadType - { - OFF, - TWINSTICK, - RIGHT_D_PAD, - LEFT_D_PAD, - }; - public static string AppID { get @@ -309,17 +301,17 @@ public static bool RiftFirewallException } } - public static GamepadType RiftGamepadEmulation + public static OVRPlatformTool.GamepadType RiftGamepadEmulation { get { if (EditorPrefs.HasKey("OVRPlatformToolSettings_RiftGamepadEmulation")) { - return (GamepadType)EditorPrefs.GetInt("OVRPlatformToolSettings_RiftGamepadEmulation"); + return (OVRPlatformTool.GamepadType)EditorPrefs.GetInt("OVRPlatformToolSettings_RiftGamepadEmulation"); } else { - return GamepadType.OFF; + return OVRPlatformTool.GamepadType.OFF; } } set @@ -367,10 +359,23 @@ public static bool RunOvrLint set { Instance.runOvrLint = value; } } - public static bool SkipUnneededShaders + public static string DebugSymbolsDirectory { - get { return Instance.skipUnneededShaders; } - set { Instance.skipUnneededShaders = value; } + get + { + if (EditorPrefs.HasKey("OVRPlatformToolSettings_DebugSymbolsDirectory")) + { + return EditorPrefs.GetString("OVRPlatformToolSettings_DebugSymbolsDirectory"); + } + else + { + return ""; + } + } + set + { + EditorPrefs.SetString("OVRPlatformToolSettings_DebugSymbolsDirectory", value); + } } [SerializeField] @@ -388,9 +393,6 @@ public static bool SkipUnneededShaders [SerializeField] private bool runOvrLint = true; - [SerializeField] - private bool skipUnneededShaders = false; - public static bool TryInitialize() { // If not initialized and Build Player is current running, UnityEditor.AssetDatabase.CreateAsset diff --git a/Assets/Oculus/VR/Editor/OVRPluginUpdater.cs b/Assets/Oculus/VR/Editor/OVRPluginUpdater.cs index c4d2ac6e..b65a20bc 100644 --- a/Assets/Oculus/VR/Editor/OVRPluginUpdater.cs +++ b/Assets/Oculus/VR/Editor/OVRPluginUpdater.cs @@ -19,6 +19,14 @@ limitations under the License. ************************************************************************************/ +#if USING_XR_MANAGEMENT && USING_XR_SDK_OCULUS +#define USING_XR_SDK +#endif + +#if UNITY_2020_1_OR_NEWER +#define REQUIRES_XR_SDK +#endif + using UnityEngine; using UnityEditor; using UnityEditor.Callbacks; @@ -36,6 +44,7 @@ enum PluginPlatform { Android, AndroidUniversal, + AndroidOpenXR, OSXUniversal, Win, Win64, @@ -99,11 +108,48 @@ public bool IsAndroidUniversalPresent() return false; } + + public bool IsAndroidOpenXREnabled() + { + string path = ""; + if (Plugins.TryGetValue(PluginPlatform.AndroidOpenXR, out path)) + { + if (File.Exists(path)) + { + string basePath = GetCurrentProjectPath(); + string relPath = path.Substring(basePath.Length + 1); + + PluginImporter pi = PluginImporter.GetAtPath(relPath) as PluginImporter; + if (pi != null) + { + return pi.GetCompatibleWithPlatform(BuildTarget.Android); + } + } + } + + return false; + } + + public bool IsAndroidOpenXRPresent() + { + string path = ""; + if (Plugins.TryGetValue(PluginPlatform.AndroidOpenXR, out path)) + { + string disabledPath = path + GetDisabledPluginSuffix(); + + if (File.Exists(path) || File.Exists(disabledPath)) + { + return true; + } + } + + return false; + } } private static bool restartPending = false; private static bool unityRunningInBatchmode = false; - private static bool unityVersionSupportsAndroidUniversal = false; + private static bool unityVersionSupportsAndroidUniversal = true; private static bool enableAndroidUniversalSupport = true; private static System.Version invalidVersion = new System.Version("0.0.0"); @@ -122,9 +168,7 @@ static void OnDelayCall() if (enableAndroidUniversalSupport) { -#if UNITY_2018_3_OR_NEWER unityVersionSupportsAndroidUniversal = true; -#endif } if (ShouldAttemptPluginUpdate()) @@ -143,6 +187,7 @@ private static PluginPackage GetPluginPackage(string rootPath) { { PluginPlatform.Android, rootPath + GetPluginBuildTargetSubPath(PluginPlatform.Android) }, { PluginPlatform.AndroidUniversal, rootPath + GetPluginBuildTargetSubPath(PluginPlatform.AndroidUniversal) }, + { PluginPlatform.AndroidOpenXR, rootPath + GetPluginBuildTargetSubPath(PluginPlatform.AndroidOpenXR) }, { PluginPlatform.OSXUniversal, rootPath + GetPluginBuildTargetSubPath(PluginPlatform.OSXUniversal) }, { PluginPlatform.Win, rootPath + GetPluginBuildTargetSubPath(PluginPlatform.Win) }, { PluginPlatform.Win64, rootPath + GetPluginBuildTargetSubPath(PluginPlatform.Win64) }, @@ -214,6 +259,9 @@ private static string GetPluginBuildTargetSubPath(PluginPlatform target) case PluginPlatform.AndroidUniversal: path = @"/AndroidUniversal/OVRPlugin.aar"; break; + case PluginPlatform.AndroidOpenXR: + path = @"/AndroidOpenXR/OVRPlugin.aar"; + break; case PluginPlatform.OSXUniversal: path = @"/OSXUniversal/OVRPlugin.bundle"; break; @@ -343,13 +391,7 @@ private static void EnablePluginPackage(PluginPackage pluginPkg) pi.SetCompatibleWithPlatform(BuildTarget.Android, false); pi.SetCompatibleWithPlatform(BuildTarget.StandaloneWindows, false); pi.SetCompatibleWithPlatform(BuildTarget.StandaloneWindows64, false); -#if UNITY_2017_3_OR_NEWER pi.SetCompatibleWithPlatform(BuildTarget.StandaloneOSX, false); -#else - pi.SetCompatibleWithPlatform(BuildTarget.StandaloneOSXUniversal, false); - pi.SetCompatibleWithPlatform(BuildTarget.StandaloneOSXIntel, false); - pi.SetCompatibleWithPlatform(BuildTarget.StandaloneOSXIntel64, false); -#endif switch (platform) { @@ -363,14 +405,10 @@ private static void EnablePluginPackage(PluginPackage pluginPkg) case PluginPlatform.AndroidUniversal: pi.SetCompatibleWithPlatform(BuildTarget.Android, unityVersionSupportsAndroidUniversal); break; + case PluginPlatform.AndroidOpenXR: + break; case PluginPlatform.OSXUniversal: -#if UNITY_2017_3_OR_NEWER pi.SetCompatibleWithPlatform(BuildTarget.StandaloneOSX, true); -#else - pi.SetCompatibleWithPlatform(BuildTarget.StandaloneOSXUniversal, true); - pi.SetCompatibleWithPlatform(BuildTarget.StandaloneOSXIntel, true); - pi.SetCompatibleWithPlatform(BuildTarget.StandaloneOSXIntel64, true); -#endif pi.SetCompatibleWithEditor(true); pi.SetEditorData("CPU", "AnyCPU"); pi.SetEditorData("OS", "OSX"); @@ -420,7 +458,6 @@ private static bool autoUpdateEnabled [MenuItem("Oculus/Tools/Disable OVR Utilities Plugin")] private static void AttemptPluginDisable() { - PluginPackage bundledPluginPkg = GetBundledPluginPackage(); List allUtilsPluginPkgs = GetAllUtilitiesPluginPackages(); PluginPackage enabledUtilsPluginPkg = null; @@ -439,21 +476,11 @@ private static void AttemptPluginDisable() if (enabledUtilsPluginPkg == null) { if (unityRunningInBatchmode -#if UNITY_2018_3_OR_NEWER || EditorUtility.DisplayDialog("Disable Oculus Utilities Plugin", "The OVRPlugin included with Oculus Utilities is already disabled." + " The OVRPlugin installed through the Package Manager will continue to be used.\n", "Ok", "")) -#else - || EditorUtility.DisplayDialog("Disable Oculus Utilities Plugin", - "The OVRPlugin included with Oculus Utilities is already disabled." - + " The OVRPlugin bundled with the Unity Editor will continue to be used.\n\n" - + "Bundled version: " - + GetVersionDescription(bundledPluginPkg.Version), - "Ok", - "")) -#endif { return; } @@ -461,42 +488,20 @@ private static void AttemptPluginDisable() else { if (unityRunningInBatchmode -#if UNITY_2018_3_OR_NEWER || EditorUtility.DisplayDialog("Disable Oculus Utilities Plugin", "Do you want to disable the OVRPlugin included with Oculus Utilities and revert to the OVRPlugin installed through the Package Manager?\n\n" + "Current version: " + GetVersionDescription(enabledUtilsPluginPkg.Version), "Yes", "No")) -#else - || EditorUtility.DisplayDialog("Disable Oculus Utilities Plugin", - "Do you want to disable the OVRPlugin included with Oculus Utilities and revert to the OVRPlugin bundled with the Unity Editor?\n\n" - + "Current version: " + GetVersionDescription(enabledUtilsPluginPkg.Version) - + "\nBundled version: " + GetVersionDescription(bundledPluginPkg.Version), - "Yes", - "No")) -#endif { DisableAllUtilitiesPluginPackages(); if (unityRunningInBatchmode -#if UNITY_2018_3_OR_NEWER || EditorUtility.DisplayDialog("Restart Unity", "Now you will be using the OVRPlugin installed through Package Manager." + "\n\nPlease restart the Unity Editor to complete the update process.", "Restart", "Not Now")) -#else - || EditorUtility.DisplayDialog("Restart Unity", - "OVRPlugin has been updated to " - + GetVersionDescription(bundledPluginPkg.Version) - + ".\n\nPlease restart the Unity Editor to complete the update process." -#if !UNITY_2017_1_OR_NEWER - + " You may need to manually relaunch Unity if you are using Unity 5.6 and higher." -#endif - , - "Restart", - "Not Now")) -#endif { RestartUnityEditor(); } @@ -511,6 +516,220 @@ private static void RunPluginUpdate() AttemptPluginUpdate(false); } + private static void BatchmodeActivateOVRPluginOpenXR() + { + OnDelayCall(); // manually invoke when running editor in batchmode + ActivateOVRPluginOpenXR(); + } + + [MenuItem("Oculus/Tools/OpenXR on Quest (Experimental)/Activate Oculus Utilities Plugin with OpenXR")] + private static void ActivateOVRPluginOpenXR() + { + if (!unityVersionSupportsAndroidUniversal) + { + UnityEngine.Debug.LogError("Unexpected error: Unity must support AndroidUniversal version of Oculus Utilities Plugin for accessing OpenXR"); + return; + } + +#if !USING_XR_SDK && !REQUIRES_XR_SDK + UnityEngine.Debug.LogError("Oculus Utilities Plugin with OpenXR only supports XR Plug-in Managmenent with Oculus XR Plugin"); + return; +#else + + if (!unityRunningInBatchmode) + { + bool accepted = EditorUtility.DisplayDialog("Warning", + "Oculus Utilities Plugin with OpenXR is experimental. You may expect to encounter stability issues and/or missing functionalities, " + + "including but not limited to, fixed foveated rendering / composition layer / display refresh rates / etc." + + "\n\n" + + "Also, Oculus Utilities Plugin with OpenXR only supports XR Plug-in Managmenent with Oculus XR Plugin on Quest", + "Continue", "Cancel"); + + if (!accepted) + { + return; + } + } + + List allUtilsPluginPkgs = GetAllUtilitiesPluginPackages(); + + PluginPackage enabledUtilsPluginPkg = null; + + foreach (PluginPackage pluginPkg in allUtilsPluginPkgs) + { + if (pluginPkg.IsEnabled()) + { + enabledUtilsPluginPkg = pluginPkg; + break; + } + } + + if (enabledUtilsPluginPkg == null) + { + UnityEngine.Debug.LogError("Unable to Activate OVRPlugin with OpenXR: Oculus Utilities Plugin package not activated"); + return; + } + + if (!enabledUtilsPluginPkg.IsAndroidOpenXRPresent()) + { + UnityEngine.Debug.LogError("Unable to Activate OVRPlugin with OpenXR: AndroidOpenXR/OVRPlugin.aar does not exist"); + return; + } + + if (enabledUtilsPluginPkg.IsAndroidOpenXREnabled()) + { + if (!unityRunningInBatchmode) + { + EditorUtility.DisplayDialog("Unable to Activate OVRPlugin with OpenXR", "AndroidOpenXR/OVRPlugin.aar already enabled", "Ok"); + } + return; + } + + if (enabledUtilsPluginPkg.IsAndroidUniversalEnabled()) + { + string androidUniveralPluginPath = enabledUtilsPluginPkg.Plugins[PluginPlatform.AndroidUniversal]; + string androidUniveralPluginBasePath = GetCurrentProjectPath(); + string androidUniveralPluginRelPath = androidUniveralPluginPath.Substring(androidUniveralPluginBasePath.Length + 1); + PluginImporter pi = PluginImporter.GetAtPath(androidUniveralPluginRelPath) as PluginImporter; + if (pi != null) + { + pi.SetCompatibleWithPlatform(BuildTarget.Android, false); + AssetDatabase.ImportAsset(androidUniveralPluginRelPath, ImportAssetOptions.ForceUpdate); + } + else + { + UnityEngine.Debug.LogWarning("pi == null"); + } + } + + { + string androidOpenXRPluginPath = enabledUtilsPluginPkg.Plugins[PluginPlatform.AndroidOpenXR]; + string androidOpenXRPluginBasePath = GetCurrentProjectPath(); + string androidOpenXRPluginRelPath = androidOpenXRPluginPath.Substring(androidOpenXRPluginBasePath.Length + 1); + PluginImporter pi = PluginImporter.GetAtPath(androidOpenXRPluginRelPath) as PluginImporter; + if (pi != null) + { + pi.SetCompatibleWithPlatform(BuildTarget.Android, true); + AssetDatabase.ImportAsset(androidOpenXRPluginRelPath, ImportAssetOptions.ForceUpdate); + } + } + + AssetDatabase.Refresh(); + AssetDatabase.SaveAssets(); + + if (!unityRunningInBatchmode) + { + EditorUtility.DisplayDialog("Activate OVRPlugin with OpenXR", "Oculus Utilities Plugin with OpenXR has been enabled on Android", "Ok"); + } +#endif // !USING_XR_SDK + } + + [MenuItem("Oculus/Tools/OpenXR on Quest (Experimental)/Restore Standard Oculus Utilities Plugin")] + private static void RestoreStandardOVRPlugin() + { + if (!unityVersionSupportsAndroidUniversal) // sanity check + { + UnityEngine.Debug.LogError("Unexpected error: Unity must support AndroidUniversal version of Oculus Utilities Plugin for accessing OpenXR"); + return; + } + + List allUtilsPluginPkgs = GetAllUtilitiesPluginPackages(); + + PluginPackage enabledUtilsPluginPkg = null; + + foreach (PluginPackage pluginPkg in allUtilsPluginPkgs) + { + if (pluginPkg.IsEnabled()) + { + enabledUtilsPluginPkg = pluginPkg; + break; + } + } + + if (enabledUtilsPluginPkg == null) + { + UnityEngine.Debug.LogError("Unable to Restore Standard Oculus Utilities Plugin: Oculus Utilities Plugin package not activated"); + return; + } + + if (!enabledUtilsPluginPkg.IsAndroidUniversalPresent()) + { + UnityEngine.Debug.LogError("Unable to Restore Standard Oculus Utilities Plugin: AndroidOpenXR/OVRPlugin.aar does not exist"); + return; + } + + if (enabledUtilsPluginPkg.IsAndroidUniversalEnabled()) + { + if (!unityRunningInBatchmode) + { + EditorUtility.DisplayDialog("Unable to Restore Standard Oculus Utilities Plugin", "AndroidUniversal/OVRPlugin.aar already enabled", "Ok"); + } + return; + } + + if (enabledUtilsPluginPkg.IsAndroidOpenXREnabled()) + { + string androidOpenXRPluginPath = enabledUtilsPluginPkg.Plugins[PluginPlatform.AndroidOpenXR]; + string androidOpenXRPluginBasePath = GetCurrentProjectPath(); + string androidOpenXRPluginRelPath = androidOpenXRPluginPath.Substring(androidOpenXRPluginBasePath.Length + 1); + PluginImporter pi = PluginImporter.GetAtPath(androidOpenXRPluginRelPath) as PluginImporter; + if (pi != null) + { + pi.SetCompatibleWithPlatform(BuildTarget.Android, false); + AssetDatabase.ImportAsset(androidOpenXRPluginRelPath, ImportAssetOptions.ForceUpdate); + } + } + + { + string androidUniveralPluginPath = enabledUtilsPluginPkg.Plugins[PluginPlatform.AndroidUniversal]; + string androidUniveralPluginBasePath = GetCurrentProjectPath(); + string androidUniveralPluginRelPath = androidUniveralPluginPath.Substring(androidUniveralPluginBasePath.Length + 1); + PluginImporter pi = PluginImporter.GetAtPath(androidUniveralPluginRelPath) as PluginImporter; + if (pi != null) + { + pi.SetCompatibleWithPlatform(BuildTarget.Android, true); + AssetDatabase.ImportAsset(androidUniveralPluginRelPath, ImportAssetOptions.ForceUpdate); + } + } + + AssetDatabase.Refresh(); + AssetDatabase.SaveAssets(); + + if (!unityRunningInBatchmode) + { + EditorUtility.DisplayDialog("Restore Standard OVRPlugin", "Standard version of Oculus Utilities Plugin has been enabled on Android", "Ok"); + } + } + + // Test if the OVRPlugin/OpenXR plugin is currently activated, used by other editor utilities + public static bool IsOVRPluginOpenXRActivated() + { + if (!unityVersionSupportsAndroidUniversal) // sanity check + { + return false; + } + + List allUtilsPluginPkgs = GetAllUtilitiesPluginPackages(); + + PluginPackage enabledUtilsPluginPkg = null; + + foreach (PluginPackage pluginPkg in allUtilsPluginPkgs) + { + if (pluginPkg.IsEnabled()) + { + enabledUtilsPluginPkg = pluginPkg; + break; + } + } + + if (enabledUtilsPluginPkg == null) + { + return false; + } + + return enabledUtilsPluginPkg.IsAndroidOpenXREnabled(); + } + // Separate entry point needed since "-executeMethod" does not support parameters or default parameter values private static void BatchmodePluginUpdate() { @@ -572,20 +791,11 @@ private static void AttemptPluginUpdate(bool triggeredByAutoUpdate) { if (!triggeredByAutoUpdate && !unityRunningInBatchmode) { -#if UNITY_2018_3_OR_NEWER EditorUtility.DisplayDialog("Update Oculus Utilities Plugin", "OVRPlugin is already up to date.\n\nCurrent version: " + GetVersionDescription(currentPluginPkg.Version), "Ok", ""); -#else - EditorUtility.DisplayDialog("Update Oculus Utilities Plugin", - "OVRPlugin is already up to date.\n\nCurrent version: " - + GetVersionDescription(currentPluginPkg.Version) + "\nBundled version: " - + GetVersionDescription(bundledPluginPkg.Version), - "Ok", - ""); -#endif } return; // No update necessary. @@ -650,9 +860,6 @@ private static void AttemptPluginUpdate(bool triggeredByAutoUpdate) "OVRPlugin has been updated to " + GetVersionDescription(targetPluginPkg.Version) + ".\n\nPlease restart the Unity Editor to complete the update process." -#if !UNITY_2017_1_OR_NEWER - + " You may need to manually relaunch Unity if you are using Unity 5.6 and higher." -#endif , "Restart", "Not Now")) @@ -670,12 +877,14 @@ private static bool UnitySupportsEnabledAndroidPlugin() { if (pluginPkg.IsEnabled()) { - if (pluginPkg.IsAndroidUniversalEnabled() && !unityVersionSupportsAndroidUniversal) + if ((pluginPkg.IsAndroidUniversalEnabled() || pluginPkg.IsAndroidOpenXREnabled()) && !unityVersionSupportsAndroidUniversal) { // Android Universal should only be enabled on supported Unity versions since it can prevent app launch. return false; } - else if (!pluginPkg.IsAndroidUniversalEnabled() && pluginPkg.IsAndroidUniversalPresent() && unityVersionSupportsAndroidUniversal) + else if (!pluginPkg.IsAndroidUniversalEnabled() && pluginPkg.IsAndroidUniversalPresent() && + !pluginPkg.IsAndroidOpenXREnabled() && pluginPkg.IsAndroidOpenXRPresent() && + unityVersionSupportsAndroidUniversal) { // Android Universal is present and should be enabled on supported Unity versions since ARM64 config will fail otherwise. return false; diff --git a/Assets/Oculus/VR/Editor/OVRProjectConfig.cs b/Assets/Oculus/VR/Editor/OVRProjectConfig.cs index 1a170b2a..b5094eb6 100644 --- a/Assets/Oculus/VR/Editor/OVRProjectConfig.cs +++ b/Assets/Oculus/VR/Editor/OVRProjectConfig.cs @@ -27,12 +27,16 @@ limitations under the License. using System; [System.Serializable] +#if UNITY_EDITOR +[UnityEditor.InitializeOnLoad] +#endif public class OVRProjectConfig : ScriptableObject { public enum DeviceType { - GearVrOrGo = 0, - Quest = 1 + //GearVrOrGo = 0, // DEPRECATED + Quest = 1, + Quest2 = 2 } public enum HandTrackingSupport @@ -42,26 +46,35 @@ public enum HandTrackingSupport HandsOnly = 2 } - public enum ColorGamut - { - Default = 0, - Rec709 = 1, - DciP3 = 2, - Adobe = 3, - Rec2020 = 4 - } public List targetDeviceTypes; public HandTrackingSupport handTrackingSupport; - public ColorGamut colorGamut; public bool disableBackups; public bool enableNSCConfig; + public string securityXmlPath; + public bool skipUnneededShaders; public bool focusAware; + public bool requiresSystemKeyboard; //public const string OculusProjectConfigAssetPath = "Assets/Oculus/OculusProjectConfig.asset"; + static OVRProjectConfig() + { + // BuildPipeline.isBuildingPlayer cannot be called in a static constructor + // Run Update once to call GetProjectConfig then remove delegate + EditorApplication.update += Update; + } + + static void Update() + { + // Initialize the asset if it doesn't exist + GetProjectConfig(); + // Stop running Update + EditorApplication.update -= Update; + } + private static string GetOculusProjectConfigAssetPath() { var so = ScriptableObject.CreateInstance(typeof(OVRPluginUpdaterStub)); @@ -90,17 +103,34 @@ public static OVRProjectConfig GetProjectConfig() { Debug.LogWarningFormat("Unable to load ProjectConfig from {0}, error {1}", oculusProjectConfigAssetPath, e.Message); } - if (projectConfig == null) + // Initialize the asset only if a build is not currently running. + if (projectConfig == null && !BuildPipeline.isBuildingPlayer) { projectConfig = ScriptableObject.CreateInstance(); projectConfig.targetDeviceTypes = new List(); projectConfig.targetDeviceTypes.Add(DeviceType.Quest); + projectConfig.targetDeviceTypes.Add(DeviceType.Quest2); projectConfig.handTrackingSupport = HandTrackingSupport.ControllersOnly; projectConfig.disableBackups = true; projectConfig.enableNSCConfig = true; - projectConfig.focusAware = false; + projectConfig.skipUnneededShaders = false; + projectConfig.focusAware = true; + projectConfig.requiresSystemKeyboard = false; AssetDatabase.CreateAsset(projectConfig, oculusProjectConfigAssetPath); } + // Force migration to Quest device if still on legacy GearVR/Go device type + if (projectConfig.targetDeviceTypes.Contains((DeviceType)0)) // deprecated GearVR/Go device + { + projectConfig.targetDeviceTypes.Remove((DeviceType)0); // deprecated GearVR/Go device + if (!projectConfig.targetDeviceTypes.Contains(DeviceType.Quest)) + { + projectConfig.targetDeviceTypes.Add(DeviceType.Quest); + } + if (!projectConfig.targetDeviceTypes.Contains(DeviceType.Quest2)) + { + projectConfig.targetDeviceTypes.Add(DeviceType.Quest2); + } + } return projectConfig; } @@ -113,16 +143,4 @@ public static void CommitProjectConfig(OVRProjectConfig projectConfig) } EditorUtility.SetDirty(projectConfig); } - - public static string ColorGamutToString(ColorGamut colorGamut) - { - switch(colorGamut) - { - case ColorGamut.Rec709: return "Rec. 709"; - case ColorGamut.DciP3: return "DCI-P3"; - case ColorGamut.Adobe: return "Adobe"; - case ColorGamut.Rec2020: return "Rec. 2020"; - default: return ""; - } - } } diff --git a/Assets/Oculus/VR/Editor/OVRShaderBuildProcessor.cs b/Assets/Oculus/VR/Editor/OVRShaderBuildProcessor.cs index 48dbce6f..648cf35d 100644 --- a/Assets/Oculus/VR/Editor/OVRShaderBuildProcessor.cs +++ b/Assets/Oculus/VR/Editor/OVRShaderBuildProcessor.cs @@ -1,5 +1,3 @@ -#if UNITY_2018_2_OR_NEWER -using Assets.Oculus.VR.Editor; using System.Collections.Generic; using UnityEditor; using UnityEditor.Build; @@ -14,12 +12,13 @@ public class OVRShaderBuildProcessor : IPreprocessShaders public void OnProcessShader( Shader shader, ShaderSnippetData snippet, IList shaderCompilerData) { - if (!OVRPlatformToolSettings.TryInitialize()) + var projectConfig = OVRProjectConfig.GetProjectConfig(); + if (projectConfig == null) { return; } - if (!OVRPlatformToolSettings.SkipUnneededShaders) + if (!projectConfig.skipUnneededShaders) { return; } @@ -29,18 +28,14 @@ public void OnProcessShader( return; } - // Unity only uses shader Tier2 on Quest and Go (regardless of graphics API) - var strippedGraphicsTiers = new HashSet(); - switch (OVRPlatformToolSettings.TargetPlatform) + + // Unity only uses shader Tier2 on Quest and Go (regardless of graphics API) + if (projectConfig.targetDeviceTypes.Contains(OVRProjectConfig.DeviceType.Quest) || + projectConfig.targetDeviceTypes.Contains(OVRProjectConfig.DeviceType.Quest2)) { - case OVRPlatformTool.TargetPlatform.OculusGoGearVR: - case OVRPlatformTool.TargetPlatform.Quest: - strippedGraphicsTiers.Add(GraphicsTier.Tier1); - strippedGraphicsTiers.Add(GraphicsTier.Tier3); - break; - default: - break; + strippedGraphicsTiers.Add(GraphicsTier.Tier1); + strippedGraphicsTiers.Add(GraphicsTier.Tier3); } if (strippedGraphicsTiers.Count == 0) @@ -57,4 +52,3 @@ public void OnProcessShader( } } } -#endif diff --git a/Assets/Oculus/VR/Editor/OVRSystemProfilerPanel.cs b/Assets/Oculus/VR/Editor/OVRSystemProfilerPanel.cs index 81a86071..bbe31d16 100644 --- a/Assets/Oculus/VR/Editor/OVRSystemProfilerPanel.cs +++ b/Assets/Oculus/VR/Editor/OVRSystemProfilerPanel.cs @@ -663,21 +663,16 @@ void ConnectPerfMetricsTcpServer() tcpClient.Connect(remoteListeningPort); -#if UNITY_2017_1_OR_NEWER EditorApplication.playModeStateChanged += OnApplicationPlayModeStateChanged; -#endif } void DisconnectPerfMetricsTcpServer() { -#if UNITY_2017_1_OR_NEWER EditorApplication.playModeStateChanged -= OnApplicationPlayModeStateChanged; -#endif tcpClient.Disconnect(); } -#if UNITY_2017_1_OR_NEWER void OnApplicationPlayModeStateChanged(PlayModeStateChange change) { Debug.LogFormat("[OVRSystemPerfMetricsWindow] OnApplicationPlayModeStateChanged {0}", change.ToString()); @@ -686,6 +681,5 @@ void OnApplicationPlayModeStateChanged(PlayModeStateChange change) tcpClient.Disconnect(); } } -#endif } diff --git a/Assets/Oculus/VR/Editor/Oculus.VR.Editor.asmdef b/Assets/Oculus/VR/Editor/Oculus.VR.Editor.asmdef index 7e75121c..4a9dc981 100644 --- a/Assets/Oculus/VR/Editor/Oculus.VR.Editor.asmdef +++ b/Assets/Oculus/VR/Editor/Oculus.VR.Editor.asmdef @@ -19,6 +19,11 @@ "name": "com.unity.xr.oculus", "expression": "", "define": "USING_XR_SDK_OCULUS" + }, + { + "name": "com.unity.xr.oculus", + "expression": "1.4.0", + "define": "USING_COMPATIBLE_OCULUS_XR_PLUGIN_VERSION" } ] } \ No newline at end of file diff --git a/Assets/Oculus/VR/LICENSE.txt b/Assets/Oculus/VR/LICENSE.txt index 9116f356..56e0eec5 100644 --- a/Assets/Oculus/VR/LICENSE.txt +++ b/Assets/Oculus/VR/LICENSE.txt @@ -1,576 +1,2 @@ -OCULUS UTILITIES SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT - -1. INTRODUCTION This Oculus Utilities Software Development Kit License Agreement -(“Licenseâ€) forms a legally binding contract between you and Facebook -Technologies, LLC formerly known as Oculus VR, LLC (“Oculusâ€) and governs your -use of the Oculus Utilities Software Development Kit (“Utilities SDKâ€). In order -to obtain and use the Utilities SDK, you must first agree to the terms and -conditions of this License. If you agree to the terms and conditions of this -License, you may use the Utilities SDK. If you do not agree to the terms and -conditions of this License, then you may not use the Utilities SDK. PLEASE READ -THIS LICENSE CAREFULLY TO ENSURE THAT YOU UNDERSTAND EACH PROVISION. THIS -LICENSE CONTAINS A MANDATORY INDIVIDUAL ARBITRATION AND CLASS ACTION/JURY TRIAL -WAIVER PROVISION THAT REQUIRES THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO -RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS. BY CLICKING ACCEPT -OR USING, DOWNLOADING OR COPYING THE UTILITIES SDK, YOU SIGNIFY THAT YOU HAVE -READ, UNDERSTOOD AND HEREBY AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF -THIS LICENSE. - -2. ELIGIBILITY By entering into this License with Oculus, you represent and -warrant that you are not a person with whom Oculus is prohibited from -transacting business under applicable law, nor are you a person who Oculus has -previously denied access to or use of the Utilities SDK. If you will use the -Utilities SDK on behalf of your employer or other company, organization, -educational institution or any governmental agency, instrumentality or -department (your “Entityâ€), you represent and warrant that you have full legal -authority to bind your Entity to all of the terms and conditions of this -License. If you do not have the requisite authority to so bind your Entity, you -may not accept this License or use the Utilities SDK on behalf of your Entity. - -3. UTILITIES SDK LICENSE - -3.1. License. Subject to the terms and conditions of this License, Oculus hereby -grants to you a limited, worldwide, freely revocable, non-exclusive, -non-transferable, sublicensable, fully paid-up royalty-free license under -Oculus’ copyright rights to: - -(a) store, use, reproduce, and redistribute (subject to the restrictions below) -the software contained in the Utilities SDK (including, but not limited to -OVRPlugin binary files, models, and Utilities Code (as defined below)) solely to -design, develop, test, and run your engines, tools, applications, content, games -and demos (collectively and generally referred to as “Developer Contentâ€) to be -used in connection with any and all compatible software or hardware (including, -without limitation and by way of example, with commercial headsets, mobile -tablets or phones) made available by Oculus or any third parties; - -(b) use, reproduce, modify, distribute, and create derivative works of the -following named folders in the Utilities SDK: Prefabs, Resources, Scenes, -Scripts, and Shader (collectively, “Utilities Codeâ€) to internally design, -develop and test Developer Content, and (ii) incorporate such Utilities Code and -any such modifications, in whole or in part, into your Developer Content -developed through your use of the Utilities SDK; and - -(c) use any documentation made available by Oculus to you in connection with the -Utilities SDK solely in connection with your exercise of the licenses and rights -granted in this License. - -3.2. License Restrictions. You may not use the Utilities SDK for any purpose not -expressly permitted by this License. Without in any way limiting the foregoing -restriction, except as expressly permitted in this License, you agree not to (or -enable any third party to): - -(a) modify or create any derivative works of the Utilities SDK other than the -Utilities Code; - -(b) work around any technical measures in the Utilities SDK, or use the -Utilities SDK (alone or in conjunction with any device, program or service) in -an attempt to circumvent any technical measures employed by or for Oculus or any -third party to control access to, or any rights in, any content, file or other -work; - -(c) decompile, reverse engineer, disassemble, decipher, translate or otherwise -attempt to derive or access any source code of the Utilities SDK or any part of -the Utilities SDK (other than any component of the Utilities SDK that is made -available by Oculus in source code form), or any other software or firmware -provided to you by Oculus (except as and only to the extent the foregoing -restriction is prohibited by applicable law); - -(d) publish, rent, lease, lend, sell, sublicense, distribute, transfer, disclose -or otherwise provide the Utilities SDK; - -(e) remove, obscure or alter any proprietary notices on or in the Utilities SDK -or any Oculus license terms, policies or terms of service or any links to or -notices thereto; - -(f) use the Utilities SDK in connection with the development or transmission of -any malware, viruses, hacks, bots, Trojan horses or other harmful or malicious -code; - -(g) use the Utilities SDK (i) to infringe or violate any rights of Oculus, any -of its affiliates or any third party or (ii) in any way that does not comply -with all applicable laws (including, without limitation, all applicable export, -import, privacy and data security laws); - -(h) use the Utilities SDK in any way that interferes with, disrupts, damages or -accesses in any manner not expressly authorized by Oculus, or accesses for any -purpose not expressly authorized by Oculus, any services, networks, other -properties, data or information of Oculus or any of its affiliates or any third -party; - -(i) use the Utilities SDK in any manner other than to enhance your Developer -Content or the functionality thereof in accordance with Section 3.1; - -(j) develop any Developer Content or other application or software that could -(i) disable, hack or otherwise interfere with any authentication, content -protection, digital signing, digital rights management, security or verification -mechanisms or (ii) disable, override or otherwise interfere with any device, -system or software, including any device, system or software intended to notify -an end user that such end user’s personal information is being collected, -transmitted, stored, maintained, processed or used; - -(k) use the Utilities SDK to (i) defame, abuse, harass, stalk, bully or threaten -any third party or (ii) promote or facilitate any prohibited or illegal -activities; - -(l) enable any functionality in your Developer Content that would generate -excessive traffic over any network or servers of Oculus or any of its affiliates -or any third party that would negatively impact the experience of any user of -any product or service of Oculus or any of its affiliates (or of any third party -made available through any network or service of Oculus or any of its -affiliates), or otherwise interfere with, limit or restrict the operation of any -servers or networks of Oculus or any of its affiliates; - -(m) use or encourage the use of the Utilities SDK for any mission critical, -life-saving or ultra-hazardous activities; or - -(n) use or redistribute the Utilities SDK or any portion or component thereof in -any manner that would cause the Utilities SDK or any portion or component -thereof to become subject to the terms of any open source license. - -3.3. Redistribution and Sublicense Restriction. Subject to the terms and -conditions of this License, your license to redistribute and sublicense the -Utilities SDK (or any portion thereof) is also expressly made subject to the -following conditions: - -(a) You may sublicense and redistribute the Utilities SDK to your end users in -whole for no charge or as part of a for-charge piece of Developer Content; -provided that you may only license, sublicense or redistribute the Utilities -SDK: (a) in its entirety; (b) solely in compiled binary executable form; and (c) -solely as incorporated into your Developer Content; - -(b) You must include with all such redistributed or sublicensed Utilities SDK -code the following copyright notice: “Copyright © Facebook Technologies, LLC and -its affiliates. All rights reserved.â€; - -(c) You must give any other recipients of the Utilities SDK a copy of this -License as such recipients, licensees or sublicensees may only use the Utilities -SDK subject to the terms of this License and such recipient's, licensee's or -sublicensee's agreement to and acceptance of this License with Oculus; - -(d) Each sublicense you grant to your end users must be pursuant to a valid and -enforceable license agreement that (i) includes an acknowledgement by such end -user that the Utilities SDK is the proprietary property of Oculus or its -licensors or contributors, (ii) ensures that neither Oculus nor any of its -licensors or contributors has any obligations to such end user with respect to -any the Utilities SDK and (iii) imposes obligations on such end user no less -restrictive than your obligations under this License with respect to the use and -protection of the Utilities SDK; and - -(e) the Utilities SDK includes a "LICENSE" text file (the "License Notice"), and -any Utilities SDK distribution that you distribute must include a copy of this -License with the License Notice. Notwithstanding the foregoing in this Section -3.3, you may grant to end users of your Developer Content a non-exclusive -runtime sublicense to use the Utilities Code and any modifications of any -Utilities Code incorporated into your Developer Content pursuant to and in -accordance with this License: (a) solely in the form in which the Utilities Code -is made available to you by Oculus; and (b) solely as incorporated into your -Developer Content pursuant to and in accordance with this License (“Runtime -Sublicenseâ€). You agree to include a Runtime Sublicense with any of your -Developer Content that incorporates any Utilities Code (or any modifications of -any Utilities Code) that you provide, distribute or make available to any end -user of such Developer Content. Each Runtime Sublicense you grant to an end user -of your Developer Content must be granted pursuant to a valid and enforceable -license agreement that: (i) includes an acknowledgement by such end user that -the Utilities Code (and any modifications of any Utilities Code (other than -modifications of the Utilities Code developed by you during the term of this -License in accordance with Section 3.1 (“Developer Modified Utilities Codeâ€)) is -the proprietary property of Oculus or its licensors or contributors, (ii) -ensures that neither Oculus nor any of its licensors or contributors has any -obligations to such end user with respect to any Utilities Code (or any -modifications of any Utilities Code) and (iii) imposes obligations on such end -user no less restrictive than your obligations under this License with respect -to the use and protection of the Utilities Code. If you incorporate any of the -Utilities Code or Developer Modified Utilities Code into any of your Developer -Content, you must include in or on all copies of such Developer Content a copy -of this License and the following copyright notice (along with any other notices -or license files that appear in or on the Utilities SDK): “Certain portions of -the code are owned by Facebook Technologies, LLC. Copyright © Facebook -Technologies, LLC. All rights reservedâ€. - -3.4. Developer Content Rules, Restrictions and License. - -(a) You agree that as a condition of this License you will design and distribute -your Developer Content to ensure that your Developer Content and any software -required to use your Developer Content does not, and you will not, alter or -interfere with the normal operation, behavior or functionality of the compatible -hardware or software of Oculus or any third party. Without limiting the -foregoing, in the case of Oculus hardware or software, you will ensure that your -Developer Content and any software required to use your Developer Content does -not alter or interfere with: (i) the behavior of the "Oculus button" and "XBox -button" implemented by the Oculus system software; (ii) any on-screen messages -or information; (iii) the behavior of the proximity sensor in the Oculus -hardware implemented by the Oculus system software; (iv) any Oculus hardware or -software security features; (v) end user's settings; or (vi) the Oculus Flash -Screen Warnings. You also agree not to (i) commit any act, or enable, assist or -instruct any third party to commit any act, intended to interfere with the -normal operation of any compatible hardware or software of Oculus or any third -party or (ii) provide any software to any users or developers that would induce -breach of any Oculus’s or other software or hardware providers’ agreements or -that contains any malware, viruses, hacks, bots, Trojan horses or other harmful -or malicious code. You also agree that your Developer Content will not violate -the Oculus Content Guidelines (available at -https://developer.oculus.com/distribute/latest/concepts/publish-content-guidelines/). - -(b) Oculus may suspend operation of or remove any Developer Content that does -not comply with the restrictions in this License. - -(c) You agree that Oculus may grant its employees and internal contractors the -right to use, perform and display the Developer Content you provide to Oculus -for user research, testing, evaluation and approval purposes, which shall be on -a royalty-free basis. - -4. OCULUS PLATFORM SERVICES - -4.1. Definitions. For the purposes of this Section 4: - -(a) "Application Services" means services provided by Oculus associated with the -Platform, including but not limited to in-app purchasing, multiplayer -matchmaking, friends, leader boards, achievements, rooms, voice over IP and -cloud saves, which list may be changed from time to time in Oculus' sole -discretion. - -(b) "Oculus Platform Framework" means the suite of Oculus platform services, -including but not limited to the Oculus file distribution and update system -(enabling distribution and updates of Developer Content by Oculus, including -through generated activation Keys), entitlement system, and account -authentication, which list may be changed from time to time in Oculus' sole -discretion. - -(c) "Platform" means the Oculus virtual reality platform, including but not -limited to the user experience, user interface, store, and social features, -usable on Oculus approved hardware or any third-party device or operating -system, including but not limited to iOS, Android, Windows, OS X, Linux, and -Windows Mobile. - -(d) "Platform Services" means the Oculus Platform Framework and the Application -Services. - -4.2. Oculus Platform Services. Oculus makes certain Platform Services available -to you to include and enable in your Developer Content. Developer Content that -enables or includes any Platform Service must implement the Oculus Platform -Framework with that Developer Content. Once your Developer Content has been -authorized for use of the Platform Services, you are not required to update your -Developer Content to include new Platform Services Oculus may make available as -part of the Oculus Platform Framework. - -4.3. Key Provision and Redemption. If you request that Oculus generate -activation keys for your Developer Content on the Platform ("Keys") and Oculus -agrees, you hereby grant Oculus (i) the right to generate Keys for you and (ii) -a license to make available, reproduce, distribute, perform, and display the -Developer Content to end users who have submitted a Key to Oculus. Oculus agrees -to authenticate and make Developer Content available to any end user supplying a -valid Key (unless the Developer Content has been removed or withdrawn). - -4.4. Limited Authorization. You hereby grant Oculus the limited authorization -reasonably necessary for Oculus's exercise of its rights and performance of its -obligations under this Section 4. You agree that Oculus may use its contractors -and affiliates for the purposes of exercising its rights and licenses set forth -in this Section 4. - -4.5. Platform Services Requirements. You will not make any use of any API, -software, code or other item or information supplied by Oculus in connection -with the Platform Services other than to enhance the functionality of your -Developer Content. You may not sublicense any software, firmware or other item -or information supplied by Oculus in connection with the Platform Service for -use by a third party, unless expressly authorized by Oculus to do so. - -5. INTELLECTUAL PROPERTY RIGHTS - -5.1. Ownership. - -(a) Oculus. As between you and Oculus, Oculus retains all rights (including all -intellectual property rights), title and interest (subject to the license -granted to you in Section 3.1 during the term of this License) in and to the -Utilities SDK and any derivatives or modifications of the Utilities SDK, -including all source code and object code of any of the foregoing (other than -any Developer Modified Utilities Code). Oculus reserves all rights not expressly -granted to you under this License. - -(b) Developer. For the sake of clarification, when you use the Utilities SDK in -or with Developer Content, you retain all rights to: (i) your Developer Content, -and (ii) Developer Modified Utilities Code; provided however, Oculus retains all -rights to the Utilities SDK (including without limitation, any and all software -contained therein), including those that may be incorporated into your Developer -Content. Except as otherwise provided herein, you have no obligations to share -or license Developer Content (including your source and object code) or any of -your Developer Modified Utilities Code to Oculus or any third parties; - -5.2. Additional Content. Oculus may include additional content in the Utilities -SDK for demonstration, references or other purposes. Such content will be -clearly marked in the Utilities SDK and is subject to any terms and conditions -included with such content. - -5.3. Publicity; Use of Trademarks. This License does not grant you or any -third-party permission to use any of the trade names, trademarks, service marks, -logos or product names of Oculus, except as required for reasonable and -customary use in describing the origin of the Utilities SDK or reproducing the -copyright or other notice required pursuant to Section 3.3. Neither the name of -Oculus nor the name of any contributor, licensor, employee or contractor of -Oculus may be used to endorse or promote any Developer Content or any other -products, content or materials developed using the Utilities SDK without -specific prior written permission of Oculus. - -5.4. Feedback. You may, but are not obligated to, provide Oculus with comments -or other feedback, suggestions or recommended improvements regarding the -Utilities SDK or any other Oculus products or services (collectively, -“Feedbackâ€). You hereby grant Oculus a worldwide, non-exclusive, perpetual, -irrevocable, royalty-free, fully paid-up, transferable, sublicensable (through -multiple tiers of sublicenses) license to use, disclose, reproduce, modify, -create derivatives of, license, distribute, provide and exploit any Feedback for -any purpose whatsoever, without any obligation, limitation or restriction of any -kind. - -6. THIRD PARTY SOFTWARE OR MATERIALS Your use of any third-party software -(including any open source software) or materials included in the Utilities SDK -may be subject to other terms and conditions typically found in separate -third-party license agreements or "READ ME" files included with such third-party -software or materials. To the extent any of such other terms and conditions -conflict with any of the terms and conditions of this License, such other terms -and conditions applicable to such third-party software or materials will control -solely with respect to such third-party software or materials (but to no other -portion or component of the Utilities SDK). - -7. INDEMNIFICATION You agree to defend, indemnify and hold harmless Oculus and -its subsidiaries, agents, contributors, licensors, managers, and other -affiliated companies, and their employees, contractors, agents, officers and -directors, from and against any and all claims, damages, obligations, losses, -liabilities, costs or debt, and expenses (including, without limitation, -reasonable attorneys’ fees and expenses) arising from or relating to (a) your -exercise of any of the licenses or rights granted to you under this License, (b) -your use and access of the Utilities SDK and/or the Platform Services, (c) any -Developer Content, (d) any negligence or misconduct by you or any of your -employees, agents, vendors or contractors, (e) your violation of any third-party -right, including without limitation any right of privacy or intellectual -property rights, (f) your violation of any applicable law, rule or regulation, -or (g) your breach of any provision of this License. - -8. NO WARRANTIES THE UTILITIES SDK, ANY PORTION OR COMPONENT OF THE UTILITIES -SDK (INCLUDING, BY WAY OF EXAMPLE AND WITHOUT LIMITATION, THE OVRPLUGIN BINARY -FILES, MODELS, AND UTILITIES CODE), THE PLATFORM SERVICES AND ALL DOCUMENTATION -OR OTHER INFORMATION OR MATERIALS PROVIDED OR MADE AVAILABLE BY OR FOR OCULUS -ARE PROVIDED "AS IS" AND WITHOUT ANY WARRANTY OF ANY KIND, WHETHER EXPRESS, -IMPLIED, STATUTORY OR OTHERWISE. ALL EXPRESS OR IMPLIED WARRANTIES ARE HEREBY -DISCLAIMED, INCLUDING, WITHOUT LIMITATION: (A) ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, QUIET -ENJOYMENT, QUIET POSSESSION OR TITLE; AND (B) ANY WARRANTIES THAT THE UTILITIES -SDK, ANY PORTION OR COMPONENT OF THE UTILITIES SDK, THE PLATFORM SERVICES OR ANY -DOCUMENTATION OR OTHER INFORMATION OR MATERIALS PROVIDED OR MADE AVAILABLE BY OR -FOR OCULUS (I) WILL MEET ANY OF YOUR REQUIREMENTS (INCLUDING, WITHOUT -LIMITATION, YOUR REQUIREMENTS RELATING TO ANY DESIGN OR PERFORMANCE), (II) WILL -BE UNINTERRUPTED OR ERROR-FREE, (III) ARE FREE OF ANY MALWARE, VIRUSES, HACKS, -BOTS, TROJAN HORSES AND OTHER HARMFUL OR MALICIOUS CODE; AND (D) ARE FUNCTIONAL -ON ANY HARDWARE OR IN ANY ENVIRONMENT. FEDERAL LAW, SOME STATES, PROVINCES AND -OTHER JURISDICTIONS DO NOT ALLOW THE EXCLUSION AND LIMITATIONS OF CERTAIN -IMPLIED WARRANTIES, SO THE ABOVE EXCLUSIONS MAY NOT APPLY TO YOU. THIS LICENSE -GIVES YOU SPECIFIC LEGAL RIGHTS, AND YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY -FROM STATE TO STATE. THE DISCLAIMERS AND EXCLUSIONS UNDER THIS LICENSE WILL NOT -APPLY TO THE EXTENT PROHIBITED BY APPLICABLE LAW. - -9. LIMITATION OF LIABILITY TO THE FULLEST EXTEST PERMITTED UNDER APPLICABLE LAW, -IN NO EVENT SHALL OCULUS OR ANY OF ITS LICENSORS OR CONTRIBUTORS BE LIABLE TO -YOU OR ANY END USER OR OTHER THIRD PARTY WITH RESPECT TO ANY SUBJECT MATTER OF -THIS LICENSE (INCLUDING, WITHOUT LIMITATION, WITH RESPECT TO ANY OF THE LICENSES -OR OTHER RIGHTS GRANTED BY OCULUS UNDER THIS LICENSE) OR ARISING IN ANY WAY OUT -OF THE UTILITIES SDK OR ANY PORTION OR COMPONENT OF THE UTILITIES SDK -(INCLUDING, BY WAY OF EXAMPLE AND WITHOUT LIMITATION, THE OVRPLUGIN BINARY -FILES, MODELS, AND UTILITIES CODE), THE PLATFORM SERVICES, ALL DOCUMENTATION OR -OTHER INFORMATION OR MATERIALS PROVIDED OR MADE AVAILABLE BY OR FOR OCULUS OR -ANY OF YOUR USE OF THE FOREGOING FOR ANY INDIRECT, INCIDENTAL, SPECIAL, -CONSEQUENTIAL, EXEMPLARY OR PUNITIVE DAMAGES (INCLUDING, WITHOUT LIMITATION: -DAMAGE TO BUSINESS REPTUATION; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -OF USE, PROFITS, BUSINESS OR GOODWILL; LOSS OR CORRUPTION OF DATA; OR BUSINESS -INTERRUPTION), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY (LEGAL, EQUITABLE -OR OTHERWISE), WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (WHETHER -NEGLIGENCE OR OTHERWISE), WHETHER FORESEEABLE OR NOT AND REGARDLESS OF WHETHER -YOU HAVE BEEN OR OCULUS HAS BEEN ADVISED OF THE POSSIBILITY OF ANY SUCH DAMAGE. -YOU ACKNOWLEDGE AND AGREE THAT YOUR REMEDIES UNDER THIS LICENSE ARE LIMITED -SOLELY TO THE RIGHT TO COLLECT MONEY DAMAGES, IF ANY, AND YOU HEREBY WAIVE YOUR -RIGHT TO SEEK INJUNCTIVE OR OTHER EQUITABLE RELIEF. THE CUMULATIVE, AGGREGATE -LIABILITY OF OCULUS AND ITS AFFILIATES, LICENSORS AND CONTRIBUTORS UNDER THIS -LICENSE WILL BE LIMITED TO ONE HUNDRED US DOLLARS (US $100). THE EXISTENCE OF -MULTIPLE CLAIMS OR SUITS UNDER OR RELATED TO THIS LICENSE WILL NOT ENLARGE OR -EXTEND THE FOREGOING MONETARY CAP ON DAMAGES. SOME STATES DO NOT ALLOW THE -EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE -LIMITATIONS OR EXCLUSIONS MAY NOT APPLY TO YOU. THIS LICENSE GIVES YOU SPECIFIC -LEGAL RIGHTS, AND YOU MAY ALSO HAVE OTHER RIGHTS WHICH VARY FROM STATE TO STATE. -THE DISCLAIMERS, EXCLUSIONS, AND LIMITATIONS OF LIABILITY UNDER THIS LICENSE -WILL NOT APPLY TO THE EXTENT PROHIBITED BY APPLICABLE LAW. - -10. LICENSE TERM - -10.1. Term and Termination. The term of this License will commence on the date -on which you click accept or use, download or copy the Utilities SDK or any -portion or component thereof and will continue until terminated as set forth in -this License. This License and all your rights under this License shall -automatically and immediately terminate in the event you breach any provision of -this License (including, without limitation, your failure to provide required -notices as set forth in Section 3.3 or your failure to observe any of the -restrictions set forth in Sections 3.2, 3.3 or 3.4) or for any of the following -reasons: - -(a) Any of the following infringes or violates any intellectual property rights -of any third party or violates any applicable law: (i) your exercise of any of -the licenses or rights granted under this License; and/or (ii) your Developer -Content or any use or exploitation of any such Developer Content; - -(b) Your Developer Content violates applicable law; - -(c) Any health or safety issues associated with your Developer Content; - -(d) Failure to comply with or use properly the Oculus Flash Screen Warnings; - -(e) To the extent applicable, any failure to comply with or properly use the -Oculus help and safety warnings; - -(f) Failure to provide required notices as set forth above; and - -(g) Failure to observe the restrictions in Section 3.2. - -10.2. Effect of Termination; Survival. If this License is terminated for any -reason, (a) all licenses and rights granted under this License will immediately -terminate; (b) you must immediately cease using the Utilities SDK, all portions -and components of the Utilities SDK, all documentation made available by Oculus -to you in connection with the Utilities SDK; and (c) using, distributing, -providing, making available and exploiting any Developer Content that -incorporates any Utilities Code, any modifications of any Utilities Code (other -than any Developer Modified Utilities Code), or any other portion or component -of the Utilities SDK. Notwithstanding any termination of this License, the -following provisions shall survive indefinitely: Sections 1, 2, 3.2, 3.3, 3.4, -4.1, 4.4, 4.5, 5, 6, 7, 8, 9, 10.2, 11, and 12. - -11. GOVERNING LAW; ARBITRATION; CLASS ACTION/JURY TRIAL WAIVER - -11.1. Governing Law; Alternative Dispute Resolution. This License shall be -governed by the laws of the State of California, without giving effect to -conflict of laws provisions or principles thereof. The parties agree that, -except as provided below, all disputes relating to this License shall be -resolved by binding non-appearance-based arbitration before a single neutral -arbitrator in San Mateo, California. The arbitration will be conducted in the -English language by a single arbitrator who is an attorney-at-law with at least -fifteen (15) years’ experience in consumer and technology transactions and who -is also a member of the JAMS roster of arbitrators. If you and Oculus cannot -agree on a mutually acceptable arbitrator within thirty (30) days after the -arbitration is initiated, then JAMS will pick a neutral arbitrator who meets -such qualifications. The arbitration shall be conducted in accordance with the -rules and procedures of JAMS then in effect, and the judgment of the arbitrator -shall be final and capable of entry in any court of competent jurisdiction. The -parties undertake to keep confidential all awards in their arbitration, together -with all materials in the proceedings created for the purpose of the arbitration -and all other documents produced by another party in the proceedings not -otherwise in the public domain, save and to the extent that disclosure may be -required of a party by legal duty, to protect or pursue a legal right or to -enforce or challenge an award in legal proceedings before a court or other -judicial authority. You and Oculus agree the following may be submitted to a -court of competent jurisdiction located within San Francisco, California and -further agree to submit to the personal jurisdiction of the courts located -within San Francisco, California in connection with (a) any entrance of an -arbitrator's judgment or decision, (b) any dispute with respect to the -arbitration process or procedure, (c) Oculus’ exercise of any of its equitable -rights or remedies or (d) any claims regarding the ownership, validity, -enforceability and/or infringement of any intellectual property rights. - -11.2. Class Action/Jury Waiver. WITH RESPECT TO ALL PERSONS AND ENTITIES, -REGARDLESS OF WHETHER THEY HAVE OBTAINED OR USED THE UTILITIES SDK FOR PERSONAL, -COMMERCIAL OR OTHER PURPOSES, ALL CLAIMS MUST BE BROUGHT IN THE PARTIES’ -INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED -CLASS ACTION, COLLECTIVE ACTION, PRIVATE ATTORNEY GENERAL ACTION OR OTHER -REPRESENTATIVE PROCEEDING. THIS WAIVER APPLIES TO CLASS ARBITRATION, AND, UNLESS -WE AGREE OTHERWISE, THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S -CLAIMS. YOU AGREE THAT, BY ENTERING INTO THIS LICENSE, YOU AND OCULUS ARE EACH -WAIVING THE RIGHT TO A TRIAL BY JURY OR TO PARTICIPATE IN A CLASS ACTION, -COLLECTIVE ACTION, PRIVATE ATTORNEY GENERAL ACTION, OR OTHER REPRESENTATIVE -PROCEEDING OF ANY KIND. - -11.3. License Suspension. If you file a suit or initiate a proceeding with or -before a governmental authority in which you challenge Oculus’ ownership of any -intellectual property rights related to the Utilities SDK or the validity or -enforceability of any such intellectual property rights (a “Claimâ€), the -licenses granted to you under this License shall automatically and immediately -(upon the filing of such suit or proceeding) be suspended. Such suspension will -continue until all such Claims asserted by you are dismissed, withdrawn or are -finally settled and no longer pending, as applicable, in which case, such -licenses will be automatically reinstated; provided, however, that such -reinstatement will not release you from any liabilities, or remedies therefor, -that arise during the period of such suspension. - -12. OTHER PROVISIONS - -12.1. Changes to the SDK. Oculus may discontinue or change functionality of the -Utilities SDK at any time, and your continued use of the Utilities SDK or use of -any modified or additional Utilities SDL is conditioned upon your adherence to -the terms of this License, as modified by Oculus from time to time in accordance -with Section 12.2. - -12.2. Updates to License. Oculus may revise and update this License at any time -by posting the amended terms and conditions of this License (“Updated License -Termsâ€) to: https://developer.oculus.com/licenses/. Your continued use of the -Utilities SDK or any portion or component of the Utilities SDK constitutes your -acceptance of the Updated License Terms. If there are Updated License Terms for -any future release of the Utilities SDK, you: (a) agree to comply with all terms -and conditions of such Updated License Terms for such future Utilities SDK -release and (b) acknowledge and agree that such Updated License Terms will apply -to all Developer Content that may be developed using or incorporating such -future Utilities SDK or any portion or component of the Utilities SDK (for -example, without limitation, you cannot avoid complying with the terms and -conditions of such Updated License Terms by developing any Developer Content -using or incorporating any release of the Utilities SDK that precedes such -future Utilities SDK or under any version of this License that precedes such -Updated License Terms). - -12.3. Export Law Compliance. You will comply, and will not cause Oculus to not -comply (by for example, providing Developer Content to Oculus under this -Agreement for which required export clearances have not been obtained), with all -applicable export control laws of the United States and any other applicable -governmental authority, including without limitation, the U.S. Export -Administration Regulations. - -12.4. Confidentiality. You agree that (a) the Utilities SDK and all -documentation or other information or materials provided or made available by or -for Oculus are Oculus’ confidential information and (b) you will not use, -disclose or make available any of such Oculus confidential information to any -third party except as expressly permitted under, and in accordance with, the -terms and conditions of this License. - -12.5. Relationship of the Parties. The parties hereto are independent -contractors. Neither party has any express or implied right or authority to -assume or create any obligations on behalf of the other or to bind such other -party to any contract, agreement or undertaking with any third party. Nothing in -this License shall be construed to create a partnership, joint venture, -employment or agency relationship. - -12.6. Assignment. You may not assign this License or any licenses or rights -granted under this License or delegate any obligations under this License, in -each case, without the advance written consent of Oculus, which may be withheld -in its sole discretion. Any attempted assignment by you without such advance -written consent of Oculus will be null and void. Oculus may assign this License -or any licenses or rights granted under this License or delegate any obligations -under this License in its sole discretion, in each case, without your consent or -any notice to you. This License shall be binding on, inure to the benefit of, -and be enforceable by the parties and their respective heirs, successors and -permitted assigns. - -12.7. Severability. In the event that any provision of this License is held to -be null, void, invalid or unenforceable by a court, other governmental body or -arbitration tribunal, in each case of competent jurisdiction, you and Oculus -agree (a) such provision will be modified to the extent necessary to allow it to -be valid and enforceable to the extent permitted by applicable law, provided -that such modification reflects as nearly as possible the intentions of the -parties when entering into this License and (b) the remaining provisions of this -License shall remain in full force and effect. - -12.8. Headings. The section headings contained in this License are for reference -purposes only and shall not affect in any way the meaning or interpretation of -this License. - -12.9. No Waiver. Failure of either party at any time to exercise or enforce any -legal right or remedy under this License will not be construed as a waiver of -such provisions or in any way affect the validity of this License or any portion -of this License. No waiver of any provision of this License shall be of any -force or effect unless set forth in a writing signed by an authorized -representative of each party. - -12.10. Entire Agreement. This License constitutes the entire agreement between -you and Oculus regarding your use of the Utilities SDK and supersedes and -replaces any prior or contemporaneous agreements, understandings, negotiations -and discussions between you and Oculus regarding your access and use of the -Utilities SDK. +Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at https://developer.oculus.com/licenses/oculussdk/ diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2.meta new file mode 100644 index 00000000..4189e565 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ba23c36ea16dd114fa00c8030cd603b8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation.meta new file mode 100644 index 00000000..8db727a8 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d56c2ddd9ca0880459c0465b45fc84e6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2LeftAnimation.controller b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2LeftAnimation.controller new file mode 100644 index 00000000..910d337f --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2LeftAnimation.controller @@ -0,0 +1,679 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: OculusTouchQuest2LeftAnimation + serializedVersion: 5 + m_AnimatorParameters: + - m_Name: Button 1 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Button 2 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Button 3 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Grip + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Trigger + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Joy X + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Joy Y + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 1107521045517535590} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 1 + m_StateMachine: {fileID: 1107952837483422278} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 2 + m_StateMachine: {fileID: 1107661262722686046} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 3 + m_StateMachine: {fileID: 1107617238690245714} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Grip + m_StateMachine: {fileID: 1107611457393986700} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Trigger + m_StateMachine: {fileID: 1107446127407293338} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Joystick + m_StateMachine: {fileID: 1107573175546992920} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!206 &206217599917462660 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400032, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400024, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 2 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206386242654772672 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400034, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400006, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Trigger + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206443678587036618 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400030, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400026, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 3 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206473048002560522 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400036, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400018, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Grip + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206691222721410912 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400008, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 0.14285715 + m_Position: {x: 1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400020, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 0.2857143 + m_Position: {x: 0, y: -1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 0.42857143 + m_Position: {x: -1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 0.5714286 + m_Position: {x: 0.707106, y: 0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400014, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 0.71428573 + m_Position: {x: -0.707106, y: 0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400010, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 0.85714287 + m_Position: {x: 0.707106, y: -0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400012, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 1 + m_Position: {x: -0.707106, y: -0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Joy X + m_BlendParameterY: Joy Y + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 3 +--- !u!206 &206971632958765170 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400028, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400022, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 1 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!1102 &1102121122168462422 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 3 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206443678587036618} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102282624834042376 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Trigger + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206386242654772672} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102363758892143746 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 1 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206971632958765170} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102481999648770782 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joystick + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206691222721410912} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102544609724274744 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grip + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206473048002560522} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102952634917922508 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 2 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206217599917462660} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &1107446127407293338 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Trigger + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102282624834042376} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102282624834042376} +--- !u!1107 &1107521045517535590 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: [] + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 0} +--- !u!1107 &1107573175546992920 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joystick + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102481999648770782} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102481999648770782} +--- !u!1107 &1107611457393986700 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grip + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102544609724274744} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102544609724274744} +--- !u!1107 &1107617238690245714 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 3 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102121122168462422} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102121122168462422} +--- !u!1107 &1107661262722686046 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 2 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102952634917922508} + m_Position: {x: 24, y: 168, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102952634917922508} +--- !u!1107 &1107952837483422278 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: utton 11 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102363758892143746} + m_Position: {x: 24, y: 168, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102363758892143746} diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2LeftAnimation.controller.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2LeftAnimation.controller.meta new file mode 100644 index 00000000..d73f402b --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2LeftAnimation.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a8e946ed663e4a4db0f537e2965635d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2RightAnimation.controller b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2RightAnimation.controller new file mode 100644 index 00000000..b4de7a08 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2RightAnimation.controller @@ -0,0 +1,679 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: OculusTouchQuest2RightAnimation + serializedVersion: 5 + m_AnimatorParameters: + - m_Name: Button 1 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Button 2 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Button 3 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Grip + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Trigger + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Joy X + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Joy Y + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 1107521045517535590} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 1 + m_StateMachine: {fileID: 1107952837483422278} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 2 + m_StateMachine: {fileID: 1107661262722686046} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 3 + m_StateMachine: {fileID: 1107617238690245714} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Grip + m_StateMachine: {fileID: 1107611457393986700} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Trigger + m_StateMachine: {fileID: 1107446127407293338} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Joystick + m_StateMachine: {fileID: 1107573175546992920} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!206 &206217599917462660 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400028, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400008, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 2 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206386242654772672 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400034, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400006, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Trigger + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206443678587036618 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400030, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400010, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 3 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206473048002560522 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400032, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400016, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Grip + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206691222721410912 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400036, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400014, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 0.14285715 + m_Position: {x: 1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400024, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 0.2857143 + m_Position: {x: 0, y: -1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400022, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 0.42857143 + m_Position: {x: -1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400020, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 0.5714286 + m_Position: {x: 0.707106, y: 0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 0.71428573 + m_Position: {x: -0.707106, y: 0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 0.85714287 + m_Position: {x: 0.707106, y: -0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400012, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 1 + m_Position: {x: -0.707106, y: -0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Joy X + m_BlendParameterY: Joy Y + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 3 +--- !u!206 &206971632958765170 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400026, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 1 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!1102 &1102121122168462422 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 3 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206443678587036618} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102282624834042376 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Trigger + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206386242654772672} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102363758892143746 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 1 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206971632958765170} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102481999648770782 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joystick + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206691222721410912} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102544609724274744 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grip + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206473048002560522} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102952634917922508 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 2 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206217599917462660} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &1107446127407293338 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Trigger + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102282624834042376} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102282624834042376} +--- !u!1107 &1107521045517535590 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: [] + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 0} +--- !u!1107 &1107573175546992920 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joystick + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102481999648770782} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102481999648770782} +--- !u!1107 &1107611457393986700 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grip + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102544609724274744} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102544609724274744} +--- !u!1107 &1107617238690245714 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 3 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102121122168462422} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102121122168462422} +--- !u!1107 &1107661262722686046 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 2 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102952634917922508} + m_Position: {x: 24, y: 168, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102952634917922508} +--- !u!1107 &1107952837483422278 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: utton 11 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102363758892143746} + m_Position: {x: 24, y: 168, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102363758892143746} diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2RightAnimation.controller.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2RightAnimation.controller.meta new file mode 100644 index 00000000..f9657806 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Animation/OculusTouchQuest2RightAnimation.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 62a9d09916ac8bf4ba30ba4803d3503a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials.meta new file mode 100644 index 00000000..c8824f17 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b444df89af4e85a4bb475195ea2786c2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_Left.mat b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_Left.mat new file mode 100644 index 00000000..727cd4ce --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_Left.mat @@ -0,0 +1,78 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: OculusTouchForQuest2_Left + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _METALLICGLOSSMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 0368149f02b42c14095151aaff644f46, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 561aabc57cbcf9046873810d9988f99e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _Shininess: 0.078125 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_Left.mat.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_Left.mat.meta new file mode 100644 index 00000000..8590455a --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_Left.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9ec1bc286fd619a4684490e761da7545 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_MAT.mat b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_MAT.mat new file mode 100644 index 00000000..294a5e64 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_MAT.mat @@ -0,0 +1,78 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: OculusTouchForQuest2_MAT + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b1f40c50ae24356469c6c6d4bfb2a2d6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _Shininess: 0.078125 + - _SmoothnessTextureChannel: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_MAT.mat.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_MAT.mat.meta new file mode 100644 index 00000000..b6541a5b --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_MAT.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d7292a5e1ae17a64c95f3081d2c6be5a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_Right.mat b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_Right.mat new file mode 100644 index 00000000..2932f30f --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_Right.mat @@ -0,0 +1,77 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: OculusTouchForQuest2_Right + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _METALLICGLOSSMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: e441be63d6e5c294aae032fe28daf965, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 561aabc57cbcf9046873810d9988f99e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_Right.mat.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_Right.mat.meta new file mode 100644 index 00000000..5d64f2bc --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/Materials/OculusTouchForQuest2_Right.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0cd3ed1aad0963f4a8819e086ec6909f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Left.fbx b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Left.fbx new file mode 100644 index 00000000..a1a4e56e --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Left.fbx @@ -0,0 +1,3998 @@ +; FBX 7.5.0 project file +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7500 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 11 + Day: 12 + Hour: 14 + Minute: 44 + Second: 35 + Millisecond: 232 + } + 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", "", "C:\open\ovrsource\Software\AvatarSDK\PackageAssets\UnityAssetProcessing\Assets\Oculus\VR\Meshes\OculusTouchForQuest2\OculusTouchForQuest2_Left.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "C:\open\ovrsource\Software\AvatarSDK\PackageAssets\UnityAssetProcessing\Assets\Oculus\VR\Meshes\OculusTouchForQuest2\OculusTouchForQuest2_Left.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "Autodesk" + P: "Original|ApplicationName", "KString", "", "", "Maya" + P: "Original|ApplicationVersion", "KString", "", "", "201804" + P: "Original|DateTime_GMT", "DateTime", "", "", "12/11/2020 22:44:35.229" + P: "Original|FileName", "KString", "", "", "C:\open\ovrsource\Software\AvatarSDK\PackageAssets\UnityAssetProcessing\Assets\Oculus\VR\Meshes\OculusTouchForQuest2\OculusTouchForQuest2_Left.fbx" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk" + P: "LastSaved|ApplicationName", "KString", "", "", "Maya" + P: "LastSaved|ApplicationVersion", "KString", "", "", "201804" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "12/11/2020 22:44:35.229" + P: "Original|ApplicationActiveProject", "KString", "", "", "C:\open\ovrsource\Software\AvatarSDK\PackageAssets\UnityAssetProcessing\Assets\Oculus\VR\Meshes\OculusTouchForQuest2" + P: "Original|ApplicationNativeFile", "KString", "", "", "Z:\shows\avatarsdk\assets\prop\prp00003nextController\working\Quest2_Controller_Optimized.1020.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", "", "",6 + P: "TimeProtocol", "enum", "", "",2 + P: "SnapOnFrameMode", "enum", "", "",0 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",83135084400 + P: "CustomFrameRate", "double", "Number", "",-1 + P: "TimeMarker", "Compound", "", "" + P: "CurrentTimeMarker", "int", "Integer", "",-1 + } +} + +; Documents Description +;------------------------------------------------------------------ + +Documents: { + Count: 1 + Document: 2286600632800, "", "Scene" { + Properties70: { + P: "SourceObject", "object", "", "" + P: "ActiveAnimStackName", "KString", "", "", "Take 001" + } + RootNode: 0 + } +} + +; Document References +;------------------------------------------------------------------ + +References: { +} + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 129 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "AnimationStack" { + Count: 1 + PropertyTemplate: "FbxAnimStack" { + Properties70: { + P: "Description", "KString", "", "", "" + P: "LocalStart", "KTime", "Time", "",0 + P: "LocalStop", "KTime", "Time", "",0 + P: "ReferenceStart", "KTime", "Time", "",0 + P: "ReferenceStop", "KTime", "Time", "",0 + } + } + } + ObjectType: "AnimationLayer" { + Count: 1 + PropertyTemplate: "FbxAnimLayer" { + Properties70: { + P: "Weight", "Number", "", "A",100 + P: "Mute", "bool", "", "",0 + P: "Solo", "bool", "", "",0 + P: "Lock", "bool", "", "",0 + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BlendMode", "enum", "", "",0 + P: "RotationAccumulationMode", "enum", "", "",0 + P: "ScaleAccumulationMode", "enum", "", "",0 + P: "BlendModeBypass", "ULongLong", "", "",0 + } + } + } + ObjectType: "NodeAttribute" { + Count: 9 + PropertyTemplate: "FbxSkeleton" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "Size", "double", "Number", "",100 + P: "LimbLength", "double", "Number", "H",1 + } + } + } + ObjectType: "Model" { + Count: 10 + 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: "Geometry" { + Count: 1 + 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: 1 + PropertyTemplate: "FbxSurfaceMaterial" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Unknown" + P: "MultiLayer", "bool", "", "",0 + } + } + } + ObjectType: "Implementation" { + Count: 1 + PropertyTemplate: "FbxImplementation" { + Properties70: { + P: "ShaderLanguage", "KString", "", "", "MentalRaySL" + P: "ShaderLanguageVersion", "KString", "", "", "" + P: "RenderAPI", "KString", "", "", "MentalRay" + P: "RenderAPIVersion", "KString", "", "", "" + P: "RootBindingName", "KString", "", "", "" + P: "Constants", "Compound", "", "" + } + } + } + ObjectType: "BindingTable" { + Count: 1 + PropertyTemplate: "FbxBindingTable" { + Properties70: { + P: "TargetName", "KString", "", "", "" + P: "TargetType", "KString", "", "", "" + P: "CodeAbsoluteURL", "KString", "XRefUrl", "", "" + P: "CodeRelativeURL", "KString", "XRefUrl", "", "" + P: "CodeTAG", "KString", "", "", "shader" + P: "DescAbsoluteURL", "KString", "XRefUrl", "", "" + P: "DescRelativeURL", "KString", "XRefUrl", "", "" + P: "DescTAG", "KString", "", "", "shader" + } + } + } + ObjectType: "Texture" { + Count: 5 + 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: "AnimationCurveNode" { + Count: 47 + PropertyTemplate: "FbxAnimCurveNode" { + Properties70: { + P: "d", "Compound", "", "" + } + } + } + ObjectType: "CollectionExclusive" { + Count: 1 + PropertyTemplate: "FbxDisplayLayer" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "Show", "bool", "", "",1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + } + } + } + ObjectType: "AnimationCurve" { + Count: 36 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "Deformer" { + Count: 8 + } + ObjectType: "Video" { + Count: 5 + 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: { + NodeAttribute: 2286905599952, "NodeAttribute::", "Root" { + TypeFlags: "Null", "Skeleton", "Root" + } + NodeAttribute: 2286905603024, "NodeAttribute::", "LimbNode" { + TypeFlags: "Skeleton" + } + NodeAttribute: 2286905601296, "NodeAttribute::", "LimbNode" { + TypeFlags: "Skeleton" + } + NodeAttribute: 2286905600912, "NodeAttribute::", "LimbNode" { + TypeFlags: "Skeleton" + } + NodeAttribute: 2286905609168, "NodeAttribute::", "LimbNode" { + TypeFlags: "Skeleton" + } + NodeAttribute: 2286905610320, "NodeAttribute::", "LimbNode" { + TypeFlags: "Skeleton" + } + NodeAttribute: 2286905610128, "NodeAttribute::", "LimbNode" { + TypeFlags: "Skeleton" + } + Geometry: 2286601949872, "Geometry::", "Mesh" { + Vertices: *9024 { + a: 0.0395355224609375,-0.613035678863525,2.81370854377747,-0.533123016357422,-1.7238655090332,1.66402626037598,-0.0813179016113281,-3.14897799491882,1.23593986034393,-0.571052551269531,-3.15479779243469,1.18145716190338,-1.22551345825195,-2.84177494049072,1.14327800273895,-1.47127532958984,-2.59162712097168,1.18888473510742,-1.84371185302734,-2.19877028465271,1.55925893783569,-1.6423397064209,-2.33428525924683,1.28089237213135,-0.978309631347656,-3.15611410140991,1.29969215393066,-0.607648849487305,-3.26768779754639,1.3416006565094,-1.10928344726563,-0.815725743770599,2.96061134338379,-1.4218635559082,-0.956381440162659,2.79930281639099,-1.6718635559082,-1.14093387126923,2.58466339111328,-1.62925338745117,-1.01132965087891,2.43878626823425,-1.83869934082031,-1.35754227638245,2.328289270401,-1.85839462280273,-1.44716095924377,1.94649720191956,-1.85614585876465,-1.73621916770935,1.67579448223114,0.580196380615234,-2.99509644508362,1.45826196670532,1.07665634155273,-1.41830027103424,2.1114981174469,0.824150085449219,-1.01615345478058,2.26615214347839,0.603580474853516,-0.830373108386993,2.49376916885376,0.665641784667969,-0.946240663528442,2.64482021331787,0.433065414428711,-0.833071649074554,2.80617666244507,0.0717391967773438,-0.733034610748291,2.9706654548645,-0.336456298828125,-0.566633999347687,2.90416765213013,0.384601593017578,-0.714753031730652,2.65221881866455,0.998249053955078,-1.31058180332184,1.96194839477539,1.07768821716309,-1.66699314117432,1.68334364891052,1.0621337890625,-1.99309802055359,1.50610876083374,0.908514022827148,-2.47044086456299,1.3599545955658,0.540672302246094,-2.89910459518433,1.28522729873657,-0.915321350097656,-3.04507327079773,1.14615643024445,-1.7678108215332,-2.07792568206787,1.41959190368652,-1.7855110168457,-1.22470498085022,2.18893003463745,-1.39217567443848,-0.829886138439178,2.64731407165527,-1.09328842163086,-0.689301252365112,2.80736374855042,1.93020248413086,-1.30660223960876,1.48322510719299,1.41923522949219,-1.1346423625946,2.12981271743774,1.43141555786133,-1.60279953479767,1.79891335964203, +1.87566757202148,-0.804797649383545,1.94297766685486,2.34807968139648,-0.862551271915436,1.22186350822449,2.32669258117676,-0.376371681690216,1.76206541061401,1.6778450012207,-0.37055516242981,2.44519519805908,2.19683456420898,0.0630306974053383,2.27078199386597,1.2609748840332,-0.00345692038536072,2.96263146400452,0.921489715576172,-0.579550743103027,2.82095837593079,1.92888450622559,0.490325689315796,2.75473809242249,2.95359039306641,0.282998472452164,1.2310916185379,3.23494720458984,0.7342369556427,0.930755734443665,3.19404983520508,0.381522059440613,0.354611188173294,2.90481567382813,0.763562440872192,1.80311012268066,3.20300483703613,1.17876470088959,1.48663377761841,3.57699966430664,1.43024551868439,0.367841333150864,3.46824264526367,1.03204417228699,-0.156791850924492,3.56309127807617,1.86209404468536,0.933375597000122,3.74786758422852,2.11865496635437,-0.242072373628616,3.6285514831543,1.70520865917206,-0.76552402973175,3.73728942871094,2.55940580368042,0.32815882563591,3.75848770141602,2.8254771232605,-0.894744992256165,3.63344192504883,2.41178703308105,-1.42441689968109,3.7351131439209,3.27085876464844,-0.319948047399521,3.59877395629883,3.4855432510376,-1.53213214874268,3.55504989624023,3.94029474258423,-0.962869226932526,3.27652740478516,4.06655025482178,-2.12653803825378,3.20674514770508,4.53222513198853,-1.56808876991272,2.80296325683594,4.56703519821167,-2.67248296737671,2.70220375061035,5.03622055053711,-2.12279009819031,2.19136428833008,4.97507619857788,-3.16089916229248,2.06317138671875,5.43464088439941,-2.61520624160767,1.45771217346191,5.27151775360107,-3.5918755531311,1.31533432006836,5.72100353240967,-3.03499627113342,0.606189727783203,5.44326829910278,-3.93866515159607,-0.215871810913086,4.91310930252075,-4.60931015014648,0.474552154541016,5.88242483139038,-3.35955333709717,-0.289264678955078,5.47599458694458,-4.16923666000366,-0.410171508789063,5.88834667205811,-3.56772661209106,-1.17346954345703,5.37404823303223,-4.27669811248779,-2.04299545288086,5.13943147659302,-4.26754570007324,-1.83550643920898,4.58749341964722,-4.69622278213501, +-1.30030822753906,5.78931188583374,-3.66879034042358,-0.538475036621094,6.12869024276733,-2.92340731620789,-2.88590431213379,4.76587915420532,-4.12986087799072,-2.18311309814453,5.58237314224243,-3.66910862922668,-1.39099884033203,6.03071451187134,-3.02195954322815,-3.68582916259766,4.24537038803101,-3.84428453445435,-3.03957366943359,5.2183985710144,-3.53313493728638,-2.22660827636719,5.81774854660034,-3.0108757019043,-4.35597610473633,3.59733891487122,-3.41896820068359,-4.03018951416016,3.14955902099609,-3.86474204063416,-3.84470367431641,4.70109272003174,-3.25413012504578,-3.03868103027344,5.48135948181152,-2.87732911109924,-1.44710540771484,6.09269380569458,-2.40414714813232,-2.20681190490723,5.89994382858276,-2.40186142921448,-3.8187141418457,4.99560070037842,-2.60427594184875,0.298995971679688,6.10845375061035,-2.71955633163452,0.117259979248047,6.17050170898438,-2.13116025924683,1.09221458435059,5.96731233596802,-2.41078495979309,0.837608337402344,6.04426097869873,-1.83033239841461,1.81634140014648,5.70570516586304,-2.01402878761292,2.44027328491211,5.3379373550415,-1.5364054441452,2.11508178710938,5.47797060012817,-1.01655745506287,2.94003295898438,4.86845207214355,-0.991783320903778,3.29645156860352,4.31091451644897,-0.400820672512054,2.9250373840332,4.55309057235718,0.0679357051849365,3.49303245544434,3.66790866851807,0.236334264278412,3.11598968505859,3.95083999633789,0.702450394630432,3.51402282714844,2.98071718215942,0.867234528064728,3.35100173950195,2.29723215103149,1.46144020557404,2.99501800537109,2.66363048553467,1.88572895526886,2.65738296508789,1.99567234516144,2.4252781867981,3.00045585632324,1.62105047702789,1.99211251735687,2.71218872070313,1.21868181228638,2.28670620918274,0.610584259033203,-0.0696625709533691,3.22971487045288,0.522268295288086,-0.487791061401367,3.04445481300354,0.0639190673828125,-0.145020872354507,3.34768486022949,-0.475778579711914,0.0912880897521973,3.53594326972961,0.0759010314941406,-0.457469671964645,3.18680143356323,-0.430740356445313,-0.2056685090065,3.38514590263367, +-1.36869621276855,-0.327887713909149,3.27742457389832,-1.6207447052002,-0.697783827781677,2.99326276779175,-1.43102264404297,-0.018877387046814,3.42991375923157,-1.80411148071289,-0.394105821847916,3.14124464988708,-1.98091888427734,-0.845614194869995,2.77037262916565,-2.2821216583252,-0.466069340705872,2.92123937606812,-2.90212440490723,-0.573178112506866,2.50608968734741,-2.95974159240723,0.118907630443573,2.91456890106201,-3.11235046386719,-1.07416498661041,1.87396907806396,-2.34565925598145,-1.37858927249908,2.12458038330078,-3.67014694213867,-0.238048911094666,2.14845037460327,-3.52029228210449,0.305811762809753,2.60197615623474,-3.73267555236816,-0.736547589302063,1.59905517101288,-3.05109024047852,-1.47947573661804,1.39772486686707,-2.81701278686523,-1.88970708847046,1.06844210624695,-3.36250305175781,-1.54856371879578,0.592835307121277,-3.62481498718262,-1.1497848033905,1.06172490119934,-4.01423454284668,-0.854303240776062,0.725784599781036,-3.73544692993164,-1.22210514545441,0.186481714248657,-4.153639793396,-0.455068320035934,1.3014155626297,-4.42927360534668,-0.437545418739319,0.234299719333649,-4.13068103790283,0.0425299406051636,1.84215521812439,-4.66377544403076,0.472186625003815,1.33462429046631,-4.50214385986328,0.985076904296875,1.74993944168091,-4.64187812805176,-0.0371572375297546,0.801179051399231,-5.00800609588623,0.893222451210022,0.865343630313873,-4.86996746063232,1.40404510498047,1.2532594203949,-4.97367763519287,0.38157045841217,0.341886043548584,-4.72782707214355,-0.0251297354698181,-0.213054955005646,-4.40616035461426,-0.331169903278351,-0.73048347234726,-5.27463722229004,1.0356673002243,-0.32173228263855,-5.29629421234131,1.53753304481506,0.203515768051147,-5.13743305206299,2.00846171379089,0.61418205499649,-5.01696014404297,0.604166686534882,-0.859728753566742,-5.39761543273926,2.25176239013672,-0.485021531581879,-5.21803379058838,2.68233108520508,-0.0438597202301025,-5.39837074279785,1.76885843276978,-1.01634359359741,-5.15658187866211,1.30463933944702,-1.53348541259766,-4.77017784118652,1.62758874893188,-2.62380886077881, +-5.29838275909424,2.96755743026733,-1.12763047218323,-5.10793495178223,2.05981492996216,-2.20836591720581,-5.31841278076172,2.53695130348206,-1.6845178604126,-5.00591564178467,3.67446184158325,-1.68800473213196,-4.35605049133301,4.5686559677124,-1.63806796073914,-4.84499549865723,2.83327126502991,-2.85085725784302,-5.03357315063477,3.30692863464355,-2.29694247245789,-4.53202724456787,4.05476856231689,-2.83536720275879,-4.49896240234375,4.38265895843506,-2.20217895507813,3.16711807250977,1.0781055688858,-0.351472824811935,3.37172317504883,1.67612075805664,-0.866854667663574,3.47419738769531,3.04614663124084,-2.03917503356934,3.22132110595703,2.98921775817871,-2.0819103717804,3.18009376525879,3.57672786712646,-2.59918069839478,2.75431632995605,4.03721284866333,-3.11630892753601,2.20754623413086,4.43306255340576,-3.57968783378601,1.51493453979492,4.71594381332397,-4.00957775115967,0.671924591064453,4.87749481201172,-4.37437438964844,0.599998474121094,4.67194557189941,-4.25736618041992,-1.02506256103516,4.81528520584106,-4.7086615562439,-2.61246871948242,4.23730373382568,-4.56125497817993,-3.24193572998047,3.63642001152039,-4.1545934677124,-3.39766693115234,3.74897193908691,-4.27902364730835,-4.51200771331787,2.37405967712402,-3.27124857902527,-4.79983806610107,0.907143175601959,-1.96307635307312,-4.67182350158691,0.274159461259842,-1.34613585472107,-1.42387771606445,5.96101427078247,-2.16196417808533,-2.14569091796875,5.7704119682312,-2.15170955657959,-2.83947563171387,5.48992013931274,-2.04426217079163,-4.14772415161133,4.51800155639648,-1.43387043476105,-4.97403144836426,2.822833776474,0.0053669810295105,-4.66898250579834,1.61175131797791,1.22963976860046,-3.6824779510498,-0.027259886264801,1.25567317008972,-3.77946662902832,0.776343762874603,2.22424149513245,-3.34754943847656,0.551187098026276,2.53666710853577,-2.86608695983887,0.386484980583191,2.81417036056519,-3.41977119445801,-0.207746565341949,1.48808538913727,-3.94599914550781,0.156852781772614,0.940010964870453,-2.16231727600098,0.0511816740036011,2.81262803077698, +-2.37037658691406,0.281270980834961,3.03536629676819,-1.64306259155273,0.128627300262451,3.04113793373108,-1.86394500732422,0.234542310237885,3.19152617454529,-1.42208862304688,0.22688215970993,3.312087059021,-4.13517189025879,0.360630035400391,0.745321989059448,-3.89422988891602,-0.298719227313995,-0.256026268005371,-3.74974822998047,-0.426351428031921,-0.476789474487305,-4.06961059570313,-0.155044436454773,-0.836138188838959,-4.44113540649414,0.776594042778015,0.300702750682831,-4.14159393310547,-0.00107994675636292,-0.695560991764069,-4.68867111206055,1.34299540519714,-0.273849248886108,-4.42128562927246,0.522511839866638,-1.23737215995789,-4.39826107025146,0.380459398031235,-1.40974426269531,-4.5708065032959,1.11721253395081,-1.81845545768738,-4.56540012359619,0.972676753997803,-1.99213349819183,-4.79056930541992,1.95982646942139,-0.871231973171234,-4.72037029266357,2.59166193008423,-1.44986081123352,-4.48001289367676,3.18215560913086,-1.96697926521301,-4.54296684265137,1.79303288459778,-2.43475103378296,-4.54953956604004,1.65790522098541,-2.61539602279663,-4.00390434265137,3.84748935699463,-2.48261690139771,-4.30272960662842,2.48367524147034,-3.02793264389038,-4.31418991088867,2.36841607093811,-3.22218132019043,-3.39200210571289,4.39832162857056,-2.86238813400269,-3.82748985290527,3.18535733222961,-3.56891274452209,-3.83763885498047,3.07874631881714,-3.76758503913879,-2.67542266845703,4.83399248123169,-3.11347484588623,-3.23072052001953,3.73795056343079,-3.95388507843018,-1.96235084533691,5.12904262542725,-3.22801876068115,-2.49390411376953,4.19948816299438,-4.21741724014282,-2.49581718444824,4.10665130615234,-4.41939735412598,-1.76052856445313,4.50713682174683,-4.34130907058716,-1.7550220489502,4.41967630386353,-4.54649591445923,-1.22204208374023,5.32049322128296,-3.23454976081848,-0.993721008300781,4.70463800430298,-4.35018062591553,-0.257402420043945,4.80899810791016,-4.25275945663452,-0.976581573486328,4.61991930007935,-4.55558681488037,-4.15108203887939,-0.726208686828613,-0.335997819900513,-3.84780311584473,-0.75692343711853,-1.30923390388489, +-3.25943374633789,-0.492891848087311,-1.74929976463318,-2.9416332244873,-0.497342646121979,-2.16170048713684,-2.24059677124023,-0.682857394218445,-3.09866046905518,-1.75444030761719,-0.661738097667694,-3.32286882400513,-1.63315582275391,-0.437119692564011,-3.04066729545593,-1.16418075561523,-0.608290374279022,-3.47783160209656,-1.10670852661133,-0.392294675111771,-3.17395186424255,-0.291627883911133,-0.51462584733963,-3.53468751907349,0.216850280761719,-0.456911504268646,-3.47300720214844,0.727428436279297,-0.387834638357162,-3.32899022102356,1.27616500854492,-0.302758812904358,-3.06287431716919,1.12919998168945,-0.113887943327427,-2.76958513259888,1.68346786499023,-0.249548316001892,-2.80152535438538,1.48028373718262,-0.052417129278183,-2.52124166488647,2.00343322753906,0.0567370355129242,-1.95612525939941,2.33221435546875,-0.123544663190842,-2.11996150016785,2.1511402130127,0.0923959463834763,-1.74447238445282,2.48356628417969,-0.0915001630783081,-1.89831435680389,2.39997291564941,0.165703356266022,-1.2457447052002,2.76127243041992,-0.025083601474762,-1.34880566596985,2.97660827636719,0.044348269701004,-0.707001686096191,2.58299255371094,0.240131869912148,-0.658610999584198,3.0656795501709,0.0913203507661819,-0.0778974592685699,3.0608024597168,0.13227790594101,0.519718706607819,-3.6483039855957,-0.452985495328903,-0.880512177944183,-3.68239593505859,-0.299611985683441,0.813497602939606,-3.78613662719727,-0.381907820701599,0.042542040348053,-3.50575637817383,-0.474928885698318,-1.28036236763,2.33826065063477,5.01067495346069,-0.379891514778137,2.86359024047852,3.37209057807922,1.31136465072632,2.71602630615234,2.74961042404175,1.87049162387848,2.37923049926758,2.12650227546692,2.37981581687927,0.897214889526367,0.853858709335327,3.25345015525818,1.38625335693359,0.408461779356003,2.53560638427734,0.996234893798828,0.38991117477417,2.78836154937744,0.579401016235352,0.363225519657135,2.98483371734619,1.70872116088867,0.415436625480652,2.23682641983032,0.129352569580078,0.327382206916809,3.12146425247192,0.470241546630859,0.652517795562744,3.34701919555664, +-0.0591354370117188,0.465832501649857,3.40022397041321,2.26583862304688,0.866811215877533,1.80705571174622,2.3112678527832,0.401904940605164,1.39331698417664,2.55034637451172,1.19981861114502,1.4846705198288,2.76781845092773,0.581015706062317,0.404669374227524,2.82431793212891,0.50992077589035,0.0675426423549652,3.14046287536621,1.21104550361633,-0.159796863794327,3.32405281066895,1.81449294090271,-0.683195233345032,3.34314727783203,2.4953281879425,-1.30145847797394,3.40247344970703,2.3696026802063,-1.48595142364502,3.18268203735352,3.10389757156372,-1.88988852500916,2.89103317260742,3.59675788879395,-2.41109108924866,2.9279727935791,3.48629951477051,-2.60146522521973,2.49376106262207,4.00006294250488,-2.88972473144531,2.54217529296875,3.89394283294678,-3.08257555961609,1.98984527587891,4.32953023910522,-3.3210916519165,2.05041122436523,4.23082828521729,-3.52003955841064,1.3387451171875,4.59356355667114,-3.71702837944031,1.38866806030273,4.50417995452881,-3.92096400260925,-0.466064453125,5.42106819152832,-3.15583682060242,0.56475830078125,4.75267887115479,-4.04802083969116,-0.22028923034668,4.70383310317993,-4.4646635055542,-0.158472061157227,-3.60199451446533,-2.27252435684204,0.0131072998046875,-4.04353618621826,-1.58506095409393,0.100925453007221,-3.69418334960938,-1.78929829597473,-0.274709701538086,-3.35011839866638,-2.83049011230469,-0.553997039794922,-3.55160903930664,-2.95822811126709,-0.25993537902832,-3.11441969871521,-3.28103756904602,-0.547409057617188,-3.25150632858276,-3.46812915802002,-0.218025207519531,-2.80635356903076,-3.52440142631531,-0.44677734375,-2.51714277267456,-3.86137342453003,-0.18316650390625,-2.50582957267761,-3.54615473747253,-0.462554931640625,-2.11725163459778,-3.66679239273071,-0.198333740234375,-2.20130944252014,-3.41533660888672,-0.666599273681641,-1.91053438186646,-3.28183460235596,-0.337882995605469,-2.0206413269043,-3.1091365814209,-0.455278396606445,-2.02801871299744,-2.9092493057251,-0.584531784057617,-2.11555862426758,-2.6317081451416,-0.936676025390625,-2.03370070457458,-2.71209812164307, +-0.664663314819336,-2.30586409568787,-2.18636393547058,-0.660455703735352,-2.48288130760193,-1.77036547660828,-1.02128791809082,-2.48216938972473,-1.68433094024658,-0.565483093261719,-2.64040374755859,-1.3239049911499,-0.897289276123047,-2.67890787124634,-1.16713130474091,-0.518770217895508,-2.8321385383606,-0.798775732517242,-0.28327751159668,-2.74651193618774,-1.03229105472565,0.178827285766602,-3.31505966186523,-1.31874370574951,0.0267295837402344,-2.96589493751526,-1.12488782405853,0.710430145263672,-3.18433332443237,1.34635090827942,0.902130126953125,-2.78694581985474,0.42936110496521,1.14007949829102,-2.65901732444763,-0.281069695949554,1.50486373901367,-2.40253353118896,0.678415417671204,1.80935668945313,-1.79265213012695,1.1188884973526,1.38726615905762,-2.02915239334106,1.58142495155334,2.22844314575195,-1.41536033153534,0.687099993228912,1.93101501464844,-2.11741876602173,0.0402396321296692,2.85756301879883,-0.218346893787384,0.756570339202881,2.79767990112305,-0.513864874839783,0.137490034103394,2.64802551269531,-0.77099072933197,-1.07049477100372,2.41829872131348,-0.833772718906403,-2.04315447807312,1.93389892578125,-0.206252008676529,-2.58323240280151,2.52601623535156,-1.54188144207001,-1.38941049575806,1.92472839355469,-0.953605532646179,-3.08804893493652,2.3554744720459,-1.62245547771454,-2.69157981872559,2.13419723510742,-2.23828053474426,-0.762293577194214,2.46345138549805,-2.22844290733337,-2.07924652099609,1.3551025390625,-2.95761632919312,-0.781308710575104,2.16167449951172,-2.89799928665161,-1.52856278419495,1.52031517028809,-3.5122389793396,-1.27074372768402,0.68939208984375,-3.92131519317627,-1.25371360778809,2.46540832519531,-3.09374570846558,-2.96966981887817,2.23102378845215,-3.73299360275269,-2.4258496761322,1.65958023071289,-4.3520336151123,-2.06109666824341,0.802089691162109,-4.78541898727417,-2.01877975463867,0.899007797241211,-5.56976652145386,-2.81906795501709,2.24237060546875,-4.56134033203125,-3.34534645080566,1.71102714538574,-5.16589212417603,-2.93520402908325,0.890218734741211,-6.13561964035034,-3.46900987625122, +2.4588737487793,-3.95566558837891,-3.87463212013245,1.69955444335938,-5.77274513244629,-3.62456941604614,2.2129077911377,-5.18067073822021,-4.04413604736328,1.61290740966797,-6.3714656829834,-4.32847881317139,2.12824440002441,-5.80224514007568,-4.74194145202637,1.42865371704102,-6.89401149749756,-5.07477855682373,2.41960906982422,-4.60124158859253,-4.56407880783081,1.35429382324219,-7.06697082519531,-5.74989223480225,0.780982971191406,-7.26629686355591,-5.96711397171021,1.94610786437988,-6.37037086486816,-5.43098640441895,1.32568359375,-7.02537202835083,-6.25505781173706,0.822742462158203,-7.14823150634766,-6.49161338806152,1.67973327636719,-6.75124502182007,-5.97798538208008,2.16166877746582,-5.80962800979614,-5.86813640594482,1.45839881896973,-6.63449478149414,-6.80714797973633,0.791492462158203,-6.82845497131348,-7.02331304550171,1.87307739257813,-6.28597021102905,-6.41067028045654,0.809232711791992,-6.24427127838135,-7.45376443862915,1.51984786987305,-6.05418014526367,-7.19590711593628,1.87318801879883,-5.76154041290283,-6.84625339508057,2.33610916137695,-5.22136116027832,-5.23000812530518,2.15226554870605,-5.27179908752441,-6.35659551620483,1.65618324279785,-5.32337951660156,-7.21558475494385,0.865299224853516,-5.39437437057495,-7.60710954666138,1.94088172912598,-4.8158106803894,-6.78180694580078,2.31911277770996,-4.67439556121826,-5.76552104949951,1.5992546081543,-4.59523725509644,-7.10270404815674,2.07877731323242,-4.19745826721191,-6.26574277877808,2.3962345123291,-4.04010581970215,-5.13016557693481,1.61620330810547,-3.89019680023193,-6.67303800582886,2.42398834228516,-3.38311266899109,-4.46041870117188,2.13368988037109,-3.55987310409546,-5.67757797241211,2.14392471313477,-2.90027332305908,-5.02424049377441,2.40008544921875,-2.51334738731384,-3.56816816329956,2.08890914916992,-2.0324227809906,-4.11681747436523,1.55739212036133,-1.73773467540741,-4.60608577728271,1.35317993164063,-0.943399608135223,-3.78232097625732,0.77202033996582,-0.989632964134216,-4.0903205871582,1.61275482177734,-2.55530095100403,-5.47086715698242, +0.845893859863281,-1.67026805877686,-4.88071060180664,0.259702682495117,-1.13149642944336,-4.08583641052246,0.224517822265625,-1.8112108707428,-4.76813888549805,-0.249046325683594,-1.31703042984009,-3.81844282150269,-0.153217315673828,-2.1086208820343,-4.5146336555481,0.0317268371582031,-2.63252329826355,-5.35222148895264,0.870708465576172,-2.40801429748535,-5.6626501083374,1.61453056335449,-3.21475958824158,-6.1130633354187,0.885105133056641,-3.07027506828308,-6.30066204071045,0.0806541442871094,-3.34019756317139,-6.05649042129517,0.896633148193359,-3.76550579071045,-6.88900947570801,0.883872985839844,-4.52235889434814,-7.3684983253479,0.106025703251362,-3.98383736610413,-6.60217714309692,0.107875816524029,-4.6884970664978,-7.03886651992798,0.138999938964844,-5.49763870239258,-7.31202268600464,-0.195308685302734,-4.92049837112427,-6.51477527618408,0.175411224365234,-6.20051193237305,-7.23538589477539,-0.157102584838867,-5.57332897186279,-6.78643321990967,0.198789596557617,-6.7091236114502,-6.89848613739014,-0.141849517822266,-6.09462785720825,-6.7418966293335,0.173736572265625,-7.01650619506836,-6.3541111946106,-0.0748538970947266,-6.57710886001587,-6.55984687805176,-0.269912719726563,-5.61821746826172,-6.38881969451904,-0.281124114990234,-5.97503805160522,-6.24212789535522,-0.225204467773438,-6.47152185440063,-6.02060317993164,0.0922889709472656,-7.03977203369141,-5.62493515014648,0.729743957519531,-7.20500612258911,-5.3022723197937,-0.375396728515625,-5.69970512390137,-5.69130563735962,-0.310600280761719,-6.26261425018311,-5.37392997741699,0.0763092041015625,-6.84572172164917,-4.92936706542969,0.716289520263672,-7.02152061462402,-4.79020357131958,-0.359603881835938,-5.96162128448486,-4.78421354293823,0.0875949859619141,-6.52438259124756,-4.30209636688232,0.821620941162109,-6.64059782028198,-4.13661479949951,0.0990104675292969,-6.10076427459717,-3.67574262619019,-0.397594451904297,-5.57635927200317,-4.19673728942871,0.0710525512695313,-5.53032445907593,-3.00265312194824,-0.429380416870117,-5.10810279846191,-3.58689045906067, +0.0348129272460938,-4.82946920394897,-2.28525161743164,-0.460025787353516,-4.5082859992981,-2.91867733001709,0.529539108276367,-3.37344169616699,-0.921032786369324,-0.430864334106445,-3.82897138595581,-2.31791925430298,-0.00909042358398438,-3.46060752868652,-1.15250957012177,0.278491973876953,-2.92762494087219,-0.498674660921097,-0.144182205200195,-3.11038994789124,-0.92211776971817,0.0455207824707031,-2.95030903816223,0.282693564891815,-0.558540344238281,-4.06542205810547,-3.51506662368774,-0.523050308227539,-4.56284379959106,-4.11581659317017,-0.528854370117188,-3.60986185073853,-4.0391640663147,-0.486547470092773,-2.84670400619507,-3.81108808517456,-0.480981826782227,-4.99906969070435,-4.68277835845947,-0.482654571533203,-4.00685358047485,-4.61802434921265,-0.416038513183594,-3.02062582969666,-4.4503321647644,-0.432849884033203,-5.37968444824219,-5.20461893081665,-0.337631225585938,-3.38365769386292,-5.06817007064819,-0.948041915893555,-1.26992416381836,-3.33644819259644,-0.795932769775391,-1.92277789115906,-3.05643939971924,-1.37178802490234,-1.33398199081421,-3.02121591567993,-1.73432540893555,-1.42733633518219,-2.68457341194153,-1.0315990447998,-2.27945566177368,-2.15778636932373,-2.08180618286133,-1.54447686672211,-2.22938561439514,-2.68558120727539,-0.708575189113617,-2.80432772636414,-3.16259384155273,-0.749661862850189,-2.36863422393799,-2.35227966308594,-1.67283892631531,-1.68174910545349,-3.55378341674805,-0.775991439819336,-1.84334373474121,-1.61565017700195,-2.53518414497375,-0.537113606929779,-2.93865203857422,-1.62350606918335,-1.08399963378906,-0.641101837158203,-3.00236225128174,0.2432941198349,-0.644058227539063,-3.4961678981781,1.18526744842529,-1.06181907653809,-3.37220191955566,1.13349235057831,-1.32972717285156,-2.9672486782074,0.310357511043549,-1.86460876464844,-2.783123254776,0.422087669372559,-1.79067039489746,-2.803866147995,1.1459379196167,-2.35670471191406,-2.28614473342896,-0.295851111412048,-2.27401733398438,-2.49903225898743,0.590204060077667,-3.25859451293945,-1.52809071540833,-0.617695689201355, +-4.02558898925781,-0.741598129272461,-0.834814429283142,-2.77883338928223,-2.05545878410339,-0.0189860463142395,-2.56376266479492,-2.20417475700378,0.798838913440704,-3.50615119934082,-1.3966019153595,-0.192299902439117,-3.09637832641602,-1.80675041675568,0.274589717388153,-0.433206558227539,-4.42578983306885,-5.16512775421143,-0.384706497192383,-4.84641218185425,-5.64285182952881,-0.273452758789063,-3.85119152069092,-5.64476680755615,-0.231277465820313,-4.36592626571655,-6.11982822418213,-0.332309722900391,-5.24666833877563,-6.05318641662598,0.94183349609375,0.00662407279014587,-1.26081621646881,0.898147583007813,-0.00559994578361511,-1.34164357185364,0.940277099609375,-0.0421454757452011,-1.78389978408813,-0.265243530273438,-0.163646399974823,-1.68726134300232,0.649995803833008,-0.186445385217667,-2.99825978279114,0.157480239868164,-0.254414856433868,-3.15771055221558,0.897079467773438,-0.0391929894685745,-1.70194983482361,0.170799255371094,0.0255817696452141,-0.140311390161514,-0.304452896118164,-0.310625374317169,-3.22586345672607,-0.494956970214844,-0.193496406078339,-1.73861455917358,-2.08600807189941,-0.468829363584518,-2.83976149559021,-0.941020965576172,-0.218509346246719,-1.48219752311707,-1.01405143737793,-0.205635547637939,-1.25681436061859,-2.49852752685547,-0.48614501953125,-2.56390523910522,0.0771636962890625,0.0427689850330353,0.153378129005432,-0.980628967285156,-0.180375829339027,-1.02327299118042,-1.01073455810547,-0.194279164075851,-1.13798880577087,-0.847610473632813,-0.14791351556778,-0.829497039318085,-0.925294876098633,-0.164648115634918,-0.91862940788269,1.64271545410156,0.213880181312561,0.161921203136444,2.64212799072266,0.290523141622543,-0.186058178544044,1.55817413330078,0.177218556404114,-0.132740676403046,1.66532707214355,0.0904581546783447,-1.19882345199585,1.59426498413086,0.0883147716522217,-1.13935768604279,1.36715316772461,0.134189277887344,-0.371436387300491,1.33332633972168,0.0678415223956108,-1.05664539337158,1.2415885925293,0.0572114139795303,-1.06450605392456,1.1533203125,0.0453031063079834,-1.09015572071075, +1.09872817993164,0.0913432389497757,-0.517826735973358,-3.06333351135254,-0.116183519363403,2.05984354019165,-2.64290046691895,-0.032414436340332,2.47052192687988,-0.977214813232422,0.212523996829987,3.17042207717896,-0.469432830810547,0.270314395427704,3.202556848526,0.350337982177734,0.136595904827118,0.841185867786407,0.269813537597656,0.033780425786972,0.565787076950073,0.222040176391602,0.017220214009285,0.444040358066559,0.0747756958007813,0.0569050312042236,0.307828187942505,0.281978607177734,-0.0221331752836704,-0.0656323432922363,0.356828689575195,-0.0233518593013287,-0.174143075942993,0.498703002929688,0.0312714464962482,-0.461990535259247,0.683433532714844,-0.00503656081855297,-0.387267172336578,0.943296432495117,0.0228153504431248,-0.410551100969315,1.64032745361328,0.228016212582588,0.316371262073517,1.52846527099609,0.157241180539131,0.326984137296677,1.6079044342041,0.23859278857708,0.467689484357834,1.50043869018555,0.165677309036255,0.455522507429123,1.45904159545898,0.247594118118286,0.738013863563538,1.37314033508301,0.171817928552628,0.684879899024963,1.34832000732422,0.245672941207886,0.846631646156311,1.27876091003418,0.169286459684372,0.776884615421295,2.55849647521973,0.36398121714592,0.701080918312073,2.64759635925293,0.322313904762268,0.148968189954758,2.04874038696289,0.413931488990784,1.82665920257568,1.04653549194336,0.153502643108368,0.898003876209259,0.477218627929688,0.158462196588516,0.927693367004395,1.00050735473633,0.0195139199495316,-1.19023370742798,1.76677703857422,0.0870932042598724,-1.35286664962769,1.72357749938965,0.090045690536499,-1.27091670036316,1.80202674865723,0.0741153061389923,-1.53348207473755,1.79272079467773,0.0645885765552521,-1.62520670890808,1.72202301025391,0.0412761867046356,-1.79400026798248,1.66917419433594,-0.0154451727867126,-2.34468388557434,-0.727453231811523,-0.0310313701629639,0.276387691497803,-0.772964477539063,-0.0249104499816895,0.393247783184052,-0.711076736450195,-0.0410696119070053,0.152307510375977,1.11265563964844,-0.067014753818512,-1.16359543800354, +-0.724784851074219,-0.0544418171048164,0.0282180905342102,-1.73799514770508,-0.145960360765457,0.245288908481598,-1.51821327209473,-0.171277821063995,-0.274653673171997,-1.73002243041992,-0.165841668844223,0.0279143452644348,-1.68451309204102,-0.171962589025497,-0.0889456868171692,-0.837564468383789,-0.08793094009161,-0.191559910774231,-1.29667091369629,-0.0567966997623444,0.666850090026855,-1.41751861572266,-0.0730462819337845,0.636899888515472,-1.28559875488281,-0.153905987739563,-0.362585783004761,0.931385040283203,-0.11119481921196,-1.42862200737,0.930011749267578,-0.126621544361115,-1.59312677383423,0.922607421875,-0.119767621159554,-1.5107262134552,1.57463455200195,-0.0830631256103516,-1.87327659130096,1.42226791381836,-0.00931119918823242,-1.99031043052673,-0.751613616943359,-0.131041839718819,-0.760508596897125,-0.525333404541016,-0.100356467068195,-0.696073114871979,-1.61991119384766,-0.108942091464996,0.495861947536469,-1.05038833618164,-0.0323611050844193,0.637010812759399,-1.17187690734863,-0.0429670512676239,0.666887760162354,-1.63800621032715,-0.223524659872055,0.382208049297333,-1.57437133789063,-0.207506358623505,0.475987732410431,-1.27967834472656,-0.159932598471642,0.631790339946747,-0.802331924438477,-0.130822896957397,0.382267951965332,-0.867942810058594,-0.129141926765442,0.47603839635849,-0.745964050292969,-0.145555943250656,0.162616908550262,-0.760868072509766,-0.13640233874321,0.275730311870575,-1.68974304199219,-0.250249743461609,0.162549316883087,-0.797700881958008,-0.172281011939049,-0.0570418834686279,-0.861335754394531,-0.188299313187599,-0.150821536779404,-0.945690155029297,-0.204875737428665,-0.226387232542038,-1.67483901977539,-0.259403377771378,0.0494359135627747,-1.2697868347168,-0.248492509126663,-0.306632310152054,-0.927524566650391,-0.277012407779694,-1.03630244731903,-0.808341979980469,-0.247561931610107,-0.85877537727356,-0.95574951171875,-0.299783021211624,-1.24907493591309,-0.721672058105469,-0.232199817895889,-0.795117497444153,-0.933151245117188,-0.307120472192764,-1.35507357120514, +-0.516460418701172,-0.204152628779411,-0.73438435792923,-0.408584594726563,-0.192925363779068,-0.740465879440308,-0.887226104736328,-0.311201184988022,-1.45343112945557,-0.638591766357422,-0.302684187889099,-1.65508008003235,-0.270666122436523,-0.260491937398911,-1.63367104530334,-0.0512847900390625,-0.215339094400406,-1.40478920936584,-0.129688262939453,-0.176929995417595,-0.897034883499146,-0.0274944305419922,-0.183340698480606,-1.08704197406769,1.17926979064941,-0.128683626651764,-1.90500402450562,1.25805282592773,-0.12254273891449,-1.93044233322144,0.956005096435547,-0.101232558488846,-1.34996938705444,1.34716415405273,-0.0355015695095062,-1.09682428836823,1.69568061828613,-0.015882596373558,-1.29061150550842,1.64385223388672,-0.0154538601636887,-1.22576308250427,1.50802230834961,-0.0213942676782608,-1.1318678855896,1.58048629760742,-0.0173149108886719,-1.17216193675995,0.0151195526123047,-0.0995362624526024,-1.32543087005615,0.0252037048339844,-0.0874820649623871,-1.20705676078796,-0.0214939117431641,-0.11396785825491,-1.43817234039307,-0.082733154296875,-0.13002672791481,-1.53942108154297,-0.165416717529297,-0.146878197789192,-1.62391471862793,-0.377025604248047,-0.179459795355797,-1.72616863250732,-0.669960021972656,-0.209658786654472,-1.70663833618164,-0.776523590087891,-0.216355413198471,-1.65317344665527,-0.868471145629883,-0.219357594847679,-1.57704067230225,-0.99040412902832,-0.213854670524597,-1.37357354164124,-0.642293930053711,-0.114910006523132,-0.71524977684021,-0.406808853149414,-0.0881377011537552,-0.703975260257721,-0.292884826660156,-0.0788887590169907,-0.738545477390289,-0.189479827880859,-0.0730903670191765,-0.797986924648285,-0.101970672607422,-0.0710439234972,-0.879210114479065,0.00823593139648438,-0.0784317553043365,-1.08920228481293,-0.953838348388672,-0.28957000374794,-1.140944480896,-0.878170013427734,-0.262762844562531,-0.940587759017944,-0.622661590576172,-0.217474922537804,-0.752922773361206,-0.304643630981445,-0.184376671910286,-0.770851254463196,-0.820354461669922,-0.311812877655029,-1.53903532028198, +-0.210037231445313,-0.178950846195221,-0.823961138725281,-0.736015319824219,-0.308923840522766,-1.6074366569519,-0.479122161865234,-0.287795513868332,-1.68253469467163,-0.371974945068359,-0.274935722351074,-1.67011058330536,-0.180458068847656,-0.245214879512787,-1.5751097202301,-0.106042861938477,-0.229898557066917,-1.49747085571289,-0.0190353393554688,-0.202293276786804,-1.30188262462616,-0.0109634399414063,-0.191439047455788,-1.19409954547882,-0.0677661895751953,-0.178419068455696,-0.986274659633636,-0.0349006652832031,-0.0728557631373405,-0.977993369102478,0.109586723148823,0.0321924164891243,0.00205987691879272,0.102514266967773,0.0740572959184647,0.459474802017212,0.159317016601563,0.0935666561126709,0.60249000787735,0.242996215820313,0.114683367311954,0.731378078460693,0.61876106262207,0.17944198846817,0.987576007843018,0.769527435302734,0.198728904128075,1.01853311061859,0.92371940612793,0.21558190882206,1.01937448978424,1.07541656494141,0.229353249073029,0.990068078041077,1.21878623962402,0.239513725042343,0.931740045547485,1.54669189453125,0.24520343542099,0.610060811042786,1.61497497558594,0.196727901697159,0.0102746486663818,1.47449493408203,0.15610183775425,-0.261628687381744,1.24027252197266,0.112322993576527,-0.457943886518478,0.947963714599609,0.0720562562346458,-0.548783719539642,0.793769836425781,0.0552032850682735,-0.549625158309937,0.642074584960938,0.0414319336414337,-0.520318627357483,0.369171142578125,0.0251122526824474,-0.376882255077362,0.258449554443359,0.0231910906732082,-0.268264502286911,0.43126106262207,0.0708684474229813,0.76927250623703,0.340457916259766,0.0518952161073685,0.675604641437531,0.538730621337891,0.0899709463119507,0.843191623687744,0.65873908996582,0.108468681573868,0.894520938396454,0.786672592163086,0.125650718808174,0.921287894248962,0.91761589050293,0.140856832265854,0.922463893890381,1.16847991943359,0.163102135062218,0.84884786605835,1.44799041748047,0.17059925198555,0.576369166374207,1.5309944152832,0.145615085959435,0.195693641901016,1.5079288482666,0.131245851516724,0.0666963756084442, +1.46015548706055,0.114685647189617,-0.0550503432750702,1.29870986938477,0.0775976479053497,-0.258535832166672,1.19123840332031,0.0584951192140579,-0.332454800605774,0.812353134155273,0.00760924443602562,-0.4117271900177,0.561489105224609,-0.0146360602229834,-0.338111162185669,0.229530334472656,-0.0172112360596657,0.0552142262458801,0.201503753662109,-0.00877510756254196,0.183752596378326,0.198974609375,0.0028509721159935,0.315043091773987,0.451208114624023,-0.020820377394557,-0.266147881746292,1.07122993469238,0.039997398853302,-0.383784204721451,-0.767780303955078,-0.0703708529472351,-0.0886687040328979,-0.930084228515625,-0.106101587414742,-0.274475932121277,-1.03995895385742,-0.123826757073402,-0.332597941160202,-1.16080474853516,-0.140076354146004,-0.362548053264618,-1.40708923339844,-0.164511919021606,-0.332708895206451,-1.61251449584961,-0.173810422420502,-0.191794127225876,-1.74639892578125,-0.155803427100182,0.151994585990906,-1.68969535827637,-0.126502171158791,0.392970681190491,-1.52739334106445,-0.0907714366912842,0.578777968883514,-0.939262390136719,-0.0255952179431915,0.57895565032959,-0.844961166381836,-0.023062601685524,0.496096134185791,-1.68206405639648,-0.241272747516632,0.247593402862549,-1.49001693725586,-0.190929919481277,0.55155348777771,-1.38984680175781,-0.174758747220039,0.604513704776764,-1.05517768859863,-0.137633815407753,0.604537546634674,-0.953889846801758,-0.131457075476646,0.55159193277359,-0.75848388671875,-0.157751753926277,0.0495015978813171,-1.04586029052734,-0.221046924591064,-0.27934741973877,-1.15602874755859,-0.235873058438301,-0.306624203920364,-1.63337516784668,-0.264982789754868,-0.0571017265319824,-1.38052940368652,-0.258171856403351,-0.279371410608292,-1.56776428222656,-0.266663759946823,-0.15087217092514,-1.4818172454834,-0.264348596334457,-0.226425647735596,-1.16592025756836,-0.147313162684441,0.631798565387726,0.871135711669922,-0.016688346862793,-1.42960977554321,0.86182975769043,-0.026215061545372,-1.52133429050446,0.870590209960938,-0.0338139533996582,-1.61329233646393, +0.998529434204102,-0.0425579100847244,-1.85599303245544,1.0695915222168,-0.0404145270586014,-1.91545867919922,1.15073776245117,-0.035797655582428,-1.96001195907593,1.23884582519531,-0.0288846790790558,-1.98794054985046,1.33052825927734,-0.0199413001537323,-1.99817097187042,1.51053428649902,0.00259712338447571,-1.96466064453125,1.59193801879883,0.0153260231018066,-1.92220771312714,1.66334915161133,0.0283863246440887,-1.86458265781403,1.7735424041748,0.056357204914093,-1.69152438640594,1.79326629638672,0.0817141830921173,-1.44152414798737,1.51311874389648,0.0836978927254677,-1.09480452537537,1.42501068115234,0.0767849162220955,-1.06687593460083,1.07191848754883,0.0325742214918137,-1.13260877132416,1.73398017883301,-0.0185847282409668,-1.36421489715576,1.75727844238281,-0.0234563648700714,-1.44374513626099,1.26495742797852,-0.0449874103069305,-1.10342133045197,1.04841613769531,-0.0787097811698914,-1.21485996246338,1.76468276977539,-0.0303103029727936,-1.52614557743073,1.75590515136719,-0.0388830900192261,-1.60824990272522,1.73840713500977,-0.0462793707847595,-1.66755187511444,1.69176864624023,-0.0598141849040985,-1.75908136367798,0.995521545410156,-0.090263694524765,-1.27779066562653,0.953311920166016,-0.131493136286736,-1.67265701293945,0.991611480712891,-0.134195283055305,-1.74626064300537,1.63887405395508,-0.0713681280612946,-1.82201194763184,1.42233276367188,-0.105090498924255,-1.93345057964325,1.34012603759766,-0.11457633972168,-1.94004762172699,1.10680389404297,-0.132763028144836,-1.86470997333527,-1.25274658203125,-0.5814089179039,3.14708113670349,-2.28094482421875,-1.05862045288086,2.46638584136963,-1.91996574401855,-1.5811505317688,2.08114790916443,-2.30192947387695,-1.7398020029068,1.77548265457153,-1.92554473876953,-1.8654373884201,1.81128823757172,-2.1718807220459,-2.13354349136353,1.46345710754395,1.15679168701172,-1.76325309276581,1.84007716178894,0.896915435791016,-1.12957298755646,2.41431140899658,1.22745132446289,-0.808651745319366,2.49315309524536,-0.378246307373047,-0.456945598125458,3.2524106502533, +-0.321422576904297,-0.690316677093506,3.05983304977417,1.13901138305664,-2.07676076889038,1.67108774185181,1.18463134765625,-2.64575386047363,1.41159987449646,0.974435806274414,-2.54724144935608,1.53212511539459,-0.0773754119873047,-3.26485633850098,1.40018391609192,-0.0462379455566406,-3.4872350692749,1.26412463188171,-2.01361465454102,-2.47211170196533,1.26436471939087,-1.72418403625488,-2.44714760780334,1.4239068031311,-1.5555305480957,-2.69951128959656,1.33433997631073,-1.47383499145508,-3.12087202072144,1.10123610496521,-1.30467224121094,-2.94959354400635,1.29160857200623,0.0339717864990234,6.04201078414917,-1.90017354488373,-0.660598754882813,6.05944156646729,-2.07942771911621,0.700981140136719,5.92220830917358,-1.6280859708786,1.3406982421875,5.71175098419189,-1.28123068809509,1.52709579467773,5.81148767471313,-1.46810173988342,1.88344192504883,5.40324020385742,-0.858145296573639,2.58490943908691,5.05167293548584,-0.486591100692749,2.66913032531738,4.53162670135498,0.154312044382095,2.83934593200684,3.97061324119568,0.732868313789368,3.15519332885742,3.31045937538147,1.30311906337738,2.42723846435547,1.6839200258255,2.65832901000977,2.15114784240723,1.83563756942749,2.60393810272217,1.63396835327148,0.983441829681396,3.15630006790161,1.39008331298828,1.1546413898468,3.08174896240234,1.10070419311523,0.658043622970581,3.35068321228027,0.59844970703125,0.423510581254959,3.46463441848755,0.0193977355957031,0.209013491868973,3.52755761146545,-0.513757705688477,0.352256536483765,3.39816951751709,-0.64923095703125,6.1864857673645,-2.3148820400238,-2.93792343139648,5.59914112091064,-2.27795696258545,-3.53967475891113,5.07388544082642,-1.80944728851318,-3.69500350952148,5.14113569259644,-2.01089668273926,-4.60868263244629,3.89739751815796,-0.954534769058228,-4.86644649505615,3.88994979858398,-1.1278623342514,-4.85482025146484,3.408123254776,-0.527131974697113,-5.12193298339844,3.30989217758179,-0.638345301151276,-4.91714859008789,2.19444966316223,0.617354094982147,-4.27223491668701,1.16295516490936,1.73544836044312, +-3.98342514038086,0.556794345378876,2.2647180557251,-2.40841865539551,0.0223802924156189,3.15555739402771,-1.90663528442383,-0.0293816328048706,3.31649684906006,0.917997360229492,0.000398650765419006,-1.3001354932785,0.0235443115234375,-0.0931695252656937,-1.26656651496887,0.864231109619141,-0.0216713845729828,-1.47522068023682,0.967649459838867,-0.0426725149154663,-1.82136178016663,1.03261947631836,-0.0418028682470322,-1.88745951652527,-0.213493347167969,-0.155327826738358,-1.65846526622772,0.882476806640625,-0.0113139599561691,-1.38494062423706,0.88166618347168,-0.0367959886789322,-1.6582510471344,1.10909271240234,-0.0384063571691513,-1.93972063064575,1.28445816040039,-0.0246469974517822,-1.9953088760376,-0.435604095458984,-0.186748415231705,-1.73577284812927,0.870925903320313,0.0632825642824173,-0.552998244762421,-0.554315567016602,-0.199615806341171,-1.73465704917908,-1.38342094421387,-0.41665917634964,-3.11559438705444,-0.82464599609375,-0.218332707881927,-1.61771869659424,-1.8668212890625,-0.454780250787735,-2.94837284088135,-1.00555419921875,-0.210168093442917,-1.31583774089813,-3.39414978027344,-0.484999626874924,-1.5143187046051,-0.968799591064453,-0.216647237539291,-1.4292688369751,-2.72680854797363,-0.493025779724121,-2.37207460403442,1.63257217407227,0.205642312765121,0.0853780210018158,2.62575531005859,0.268610179424286,-0.402380615472794,2.50323104858398,0.203841164708138,-0.955852627754211,1.42354202270508,0.145192742347717,-0.319200575351715,-3.21319961547852,-0.153468936681747,1.83233261108398,-1.90269088745117,0.0899045467376709,2.92688274383545,-0.722721099853516,0.242540240287781,3.19782638549805,-0.170040130615234,0.298847794532776,3.16201066970825,0.354377746582031,0.345303475856781,3.05314826965332,0.293947219848633,0.125592455267906,0.788949906826019,0.787818908691406,0.376568824052811,2.88659763336182,0.383541107177734,0.0613196492195129,0.724698543548584,0.197975158691406,0.103973716497421,0.669024527072906,0.302425384521484,0.0426859110593796,0.622463583946228,0.0849189758300781,0.065142884850502,0.384371399879456, +0.207340240478516,0.00972496718168259,0.380142569541931,0.0721817016601563,0.0494230389595032,0.230582475662231,0.197023391723633,-0.00333558022975922,0.249368906021118,0.0896720886230469,0.0370069369673729,0.0769586563110352,0.136716842651367,0.0283717587590218,-0.0705966949462891,0.2528076171875,-0.0201265551149845,-0.00646990537643433,0.211509704589844,0.0238493159413338,-0.206412851810455,0.311172485351563,0.0236134305596352,-0.325270652770996,0.568992614746094,0.0358724668622017,-0.494667530059814,0.877887725830078,0.0149267315864563,-0.414364159107208,1.02414321899414,0.0814399495720863,-0.537022173404694,1.17100524902344,0.101670749485493,-0.491382449865341,1.30586624145508,0.123197421431541,-0.417833030223846,1.51951599121094,0.166811466217041,-0.199275240302086,1.59009742736816,0.187222808599472,-0.0626657605171204,1.64530944824219,0.22136215865612,0.239166915416718,1.6278190612793,0.23377825319767,0.392790764570236,1.47716331481934,0.168592631816864,0.517206609249115,1.58077430725098,0.242413461208344,0.540346086025238,1.32818222045898,0.171018213033676,0.733182907104492,1.40631675720215,0.247171759605408,0.795020043849945,1.5059814453125,0.246935874223709,0.676162242889404,2.10988426208496,-0.884100317955017,-2.71650052070618,1.28561019897461,0.243112042546272,0.892351806163788,1.10868263244629,0.158709168434143,0.876416444778442,1.14849662780762,0.234912753105164,0.964416921138763,1.0002498626709,0.222888916730881,1.00844633579254,0.982643127441406,0.14753270149231,0.913402438163757,0.852081298828125,0.133539348840714,0.925100922584534,0.846565246582031,0.207502633333206,1.02274751663208,0.693347930908203,0.189345240592957,1.00677156448364,1.19124603271484,0.399186611175537,2.66198348999023,0.546485900878906,0.169114470481873,0.961131811141968,0.411624908447266,0.147587791085243,0.887582421302795,2.28788566589355,0.129841729998589,-1.50096321105957,1.79962539672852,0.0695716291666031,-1.5795955657959,1.62907409667969,0.0218460261821747,-1.89516615867615,1.55229759216309,0.00888904929161072,-1.9454470872879, +1.22479248046875,-0.0501880943775177,-1.11274075508118,1.14827346801758,-0.06125508248806,-1.14297330379486,-0.742738723754883,-0.0621417090296745,-0.0315647721290588,-0.714179992675781,-0.0473834872245789,0.0898082852363586,-1.56783676147461,-0.173088416457176,-0.236054360866547,-1.65159606933594,-0.173433303833008,-0.142518401145935,-0.799543380737305,-0.0790092423558235,-0.142260938882828,0.717241287231445,0.0478962883353233,-0.538696885108948,-1.22315979003906,-0.147347778081894,-0.366347432136536,-0.983230590820313,-0.115085557103157,-0.306883782148361,0.924291610717773,-0.123427599668503,-1.5520886182785,-1.09943771362305,-0.132197707891464,-0.351243317127228,0.431880950927734,0.0276731513440609,-0.422602355480194,-1.01578521728516,-0.20031613111496,-1.19727253913879,1.37661361694336,-0.0148129174485803,-1.99649953842163,-0.801609039306641,-0.139439642429352,-0.79223370552063,-0.698276519775391,-0.122829601168633,-0.734735250473022,-0.348892211914063,-0.0831080079078674,-0.718007445335388,-0.23951530456543,-0.0755349695682526,-0.765321671962738,1.11155891418457,0.0390112027525902,-1.1093692779541,1.03478240966797,0.0260542035102844,-1.15965044498444,0.401786804199219,-0.0225521624088287,-0.222446233034134,0.316762924194336,-0.0232117436826229,-0.121703386306763,0.212375640869141,-0.0134152173995972,0.118825912475586,0.242931365966797,0.0252645164728165,0.506121158599854,0.597446441650391,0.0993406921625137,0.871824622154236,0.722017288208008,0.117266900837421,0.911061704158783,1.41320610046387,0.171677812933922,0.632440149784088,1.51759338378906,0.161881282925606,0.391910821199417,1.52262878417969,0.138741105794907,0.130594164133072,1.53294563293457,0.151801645755768,0.261367797851563,1.48703765869141,0.123201556503773,0.00461557507514954,1.13252258300781,0.0491253584623337,-0.361087918281555,0.12739372253418,0.0835623890161514,0.532415151596069,1.46972846984863,0.0805137678980827,-1.0786794424057,-0.465879440307617,-0.0939122885465622,-0.696631908416748,-1.65793228149414,-0.117863789200783,0.446562886238098, +-1.23431396484375,-0.049525260925293,0.670649409294128,-1.44156265258789,-0.182733744382858,0.581084907054901,-1.53450393676758,-0.199227809906006,0.516349911689758,-1.33562088012695,-0.167121231555939,0.621497929096222,-1.10976028442383,-0.142066359519958,0.621514201164246,-1.00296783447266,-0.134080111980438,0.581116318702698,-0.832326889038086,-0.129483550786972,0.431110978126526,-0.748804092407227,-0.151314154267311,0.105644106864929,-0.826667785644531,-0.180160790681839,-0.105889141559601,-0.774864196777344,-0.164774850010872,-0.00499194860458374,-0.994144439697266,-0.213071942329407,-0.255918681621552,-0.901203155517578,-0.196577876806259,-0.191183745861053,-1.1000862121582,-0.228684425354004,-0.296331793069839,-1.65731048583984,-0.262665271759033,-0.00505518913269043,-1.32594680786133,-0.253739297389984,-0.296347975730896,-1.6033821105957,-0.266322106122971,-0.105944812297821,-1.4327392578125,-0.261725574731827,-0.255950093269348,-1.52704620361328,-0.266002714633942,-0.191228628158569,-0.943675994873047,-0.283545970916748,-1.08783984184265,-0.905593872070313,-0.270054429769516,-0.987004220485687,-0.957881927490234,-0.295005977153778,-1.19492387771606,-0.947469711303711,-0.303838789463043,-1.3026909828186,-0.570121765136719,-0.210593044757843,-0.740606546401978,-0.85621452331543,-0.311946928501129,-1.49812388420105,-0.255851745605469,-0.181251749396324,-0.794711887836456,-0.688636779785156,-0.306206554174423,-1.63403487205505,-0.533147811889648,-0.293418347835541,-1.67948889732361,-0.223865509033203,-0.252908498048782,-1.60699081420898,-0.0760040283203125,-0.222475573420525,-1.45272469520569,-0.167800903320313,-0.177503973245621,-0.858217597007751,-0.0322132110595703,-0.208582311868668,-1.3542891740799,-0.0119209289550781,-0.196553871035576,-1.24825310707092,-0.0447654724121094,-0.180462718009949,-1.0355339050293,1.19412612915039,-0.0326135456562042,-1.9761369228363,0.970664978027344,-0.133123904466629,-1.7103830575943,0.916679382324219,-0.0409818738698959,-1.74396765232086,1.4670524597168,-0.00348913669586182,-1.97966337203979, +0.863956451416016,-0.0302755981683731,-1.56750643253326,1.60802841186523,-0.0772261321544647,-1.84923720359802,0.941761016845703,-0.106364533305168,-1.38867092132568,1.66687774658203,-0.0655454397201538,-1.79186320304871,1.69443130493164,0.0348838865756989,-1.83075213432312,0.973983764648438,-0.095848336815834,-1.31289029121399,1.71330642700195,-0.0542295575141907,-1.72398161888123,1.74585723876953,0.0475015938282013,-1.75468099117279,0.969425201416016,0.0130163282155991,-1.22406423091888,1.07926368713379,-0.0728517174720764,-1.18763470649719,1.76231002807617,-0.0344009697437286,-1.56743371486664,1.76300048828125,-0.0266503095626831,-1.48478329181671,1.79990005493164,0.0781758427619934,-1.48731005191803,1.19680404663086,0.0513893961906433,-1.0751531124115,1.78219032287598,0.0846962034702301,-1.3965653181076,1.2872428894043,0.0627131387591362,-1.05831694602966,1.30587959289551,-0.0400761365890503,-1.09809875488281,1.74717712402344,0.0888821184635162,-1.31084883213043,1.37939834594727,0.0725472345948219,-1.0595076084137,1.69620513916016,0.0905727446079254,-1.23345470428467,1.6312370300293,0.0897030830383301,-1.16735684871674,1.55476379394531,0.0863066092133522,-1.11509561538696,-1.46436882019043,-0.168405026197433,-0.307029217481613,-1.71078109741211,-0.169419676065445,-0.0318573117256165,-1.34720611572266,-0.159655302762985,-0.35131824016571,-1.68570137023926,-0.255244642496109,0.105576992034912,-1.74195289611816,-0.161280751228333,0.0894976258277893,-1.21287155151367,-0.242507994174957,-0.310074508190155,-0.881290435791016,-0.0970058292150497,-0.235846877098083,-1.71473693847656,-0.134731307625771,0.335866808891296,-1.66084480285645,-0.231030836701393,0.330158114433289,-1.60904121398926,-0.215644866228104,0.43105536699295,-1.57618522644043,-0.0998671799898148,0.540148913860321,-0.715522766113281,-0.0355922877788544,0.214804410934448,-1.47424507141113,-0.0817874521017075,0.611185789108276,-0.746692657470703,-0.0274533480405807,0.336159348487854,-1.35803604125977,-0.0646753311157227,0.655545294284821,-0.805879592895508,-0.0234397202730179,0.446820378303528, +-1.22283554077148,-0.153297677636147,0.635240614414215,-0.889640808105469,-0.0237846225500107,0.540356338024139,-0.908660888671875,-0.129802972078323,0.516394734382629,-1.11026763916016,-0.0372177362442017,0.655620217323303,-0.993106842041016,-0.0284679979085922,0.611331164836884,0.02008056640625,-0.0825480371713638,-1.14767718315125,4.1961669921875e-05,-0.106499306857586,-1.38288235664368,-0.0101699829101563,-0.0751869082450867,-1.03239417076111,-0.0492057800292969,-0.121844567358494,-1.49057960510254,-0.0656356811523438,-0.0714687556028366,-0.926709175109863,-0.0961971282958984,-0.177236348390579,-0.939906895160675,-0.121639251708984,-0.138407692313194,-1.58406007289886,-0.141014099121094,-0.237511426210403,-1.53844380378723,-0.143430709838867,-0.0715868249535561,-0.836115479469299,-0.32025146484375,-0.267866432666779,-1.65480279922485,-0.319992065429688,-0.171725481748581,-1.7099277973175,-0.355775833129883,-0.188284859061241,-0.752690315246582,-0.425163269042969,-0.281607776880264,-1.67939496040344,-0.462379455566406,-0.198237717151642,-0.734337329864502,-0.584392547607422,-0.107386261224747,-0.702306091785431,-0.612903594970703,-0.205026760697365,-1.72395181655884,-0.586536407470703,-0.298402845859528,-1.67029762268066,-0.67340087890625,-0.224708631634712,-0.771172285079956,-0.724737167358398,-0.213451489806175,-1.68294262886047,-0.766849517822266,-0.23985081911087,-0.824445962905884,-0.780113220214844,-0.310800820589066,-1.57563197612762,-0.845611572265625,-0.255232572555542,-0.897658228874207,-0.889019012451172,-0.156353026628494,-0.87181282043457,-0.907432556152344,-0.219416737556458,-1.5316698551178,-0.955963134765625,-0.172690659761429,-0.96933650970459,-0.912982940673828,-0.309585332870483,-1.40553951263428,-0.998966217041016,-0.187603414058685,-1.07973575592041,1.67134475708008,-0.0153809925541282,-1.25692796707153,1.61346817016602,-0.0161005556583405,-1.19741678237915,1.42923736572266,-0.0275351703166962,-1.10642957687378,1.71662521362305,-0.0169540047645569,-1.32648885250092,1.74757385253906,-0.0207592248916626,-1.40342617034912, +1.1857738494873,-0.0556280910968781,-1.12596714496613,1.02041244506836,-0.0845324546098709,-1.24500870704651,0.939716339111328,-0.129318714141846,-1.6334456205368,1.38141250610352,-0.110001772642136,-1.9387731552124,1.21805572509766,-0.125857919454575,-1.91965508460999,1.04343795776367,-0.134624019265175,-1.81110882759094,-0.142204284667969,-0.583107650279999,2.86754989624023,-0.349250793457031,-3.17296409606934,1.20817565917969,-0.754467010498047,-3.11085915565491,1.16049718856812,-1.7084903717041,-2.21301555633545,1.33969187736511,-1.56365585327148,-2.46120548248291,1.23046636581421,-1.44211578369141,-2.82771730422974,1.30591154098511,-1.35918807983398,-2.72041177749634,1.15922856330872,-1.07418251037598,-2.95302772521973,1.1395308971405,-0.933784484863281,-0.641849458217621,2.86109566688538,-1.24761199951172,-0.751886188983917,2.73557186126709,-1.51972579956055,-0.916675627231598,2.54860234260559,-1.88808059692383,-1.46598637104034,2.20505404472351,-1.93367767333984,-1.71402430534363,1.94835591316223,-1.89434623718262,-2.03521013259888,1.6741931438446,-1.82159996032715,-1.90999484062195,1.53671085834503,-1.86807250976563,-1.58176755905151,1.81391453742981,1.0825023651123,-1.82218325138092,1.58846199512482,0.815902709960938,-2.78141570091248,1.48990416526794,0.760116577148438,-2.70033431053162,1.31569671630859,0.238256454467773,-3.05966854095459,1.26128625869751,0.258100509643555,-3.17109894752502,1.42952108383179,1.04991149902344,-1.48969900608063,1.81137561798096,0.999166488647461,-1.26128280162811,2.26658129692078,0.922967910766602,-1.15004432201385,2.11850380897522,0.557113647460938,-0.886452198028564,2.72751617431641,0.264457702636719,-0.777923583984375,2.89355182647705,-0.551286697387695,-0.572708964347839,2.91713714599609,1.00727272033691,-2.21893525123596,1.42493891716003,-1.71879386901855,-1.11565017700195,2.31598162651062,-1.83056449890137,-1.33198988437653,2.06858730316162,0.714012145996094,-0.911332011222839,2.39124774932861,0.501482009887695,-0.769396781921387,2.57494807243347,0.224040985107422,-0.658353805541992,2.73829770088196, +1.90775489807129,-1.04539561271667,1.71023488044739,2.13057708740234,-0.83839476108551,1.6075382232666,2.0988597869873,-0.600754141807556,1.86371898651123,2.3421802520752,-0.619357407093048,1.49582266807556,1.80030059814453,-0.577346324920654,2.19172215461731,2.53927612304688,-0.400046467781067,1.36251413822174,2.54068756103516,-0.155200615525246,1.6310727596283,2.53774642944336,-0.641071140766144,1.07826352119446,2.03300476074219,-0.37411293387413,2.12149000167847,1.92709541320801,-0.160653904080391,2.37829279899597,2.28014373779297,-0.153210371732712,2.01632952690125,2.74273681640625,-0.167406857013702,1.17903435230255,2.76828765869141,0.0836605578660965,1.43851947784424,2.87918853759766,-0.0073326975107193,1.02013087272644,2.51339721679688,0.0670192390680313,1.88228476047516,2.45260047912598,0.287372022867203,2.13385105133057,1.08654022216797,-0.679143786430359,2.66786217689514,1.50448989868164,-0.191937699913979,2.6921272277832,1.77522277832031,0.0374441295862198,2.63156747817993,1.61317443847656,0.252550005912781,2.8677453994751,2.07086753845215,0.273190557956696,2.52384448051453,2.35321998596191,0.508123219013214,2.382244348526,2.22672462463379,0.735093832015991,2.61340045928955,2.76227951049805,0.322182208299637,1.69800364971161,2.72092819213867,0.553954303264618,1.95339107513428,2.94170951843262,0.533561527729034,1.54204189777374,2.95870590209961,0.0675895214080811,0.855302095413208,3.02621078491211,0.220316842198372,0.858754456043243,3.21831703186035,0.549803972244263,0.643525958061218,2.64045333862305,0.784775197505951,2.20058941841125,2.52745628356934,1.01649916172028,2.42819762229919,2.82659149169922,0.992281019687653,2.05502557754517,3.23684692382813,0.955678820610046,1.21359467506409,3.39500617980957,0.899502873420715,0.373458325862885,3.52745246887207,1.22818779945374,0.0998413115739822,3.33729934692383,0.692791223526001,0.120098531246185,3.44098281860352,1.10967183113098,0.637479543685913,3.4523754119873,1.32504522800446,0.915837407112122,3.59200286865234,1.6427413225174,0.649468719959259,3.42141914367676,1.54474472999573,1.19624543190002, +3.62655258178711,1.56439077854156,-0.195746049284935,3.68967056274414,1.90920436382294,-0.508985638618469,3.56373596191406,1.36578941345215,-0.453009843826294,3.68071746826172,1.76865804195404,0.0720936805009842,3.69853401184082,1.98348617553711,0.354747116565704,3.76683044433594,2.33744859695435,0.0408881045877934,3.67022323608398,2.20399641990662,0.640632390975952,3.71416854858398,2.26372146606445,-0.835564792156219,3.69860458374023,2.61463379859924,-1.1640237569809,3.77418518066406,2.47398018836975,-0.56696605682373,3.79175186157227,2.69479990005493,-0.282889425754547,3.77289390563965,3.04818391799927,-0.610218465328217,3.75876998901367,2.91726994514465,0.00609599426388741,3.64153861999512,2.94863319396973,-1.48289954662323,3.54445648193359,3.26223087310791,-1.79062259197235,3.57013130187988,2.74148535728455,-1.73929274082184,3.6995964050293,3.16398954391479,-1.21756553649902,3.40884780883789,3.55193495750427,-2.08561897277832,3.45728492736816,3.78616523742676,-1.83515310287476,3.23626327514648,3.82065010070801,-2.36891984939575,3.34465980529785,3.32312059402466,-2.324622631073,3.7098503112793,3.3902485370636,-0.934729635715485,3.60378837585449,3.71663093566895,-1.25256431102753,3.66676712036133,3.61343741416931,-0.64436799287796,3.02825164794922,4.07127904891968,-2.64155268669128,3.05790901184082,4.32739162445068,-2.40619897842407,2.78625106811523,4.30335855484009,-2.90138459205627,2.98215103149414,3.81373047828674,-2.86442184448242,3.45586395263672,4.02296733856201,-1.55986607074738,3.26737022399902,4.30895662307739,-1.85572040081024,3.40126800537109,4.2467212677002,-1.27115976810455,2.51170349121094,4.51642608642578,-3.14628171920776,2.51321983337402,4.7838282585144,-2.92373943328857,2.20455932617188,4.7055811882019,-3.37865710258484,2.49735260009766,4.24597787857056,-3.35322523117065,3.03958702087402,4.57429647445679,-2.13921046257019,2.77470016479492,4.81653022766113,-2.40886116027832,2.97279357910156,4.79631996154785,-1.85250282287598,1.86477661132813,4.86592960357666,-3.60092306137085,1.8400764465332,5.13808631896973,-3.38489365577698, +1.49013519287109,4.99662637710571,-3.80911803245544,2.47489738464355,5.03320026397705,-2.66319346427917,2.14384841918945,5.22302913665771,-2.90204000473022,2.39777183532715,5.24914455413818,-2.37733960151672,1.07841110229492,5.09682655334473,-3.9992823600769,1.04263305664063,5.37402582168579,-3.77799654006958,0.642589569091797,5.16521692276001,-4.1645884513855,1.10737991333008,4.81179809570313,-4.20533657073975,1.78522491455078,5.38473701477051,-3.1252338886261,1.39849472045898,5.51721239089966,-3.329185962677,1.70208168029785,5.59225511550903,-2.83544421195984,0.195644378662109,5.20048236846924,-4.29821300506592,0.159730911254883,5.47690153121948,-4.06928777694702,-0.249069213867188,5.2019157409668,-4.3993501663208,0.983123779296875,5.61933946609497,-3.51030898094177,0.548433303833008,5.68599367141724,-3.66488552093506,0.903764724731445,5.81990623474121,-3.21080446243286,-0.678199768066406,5.16880369186401,-4.46719551086426,-0.733320236206055,5.44161367416382,-4.23788452148438,-1.10020065307617,5.10158443450928,-4.50424909591675,-0.625934600830078,4.88004970550537,-4.67340183258057,0.103752143681049,5.71204662322998,-3.78919792175293,-0.345521926879883,5.70379543304443,-3.88399028778076,0.0348777770996094,5.90202903747559,-3.47792744636536,-0.793983459472656,5.66753721237183,-3.95000791549683,-0.855510711669922,5.85101222991943,-3.6307487487793,-1.24072456359863,5.60295009613037,-3.98889517784119,-1.52352142333984,5.00069141387939,-4.513014793396,-1.94242477416992,4.86730527877808,-4.49239873886108,-1.61074066162109,5.27358198165894,-4.28714275360107,-1.68483543395996,5.5097188949585,-4.00229501724243,-1.74373054504395,5.70253372192383,-3.68364429473877,-2.12436676025391,5.38244485855103,-3.98583054542542,-0.0397186279296875,6.04296255111694,-3.15546035766602,0.389776229858398,6.02160024642944,-3.03897047042847,-0.115917213261127,6.13353681564331,-2.83476376533508,-0.475547790527344,6.03267908096313,-3.24455904960632,-0.913227081298828,5.99648475646973,-3.307293176651,-0.965057373046875,6.09421539306641,-2.98598837852478, +-1.35055923461914,5.93415307998657,-3.34433698654175,-2.35115814208984,4.70260286331177,-4.44130563735962,-2.75534820556641,4.50318479537964,-4.35547828674316,-2.46808433532715,4.97081232070923,-4.21623277664185,-2.557373046875,5.21573352813721,-3.93512201309204,-2.61578941345215,5.42052173614502,-3.61898040771484,-2.98169326782227,5.0100564956665,-3.8487594127655,-1.78535270690918,5.84545946121216,-3.35636448860168,-1.8116397857666,5.93878841400146,-3.03077340126038,-2.21579933166504,5.72524118423462,-3.33923625946045,-3.16061782836914,4.26565265655518,-4.23065423965454,-3.54631996154785,3.99591279029846,-4.0706729888916,-3.29635238647461,4.52278709411621,-4.00508594512939,-3.39517021179199,4.7658863067627,-3.72533130645752,-3.4522762298584,4.97742176055908,-3.41144800186157,-3.78745269775391,4.48654747009277,-3.56582570075989,-2.64009666442871,5.56833362579346,-3.28881454467773,-2.63553237915039,5.66690921783447,-2.96070909500122,-3.0564022064209,5.37359189987183,-3.20395112037659,-3.89181327819824,3.69987630844116,-3.87937021255493,-4.19772529602051,3.36865186691284,-3.64957094192505,-4.04074287414551,3.93745994567871,-3.64983320236206,-4.14819049835205,4.17537021636963,-3.37123107910156,-4.2076587677002,4.39291763305664,-3.06139087677002,-4.4694766998291,3.83350658416748,-3.14192271232605,-3.46287536621094,5.13986921310425,-3.08349776268005,-3.43631935119629,5.25618743896484,-2.75779509544373,-3.85109710693359,4.87064743041992,-2.92803311347961,-1.82452964782715,5.98281478881836,-2.71719169616699,-2.2197151184082,5.8665919303894,-2.69868516921997,-1.42114639282227,6.07224369049072,-2.70808362960815,-2.60733795166016,5.72398710250854,-2.65074491500854,-2.9929141998291,5.54742813110352,-2.56939458847046,-1.0089225769043,6.1344690322876,-2.67317962646484,-0.595771789550781,6.16827535629272,-2.61318492889404,-1.04917907714844,6.15288209915161,-2.36963105201721,-3.38195610046387,5.32934093475342,-2.45065832138062,-3.32003974914551,5.3880181312561,-2.15944385528564,-3.75962448120117,5.07633972167969,-2.29959678649902, +-0.189609527587891,6.17244291305542,-2.52880048751831,0.207096099853516,6.14792680740356,-2.41772413253784,-0.259681701660156,6.1923975944519,-2.2380895614624,0.808443069458008,5.96286058425903,-2.89406633377075,1.21108245849609,5.87018585205078,-2.72325015068054,0.70265007019043,6.05313968658447,-2.57728624343872,0.591875076293945,6.0956768989563,-2.27765464782715,0.965206146240234,6.01494026184082,-2.1144425868988,1.59249114990234,5.74701023101807,-2.52902364730835,1.95048332214355,5.59511280059814,-2.31352162361145,1.4648551940918,5.85068511962891,-2.22288703918457,1.32756614685059,5.90495920181274,-1.93394505977631,1.67129898071289,5.76768159866333,-1.73376786708832,1.1897087097168,5.94100952148438,-1.65700817108154,2.28287124633789,5.41626405715942,-2.07887554168701,2.58620452880859,5.2104811668396,-1.82654404640198,2.1424446105957,5.53481483459473,-1.78465020656586,1.98873901367188,5.605055809021,-1.51151657104492,2.27796936035156,5.4172101020813,-1.26865875720978,2.8570384979248,4.977783203125,-1.55798923969269,3.09261322021484,4.72071027755737,-1.27526807785034,2.7069263458252,5.11499738693237,-1.27094829082489,2.53706550598145,5.20426654815674,-1.00665712356567,2.76407623291016,4.96948909759521,-0.73216050863266,3.2901725769043,4.44180345535278,-0.980439305305481,3.4481086730957,4.14133596420288,-0.674001812934875,3.1372184753418,4.60076236724854,-0.702419340610504,2.95705032348633,4.71613693237305,-0.45181742310524,3.11355209350586,4.44018697738647,-0.158185973763466,3.56481552124023,3.81957912445068,-0.356456279754639,3.63844299316406,3.48160457611084,-0.0334368422627449,3.41570091247559,3.9978985786438,-0.0849547386169434,3.23113632202148,4.13761615753174,0.156177863478661,3.30904006958008,3.81725549697876,0.476383090019226,3.03984451293945,4.26200675964355,0.38181871175766,3.66714668273926,3.132483959198,0.289422512054443,3.64998245239258,2.77834534645081,0.607999622821808,3.52651214599609,3.3271381855011,0.554200887680054,3.34650039672852,3.48793292045593,0.787540555000305,3.33853149414063,3.15297102928162,1.09268510341644, +3.15696334838867,3.63337635993958,1.0068781375885,3.58600425720215,2.4253146648407,0.918171346187592,3.48089981079102,2.08472108840942,1.20821797847748,3.45345687866211,2.63376998901367,1.17402589321136,3.2801513671875,2.81569170951843,1.39485490322113,3.17896270751953,2.48623752593994,1.68048691749573,3.34035491943359,1.76789045333862,1.46641945838928,3.12317657470703,1.40345466136932,1.74899303913116,3.21284866333008,1.98204052448273,1.71634793281555,3.04257583618164,2.17475080490112,1.93602299690247,2.83793067932129,1.82285106182098,2.20743060112,2.56676864624023,1.44173276424408,2.48706674575806,2.38854217529297,1.25098252296448,2.62481951713562,2.08474349975586,0.973951041698456,2.81358790397644,1.79217338562012,0.736175060272217,2.95361852645874,1.92756843566895,1.20551037788391,3.00776362419128,1.47674560546875,0.517036437988281,3.07325959205627,1.18434143066406,0.348815351724625,3.16871523857117,1.35678100585938,0.802566945552826,3.26738810539246,0.898971557617188,0.245805472135544,3.26263785362244,0.902763366699219,-0.0363219976425171,3.12646436691284,0.614570617675781,0.174014896154404,3.34369421005249,0.325071334838867,0.0994556248188019,3.40055108070374,0.330120086669922,-0.107676602900028,3.30131506919861,0.0460491180419922,0.0321435034275055,3.43685293197632,0.30879020690918,0.308232218027115,3.50319743156433,0.300743103027344,-0.469059199094772,3.12483167648315,-0.206924438476563,-0.0179061591625214,3.45624542236328,-0.185476303100586,-0.176351875066757,3.37524652481079,-0.451974868774414,-0.0576661825180054,3.46008062362671,-0.707225799560547,-0.0941077172756195,3.44971108436584,-0.684547424316406,-0.236971825361252,3.37853026390076,-0.725559234619141,0.0546540021896362,3.52018523216248,-1.15528106689453,-0.29795715212822,3.32391595840454,-1.18331146240234,-0.15227422118187,3.39578437805176,-1.40218925476074,-0.175054967403412,3.35295104980469,-1.58363342285156,-0.360300630331039,3.21743392944336,-1.43889045715332,-0.635685920715332,3.07876348495483,-1.62735748291016,-0.196625918149948,3.29736661911011, +-1.85981369018555,-0.213575452566147,3.22762751579285,-1.66484069824219,-0.0313984751701355,3.37934875488281,-2.03415298461914,-0.428214371204376,3.04615879058838,-2.10055160522461,-0.222491651773453,3.14232730865479,-2.35758972167969,-0.227538853883743,3.03219842910767,-2.55638122558594,-0.511111557483673,2.75554895401001,-2.63894653320313,-0.232880502939224,2.88796901702881,-2.94709968566895,-0.20232892036438,2.72270035743713,-2.67868041992188,0.0626649260520935,3.04615473747253,-2.33755683898926,-1.20864939689636,2.2983021736145,-3.04435539245605,-0.843800187110901,2.16468524932861,-3.11092948913574,-1.28204083442688,1.61795735359192,-2.33269500732422,-1.55591952800751,1.94841289520264,-3.2845287322998,-0.0996952652931213,2.54945421218872,-3.59885787963867,0.0332595705986023,2.38236284255981,-3.3333854675293,-0.394109785556793,2.31553363800049,-3.40118789672852,-0.660462558269501,2.03305053710938,-3.71865272521973,-0.496783435344696,1.88050842285156,-3.44754981994629,-0.900027275085449,1.73863995075226,-2.94383811950684,-1.67851948738098,1.21434807777405,-2.24542617797852,-1.93734288215637,1.60885214805603,-3.24875068664551,-1.51035761833191,1.01150131225586,-3.50822067260742,-1.34287428855896,0.814942419528961,-3.36305809020996,-1.31379151344299,1.22590124607086,-3.43208312988281,-1.11407518386841,1.4689359664917,-3.70051574707031,-0.950944840908051,1.3246111869812,-3.70427703857422,-1.19798719882965,0.64214289188385,-3.55971908569336,-1.3850302696228,0.384642779827118,-3.88220024108887,-1.03768336772919,0.453624606132507,-3.82776260375977,-1.00835585594177,0.906405746936798,-4.08727645874023,-0.823950052261353,0.20991176366806,-3.93196296691895,-0.987639844417572,-0.0605530738830566,-4.28353500366211,-0.598344385623932,-0.0406914949417114,-4.2265625,-0.652422547340393,0.485703587532043,-3.90911483764648,-0.813549280166626,1.18419420719147,-4.1046257019043,-0.664202153682709,1.01195216178894,-3.94928741455078,-0.602057874202728,1.46713244915009,-4.33379650115967,-0.465215861797333,0.772152185440063,-4.55386352539063,-0.25162798166275,0.517072081565857, +-4.40198612213135,-0.254085630178452,1.06044912338257,-3.94924545288086,-0.362374067306519,1.74684238433838,-4.16154670715332,-0.214588463306427,1.58346545696259,-3.91128540039063,-0.106195151805878,2.00807094573975,-3.83771514892578,0.154775619506836,2.2355625629425,-4.06338310241699,0.301581978797913,2.0615382194519,-3.74995040893555,0.414756715297699,2.44831824302673,-4.3381404876709,0.510405957698822,1.8127772808075,-4.60139656066895,0.735927939414978,1.54512119293213,-4.25089359283447,0.761288583278656,2.01719117164612,-4.40220642089844,0.249206900596619,1.59846377372742,-4.42413902282715,-0.0107835531234741,1.3417866230011,-4.67789268493652,0.209303259849548,1.08016991615295,-4.79256439208984,0.932829022407532,1.31440806388855,-4.94684219360352,1.15181827545166,1.06970655918121,-4.85329532623291,0.669820308685303,1.10826373100281,-4.86367130279541,0.405934512615204,0.85697865486145,-4.82086849212646,0.157669723033905,0.580554604530334,-5.01836776733398,0.630668759346008,0.61612868309021,-4.72206115722656,-0.0584748387336731,0.29899275302887,-4.58689308166504,-0.24450358748436,0.0197106599807739,-4.86968612670898,0.163339793682098,0.0624393820762634,-4.43500328063965,-0.402420520782471,-0.249875903129578,-4.27713203430176,-0.546747922897339,-0.513606190681458,-4.56952953338623,-0.184947043657303,-0.47544276714325,-5.17887020111084,0.93506395816803,0.301535606384277,-5.31530952453613,1.28467488288879,-0.0494078397750854,-5.16514205932617,1.19350814819336,0.551823914051056,-5.13502883911133,0.685718476772308,0.0284864902496338,-5.02803230285645,0.46291446685791,-0.248059391975403,-4.8804759979248,0.268744945526123,-0.518990278244019,-5.16766452789307,0.807021796703339,-0.594808042049408,-5.09942817687988,1.44360935688019,0.760083794593811,-5.22420501708984,1.7777247428894,0.418389618396759,-5.02276802062988,1.68268585205078,0.948153436183929,-4.71495246887207,0.105305731296539,-0.775193333625793,-4.55160140991211,-0.0453431904315948,-1.02134966850281,-4.84509086608887,0.43252632021904,-1.10758829116821,-5.29504585266113,2.12368774414063,0.0774716734886169, +-5.315185546875,2.47202157974243,-0.256361037492752,-5.37305545806885,1.89215171337128,-0.143770784139633,-5.39781475067139,1.64505743980408,-0.399311006069183,-5.36221313476563,1.39696526527405,-0.670855760574341,-5.42781257629395,2.01342749595642,-0.744293332099915,-5.28785705566406,2.81324815750122,-0.576798915863037,-5.37217140197754,2.61076307296753,-0.815225422382355,-5.21621036529541,3.14539408683777,-0.875528275966644,-5.25914192199707,1.16243696212769,-0.940107583999634,-5.1093921661377,0.94818127155304,-1.19690632820129,-5.30188274383545,1.52990102767944,-1.2833366394043,-4.93375396728516,0.760905623435974,-1.43109011650085,-4.75226497650146,0.585048913955688,-1.65459871292114,-4.98069953918457,1.10115528106689,-1.75499773025513,-4.98568248748779,1.46399188041687,-2.08861136436462,-4.94149303436279,1.83932435512543,-2.42355155944824,-5.15733337402344,1.67739260196686,-1.87242865562439,-4.8107442855835,1.25983941555023,-2.28997564315796,-5.40673637390137,2.38700151443481,-1.08047366142273,-5.38372230529785,2.15058994293213,-1.35565388202667,-5.33548355102539,2.76251745223999,-1.40258252620697,-5.1033935546875,3.46648454666138,-1.14423525333405,-5.17790699005127,3.32054901123047,-1.41548895835876,-4.93827342987061,3.79284977912903,-1.40092957019806,-5.29530048370361,1.91015601158142,-1.62387466430664,-5.23806762695313,2.29753732681274,-1.95756614208221,-4.84092617034912,2.2170627117157,-2.75143575668335,-4.68248844146729,2.6006031036377,-3.06927943229675,-5.00466156005859,2.44527816772461,-2.53592348098755,-4.67032241821289,1.99560678005219,-2.95085072517395,-5.2149543762207,3.13671278953552,-1.70535326004028,-5.20258903503418,2.92273473739624,-1.99866485595703,-5.04246520996094,3.50960302352905,-1.9917494058609,-4.70971012115479,4.14081811904907,-1.66362392902374,-4.77757835388184,4.03402137756348,-1.9543844461441,-4.42991065979004,4.48375940322876,-1.91088283061981,-5.1288537979126,2.68637990951538,-2.28026103973389,-4.96488666534424,3.07509922981262,-2.58836269378662,-4.46468544006348,2.99334740638733,-3.37409973144531, +-4.62641334533691,3.22328305244446,-3.14892435073853,-4.7434024810791,3.46211266517639,-2.87827444076538,-4.80869197845459,3.6885232925415,-2.57819795608521,-4.21265029907227,4.56941270828247,-2.73813557624817,-4.17613506317139,4.70380449295044,-2.41893982887268,-4.537428855896,4.23874044418335,-2.5162296295166,-4.81532859802246,3.88120818138123,-2.26473784446716,-4.1110782623291,4.79503917694092,-2.12127208709717,3.28420639038086,1.36987590789795,-0.599889636039734,3.65541648864746,2.05977964401245,-1.09460353851318,3.41936874389648,2.01924014091492,-1.16850805282593,3.32953262329102,2.6945104598999,-1.79317831993103,3.08700370788574,3.25135707855225,-2.34881019592285,2.31407165527344,4.0698299407959,-3.30648016929626,1.88095474243164,4.59040355682373,-3.7991898059845,0.223926544189453,4.91236877441406,-4.50994682312012,-1.43221282958984,4.71741151809692,-4.71697807312012,-2.22404098510742,4.42854881286621,-4.64538764953613,-2.12596130371094,4.28027153015137,-4.49845552444458,-3.01365661621094,4.00787162780762,-4.43809747695923,-3.7335090637207,3.46940398216248,-4.09153270721436,-3.55563163757324,3.37276983261108,-3.97856640815735,-4.29561424255371,2.77167963981628,-3.58468675613403,-4.46212768554688,2.01059293746948,-2.9233512878418,-2.49215316772461,5.64359188079834,-2.11155128479004,-3.85986709594727,4.81197786331177,-1.63908016681671,-4.96984100341797,2.50871086120605,0.304052472114563,-3.11250877380371,0.463094413280487,2.67760753631592,-2.85311698913574,-0.0742989778518677,2.26518321037292,-2.40260887145996,0.0093841552734375,2.64157509803772,-1.30953598022461,0.171696603298187,3.11711740493774,-4.02682495117188,-0.164333075284958,-0.522028207778931,-3.91338348388672,-0.331971406936646,-0.629255056381226,-4.32245540618896,0.586762964725494,0.503059566020966,-4.57256031036377,1.04049324989319,0.0297127962112427,-4.24911594390869,0.0931282043457031,-1.11111211776733,-4.28459167480469,0.23972561955452,-0.947436451911926,-4.51714324951172,0.811706185340881,-1.52508473396301,-4.50266075134277,0.669039249420166,-1.69944584369659, +-4.76140689849854,1.64863383769989,-0.573920011520386,-4.77595996856689,2.2789900302887,-1.16651737689972,-4.58091449737549,1.44893217086792,-2.12536525726318,-4.58304977416992,1.30693864822388,-2.30086636543274,-4.62659358978271,2.8833794593811,-1.71134674549103,-4.4524621963501,2.13568305969238,-2.73555517196655,-4.26601123809814,3.51600313186646,-2.23276162147522,-4.08709716796875,2.84380125999451,-3.31204056739807,-3.71300888061523,4.13918018341064,-2.6904673576355,-4.09992599487305,2.73469948768616,-3.51019096374512,-3.54583168029785,3.47764039039612,-3.7795832157135,-3.03956031799316,4.6321587562561,-3.00445294380188,-2.87075042724609,3.98358726501465,-4.10164737701416,-2.31932067871094,4.99712181091309,-3.1862690448761,-2.87893676757813,3.88726711273193,-4.30409479141235,-2.12815475463867,4.37059116363525,-4.29574012756348,-1.59561347961426,5.23725175857544,-3.24390935897827,-0.844573974609375,5.37750768661499,-3.20054841041565,-1.3780403137207,4.61936473846436,-4.358811378479,-0.620601654052734,4.76031732559204,-4.31735181808472,-1.36648750305176,4.53403806686401,-4.56524324417114,-0.601314544677734,4.67537069320679,-4.52198314666748,-3.70172119140625,-0.440117418766022,-0.680210709571838,-3.58669471740723,-0.464416801929474,-1.07472765445709,-3.71449279785156,-0.769300162792206,-1.57124948501587,-3.11359405517578,-0.497151970863342,-1.95939064025879,-3.37101364135742,-0.768297553062439,-2.11250710487366,-2.92755508422852,-0.728210031986237,-2.60345602035522,-2.29048156738281,-0.478659689426422,-2.71529865264893,-2.46113395690918,-0.693338751792908,-2.96420359611511,-0.812873840332031,-0.364303171634674,-3.21297478675842,-0.543510437011719,-0.336740136146545,-3.22944402694702,-0.550689697265625,-0.54544872045517,-3.54002785682678,-0.0751380920410156,-0.283740431070328,-3.20264220237732,0.400588989257813,-0.221683144569397,-3.0886664390564,0.901466369628906,-0.14947310090065,-2.88934969902039,1.01138114929199,-0.341744005680084,-3.20255851745605,1.31093978881836,-0.0832073986530304,-2.65265035629272,1.48015975952148,-0.277002662420273,-2.9428768157959, +2.2744312286377,-0.854634582996368,-2.35942935943604,1.85074996948242,0.0226552188396454,-2.14549446105957,3.03786659240723,0.0706306099891663,-0.388764649629593,3.07108688354492,0.110935881733894,0.223620384931564,2.64762687683105,0.307642966508865,-0.00860369205474854,-0.305706024169922,6.06464767456055,-2.00204348564148,0.369087219238281,5.99342155456543,-1.77388668060303,1.02917098999023,5.82914590835571,-1.4644627571106,1.62424850463867,5.56912422180176,-1.07815730571747,2.77374458312988,4.25851440429688,0.441176205873489,2.86994361877441,3.67558932304382,1.02241969108582,2.57394409179688,2.44440388679504,2.12498784065247,0.687295913696289,0.748225808143616,3.30553960800171,0.208541870117188,0.552888154983521,3.38144207000732,-0.290603637695313,0.402050316333771,3.40415978431702,2.03572082519531,0.656603574752808,2.00591635704041,2.81600952148438,1.66176676750183,1.16368079185486,2.94804191589355,1.96742284297943,0.915523409843445,3.04713439941406,2.28154325485229,0.642952263355255,2.99148178100586,0.906493782997131,0.0811402201652527,3.10828971862793,2.60081028938293,0.353346049785614,3.12651634216309,2.92190909385681,0.0540850274264812,3.00509262084961,0.779612898826599,-0.119445413351059,3.25181198120117,1.50708770751953,-0.410955429077148,3.10224914550781,3.23600506782532,-0.247081145644188,3.03592300415039,3.534264087677,-0.542401850223541,3.35570907592773,2.15313506126404,-0.987370610237122,2.93044662475586,3.81190848350525,-0.827841520309448,2.78873825073242,4.06415939331055,-1.09936201572418,3.28273773193359,2.81338405609131,-1.60343098640442,2.61521530151367,4.29481554031372,-1.3581714630127,2.4143009185791,4.50767612457275,-1.60547840595245,3.05118179321289,3.36346125602722,-2.15743327140808,2.18634033203125,4.70096921920776,-1.83988761901855,1.93167877197266,4.87292289733887,-2.06000304222107,2.70502662658691,3.80847072601318,-2.65589499473572,1.65026473999023,5.02324628829956,-2.26678967475891,1.3420524597168,5.15164709091187,-2.46121096611023,2.74595069885254,3.69979166984558,-2.84642744064331,2.25783920288086,4.17300176620483,-3.11046504974365, +1.0098876953125,5.25608110427856,-2.64082074165344,0.656620025634766,5.33450508117676,-2.80317354202271,1.68238067626953,4.47189474105835,-3.52458190917969,0.289009094238281,5.38625383377075,-2.94313216209412,-0.0861797332763672,5.41066551208496,-3.05556154251099,1.7398624420166,4.37782716751099,-3.72593593597412,0.962249755859375,4.6880087852478,-3.89452266693115,1.0049877166748,4.60437154769897,-4.10199451446533,0.158123016357422,4.7850227355957,-4.16848087310791,0.186031341552734,4.70434856414795,-4.37800884246826,-0.228282928466797,-3.95312905311584,-1.97028923034668,0.0445365905761719,-3.69293642044067,-1.90125417709351,-0.261602401733398,-3.46644258499146,-2.59145021438599,-0.559856414794922,-3.41105365753174,-3.22997283935547,-0.270483016967773,-3.23957967758179,-3.06518220901489,-0.240423202514648,-2.96442103385925,-3.43926000595093,-0.519163131713867,-3.05419015884399,-3.67719292640686,-0.198745727539063,-2.65804171562195,-3.55400848388672,-0.464633941650391,-2.68574786186218,-3.86154007911682,-0.179042816162109,-2.34323978424072,-3.49871373176575,-0.437042236328125,-2.29337096214294,-3.79164028167725,-0.237672805786133,-2.10278677940369,-3.31440663337708,-0.286500930786133,-2.04568862915039,-3.20928049087524,-0.594602584838867,-1.941330909729,-3.40016388893127,-0.393007278442383,-2.01647925376892,-3.01223945617676,-0.868392944335938,-1.96381270885468,-2.90430378913879,-0.520734786987305,-2.05754470825195,-2.79025888442993,-0.999187469482422,-2.14879488945007,-2.44436407089233,-0.63633918762207,-2.20649075508118,-2.41914892196655,-0.671291351318359,-2.39493370056152,-1.97329092025757,-0.973167419433594,-2.5842297077179,-1.4245879650116,-0.630828857421875,-2.57134008407593,-1.55203008651733,-0.4461669921875,-2.68945980072021,-1.13421940803528,-0.771884918212891,-2.74209451675415,-0.950137376785278,0.192520141601563,-3.55427408218384,-1.50617289543152,0.0266876220703125,-3.73903107643127,-1.3440568447113,0.112216949462891,-3.1169228553772,-1.22336387634277,-0.0686397552490234,-3.26831007003784,-1.02458810806274, +-0.109466552734375,-2.83793067932129,-1.03815484046936,0.489719390869141,-2.89203715324402,0.362143754959106,0.337247848510742,-3.38157486915588,1.30946099758148,0.595321655273438,-2.75619626045227,-0.0616056323051453,1.01689338684082,-2.6604585647583,0.0522118210792542,0.71015739440918,-2.81411361694336,-0.376982778310776,1.24078750610352,-2.62387132644653,0.530998826026917,0.990013122558594,-2.93306088447571,1.37462306022644,0.839189529418945,-2.99104619026184,-0.656431198120117,1.25681304931641,-2.77714848518372,-0.544557273387909,0.941499710083008,-3.19500517845154,-0.839874625205994,0.417118072509766,-3.17197251319885,-0.776415586471558,1.39956665039063,-2.50091814994812,0.185214996337891,1.69942474365234,-2.25873184204102,0.367140531539917,1.54608917236328,-2.44334888458252,-0.133131921291351,1.31810569763184,-2.32323122024536,1.48093521595001,1.68988418579102,-2.10443520545959,0.891191005706787,1.87678909301758,-1.5302619934082,1.31106996536255,2.09094429016113,-1.34903264045715,1.13557767868042,2.14522171020508,-1.08153533935547,1.3521534204483,2.29426765441895,-1.13675665855408,0.965743362903595,2.0146427154541,-1.63387417793274,0.899463176727295,1.89429092407227,-1.95340609550476,0.624270021915436,2.10188484191895,-1.77393400669098,0.325286328792572,2.47965240478516,-0.902105331420898,0.804198801517487,2.42502784729004,-1.15747427940369,0.502799570560455,2.67081832885742,-0.618497490882874,0.626751184463501,2.82400131225586,-0.370568871498108,0.465064972639084,2.63396453857422,-0.816506624221802,0.312366276979446,2.7014045715332,-0.424747288227081,0.919548511505127,2.31723213195801,-1.50470006465912,0.09079509973526,2.57572364807129,-1.06012344360352,-0.0996690988540649,2.75856590270996,-0.654854774475098,-0.239949449896812,1.66398620605469,-2.49504327774048,-0.450235694646835,1.75606536865234,-2.65092945098877,-0.75514805316925,2.10495185852051,-1.9961724281311,-0.382589787244797,2.95208930969238,-0.128196731209755,0.336133569478989,2.93598175048828,-0.211576297879219,0.0166123509407043,2.95918273925781,-0.0430344939231873,0.638144612312317, +2.90184783935547,-0.291390508413315,-0.337926864624023,2.84921646118164,-0.34497332572937,-0.660994350910187,2.7321605682373,-0.399216920137405,-1.16680335998535,2.62532806396484,-0.433160245418549,-1.53276944160461,2.57842636108398,-0.789657592773438,-1.44548082351685,2.88051605224609,0.0105526447296143,-1.03244113922119,2.6296443939209,-0.0584318935871124,-1.63827657699585,2.37303924560547,-0.485859304666519,-2.08295011520386,2.01770782470703,-0.52959018945694,-2.67301607131958,1.73855590820313,-0.567689657211304,-2.99199914932251,2.23130226135254,-0.510587275028229,-2.33077573776245,2.16211128234863,-0.158818811178207,-2.33459329605103,2.48758316040039,-1.34979856014252,-0.546992540359497,2.42904281616211,-1.80396914482117,-1.04747462272644,2.55207061767578,-1.22842335700989,-1.02719604969025,2.56838989257813,-1.04232358932495,-1.38460326194763,2.52790832519531,-1.19785404205322,-1.62354350090027,2.1591682434082,-1.13073742389679,-2.80554056167603,2.18871688842773,-1.35282683372498,-2.95009708404541,2.32270622253418,-1.25881028175354,-2.48003625869751,2.45143890380859,-1.34948527812958,-2.05371451377869,2.45516586303711,-1.91390204429626,-2.3930881023407,2.4871940612793,-1.86752104759216,-1.71788954734802,2.3684253692627,-2.21406435966492,-1.40883469581604,2.36376190185547,-2.56263780593872,-1.77868330478668,2.1351203918457,-2.5565710067749,-1.16816771030426,1.81816291809082,-2.89359283447266,-1.04476583003998,1.87749862670898,-3.22047853469849,-1.36018311977386,1.43960189819336,-3.19769144058228,-1.007000207901,1.03375625610352,-3.44555330276489,-1.01808142662048,1.11836814880371,-3.76340746879578,-1.24704122543335,2.3766975402832,-2.97131752967834,-2.2128324508667,2.38895225524902,-3.41050338745117,-2.68318462371826,2.20333290100098,-3.30191659927368,-1.9559428691864,2.45805168151855,-2.64616751670837,-2.50641345977783,2.45265769958496,-2.34198260307312,-2.81432509422302,2.36661529541016,-2.05130243301392,-3.11278939247131,2.46673965454102,-2.79364776611328,-3.26996088027954,1.94198036193848,-3.62264490127563,-1.75718653202057, +1.98702812194824,-4.05674886703491,-2.2128643989563,1.60077667236328,-3.91529202461243,-1.6299774646759,1.19386291503906,-4.17066526412964,-1.58275127410889,1.25637435913086,-4.60332059860229,-1.98823952674866,0.746040344238281,-4.35675048828125,-1.63273203372955,1.29934310913086,-5.01879692077637,-2.41471266746521,1.6932201385498,-4.77521657943726,-2.5091757774353,1.32609367370605,-5.39893913269043,-2.82198905944824,2.01025390625,-4.48241186141968,-2.67853808403015,2.01883316040039,-4.87628936767578,-3.11623096466064,2.24295425415039,-4.16522932052612,-2.90266752243042,2.39129638671875,-3.85047960281372,-3.15903353691101,2.46730995178223,-3.54287266731262,-3.43896722793579,2.38366889953613,-4.25464057922363,-3.59993624687195,1.33212471008301,-5.71459627151489,-3.17458820343018,1.712646484375,-5.48427677154541,-3.29381561279297,1.32047653198242,-5.99896335601807,-3.50364542007446,0.895595550537109,-5.85809516906738,-3.1393461227417,1.29166030883789,-6.2811861038208,-3.84418320655823,1.66867446899414,-6.07001352310181,-3.97080397605896,1.23743057250977,-6.55647087097168,-4.19221925735474,2.01446533203125,-5.19674253463745,-3.47950792312622,1.99826049804688,-5.48878145217896,-3.81214737892151,2.23207473754883,-4.8852481842041,-3.71103954315186,2.36869049072266,-4.58618927001953,-3.96510481834412,2.44256973266602,-4.29587078094482,-4.23618602752686,2.34663391113281,-4.886634349823,-4.29632616043091,1.15901947021484,-6.810875415802,-4.54970645904541,1.5236701965332,-6.66283798217773,-4.69966411590576,1.09024047851563,-7.00943517684937,-4.90523767471313,1.96666526794434,-5.79430723190308,-4.16023778915405,1.91376495361328,-6.10517311096191,-4.51938152313232,2.1796989440918,-5.49057626724243,-4.39014053344727,1.82932662963867,-6.40802812576294,-4.88489723205566,2.05116653442383,-6.10254859924316,-5.09476184844971,1.7248649597168,-6.66049766540527,-5.24586963653564,1.07052612304688,-7.13088607788086,-5.23697805404663,1.380615234375,-7.01929569244385,-5.43457794189453,1.07464981079102,-7.19246292114258,-5.5487380027771,0.722873687744141,-7.12543296813965,-5.04187822341919, +2.3133659362793,-5.19697523117065,-4.63626289367676,2.38618469238281,-4.91143226623535,-4.89734935760498,2.26277542114258,-5.50730276107788,-4.9787540435791,1.08358764648438,-7.2067756652832,-5.84355783462524,1.33095932006836,-7.0711145401001,-5.99423789978027,1.06430053710938,-7.19472312927246,-6.08743143081665,1.62792587280273,-6.82392311096191,-5.58172941207886,1.82035827636719,-6.58553791046143,-5.73042106628418,1.54018783569336,-6.91511487960815,-5.85248851776123,0.999660491943359,-7.18515920639038,-6.25220203399658,1.08724975585938,-7.10226440429688,-6.42899322509766,0.8033447265625,-7.22693634033203,-6.23373460769653,1.47109603881836,-6.96036052703857,-6.02318859100342,1.5349235534668,-6.87608432769775,-6.15520811080933,2.18796730041504,-5.80852603912354,-5.31820201873779,2.26263046264648,-5.52510786056519,-5.55635404586792,2.08478927612305,-6.08682727813721,-5.63943529129028,1.95422744750977,-6.33038091659546,-5.92793464660645,2.0319709777832,-6.06419277191162,-6.15566396713257,1.79774475097656,-6.53731060028076,-6.1771068572998,1.13325881958008,-6.96723079681396,-6.68206405639648,1.15693473815918,-6.76453256607056,-6.95546531677246,0.810173034667969,-7.01226377487183,-6.77131462097168,1.41053771972656,-6.84929370880127,-6.54432392120361,1.62095260620117,-6.70593881607056,-6.37885999679565,1.68651390075684,-6.47338104248047,-6.625075340271,1.18066596984863,-6.49505281448364,-7.19585657119751,1.49284744262695,-6.36384248733521,-7.03341293334961,1.2114143371582,-6.16383457183838,-7.37679052352905,1.71565818786621,-6.20719051361084,-6.84917211532593,1.89770126342773,-6.02096366882324,-6.6395206451416,1.71407890319824,-5.94157314300537,-7.01885032653809,2.05534744262695,-5.7953052520752,-6.39132499694824,2.18410301208496,-5.53558254241943,-6.11232662200928,2.02472686767578,-5.53466939926147,-6.62079429626465,2.28329086303711,-5.24815940856934,-5.81181240081787,2.35516166687012,-4.94242572784424,-5.49643325805664,2.24959564208984,-4.98214769363403,-6.06992530822754,1.70324325561523,-5.71983671188354,-7.11481475830078, +1.80792236328125,-5.52705526351929,-7.0181827545166,1.56098937988281,-5.72234392166138,-7.26902675628662,1.94269943237305,-5.29347896575928,-6.83232831954956,2.06761360168457,-5.02461099624634,-6.5863676071167,1.83580780029297,-5.07970237731934,-6.98728847503662,1.26231956481934,-5.77675580978394,-7.47262001037598,0.839197158813477,-5.83280277252197,-7.58165645599365,1.29547119140625,-5.35552167892456,-7.48437356948853,2.16153717041016,-4.73063230514526,-6.31451797485352,2.22714614868164,-4.42033672332764,-6.02376651763916,2.02251052856445,-4.51558971405029,-6.53830528259277,1.75349807739258,-4.90622043609619,-7.05632066726685,1.79590225219727,-4.66532039642334,-6.93254089355469,1.6028938293457,-4.93926525115967,-7.21457290649414,1.29553413391113,-4.93869256973267,-7.41722917556763,1.2838134765625,-4.53974866867065,-7.27646160125732,0.876871109008789,-4.95007228851318,-7.53082847595215,1.84268951416016,-4.35825777053833,-6.73578357696533,1.8771858215332,-4.0222339630127,-6.48394680023193,1.60872268676758,-4.24295711517334,-6.91539859771729,2.40425491333008,-4.62945461273193,-5.17201614379883,2.43661117553711,-4.31515741348267,-4.84523153305054,2.3658618927002,-4.35776329040527,-5.44983720779419,2.2696418762207,-4.10383701324463,-5.72107410430908,2.2955493927002,-3.78610825538635,-5.41135787963867,2.11330795288086,-3.87761306762695,-5.97719573974609,2.45819473266602,-4.00591897964478,-4.5222225189209,2.47200584411621,-3.6626615524292,-4.16455507278442,2.41489219665527,-3.72873210906982,-4.81274795532227,1.89566230773926,-3.69104433059692,-6.20947456359863,1.9046516418457,-3.36532306671143,-5.91953277587891,1.61592102050781,-3.54740214347839,-6.40188789367676,2.31007766723633,-3.47351431846619,-5.10032892227173,2.14383506774902,-3.24614477157593,-5.37194490432739,2.31486701965332,-3.12856888771057,-4.74956226348877,2.47617530822754,-3.24661540985107,-3.73351669311523,2.42078018188477,-2.9675145149231,-4.0317850112915,2.30629920959473,-2.71598148345947,-4.31942129135132,2.13161087036133,-2.49179077148438,-4.59269094467163, +2.27238464355469,-2.25543594360352,-3.84887456893921,2.21075248718262,-1.76760101318359,-3.37718796730042,1.99916458129883,-1.53417301177979,-3.63671159744263,1.89619445800781,-2.30271697044373,-4.84178018569946,1.60193061828613,-2.15845322608948,-5.05183410644531,1.90837478637695,-2.7068190574646,-5.27101612091064,1.84952545166016,-1.8577915430069,-4.37687015533447,1.74844741821289,-1.39372742176056,-3.92105650901794,1.45921516418457,-1.32230973243713,-4.18415403366089,1.62967300415039,-0.962200880050659,-3.51441502571106,1.54370307922363,-0.603800714015961,-3.20168042182922,1.29797744750977,-0.615472078323364,-3.40977239608765,1.02429580688477,-0.644343495368958,-3.58109927177429,0.745876312255859,-0.685567617416382,-3.70395278930664,1.06214141845703,-0.950584053993225,-3.97754621505737,1.13572120666504,-1.297926902771,-4.37695360183716,0.810564041137695,-1.31978750228882,-4.48245000839233,1.20637130737305,-1.68191456794739,-4.77821588516235,0.485942840576172,-0.73429673910141,-3.76662516593933,0.238479614257813,-0.786292433738708,-3.78085899353027,0.504281997680664,-1.0564181804657,-4.11832475662231,0.467231750488281,-0.426026821136475,-3.41577696800232,1.90943908691406,-3.04983139038086,-5.6179313659668,1.61462783813477,-2.89643931388855,-5.81321144104004,1.24739456176758,-2.06891489028931,-5.20788240432739,0.862968444824219,-2.0411581993103,-5.28248310089111,1.2619686126709,-2.45242071151733,-5.60603857040405,-0.00252151489257813,-0.837315201759338,-3.75840091705322,-0.222461700439453,-0.88184916973114,-3.71228456497192,0.0231170654296875,-1.19013369083405,-4.02790117263794,-0.0370903015136719,-0.485270589590073,-3.51183223724365,0.512935638427734,-1.38127422332764,-4.4895486831665,0.253726959228516,-1.46597445011139,-4.42772817611694,0.504409790039063,-1.72422206401825,-4.86499500274658,0.0499496459960938,-1.56161761283875,-4.32275867462158,0.0408706665039063,-1.88871121406555,-4.63649940490723,-0.138343811035156,-1.70969605445862,-4.18389415740967,-0.486860275268555,-0.920437812805176,-3.62685251235962,-0.436178207397461,-1.29104232788086,-3.67836332321167, +0.0321311950683594,-2.16557598114014,-4.90142679214478,-0.088409423828125,-2.40473794937134,-4.93108320236206,0.167434692382813,-2.17607736587524,-5.08391332626343,0.466651916503906,-2.09423279762268,-5.23723125457764,0.425762176513672,-2.4683198928833,-5.59265041351318,1.26753997802734,-2.79024720191956,-5.94082403182983,1.27082824707031,-3.11178135871887,-6.24246311187744,0.877914428710938,-2.74374437332153,-5.99438714981079,0.424831390380859,-2.81293988227844,-5.92396879196167,0.0570716857910156,-3.01976490020752,-5.74401092529297,0.439361572265625,-3.14394116401672,-6.23691368103027,1.27993392944336,-3.45110416412354,-6.53703594207764,1.28410720825195,-3.80138444900513,-6.81777381896973,0.892671585083008,-3.41184997558594,-6.60146999359131,0.450885772705078,-3.48015928268433,-6.5346941947937,0.0976676940917969,-3.65848064422607,-6.34220886230469,0.454864501953125,-3.82543087005615,-6.81450605392456,1.28467559814453,-4.16262626647949,-7.06992340087891,0.890293121337891,-4.13225269317627,-7.1491494178772,0.452638626098633,-4.1847095489502,-7.06829977035522,0.107200622558594,-4.32410621643066,-6.83400917053223,0.439521789550781,-4.57406377792358,-7.28391361236572,0.444454193115234,-5.00184297561646,-7.45381355285645,0.117134086787701,-5.09028148651123,-7.21064853668213,0.458562850952148,-5.44823360443115,-7.53726482391357,0.464942932128906,-5.86291790008545,-7.51381492614746,0.157108306884766,-5.86843347549438,-7.31380414962769,0.470790863037109,-6.23345184326172,-7.40214872360229,-0.0851325988769531,-4.46988582611084,-6.58124256134033,-0.0975914001464844,-4.1639838218689,-6.36333990097046,-0.212560653686523,-4.63196611404419,-6.32690620422363,-0.0752849578857422,-4.80013370513916,-6.77525520324707,-0.0623931884765625,-5.17068195343018,-6.94289016723633,-0.176490783691406,-5.2489161491394,-6.68087244033813,-0.0435867309570313,-5.53928709030151,-7.04697179794312,-0.0311489105224609,-5.86031103134155,-7.05703592300415,-0.148563385009766,-5.8470983505249,-6.7944917678833,-0.0189476013183594,-6.14751482009888,-6.99928665161133, +0.476360321044922,-6.54344177246094,-7.22496891021729,0.472686767578125,-6.79340553283691,-6.99822425842285,0.817207336425781,-6.56001806259155,-7.2678279876709,0.192420959472656,-6.48282480239868,-7.0923376083374,0.461956024169922,-6.98458862304688,-6.73814678192139,0.18975830078125,-6.87713432312012,-6.66953134536743,0.484033584594727,-7.11867141723633,-6.48196029663086,0.0034637451171875,-6.40944719314575,-6.89338827133179,-0.118999481201172,-6.34181499481201,-6.66267871856689,0.0346145629882813,-6.62289142608643,-6.76064729690552,0.564079284667969,-7.2002420425415,-6.28861999511719,0.455249786376953,-7.21145153045654,-6.11328125,0.406658172607422,-7.21995830535889,-5.80773973464966,0.399761199951172,-7.18417501449585,-5.4535698890686,0.7559814453125,-7.26212978363037,-5.63211154937744,0.108734130859375,-7.0494647026062,-5.98826599121094,0.0619049072265625,-6.76935529708862,-6.62715864181519,-0.00229263305664063,-6.79181432723999,-6.43887281417847,-0.221767425537109,-5.831627368927,-6.56052398681641,-0.277229309082031,-5.77477264404297,-6.33498668670654,-0.220460891723633,-6.04710626602173,-6.49542045593262,-0.22723388671875,-5.6057915687561,-6.56226491928101,-0.250396728515625,-5.33980512619019,-6.4497332572937,-0.277250289916992,-5.06845283508301,-6.27252864837646,-0.298576354980469,-5.46219444274902,-6.2535285949707,-0.202915191650391,-6.28083753585815,-6.41577291488647,-0.266986846923828,-6.20701742172241,-6.1459436416626,-0.159830093383789,-6.53201007843018,-6.31017875671387,-0.0700855255126953,-6.79919624328613,-6.16220426559448,-0.121482849121094,-6.77338218688965,-5.8335165977478,-0.320224761962891,-6.09963941574097,-5.84442567825317,-0.360797882080078,-5.96920347213745,-5.54117584228516,-0.275259017944336,-6.38020372390747,-5.69893932342529,-0.333736419677734,-5.85128688812256,-5.96558952331543,-0.32568359375,-5.63570785522461,-6.09705877304077,-0.364658355712891,-5.45800113677979,-5.86059617996216,-0.159107208251953,-6.69666576385498,-5.48676252365112,-0.18049430847168,-6.58461427688599,-5.14441633224487, +0.0819740295410156,-6.96760511398315,-5.27037525177002,0.392730712890625,-7.09936475753784,-5.12845516204834,0.397197723388672,-6.97757244110107,-4.81483459472656,-0.195602416992188,-6.44264936447144,-4.82832431793213,-0.207353591918945,-6.27925443649292,-4.52688884735107,0.0814399719238281,-6.69829988479614,-4.61135959625244,-0.336919784545898,-6.12309169769287,-5.07345485687256,-0.391170501708984,-5.82502603530884,-5.26557350158691,-0.406501770019531,-5.54487943649292,-5.44464302062988,-0.417190551757813,-5.66417121887207,-5.00007390975952,0.46861457824707,-6.41519117355347,-3.85765075683594,0.445005416870117,-6.63119554519653,-4.17730522155762,0.0936927795410156,-6.32599449157715,-3.99359226226807,0.482475280761719,-6.17153453826904,-3.53268241882324,0.856899261474609,-6.39560890197754,-3.79722881317139,0.41700553894043,-6.82024431228638,-4.49709606170654,0.769512176513672,-6.8449387550354,-4.45534086227417,-0.218215942382813,-6.09104251861572,-4.22445297241211,-0.227878570556641,-5.87897205352783,-3.91770386695862,-0.379755020141602,-5.77875280380249,-4.49245738983154,-0.24165153503418,-5.63478088378906,-3.60246610641479,-0.256450653076172,-5.35761451721191,-3.27321004867554,0.0879688262939453,-5.83394050598145,-3.34654116630554,-0.413642883300781,-5.35609817504883,-3.89864349365234,0.481174468994141,-5.89755916595459,-3.19981288909912,0.4659423828125,-5.58642578125,-2.85171508789063,-0.270687103271484,-5.04432106018066,-2.92548704147339,-0.285240173339844,-4.7059531211853,-2.57741260528564,0.053253173828125,-5.19174528121948,-2.64433288574219,-0.444839477539063,-4.82178401947021,-3.25273180007935,0.439393997192383,-5.23062086105347,-2.48257255554199,0.406600952148438,-4.84448528289795,-2.10891008377075,0.851701736450195,-5.18508625030518,-2.41143751144409,0.385478973388672,-4.40239143371582,-1.79087424278259,0.344087600708008,-4.02404403686523,-1.47225642204285,0.0100631713867188,-4.45411825180054,-1.94035363197327,0.289712905883789,-3.69884634017944,-1.23556458950043,0.224864959716797,-3.43079710006714,-1.05881667137146, +0.609367370605469,-3.65045738220215,-1.08233237266541,-0.218784332275391,-4.31476449966431,-2.28629732131958,-0.413639068603516,-4.16544008255005,-2.61890530586243,-0.54815673828125,-3.99519538879395,-2.93221378326416,-0.53364372253418,-4.29165077209473,-3.22734141349792,-0.572383880615234,-3.8073456287384,-3.23176527023315,-0.51622200012207,-3.68851947784424,-2.65201139450073,0.1473388671875,-3.23247647285461,-0.907902657985687,0.0353031158447266,-3.07112431526184,-0.825362682342529,-0.134307861328125,-2.92255043983459,-0.775083303451538,-0.292243957519531,-2.95300340652466,-0.821462452411652,-0.173591613769531,-2.85012793540955,-0.546452820301056,-0.225902557373047,-2.82329177856445,-0.206031143665314,-0.637199401855469,-2.81014847755432,-0.216363251209259,-0.295482635498047,-2.98927068710327,0.267130076885223,0.162391662597656,-2.81641364097595,-0.168602883815765,-0.517887115478516,-4.57663059234619,-3.54300498962402,-0.500589370727539,-4.84074449539185,-3.85990715026855,-0.542095184326172,-4.31940174102783,-3.81457757949829,-0.482269287109375,-5.07396602630615,-4.15884876251221,-0.462718963623047,-5.28573179244995,-4.4451847076416,-0.502605438232422,-4.78858232498169,-4.40490865707397,-0.569314956665039,-3.62586855888367,-3.50678634643555,-0.553825378417969,-3.8442018032074,-3.78599786758423,-0.548923492431641,-3.42777943611145,-3.75462031364441,-0.53533935546875,-4.06679201126099,-4.07728242874146,-0.514579772949219,-4.28860235214233,-4.36954355239868,-0.506435394287109,-3.80405044555664,-4.32928133010864,-0.455013275146484,-3.51725554466248,-4.56728649139404,-0.48406982421875,-3.34456586837769,-4.27264404296875,-0.425907135009766,-3.70764803886414,-4.85640621185303,-0.374607086181641,-3.18225717544556,-4.76312446594238,-0.492849349975586,-3.19185829162598,-3.96925210952759,-0.438030242919922,-2.91880989074707,-4.12408304214478,-0.441059112548828,-5.48339748382568,-4.72618675231934,-0.457630157470703,-5.19692277908325,-4.95000553131104,-0.492576599121094,-4.50416326522827,-4.65203762054443,-0.469413757324219,-4.71314477920532,-4.92256546020508, +-0.457828521728516,-4.21479082107544,-4.89823293685913,-0.367347717285156,-2.61229157447815,-4.18669319152832,-0.314840316772461,-2.61090016365051,-4.53504133224487,-0.313066482543945,-2.29341626167297,-4.14531946182251,-0.248212814331055,-2.77503275871277,-4.88773679733276,-0.201496124267578,-3.02867293357849,-5.23474454879761,-0.307445526123047,-1.98329877853394,-3.98819708824158,-0.347541809082031,-1.74940967559814,-3.80001211166382,-0.397090911865234,-3.91494846343994,-5.14068222045898,-0.370006561279297,-4.13524723052979,-5.41003227233887,-0.303216934204102,-3.60905909538269,-5.36543703079224,-0.162380218505859,-3.30002069473267,-5.55973672866821,-0.133098602294922,-3.58338642120361,-5.85682964324951,-0.430408477783203,-1.65921783447266,-3.66545033454895,-0.516555786132813,-2.01156616210938,-3.53954577445984,-0.746814727783203,-0.940090894699097,-3.53376436233521,-0.841285705566406,-0.576641917228699,-3.52292633056641,-0.687881469726563,-1.28093028068542,-3.51210117340088,-0.641120910644531,-1.61973834037781,-3.45807862281799,-0.820148468017578,-1.57199454307556,-3.28131818771362,-1.06295394897461,-0.96458625793457,-3.41019010543823,-0.962347030639648,-1.58540511131287,-3.12121963500977,-1.16367721557617,-1.2986364364624,-3.1760048866272,-1.07948303222656,-1.60436844825745,-2.99723100662231,-0.726039886474609,-1.90605902671814,-3.1827700138092,-1.33440780639648,-0.998767912387848,-3.28900957107544,-1.4749813079834,-0.638383030891418,-3.40946412086487,-1.61532592773438,-1.04133474826813,-3.13755321502686,-1.23552703857422,-1.64580905437469,-2.85184049606323,-1.55102348327637,-1.37186443805695,-2.88757634162903,-1.38457107543945,-1.71458148956299,-2.62851572036743,-1.81296730041504,-1.07055735588074,-3.00737261772156,-2.00708389282227,-0.674756526947021,-3.21851921081543,-2.020751953125,-1.10130298137665,-2.85061502456665,-1.5201244354248,-1.80366277694702,-2.38237524032593,-1.9146842956543,-1.48853826522827,-2.47012257575989,-1.62488746643066,-1.89041543006897,-2.12266063690186,-2.23124313354492,-1.1345534324646,-2.6658148765564, +-2.44607543945313,-1.16580092906952,-2.45555281639099,-1.69902229309082,-1.96486592292786,-1.85588526725769,-2.23385429382324,-1.59837424755096,-1.96489524841309,-1.71139717102051,-2.08709812164307,-1.58389484882355,-1.03759384155273,-2.38506960868835,-1.91699004173279,-2.66689109802246,-1.19054090976715,-2.22240567207336,-2.87954711914063,-1.20775187015533,-1.9751170873642,-3.06989860534668,-1.21641087532043,-1.72242558002472,-3.24243354797363,-1.21256983280182,-1.46568369865417,-2.75526237487793,-1.64977443218231,-1.31848800182343,-1.53992080688477,-2.30213069915771,-1.2295663356781,-1.28550910949707,-2.50559711456299,-0.923192620277405,-2.06317901611328,-2.15534114837646,-1.06621563434601,-1.05613327026367,-2.61555075645447,-0.804546892642975,-1.10381126403809,-2.66167688369751,-0.566693186759949,-1.06717681884766,-2.79224395751953,-0.179506957530975,-1.47538375854492,-2.74702334403992,-0.109087876975536,-0.995429992675781,-3.00693583488464,0.260209560394287,-2.40744400024414,-2.05666542053223,-0.881490588188171,-2.06990051269531,-2.3923032283783,-0.435406386852264,-2.64055252075195,-1.97856616973877,-0.68771767616272,-3.40163803100586,-1.19227862358093,-1.20624232292175,-3.54140090942383,-1.16231918334961,-0.954351723194122,-3.10749244689941,-1.58147799968719,-0.848241806030273,-0.375347137451172,-3.51631164550781,1.22123908996582,-0.859685897827148,-3.44769740104675,1.15780067443848,-1.61618041992188,-2.89120745658875,0.361642897129059,-1.27363967895508,-3.26074242591858,1.11088681221008,-1.81568145751953,-2.66608381271362,-0.0247926115989685,-2.0956859588623,-2.55463910102844,0.0725904107093811,-2.08483123779297,-2.64730358123779,0.499712765216827,-1.64534950256348,-2.96685338020325,1.11325764656067,-2.33002281188965,-2.42597055435181,0.176927804946899,-2.58768653869629,-2.17336177825928,-0.158317148685455,-2.52653121948242,-2.28888916969299,0.288641035556793,-2.42933082580566,-2.35359215736389,0.689246356487274,-1.91264724731445,-2.63789010047913,1.19618105888367,-2.84151077270508,-1.90018510818481,-0.499486774206161, +-3.01362991333008,-1.81383144855499,-0.313502192497253,-3.65560913085938,-1.12946951389313,-0.72026115655899,-3.75354957580566,-1.0903068780899,-0.497053474187851,-3.38876342773438,-1.46774637699127,-0.398843169212341,-3.94804191589355,-0.74804025888443,-1.06940650939941,-2.69306182861328,-2.15220332145691,0.408151566982269,-2.94613647460938,-1.93393695354462,0.125961005687714,-2.84011459350586,-2.01104211807251,0.535691440105438,-2.6902961730957,-2.04396772384644,0.920982003211975,-3.84450531005859,-1.04140722751617,-0.277812242507935,-3.61890411376953,-1.31081402301788,0.0013156533241272,-4.09226036071777,-0.734669089317322,-0.588469684123993,-3.16515350341797,-1.72084414958954,-0.129903078079224,-3.3027400970459,-1.61867725849152,0.0484207272529602,-2.97820091247559,-1.86053156852722,0.671489536762238,-3.2363452911377,-1.67184829711914,0.424964010715485,-3.11180305480957,-1.70534873008728,0.811417520046234,-3.43305015563965,-1.50478553771973,0.218574047088623,-0.445507049560547,-4.91549634933472,-5.1786732673645,-0.420684814453125,-5.10738325119019,-5.41850185394287,-0.408952713012695,-4.63815879821777,-5.41346168518066,-0.345901489257813,-4.36413717269897,-5.65483570098877,-0.323322296142578,-4.5960865020752,-5.87815189361572,-0.250469207763672,-4.10439729690552,-5.89443302154541,-0.394708633422852,-5.28506278991699,-5.64006853103638,-0.359786987304688,-5.04533576965332,-5.85283422470093,-0.112430572509766,-3.86994624137878,-6.1231255531311,-0.300655364990234,-4.82568883895874,-6.08297157287598,1.53901672363281,-0.0888228118419647,-1.89389860630035,0.621288299560547,-0.0102430991828442,-0.365679621696472,0.747325897216797,0.000933382660150528,-0.402665793895721,0.504611968994141,-0.0181731805205345,-0.30482691526413,1.0079517364502,0.0311991646885872,-0.40032497048378,-1.05553436279297,-0.535950362682343,3.19664669036865,-0.942611694335938,-0.77130138874054,3.01069688796997,-1.27060699462891,-0.877162933349609,2.88984537124634,-1.80049896240234,-0.767401456832886,2.89146327972412,-1.55594825744629,-1.04482781887054,2.69747161865234, +-2.15407180786133,-0.938632130622864,2.62681746482849,-1.76708602905273,-1.24685478210449,2.45866060256958,1.44253730773926,-1.36252963542938,1.95209038257599,1.12924575805664,-1.59221649169922,1.96406769752502,1.34312057495117,-0.955915093421936,2.31133222579956,0.782012939453125,-1.02604615688324,2.54066753387451,0.731708526611328,-0.519583344459534,2.94493341445923,-0.118553161621094,-0.703824460506439,3.02545833587646,-0.148151397705078,-0.452859103679657,3.22995400428772,-0.614360809326172,-0.472817331552505,3.25073575973511,-0.544185638427734,-0.70121955871582,3.06756591796875,1.1608715057373,-1.91180229187012,1.74946117401123,1.41580200195313,-1.80822479724884,1.68365001678467,1.08034133911133,-2.29793882369995,1.59368515014648,-0.0161781311035156,-0.187015429139137,-1.14012801647186,-0.778396606445313,-0.133140414953232,0.33022141456604,1.22535705566406,0.166639238595963,0.815563678741455,-1.78752517700195,-2.32964777946472,1.48122012615204,-2.09660530090332,-2.30791664123535,1.35141515731812,-1.64740562438965,-2.57102632522583,1.37474846839905,0.483158111572266,0.0804496109485626,0.80889755487442,1.01594543457031,-0.134696930646896,-1.77994394302368,-1.14657974243164,-3.06224966049194,1.29017353057861,-0.805709838867188,-3.22331762313843,1.31732368469238,-0.365243911743164,-3.28711843490601,1.37065815925598,1.3884162902832,-0.0313078016042709,-1.09961009025574,0.481439590454102,6.12082576751709,-1.99156415462494,1.83655166625977,5.65695095062256,-1.25544905662537,2.36461067199707,5.27495813369751,-0.756049513816833,2.12256240844727,5.21700763702393,-0.625301957130432,2.7723274230957,4.81329107284546,-0.21681946516037,2.5229377746582,4.78257942199707,-0.12003930658102,1.24681091308594,0.068016454577446,-0.298160761594772,3.0994987487793,2.98378682136536,1.60037326812744,2.8129940032959,3.05833220481873,1.59970617294312,1.46249771118164,-0.0998898148536682,-1.92413115501404,2.85060882568359,2.33943200111389,2.15755367279053,1.50151824951172,-0.0944497883319855,-1.91090476512909,1.91729164123535,1.59290289878845,2.7826087474823, +2.19123077392578,1.43665158748627,2.84138417243958,1.66085815429688,1.36329483985901,2.94417595863342,1.07382202148438,-0.133977323770523,-1.83945512771606,1.1336555480957,0.987338781356812,3.18166899681091,1.14206695556641,-0.130992755293846,-1.88662981987,1.29887390136719,-0.118770092725754,-1.93726181983948,0.854789733886719,0.536449909210205,3.41482710838318,-0.750005722045898,-0.140561044216156,0.219589293003082,-0.233936309814453,0.139996767044067,3.5381908416748,1.38951110839844,0.0965708494186401,-0.16486781835556,-0.751369476318359,0.309779286384583,3.38556551933289,1.42754364013672,0.10578016191721,-0.111726760864258,-1.04036712646484,6.02421092987061,-2.13309001922607,-1.83232879638672,6.0083909034729,-2.41613674163818,-1.79088401794434,5.87599992752075,-2.16798686981201,-2.57097625732422,5.76622581481934,-2.3573157787323,1.34642791748047,0.0871464386582375,-0.213961809873581,-3.19416046142578,5.30047607421875,-1.94437980651855,-4.04052925109863,4.87028646469116,-1.84083032608032,-4.64098644256592,4.22934007644653,-1.39096796512604,-4.40334224700928,4.1995096206665,-1.19671666622162,-5.01855087280273,3.59375238418579,-0.885893523693085,-4.75068283081055,3.64878678321838,-0.741645693778992,-5.18984127044678,3.00473809242249,-0.354341506958008,-4.9335765838623,3.12845325469971,-0.274801552295685,-5.20233726501465,2.34643507003784,0.281767070293427,1.54522514343262,-0.0190851241350174,-1.15024209022522,1.46923446655273,-0.0242200046777725,-1.11721682548523,-4.81444263458252,1.88561058044434,0.937829911708832,-4.70210266113281,1.18724632263184,1.5063807964325,-4.48942279815674,1.37871336936951,1.48519599437714,-4.03033828735352,0.957699000835419,1.98957347869873,-3.55636405944824,0.646606266498566,2.3988094329834,-3.24876022338867,0.202210187911987,2.76213121414185,-2.62040519714355,0.325583815574646,2.93464708328247,-2.11330795288086,0.252420723438263,3.11839628219604,-2.15260696411133,-0.00967538356781006,3.24358916282654,-1.63583755493164,0.224860608577728,3.2581615447998,0.924980163574219,-0.115676917135715,-1.46943831443787, +-1.20926666259766,0.244091153144836,3.3477942943573,-1.20339012145996,0.0012747049331665,3.46714329719543,-0.756786346435547,-0.602082490921021,2.89975357055664,-0.757717132568359,-0.733076691627502,3.04735684394836,-0.919914245605469,-0.267464518547058,3.35122323036194,-0.945268630981445,-0.123190939426422,3.42274737358093,-0.970302581787109,0.0258689522743225,3.49592256546021,-0.842519760131836,-0.499799817800522,3.23017358779907,-0.986886978149414,0.273442447185516,3.36963295936584,2.48707580566406,-0.462998926639557,-1.84587097167969,2.70414352416992,-0.728202104568481,-0.630884766578674,-0.5684814453125,-2.8229079246521,-0.554300606250763,-0.53533935546875,-2.82906198501587,-0.717293739318848,2.49113464355469,-0.815095782279968,-1.78762888908386,-0.163589492440224,0.09276182949543,-0.923815011978149,-0.456573486328125,0.120619669556618,-0.945657253265381,-0.416355103254318,0.0791111588478088,-0.777492761611938,-0.705108642578125,0.045204795897007,-0.80696964263916,-0.267608642578125,0.124556973576546,-1.01738274097443,-0.655910491943359,0.0904560685157776,-0.933597683906555,-0.919559478759766,0.00399208813905716,-1.00098776817322,-0.215290069580078,0.121803373098373,-1.21253132820129,-0.521759033203125,0.123057387769222,-1.24682521820068,-0.223152160644531,0.0925803780555725,-1.41225695610046,-0.782085418701172,0.0720266550779343,-1.09023237228394,-0.977788925170898,-0.0287831481546164,-1.28544020652771,-0.391679733991623,0.0739433914422989,-1.52204418182373,-0.851436614990234,0.0374030843377113,-1.27668881416321,-0.583976745605469,0.0387154594063759,-1.57251644134521,-0.741977691650391,0.0431796312332153,-1.44645881652832,-0.348037719726563,0.127390518784523,-0.980958461761475,-0.221620574593544,0.11395388096571,-0.97597861289978,-0.278911590576172,0.0889379754662514,-0.831245124340057,-0.434772491455078,0.102443061769009,-0.85258674621582,-0.678272247314453,0.0738505423069,-0.87744414806366,-0.569469451904297,0.107944153249264,-0.933178663253784,-0.563247680664063,0.0639668554067612,-0.769893765449524,-0.239517211914063,0.127923354506493,-1.10098791122437, +-0.120231628417969,0.103987023234367,-1.20048785209656,-0.859111785888672,0.0390968546271324,-1.04105591773987,-0.715871810913086,0.0860893353819847,-0.998202681541443,-0.827465057373047,0.0245242491364479,-0.887244701385498,-0.214164733886719,0.109687753021717,-1.32616949081421,-0.169336318969727,0.0763479620218277,-1.44035840034485,-0.0505084991455078,0.0664832964539528,-1.33701491355896,-0.346717834472656,0.129164204001427,-1.22778916358948,-0.485149383544922,0.128485172986984,-1.07467794418335,-0.671899795532227,0.10060615837574,-1.15762376785278,-0.447917938232422,0.101705990731716,-1.40536272525787,-0.293497085571289,0.0881619080901146,-1.46537470817566,-0.350175857543945,0.041595384478569,-1.60397100448608,-0.908214569091797,0.0114590376615524,-1.28092837333679,-0.827373504638672,0.0558345541357994,-1.19385468959808,-0.970640182495117,-0.0143239982426167,-1.13847398757935,-0.499263763427734,0.0574457198381424,-1.55676507949829,-0.593677520751953,0.0130027588456869,-1.62882852554321,-0.806827545166016,0.0014909622259438,-1.50543689727783,-0.809333801269531,0.0428600013256073,-1.35407102108002,-0.938085556030273,-0.0377391129732132,-1.42762339115143,-0.648891448974609,0.0840555354952812,-1.36199831962585,-0.656814575195313,0.0436091460287571,-1.52276992797852,-0.742237091064453,-0.0367777943611145,-1.6442437171936,-0.318868637084961,0.110728986561298,-0.897915601730347,-0.558643341064453,0.0896718204021454,-0.846178710460663,-0.153713226318359,0.111540056765079,-1.08058822154999,-0.781448364257813,0.0564109534025192,-0.945138216018677,-0.126260757446289,0.0917942225933075,-1.32441973686218,-0.355630874633789,0.133790627121925,-1.09674525260925,-0.611166000366211,0.111348703503609,-1.04160606861115,-0.326374053955078,0.112746886909008,-1.35660576820374,-0.246997833251953,0.0590349733829498,-1.53627705574036,-0.902187347412109,0.0236507132649422,-1.15699553489685,-0.469804763793945,0.0257740970700979,-1.63523650169373,-0.874732971191406,0.00390488468110561,-1.40082716941833,-0.563827514648438,0.077299490571022,-1.46207070350647, +-0.739841461181641,0.0764357522130013,-1.26739013195038,-0.709579467773438,0.00471584033221006,-1.58349990844727,-0.951930999755859,-0.352199614048004,-1.25643599033356,-0.857559204101563,-0.0406026393175125,-1.55167388916016,-0.82879638671875,-0.364304542541504,-1.52910101413727,-0.892292022705078,-0.318631917238235,-0.965111315250397,-0.604793608188629,-0.0269518382847309,-1.69799721240997,-0.672664642333984,-0.276425361633301,-0.766405761241913,-0.569923400878906,-0.350323796272278,-1.67896032333374,-0.274192810058594,-0.315598428249359,-1.64877033233643,-0.376932144165039,-0.241698771715164,-0.73621666431427,-0.316038131713867,0.00695561245083809,-1.66852021217346,-0.0545616149902344,-0.273391008377075,-1.45006370544434,-0.101589202880859,0.0481671020388603,-1.47450113296509,-0.118061073124409,-0.227718144655228,-0.886074900627136,0.00507354736328125,-0.239824146032333,-1.15874028205872,-0.043359749019146,0.0809425711631775,-1.1900497674942,-0.944608688354492,-0.337391674518585,-1.10591912269592,-0.710685729980469,-0.360387653112411,-1.62390768527985,-0.7979736328125,-0.297604978084564,-0.848619341850281,-0.457901000976563,-0.0118074342608452,-1.70559620857239,-0.419479370117188,-0.334814071655273,-1.68674254417419,-0.527374267578125,-0.257209599018097,-0.728433609008789,-0.193683624267578,0.0276351608335972,-1.58824515342712,-0.148880004882813,-0.294417798519135,-1.56655669212341,-0.236167907714844,-0.23163503408432,-0.791268289089203,-0.00224685668945313,-0.254631251096725,-1.30925595760345,-0.0830631256103516,0.0898985266685486,-1.04786646366119,-0.0355873107910156,-0.230650201439857,-1.01312255859375,-0.91126823425293,-0.361372590065002,-1.40205359458923,1.2883243560791,-0.0227228999137878,-1.7869645357132,1.45256423950195,-0.00501886010169983,-1.76709687709808,1.14290618896484,-0.0301333665847778,-1.70626187324524,1.5728931427002,0.0162163972854614,-1.65424656867981,1.07185745239258,-0.0244192332029343,-1.55581426620483,1.60334968566895,0.032872200012207,-1.49151909351349,1.1023120880127,-0.00776354968547821,-1.3930869102478, +1.53229904174805,0.0385861247777939,-1.34107077121735,1.22264099121094,0.0134718269109726,-1.28023660182953,1.38688278198242,0.0311758667230606,-1.26036906242371,1.33982467651367,-0.0169170498847961,-1.52188873291016,0.991935729980469,0.0101389437913895,-1.33516311645508,1.40702629089355,0.0669384077191353,-1.14157211780548,1.50283432006836,0.0141432881355286,-1.88071668148041,1.06835556030273,-0.0170868784189224,-1.47082591056824,1.52572822570801,0.00622013211250305,-1.72465550899506,1.09016609191895,-0.0291049480438232,-1.63908529281616,1.37283706665039,-0.0147010385990143,-1.79596042633057,1.20646667480469,-0.0281940251588821,-1.76327633857727,0.951400756835938,-0.00349433720111847,-1.45024633407593,1.06688690185547,0.0255262404680252,-1.23918104171753,1.28483963012695,0.0553505048155785,-1.13753247261047,1.68779754638672,0.0758841782808304,-1.3611626625061,1.71888732910156,0.0587515830993652,-1.60102331638336,1.60340309143066,0.0297311246395111,-1.81208860874176,1.58493041992188,0.0385962277650833,-1.40833532810211,1.4686279296875,0.0376853197813034,-1.28414440155029,1.30225944519043,0.0241923034191132,-1.25145924091339,1.14936828613281,0.00327125191688538,-1.32276618480682,1.60674095153809,0.0265781581401825,-1.57659482955933,1.51879501342773,-0.096796065568924,-1.88237690925598,1.27183151245117,-0.12341645359993,-1.9122519493103,1.69972801208496,-0.0648654997348785,-1.71268820762634,1.74552154541016,-0.0398218929767609,-1.46800255775452,1.63868713378906,-0.0312293916940689,-1.24178111553192,1.42003059387207,-0.0423715114593506,-1.12043273448944,1.17306900024414,-0.068992868065834,-1.15030789375305,0.992134094238281,-0.100922636687756,-1.31999564170837,0.946338653564453,-0.125967368483543,-1.56468141078949,1.05317497253418,-0.13455967605114,-1.79090285301208,1.26326370239258,-0.0116809010505676,-1.90969848632813,1.67835426330566,0.0451182276010513,-1.71610546112061,1.7227783203125,0.0694129765033722,-1.47874188423157,1.619140625,0.0777475386857986,-1.2592887878418,1.16745376586914,0.0411140620708466,-1.17055296897888, +0.947509765625,-0.0141555666923523,-1.57252764701843,1.0511474609375,-0.0224901586771011,-1.7919807434082,1.38545227050781,-9.28938388824463e-05,-1.91373801231384,1.39778900146484,-0.111470460891724,-1.91641581058502,1.14828491210938,-0.0193279087543488,-1.8671452999115,1.15330696105957,-0.131299242377281,-1.86838638782501,1.62246322631836,-0.0807272493839264,-1.81163156032562,0.982490539550781,-0.0206267982721329,-1.69010674953461,0.982400894165039,-0.132638186216354,-1.68588662147522,1.74151229858398,-0.0508114397525787,-1.59405636787415,0.950349807739258,-0.114976637065411,-1.43862748146057,1.70946311950684,-0.0331499874591827,-1.34679627418518,1.06939888000488,-0.0850619077682495,-1.22105240821838,1.52200508117676,0.0745853930711746,-1.18412518501282,1.53855514526367,-0.0344898104667664,-1.16429758071899,1.2940731048584,-0.0543176233768463,-1.11626791954041,0.688789367675781,0.845436692237854,0.780888080596924,0.575176239013672,0.868028044700623,0.596990823745728,0.878547668457031,0.907183945178986,0.606128096580505,0.899591445922852,0.86778336763382,0.77811324596405,1.09738159179688,0.882148206233978,0.702985525131226,0.384883880615234,0.829963564872742,0.351355701684952,0.222612380981445,0.758889853954315,0.396922171115875,0.185548782348633,0.735478401184082,0.189551919698715,1.16033554077148,0.917677342891693,0.45436492562294,1.36327171325684,0.880467772483826,0.380859851837158,1.19298934936523,0.902491092681885,0.180953025817871,1.36204528808594,0.841182708740234,-0.0347616970539093,0.376888275146484,0.797334969043732,0.0164220929145813,0.212575912475586,0.718294978141785,-0.0218979716300964,0.326372146606445,0.713681936264038,-0.202995091676712,1.12409591674805,0.865813732147217,-0.114045739173889,1.09427642822266,0.782675623893738,-0.349404990673065,0.533058166503906,0.787843644618988,-0.210864394903183,0.487348556518555,0.717914462089539,-0.341033846139908,0.903316497802734,0.820071280002594,-0.287625432014465,0.89605712890625,0.754635214805603,-0.418958991765976,0.799079895019531,0.875953018665314,0.260064214468002, +0.74444580078125,0.841698348522186,-0.0410431921482086,0.706840515136719,0.80941915512085,-0.250841915607452,0.586505889892578,0.831904053688049,0.754918932914734,0.510078430175781,0.843788623809814,0.639232039451599,0.641775131225586,0.863032281398773,0.692166447639465,0.347263336181641,0.811375856399536,0.48085805773735,0.491756439208984,0.855384707450867,0.483321368694305,0.403717041015625,0.802502453327179,0.651994705200195,0.869327545166016,0.888955891132355,0.707569658756256,0.703224182128906,0.888419151306152,0.591991305351257,1.00162887573242,0.876111567020416,0.749119281768799,1.0051326751709,0.899454951286316,0.662968635559082,0.585834503173828,0.85646665096283,0.297251850366592,0.830188751220703,0.895392060279846,0.430815488100052,0.281299591064453,0.792363941669464,0.355158537626266,0.264049530029297,0.766152620315552,0.11092870682478,0.380256652832031,0.815268278121948,0.18507394194603,1.19094848632813,0.90673166513443,0.528195738792419,1.02994155883789,0.916910290718079,0.520530104637146,1.31885528564453,0.884724915027618,0.477512955665588,1.26731491088867,0.903599500656128,0.40692538022995,1.31181335449219,0.888895511627197,0.170572102069855,1.17584800720215,0.914660692214966,0.329675406217575,1.16726303100586,0.885977625846863,0.0350218415260315,1.26592445373535,0.859089016914368,-0.0639910697937012,0.557676315307617,0.824917435646057,-0.00543305277824402,0.770092010498047,0.857758641242981,0.100091487169266,0.265933990478516,0.715361416339874,-0.115363329648972,0.338249206542969,0.754668593406677,-0.0958988070487976,1.1888484954834,0.839499711990356,-0.183098539710045,0.990175247192383,0.843611121177673,-0.212063401937485,1.00225067138672,0.807237863540649,-0.312662065029144,1.18114471435547,0.797590374946594,-0.289859265089035,0.400970458984375,0.714508295059204,-0.278958976268768,0.515594482421875,0.761537134647369,-0.27018266916275,0.476442337036133,0.795830070972443,-0.131345361471176,0.611049652099609,0.800916194915771,-0.23140649497509,0.723358154296875,0.828663408756256,-0.155279368162155,0.694904327392578,0.774732053279877,-0.335956305265427, +0.998256683349609,0.768173396587372,-0.392838567495346,0.875782012939453,0.789530456066132,-0.355268895626068,1.01177215576172,0.894736289978027,0.216041922569275,0.932239532470703,0.858571171760559,-0.0768486857414246,0.804553985595703,0.818302154541016,-0.268300712108612,0.575210571289063,0.847861766815186,0.697514414787292,0.426685333251953,0.829890012741089,0.556855857372284,0.752063751220703,0.878308057785034,0.698458015918732,0.956809997558594,0.890241324901581,0.710680365562439,0.641036987304688,0.877089083194733,0.452995091676712,0.294048309326172,0.793452322483063,0.441709160804749,0.270645141601563,0.783025443553925,0.237938284873962,1.09453582763672,0.905623495578766,0.596488654613495,1.26029586791992,0.900761783123016,0.475044578313828,1.29385185241699,0.899055123329163,0.298658490180969,1.29309844970703,0.874889254570007,0.0429956018924713,0.557947158813477,0.838698387145996,0.14053937792778,0.263484954833984,0.742461562156677,-0.00498956441879272,1.25851058959961,0.843544363975525,-0.130304232239723,1.09203720092773,0.825686693191528,-0.249221593141556,0.424476623535156,0.759214878082275,-0.190867707133293,0.585321426391602,0.816261291503906,-0.128960996866226,0.605030059814453,0.76706874370575,-0.314132422208786,0.953659057617188,0.78928554058075,-0.357410788536072,1.01487731933594,0.910678267478943,0.381718724966049,0.983062744140625,0.876892685890198,0.05948606133461,0.862796783447266,0.841191589832306,-0.18186528980732,0.787342071533203,0.78344863653183,-0.348893016576767,0.913568496704102,0.323625892400742,0.573891520500183,0.690837860107422,0.457380592823029,0.578750252723694,0.523483276367188,0.260880649089813,0.354244351387024,0.462852478027344,0.419259071350098,0.338864475488663,0.472209930419922,0.395161718130112,0.0723546743392944,0.397552490234375,0.515838027000427,0.593168973922729,0.643072128295898,0.387199640274048,-0.111592262983322,0.525688171386719,0.562000334262848,0.725557088851929,0.709842681884766,0.565726637840271,0.775861144065857,0.488254547119141,0.679099321365356,0.756948828697205, +0.490455627441406,0.817414224147797,0.711653709411621,0.328678131103516,0.787512540817261,0.578118443489075,0.316577911376953,0.647278606891632,0.615448355674744,0.204204559326172,0.617035031318665,0.423174917697906,0.286651611328125,0.486629247665405,0.413523465394974,0.164751052856445,0.592081785202026,0.203271389007568,0.251810073852539,0.465281635522842,0.226775318384171,0.202903747558594,0.575360834598541,-0.0177177786827087,0.283672332763672,0.44930836558342,0.0207512676715851,0.377117156982422,0.443668633699417,-0.146058440208435,0.314132690429688,0.568960666656494,-0.213129341602325,0.484958648681641,0.573579132556915,-0.359428465366364,0.685256958007813,0.732321739196777,-0.415844947099686,0.537727355957031,0.447416752576828,-0.283078044652939,0.69482421875,0.588733077049255,-0.438914448022842,0.918394088745117,0.612522184848785,-0.442068129777908,0.734523773193359,0.462231159210205,-0.358031868934631,0.88484001159668,0.416593372821808,-0.172374427318573,0.911533355712891,0.258428931236267,-0.115875571966171,1.11909103393555,0.291815280914307,0.000995844602584839,0.924636840820313,0.482597857713699,-0.359400182962418,1.12869644165039,0.642147660255432,-0.368436753749847,1.12225151062012,0.511259317398071,-0.284808844327927,1.30039978027344,0.673968076705933,-0.226969033479691,1.25627136230469,0.812575578689575,-0.216131076216698,1.12843322753906,0.455672681331635,-0.0385407209396362,1.27671051025391,0.557255566120148,-0.184311553835869,1.41273498535156,0.704210102558136,-0.034673660993576,1.45223236083984,0.72916567325592,0.185222387313843,1.39944076538086,0.864624738693237,0.172544568777084,1.35512542724609,0.5621417760849,-0.0111719965934753,1.22201538085938,0.490265876054764,0.22382527589798,1.39761352539063,0.585943222045898,0.196372747421265,1.41403770446777,0.745881974697113,0.40620356798172,1.3028450012207,0.752287685871124,0.601636052131653,1.25857734680176,0.88642817735672,0.565203189849854,1.36643218994141,0.600303649902344,0.384497553110123,1.12591552734375,0.492701381444931,0.455778479576111,1.12041854858398,0.334368705749512,0.451210349798203, +1.26187133789063,0.605643033981323,0.567835569381714,1.13199234008789,0.747664272785187,0.747902870178223,0.922142028808594,0.732515215873718,0.827428579330444,0.696889877319336,0.709465622901917,0.840269148349762,1.10163879394531,0.60197639465332,0.705294370651245,0.922737121582031,0.588943600654602,0.77168869972229,0.9178466796875,0.493517011404037,0.594358325004578,1.22076416015625,0.658018827438354,-0.305232435464859,1.2137565612793,0.529244840145111,-0.230094835162163,1.29462432861328,0.600755512714386,-0.207942083477974,1.36495780944824,0.689524829387665,-0.135798752307892,1.31706237792969,0.827288269996643,-0.130150154232979,1.25469970703125,0.510908961296082,-0.0188312828540802,1.31505966186523,0.551379561424255,-0.111056447029114,1.40374755859375,0.630113422870636,-0.0211907923221588,1.38975143432617,0.853714108467102,0.0671882927417755,1.44203567504883,0.717546343803406,0.0734544694423676,1.38304901123047,0.573964715003967,0.0928730368614197,1.44208335876465,0.654363334178925,0.192377597093582,1.44269561767578,0.738701403141022,0.297264277935028,1.39037322998047,0.87365448474884,0.278152704238892,1.3137321472168,0.535946607589722,0.193392962217331,1.1936149597168,0.465803176164627,0.0927630960941315,1.19195556640625,0.405392080545425,0.217040449380875,1.3975887298584,0.597174108028412,0.294625461101532,1.40501022338867,0.670586109161377,0.407003372907639,1.36685943603516,0.750439524650574,0.508662343025208,1.2962703704834,0.546450018882751,0.324875742197037,1.32168579101563,0.603678584098816,0.478534370660782,1.29700088500977,0.676819622516632,0.596799254417419,1.22368049621582,0.751344203948975,0.682124376296997,1.18389129638672,0.885578036308289,0.641019940376282,1.19056129455566,0.549766540527344,0.509060144424438,1.18559265136719,0.489357382059097,0.351989030838013,1.11079025268555,0.417955756187439,0.443294733762741,1.18551635742188,0.604539155960083,0.643504023551941,1.13108062744141,0.672317087650299,0.738873898983002,1.03041076660156,0.741305708885193,0.796750009059906,0.810386657714844,0.721537113189697,0.838700294494629, +0.794231414794922,0.85747766494751,0.78866183757782,1.01926612854004,0.599564433097839,0.752963185310364,0.927261352539063,0.657615900039673,0.816089034080505,1.03529930114746,0.490307420492172,0.534069836139679,1.02971458435059,0.548133552074432,0.647809147834778,0.818271636962891,0.577532410621643,0.777102530002594,0.903852462768555,0.538536369800568,0.689963102340698,0.791759490966797,0.476652652025223,0.592313766479492,0.685276031494141,0.510498940944672,0.670473694801331,1.02725601196289,0.331757694482803,0.530112028121948,0.913566589355469,0.415461838245392,0.567011713981628,0.782577514648438,0.394226223230362,0.567011296749115,0.658557891845703,0.369939059019089,0.52664589881897,0.513853073120117,0.344466686248779,0.346328616142273,0.536689758300781,0.42892324924469,0.453075498342514,0.585048675537109,0.277317702770233,0.458281219005585,0.513145446777344,0.321824282407761,0.1067750826478,0.455709457397461,0.39708000421524,0.207715213298798,0.37701416015625,0.45379438996315,0.393312841653824,0.335910797119141,0.499944746494293,0.505496203899384,0.504871368408203,0.485685288906097,0.57153332233429,0.666397094726563,0.320855975151062,-0.0788894295692444,0.551765441894531,0.384655088186264,-0.0341087281703949,0.60496711730957,0.555866241455078,0.749225974082947,0.468727111816406,0.533952057361603,0.672512650489807,0.590118408203125,0.694420039653778,0.802920699119568,0.708492279052734,0.635211408138275,0.828592836856842,0.505868911743164,0.605739235877991,0.747638881206512,0.396202087402344,0.663228392601013,0.693730354309082,0.339122772216797,0.574819326400757,0.610228717327118,0.267728805541992,0.77278858423233,0.492199748754501,0.25200080871582,0.631720781326294,0.524285852909088,0.229999542236328,0.545461475849152,0.423477411270142,0.1749267578125,0.603700339794159,0.315046221017838,0.195075988769531,0.746376693248749,0.294968128204346,0.252616882324219,0.47624859213829,0.321279883384705,0.191661834716797,0.521211445331573,0.209908932447433,0.348575592041016,0.43857216835022,0.264275968074799,0.368755340576172,0.42161700129509,0.0611928999423981, +0.262069702148438,0.456002742052078,0.123533189296722,0.194454193115234,0.726425290107727,0.0838892757892609,0.174266815185547,0.58254474401474,0.0912221968173981,0.228736877441406,0.504988729953766,-0.00471678376197815,0.250099182128906,0.570806622505188,-0.12016299366951,0.430011749267578,0.417098432779312,-0.0568772554397583,0.316888809204102,0.446094542741776,-0.0723717510700226,0.336746215820313,0.498755186796188,-0.194512695074081,0.592353820800781,0.419058263301849,-0.193867295980453,0.451240539550781,0.444099873304367,-0.21930980682373,0.393287658691406,0.569902181625366,-0.293635547161102,0.502670288085938,0.503257751464844,-0.336586236953735,0.586544036865234,0.579939484596252,-0.408253967761993,0.583133697509766,0.723970293998718,-0.386999011039734,0.635036468505859,0.453645795583725,-0.328316777944565,0.706487655639648,0.51795893907547,-0.413802415132523,0.790643692016602,0.742613852024078,-0.426563203334808,0.806583404541016,0.599710047245026,-0.450207322835922,0.75462532043457,0.395191669464111,-0.154422461986542,0.789794921875,0.43578439950943,-0.270262211561203,0.82752799987793,0.472616374492645,-0.375226348638535,0.923620223999023,0.541079103946686,-0.416846513748169,1.02683448791504,0.626824736595154,-0.414429843425751,0.790176391601563,0.245568484067917,-0.113508433103561,0.901901245117188,0.342014849185944,-0.123791366815567,1.10945892333984,0.375401258468628,-0.00691995024681091,1.01111221313477,0.42592641711235,-0.121688686311245,1.02546691894531,0.274535059928894,-0.0752879083156586,0.921989440917969,0.45035046339035,-0.266925275325775,1.02437973022461,0.495594918727875,-0.328585743904114,1.12787818908691,0.569835603237152,-0.345352232456207,1.12143135070801,0.481789737939835,-0.175429999828339,0.744054794311523,0.361225992441177,0.562870681285858,0.575418472290039,0.360904723405838,0.450365602970123,0.493080139160156,0.330970734357834,0.226838171482086,0.439762115478516,0.465808779001236,0.477038860321045,0.574092864990234,0.318432092666626,0.00102108716964722,0.565799713134766,0.513297319412231,0.668949902057648, +0.604801177978516,0.620612621307373,0.792298436164856,0.416458129882813,0.590317010879517,0.686247944831848,0.276412963867188,0.55971747636795,0.52168595790863,0.201553344726563,0.532502412796021,0.318462282419205,0.323184967041016,0.449768722057343,0.328199237585068,0.36285400390625,0.428233802318573,0.166177600622177,0.200912475585938,0.511956751346588,0.101087540388107,0.369016647338867,0.421589016914368,-0.0233901143074036,0.274566650390625,0.500556349754333,-0.104218900203705,0.504051208496094,0.416151195764542,-0.123666703701019,0.413627624511719,0.499678492546082,-0.272694140672684,0.601329803466797,0.509427189826965,-0.384016543626785,0.696128845214844,0.426128268241882,-0.237586125731468,0.815025329589844,0.528627276420593,-0.42476087808609,0.780544281005859,0.329154521226883,-0.12142413854599,1.01583671569824,0.358121991157532,-0.0832035839557648,0.847766876220703,0.446453630924225,-0.307332932949066,1.02894592285156,0.55496221780777,-0.390011847019196,1.01619720458984,0.462166666984558,-0.221313759684563,1.21728897094727,0.585257828235626,-0.283961296081543,1.22874069213867,0.509109199047089,-0.134205192327499,1.35733413696289,0.615857303142548,-0.119399338960648,1.43219375610352,0.643072485923767,0.0838243365287781,1.28409957885742,0.520703434944153,0.0934861600399017,1.16987419128418,0.391779035329819,0.0977996289730072,1.43283462524414,0.663618147373199,0.301199078559875,1.34039306640625,0.554093420505524,0.271530330181122,1.35918235778809,0.675018489360809,0.506505489349365,1.24989128112793,0.547124922275543,0.413116276264191,1.17058181762695,0.414378196001053,0.336890548467636,1.22011947631836,0.675896346569061,0.674980759620667,1.03242111206055,0.666147768497467,0.786303222179413,1.10758590698242,0.548023760318756,0.585519552230835,0.818721771240234,0.646947622299194,0.827047526836395,0.985698699951172,0.556333541870117,0.701245665550232,0.800052642822266,0.523761749267578,0.679911255836487,1.01762390136719,0.415344685316086,0.522196352481842,0.821098327636719,0.427225589752197,0.571151852607727,0.151599884033203,-0.29138845205307,0.0103124380111694, +0.331632614135742,0.0335284918546677,0.0572999119758606,0.502941131591797,-0.29360830783844,-0.415339052677155,0.153221130371094,-0.239478439092636,0.559507489204407,0.583301544189453,0.0319385752081871,-0.247597903013229,1.04284858703613,-0.24509859085083,-0.518278956413269,0.332794189453125,0.0707125216722488,0.450692772865295,0.522777557373047,0.238238245248795,0.114690780639648,0.676029205322266,0.237269952893257,-0.0709737241268158,0.677818298339844,0.294603079557419,0.535597681999207,0.970041275024414,0.0666852742433548,-0.321335256099701,1.51869583129883,-0.168558746576309,-0.250341296195984,1.31089401245117,0.121512532234192,-0.129408925771713,1.70782470703125,-0.0998014658689499,0.26310333609581,1.44636917114258,0.170763269066811,0.23837548494339,1.20158767700195,0.321806132793427,0.224956303834915,1.5217399597168,-0.0709998235106468,0.781808853149414,1.31307601928711,0.191394627094269,0.609929084777832,1.04751586914063,-0.0956297591328621,1.06306600570679,0.973384857177734,0.173752292990685,0.811395645141602,0.507045745849609,-0.162167191505432,0.97527289390564,0.58624267578125,0.126090466976166,0.748508930206299,0.431716918945313,0.0279585309326649,-0.116369552910328,0.29132080078125,-0.29916387796402,-0.232136189937592,0.298683166503906,0.0485498681664467,0.254466235637665,0.105598449707031,-0.270417481660843,0.285566806793213,0.770751953125,0.0455668345093727,-0.317447125911713,0.764629364013672,-0.274581551551819,-0.512851357460022,0.628635406494141,0.144621998071671,-0.160026073455811,0.583721160888672,0.234845966100693,0.00893673300743103,0.426279067993164,0.145900562405586,0.0851277709007263,0.502712249755859,0.247384667396545,0.234753906726837,0.427213668823242,0.175797879695892,0.401438057422638,0.630998611450195,0.220325142145157,0.640898823738098,0.433895111083984,0.0977063179016113,0.62154084444046,0.939594268798828,0.17256036400795,-0.219315320253372,1.15714645385742,0.0931361466646194,-0.25468122959137,1.30405616760254,-0.208173543214798,-0.425226807594299,1.21365737915039,0.21664372086525,-0.0649955868721008, +1.41010665893555,0.148407697677612,0.0425589382648468,1.65719985961914,-0.131010740995407,-0.0102646946907043,1.32258796691895,0.256244391202927,0.230723768472672,1.17950439453125,0.308193027973175,0.105715356767178,1.4112663269043,0.185519263148308,0.435192883014679,1.65881729125977,-0.0792009085416794,0.537869215011597,1.21541595458984,0.272833645343781,0.529472947120667,1.18021011352539,0.330791175365448,0.344806164503098,1.16008377075195,0.187106370925903,0.739501655101776,1.30815505981445,-0.07698605209589,0.96269816160202,0.942283630371094,0.258647382259369,0.691463351249695,0.774089813232422,0.152426168322563,0.813096165657043,0.769289016723633,-0.125401481986046,1.06543910503387,0.792205810546875,0.310639202594757,0.574926853179932,0.294363021850586,-0.201793506741524,0.798019468784332,0.506752014160156,0.141421541571617,-0.0545108616352081,0.399784088134766,0.157978296279907,0.243660807609558,0.508504867553711,0.197502300143242,0.538809657096863,0.779354095458984,0.155579507350922,-0.216188937425613,1.09003829956055,0.193828403949738,-0.165721446275711,1.29343032836914,0.23826989531517,0.0732762813568115,1.29436302185059,0.268109828233719,0.388975858688354,1.09239959716797,0.269386023283005,0.63365638256073,0.782037734985352,0.241501212120056,0.692830264568329,-0.994616210460663,0.137330174446106,0.527625381946564,-1.27330994606018,0.152256548404694,0.464011460542679,-1.2763215303421,0.112327009439468,0.601563155651093,-1.5457980632782,0.0728352963924408,0.495857119560242,-1.08997714519501,0.175339847803116,0.382329016923904,-0.80828583240509,0.138292700052261,0.302286446094513,-1.4465252161026,0.133620083332062,0.361778914928436,-0.937703013420105,0.170874834060669,0.249412268400192,-1.25588691234589,0.171370357275009,0.12267242372036,-0.956648647785187,0.160797476768494,0.0485342107713223,-1.57719874382019,0.0960468053817749,0.212553352117538,-1.68033492565155,0.0104935169219971,-0.0397853814065456,-1.03417468070984,0.126172304153442,-0.134674161672592,-1.53355574607849,0.0932923555374146,0.0152841713279486, +-1.49400651454926,0.0114559233188629,-0.265124261379242,-1.23079466819763,0.110088527202606,-0.17831252515316,-1.42940449714661,0.0799256563186646,-0.157453715801239,-1.6324599981308,0.0719213783740997,0.229335948824883,-1.52540636062622,0.116012781858444,0.281063973903656,-0.940398275852203,0.170906752347946,0.16119858622551,-0.863714575767517,0.140150383114815,0.0275675430893898,-0.776037216186523,0.129186287522316,0.158240050077438,-1.36607503890991,0.156538248062134,0.2592493891716,-1.16151487827301,0.180474609136581,0.271038860082626,-1.08502113819122,0.172129943966866,0.0795347988605499,-0.995412945747375,0.145414292812347,-0.0578315928578377,-0.993850708007813,0.107349067926407,-0.179013341665268,-1.56454873085022,0.0978747606277466,0.125224605202675,-1.41600465774536,0.133401960134506,0.0604582391679287,-1.61577761173248,0.052150547504425,-0.0157789196819067,-1.71258544921875,0.0195999145507813,0.104261130094528,-1.24230599403381,0.143037766218185,-0.0506117083132267,-1.11871230602264,0.122607991099358,-0.159858331084251,-1.22109651565552,0.0740468800067902,-0.268152087926865,-1.0692024230957,0.0552918463945389,-0.307139873504639,-1.45864975452423,0.0529622882604599,-0.205802470445633,-1.48026597499847,0.0886815637350082,-0.0857771933078766,-1.60436165332794,0.00779470801353455,-0.166680112481117,-1.34409964084625,0.0962359309196472,-0.172848507761955,-1.19175136089325,0.166830569505692,0.433702945709229,-1.03752672672272,0.159109354019165,0.462706089019775,-1.27507996559143,0.13802582025528,0.525055825710297,-1.50232398509979,0.104722797870636,0.435915946960449,-1.35210955142975,0.148066401481628,0.424460917711258,-1.41942024230957,0.0934932231903076,0.569641947746277,-1.00036525726318,0.177448123693466,0.31132572889328,-0.88039892911911,0.159921184182167,0.272682577371597,-1.15170013904572,0.150700002908707,0.512203335762024,-1.39575362205505,0.122143179178238,0.4981369972229,-0.944465041160583,0.162196829915047,0.379689276218414,-1.5834037065506,0.0874337553977966,0.342863947153091,-0.853202998638153,0.1522416472435,0.15121129155159, +-1.26851618289948,0.168538004159927,0.346441119909286,-1.04765617847443,0.180790528655052,0.205215826630592,-0.912772834300995,0.124637991189957,-0.0859603062272072,-1.46850025653839,0.131547331809998,0.180960536003113,-1.64297354221344,0.0598300993442535,0.105692401528358,-1.1111433506012,0.151372328400612,-0.0475462153553963,-1.10042297840118,0.089928463101387,-0.241233393549919,-1.55171155929565,0.0498747974634171,-0.122785672545433,-1.37123882770538,0.120937943458557,-0.0625368654727936,-1.3444744348526,0.0613717287778854,-0.255299776792526,-0.969606399536133,-0.183240532875061,0.578251302242279,-0.768772125244141,-0.182255238294601,0.356118023395538,-1.26117706298828,-0.208846986293793,0.641165137290955,-0.735389709472656,-0.206265971064568,0.0596109628677368,-0.788503527641296,0.11484757065773,0.0116167347878218,-1.53211975097656,-0.249292999505997,0.52082747220993,-0.94282466173172,0.0759499371051788,-0.233356133103371,-1.67893981933594,-0.289129912853241,0.263204097747803,-0.882209777832031,-0.246102899312973,-0.198012441396713,-1.70011913776398,0.0339386463165283,0.250884473323822,-1.21230113506317,0.0364581048488617,-0.33906215429306,-1.15315055847168,-0.286549776792526,-0.318351179361343,-1.64555549621582,-0.313141644001007,-0.0333030819892883,-1.44472312927246,-0.312155365943909,-0.255436301231384,-0.884259104728699,0.140990555286407,0.429180026054382,-0.852243423461914,-0.17949067056179,0.482516467571259,-1.13001072406769,0.127357333898544,0.586321949958801,-1.11079025268555,-0.193454205989838,0.632185637950897,-0.729263305664063,-0.19158062338829,0.210193574428558,-1.40615081787109,-0.228136569261551,0.602034509181976,-0.788825988769531,-0.225106224417686,-0.0807633996009827,-0.846678853034973,0.0964519679546356,-0.123009569942951,-1.6419438123703,0.052333265542984,0.385510683059692,-1.62550354003906,-0.270290791988373,0.403579294681549,-1.0081787109375,-0.267260313034058,-0.279219567775726,-1.6850643157959,-0.303815275430679,0.112621493637562,-1.35861206054688,0.0214277803897858,-0.323820948600769,-1.30353736877441,-0.301942437887192,-0.309371680021286, +-1.56208419799805,-0.315905213356018,-0.159701466560364,0.362136840820313,-3.29503130912781,-1.13886308670044,0.391254425048828,-3.62402987480164,-1.37135314941406,0.358894348144531,-3.84813570976257,-1.6056854724884,0.233760833740234,-2.96576952934265,-0.911403298377991,-0.227874755859375,-2.66725659370422,-1.01277589797974,-0.434574127197266,-2.38126826286316,-1.75760519504547,-0.400167465209961,-2.05103158950806,-2.53137874603271,-0.257972717285156,-1.93412637710571,-2.95355224609375,-0.113639831542969,-1.99721908569336,-3.25988817214966,-0.0184535980224609,-2.29899930953979,-3.54173040390015,-0.050537109375,-2.7750391960144,-3.56294631958008,-0.0881862640380859,-3.06459903717041,-3.38283038139343,-0.0997581481933594,-3.30179667472839,-3.03768277168274,-0.0400314331054688,-3.59576630592346,-2.43028450012207,0.11822509765625,-3.79461193084717,-1.95434927940369,-0.610633850097656,-3.18578767776489,-1.12457597255707,-0.810405731201172,-3.11057448387146,-1.37165379524231,-0.504432678222656,-3.46963858604431,-1.29982614517212,-0.427804946899414,-3.75437593460083,-1.46381008625031,-0.722953796386719,-3.39949774742126,-1.52503061294556,-0.663368225097656,-3.70020723342896,-1.65884780883789,-0.960283279418945,-3.4605450630188,-2.26665854454041,-0.971319198608398,-3.15640234947205,-2.11831188201904,-1.03157806396484,-2.85419154167175,-1.98734772205353,-1.10634231567383,-2.5230655670166,-2.92006516456604,-1.06787872314453,-2.75059747695923,-3.09210538864136,-1.0969066619873,-3.02841711044312,-3.18179607391357,0.0255355834960938,-2.83177661895752,-0.801891982555389,-0.706050872802734,-2.97127604484558,-0.981582820415497,-0.899965286254883,-2.90467071533203,-1.22955906391144,-1.10610961914063,-2.635094165802,-1.91175007820129,-1.16714096069336,-2.34905624389648,-2.70677852630615,-1.12297058105469,-2.2880232334137,-3.01077222824097,-1.074462890625,-2.37006664276123,-3.20468640327454,-1.04829788208008,-2.59704804420471,-3.41172051429749,-1.08463668823242,-2.89362978935242,-3.47508692741394,-1.10942840576172,-3.10937786102295,-3.42127323150635, +-1.10851097106934,-3.300128698349,-3.18438839912415,-0.950550079345703,-3.68625497817993,-2.39768075942993,-0.604587554931641,-3.93475103378296,-1.75753569602966,-0.378612518310547,-3.96977281570435,-1.60049724578857,0.0241775512695313,-3.71027064323425,-2.17180252075195,-0.665212631225586,-3.06284737586975,-1.04288148880005,-0.860733032226563,-2.99154019355774,-1.29187977313995,-1.07304763793945,-2.72762751579285,-1.94188356399536,-1.01139831542969,-2.78550386428833,-1.53344988822937,-0.631742477416992,-3.83501482009888,-1.71497178077698,-0.783403396606445,-3.83488988876343,-2.03209853172302,-0.956384658813477,-3.59096574783325,-2.34020829200745,-1.05156326293945,-3.50171279907227,-2.80144572257996,-1.15382385253906,-2.48055028915405,-2.31434082984924,-1.13779640197754,-2.42408967018127,-2.82268071174622,-1.09172439575195,-2.43009662628174,-3.11454296112061,-1.10116577148438,-2.31152534484863,-3.09786868095398,-1.1462287902832,-2.29684138298035,-2.90981912612915,-1.05897903442383,-2.6477222442627,-3.31316423416138,-1.05456161499023,-2.46857738494873,-3.31758761405945,-1.09482192993164,-2.93609809875488,-3.37786197662354,-1.0625,-2.74546813964844,-3.46223759651184,-1.10715866088867,-3.16615676879883,-3.20069313049316,-1.11603164672852,-3.18355655670166,-3.3548002243042,-1.10218048095703,-3.02132153511047,-3.45621633529663,0.125194549560547,-2.87773966789246,-0.841630041599274,-0.0775108337402344,-2.77984189987183,-0.795510172843933,-0.706779479980469,-2.88985657691956,-0.946955382823944,-0.899787902832031,-2.82611846923828,-1.19661569595337,-1.09961700439453,-2.55738210678101,-1.88756108283997,-1.15114974975586,-2.27900767326355,-2.65029335021973,-1.09865570068359,-2.23313570022583,-3.01874709129333,-1.03900527954102,-2.31139278411865,-3.25295686721802,-1.01120376586914,-2.56176614761353,-3.48022317886353,-1.04672431945801,-2.88488006591797,-3.54586815834045,-1.07853507995605,-3.1335015296936,-3.46526861190796,-1.06785202026367,-3.37855529785156,-3.19728326797485,-0.914512634277344,-3.74653816223145,-2.44406080245972, +-0.565380096435547,-3.99021053314209,-1.80922031402588,0.384429931640625,-3.46626782417297,-1.25712180137634,0.394647598266602,-3.76210427284241,-1.48108148574829,0.312328338623047,-3.11653280258179,-1.01705300807953,0.288497924804688,-3.84917545318604,-1.70677995681763,-0.55531120300293,-3.32398295402527,-1.21193730831146,-0.763505935668945,-3.24939131736755,-1.44996047019958,-0.46318244934082,-3.61496138572693,-1.38310551643372,-0.394538879394531,-3.88230395317078,-1.54397797584534,-0.691673278808594,-3.55240178108215,-1.59509754180908,-0.962331771850586,-3.312748670578,-2.19192218780518,-0.854730606079102,-3.29235792160034,-1.78891634941101,-0.819282531738281,-3.59978628158569,-1.92531704902649,-0.996034622192383,-3.00033211708069,-2.04813933372498,-0.928867340087891,-2.99521064758301,-1.64637660980225,-1.04530334472656,-3.01163077354431,-2.47531127929688,-1.09093856811523,-2.71365809440613,-2.35866093635559,-1.04891395568848,-3.29580807685852,-2.63891267776489,-1.0800724029541,-2.63067102432251,-3.01317477226257,-1.07865142822266,-2.88653779029846,-3.14695596694946,-0.339651107788086,-4.01700115203857,-1.65980100631714,-0.341964721679688,-2.54318165779114,-1.34048938751221,-0.443788528442383,-2.20330715179443,-2.17322301864624,-0.334272384643555,-1.96617233753204,-2.77611231803894,-0.183137893676758,-1.94029116630554,-3.10982704162598,-0.0533447265625,-2.11746525764465,-3.41868877410889,-0.0251636505126953,-2.53979563713074,-3.58451414108276,-0.0716323852539063,-2.93991565704346,-3.49293351173401,-0.0999298095703125,-3.1792573928833,-3.24098896980286,-0.0805683135986328,-3.45012044906616,-2.74317979812622,-0.834648132324219,-3.44924712181091,-1.85905694961548,-0.887456893920898,-3.13789081573486,-1.7167364358902,-1.06258201599121,-2.86027193069458,-2.40884733200073,-1.0436954498291,-3.15908861160278,-2.55314254760742,-0.975006103515625,-2.87368273735046,-1.58169674873352,-0.80072021484375,-3.73520565032959,-1.98585629463196,-1.05210876464844,-3.41495227813721,-2.7291944026947,-1.12576866149902,-2.58043742179871,-2.32966709136963, +-1.12204551696777,-2.35240578651428,-2.99892497062683,-1.06797218322754,-2.52842807769775,-3.22501230239868,-1.07293128967285,-2.78829860687256,-3.36182475090027,-1.10964202880859,-3.07705545425415,-3.36814165115356,-1.00862503051758,-2.7079541683197,-1.50451409816742,-1.14383506774902,-2.40090155601501,-2.29556322097778,-1.13142395019531,-2.23219323158264,-2.87352132797241,-1.06683349609375,-2.25451374053955,-3.1394681930542,-1.01822090148926,-2.41883897781372,-3.37648344039917,-1.02468109130859,-2.72508811950684,-3.53435206413269,-1.06540679931641,-3.01721858978271,-3.52177095413208,-1.08391761779785,-3.24512457847595,-3.37957167625427,-1.01663970947266,-3.5602605342865,-2.85100555419922,-0.74571418762207,-3.89368748664856,-2.07977437973022,-0.530891418457031,-0.772210478782654,2.8714599609375,-1.04084396362305,-0.856585025787354,2.75734281539917,-1.45442199707031,-1.04149436950684,2.4898099899292,-1.74760437011719,-1.34752690792084,2.06770849227905,-1.8157901763916,-1.8315372467041,1.54847049713135,-1.61419296264648,-2.34520721435547,1.20201122760773,-1.21634674072266,-2.77229905128479,1.07265543937683,-0.667028427124023,-3.0420880317688,1.07834911346436,-0.201398849487305,-3.08114385604858,1.10573470592499,0.244754791259766,-2.96296763420105,1.13804697990417,0.690059661865234,-2.64286279678345,1.20341992378235,0.990625381469727,-2.15697431564331,1.36745619773865,1.07121658325195,-1.69782304763794,1.66155350208282,0.941146850585938,-1.31487417221069,2.06082439422607,0.495182037353516,-0.957957983016968,2.56812858581543,0.0477352142333984,-0.810096740722656,2.80314421653748,0.176589965820313,-2.83662629127502,2.30795311927795,0.360511779785156,-2.19828248023987,2.32268333435059,-0.395946502685547,-2.92218947410583,2.43958353996277,-0.437461853027344,-2.27707481384277,2.5173487663269,0.122249603271484,-1.56351459026337,2.65085911750793,-0.469867706298828,-1.59567308425903,2.75052857398987,-1.08064651489258,-1.61874222755432,2.65883350372314,-1.16597557067871,-2.2303991317749,2.43066668510437,-0.911243438720703,-2.84774255752563,2.38907265663147, +-0.553590774536133,-0.938042163848877,3.04771518707275,-0.541149139404297,-1.06148540973663,3.00859093666077,-1.09586334228516,-1.04902160167694,2.91682744026184,-1.08585166931152,-1.16100239753723,2.88485479354858,-1.50290679931641,-1.27975392341614,2.67382597923279,-1.4578685760498,-1.32935881614685,2.68378376960754,-1.73892974853516,-1.61837029457092,2.42258787155151,-1.6265983581543,-1.6409592628479,2.47449946403503,-1.7800121307373,-2.13998103141785,2.23108267784119,-1.67533874511719,-2.15952348709106,2.28437256813049,-1.60024452209473,-2.68393278121948,2.17601823806763,-1.48575782775879,-2.69233560562134,2.23590469360352,-1.23556900024414,-3.09192752838135,2.23757290840149,-1.20595932006836,-3.04402852058411,2.27403259277344,-0.800895690917969,-3.2946343421936,2.32876205444336,-0.806695938110352,-3.20997667312622,2.36363959312439,-0.338821411132813,-3.32595086097717,2.37768340110779,-0.349037170410156,-3.2455677986145,2.40916132926941,0.144527435302734,-3.19388103485107,2.27852439880371,0.147010803222656,-3.12057137489319,2.30729961395264,0.598094940185547,-2.90004420280457,2.0325722694397,0.530124664306641,-2.87579202651978,2.10511612892151,0.897066116333008,-2.39631986618042,1.94965672492981,0.809173583984375,-2.37708473205566,2.0273551940918,1.00155067443848,-1.9033215045929,2.05925369262695,0.894773483276367,-1.94435679912567,2.1216402053833,0.742382049560547,-1.52420473098755,2.41093802452087,0.87428092956543,-1.49828219413757,2.34837126731873,0.431108474731445,-1.12427341938019,2.78570556640625,0.408092498779297,-1.1901843547821,2.76620745658875,-0.00526237487792969,-0.967946827411652,2.99111413955688,0.000392913818359375,-1.08270847797394,2.94829082489014,-0.0976295471191406,-3.19766592979431,2.37758350372314,0.673698425292969,-2.01666378974915,2.21885633468628,0.464572906494141,-1.54329240322113,2.52619457244873,0.896228790283203,-2.15096998214722,2.04221296310425,-0.836284637451172,-3.06688714027405,2.37789821624756,-0.581277847290039,-3.24861669540405,2.39976596832275,0.0452117919921875,-1.28790819644928,2.81989669799805, +0.235342025756836,-1.12709212303162,2.86709523200989,0.563356399536133,-1.31988382339478,2.62067365646362,-0.5067138671875,-1.28879046440125,2.89480185508728,-0.26276969909668,-1.05876505374908,2.99900531768799,-1.07157707214355,-1.35457372665405,2.78777360916138,-0.821758270263672,-1.09709548950195,2.9664032459259,-1.38942909240723,-1.63298797607422,2.56182646751404,-1.54592704772949,-1.44833016395569,2.59230995178223,-1.31468391418457,-1.24861097335815,2.7763569355011,-1.4649658203125,-2.19149351119995,2.35220718383789,-1.67608642578125,-1.8864278793335,2.36658000946045,-1.22549057006836,-2.76313185691833,2.31116318702698,-1.60530090332031,-2.43503761291504,2.24369668960571,-1.03763008117676,-3.13281011581421,2.31502747535706,-1.33649444580078,-2.91078424453735,2.25234532356262,-0.26959228515625,-0.93745619058609,3.03948545455933,-0.834796905517578,-0.976547837257385,3.00269603729248,-1.31943321228027,-1.15150856971741,2.80250787734985,-1.64367294311523,-1.42950367927551,2.54486751556396,-1.78586769104004,-1.86396408081055,2.31394028663635,-1.71688079833984,-2.42011737823486,2.1861777305603,-1.43386840820313,-2.9109890460968,2.19739937782288,-1.02317047119141,-3.21738624572754,2.28379011154175,-0.572973251342773,-3.33093619346619,2.36519408226013,-0.0978622436523438,-3.27933740615845,2.35082364082336,0.382976531982422,-3.07236957550049,2.15469455718994,0.7705078125,-2.66214609146118,1.96539580821991,0.97462272644043,-2.14021396636963,1.98184418678284,0.671401977539063,-1.29540300369263,2.57357120513916,0.216928482055664,-1.02267074584961,2.91570377349854,0.737411499023438,-1.12120175361633,2.32583045959473,-0.104099273681641,-2.8818531036377,2.39314699172974,-0.4188232421875,-2.62391710281372,2.46441340446472,-0.0608711242675781,-2.24730849266052,2.46163606643677,0.249420166015625,-2.55772280693054,2.30533385276794,-0.450630187988281,-1.92971396446228,2.61871480941772,-0.180503845214844,-1.58103060722351,2.72572898864746,0.229562759399414,-1.86207115650177,2.48423504829407,-0.814651489257813,-2.26518297195435,2.49636912345886, +-1.14333724975586,-1.91446506977081,2.52915120124817,-0.772018432617188,-1.60727310180664,2.7249813079834,-0.649862289428711,-2.90578985214233,2.43505334854126,-1.05487442016602,-2.55520296096802,2.39531826972961,0.848173141479492,-1.73389744758606,2.24457120895386,0.976217269897461,-1.69513261318207,2.17918109893799,-0.798587799072266,-0.800173997879028,2.83583950996399,-1.26003456115723,-0.936331748962402,2.64256763458252,-1.62226486206055,-1.1741509437561,2.29736375808716,-1.81447792053223,-1.57484817504883,1.80332350730896,-1.74444198608398,-2.09301853179932,1.34740948677063,-1.43878936767578,-2.57401514053345,1.11414837837219,-0.944974899291992,-2.93291282653809,1.06637287139893,-0.424861907958984,-3.08606052398682,1.09163522720337,0.0204448699951172,-3.04365158081055,1.1201479434967,0.475624084472656,-2.82847881317139,1.16260433197021,0.865083694458008,-2.40879821777344,1.27009212970734,1.05661964416504,-1.91807866096497,1.50034260749817,1.04257202148438,-1.50191819667816,1.84388959407806,0.278274536132813,-0.86220121383667,2.71694254875183,-0.235385894775391,-0.777809321880341,2.85760617256165,0.39703369140625,-2.83835864067078,2.19620895385742,0.358951568603516,-3.02994108200073,2.20057702064514,0.138042449951172,-3.01884365081787,2.31740665435791,0.631147384643555,-2.33206868171692,2.14640998840332,0.683670043945313,-2.63843274116516,2.04785013198853,-0.37005615234375,-3.12384247779846,2.42252969741821,-0.0739593505859375,-2.5883994102478,2.40969777107239,-0.109931953251362,-1.90731143951416,2.57658672332764,-0.802410125732422,-1.92821967601776,2.59536290168762,-0.742389678955078,-2.60646486282349,2.45218658447266,0.310462951660156,-2.98022437095642,2.23640275001526,0.508522033691406,-2.58969974517822,2.16861248016357,-0.106201171875,-3.07893943786621,2.3843560218811,0.577737808227539,-1.79505443572998,2.35691690444946,0.751132965087891,-2.16328620910645,2.12239861488342,-0.601310729980469,-3.11688470840454,2.41720604896545,0.335521697998047,-1.30620992183685,2.71630191802979,-0.231948852539063,-1.28109073638916,2.88024234771729, +-0.789840698242188,-1.314040184021,2.86103749275208,-1.34217262268066,-1.40812420845032,2.6838366985321,-1.45148277282715,-1.90008533000946,2.44269728660583,-1.36650848388672,-2.48929047584534,2.31611061096191,-1.11130142211914,-2.9826774597168,2.31412053108215 + } + PolygonVertexIndex: *11977 { + a: 28,1016,-2,1,31,-1003,1,1006,-5,30,1018,-2,32,1,-1015,5,1004,2063,-739,4,1006,1005,-741,8,31,1007,-2067,2067,1002,31,-9,2068,1001,3,-10,1019,1,-3,2128,2127,1261,-1264,2041,1009,35,-11,2043,1010,34,-12,2045,1028,13,-13,1011,1029,33,-15,1012,1015,15,-723,6,32,1014,-1014,1016,2055,726,-28,1,1004,-6,13,1,-1011,1027,2057,731,-29,1018,1017,733,-30,2,734,1020,-1020,18,26,1021,-2048,1,1003,-8,1,1009,-35,19,1023,1022,-728,20,1030,2049,-22,22,25,1031,-1025,0,1032,1025,-24,24,1000,2051,-731,720,10,2040,-2040,29,1027,-2,1,1029,-16,33,1,-1029,1,1030,-21,1,1031,-26,1,1032,-1,1,1023,-20,27,1021,-2,0,1000,-2,42,728,2048,-1038,1033,1034,1035,-40,1050,1049,728,-43,1036,1038,1039,-42,1037,1041,1042,-43,1048,1047,1056,-1058,1043,1047,1048,-44,1251,2050,45,-45,1042,1051,1050,-43,1053,1054,1055,-47,1055,1054,1062,-1064,1046,1059,1060,-48,1065,1058,47,-49,1063,1243,1244,-1056,110,1241,1242,-112,1069,1066,1067,-53,1072,1070,1071,-55,1076,1073,1074,-56,1079,1077,1078,-58,1082,1080,1081,-59,1085,1083,1084,-61,1089,1086,1087,-62,1087,1090,1091,-62,1096,1094,1095,-63,1092,1097,1098,-64,1103,1101,1102,-65,1099,1104,1105,-66,1110,1108,1109,-67,1106,1111,1112,-68,1116,1114,1115,-69,1113,1117,1118,-70,1123,1121,1122,-71,1119,1124,1125,-72,1129,1127,1128,-74,1126,1130,1131,-75,1136,1134,1135,-76,1135,1137,1138,-76,1142,1140,1141,-78,1139,1143,1144,-80,1136,1146,1147,-74,1149,1150,1151,-81,1155,1153,1154,-82,1145,1156,1157,-83,1152,1159,1160,-84,1164,1162,1163,-85,1158,1165,1166,-86,1161,1168,1169,-87,1173,1171,1172,-88,1167,1174,1175,-90,1170,1177,1178,-91,1182,1180,2096,-92,1181,1183,2098,-93,1182,1185,1151,-84,1184,1188,1189,-761,1148,1191,1192,-95,1129,1194,1195,-71,1196,1197,1198,-97,1123,1199,1200,-69,1201,1202,1203,-99,1116,1205,1206,-67,1207,1208,1209,-100,1110,1210,1211,-65,1212,1213,1214,-102,1103,1215,1216,-63,1217,1218,1219,-103,1096,1220,1221,-61,1222,1223,1224,-105,1085,1226,1227,-58,1228,1229,1230,-107,1079,1232,1233,-55,1234,1235,1236,-108,1072,1237,1238,-52,1236,1240,1239,-108,51,1238,1064,-51,1242,1243,1063,-112, +1245,1247,1052,-47,1248,1250,1251,-45,1254,1257,113,-113,1252,1253,1254,-113,1259,2052,116,-115,1255,1258,1259,-115,1262,2053,729,-118,1260,1261,1262,-118,118,720,2039,-1265,119,1268,1267,-122,1264,1265,1266,-119,122,2042,1272,-124,1267,1269,1270,-122,124,721,2044,-1276,1272,1273,1274,-124,1280,1279,721,-125,1275,1276,1277,-125,131,723,1282,-1282,132,725,1290,-1290,1285,1283,1284,-129,1288,1286,1287,-131,322,1545,1544,-324,2022,1291,1292,-134,1293,1294,1295,-135,1292,1296,1297,-134,1298,1300,1301,-137,1295,1304,1299,-135,1305,1307,1303,-136,1306,1310,1311,-138,1312,1313,1314,-140,1319,1316,1317,-141,1311,1320,1309,-138,1324,1322,1323,-144,1321,1325,1326,-143,1308,1328,1329,-139,1302,1331,1332,-234,1337,1334,1335,-149,1330,1338,1339,-147,1336,1341,1342,-150,1333,1344,1345,-148,1349,1347,1348,-153,1335,1350,1351,-149,1348,1353,1354,-153,1340,1356,1357,-152,1346,1359,1360,-183,1365,1362,1363,-157,1352,1366,1367,-155,1355,1369,1370,-158,1364,1372,1373,-159,1377,1374,1375,-181,1368,1378,1379,-160,1371,1381,1382,-161,1376,1384,1385,-163,1409,1386,1172,-89,1387,1388,1176,-88,1179,1390,1391,-94,1380,1393,1389,-164,1190,1394,2101,-763,147,1345,1422,-204,167,56,1075,-1396,1397,1396,56,-168,168,1088,1398,-170,170,1093,1399,-287,171,1100,1503,-289,172,1107,1400,-291,173,1401,1510,-293,174,1120,1512,-176,1514,1402,174,-176,1447,1133,72,-296,1446,1403,176,-233,1405,1404,78,-229,1440,1406,177,-227,1408,1407,179,-179,1435,1409,88,-222,1410,1377,180,-219,1429,1365,156,-216,1425,1360,181,-211,233,1332,1419,-203,233,202,1448,-2018,190,189,194,-2115,507,2117,196,-1417,2113,1420,204,-189,742,293,1509,-1471,189,260,-195,1419,1418,201,-203,207,1423,1422,-209,204,1420,1418,-206,206,1421,1423,-208,209,1424,1425,-211,1426,1424,209,-212,1427,1428,214,-213,214,1428,1429,-216,213,1430,1431,-218,217,1431,1410,-219,216,1432,1433,-221,220,1433,1435,-222,219,1434,1436,-224,223,1436,1408,-179,222,1437,1438,-226,225,1438,1440,-227,224,1439,1441,-228,227,1441,1405,-229,229,1442,1444,-231,230,1444,1446,-233,267,2086,838,-270,231,293,1443,-1446,1481,1484, +278,-278,1484,1487,279,-279,258,49,1061,-1061,259,467,2017,-1449,234,2010,1449,-263,235,455,1450,-790,236,453,1452,-1452,452,1453,791,-491,237,1455,1454,-488,238,1962,787,-240,240,1956,785,-242,1528,1948,1943,-1945,242,1458,1457,-486,243,1769,1459,-483,244,1760,1460,-482,245,1462,1461,-247,247,1464,1463,-249,1601,1599,829,-1466,1466,1593,334,-539,251,252,250,-250,841,1588,252,-252,255,1587,794,-257,793,1467,255,-257,1469,1468,257,-498,277,276,-276,269,802,1477,-268,109,266,752,-752,51,50,1058,-1066,266,1476,1481,-278,265,2078,1483,-1483,231,1513,1509,-294,264,1475,1486,-1486,194,200,768,-2115,1483,1488,280,-1483,749,1474,1490,-1490,1488,1395,166,-281,1486,1491,281,-1486,748,2075,1493,-1493,1491,1397,167,-282,1490,1494,282,-1490,263,2073,1496,-1496,1494,1398,283,-283,1493,1497,284,-1493,1499,1498,746,-1474,1497,1399,169,-285,1496,1500,285,-1496,1472,1502,1501,-745,1500,1503,286,-286,1499,1504,287,-1499,743,1471,1506,-1506,1504,1400,288,-288,1502,1507,289,-1502,741,1470,1509,-1509,1507,1510,290,-290,1506,1511,291,-1506,2117,507,1415,-193,1511,1512,292,-292,1509,1513,294,-1509,1513,1514,175,-295,205,1418,1419,-204,1517,1898,432,-297,1519,1518,300,-300,440,1521,1520,-304,304,1523,1522,-306,306,1525,1524,-308,1947,1945,1776,-1778,308,1528,1527,-310,1529,1954,308,-310,1531,1530,447,-311,1533,1532,312,-312,1534,1972,450,-314,1536,1535,315,-315,318,1538,1537,-320,1540,1539,298,-298,1542,1541,320,-434,318,319,1543,-1903,432,1515,1516,-297,325,732,1550,-1550,1544,1546,1547,-324,1559,1558,732,-326,1548,1551,1552,-325,1549,1555,1556,-326,458,1906,1992,-460,2053,1262,2126,-2130,1560,1561,1562,-37,1564,1565,1566,-329,1563,1567,1040,-41,1572,1569,1570,-331,1566,1573,1568,-329,338,1578,1576,-1578,1552,1576,1557,-325,1581,1579,1468,-259,1580,1582,1467,-258,333,1602,1601,-1466,334,1590,1591,-248,1593,1592,1590,-335,1604,1602,1598,-336,2135,1598,1602,-334,829,1599,1600,-337,1601,1602,1603,-338,1595,1605,1604,-336,1577,1608,1607,-339,1610,1611,1612,-343,1616,1613,1614,-345,1603,1617,1618,-338,1615,1620,1621,-346,1622,1623,1624,-347,1624, +1626,1627,-347,1631,1629,1630,-350,1614,1632,1633,-345,1628,1635,1636,-351,1637,1639,1640,-354,1644,1642,1643,-355,1634,1645,1646,-353,1641,1648,1649,-356,1653,1651,1652,-357,1652,1654,1655,-357,1650,1657,1658,-358,1647,1661,1662,-359,1659,1664,1665,-360,1656,1667,1668,-362,1666,1670,1671,-363,1665,1673,1669,-360,1655,1675,1663,-357,1677,1678,1679,-366,1684,1681,1682,-367,1680,1685,1686,-369,1682,1687,1688,-367,1686,1690,1691,-369,1679,1693,1694,-366,1676,1696,1697,-373,1701,1699,1692,-371,1695,1702,1703,-374,1707,1705,1706,-376,1698,1708,1709,-378,1713,1711,1704,-375,1713,1714,1715,-379,1710,1717,1718,-380,1697,1720,1662,-373,1722,1723,1724,-381,1721,1726,1646,-359,1725,1729,1730,-384,1734,1732,1733,-385,1727,1735,1633,-353,1739,1737,1738,-387,1618,1740,1600,-338,1745,1742,1743,-388,1748,1746,1747,-389,1591,1749,1464,-248,1462,1751,1752,-245,1753,1754,1755,-390,1760,1757,1758,-244,1744,1761,1762,-391,1756,1763,1764,-392,1769,1766,1767,-243,1755,1770,1759,-390,1775,1773,1774,-396,1777,1943,1948,-1948,1774,1778,1779,-396,1780,1781,1782,-397,1785,1783,1784,-400,1785,1786,1782,-398,1791,1789,1790,-402,1788,1792,1793,-401,1796,1795,1715,-403,1794,1797,1798,-404,1799,1800,1801,-405,1802,1803,1804,-406,1798,1806,1807,-404,1801,1810,1809,-405,1812,1813,1814,-409,1819,1816,1817,-410,1817,1820,1821,-410,1815,1823,1824,-411,1672,1826,1822,-364,1831,1828,1829,-417,1821,1832,1825,-410,1837,1834,1835,-414,1811,1838,1839,-407,1836,1841,1842,-415,1843,1844,1845,-416,1849,1846,1847,-419,1835,1850,1840,-414,1848,1852,1853,-420,1854,1855,1856,-421,1860,1857,1858,-423,1847,1861,1862,-419,1868,1864,1865,-425,1856,1869,1859,-421,1873,1871,1872,-427,1877,1874,1875,-429,1876,1878,1879,-428,1883,1880,1881,-431,1882,1884,1885,-430,1889,1887,1888,-298,1888,1890,1540,-298,1889,1893,1881,-430,1894,1895,1896,-431,1891,1899,1542,-434,1900,1901,1902,-436,1896,1908,1883,-431,1877,1911,1912,-427,1897,1914,1915,-438,1910,1917,1918,-439,1923,1920,1921,-444,1916,1924,1921,-440,1873,1926,1863,-423,1913,1928,1929,-442,1925,1931,1932,-444,1932,1934,1923, +-444,1933,1936,1775,-396,1930,1938,1939,-473,1935,1941,1940,-446,1949,1951,1952,-447,1950,1955,1956,-241,1953,1958,1959,-449,1957,1961,1962,-239,1960,1964,1965,-450,1965,1967,1963,-450,1966,1969,1970,-452,1453,1973,1974,-454,1452,1975,1976,-456,1980,1978,1979,-457,1979,1981,1982,-457,1982,1983,1984,-457,1988,1986,1987,-465,1450,1989,1990,-235,1993,1985,458,-460,1995,1994,461,-461,1999,1998,462,-740,1984,1996,1987,-457,2004,2003,465,-464,1997,2000,2001,-465,2062,2014,469,-737,1991,2005,2006,-467,2010,2007,2008,-468,2002,2011,2012,-469,36,1033,2046,-39,2017,2015,1301,-234,2009,2018,2019,-471,2013,2020,2021,-472,2016,2023,1297,-137,1927,2024,2025,-445,2029,2027,1939,-475,1862,2030,1851,-419,1942,2032,2029,-475,2031,2033,1839,-477,965,598,690,-920,779,968,599,-692,600,968,779,483,-918,480,481,1460,-973,538,844,-699,482,1459,782,-602,485,1457,784,-487,774,963,596,-690,640,704,865,-784,486,782,1459,-486,785,239,603,-981,785,980,602,-242,602,977,1456,-242,598,963,774,-691,446,1950,1945,-1948,494,668,856,-861,666,606,861,-855,821,637,497,-499,256,498,-794,504,864,640,-818,802,801,630,-271,827,276,-524,805,804,630,-647,869,878,629,-512,807,806,628,-513,809,808,513,-663,868,810,491,-662,812,811,627,-661,867,813,484,-515,866,814,644,-516,2037,857,643,-664,2035,815,516,-660,2036,852,642,-518,640,783,816,-519,505,817,2038,-665,877,818,505,-665,2076,819,639,-658,2099,795,501,-657,2094,820,638,-2093,637,821,876,-655,496,792,874,-654,519,822,875,-521,521,823,873,-523,636,825,824,-653,523,828,872,-525,525,827,826,-527,635,830,2060,-652,636,828,276,-528,527,521,-826,528,519,823,-528,830,529,276,-526,634,271,-833,634,832,831,-531,833,271,-635,633,833,834,-651,632,836,835,-650,871,837,632,-650,836,632,268,-634,870,839,631,-649,837,631,268,-633,510,840,2064,-646,840,510,269,-532,694,780,2087,-589,822,519,528,-497,1469,497,496,-529,251,842,-536,1466,923,537,-250,248,556,918,-539,1466,699,-924,481,692,-777,864,704,-641,538,697,-845,943,492,-989,667,557,860,-857,931,841,251,-536,482,601,972,-1461,854,861,557,-668,599,965,919,-692,684,564, +-898,776,2085,719,-694,695,915,998,-590,481,775,-693,696,781,2088,-719,917,916,715,-480,556,859,997,-718,779,996,714,-484,2079,918,556,-718,554,855,919,-691,552,2121,774,-690,920,843,698,-556,590,921,778,-479,537,923,922,-713,713,924,772,-478,700,926,925,-712,927,995,713,-478,536,700,711,-711,865,928,708,-533,535,842,929,-710,864,846,542,-705,701,931,930,-707,932,845,994,-505,993,933,701,-707,591,935,934,-503,992,936,533,-706,991,2069,937,-704,989,938,534,-593,594,2110,879,-703,500,939,990,-596,500,595,2109,-941,545,849,899,-688,850,897,686,-671,669,941,898,-686,942,895,684,-548,551,943,896,-575,945,944,573,-547,668,853,946,-684,894,856,668,-684,892,854,667,-683,893,947,666,-573,665,851,890,-571,562,949,948,-673,543,847,891,-682,563,950,881,-560,541,848,889,-568,951,884,563,-560,2090,952,541,-568,953,883,677,-674,2059,954,539,-569,955,885,678,-551,888,956,540,-566,688,957,882,-562,959,958,675,-567,679,886,960,-561,679,560,961,-888,623,913,773,-597,2058,962,597,-625,585,912,963,-599,914,964,611,-588,622,910,965,-600,967,966,626,-626,621,969,968,-601,609,970,911,-618,777,909,621,-601,608,863,906,-616,972,971,584,-481,607,862,973,-582,782,974,620,-602,558,880,975,-581,1946,1456,1457,-1459,904,976,558,-581,583,978,977,-603,979,861,606,-615,618,907,980,-604,981,860,557,-579,616,982,786,-605,495,984,983,-614,985,905,616,-605,492,986,901,-576,790,987,582,-489,493,988,900,-613,788,903,579,-606,489,858,902,-578,510,645,803,-802,11,2041,1268,-120,12,2043,2042,-123,721,14,2045,-2045,1279,1011,14,-722,1282,1012,722,-128,1290,1013,724,-724,18,2047,2046,-38,727,1022,2048,-729,1049,2049,727,-729,2050,1024,21,-46,1257,1025,22,-114,2052,2051,23,-117,2128,1263,2093,-2131,731,327,2056,-2056,732,1558,2057,-734,322,1550,1017,-18,1020,1545,322,-18,2062,2061,6,-726,2004,2063,737,-737,1999,1005,738,-464,8,2066,1995,-461,9,2067,1993,-460,6,2061,1003,-33,1472,1204,97,-744,1473,2071,745,-745,2073,2072,100,-747,2075,2074,747,-264,749,105,1225,-1475,1475,1231,105,-750,2078,2077,750,-265,109,2080,1476,-267,753,1246,2084,-755,755,1249,2086,-268, +756,2089,1477,-274,757,1256,1478,-275,758,115,2091,-1480,2093,1263,115,-759,183,2095,1187,-92,184,2097,2096,-93,760,185,1411,-2099,761,2100,1189,-763,186,1412,2101,-162,763,2103,2102,-765,765,2105,2104,-767,187,2107,2106,-154,767,1413,2108,-151,188,2111,1343,-145,768,2113,2112,-142,1318,2114,768,-142,1315,2115,190,-770,2116,1414,191,-130,770,196,2117,-1279,2119,2118,196,-771,1271,2120,198,-772,2123,2122,199,-121,741,95,1193,-1471,776,693,-482,1461,481,693,-781,783,865,532,-642,908,784,977,-979,977,784,1457,-1457,692,999,2085,-777,1949,1948,1528,-309,446,1947,1948,-1950,497,637,792,-497,793,498,-498,940,820,498,-501,1,1015,-17,269,510,801,-803,276,827,-526,629,804,805,-512,628,878,869,-513,513,806,807,-663,491,808,809,-662,627,810,868,-661,484,811,812,-515,644,813,867,-516,643,814,866,-664,516,857,2037,-660,642,815,2035,-518,641,852,2036,-659,641,658,816,-784,640,518,2038,-818,639,818,877,-658,501,819,2076,-657,638,795,2099,-2093,498,820,2094,-656,498,655,876,-822,637,654,874,-793,496,653,875,-823,519,520,873,-824,521,522,824,-826,636,652,872,-829,523,524,826,-828,525,526,2060,-831,276,828,-524,636,527,-826,529,830,-636,635,651,831,-833,633,268,271,-834,634,530,834,-834,631,839,838,-269,633,650,835,-837,631,837,871,-649,531,839,870,-648,269,838,839,-532,253,936,-535,531,647,2064,-841,719,2087,780,-694,933,533,-254,695,781,696,1463,-247,248,1463,696,859,-557,915,695,246,1461,780,-695,1528,1944,1526,-1528,694,588,998,-916,715,2065,775,-480,695,589,2088,-782,714,916,917,-484,696,718,997,-860,553,996,779,-692,697,918,2079,-2082,553,691,919,-856,698,844,2034,-556,554,690,774,-2122,699,843,920,-717,552,689,778,-922,699,716,922,-924,590,478,772,-925,537,712,925,-927,708,995,927,-533,542,928,865,-705,536,710,929,-843,994,846,864,-505,535,709,930,-932,707,845,932,-504,533,933,993,-706,707,503,934,-936,534,936,992,-593,591,502,937,-2070,499,938,989,-594,991,703,879,-2111,499,593,990,-940,594,702,940,-2110,686,899,849,-671,684,897,850,-548,545,687,898,-942,573,895,942,-547,669,685,896,-944,569,944,945,-672,551,574,946,-854,569, +671,544,-677,667,856,894,-683,666,854,892,-573,548,947,893,-572,548,571,890,-852,676,544,948,-950,665,570,891,-848,562,672,881,-951,543,681,889,-849,677,884,951,-674,539,952,2090,-569,678,883,953,-551,540,954,2059,-566,564,885,955,-550,675,956,888,-567,564,549,882,-958,674,958,959,-681,688,561,960,-887,674,680,887,-962,597,773,913,-625,611,962,2058,-588,623,596,963,-913,626,964,914,-626,585,598,965,-911,610,966,967,-587,622,599,968,-970,610,586,911,-971,584,909,777,-481,609,617,906,-864,620,971,972,-602,608,615,973,-863,619,974,782,-487,607,581,975,-881,619,486,784,-909,606,976,904,-615,557,861,979,-579,583,602,980,-908,494,860,981,-577,618,603,786,-983,494,576,983,-985,582,905,985,-489,495,613,901,-987,579,987,790,-606,492,575,900,-989,489,577,903,-789,493,612,902,-859,617,580,-907,27,1,-1017,24,1,-1001,5,1006,-2,1,16,-1015,29,1,-1019,7,737,2063,-1005,5,738,1005,-1007,4,740,2066,-1008,3,1002,2067,-10,2,1001,2068,-735,10,35,1008,-2041,1026,2124,-2,2125,2040,1008,-2125,11,34,1009,-2042,13,1010,2043,-13,14,33,1028,-2046,15,1029,1011,-723,16,1015,1012,-725,16,724,1013,-1015,731,2055,1016,-29,1,15,-1016,1004,1,-8,32,1003,-2,733,2057,1027,-30,17,1017,1018,-31,17,30,1019,-1021,726,2047,1021,-28,1,35,-1010,18,1022,1023,-27,19,727,2049,-1031,20,21,1024,-1032,22,1025,1032,-26,0,23,2051,-1001,24,730,2054,-1027,720,1268,2041,-11,1,34,-1011,1027,28,-2,13,1028,-2,33,1029,-2,19,1030,-2,436,735,1992,-1907,1,20,-1032,25,1032,-2,26,1023,-2,26,1,-1022,37,39,1037,-2049,1035,1034,1036,-42,1036,1034,1562,-41,1562,1034,1033,-37,45,1049,1050,-45,1480,271,2084,-2083,1040,1038,1036,-41,1042,1041,1043,-44,1043,1041,1035,-42,1035,1041,1037,-40,1045,1044,1046,-48,1046,1044,1572,-331,1057,1062,1054,-1049,1039,1047,1043,-42,113,2050,1251,-113,1050,1051,1052,-45,1052,1051,1053,-47,1053,1051,1042,-44,1246,1244,1243,-2084,1048,1054,1053,-44,1057,1056,1058,-51,1058,1056,1045,-48,1060,1059,1581,-259,1581,1059,1046,-331,752,266,277,-276,1063,1062,1064,-112,1064,1062,1057,-51,109,751,1242,-1242,1067,1066,1068,-54,1068,1066,1061,-50,1061,1066,1069,-49, +1071,1070,1069,-53,1069,1070,1065,-49,1065,1070,1072,-52,1074,1073,1075,-57,1075,1073,1067,-54,1067,1073,1076,-53,1078,1077,1076,-56,1076,1077,1071,-53,1071,1077,1079,-55,1081,1080,1396,-60,1396,1080,1074,-57,1074,1080,1082,-56,1084,1083,1082,-59,1082,1083,1078,-56,1078,1083,1085,-58,1087,1086,1088,-169,1088,1086,1081,-60,1081,1086,1089,-59,1091,1090,1092,-64,1092,1090,1093,-171,1093,1090,1087,-169,1095,1094,1089,-62,1089,1094,1084,-59,1084,1094,1096,-61,1098,1097,1099,-66,1099,1097,1100,-172,1100,1097,1092,-171,1102,1101,1091,-64,1091,1101,1095,-62,1095,1101,1103,-63,1105,1104,1106,-68,1106,1104,1107,-173,1107,1104,1099,-172,1109,1108,1098,-66,1098,1108,1102,-64,1102,1108,1110,-65,1112,1111,1113,-70,1113,1111,1401,-174,1401,1111,1106,-173,1115,1114,1105,-68,1105,1114,1109,-66,1109,1114,1116,-67,1118,1117,1119,-72,1119,1117,1120,-175,1120,1117,1113,-174,1122,1121,1112,-70,1112,1121,1115,-68,1115,1121,1123,-69,1125,1124,1126,-75,1126,1124,1402,-73,1402,1124,1119,-175,1128,1127,1118,-72,1118,1127,1122,-70,1122,1127,1129,-71,1131,1130,1132,-77,1132,1130,1133,-177,1133,1130,1126,-73,1135,1134,1125,-75,1125,1134,1128,-72,1128,1134,1136,-74,1138,1137,1139,-80,1139,1137,1131,-77,1131,1137,1135,-75,1141,1140,1403,-79,1403,1140,1132,-177,1132,1140,1142,-77,1144,1143,1145,-83,1145,1143,1142,-78,1142,1143,1139,-77,1147,1146,1148,-95,1148,1146,1149,-81,1149,1146,1136,-76,1151,1150,1152,-84,1152,1150,1138,-80,1138,1150,1149,-76,1154,1153,1404,-178,1404,1153,1141,-79,1141,1153,1155,-78,1157,1156,1158,-86,1158,1156,1155,-82,1155,1156,1145,-78,1160,1159,1161,-87,1161,1159,1144,-83,1144,1159,1152,-80,1163,1162,1406,-180,1406,1162,1154,-178,1154,1162,1164,-82,1166,1165,1167,-90,1167,1165,1164,-85,1164,1165,1158,-82,1169,1168,1170,-91,1170,1168,1157,-86,1157,1168,1161,-83,1172,1171,1407,-89,1407,1171,1163,-180,1163,1171,1173,-85,1175,1174,1176,-165,1176,1174,1173,-88,1173,1174,1167,-85,1178,1177,1179,-94,1179,1177,1166,-90,1166,1177,1170,-86,2096,1180,1181,-93,1181,1180,1160,-87,1160,1180,1182,-84,2098,1183,1184,-761,1184,1183,1169, +-91,1169,1183,1181,-87,1151,1185,1186,-81,1186,1185,1187,-760,1187,1185,1182,-92,1189,1188,1190,-763,1190,1188,1178,-94,1178,1188,1184,-91,1192,1191,1193,-96,1193,1191,1186,-760,1186,1191,1148,-81,1195,1194,1196,-97,1196,1194,1147,-95,1147,1194,1129,-74,1198,1197,2070,-98,2070,1197,1192,-96,1192,1197,1196,-95,1200,1199,1201,-99,1201,1199,1195,-97,1195,1199,1123,-71,1203,1202,1204,-746,1204,1202,1198,-98,1198,1202,1201,-97,1206,1205,1207,-100,1207,1205,1200,-99,1200,1205,1116,-69,1209,1208,2071,-101,2071,1208,1203,-746,1203,1208,1207,-99,1211,1210,1212,-102,1212,1210,1206,-100,1206,1210,1110,-67,1214,1213,2072,-748,2072,1213,1209,-101,1209,1213,1212,-100,1216,1215,1217,-103,1217,1215,1211,-102,1211,1215,1103,-65,1219,1218,2074,-104,2074,1218,1214,-748,1214,1218,1217,-102,1221,1220,1222,-105,1222,1220,1216,-103,1216,1220,1096,-63,1224,1223,1225,-106,1225,1223,1219,-104,1219,1223,1222,-103,1227,1226,1228,-107,1228,1226,1221,-105,1221,1226,1085,-61,1230,1229,1231,-751,1231,1229,1224,-106,1224,1229,1228,-105,1233,1232,1234,-108,1234,1232,1227,-107,1227,1232,1079,-58,1236,1235,2077,-109,2077,1235,1230,-751,1230,1235,1234,-107,1238,1237,1239,-111,1239,1237,1233,-108,1233,1237,1072,-55,1239,1240,1241,-111,1241,1240,2080,-110,2080,1240,1236,-109,110,111,1064,-1239,528,279,49,-259,1572,1040,1567,-1570,2083,1243,1242,-752,1055,1244,1245,-47,1245,1244,1246,-754,1052,1247,1248,-45,1248,1247,1249,-756,1249,1247,1245,-754,1251,1250,1252,-113,1252,1250,2089,-757,2089,1250,1248,-756,116,1257,1254,-115,1254,1253,1255,-115,1255,1253,1256,-758,1256,1253,1252,-757,117,729,2052,-1260,1259,1258,1260,-118,1260,1258,2091,-116,2091,1258,1255,-758,118,1267,1268,-721,2130,2093,798,-509,1263,1261,1260,-116,2125,2129,2039,-2041,2126,1262,1261,-2128,1266,1265,2123,-121,119,121,1272,-2043,1270,1269,1271,-772,1271,1269,1266,-121,1266,1269,1267,-119,122,123,1275,-2045,1274,1273,2119,-771,2119,1273,1270,-772,1270,1273,1272,-122,127,1279,1280,-127,1277,1276,1278,-126,1278,1276,1274,-771,1274,1276,1275,-124,127,126,1281,-1283,131,1289,1290,-724,1284, +1283,2116,-130,2116,1283,1277,-126,1277,1283,1285,-125,1287,1286,1285,-129,1285,1286,1280,-125,1280,1286,1288,-127,436,1544,1545,-736,1292,1291,1293,-135,1293,1291,1289,-132,1289,1291,2022,-133,1295,1294,1288,-131,1288,1294,1281,-127,1281,1294,1293,-132,1297,1296,1298,-137,1298,1296,1299,-136,1299,1296,1292,-135,1301,1300,1302,-234,1302,1300,1303,-139,1303,1300,1298,-136,1299,1304,1305,-136,1305,1304,1306,-138,1306,1304,1295,-131,1303,1307,1308,-139,1308,1307,1309,-143,1309,1307,1305,-138,1311,1310,1312,-140,1312,1310,1287,-129,1287,1310,1306,-131,1314,1313,1315,-770,1315,1313,1284,-130,1284,1313,1312,-129,1317,1316,1318,-142,1318,1316,1314,-770,1314,1316,1319,-140,1309,1320,1321,-143,1321,1320,1319,-141,1319,1320,1311,-140,1323,1322,2112,-145,2112,1322,1317,-142,1317,1322,1324,-141,1326,1325,1327,-146,1327,1325,1324,-144,1324,1325,1321,-141,1329,1328,1330,-147,1330,1328,1326,-146,1326,1328,1308,-143,1332,1331,1333,-148,1333,1331,1329,-147,1329,1331,1302,-139,1335,1334,1336,-150,1336,1334,1327,-144,1327,1334,1337,-146,1339,1338,1340,-152,1340,1338,1337,-149,1337,1338,1330,-146,1342,1341,1343,-151,1343,1341,1323,-145,1323,1341,1336,-144,1345,1344,1346,-183,1346,1344,1339,-152,1339,1344,1333,-147,1348,1347,2108,-154,2108,1347,1342,-151,1342,1347,1349,-150,1351,1350,1352,-155,1352,1350,1349,-153,1349,1350,1335,-150,1354,1353,1355,-158,1355,1353,2106,-767,2106,1353,1348,-154,1357,1356,1358,-156,1358,1356,1351,-155,1351,1356,1340,-149,1360,1359,1361,-182,1361,1359,1357,-156,1357,1359,1346,-152,1363,1362,1364,-159,1364,1362,1361,-156,1361,1362,1365,-182,1367,1366,1368,-160,1368,1366,1354,-158,1354,1366,1352,-153,1370,1369,1371,-161,1371,1369,2104,-765,2104,1369,1355,-767,1373,1372,1367,-160,1367,1372,1358,-155,1358,1372,1364,-156,1375,1374,1376,-163,1376,1374,1363,-159,1363,1374,1377,-157,1379,1378,1380,-164,1380,1378,1370,-161,1370,1378,1368,-158,1382,1381,1383,-166,1383,1381,2102,-162,2102,1381,1371,-765,1385,1384,1379,-164,1379,1384,1373,-160,1373,1384,1376,-159,1172,1386,1387,-88,1387,1386,1375,-163,1375,1386,1409,-181, +1176,1388,1389,-165,1389,1388,1385,-164,1385,1388,1387,-163,1391,1390,1392,-166,1392,1390,1175,-165,1175,1390,1179,-90,1389,1393,1392,-165,1392,1393,1382,-166,1382,1393,1380,-161,2101,1394,1383,-162,1383,1394,1391,-166,1391,1394,1190,-94,166,53,1068,-1488,166,1395,1075,-54,59,1396,1397,-284,59,283,1398,-1089,168,169,1399,-1094,170,286,1503,-1101,171,288,1400,-1108,172,290,1510,-1402,173,292,1512,-1121,72,1402,1514,-296,176,1133,1447,-233,78,1403,1446,-229,177,1404,1405,-227,179,1406,1440,-179,88,1407,1408,-222,180,1409,1435,-219,156,1377,1410,-216,181,1365,1429,-211,182,1360,1425,-209,182,208,1422,-1346,147,203,1419,-1333,506,1414,192,-1416,195,2118,198,-798,197,2120,199,-1418,2115,191,796,-194,1417,199,-2123,200,1420,2113,-769,201,261,-203,201,200,194,-262,2111,1421,206,-768,188,204,1421,-2112,205,203,1422,-1424,200,201,1418,-1421,206,1426,1413,-768,1413,1426,211,-188,204,205,1423,-1422,207,208,1425,-1425,206,207,1424,-1427,209,1428,1427,-212,209,210,1429,-1429,187,211,1427,-2108,2107,1427,212,-766,2105,1430,213,-764,212,1430,2105,-766,2103,1432,216,-187,213,1432,2103,-764,214,1431,1430,-213,214,215,1410,-1432,1412,1434,219,-762,216,1434,1412,-187,213,217,1433,-1433,2100,1437,222,-186,219,1437,2100,-762,217,218,1435,-1434,216,220,1436,-1435,1411,1439,224,-185,222,1439,1411,-186,220,221,1408,-1437,219,223,1438,-1438,2097,1442,229,-184,184,224,1442,-2098,223,178,1440,-1439,222,225,1441,-1440,742,2095,1443,-294,229,1443,2095,-184,225,226,1405,-1442,224,227,1444,-1443,227,228,1446,-1445,268,838,2086,-755,229,230,1445,-1444,279,528,527,-279,230,232,1447,-1446,234,262,789,-1451,259,1449,2010,-468,1471,2070,95,-742,235,1451,1452,-456,236,791,1453,-454,452,490,1454,-1456,237,487,787,-1963,238,239,785,-1957,242,485,1459,-1770,243,482,1460,-1761,244,481,1461,-1463,245,246,1463,-1465,247,248,538,-335,250,1593,1466,-250,254,1588,841,-254,254,253,794,-1588,257,1467,793,-498,258,1468,1469,-529,271,268,754,-2085,273,1477,802,-271,274,1478,800,-273,270,800,1478,-274,276,529,1480,-276,832,271,529,-636,275,1480,2082,-753,799,509,758, +-1480,272,799,1479,-275,509,798,2093,-759,2115,193,189,-191,1246,2083,2082,-2085,529,271,-1481,277,278,527,-277,265,1482,1481,-1477,264,1485,1483,-2079,280,1484,1481,-1483,749,1489,1486,-1476,280,166,1487,-1485,281,1488,1483,-1486,748,1492,1490,-1475,281,167,1395,-1489,282,1491,1486,-1490,263,1495,1493,-2076,283,1397,1491,-283,284,1494,1490,-1493,1498,1496,2073,-747,284,169,1398,-1495,285,1497,1493,-1496,1501,1499,1473,-745,286,1399,1497,-286,287,1500,1496,-1499,743,1505,1502,-1473,288,1503,1500,-288,289,1504,1499,-1502,741,1508,1506,-1472,290,1400,1504,-290,291,1507,1502,-1506,292,1510,1507,-292,294,1511,1506,-1509,294,175,1512,-1512,295,1514,1513,-232,295,231,1445,-1448,300,1898,1517,-300,302,1518,1519,-302,302,301,1520,-1522,440,303,1522,-1524,304,305,1524,-1526,306,307,1526,-1945,447,1954,1529,-311,312,1530,1531,-312,450,1532,1533,-314,315,1972,1534,-315,317,1535,1536,-317,317,316,1537,-1539,320,1539,1540,-434,321,1541,1542,-436,321,435,1902,-1544,322,323,1549,-1551,1547,1546,1548,-325,1548,1546,1907,-435,1907,1546,1544,-437,327,1558,1559,-327,1552,1551,1553,-341,1553,1551,1554,-432,1554,1551,1548,-435,1556,1555,1557,-330,1557,1555,1547,-325,1547,1555,1549,-324,327,326,1560,-2057,461,1985,1993,-461,1562,1561,1563,-41,1563,1561,1564,-329,1564,1561,1560,-327,1566,1565,1556,-330,1556,1565,1559,-326,1559,1565,1564,-327,1571,1569,1567,-1569,1568,1573,1574,-1572,1568,1567,1563,-329,1570,1569,1571,-332,1578,1594,1574,-1574,1573,1566,329,-1579,2132,1575,1574,-1595,1571,1574,1575,-332,329,1557,1576,-1579,1039,1038,1044,-1046,1577,1576,1552,-341,1468,1579,1580,-258,1580,1579,1570,-332,1570,1579,1581,-331,1467,1582,1583,-256,1575,1582,1580,-332,1585,1586,2135,-2132,1583,1584,1587,-256,1465,1592,1589,-334,1589,1592,1593,-251,1045,1056,1047,-1040,1598,1597,1596,-336,1596,1597,1586,-333,337,1600,1599,-1602,332,2132,1594,-1597,1603,1602,1604,-340,338,1595,1594,-1579,1604,1605,1606,-340,1606,1605,1607,-342,1607,1605,1595,-339,1607,1608,1609,-342,1609,1608,1610,-343,1610,1608,1577,-341,1612,1611,1892,-344,1892,1611,1553,-432,1553, +1611,1610,-341,1614,1613,1615,-346,1615,1613,1606,-342,1606,1613,1616,-340,1618,1617,1619,-386,1619,1617,1616,-345,1616,1617,1603,-340,1621,1620,1622,-347,1622,1620,1609,-343,1609,1620,1615,-342,1624,1623,1625,-348,1625,1623,1612,-344,1612,1623,1622,-343,1627,1626,1628,-351,1628,1626,1886,-349,1886,1626,1624,-348,1630,1629,1627,-351,1627,1629,1621,-347,1621,1629,1631,-346,1633,1632,1634,-353,1634,1632,1631,-350,1631,1632,1614,-346,1636,1635,1637,-354,1637,1635,1638,-352,1638,1635,1628,-349,1640,1639,1641,-356,1641,1639,1868,-425,1868,1639,1637,-352,1643,1642,1636,-354,1636,1642,1630,-351,1630,1642,1644,-350,1646,1645,1647,-359,1647,1645,1644,-355,1644,1645,1634,-350,1649,1648,1650,-358,1650,1648,1870,-422,1870,1648,1641,-425,1652,1651,1640,-356,1640,1651,1643,-354,1643,1651,1653,-355,1655,1654,1656,-362,1656,1654,1649,-358,1649,1654,1652,-356,1658,1657,1659,-360,1659,1657,1660,-418,1660,1657,1650,-422,1662,1661,1663,-373,1663,1661,1653,-357,1653,1661,1647,-355,1665,1664,1666,-363,1666,1664,1830,-361,1830,1664,1659,-418,1668,1667,1669,-365,1669,1667,1658,-360,1658,1667,1656,-358,1671,1670,1672,-364,1672,1670,1666,-361,1669,1673,1674,-365,1674,1673,1665,-363,1663,1675,1676,-373,1676,1675,1677,-366,1677,1675,1655,-362,1679,1678,1680,-369,1680,1678,1668,-365,1668,1678,1677,-362,1682,1681,1683,-368,1683,1681,1671,-364,1671,1681,1684,-363,1686,1685,1684,-367,1684,1685,1674,-363,1674,1685,1680,-365,1688,1687,1689,-371,1689,1687,1818,-370,1818,1687,1682,-368,1691,1690,1692,-372,1692,1690,1688,-371,1688,1690,1686,-367,1694,1693,1695,-374,1695,1693,1691,-372,1691,1693,1679,-369,1697,1696,1698,-378,1698,1696,1694,-374,1694,1696,1676,-366,1692,1699,1700,-372,1700,1699,1701,-375,1703,1702,1704,-377,1704,1702,1700,-375,1700,1702,1695,-372,1706,1705,1689,-370,1689,1705,1701,-371,1701,1705,1707,-375,1709,1708,1710,-380,1710,1708,1703,-377,1703,1708,1698,-374,1704,1711,1712,-377,1712,1711,1713,-379,1715,1714,1716,-403,1716,1714,1707,-376,1707,1714,1713,-375,1718,1717,1719,-382,1719,1717,1712,-379,1712,1717,1710,-377,1662,1720,1721, +-359,1721,1720,1722,-381,1722,1720,1697,-378,1724,1723,1725,-384,1725,1723,1709,-380,1709,1723,1722,-378,1646,1726,1727,-353,1727,1726,1728,-383,1728,1726,1721,-381,1730,1729,1731,-399,1731,1729,1718,-382,1718,1729,1725,-380,1733,1732,1724,-384,1724,1732,1728,-381,1728,1732,1734,-383,1633,1735,1619,-345,1619,1735,1736,-386,1736,1735,1727,-383,1738,1737,1734,-385,1734,1737,1736,-383,1736,1737,1739,-386,1600,1740,1741,-337,1741,1740,1739,-387,1739,1740,1618,-386,1743,1742,1744,-391,1744,1742,1738,-385,1738,1742,1745,-387,1747,1746,1745,-388,1745,1746,1741,-387,1741,1746,1748,-337,1464,1749,1750,-246,1750,1749,1748,-389,1748,1749,1591,-337,1752,1751,1753,-390,1753,1751,1750,-389,1750,1751,1462,-246,1755,1754,1756,-392,1756,1754,1747,-388,1747,1754,1753,-389,1758,1757,1759,-393,1759,1757,1752,-390,1752,1757,1760,-245,1762,1761,1730,-399,1730,1761,1733,-384,1733,1761,1744,-385,1764,1763,1765,-398,1765,1763,1743,-391,1743,1763,1756,-388,1767,1766,1768,-395,1768,1766,1758,-393,1758,1766,1769,-244,1759,1770,1771,-393,1771,1770,1772,-394,1772,1770,1755,-392,1774,1773,1771,-394,1771,1773,1768,-393,1768,1773,1775,-395,1777,1776,1767,-395,1767,1776,1458,-243,1779,1778,1780,-397,1780,1778,1774,-394,1782,1781,1764,-398,1764,1781,1772,-392,1772,1781,1780,-394,1784,1783,1762,-399,1762,1783,1765,-391,1765,1783,1785,-398,1782,1786,1787,-397,1787,1786,1788,-401,1788,1786,1785,-400,1790,1789,1731,-382,1731,1789,1784,-399,1784,1789,1791,-400,1793,1792,1794,-404,1794,1792,1791,-402,1791,1792,1788,-400,1715,1795,1719,-379,1719,1795,1790,-382,1790,1795,1796,-402,1798,1797,1799,-405,1799,1797,1796,-403,1796,1797,1794,-402,1801,1800,1802,-406,1802,1800,1716,-376,1716,1800,1799,-403,1804,1803,1805,-408,1805,1803,1706,-370,1706,1803,1802,-376,1807,1806,1808,-476,1808,1806,1809,-407,1809,1806,1798,-405,1809,1810,1811,-407,1811,1810,1812,-409,1812,1810,1801,-406,1814,1813,1815,-411,1815,1813,1804,-408,1804,1813,1812,-406,1817,1816,1818,-368,1818,1816,1805,-370,1805,1816,1819,-408,1821,1820,1822,-412,1822,1820,1683,-364,1683,1820,1817,-368,1824, +1823,1825,-413,1825,1823,1819,-410,1819,1823,1815,-408,1822,1826,1827,-412,1827,1826,1672,-361,1829,1828,1830,-418,1830,1828,1827,-361,1827,1828,1831,-412,1825,1832,1833,-413,1833,1832,1821,-412,1835,1834,1836,-415,1836,1834,1814,-411,1814,1834,1837,-409,1839,1838,1840,-477,1840,1838,1837,-414,1837,1838,1811,-409,1842,1841,1843,-416,1843,1841,1824,-413,1824,1841,1836,-411,1845,1844,1831,-417,1831,1844,1833,-412,1833,1844,1843,-413,1847,1846,1848,-420,1848,1846,1842,-416,1842,1846,1849,-415,1840,1850,1851,-477,1851,1850,1849,-419,1849,1850,1835,-415,1853,1852,1854,-421,1854,1852,1845,-417,1845,1852,1848,-416,1856,1855,1660,-422,1660,1855,1829,-418,1829,1855,1854,-417,1858,1857,1859,-424,1859,1857,1853,-421,1853,1857,1860,-420,1862,1861,1863,-445,1863,1861,1860,-423,1860,1861,1847,-420,1865,1864,1866,-424,1866,1864,1867,-426,1867,1864,1868,-352,1859,1869,1865,-424,1865,1869,1870,-425,1870,1869,1856,-422,1872,1871,1866,-426,1866,1871,1858,-424,1858,1871,1873,-423,1875,1874,1876,-428,1876,1874,1872,-426,1872,1874,1877,-427,1879,1878,1638,-349,1638,1878,1867,-352,1867,1878,1876,-426,1881,1880,1882,-430,1882,1880,1875,-428,1875,1880,1883,-429,1885,1884,1886,-348,1886,1884,1879,-349,1879,1884,1882,-428,1888,1887,1625,-344,1625,1887,1885,-348,1885,1887,1889,-430,1540,1890,1891,-434,1891,1890,1892,-432,1892,1890,1888,-344,1881,1893,1894,-431,1894,1893,1515,-433,1515,1893,1889,-298,1896,1895,1897,-438,1897,1895,1898,-301,1898,1895,1894,-433,1542,1899,1900,-436,1900,1899,1554,-435,1554,1899,1891,-432,1903,1901,1900,-435,1905,1904,1906,-459,1906,1904,1907,-437,1907,1904,1903,-435,1883,1908,1909,-429,1909,1908,1910,-439,1910,1908,1896,-438,1912,1911,1913,-442,1913,1911,1909,-439,1909,1911,1877,-429,1915,1914,1916,-440,1916,1914,1518,-303,1518,1914,1897,-301,1918,1917,1919,-443,1919,1917,1915,-440,1915,1917,1910,-438,1921,1920,1919,-440,1919,1920,1922,-443,1922,1920,1923,-446,1921,1924,1925,-444,1925,1924,1521,-441,1521,1924,1916,-303,1863,1926,1927,-445,1927,1926,1912,-442,1912,1926,1873,-427,1929,1928,1930,-473,1930,1928,1918, +-443,1918,1928,1913,-439,1932,1931,1933,-396,1933,1931,1523,-305,1523,1931,1925,-441,1923,1934,1935,-446,1935,1934,1779,-397,1779,1934,1932,-396,1775,1936,1937,-395,1937,1936,1525,-307,1525,1936,1933,-305,1939,1938,1940,-475,1940,1938,1922,-446,1922,1938,1930,-443,1940,1941,1942,-475,1942,1941,1787,-401,1787,1941,1935,-397,1944,1943,1937,-307,1937,1943,1777,-395,240,241,1456,-1947,240,1946,1945,-1951,1946,1458,1776,-1946,1952,1951,1953,-449,1953,1951,1954,-448,1954,1951,1949,-309,1956,1955,1957,-239,1957,1955,1952,-449,1952,1955,1950,-447,1959,1958,1960,-450,1960,1958,1530,-313,1530,1958,1953,-448,1962,1961,1963,-238,1963,1961,1959,-450,1959,1961,1957,-449,1965,1964,1966,-452,1966,1964,1532,-451,1532,1964,1960,-313,1963,1967,1455,-238,1455,1967,1968,-453,1968,1967,1965,-452,1970,1969,1971,-455,1971,1969,1972,-316,1972,1969,1966,-451,1974,1973,1970,-455,1970,1973,1968,-452,1968,1973,1453,-453,1976,1975,1977,-458,1977,1975,1974,-455,1974,1975,1452,-454,1979,1978,1535,-318,1535,1978,1971,-316,1971,1978,1980,-455,2134,1981,1538,-319,1538,1981,1979,-318,1984,1983,1985,-462,1985,1983,1905,-459,2133,1982,1981,-2135,1987,1986,1980,-457,1980,1986,1977,-455,1977,1986,1988,-458,1990,1989,1991,-467,1991,1989,1976,-458,1976,1989,1450,-456,132,2014,2062,-726,462,1994,1995,-740,465,1998,1999,-464,1987,1996,1997,-465,1997,1996,1994,-463,1994,1996,1984,-462,469,2003,2004,-737,2001,2000,2002,-469,2002,2000,1998,-466,1998,2000,1997,-463,36,38,2056,-1561,2006,2005,2001,-469,2001,2005,1988,-465,1988,2005,1991,-458,2008,2007,2009,-471,2009,2007,1990,-467,1990,2007,2010,-235,2012,2011,2013,-472,2013,2011,2003,-470,2003,2011,2002,-466,1264,2039,2129,-2127,1301,2015,2016,-137,2016,2015,2008,-471,2008,2015,2017,-468,2019,2018,2012,-472,2012,2018,2006,-469,2006,2018,2009,-467,2021,2020,2022,-134,2022,2020,2014,-133,2014,2020,2013,-470,1297,2023,2021,-134,2021,2023,2019,-472,2019,2023,2016,-471,2025,2024,2026,-474,2026,2024,1929,-473,1929,2024,1927,-442,1939,2027,2026,-473,2026,2027,2028,-474,2028,2027,2029,-476,1851,2030,2031,-477,2031,2030, +2025,-474,2025,2030,1862,-445,2029,2032,1807,-476,1807,2032,1793,-404,1793,2032,1942,-401,1839,2033,1808,-407,1808,2033,2028,-476,2028,2033,2031,-474,6,1013,1290,-726,11,119,2042,-2044,12,122,2044,-2046,722,1011,1279,-128,724,1012,1282,-724,18,37,2048,-1023,38,2046,2047,-727,21,2049,1049,-46,22,1024,2050,-114,23,1025,1257,-117,730,2051,2052,-730,730,729,2053,-2055,38,726,2055,-2057,731,2057,1558,-328,732,733,1017,-1551,735,1545,1020,-735,737,2061,2062,-737,738,2063,2004,-464,740,1005,1999,-740,740,739,1995,-2067,8,460,1993,-2068,9,459,1992,-2069,735,734,2068,-1993,743,97,2070,-1472,745,1204,1472,-745,746,100,2071,-1474,747,2072,2073,-264,748,103,2074,-2076,748,1474,1225,-104,750,1231,1475,-265,108,2077,2078,-266,108,265,1476,-2081,751,752,2082,-2084,753,754,2086,-1250,755,267,1477,-2090,756,273,1478,-1257,757,274,1479,-2092,759,1187,2095,-743,183,91,2096,-2098,184,92,2098,-1412,760,1189,2100,-186,761,762,2101,-1413,186,161,2102,-2104,763,764,2104,-2106,765,766,2106,-2108,187,153,2108,-1414,767,150,1343,-2112,188,144,2112,-2114,769,190,2114,-1319,191,2115,1315,-130,192,1414,2116,-126,192,125,1278,-2118,771,198,2118,-2120,199,2120,1271,-121,1470,1193,759,-743,801,803,646,-631,1516,1515,297,-299,1487,1068,49,-280,7,1003,2061,-738,2034,844,697,-2082,787,786,603,-240,494,984,853,-669,984,495,551,-854,495,986,943,-552,986,492,-944,669,791,236,-942,1264,2126,2127,-1266,2054,2053,2129,-2126,2054,2125,2124,-1027,2123,2128,2130,-2123,2123,1265,2127,-2129,2122,2130,508,-1418,545,941,236,-1452,775,2065,999,-693,932,504,817,-506,937,819,501,-704,502,639,819,-938,934,818,639,-503,503,932,505,-819,503,818,-935,778,689,596,-774,478,778,773,-598,772,478,597,-963,642,852,477,772,962,-612,815,642,611,-965,516,815,964,-627,857,516,626,-967,643,857,966,-611,814,643,610,-971,644,814,970,-610,813,644,609,-864,484,813,863,-609,811,484,608,-863,976,606,666,-948,627,811,862,607,665,-848,607,880,851,-666,880,558,548,-852,558,976,947,-549,810,627,847,-544,491,810,543,-849,808,491,848,-542,513,808,541,-953,806,513,952,-540,628,806,539,-955,878, +628,954,-541,629,878,540,-957,804,629,956,-676,800,270,630,-805,272,800,804,675,-959,799,272,958,-675,509,799,674,-962,798,509,961,-561,508,798,560,-961,1417,508,960,-562,197,1417,561,-883,797,197,882,-550,195,797,549,-956,260,193,881,-673,1416,195,955,-551,507,1416,550,-954,1415,507,953,-674,506,1415,673,-952,796,506,951,-560,193,796,-560,193,559,-882,202,261,945,-547,261,671,-946,261,260,544,-672,260,672,-949,260,948,-545,789,849,545,1451,-236,262,670,849,-790,1449,850,670,-263,259,547,850,-1450,1448,942,547,-260,202,546,942,-1449,604,786,787,-488,489,490,-792,985,604,-488,488,985,487,-1455,790,488,-1455,490,605,790,-1455,490,788,-606,489,788,-491,858,489,-792,493,858,791,-670,702,638,820,-941,879,795,638,-703,703,501,795,-880,794,498,-257,794,939,500,-499,794,499,-940,794,938,-500,253,534,938,-795,532,927,-642,852,641,927,-478,918,697,-539,1466,843,-700,538,698,843,-1467,537,926,-250,249,926,700,-252,251,700,-537,536,842,-252,701,841,-932,701,933,253,-842,533,936,-254,777,600,917,-480,480,777,479,775,-482,943,988,493,-670,2118,195,1416,-197,2120,197,797,-199,191,1414,506,-797,1,1001,-3,3,1,-1003,1001,1,-4,1,1008,-36,2124,1008,-2,1026,1,-25,4,1007,-2,1007,31,-2,30,1,-1020,194,260,-262,193,260,-190,527,823,-522,336,1591,1590,-830,829,1590,1592,-1466,1588,1585,2131,-253,1060,1061,48,-48,1589,250,252,-2132,1587,1584,-255,254,1584,1585,-1589,1584,332,1586,-1586,37,2046,1033,-40,1572,1044,1038,-1041,1905,1983,1982,-2134,1904,1905,2133,-1904,2134,1901,1903,-2134,1902,1901,2134,-319,1582,1575,2132,-1584,1583,2132,332,-1585,333,1589,2131,-2136,2135,1586,1597,-1599,1596,1594,1595,-336,867,518,-516,515,518,-867,866,518,-664,663,518,-2038,2037,518,-660,659,518,-2036,2035,518,-518,517,518,-2037,2036,518,-659,658,518,-817,2038,518,-665,664,518,-878,877,518,-658,657,518,-2077,2076,518,-657,656,518,-2100,2099,518,-2093,2092,518,-2095,2094,518,-656,655,518,-877,876,518,-655,654,518,-875,874,518,-654,653,518,-876,875,518,-521,520,518,-874,873,518,-523,522,518,-825,824,518,-653,652,518,-873,872,518,-525,524,518,-827,826,518,-527, +526,518,-2061,2060,518,-652,651,518,-832,831,518,-531,530,518,-835,834,518,-651,650,518,-836,835,518,-650,649,518,-872,871,518,-649,648,518,-871,870,518,-648,647,518,-2065,2064,518,-646,645,518,-804,803,518,-647,646,518,-806,805,518,-512,511,518,-870,869,518,-513,512,518,-808,807,518,-663,662,518,-810,809,518,-662,661,518,-869,868,518,-661,660,518,-813,812,518,-515,514,518,-868,708,935,-996,995,935,-714,713,935,-925,924,935,-591,590,935,-922,921,935,-553,552,935,-2122,2121,935,-555,554,935,-856,855,935,-554,553,935,-997,996,935,-715,714,935,-917,916,935,-716,715,935,-2066,2065,935,-1000,999,935,-2086,2085,935,-720,719,935,-2088,2087,935,-589,588,935,-999,998,935,-590,589,935,-2089,2088,935,-719,718,935,-998,997,935,-718,717,935,-2080,2079,935,-2082,2081,935,-2035,2034,935,-556,555,935,-921,920,935,-717,716,935,-923,922,935,-713,712,935,-926,925,935,-712,711,935,-711,710,935,-930,929,935,-710,709,935,-931,930,935,-707,706,935,-994,993,935,-706,705,935,-993,992,935,-593,592,935,-990,989,935,-594,593,935,-991,990,935,-596,595,935,-2110,2109,935,-595,594,935,-2111,2110,935,-992,991,935,-2070,2069,935,-592,707,935,-846,845,935,-995,994,935,-847,846,935,-543,542,935,-929,928,935,-709,906,580,-616,615,580,-974,973,580,-582,581,580,-976,904,580,-615,614,580,-980,979,580,-579,578,580,-982,981,580,-577,576,580,-984,983,580,-614,613,580,-902,901,580,-576,575,580,-901,900,580,-613,612,580,-903,902,580,-578,577,580,-904,903,580,-580,579,580,-988,987,580,-583,582,580,-906,905,580,-617,616,580,-983,982,580,-619,618,580,-908,907,580,-584,583,580,-979,978,580,-909,908,580,-620,619,580,-975,974,580,-621,620,580,-972,971,580,-585,584,580,-910,909,580,-622,621,580,-970,969,580,-623,622,580,-911,910,580,-586,585,580,-913,912,580,-624,623,580,-914,913,580,-625,624,580,-2059,2058,580,-588,587,580,-915,914,580,-626,625,580,-968,967,580,-587,586,580,-912,911,580,-618,897,564,-687,686,564,-900,899,564,-688,687,564,-899,898,564,-686,685,564,-897,896,564,-575,574,564,-947,946,564,-684,683,564,-895,894,564,-683,682,564,-893,892,564,-573,572,564, +-894,893,564,-572,571,564,-891,890,564,-571,570,564,-892,891,564,-682,681,564,-890,889,564,-568,567,564,-2091,2090,564,-569,568,564,-2060,2059,564,-566,565,564,-889,888,564,-567,566,564,-960,959,564,-681,680,564,-888,887,564,-680,679,564,-887,886,564,-689,688,564,-958,885,564,-679,678,564,-884,883,564,-678,677,564,-885,884,564,-564,563,564,-951,950,564,-563,562,564,-950,949,564,-677,676,564,-570,569,564,-945,944,564,-574,573,564,-896,895,564,-685,2137,2155,2184,-2153,2152,2184,2153,-2141,2184,2154,2136,-2154,2155,2138,2154,-2185,2139,2158,2185,-2157,2156,2185,2157,-2142,2185,2155,2137,-2158,2158,2138,2155,-2186,2140,2153,2186,-2160,2159,2186,2160,-2144,2186,2224,2213,-2161,2153,2136,2224,-2187,2142,2163,2187,-2162,2161,2187,2162,-2147,2187,2156,2141,-2163,2163,2139,2156,-2188,2143,2160,2188,-2165,2164,2188,2165,-2146,2188,2166,2210,-2166,2160,2213,2166,-2189,2144,2168,2189,-2168,2167,2189,2159,-2144,2189,2152,2140,-2160,2168,2137,2152,-2190,2141,2157,2190,-2163,2162,2190,2169,-2147,2190,2168,2144,-2170,2157,2137,2168,-2191,2144,2167,2191,-2171,2170,2191,2171,-2149,2191,2164,2145,-2172,2167,2143,2164,-2192,2145,2165,2192,-2172,2171,2192,2172,-2149,2192,2220,2208,-2173,2165,2210,2220,-2193,2147,2175,2193,-2174,2173,2193,2174,-2150,2193,2161,2146,-2175,2175,2142,2161,-2194,2148,2172,2194,-2177,2176,2194,2177,-2151,2194,2217,2203,-2178,2172,2208,2217,-2195,2200,2180,2195,-2179,2178,2195,2179,-2152,2195,2173,2149,-2180,2180,2147,2173,-2196,2144,2170,2196,-2182,2181,2196,2182,-2152,2196,2176,2150,-2183,2170,2148,2176,-2197,2149,2174,2197,-2180,2179,2197,2181,-2152,2197,2169,2144,-2182,2174,2146,2169,-2198,2151,2182,2198,-2179,2178,2198,2183,-2201,2198,2177,2203,-2184,2182,2150,2177,-2199,2201,2226,2180,-2201,2142,2175,2214,-2203,2175,2147,2199,-2215,2215,2201,2200,-2184,2205,2215,2183,-2204,2163,2142,2202,-2217,2139,2163,2216,-2205,2206,2218,2217,-2209,2218,2205,2203,-2218,2158,2139,2204,-2220,2138,2158,2219,-2208,2209,2221,2220,-2211,2221,2206,2208,-2221,2136,2154,2222,-2212,2154,2138,2207,-2223,2212,2223,2166,-2214,2223, +2209,2210,-2167,2224,2136,2211,-2226,2212,2213,2224,-2226,2257,2275,2274,-2241,2237,2234,2252,-2233,2237,2236,2253,-2235,2237,2235,2254,-2237,2237,2233,2255,-2236,2237,2232,2256,-2231,2229,2243,2231,-2238,2237,2230,2242,-2229,2241,2231,2272,-2247,2237,2228,2244,-2228,2237,2227,2245,-2230,2233,2237,2231,-2242,2233,2241,2246,-2239,2255,2233,2238,-2248,2235,2255,2247,-2272,2254,2235,2271,-2249,2236,2254,2248,-2240,2270,2234,2253,-2286,2269,2232,2252,-2250,2285,2253,2236,-2240,2268,2230,2256,-2251,2249,2252,2234,-2271,2251,2240,2228,-2243,2250,2256,2232,-2270,2251,2242,2230,-2269,2267,2227,2244,-2275,2245,2227,2267,-2277,2274,2244,2228,-2241,2229,2245,2276,-2274,2243,2229,2273,-2280,2231,2243,2279,-2273,2275,2258,2267,-2275,2276,2267,2258,-2278,2273,2276,2277,-2267,2259,2278,2251,-2269,2278,2257,2240,-2252,2279,2273,2266,-2281,2272,2279,2280,-2266,2260,2281,2250,-2270,2281,2259,2268,-2251,2246,2272,2265,-2283,2238,2246,2282,-2265,2261,2283,2249,-2271,2283,2260,2269,-2250,2247,2238,2264,-2285,2271,2247,2284,-2264,2262,2286,2285,-2240,2286,2261,2270,-2286,2248,2271,2263,-2288,2262,2239,2248,-2288,2719,2643,2705,-2721,2288,2314,2354,-2313,2387,2312,2354,-2314,2289,2313,2354,-2315,2388,2317,2355,-2316,2315,2355,2316,-2294,2355,2313,2289,-2317,2317,2387,2313,-2356,2290,2319,2356,-2319,2318,2356,2465,-2292,2356,2314,2288,-2466,2319,2289,2314,-2357,2292,2321,2357,-2321,2291,2320,2357,-2319,2290,2318,2357,-2322,2293,2316,2358,-2323,2322,2358,2323,-2310,2358,2319,2290,-2324,2316,2289,2319,-2359,2388,2315,2359,-2496,2294,2495,2359,-2325,2293,2324,2359,-2316,2295,2499,2360,-2326,2325,2360,2326,-2301,2360,2324,2293,-2327,2499,2294,2324,-2361,2296,2328,2361,-2328,2327,2361,2457,-2423,2361,2321,2292,-2458,2328,2290,2321,-2362,2297,2330,2362,-2330,2422,2329,2362,-2328,2296,2327,2362,-2331,2298,2332,2363,-2332,2331,2363,2446,-2417,2363,2330,2297,-2447,2332,2296,2330,-2364,2298,2331,2364,-2334,2333,2364,2334,-2304,2364,2441,2299,-2335,2331,2416,2441,-2365,2300,2326,2365,-2336,2335,2365,2336,-2311,2365,2322,2309,-2337,2326,2293,2322,-2366, +2301,2505,2366,-2338,2337,2366,2338,-2303,2366,2325,2300,-2339,2505,2295,2325,-2367,2411,2339,2367,-2438,2299,2437,2367,-2335,2303,2334,2367,-2340,2303,2339,2368,-2341,2340,2368,2341,-2308,2368,2342,2304,-2342,2339,2411,2342,-2369,2302,2338,2369,-2344,2343,2369,2344,-2307,2369,2345,2305,-2345,2338,2300,2345,-2370,2305,2345,2370,-2347,2346,2370,2347,-2312,2370,2335,2310,-2348,2345,2300,2335,-2371,2399,2517,2371,-2349,2348,2371,2346,-2312,2371,2344,2305,-2347,2517,2306,2344,-2372,2308,2350,2372,-2350,2304,2349,2372,-2342,2307,2341,2372,-2351,2309,2323,2373,-2352,2351,2373,2332,-2299,2373,2328,2296,-2333,2323,2290,2328,-2374,2310,2336,2374,-2353,2352,2374,2333,-2304,2374,2351,2298,-2334,2336,2309,2351,-2375,2311,2347,2375,-2354,2353,2375,2340,-2308,2375,2352,2303,-2341,2347,2310,2352,-2376,2399,2348,2376,-2521,2520,2376,2350,-2309,2376,2353,2307,-2351,2348,2311,2353,-2377,2589,2632,2536,-2478,2378,2477,2536,-2477,2377,2476,2536,-2633,2379,2480,2537,-2479,2478,2537,2479,-2381,2537,2477,2378,-2480,2480,2589,2477,-2538,2379,2478,2538,-2612,2611,2538,2481,-2588,2538,2482,2381,-2482,2478,2380,2482,-2539,2380,2479,2539,-2484,2483,2539,2484,-2392,2539,2485,2382,-2485,2479,2378,2485,-2540,2587,2481,2540,-2610,2609,2540,2486,-2589,2540,2487,2383,-2487,2481,2381,2487,-2541,2384,2489,2541,-2489,2488,2541,2473,-2386,2541,2485,2378,-2474,2489,2382,2485,-2542,2386,2492,2542,-2491,2490,2542,2491,-2430,2542,2488,2385,-2492,2492,2384,2488,-2543,2490,2429,2288,-2313,2493,2386,2387,-2318,2389,2493,2317,-2389,2390,2496,2495,-2295,2384,2492,2543,-2490,2489,2543,2494,-2383,2543,2493,2389,-2495,2492,2386,2493,-2544,2496,2389,2388,-2496,2498,2390,2294,-2500,2382,2494,2544,-2485,2484,2544,2497,-2392,2544,2496,2390,-2498,2494,2389,2496,-2545,2392,2498,2499,-2296,2394,2506,2505,-2302,2391,2497,2545,-2501,2500,2545,2501,-2394,2545,2498,2392,-2502,2497,2390,2498,-2546,2391,2500,2546,-2484,2380,2483,2546,-2503,2393,2502,2546,-2501,2381,2482,2547,-2504,2503,2547,2504,-2396,2547,2502,2393,-2505,2482,2380,2502,-2548,2506,2392,2295,-2506,2508,2394,2301, +-2338,2393,2501,2548,-2505,2504,2548,2507,-2396,2548,2506,2394,-2508,2501,2392,2506,-2549,2397,2508,2337,-2303,2398,2514,2343,-2307,2395,2510,2549,-2504,2381,2503,2549,-2510,2396,2509,2549,-2511,2395,2507,2550,-2511,2510,2550,2511,-2397,2550,2508,2397,-2512,2507,2394,2508,-2551,2383,2487,2551,-2513,2512,2551,2513,-2401,2551,2509,2396,-2514,2487,2381,2509,-2552,2514,2397,2302,-2344,2516,2398,2306,-2518,2396,2511,2552,-2514,2513,2552,2515,-2401,2552,2514,2398,-2516,2511,2397,2514,-2553,2401,2516,2517,-2400,2402,2521,2520,-2309,2400,2515,2553,-2519,2518,2553,2519,-2404,2553,2516,2401,-2520,2515,2398,2516,-2554,2521,2401,2399,-2521,2526,2402,2308,-2350,2383,2512,2554,-2523,2522,2554,2523,-2405,2554,2518,2403,-2524,2512,2400,2518,-2555,2403,2519,2555,-2525,2524,2555,2525,-2408,2555,2521,2402,-2526,2519,2401,2521,-2556,2408,2526,2349,-2305,2410,2433,2342,-2412,2588,2486,2556,-2528,2527,2556,2528,-2406,2556,2522,2404,-2529,2486,2383,2522,-2557,2406,2531,2557,-2530,2529,2557,2530,-2413,2557,2528,2404,-2531,2531,2405,2528,-2558,2403,2524,2558,-2524,2404,2523,2558,-2533,2407,2532,2558,-2525,2407,2525,2559,-2534,2533,2559,2534,-2410,2559,2526,2408,-2535,2525,2402,2526,-2560,2404,2532,2560,-2531,2530,2560,2535,-2413,2560,2533,2409,-2536,2532,2407,2533,-2561,2433,2408,2304,-2343,2436,2410,2411,-2438,2409,2534,2561,-2435,2434,2561,2435,-2414,2561,2433,2410,-2436,2534,2408,2433,-2562,2414,2436,2437,-2300,2415,2442,2441,-2417,2412,2535,2562,-2439,2438,2562,2439,-2418,2562,2434,2413,-2440,2535,2409,2434,-2563,2413,2435,2563,-2440,2439,2563,2440,-2418,2563,2436,2414,-2441,2435,2410,2436,-2564,2442,2414,2299,-2442,2445,2415,2416,-2447,2417,2440,2564,-2444,2443,2564,2444,-2420,2564,2442,2415,-2445,2440,2414,2442,-2565,2420,2445,2446,-2298,2421,2452,2329,-2423,2418,2448,2565,-2448,2447,2565,2443,-2420,2565,2438,2417,-2444,2448,2412,2438,-2566,2406,2529,2566,-2623,2622,2566,2449,-2596,2566,2448,2418,-2450,2529,2412,2448,-2567,2419,2444,2567,-2451,2450,2567,2451,-2424,2567,2445,2420,-2452,2444,2415,2445,-2568,2452,2420,2297,-2330,2456,2421, +2422,-2458,2419,2450,2568,-2448,2418,2447,2568,-2454,2423,2453,2568,-2451,2423,2451,2569,-2455,2454,2569,2455,-2427,2569,2452,2421,-2456,2451,2420,2452,-2570,2427,2456,2457,-2293,2428,2463,2320,-2292,2424,2459,2570,-2459,2458,2570,2454,-2427,2570,2453,2423,-2455,2459,2418,2453,-2571,2595,2449,2571,-2627,2626,2571,2460,-2426,2571,2459,2424,-2461,2449,2418,2459,-2572,2426,2455,2572,-2462,2461,2572,2462,-2431,2572,2456,2427,-2463,2455,2421,2456,-2573,2463,2427,2292,-2321,2464,2428,2291,-2466,2429,2464,2465,-2289,2430,2462,2573,-2467,2466,2573,2467,-2432,2573,2463,2428,-2468,2462,2427,2463,-2574,2424,2458,2574,-2469,2468,2574,2469,-2433,2574,2461,2430,-2470,2458,2426,2461,-2575,2431,2467,2575,-2471,2470,2575,2491,-2386,2575,2464,2429,-2492,2467,2428,2464,-2576,2430,2466,2576,-2470,2432,2469,2576,-2472,2431,2471,2576,-2467,2432,2471,2577,-2473,2472,2577,2473,-2379,2577,2470,2385,-2474,2471,2431,2470,-2578,2425,2460,2578,-2475,2474,2578,2475,-2378,2578,2468,2432,-2476,2460,2424,2468,-2579,2432,2472,2579,-2476,2377,2475,2579,-2477,2378,2476,2579,-2473,2603,2580,2581,-2603,2604,2581,2580,-2606,2586,2604,2605,-2584,2585,2607,2606,-2591,2607,2582,2584,-2607,2591,2617,2616,-2593,2584,2602,2634,-2609,2608,2634,2609,-2589,2634,2610,2587,-2610,2602,2581,2610,-2635,2587,2610,2635,-2612,2611,2635,2612,-2380,2635,2604,2586,-2613,2610,2581,2604,-2636,2589,2480,2636,-2614,2613,2636,2614,-2602,2636,2612,2586,-2615,2480,2379,2612,-2637,2590,2606,2637,-2616,2615,2637,2527,-2406,2637,2608,2588,-2528,2606,2584,2608,-2638,2617,2585,2590,-2617,2593,2620,2619,-2595,2592,2616,2638,-2619,2618,2638,2531,-2407,2638,2615,2405,-2532,2616,2590,2615,-2639,2620,2591,2592,-2620,2596,2624,2623,-2598,2594,2619,2639,-2622,2621,2639,2622,-2596,2639,2618,2406,-2623,2619,2592,2618,-2640,2624,2593,2594,-2624,2598,2628,2627,-2600,2597,2623,2640,-2626,2625,2640,2626,-2426,2640,2621,2595,-2627,2623,2594,2621,-2641,2628,2596,2597,-2628,2600,2631,2630,-2602,2599,2627,2641,-2630,2629,2641,2474,-2378,2641,2625,2425,-2475,2627,2597,2625,-2642,2631,2598,2599,-2631,2586, +2583,2633,-2615,2601,2630,2642,-2614,2613,2642,2632,-2590,2642,2629,2377,-2633,2630,2599,2629,-2643,2633,2600,2601,-2615,2386,2490,2312,-2388,2644,2684,2690,-2683,2682,2690,2683,-2648,2690,2721,2643,-2684,2684,2645,2721,-2691,2646,2687,2691,-2686,2685,2691,2686,-2650,2691,2684,2644,-2687,2687,2645,2684,-2692,2647,2683,2692,-2689,2688,2692,2689,-2651,2692,2719,2648,-2690,2683,2643,2719,-2693,2714,2727,2693,-2661,2660,2693,2661,-2654,2693,2685,2649,-2662,2727,2646,2685,-2694,2650,2689,2694,-2663,2662,2694,2663,-2653,2694,2664,2709,-2664,2689,2648,2664,-2695,2644,2682,2695,-2687,2686,2695,2665,-2650,2695,2666,2651,-2666,2682,2647,2666,-2696,2651,2666,2696,-2668,2667,2696,2662,-2653,2696,2688,2650,-2663,2666,2647,2688,-2697,2652,2663,2697,-2669,2668,2697,2669,-2656,2697,2726,2711,-2670,2663,2709,2726,-2698,2653,2661,2698,-2671,2670,2698,2671,-2657,2698,2665,2651,-2672,2661,2649,2665,-2699,2654,2673,2699,-2673,2672,2699,2670,-2657,2699,2660,2653,-2671,2673,2714,2660,-2700,2651,2667,2700,-2675,2674,2700,2675,-2659,2700,2668,2655,-2676,2667,2652,2668,-2701,2655,2669,2701,-2676,2675,2701,2676,-2659,2701,2677,2715,-2677,2669,2711,2677,-2702,2657,2680,2702,-2679,2678,2702,2679,-2660,2702,2672,2656,-2680,2680,2654,2672,-2703,2659,2679,2703,-2682,2681,2703,2674,-2659,2703,2671,2651,-2675,2679,2656,2671,-2704,2659,2681,2704,-2679,2678,2704,2731,-2658,2704,2676,2715,-2732,2681,2658,2676,-2705,2648,2719,2720,-2707,2707,2722,2721,-2646,2722,2705,2643,-2722,2664,2648,2706,-2724,2709,2664,2723,-2709,2724,2707,2645,-2688,2710,2724,2687,-2647,2711,2726,2725,-2714,2726,2709,2708,-2726,2712,2728,2727,-2715,2728,2710,2646,-2728,2715,2677,2729,-2717,2677,2711,2713,-2730,2730,2712,2714,-2674,2717,2730,2673,-2655,2731,2715,2716,-2733,2657,2731,2732,-2719,2733,2717,2654,-2681,2657,2718,2733,-2681,2736,2811,2817,-2775,2811,2735,2752,-2818,2812,2737,2749,-2815,2734,2812,2814,-2752,2748,2813,2829,-2810,2774,2829,2813,-2737,2762,2776,2796,-2762,2751,2814,2815,-2754,2814,2749,2750,-2816,2737,2796,2776,-2750,2810,2734,2751,-2817,2752,2816,2818,-2755, +2816,2751,2753,-2819,2755,2821,2839,-2820,2819,2839,2820,-2757,2839,2818,2753,-2821,2821,2754,2818,-2840,2756,2820,2840,-2823,2822,2840,2823,-2758,2840,2815,2750,-2824,2820,2753,2815,-2841,2756,2822,2841,-2825,2841,2825,2758,-2828,2826,2842,2828,-2761,2822,2757,2825,-2842,2755,2819,2842,-2827,2842,2824,2759,-2829,2771,2783,2845,-2794,2819,2756,2824,-2843,2846,2784,2765,-2786,2763,2762,2798,-2800,2762,2761,2797,-2799,2799,2738,2830,-2852,2851,2830,2739,-2801,2800,2739,2831,-2853,2852,2831,2740,-2802,2853,2832,2741,-2803,2801,2740,2832,-2854,2854,2833,2742,-2804,2802,2741,2833,-2855,2855,2834,2743,-2805,2803,2742,2834,-2856,2804,2743,2835,-2857,2856,2835,2744,-2806,2805,2744,2836,-2858,2857,2836,2745,-2807,2858,2837,2746,-2808,2806,2745,2837,-2859,2859,2838,2747,-2809,2807,2746,2838,-2860,2860,2775,2748,-2810,2808,2747,2775,-2861,2750,2749,2776,-2778,2798,2797,2738,-2800,2776,2762,2763,-2778,2780,2773,2774,-2818,2750,2777,2843,-2824,2823,2843,2778,-2758,2843,2779,2764,-2779,2777,2763,2779,-2844,2752,2754,2780,-2818,2773,2780,2844,-2782,2781,2844,2782,-2773,2844,2821,2755,-2783,2780,2754,2821,-2845,2772,2782,2845,-2784,2760,2793,2845,-2827,2846,2785,2758,-2826,2782,2755,2826,-2846,2846,2778,2764,-2785,2825,2757,2778,-2847,2758,2785,2847,-2787,2786,2847,2787,-2768,2847,2788,2766,-2788,2785,2765,2788,-2848,2759,2827,2848,-2790,2789,2848,2790,-2769,2848,2786,2767,-2791,2827,2758,2786,-2849,2759,2789,2849,-2829,2828,2849,2791,-2761,2849,2792,2769,-2792,2789,2768,2792,-2850,2760,2791,2850,-2794,2793,2850,2794,-2772,2850,2795,2770,-2795,2791,2769,2795,-2851,2779,2763,2799,-2852,2784,2764,2800,-2853,2779,2851,2800,-2765,2788,2765,2801,-2854,2784,2852,2801,-2766,2787,2766,2802,-2855,2788,2853,2802,-2767,2790,2767,2803,-2856,2787,2854,2803,-2768,2792,2768,2804,-2857,2790,2855,2804,-2769,2795,2769,2805,-2858,2792,2856,2805,-2770,2794,2770,2806,-2859,2795,2857,2806,-2771,2783,2771,2807,-2860,2794,2858,2807,-2772,2781,2772,2808,-2861,2783,2859,2808,-2773,2774,2773,2809,-2830,2781,2860,2809,-2774,2877,2959,2991,-2957,2956,2991,2957, +-2880,2991,2958,2880,-2958,2959,2878,2958,-2992,2880,2958,2992,-2961,2960,2992,2961,-2883,2992,2962,2881,-2962,2958,2878,2962,-2993,2880,2960,2993,-2964,2963,2993,2964,-2885,2993,2965,2883,-2965,2960,2882,2965,-2994,2880,2963,2994,-2958,2957,2994,2966,-2880,2994,2967,2885,-2967,2963,2884,2967,-2995,2912,2968,2969,-2914,2940,2886,2887,-2929,2874,2913,2969,-2983,2984,2861,2886,-2941,2971,2942,2888,-2863,2875,2914,2953,-2956,2877,2987,2995,-2986,2907,2985,2995,-2987,2905,2986,2995,-2988,2877,2985,2996,-2960,2959,2996,2988,-2879,2996,2989,2909,-2989,2985,2907,2989,-2997,2903,2918,2997,-2991,2990,2997,2956,-2880,2997,2987,2877,-2957,2918,2905,2987,-2998,2912,2920,2998,-2969,2968,2998,2919,-2912,2998,2962,2878,-2920,2920,2881,2962,-2999,2878,2988,2999,-2920,2911,2919,2999,-2922,2909,2921,2999,-2989,2901,2923,3000,-2923,2922,3000,2966,-2886,3000,2990,2879,-2967,2923,2903,2990,-3001,2881,2920,3001,-2925,2924,3001,2925,-2918,3001,2926,2915,-2926,2920,2912,2926,-3002,2882,2961,3002,-2928,2927,3002,2928,-2888,3002,2924,2917,-2929,2961,2881,2924,-3003,2883,2965,3003,-2930,2929,3003,2930,-2890,3003,2927,2887,-2931,2965,2882,2927,-3004,2883,2929,3004,-2932,2931,3004,2932,-2894,3004,2933,2891,-2933,2929,2889,2933,-3005,2884,2964,3005,-2935,2934,3005,2935,-2896,3005,2931,2893,-2936,2964,2883,2931,-3006,2884,2934,3006,-2968,2967,3006,2936,-2886,3006,2937,2897,-2937,2934,2895,2937,-3007,2885,2936,3007,-2923,2922,3007,2938,-2902,3007,2939,2899,-2939,2936,2897,2939,-3008,2984,2940,2916,-2877,2970,2941,2886,-2862,2916,2940,2928,-2918,2930,2887,2886,-2942,2889,2930,2941,-2889,2933,2889,2888,-2943,2941,2970,2862,-2889,2972,2943,2890,-2864,2891,2933,2942,-2891,2932,2891,2890,-2944,2942,2971,2863,-2891,2973,2944,2892,-2865,2893,2932,2943,-2893,2935,2893,2892,-2945,2943,2972,2864,-2893,2974,2945,2894,-2866,2895,2935,2944,-2895,2937,2895,2894,-2946,2944,2973,2865,-2895,2896,2866,2975,-2947,2897,2937,2945,-2897,2939,2897,2896,-2947,2945,2974,2866,-2897,2867,2898,2946,-2976,2899,2939,2946,-2899,2938,2899,2898,-2948,2898,2867,2976,-2948,2868,2900, +2947,-2977,2901,2938,2947,-2901,2923,2901,2900,-2949,2900,2868,2977,-2949,2869,2902,2948,-2978,2903,2923,2948,-2903,2918,2903,2902,-2950,2978,2949,2902,-2870,2979,2950,2904,-2871,2905,2918,2949,-2905,2986,2905,2904,-2951,2949,2978,2870,-2905,2980,2951,2906,-2872,2907,2986,2950,-2907,2989,2907,2906,-2952,2950,2979,2871,-2907,2908,2872,2981,-2953,2909,2989,2951,-2909,2921,2909,2908,-2953,2951,2980,2872,-2909,2910,2952,2981,-2874,2911,2921,2952,-2911,2926,2912,2913,-2954,2913,2874,2955,-2954,2876,2916,2954,-2984,2915,2926,2953,-2915,2925,2915,2914,-2955,2914,2875,2983,-2955,2916,2917,2925,-2955,2968,2911,2910,-2970,2226,2199,2147,-2181,2582,2603,2602,-2585,2824,2841,2827,-2760,2969,2910,2873,-2983,2735,2810,2816,-2753 + } + Edges: *6076 { + a: 2,1,0,5,4,3,8,7,6,11,10,9,14,13,12,18,17,16,15,22,21,20,26,25,24,23,30,27,34,33,32,31,37,36,35,41,40,39,38,45,44,43,42,49,48,47,46,53,52,51,50,57,56,55,54,61,60,59,58,65,64,62,69,68,67,66,72,70,75,74,73,79,78,77,76,83,82,81,80,86,85,84,91,90,89,88,94,93,92,97,96,95,101,100,99,98,105,104,103,102,109,108,107,106,113,112,111,110,117,116,115,114,121,120,119,118,124,123,122,127,126,125,130,129,128,133,131,136,134,139,137,142,140,145,144,143,147,146,152,151,150,149,156,155,154,153,160,158,157,164,163,162,161,167,166,165,172,171,170,169,176,175,173,180,179,178,177,182,181,188,187,186,185,192,191,190,196,195,194,193,200,199,198,197,203,202,201,208,207,206,205,212,211,210,209,216,215,214,213,220,219,218,217,224,223,222,221,228,227,226,225,232,231,230,229,236,235,234,233,239,238,237,244,243,242,241,248,247,246,245,252,251,250,249,256,255,254,253,260,259,258,257,264,263,262,261,268,267,266,265,272,271,270,269,276,275,274,273,280,279,278,277,284,283,282,281,288,287,286,285,292,291,290,289,295,294,293,300,299,298,297,304,303,302,301,308,307,306,305,312,311,310,309,316,315,314,313,320,319,318,317,324,323,322,321,328,327,326,325,332,331,330,329,336,335,334,333,340,339,338,337,344,343,342,341,348,347,346,345,352,351,350,349,356,355,354,353,360,359,358,357,364,363,362,361,368,367,366,365,372,371,370,369,376,375,374,373,380,379,378,377,384,383,382,381,388,387,386,385,392,391,390,389,396,395,394,393,400,399,398,397,404,403,402,401,408,407,406,405,412,411,410,409,416,415,414,413,420,419,418,417,424,423,422,421,428,427,426,425,432,431,430,429,436,435,434,433,439,438,437,444,443,442,447,445,452,451,450,449,456,454,453,460,459,458,457,464,462,461,468,467,466,465,472,470,469,476,475,474,473,480,478,477,484,483,481,488,487,486,485,491,490,489,496,495,494,493,499,498,497,504,503,502,501,507,506,505,512,510,509,515,514,513,520,519,518,517,524,523,522,521,528,527,526,525,532,531,530,529,536,535,534,533,540,539,538,537,544,543,542,541,547,546,545,552,551,550,549,555,554,553,560,559,558,557,564,563,562,561,568,567,566,565,572, +571,570,569,575,574,573,580,579,578,577,584,583,582,581,588,587,586,585,592,591,590,589,596,595,594,593,600,599,598,597,604,603,602,601,608,607,606,605,612,611,610,609,615,614,613,619,618,617,624,623,622,621,628,627,626,625,632,631,630,629,636,635,634,633,640,639,638,637,644,643,642,641,648,647,646,645,652,651,650,649,656,655,654,653,660,659,658,657,664,663,662,661,668,667,666,665,672,671,670,669,676,675,674,673,680,679,678,677,684,683,682,688,687,686,685,692,690,689,696,695,694,693,700,699,698,697,704,703,702,701,708,707,706,705,712,711,710,709,716,715,714,713,720,718,717,724,723,722,721,728,727,726,725,732,731,730,729,736,735,734,733,740,739,738,737,744,743,741,748,747,745,752,751,749,756,755,754,753,760,759,758,764,763,762,768,767,766,765,772,771,770,769,776,775,774,773,780,779,778,777,782,781,786,785,784,791,790,789,788,795,794,793,799,797,796,803,801,800,807,806,804,811,810,809,808,815,813,819,818,817,816,823,821,827,826,825,824,831,829,835,834,833,832,839,837,843,842,841,840,847,845,851,850,849,848,855,853,859,858,857,856,863,861,867,866,865,864,871,870,869,868,875,874,873,872,878,877,876,883,882,881,880,887,885,884,891,890,889,888,895,894,893,892,899,898,897,896,903,902,901,900,907,906,905,904,911,910,909,908,915,914,913,912,919,918,917,916,923,922,921,920,927,926,925,924,931,930,929,928,935,934,933,932,939,938,937,936,943,942,941,940,947,946,945,944,951,950,949,948,955,953,952,959,958,957,956,963,961,960,967,966,965,964,970,969,968,973,972,971,978,977,976,975,982,980,986,984,983,990,989,988,987,992,991,998,997,996,995,1001,1000,999,1005,1004,1003,1010,1009,1008,1007,1013,1012,1011,1017,1016,1015,1022,1021,1020,1019,1025,1023,1029,1028,1027,1034,1033,1032,1031,1037,1036,1035,1041,1040,1039,1046,1045,1044,1043,1049,1048,1047,1053,1052,1051,1058,1057,1056,1055,1061,1060,1059,1065,1064,1063,1070,1069,1068,1067,1073,1072,1071,1077,1076,1075,1082,1081,1079,1085,1084,1083,1089,1088,1087,1094,1093,1092,1097,1096,1095,1101,1100,1105,1103,1110,1109,1114,1113,1112,1111,1118,1117,1116,1115,1122,1121,1120,1119,1126,1125, +1124,1123,1130,1129,1128,1127,1134,1133,1132,1131,1138,1137,1136,1135,1142,1140,1139,1146,1145,1144,1143,1150,1149,1148,1147,1154,1153,1152,1151,1158,1157,1156,1155,1162,1161,1160,1159,1166,1165,1164,1163,1170,1169,1168,1167,1174,1173,1172,1177,1176,1175,1182,1181,1180,1179,1185,1184,1183,1190,1188,1187,1194,1193,1192,1191,1197,1196,1195,1202,1201,1200,1199,1206,1205,1204,1210,1209,1208,1207,1214,1213,1212,1211,1218,1217,1216,1215,1222,1221,1220,1219,1225,1224,1223,1230,1229,1228,1227,1233,1232,1231,1238,1237,1236,1235,1242,1241,1240,1239,1246,1244,1243,1250,1249,1248,1247,1252,1251,1258,1257,1256,1255,1262,1259,1266,1265,1264,1270,1269,1268,1274,1272,1271,1277,1276,1275,1282,1281,1280,1279,1286,1285,1284,1283,1289,1288,1287,1294,1293,1292,1291,1298,1297,1296,1295,1301,1300,1299,1306,1305,1304,1303,1309,1308,1307,1314,1313,1312,1311,1318,1317,1316,1315,1322,1321,1320,1319,1326,1325,1324,1323,1330,1329,1328,1327,1334,1333,1332,1331,1337,1336,1335,1342,1341,1340,1339,1346,1345,1344,1343,1350,1349,1348,1347,1354,1353,1352,1351,1358,1357,1356,1355,1361,1360,1359,1365,1364,1363,1370,1369,1368,1367,1374,1373,1372,1371,1378,1377,1376,1375,1381,1380,1379,1385,1384,1383,1389,1388,1387,1394,1393,1392,1391,1398,1397,1396,1395,1402,1401,1400,1399,1406,1405,1404,1403,1410,1409,1408,1407,1414,1413,1412,1411,1418,1417,1416,1415,1422,1421,1420,1419,1425,1424,1423,1430,1429,1428,1427,1434,1433,1432,1431,1438,1437,1436,1435,1442,1441,1440,1439,1446,1445,1444,1443,1450,1449,1448,1447,1453,1452,1451,1458,1457,1456,1455,1462,1461,1460,1459,1464,1463,1470,1469,1468,1467,1474,1473,1472,1471,1478,1477,1476,1475,1482,1481,1480,1479,1486,1485,1484,1483,1490,1489,1488,1487,1493,1492,1491,1498,1497,1496,1495,1501,1499,1505,1504,1503,1510,1509,1508,1507,1514,1513,1512,1511,1518,1517,1516,1515,1522,1521,1520,1519,1526,1525,1524,1523,1530,1529,1528,1527,1534,1533,1532,1531,1538,1537,1536,1535,1542,1541,1540,1539,1545,1544,1543,1549,1548,1547,1554,1553,1552,1551,1558,1557,1556,1555,1561,1560,1559,1566,1565,1564,1563,1570,1569,1568,1567,1574,1573, +1572,1571,1577,1576,1575,1582,1581,1580,1579,1586,1585,1584,1583,1590,1589,1588,1587,1594,1593,1592,1591,1598,1597,1596,1595,1601,1600,1599,1606,1605,1604,1603,1610,1609,1608,1607,1614,1613,1612,1611,1617,1616,1615,1622,1621,1620,1619,1625,1624,1623,1630,1629,1628,1627,1634,1633,1632,1631,1638,1637,1636,1635,1642,1641,1640,1639,1646,1645,1644,1643,1650,1649,1648,1647,1652,1651,1658,1657,1656,1655,1662,1661,1660,1659,1666,1664,1663,1670,1669,1668,1667,1672,1671,1678,1677,1676,1675,1682,1681,1680,1679,1686,1685,1684,1683,1690,1689,1688,1687,1694,1693,1692,1691,1698,1697,1696,1695,1702,1701,1700,1699,1706,1705,1704,1703,1708,1707,1714,1712,1711,1718,1717,1716,1715,1722,1721,1720,1719,1726,1725,1724,1723,1730,1728,1727,1734,1733,1732,1731,1738,1736,1735,1742,1741,1740,1739,1745,1744,1743,1750,1749,1748,1747,1754,1753,1752,1751,1758,1757,1756,1755,1762,1761,1760,1759,1765,1764,1763,1769,1768,1767,1774,1773,1772,1771,1778,1777,1776,1775,1782,1780,1779,1786,1785,1784,1783,1790,1789,1788,1787,1793,1792,1791,1798,1797,1796,1795,1802,1801,1800,1799,1806,1805,1804,1803,1810,1809,1808,1807,1814,1813,1812,1811,1818,1817,1816,1815,1822,1821,1820,1819,1825,1824,1823,1830,1829,1828,1827,1834,1833,1832,1831,1838,1837,1836,1835,1842,1841,1840,1839,1846,1845,1844,1843,1849,1848,1847,1854,1852,1851,1858,1857,1856,1855,1862,1861,1860,1859,1866,1865,1864,1863,1871,1870,1869,1867,1875,1874,1872,1878,1877,1876,1882,1881,1880,1886,1885,1884,1890,1889,1888,1887,1894,1893,1892,1891,1897,1895,1902,1901,1900,1899,1905,1904,1909,1908,1907,1913,1911,1918,1916,1915,1922,1921,1920,1919,1926,1925,1924,1923,1930,1929,1928,1927,1932,1931,1937,1936,1935,1934,1941,1940,1939,1938,1944,1943,1942,1948,1947,1946,1945,1952,1951,1950,1949,1956,1955,1954,1953,1960,1959,1958,1957,1964,1963,1962,1961,1968,1967,1966,1965,1972,1971,1970,1969,1976,1975,1974,1973,1980,1979,1978,1977,1984,1983,1982,1981,1988,1987,1986,1985,1992,1991,1990,1996,1995,1994,1993,2000,1998,1997,2004,2003,2002,2001,2008,2007,2006,2005,2012,2011,2010,2009,2016,2015,2014,2020,2019,2018,2017, +2024,2023,2022,2021,2028,2027,2026,2025,2032,2031,2030,2029,2036,2035,2034,2033,2040,2039,2038,2037,2044,2043,2042,2041,2048,2047,2046,2045,2051,2050,2049,2055,2054,2053,2052,2059,2058,2057,2056,2062,2061,2060,2066,2065,2064,2069,2067,2073,2072,2071,2070,2077,2076,2075,2074,2081,2079,2078,2085,2084,2083,2089,2088,2087,2086,2091,2090,2097,2096,2095,2094,2101,2100,2099,2105,2104,2103,2102,2109,2108,2113,2111,2116,2115,2114,2120,2119,2118,2117,2124,2123,2122,2121,2126,2125,2130,2129,2128,2131,2135,2134,2139,2138,2137,2143,2141,2140,2147,2144,2151,2149,2155,2153,2158,2156,2162,2161,2160,2166,2165,2164,2163,2170,2169,2168,2167,2172,2171,2177,2176,2175,2174,2181,2180,2179,2178,2185,2184,2183,2182,2188,2187,2186,2193,2190,2197,2195,2194,2201,2199,2198,2205,2204,2203,2202,2209,2208,2207,2206,2213,2212,2211,2217,2216,2215,2214,2221,2220,2219,2218,2225,2223,2222,2229,2228,2226,2233,2232,2231,2230,2237,2236,2235,2240,2239,2238,2245,2244,2243,2242,2249,2248,2247,2246,2253,2251,2250,2257,2256,2255,2254,2261,2260,2259,2258,2265,2264,2263,2262,2269,2268,2267,2266,2273,2272,2271,2270,2277,2276,2275,2274,2281,2280,2279,2285,2284,2283,2282,2289,2288,2287,2286,2293,2292,2291,2290,2297,2296,2295,2294,2301,2300,2299,2298,2305,2304,2303,2302,2309,2308,2307,2306,2313,2310,2317,2316,2314,2321,2320,2319,2318,2325,2324,2323,2322,2329,2328,2327,2326,2333,2332,2331,2330,2337,2336,2335,2334,2341,2340,2339,2338,2345,2343,2342,2349,2347,2346,2353,2352,2351,2350,2357,2356,2355,2354,2361,2360,2359,2358,2365,2364,2363,2362,2369,2368,2367,2366,2373,2372,2371,2370,2377,2376,2375,2374,2381,2380,2379,2385,2384,2383,2382,2389,2388,2387,2386,2393,2391,2390,2397,2396,2395,2394,2401,2399,2398,2405,2404,2403,2402,2409,2407,2406,2413,2412,2411,2410,2417,2415,2414,2421,2420,2419,2418,2424,2423,2422,2429,2428,2427,2426,2432,2431,2430,2437,2436,2435,2434,2441,2439,2438,2445,2443,2442,2449,2447,2446,2453,2452,2450,2457,2455,2454,2461,2460,2458,2465,2464,2463,2462,2469,2468,2467,2466,2473,2471,2470,2477,2476,2475,2474,2481,2480,2479,2478,2485,2484,2483,2482,2489, +2488,2487,2486,2493,2492,2491,2490,2497,2496,2495,2501,2499,2498,2505,2503,2502,2508,2507,2506,2510,2517,2516,2514,2521,2520,2519,2518,2525,2524,2523,2529,2527,2531,2530,2536,2535,2534,2540,2539,2538,2544,2543,2542,2549,2548,2547,2553,2552,2551,2550,2557,2556,2555,2561,2560,2559,2558,2565,2562,2569,2568,2567,2566,2573,2572,2571,2570,2577,2576,2575,2574,2581,2579,2585,2583,2582,2588,2587,2593,2592,2591,2590,2597,2596,2595,2594,2601,2600,2599,2598,2605,2604,2603,2602,2608,2607,2606,2613,2611,2610,2617,2616,2615,2614,2619,2618,2625,2624,2623,2622,2629,2627,2626,2633,2632,2631,2630,2637,2636,2635,2634,2641,2640,2639,2638,2645,2643,2649,2648,2647,2646,2653,2652,2651,2650,2657,2656,2655,2654,2661,2660,2659,2658,2665,2664,2663,2662,2669,2668,2667,2666,2673,2672,2671,2670,2677,2676,2675,2674,2681,2680,2679,2678,2685,2684,2683,2682,2689,2688,2687,2686,2693,2690,2697,2696,2695,2694,2701,2700,2699,2698,2705,2704,2702,2709,2707,2706,2713,2712,2711,2710,2717,2716,2715,2714,2720,2719,2718,2723,2728,2727,2725,2732,2731,2736,2734,2733,2742,2741,2748,2745,2754,2759,2762,2761,2760,2766,2765,2764,2776,2774,2780,2778,2784,2782,2788,2786,2792,2790,2796,2794,2800,2798,2804,2802,2808,2806,2812,2810,2817,2816,2814,2819,2823,2828,2826,2832,2830,2836,2834,2841,2840,2843,2847,2851,2855,2859,2863,2867,2871,2882,2886,2884,2888,2892,2897,2896,2900,2905,2910,2909,2907,2917,2916,2915,2919,2922,2928,2927,2926,2933,2932,2931,2929,2936,2944,2947,2946,2950,2955,2954,2953,2958,2961,2966,2972,2969,2976,2975,2973,2980,2983,2982,2988,2992,2991,2989,2996,2994,2998,3004,3002,3008,3006,3011,3009,3013,3020,3018,3021,3026,3032,3031,3029,3035,3040,3038,3043,3048,3046,3052,3051,3049,3056,3054,3060,3058,3064,3062,3067,3065,3071,3076,3074,3079,3077,3084,3082,3088,3087,3085,3092,3090,3096,3095,3094,3099,3103,3108,3107,3105,3112,3110,3116,3114,3120,3118,3124,3122,3128,3126,3131,3129,3135,3133,3139,3137,3143,3141,3148,3147,3145,3151,3149,3156,3154,3160,3159,3157,3164,3162,3168,3166,3171,3169,3175,3173,3180,3183,3181,3188,3192,3191,3189,3196,3200,3198,3203,3201,3208, +3206,3209,3216,3214,3220,3217,3224,3222,3228,3231,3229,3235,3240,3244,3243,3248,3246,3252,3250,3255,3253,3260,3258,3263,3261,3266,3272,3270,3276,3274,3278,3277,3283,3286,3290,3298,3295,3306,3304,3307,3313,3311,3317,3316,3321,3320,3319,3325,3324,3322,3340,3345,3344,3370,3372,3375,3379,3384,3382,3389,3393,3396,3405,3404,3403,3406,3428,3426,3425,3437,3444,3442,3441,3448,3446,3452,3451,3450,3459,3457,3464,3463,3462,3461,3465,3472,3470,3476,3474,3484,3482,3481,3488,3486,3491,3489,3493,3499,3497,3503,3502,3506,3512,3516,3515,3513,3524,3522,3526,3530,3536,3540,3543,3542,3552,3550,3556,3555,3554,3560,3558,3564,3563,3568,3566,3570,3580,3578,3584,3582,3587,3592,3590,3594,3604,3603,3602,3606,3611,3616,3614,3618,3628,3626,3632,3630,3635,3640,3638,3644,3642,3648,3652,3650,3654,3664,3662,3668,3666,3672,3676,3674,3678,3688,3686,3692,3690,3696,3700,3698,3702,3712,3710,3716,3714,3720,3724,3722,3726,3736,3734,3740,3738,3744,3748,3746,3750,3760,3758,3764,3763,3762,3772,3770,3774,3784,3783,3782,3788,3787,3786,3796,3794,3798,3808,3806,3812,3810,3820,3819,3818,3822,3827,3832,3830,3836,3834,3844,3842,3848,3846,3852,3854,3860,3858,3868,3867,3866,3870,3875,3880,3878,3884,3882,3892,3890,3896,3894,3904,3903,3902,3906,3911,3916,3914,3920,3918,3928,3926,3932,3930,3939,3938,3942,3947,3952,3951,3950,3954,3964,3962,3968,3966,3974,3980,3978,3986,3992,3990,3999,3998,4004,4003,4002,4010,4016,4014,4024,4022,4028,4026,4036,4034,4040,4038,4048,4047,4046,4052,4050,4060,4058,4064,4062,4072,4071,4070,4074,4084,4082,4088,4086,4096,4095,4094,4098,4108,4106,4112,4110,4120,4119,4118,4122,4132,4130,4136,4134,4144,4143,4142,4146,4156,4154,4160,4158,4168,4166,4172,4170,4180,4178,4184,4182,4192,4191,4190,4194,4204,4202,4208,4206,4216,4215,4214,4218,4228,4227,4226,4230,4238,4242,4248,4256,4254,4253,4259,4257,4264,4266,4272,4274,4280,4278,4284,4286,4292,4290,4296,4299,4297,4302,4308,4306,4312,4316,4314,4318,4324,4322,4328,4329,4336,4335,4334,4342,4341,4348,4352,4350,4356,4354,4360,4358,4364,4362,4372,4370,4376,4374,4380,4378,4388,4387,4385,4392,4391,4390,4394,4402, +4405,4412,4410,4416,4414,4419,4424,4422,4426,4431,4435,4433,4440,4438,4444,4442,4447,4452,4450,4454,4462,4468,4467,4466,4474,4480,4479,4478,4486,4492,4490,4496,4498,4504,4503,4502,4512,4510,4516,4514,4524,4522,4528,4526,4536,4534,4540,4538,4543,4546,4552,4550,4560,4559,4558,4562,4567,4572,4571,4570,4576,4574,4584,4582,4588,4586,4596,4594,4600,4598,4608,4606,4612,4610,4615,4620,4618,4624,4622,4632,4631,4630,4634,4644,4642,4648,4646,4656,4655,4654,4658,4663,4668,4666,4672,4670,4680,4678,4684,4683,4682,4692,4691,4690,4696,4694,4703,4702,4708,4706,4716,4714,4720,4718,4723,4728,4726,4732,4730,4740,4738,4744,4743,4742,4752,4750,4754,4764,4762,4768,4766,4771,4776,4774,4780,4778,4788,4787,4786,4792,4791,4790,4800,4798,4802,4810,4816,4814,4819,4823,4822,4826,4836,4835,4834,4840,4838,4846,4850,4858,4862,4872,4871,4869,4880,4879,4907,4911,4915,4919,4923,4927,4931,4935,4939,4944,4943,4956,4954,4953,4960,4959,4958,4957,4964,4963,4962,4961,4968,4967,4966,4965,4971,4972,4977,4976,4981,4979,4986,4985,4983,4988,4994,5000,4999,5006,5005,5014,5021,5019,5029,5034,5033,5038,5037,5035,5039,5046,5045,5043,5047,5051,5062,5061,5059,5063,5068,5074,5073,5071,5075,5084,5090,5089,5087,5091,5100,5106,5105,5103,5108,5116,5120,5119,5123,5132,5142,5141,5144,5149,5153,5156,5159,5166,5163,5167,5171,5178,5176,5182,5180,5186,5202,5207,5214,5213,5211,5218,5216,5234,5238,5237,5236,5241,5239,5245,5244,5248,5253,5258,5256,5255,5261,5259,5263,5268,5272,5285,5283,5287,5290,5295,5302,5309,5307,5314,5319,5326,5330,5338,5342,5350,5355,5362,5367,5374,5382,5393,5400,5398,5405,5404,5402,5409,5407,5413,5411,5417,5415,5421,5419,5424,5422,5428,5426,5432,5430,5436,5434,5441,5440,5438,5445,5443,5448,5446,5453,5452,5450,5457,5459,5465,5463,5469,5468,5467,5473,5477,5476,5474,5481,5480,5479,5485,5484,5483,5489,5493,5492,5491,5495,5504,5503,5508,5506,5511,5517,5515,5521,5525,5523,5527,5537,5536,5534,5540,5539,5549,5548,5553,5551,5550,5556,5561,5559,5558,5564,5573,5571,5577,5579,5585,5583,5592,5591,5594,5601,5600,5599,5598,5603,5602,5608,5607,5606,5613,5620,5619,5618,5625, +5624,5623,5632,5630,5637,5636,5639,5638,5644,5643,5649,5648,5647,5656,5655,5661,5659,5665,5669,5668,5667,5673,5671,5681,5679,5685,5683,5688,5693,5692,5691,5697,5695,5705,5703,5709,5707,5717,5716,5715,5721,5719,5729,5727,5733,5732,5731,5737,5741,5739,5743,5748,5751,5757,5755,5765,5763,5769,5768,5767,5773,5777,5775,5781,5779,5785,5789,5787,5791,5796,5799,5805,5803,5813,5811,5817,5816,5815,5821,5825,5823,5827,5832,5837,5835,5841,5839,5849,5847,5853,5852,5851,5857,5860,5859,5863,5873,5871,5877,5876,5875,5881,5885,5884,5883,5887,5897,5895,5901,5904,5903,5909,5911,5917,5915,5921,5925,5923,5929,5927,5937,5936,5935,5941,5939,5944,5949,5947,5951,5961,5960,5959,5965,5964,5963,5969,5973,5972,5971,5975,5985,5983,5989,5987,5997,5995,6001,5999,6008,6007,6013,6012,6017,6016,6015,6019,6029,6027,6031,6036,6041,6039,6045,6043,6052,6051,6057,6060,6059,6065,6063,6073,6072,6071,6077,6075,6083,6089,6087,6093,6097,6095,6101,6099,6107,6113,6112,6111,6117,6121,6120,6119,6125,6123,6133,6131,6135,6140,6143,6148,6147,6153,6157,6155,6159,6164,6168,6167,6173,6171,6181,6179,6185,6183,6188,6193,6191,6195,6200,6204,6203,6209,6207,6212,6217,6215,6221,6219,6229,6227,6233,6231,6241,6240,6239,6243,6253,6251,6255,6265,6264,6263,6269,6267,6277,6276,6275,6281,6279,6288,6287,6293,6292,6291,6297,6301,6299,6303,6308,6313,6311,6315,6321,6319,6325,6327,6331,6341,6339,6343,6352,6351,6357,6355,6361,6365,6363,6367,6372,6377,6375,6381,6379,6387,6391,6396,6401,6399,6405,6403,6413,6411,6417,6415,6425,6424,6423,6429,6427,6437,6436,6435,6441,6440,6439,6447,6453,6451,6457,6461,6459,6465,6463,6473,6471,6475,6480,6485,6484,6483,6487,6497,6496,6495,6499,6508,6507,6513,6517,6515,6519,6524,6528,6527,6533,6537,6535,6541,6539,6544,6548,6547,6551,6561,6559,6565,6563,6573,6571,6575,6585,6583,6589,6587,6592,6596,6595,6599,6609,6607,6613,6611,6621,6619,6623,6633,6632,6631,6635,6640,6645,6644,6643,6647,6657,6656,6655,6661,6660,6659,6665,6667,6671,6681,6679,6683,6693,6691,6697,6695,6705,6703,6707,6715,6721,6719,6724,6729,6727,6731,6741,6739,6743,6751,6757,6755,6763,6769,6767,6773, +6777,6775,6781,6779,6787,6793,6791,6801,6798,6805,6803,6802,6807,6811,6816,6815,6821,6819,6825,6829,6827,6833,6831,6841,6839,6845,6843,6853,6852,6851,6857,6855,6863,6868,6867,6873,6872,6875,6881,6879,6887,6893,6891,6901,6899,6905,6903,6913,6911,6917,6915,6923,6929,6927,6936,6935,6941,6939,6948,6947,6951,6959,6965,6963,6971,6981,6983,6993,6991,6997,6995,7003,7009,7007,7017,7015,7021,7019,7028,7027,7031,7041,7039,7045,7043,7051,7056,7055,7061,7065,7064,7063,7069,7067,7077,7075,7079,7089,7088,7087,7093,7091,7101,7099,7103,7108,7113,7111,7110,7121,7119,7123,7129,7126,7131,7135,7140,7145,7143,7149,7147,7154,7160,7158,7162,7167,7173,7171,7178,7185,7183,7189,7187,7195,7201,7199,7203,7213,7211,7217,7215,7225,7223,7229,7227,7237,7239,7245,7243,7253,7251,7255,7265,7263,7267,7275,7279,7289,7288,7287,7293,7291,7299,7304,7303,7309,7308,7311,7317,7315,7323,7327,7335,7339,7373,7389,7392,7409,7410,7421,7432,7454,7469,7497,7549,7567,7573,7585,7586,7591,7595,7599,7607,7605,7611,7616,7623,7621,7631,7636,7638,7644,7647,7645,7649,7653,7660,7667,7671,7675,7681,7677,7685,7689,7693,7697,7701,7705,7709,7713,7717,7721,7727,7725,7729,7733,7743,7747,7751,7755,7759,7763,7767,7771,7775,7779,7784,7788,7792,7796,7800,7804,7808,7812,7809,7816,7820,7818,7817,7824,7821,7828,7832,7836,7840,7837,7843,7850,7848,7851,7855,7854,7860,7864,7869,7873,7877,7881,7892,7895,7893,7898,7902,7905,7906,7910,7918,7922,7923,7927,7935,7938,7942,7945,7953,7962,7970,7974,7978,7982,7995,8017,8020,8026,8036,8055,8063,8061,8072,8074,8077,8080,8095,8098,8100,8110,8129,8128,8132,8135,8138,8141,8144,8147,8150,8153,8159,8162,8165,8168,8171,8174,8177,8180,8183,8186,8189,8192,8195,8198,8201,8204,8207,8210,8213,8216,8219,8222,8225,8228,8231,8234,8237,8240,8243,8246,8249,8252,8255,8258,8261,8264,8267,8270,8273,8276,8279,8282,8285,8288,8291,8294,8297,8300,8303,8306,8309,8315,8314,8318,8321,8324,8327,8330,8333,8336,8339,8342,8345,8348,8351,8354,8357,8360,8363,8366,8369,8372,8375,8378,8381,8384,8387,8390,8393,8396,8399,8402,8405,8408,8411,8414,8417,8420,8423,8426,8429,8432,8435,8438, +8441,8444,8447,8450,8453,8456,8459,8462,8465,8468,8471,8474,8480,8483,8486,8489,8492,8498,8501,8504,8510,8513,8516,8519,8522,8525,8528,8531,8534,8537,8540,8543,8546,8549,8552,8555,8558,8561,8564,8567,8570,8573,8576,8579,8582,8585,8588,8591,8594,8597,8600,8603,8606,8609,8612,8615,8618,8621,8624,8627,8630,8633,8636,8639,8642,8645,8648,8654,8657,8660,8663,8666,8669,8672,8675,8678,8681,8684,8687,8690,8693,8696,8699,8702,8705,8708,8711,8714,8717,8720,8723,8726,8729,8732,8735,8738,8741,8744,8747,8750,8756,8759,8762,8765,8768,8771,8774,8777,8780,8783,8786,8789,8792,8800,8799,8798,8797,8804,8803,8802,8807,8806,8805,8810,8809,8816,8815,8814,8813,8820,8819,8818,8823,8821,8825,8832,8831,8830,8836,8835,8834,8839,8838,8837,8842,8848,8847,8846,8845,8852,8851,8850,8855,8853,8857,8864,8863,8862,8868,8867,8866,8871,8870,8869,8874,8880,8879,8878,8877,8884,8882,8885,8889,8895,8894,8899,8898,8903,8901,8912,8911,8910,8916,8915,8914,8919,8917,8927,8926,8931,8930,8935,8934,8933,8938,8944,8943,8942,8941,8948,8947,8946,8951,8949,8953,8960,8959,8958,8964,8963,8962,8967,8966,8965,8970,8976,8975,8974,8973,8980,8979,8978,8983,8981,8985,8992,8991,8990,8996,8995,8994,8999,8997,9007,9006,9010,9013,9023,9022,9027,9026,9031,9029,9040,9038,9037,9044,9043,9042,9047,9046,9052,9049,9056,9053,9060,9059,9064,9063,9068,9066,9065,9069,9076,9075,9080,9079,9084,9082,9081,9085,9092,9091,9090,9095,9100,9098,9097,9101,9108,9107,9112,9116,9115,9114,9113,9120,9119,9118,9117,9123,9122,9121,9127,9126,9125,9131,9130,9129,9136,9135,9134,9140,9139,9138,9137,9144,9143,9142,9148,9147,9146,9145,9152,9151,9150,9155,9154,9160,9164,9163,9168,9167,9172,9171,9176,9175,9180,9179,9184,9183,9181,9188,9187,9185,9192,9196,9195,9193,9200,9204,9202,9201,9208,9212,9216,9215,9213,9220,9219,9228,9227,9232,9231,9235,9238,9237,9244,9243,9248,9247,9252,9250,9249,9253,9260,9259,9264,9263,9268,9266,9265,9269,9276,9275,9280,9279,9284,9282,9281,9285,9292,9291,9296,9295,9300,9298,9297,9301,9308,9307,9312,9316,9315,9314,9313,9320,9319,9318,9317,9324,9323,9321,9328,9325,9332,9331,9330,9329,9336, +9335,9334,9339,9337,9341,9348,9347,9346,9345,9352,9351,9350,9355,9353,9357,9364,9363,9362,9361,9367,9365,9372,9376,9375,9374,9380,9379,9378,9383,9381,9392,9391,9390,9396,9395,9393,9397,9404,9403,9402,9401,9408,9407,9406,9411,9409,9413,9420,9419,9418,9417,9424,9423,9422,9427,9425,9429,9436,9435,9434,9433,9439,9437,9444,9448,9447,9446,9445,9452,9451,9450,9455,9453,9457,9464,9463,9462,9468,9467,9466,9471,9470,9469,9474,9480,9479,9478,9484,9483,9482,9487,9485,9496,9495,9494,9493,9500,9499,9498,9503,9501,9505,9512,9511,9510,9509,9515,9513,9520,9524,9523,9522,9528,9527,9526,9531,9530,9529,9534,9540,9539,9538,9544,9543,9542,9547,9546,9545,9550,9556,9555,9554,9560,9559,9558,9563,9561,9572,9571,9570,9569,9576,9574,9577,9581,9588,9587,9586,9585,9591,9589,9596,9600,9599,9598,9604,9602,9605,9616,9615,9614,9620,9618,9621,9632,9631,9630,9636,9634,9637,9648,9647,9646,9652,9650,9653,9664,9663,9662,9661,9668,9667,9665,9672,9669,9676,9675,9674,9673,9680,9679,9678,9683,9681,9685,9692,9691,9690,9696,9695,9694,9699,9698,9697,9702,9708,9707,9706,9712,9711,9710,9715,9714,9713,9718,9724,9723,9722,9728,9727,9726,9731,9730,9729,9734,9740,9739,9738,9737,9744,9743,9742,9747,9745,9749,9756,9755,9754,9753,9760,9759,9758,9763,9761,9765,9772,9770,9776,9774,9773,9780,9777,9784,9782,9781,9787,9786,9791,9790,9795,9793,9801,9808,9805,9811,9810,9815,9814,9819,9817,9828,9825,9832,9830,9829,9836,9835,9834,9840,9839,9838,9843,9841,9851,9850,9856,9855,9857,9864,9863,9862,9868,9867,9866,9871,9869,9877,9884,9881,9887,9886,9891,9890,9895,9893,9904,9901,9908,9906,9905,9911,9910,9909,9916,9915,9920,9917,9923,9922,9927,9926,9931,9929,9940,9939,9938,9944,9943,9942,9947,9945,9953,9960,9957,9963,9962,9967,9966,9971,9969,9980,9977,9984,9982,9981,9988,9987,9986,9992,9991,9990,9995,9993,10001,10008,10005,10012,10011,10010,10016,10015,10014,10019,10017,10028,10027,10026,10032,10031,10030,10035,10033,10044,10041,10048,10046,10045,10052,10051,10050,10056,10055,10054,10059,10057,10068,10067,10066,10065,10072,10071,10070,10075,10073,10077,10083,10082,10088,10087,10089,10096, +10095,10094,10100,10099,10098,10103,10101,10111,10110,10115,10114,10119,10117,10125,10132,10129,10136,10135,10134,10140,10139,10138,10143,10141,10152,10149,10156,10154,10153,10160,10159,10158,10164,10163,10162,10167,10165,10175,10174,10179,10178,10183,10181,10189,10196,10193,10200,10199,10198,10204,10203,10202,10207,10205,10216,10213,10220,10218,10217,10224,10223,10222,10221,10228,10226,10229,10233,10240,10239,10238,10244,10243,10242,10247,10245,10256,10255,10254,10260,10259,10258,10263,10261,10269,10276,10273,10279,10278,10284,10283,10285,10292,10291,10290,10296,10295,10294,10299,10297,10308,10305,10312,10310,10309,10316,10315,10314,10313,10320,10318,10321,10325,10332,10331,10330,10336,10335,10334,10339,10337,10348,10347,10346,10352,10351,10350,10355,10353,10361,10368,10365,10369,10376,10375,10374,10380,10379,10378,10383,10381,10392,10391,10390,10396,10395,10394,10399,10397,10408,10407,10406,10412,10410,10413,10423,10422,10428,10427,10429,10436,10435,10434,10440,10438,10441,10452,10451,10450,10456,10455,10454,10459,10457,10467,10466,10471,10480,10479,10478,10477,10484,10483,10481,10488,10487,10485,10492,10491,10490,10489,10495,10494,10493,10500,10499,10498,10497,10504,10503,10502,10501,10508,10506,10510,10509,10514,10519,10518,10523,10522,10527,10525,10536,10535,10534,10540,10539,10538,10543,10541,10552,10551,10550,10556,10554,10557,10567,10565,10572,10571,10570,10569,10576,10575,10574,10580,10578,10581,10591,10589,10596,10595,10594,10593,10600,10599,10598,10604,10602,10605,10615,10613,10620,10619,10618,10617,10624,10623,10622,10628,10626,10629,10639,10637,10644,10643,10642,10641,10648,10647,10646,10652,10650,10653,10663,10661,10667,10666,10671,10670,10674,10677,10685,10696,10695,10694,10693,10700,10699,10698,10703,10702,10701,10706,10705,10712,10711,10710,10709,10716,10715,10714,10719,10717,10721,10728,10727,10726,10732,10731,10730,10735,10734,10733,10744,10743,10742,10741,10748,10747,10746,10751,10749,10753,10760,10759,10758,10764,10763,10762,10767,10766,10765,10770,10775,10774,10779,10778,10783,10782,10781,10786, +10792,10791,10790,10796,10794,10797,10808,10807,10806,10812,10811,10810,10815,10814,10813,10818,10824,10823,10822,10828,10827,10826,10831,10829,10840,10839,10838,10837,10844,10842,10845,10849,10856,10855,10854,10860,10859,10858,10863,10861,10871,10870,10875,10874,10879,10878,10877,10882,10888,10887,10886,10885,10892,10891,10890,10895,10893,10897,10904,10903,10902,10908,10906,10909,10919,10918,10923,10922,10927,10925,10936,10935,10940,10938,10937,10941,10948,10947,10952,10951,10956,10953,10960,10957,10964,10963,10962,10967,10972,10970,10969,10973,10980,10979,10978,10983,10988,10985,10992,10989,10996,10995,11000,10999,11004,11001,11006,11012,11011,11010,11009,11015,11014,11013,11020,11019,11018,11017,11024,11023,11021,11028,11027,11026,11025,11031,11029,11036,11035,11034,11033,11040,11039,11038,11043,11042,11047,11045,11052,11051,11049,11056,11055,11054,11053,11059,11064,11063,11062,11061,11068,11067,11066,11071,11069,11073,11080,11079,11078,11084,11083,11082,11087,11085,11096,11095,11094,11100,11099,11098,11097,11104,11103,11102,11101,11106,11112,11110,11115,11114,11113,11120,11119,11118,11117,11128,11127,11126,11125,11132,11131,11130,11129,11135,11134,11140,11139,11138,11137,11144,11143,11142,11148,11147,11146,11152,11151,11150,11156,11155,11154,11153,11160,11158,11164,11163,11162,11161,11168,11166,11172,11171,11170,11169,11176,11174,11180,11179,11178,11184,11183,11182,11188,11187,11186,11192,11191,11190,11196,11195,11194,11193,11200,11198,11204,11203,11202,11201,11208,11206,11212,11210,11209,11216,11214,11220,11219,11222,11227,11232,11230,11229,11235,11234,11239,11238,11243,11242,11241,11246,11250,11256,11255,11254,11260,11259,11258,11263,11261,11272,11270,11275,11273,11280,11278,11287,11285,11296,11295,11294,11300,11299,11298,11303,11302,11301,11306,11312,11311,11310,11309,11316,11315,11314,11319,11317,11327,11326,11331,11330,11335,11334,11333,11338,11343,11342,11347,11346,11351,11350,11349,11354,11360,11364,11362,11372,11370,11380,11378,11388,11386,11396,11394,11404,11402,11412,11410,11420,11418,11428,11426,11434, +11444,11443,11442,11441,11448,11447,11446,11451,11450,11449,11454,11453,11460,11459,11458,11464,11463,11462,11467,11466,11465,11470,11476,11475,11474,11480,11479,11478,11483,11482,11481,11486,11491,11490,11495,11494,11499,11498,11497,11502,11508,11507,11506,11505,11512,11511,11510,11509,11516,11515,11513,11520,11518,11517,11524,11523,11522,11521,11528,11527,11526,11525,11532,11531,11530,11529,11536,11535,11533,11540,11537,11543,11542,11547,11546,11551,11550,11549,11554,11560,11559,11558,11557,11564,11562,11565,11569,11575,11574,11573,11580,11579,11578,11583,11581,11585,11591,11590,11596,11595,11597,11604,11603,11602,11601,11608,11606,11609,11613,11620,11619,11618,11624,11623,11622,11627,11626,11625,11630,11636,11635,11634,11640,11638,11643,11641,11652,11651,11650,11656,11655,11654,11659,11657,11668,11667,11666,11672,11671,11670,11675,11674,11673,11678,11684,11683,11682,11688,11687,11686,11691,11689,11699,11698,11703,11702,11707,11706,11705,11710,11715,11714,11719,11718,11723,11722,11721,11726,11732,11731,11730,11736,11734,11733,11740,11744,11748,11747,11752,11754,11760,11759,11758,11757,11764,11763,11768,11770,11776,11775,11774,11773,11780,11779,11784,11786,11792,11791,11790,11789,11796,11795,11800,11802,11808,11807,11806,11805,11812,11811,11816,11818,11824,11822,11821,11828,11832,11831,11835,11834,11840,11838,11837,11844,11848,11847,11851,11850,11856,11854,11853,11860,11864,11863,11868,11865,11872,11871,11870,11869,11876,11875,11880,11882,11888,11887,11886,11885,11892,11891,11896,11898,11904,11903,11902,11901,11908,11907,11912,11914,11920,11919,11917,11924,11928,11927,11930,11936,11935,11934,11940,11944,11943,11946,11955,11957,11961,11971,11973 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *35931 { + a: 0.026465080678463,-0.384438067674637,0.922771334648132,0.0120826736092567,-0.476918518543243,0.878864467144012,0.00272546149790287,-0.531193196773529,0.84724634885788,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.210368305444717,-0.303417444229126,0.929345428943634,-0.192522555589676,-0.307569861412048,0.931845426559448,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.167590856552124,-0.331401407718658,0.928486049175262,-0.193154200911522,-0.313465774059296,0.929747700691223,0.0705678388476372,-0.247022077441216,0.966436862945557,0.0808819532394409,-0.238137289881706,0.967857837677002,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.00890664104372263,-0.546891987323761,0.837155818939209,0.00272546149790287,-0.531193196773529,0.84724634885788,0.00745453918352723,-0.599202454090118,0.800562739372253,0.6707723736763,0.355790436267853,0.65075159072876,0.733311951160431,0.265377759933472,0.62596184015274,0.73299252986908,0.265868574380875,0.626127660274506,0.670495808124542,0.35616335272789,0.650832533836365,0.490984380245209,0.559980094432831,0.667350471019745,0.584277331829071,0.462569922208786,0.666820108890533,0.584464132785797,0.462358862161636,0.666802763938904,0.491296529769897,0.55967777967453,0.66737425327301,0.296556979417801,0.711662828922272,0.636859536170959,0.297109395265579,0.711333990097046,0.636969268321991,0.400514394044876,0.639726400375366,0.65600198507309,0.400390982627869,0.639825165271759,0.655980825424194,0.172773629426956,0.772700011730194,0.610806047916412,0.173091173171997,0.772573113441467,0.610876619815826,0.297109395265579,0.711333990097046,0.636969268321991,0.296556979417801,0.711662828922272,0.636859536170959,-0.0707438364624977,0.8169806599617,0.572309255599976,-0.0699645355343819,0.81701397895813,0.572357594966888,0.0503431409597397,0.808794379234314,0.585932910442352,0.0503189787268639,0.808799088001251,0.585928380489349,0.0349617004394531,-0.269924879074097,0.962246477603912,0.00272546149790287,-0.531193196773529,0.84724634885788, +-0.0268524140119553,-0.29538369178772,0.95500123500824,-0.0494741797447205,-0.438117533922195,0.89755517244339,-0.0475826002657413,-0.444023489952087,0.894750893115997,-0.00962775014340878,-0.443623781204224,0.896161437034607,-0.0112791266292334,-0.439287006855011,0.898275911808014,0.560880541801453,-0.679872035980225,-0.472426772117615,0.56099945306778,-0.679828405380249,-0.472348421812057,0.447569310665131,-0.710714817047119,-0.542739391326904,0.447486191987991,-0.710730135440826,-0.542788147926331,0.733722627162933,-0.593431830406189,-0.330892622470856,0.733237087726593,-0.593745827674866,-0.331405103206635,0.655095219612122,-0.63870906829834,-0.40361014008522,0.655419766902924,-0.638542115688324,-0.403347104787827,0.86592572927475,-0.478142559528351,-0.146807119250298,0.865977168083191,-0.47807976603508,-0.146708205342293,0.806200265884399,-0.539266526699066,-0.243377879261971,0.806410670280457,-0.539083302021027,-0.243086352944374,0.931241750717163,-0.362454116344452,0.0376277416944504,0.931076884269714,-0.362959504127502,0.0368276312947273,0.905572772026062,-0.420559108257294,-0.0553907342255116,0.905624270439148,-0.420467674732208,-0.0552427805960178,0.944475471973419,-0.22766937315464,0.23692375421524,0.94457072019577,-0.228651031851768,0.2355947047472,0.944638013839722,-0.298583179712296,0.136040866374969,0.944725215435028,-0.297700941562653,0.137361943721771,0.876205682754517,0.00848840177059174,0.481862634420395,0.876416504383087,0.00799667742103338,0.481487601995468,0.909619867801666,-0.0784254372119904,0.407971858978271,0.90937066078186,-0.0776803344488144,0.408669412136078,-0.920197129249573,-0.147865056991577,0.362454503774643,-0.920217275619507,-0.14859102666378,0.362106144428253,-0.915543913841248,-0.282456904649734,0.286351919174194,-0.915563821792603,-0.282254099845886,0.286488115787506,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.103349946439266,-0.392858177423477,0.913773059844971,-0.136253386735916,-0.358394503593445,0.923573672771454,-0.0208465121686459,-0.750408172607422,0.66064590215683, +0.00272546149790287,-0.531193196773529,0.84724634885788,-0.0136146610602736,-0.746125340461731,0.665666282176971,-0.879038989543915,0.158573806285858,0.449605226516724,-0.878640592098236,0.16022914648056,0.449797093868256,-0.907016634941101,0.00856796652078629,0.421007394790649,-0.90703934431076,0.00840500835329294,0.420961886644363,-0.701169967651367,0.527854084968567,0.479302227497101,-0.69990062713623,0.52940821647644,0.479443550109863,-0.820271730422974,0.333872824907303,0.464417159557343,-0.821151971817017,0.331840753555298,0.464317917823792,-0.204423829913139,0.800592184066772,0.563261091709137,-0.203763291239738,0.800721824169159,0.563316166400909,-0.352967649698257,0.762954831123352,0.541584432125092,-0.358469277620316,0.761200487613678,0.54043847322464,-0.880204200744629,-0.456111639738083,0.131158828735352,-0.880086123943329,-0.45645073056221,0.13077150285244,-0.902239382266998,-0.373893469572067,0.214867055416107,-0.902280867099762,-0.373685747385025,0.215053901076317,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.0373072549700737,-0.488416254520416,0.87181293964386,-0.070955254137516,-0.434592127799988,0.897827923297882,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.00851425901055336,-0.743472516536713,0.668712258338928,-0.00872469320893288,-0.743663489818573,0.668497204780579,-0.785836815834045,-0.612851202487946,-0.082907646894455,-0.841498553752899,-0.539581120014191,0.0270638465881348,-0.841839194297791,-0.539009809494019,0.027842752635479,-0.786727905273438,-0.611916661262512,-0.0813469439744949,-0.667673349380493,-0.697648346424103,-0.259805679321289,-0.724521160125732,-0.665141820907593,-0.180708587169647,-0.725718259811401,-0.664315164089203,-0.178936794400215,-0.668703019618988,-0.697169303894043,-0.258439958095551,-0.524687469005585,-0.746297478675842,-0.409564465284348,-0.523687958717346,-0.746535181999207,-0.410409957170486,-0.6031214594841,-0.723535239696503,-0.335769563913345,-0.60425728559494,-0.723142206668854,-0.334572196006775,-0.338509112596512,-0.779972016811371,-0.526360332965851, +-0.43633234500885,-0.765112042427063,-0.473516285419464,-0.437109887599945,-0.764969527721405,-0.47302919626236,-0.338974446058273,-0.779914259910583,-0.526146411895752,-0.0802600681781769,-0.782321095466614,-0.617682814598083,-0.22492316365242,-0.788029313087463,-0.573078751564026,-0.225180551409721,-0.788024187088013,-0.572984755039215,-0.0801177471876144,-0.782307088375092,-0.617718994617462,-0.104750357568264,-0.574085056781769,0.812067568302155,-0.069454051554203,-0.644765138626099,0.761218845844269,-0.0365387871861458,-0.630775094032288,0.775104999542236,-0.0580516494810581,-0.560424506664276,0.826168477535248,0.0714048817753792,-0.2548788189888,0.96433299779892,0.0493366345763206,-0.305691778659821,0.950851440429688,0.00272546149790287,-0.531193196773529,0.84724634885788,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.0113693345338106,-0.736207365989685,0.676660418510437,-0.000464731536339968,-0.715449154376984,0.698664665222168,-0.0206752326339483,-0.748669028282166,0.662621378898621,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.024351580068469,-0.752699196338654,0.657913982868195,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0822478979825974,-0.731772124767303,0.676568388938904,0.0887148380279541,-0.7360600233078,0.67107766866684,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0933723300695419,-0.738501369953156,0.667755365371704,0.0961389243602753,-0.739680707454681,0.66605532169342,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0941086187958717,-0.739217042922974,0.666859567165375,0.0848549380898476,-0.73734724521637,0.670163035392761,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0552661530673504,-0.702335000038147,0.709697961807251,0.0720954835414886,-0.722913205623627,0.687167167663574,0.00963577441871166,-0.555363953113556,0.831551611423492,0.0172380451112986,-0.613386750221252,0.78959459066391,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0848549380898476,-0.73734724521637,0.670163035392761,0.0712678954005241,-0.735388100147247,0.673888206481934, +0.00272546149790287,-0.531193196773529,0.84724634885788,0.548098266124725,-0.465574890375137,0.694858491420746,0.478391766548157,-0.503834545612335,0.719230234622955,0.511453092098236,-0.504644155502319,0.695521295070648,0.586189150810242,-0.475561112165451,0.655914604663849,0.659939110279083,-0.463738322257996,0.591123580932617,0.721237778663635,-0.468950927257538,0.509804785251617,0.679702043533325,-0.477342039346695,0.556910812854767,0.624454081058502,-0.477743476629257,0.617914319038391,0.506362795829773,-0.447443544864655,0.737150609493256,0.444082170724869,-0.495073944330215,0.746788442134857,0.478391766548157,-0.503834545612335,0.719230234622955,0.548098266124725,-0.465574890375137,0.694858491420746,0.764132022857666,-0.462935894727707,0.449213325977325,0.806884229183197,-0.447146356105804,0.386002749204636,0.781888365745544,-0.444380909204483,0.437236905097961,0.730969965457916,-0.46271812915802,0.50157231092453,0.586189150810242,-0.475561112165451,0.655914604663849,0.638755440711975,-0.46838766336441,0.610413253307343,0.599214911460876,-0.449337154626846,0.662599146366119,0.548098266124725,-0.465574890375137,0.694858491420746,0.717995405197144,-0.391631782054901,0.575419068336487,0.752130091190338,-0.424689471721649,0.503923773765564,0.799119651317596,-0.402984946966171,0.446106344461441,0.769440948963165,-0.361524820327759,0.526555120944977,0.692995369434357,-0.448745965957642,0.564255654811859,0.752130091190338,-0.424689471721649,0.503923773765564,0.717995405197144,-0.391631782054901,0.575419068336487,0.654242098331451,-0.423821240663528,0.626372635364532,0.382338970899582,-0.421155482530594,0.822462737560272,0.344740986824036,-0.487214148044586,0.802356481552124,0.401788800954819,-0.485980302095413,0.776137173175812,0.456888765096664,-0.418798714876175,0.784767687320709,0.599214911460876,-0.449337154626846,0.662599146366119,0.557535648345947,-0.420799851417542,0.71559876203537,0.506362795829773,-0.447443544864655,0.737150609493256,0.548098266124725,-0.465574890375137,0.694858491420746,0.614830315113068,-0.38836258649826,0.686409652233124, +0.681010007858276,-0.346068799495697,0.645338535308838,0.643299579620361,-0.285868614912033,0.710242748260498,0.577608168125153,-0.339330613613129,0.742444336414337,0.643299579620361,-0.285868614912033,0.710242748260498,0.681010007858276,-0.346068799495697,0.645338535308838,0.735380947589874,-0.306696802377701,0.604277968406677,0.696622431278229,-0.237920626997948,0.676838994026184,0.862799763679504,-0.420903295278549,0.280029952526093,0.891054272651672,-0.395764172077179,0.222245335578918,0.893979668617249,-0.394452720880508,0.21262001991272,0.870073080062866,-0.391977846622467,0.298874735832214,0.892156720161438,-0.324061930179596,0.314706712961197,0.858110070228577,-0.358776569366455,0.367323517799377,0.870073080062866,-0.391977846622467,0.298874735832214,0.900952756404877,-0.363071292638779,0.237620383501053,0.696622431278229,-0.237920626997948,0.676838994026184,0.668188810348511,-0.175476402044296,0.723001897335052,0.617699444293976,-0.237255468964577,0.749771356582642,0.643299579620361,-0.285868614912033,0.710242748260498,0.806958973407745,-0.0900640487670898,0.583699882030487,0.771739065647125,-0.0211929734796286,0.635586023330688,0.732249021530151,-0.0923037081956863,0.674752831459045,0.769384980201721,-0.151651710271835,0.620522677898407,0.932035565376282,-0.323586285114288,0.163100123405457,0.932711839675903,-0.346269637346268,0.100727051496506,0.952396929264069,-0.302877634763718,0.0347174517810345,0.958916902542114,-0.268308401107788,0.0921365171670914,0.916360676288605,-0.198120176792145,0.347895860671997,0.929237306118011,-0.27287945151329,0.249107986688614,0.962175071239471,-0.203448295593262,0.181184977293015,0.951593995094299,-0.117630794644356,0.283957421779633,0.977048695087433,-0.210245221853256,0.0342474803328514,0.967875003814697,-0.250627100467682,-0.0201025549322367,0.978924870491028,-0.191251203417778,-0.0716172531247139,0.988789319992065,-0.147783517837524,-0.0213430970907211,0.972480237483978,-0.0425272919237614,0.229071453213692,0.982782006263733,-0.136359050869942,0.124682068824768,0.995356321334839,-0.0649463534355164,0.0710470527410507, +0.983691871166229,0.0357370600104332,0.176275476813316,0.993958592414856,-0.0808793008327484,-0.0741933137178421,0.983983874320984,-0.127370923757553,-0.124709121882915,0.981316268444061,-0.0627036020159721,-0.181897670030594,0.992118716239929,-0.00848200358450413,-0.125014007091522,0.985108852386475,0.117774486541748,0.125258311629295,0.999738216400146,0.0112723344936967,0.0199074819684029,0.995415925979614,0.0910405665636063,-0.0293059181421995,0.976541996002197,0.201259523630142,0.0765539184212685,0.981865644454956,0.0690517798066139,-0.176555082201958,0.970815598964691,0.00323633314110339,-0.239805072546005,0.952480912208557,0.0736365541815758,-0.295563668012619,0.961841642856598,0.148483201861382,-0.229811429977417,0.952480912208557,0.0736365541815758,-0.295563668012619,0.924600541591644,0.147649690508842,-0.351159900426865,0.931258499622345,0.227360010147095,-0.284719049930573,0.961841642856598,0.148483201861382,-0.229811429977417,0.957989394664764,0.285421222448349,0.0281246323138475,0.981655955314636,0.173446819186211,-0.0791694596409798,0.95767205953598,0.256459891796112,-0.13073818385601,0.929179430007935,0.369009852409363,-0.0213855635374784,0.887727499008179,0.218531146645546,-0.405196219682693,0.843363344669342,0.285134464502335,-0.455452233552933,0.841935575008392,0.373304575681686,-0.389600247144699,0.891023457050323,0.30240735411644,-0.338566273450851,0.889849781990051,0.450553596019745,-0.0718945562839508,0.922917187213898,0.338304132223129,-0.183777615427971,0.878167629241943,0.416062027215958,-0.236037954688072,0.841037690639496,0.527145326137543,-0.121545694768429,0.79138857126236,0.350090861320496,-0.501139223575592,0.731321930885315,0.412949502468109,-0.542808353900909,0.718789994716644,0.502372741699219,-0.480585783720016,0.784067809581757,0.440502256155014,-0.437258958816528,0.783733367919922,0.597517967224121,-0.169511780142784,0.82421350479126,0.488665997982025,-0.286142855882645,0.761472105979919,0.555673122406006,-0.333747833967209,0.718414425849915,0.66132652759552,-0.215703219175339,0.663239121437073,0.46925100684166,-0.583024382591248, +0.586081206798553,0.51582932472229,-0.624843001365662,0.570380091667175,0.601023733615875,-0.559854447841644,0.648189067840576,0.55603015422821,-0.520270645618439,0.647168278694153,0.717207789421082,-0.258430272340775,0.691980302333832,0.615448296070099,-0.377341628074646,0.618495404720306,0.666654884815216,-0.415974378585815,0.572801768779755,0.764351308345795,-0.296083182096481,0.499634772539139,0.553026556968689,-0.666728377342224,0.409706890583038,0.581074655056,-0.703201472759247,0.39168980717659,0.666319370269775,-0.634505867958069,0.483266532421112,0.637818932533264,-0.599700331687927,0.494096875190735,0.804125189781189,-0.330531150102615,0.539259552955627,0.710268139839172,-0.452458024024963,0.452260971069336,0.746307909488678,-0.488348841667175,0.409441828727722,0.836996495723724,-0.363034605979919,0.317597717046738,0.601452708244324,-0.733066380023956,0.22279067337513,0.615127444267273,-0.756295263767242,0.197084307670593,0.709033489227295,-0.677074015140533,0.295942306518555,0.689684629440308,-0.660873174667358,0.317929655313492,0.862894177436829,-0.392854154109955,0.35915145277977,0.774681627750397,-0.520460069179535,0.257429361343384,0.798309743404388,-0.544455409049988,0.216100484132767,0.8814617395401,-0.419911563396454,0.12533663213253,0.621041119098663,-0.773691594600677,0.0240517910569906,0.615848958492279,-0.787497103214264,0.00141387525945902,0.71882700920105,-0.695187509059906,0.0991671532392502,0.720739364624023,-0.686076402664185,0.115516245365143,0.89021909236908,-0.440642595291138,0.153918206691742,0.816798388957977,-0.556012332439423,0.0603340975940228,0.826625764369965,-0.559508442878723,0.0306913871318102,0.890658497810364,-0.453635960817337,0.0603340975940228,0.826625764369965,-0.559508442878723,-0.0266171656548977,0.824205636978149,-0.565664649009705,-0.0460207425057888,0.885126054286957,-0.463070005178452,0.0306913871318102,0.890658497810364,-0.453635960817337,-0.184642806649208,0.667108356952667,-0.7217156291008,-0.168222829699516,0.568801820278168,-0.805087387561798,-0.260247379541397,0.529694139957428,-0.807276487350464, +-0.278666794300079,0.623718798160553,-0.730287492275238,-0.110308974981308,0.807806670665741,-0.579033970832825,-0.197715252637863,0.777518630027771,-0.59697014093399,-0.206236183643341,0.853951930999756,-0.477737009525299,-0.122072242200375,0.873593330383301,-0.471097588539124,0.115516245365143,0.89021909236908,-0.440642595291138,0.0894456505775452,0.942907631397247,-0.320818692445755,0.179120764136314,0.940421223640442,-0.289004534482956,0.216100484132767,0.8814617395401,-0.419911563396454,0.0109201520681381,0.937956869602203,-0.346580147743225,-0.0637263506650925,0.930471122264862,-0.360780328512192,-0.0853950008749962,0.970623850822449,-0.224937781691551,-0.00974548328667879,0.97719269990921,-0.212130784988403,-0.372895002365112,0.572881281375885,-0.729901611804962,-0.350330919027328,0.480568528175354,-0.803941607475281,-0.435032486915588,0.425925672054291,-0.793305695056915,-0.462735056877136,0.516225874423981,-0.720685064792633,-0.29567077755928,0.734853982925415,-0.610383868217468,-0.395785719156265,0.684575915336609,-0.612135112285614,-0.407908320426941,0.777762532234192,-0.478222042322159,-0.305734932422638,0.82171630859375,-0.480945408344269,-0.139876693487167,0.921451449394226,-0.362438768148422,-0.222561478614807,0.908286511898041,-0.354234516620636,-0.240361705422401,0.945226609706879,-0.220845982432365,-0.161752372980118,0.960318565368652,-0.227210402488708,-0.546164691448212,0.455898582935333,-0.702752232551575,-0.514229714870453,0.370153814554214,-0.773662626743317,-0.593216180801392,0.306512922048569,-0.744408667087555,-0.626207113265991,0.388383746147156,-0.67603462934494,-0.489397644996643,0.629499733448029,-0.60350638628006,-0.575633704662323,0.569017350673676,-0.587252199649811,-0.588184535503387,0.669372320175171,-0.453849881887436,-0.501989543437958,0.726572275161743,-0.469147354364395,-0.31527903676033,0.884803712368011,-0.34310582280159,-0.410055488348007,0.848762631416321,-0.333850979804993,-0.403838366270065,0.892540812492371,-0.20071280002594,-0.321096867322922,0.923266470432281,-0.210892736911774, +-0.702655971050262,0.306119441986084,-0.642312705516815,-0.670958399772644,0.223740637302399,-0.706933438777924,-0.736890554428101,0.123637206852436,-0.664609730243683,-0.769560873508453,0.207985609769821,-0.603753268718719,-0.656933128833771,0.500306248664856,-0.564032435417175,-0.733676075935364,0.41961395740509,-0.534456372261047,-0.745279967784882,0.528198421001434,-0.406895846128464,-0.668926358222961,0.604226052761078,-0.432952880859375,-0.500174820423126,0.803229749202728,-0.323492020368576,-0.583394885063171,0.751233577728271,-0.308704674243927,-0.564300417900085,0.807275533676147,-0.172833397984505,-0.486889660358429,0.853006660938263,-0.18793061375618,-0.174514785408974,0.977853834629059,-0.115526609122753,-0.247328028082848,0.961627304553986,-0.118751138448715,-0.247400805354118,0.964831352233887,-0.0888433903455734,-0.177220210433006,0.980723559856415,-0.082305409014225,-0.320006519556046,0.940107226371765,-0.117448754608631,-0.39510852098465,0.912105083465576,-0.109333075582981,-0.391484379768372,0.916363656520844,-0.0837716683745384,-0.318148761987686,0.943682968616486,-0.090794712305069,-0.174514785408974,0.977853834629059,-0.115526609122753,-0.102393694221973,0.988690316677094,-0.109575875103474,-0.0853950008749962,0.970623850822449,-0.224937781691551,-0.161752372980118,0.960318565368652,-0.227210402488708,-0.471571117639542,0.876666724681854,-0.0952693372964859,-0.542549610137939,0.836125791072845,-0.0808302834630013,-0.534829676151276,0.843019902706146,-0.0572249218821526,-0.465701520442963,0.882141530513763,-0.0703453943133354,0.0665305480360985,0.979680061340332,-0.189210370182991,0.0452298223972321,0.995095789432526,-0.0879694670438766,0.119121521711349,0.990518450737,-0.0684339329600334,0.145446941256523,0.976195991039276,-0.160892963409424,0.317929655313492,0.862894177436829,-0.392854154109955,0.271441668272018,0.926925778388977,-0.259090662002563,0.357482701539993,0.904777407646179,-0.231481924653053,0.409441828727722,0.836996495723724,-0.363034605979919,0.22495898604393,0.965238213539124,-0.133073344826698, +0.190349489450455,0.980754435062408,-0.0434471182525158,0.259150266647339,0.965677917003632,-0.0175296701490879,0.302448570728302,0.947197198867798,-0.10649997740984,0.494096875190735,0.804125189781189,-0.330531150102615,0.438212215900421,0.875887393951416,-0.201968491077423,0.514174044132233,0.840704798698425,-0.169824913144112,0.572801768779755,0.764351308345795,-0.296083182096481,0.377480417490005,0.922581970691681,-0.0796933025121689,0.327474176883698,0.944837749004364,0.00650440761819482,0.396079748868942,0.917660892009735,0.0319283008575439,0.449486941099167,0.891828536987305,-0.0510226227343082,0.647168278694153,0.717207789421082,-0.258430272340775,0.586880683898926,0.798507213592529,-0.134004518389702,0.657213926315308,0.747902154922485,-0.0933397337794304,0.718414425849915,0.66132652759552,-0.215703219175339,0.518908321857452,0.854644775390625,-0.0177867151796818,0.463158965110779,0.884012162685394,0.0632945820689201,0.526554584503174,0.844215452671051,0.100202545523643,0.585924804210663,0.810103178024292,0.0206156149506569,0.783733367919922,0.597517967224121,-0.169511780142784,0.722512781620026,0.689560830593109,-0.0498121045529842,0.780999660491943,0.62450909614563,-0.00528780138120055,0.841037690639496,0.527145326137543,-0.121545694768429,0.648475527763367,0.758762121200562,0.0613143667578697,0.585065186023712,0.799091517925262,0.138388901948929,0.639467537403107,0.748440086841583,0.175836846232414,0.705668330192566,0.701148450374603,0.102093853056431,0.889849781990051,0.450553596019745,-0.0718945562839508,0.832585573196411,0.552391409873962,0.0408043377101421,0.875840425491333,0.474394619464874,0.0886185243725777,0.929179430007935,0.369009852409363,-0.0213855635374784,0.758039176464081,0.635898172855377,0.144948333501816,0.691290676593781,0.689502477645874,0.216109782457352,0.737169086933136,0.623049855232239,0.261515974998474,0.803019165992737,0.564331293106079,0.191547334194183,0.957989394664764,0.285421222448349,0.0281246323138475,0.909105956554413,0.393671125173569,0.136196419596672,0.93259471654892,0.310945987701416,0.183247715234756, +0.976541996002197,0.201259523630142,0.0765539184212685,0.838186919689178,0.490378022193909,0.238688111305237,0.773092985153198,0.55461984872818,0.307772725820541,0.801302015781403,0.483456552028656,0.352398723363876,0.865068197250366,0.413032591342926,0.284712255001068,0.985108852386475,0.117774486541748,0.125258311629295,0.94608873128891,0.226721525192261,0.231329470872879,0.948792994022369,0.142214477062225,0.282076299190521,0.983691871166229,0.0357370600104332,0.176275476813316,0.883519172668457,0.330919593572617,0.331490814685822,0.82326352596283,0.405250370502472,0.397503823041916,0.835202932357788,0.321155816316605,0.446424722671509,0.890902698040009,0.246582344174385,0.381430923938751,0.972480237483978,-0.0425272919237614,0.229071453213692,0.940581858158112,0.0603803135454655,0.334155589342117,0.92164021730423,-0.0199242029339075,0.387533813714981,0.951593995094299,-0.117630794644356,0.283957421779633,0.886175215244293,0.164691090583801,0.433093816041946,0.833660960197449,0.238616421818733,0.498067796230316,0.820317029953003,0.158004492521286,0.54964941740036,0.870449364185333,0.0830996334552765,0.485193192958832,0.916360676288605,-0.198120176792145,0.347895860671997,0.887793838977814,-0.108413584530354,0.447290182113647,0.848035275936127,-0.180256187915802,0.498341172933578,0.876031935214996,-0.260045111179352,0.406133592128754,0.820317029953003,0.158004492521286,0.54964941740036,0.79884797334671,0.0667911320924759,0.597813487052917,0.841695487499237,-0.00998861342668533,0.539860129356384,0.870449364185333,0.0830996334552765,0.485193192958832,0.876031935214996,-0.260045111179352,0.406133592128754,0.848035275936127,-0.180256187915802,0.498341172933578,0.808620154857635,-0.233222976326942,0.540129959583282,0.837920308113098,-0.30336195230484,0.453718960285187,0.732249021530151,-0.0923037081956863,0.674752831459045,0.668188810348511,-0.175476402044296,0.723001897335052,0.696622431278229,-0.237920626997948,0.676838994026184,0.769384980201721,-0.151651710271835,0.620522677898407,0.556985139846802,-0.297771066427231,0.775306344032288, +0.499127447605133,-0.344298601150513,0.795192003250122,0.519807875156403,-0.37946817278862,0.76537823677063,0.577608168125153,-0.339330613613129,0.742444336414337,0.444655239582062,-0.372629851102829,0.814511239528656,0.382387578487396,-0.391030311584473,0.837182819843292,0.382338970899582,-0.421155482530594,0.822462737560272,0.456888765096664,-0.418798714876175,0.784767687320709,0.249737083911896,-0.430089026689529,0.867556691169739,0.228518217802048,-0.511639416217804,0.828253924846649,0.283904045820236,-0.500032186508179,0.818148016929626,0.313730776309967,-0.425255089998245,0.848958790302277,0.313335865736008,-0.403007626533508,0.859886884689331,0.249733299016953,-0.413002461194992,0.875820875167847,0.249737083911896,-0.430089026689529,0.867556691169739,0.313730776309967,-0.425255089998245,0.848958790302277,0.124484948813915,-0.44426640868187,0.887203991413116,0.120851531624794,-0.529502272605896,0.839656054973602,0.175832226872444,-0.520594954490662,0.835502207279205,0.188580513000488,-0.436514109373093,0.879711747169495,0.188823118805885,-0.425177872180939,0.885194659233093,0.122266829013824,-0.438016623258591,0.890613436698914,0.124484948813915,-0.44426640868187,0.887203991413116,0.188580513000488,-0.436514109373093,0.879711747169495,-0.0037532348651439,-0.462602734565735,0.886557698249817,0.0148712992668152,-0.546777665615082,0.837145805358887,0.0651199147105217,-0.538973927497864,0.839801430702209,0.0596204027533531,-0.453271239995956,0.889376521110535,0.0547015890479088,-0.442984223365784,0.89485901594162,-0.00962775014340878,-0.443623781204224,0.896161437034607,-0.0037532348651439,-0.462602734565735,0.886557698249817,0.0596204027533531,-0.453271239995956,0.889376521110535,-0.142809644341469,-0.489621996879578,0.860160291194916,-0.104750357568264,-0.574085056781769,0.812067568302155,-0.0580516494810581,-0.560424506664276,0.826168477535248,-0.0831155329942703,-0.47706526517868,0.874928891658783,-0.186330661177635,-0.592158198356628,0.78398323059082,-0.14632111787796,-0.584464251995087,0.798117637634277,-0.191549643874168,-0.501517474651337,0.843675851821899, +-0.239478275179863,-0.513941645622253,0.823719620704651,-0.0831155329942703,-0.47706526517868,0.874928891658783,-0.0860291048884392,-0.447738409042358,0.890016496181488,-0.146074652671814,-0.459408044815063,0.876131474971771,-0.142809644341469,-0.489621996879578,0.860160291194916,-0.276363015174866,-0.60367214679718,0.747798919677734,-0.229851886630058,-0.598201870918274,0.767673492431641,-0.291056603193283,-0.523904025554657,0.800506472587585,-0.344437569379807,-0.531491875648499,0.773872911930084,-0.191549643874168,-0.501517474651337,0.843675851821899,-0.197569400072098,-0.470081925392151,0.860226333141327,-0.253354370594025,-0.474762231111526,0.842859625816345,-0.239478275179863,-0.513941645622253,0.823719620704651,-0.462378084659576,-0.551173686981201,0.694560408592224,-0.372959643602371,-0.61766117811203,0.692384243011475,-0.327763140201569,-0.607410490512848,0.723618507385254,-0.400741964578629,-0.540269315242767,0.73994243144989,-0.291056603193283,-0.523904025554657,0.800506472587585,-0.312162697315216,-0.476809293031693,0.821709930896759,-0.369443595409393,-0.47899341583252,0.796289443969727,-0.344437569379807,-0.531491875648499,0.773872911930084,-0.479258030653,-0.601837158203125,0.638830006122589,-0.395584255456924,-0.638837099075317,0.659848809242249,-0.372959643602371,-0.61766117811203,0.692384243011475,-0.462378084659576,-0.551173686981201,0.694560408592224,-0.400741964578629,-0.540269315242767,0.73994243144989,-0.427676647901535,-0.480783492326736,0.76546710729599,-0.485695242881775,-0.474673062562943,0.734020054340363,-0.462378084659576,-0.551173686981201,0.694560408592224,-0.538349449634552,-0.688024818897247,0.486622780561447,-0.451989978551865,-0.678381443023682,0.579226732254028,-0.426441729068756,-0.67831015586853,0.598366737365723,-0.514005720615387,-0.674599945545197,0.52982372045517,-0.595205426216125,-0.68846195936203,0.414427995681763,-0.506681323051453,-0.665714621543884,0.547812044620514,-0.479769468307495,-0.661267995834351,0.576667785644531,-0.571795165538788,-0.680692732334137,0.457938432693481, +-0.537122964859009,-0.508779466152191,0.672787010669708,-0.535411417484283,-0.455697625875473,0.711107790470123,-0.587910354137421,-0.418111205101013,0.692491471767426,-0.589976191520691,-0.480722337961197,0.64871734380722,-0.57540762424469,-0.622274160385132,0.530736207962036,-0.551442265510559,-0.568498730659485,0.610508620738983,-0.604521632194519,-0.551361799240112,0.574938058853149,-0.625729024410248,-0.611058354377747,0.484841078519821,0.450006395578384,-0.846444368362427,-0.284651011228561,0.296047121286392,-0.869268655776978,-0.395888924598694,0.283676981925964,-0.895026743412018,-0.344172269105911,0.436083823442459,-0.8669513463974,-0.241301000118256,-0.649016559123993,-0.724011957645416,0.233632564544678,-0.638048648834229,-0.7086141705513,0.301263719797134,-0.66938841342926,-0.709360897541046,0.220740288496017,-0.666373133659363,-0.729299187660217,0.155143395066261,-0.617504179477692,-0.700288653373718,0.358167976140976,-0.598159551620483,-0.669631242752075,0.440226227045059,-0.645019173622131,-0.661725461483002,0.382190525531769,-0.65744823217392,-0.696082890033722,0.288496851921082,-0.66938841342926,-0.709360897541046,0.220740288496017,-0.705497860908508,-0.694082498550415,0.143255904316902,-0.69608336687088,-0.714668154716492,0.0686835572123528,-0.666373133659363,-0.729299187660217,0.155143395066261,-0.735452234745026,-0.67417573928833,0.0678016245365143,-0.745784044265747,-0.666071236133575,0.012464702129364,-0.728603780269623,-0.68262904882431,-0.0561620481312275,-0.720623970031738,-0.693292081356049,-0.0068796188570559,-0.645019173622131,-0.661725461483002,0.382190525531769,-0.699672698974609,-0.642060935497284,0.313394367694855,-0.701837062835693,-0.679338276386261,0.214299067854881,-0.65744823217392,-0.696082890033722,0.288496851921082,-0.746380925178528,-0.619045376777649,0.244332477450371,-0.769535422325134,-0.609962821006775,0.189104527235031,-0.753817737102509,-0.651477992534637,0.08564642816782,-0.738130271434784,-0.659674525260925,0.141397655010223,-0.692671358585358,-0.584756731987,0.422215521335602, +-0.681457579135895,-0.513396918773651,0.521573722362518,-0.749436378479004,-0.471412658691406,0.464881777763367,-0.751390159130096,-0.553865551948547,0.358672469854355,-0.669552743434906,-0.428347855806351,0.606809139251709,-0.661892235279083,-0.35614675283432,0.659589409828186,-0.73035717010498,-0.293996155261993,0.616558790206909,-0.740842878818512,-0.373773396015167,0.558072745800018,-0.780074894428253,-0.34274959564209,0.523455619812012,-0.770061016082764,-0.249317809939384,0.587236523628235,-0.805038332939148,-0.202450782060623,0.557608366012573,-0.818539798259735,-0.308393239974976,0.484650760889053,-0.749436378479004,-0.471412658691406,0.464881777763367,-0.786443412303925,-0.450318962335587,0.422752320766449,-0.782716274261475,-0.540324509143829,0.30887633562088,-0.751390159130096,-0.553865551948547,0.358672469854355,-0.873752653598785,-0.246370017528534,0.419354379177094,-0.853722929954529,-0.141011893749237,0.50127100944519,-0.899268507957458,-0.081151157617569,0.429803103208542,-0.920029401779175,-0.177577450871468,0.349302381277084,-0.823093593120575,-0.425131350755692,0.376537412405014,-0.877372264862061,-0.369055986404419,0.306619465351105,-0.859706342220306,-0.47694519162178,0.182834297418594,-0.812692940235138,-0.523456871509552,0.255974739789963,-0.790164768695831,-0.598218441009521,0.133320689201355,-0.825988411903381,-0.560300648212433,0.0616962127387524,-0.793124735355377,-0.608313322067261,-0.030136339366436,-0.76663738489151,-0.641198337078094,0.033643152564764,-0.752277851104736,-0.658125877380371,-0.0307952985167503,-0.773782908916473,-0.627123773097992,-0.0893075242638588,-0.769684612751007,-0.628689527511597,-0.111062847077847,-0.732806026935577,-0.675643503665924,-0.0806298330426216,-0.929153323173523,-0.364609599113464,0.0611061155796051,-0.951949059963226,-0.244813710451126,0.184008419513702,-0.976194858551025,-0.175322875380516,0.127692595124245,-0.954302668571472,-0.298781514167786,0.00601912615820765,-0.860593616962433,-0.509266376495361,-0.00514261424541473,-0.884389758110046,-0.463580816984177,-0.0542901195585728, +-0.839317381381989,-0.525748729705811,-0.138327702879906,-0.820578813552856,-0.564198195934296,-0.0912731662392616,-0.947358012199402,-0.119896613061428,0.296880155801773,-0.928055584430695,-0.0259605720639229,0.371535986661911,-0.948241710662842,0.0431638769805431,0.314602077007294,-0.969369828701019,-0.05037721991539,0.240383639931679,-0.794866979122162,-0.589686274528503,-0.143026128411293,-0.811097919940948,-0.554378390312195,-0.186506628990173,-0.805151998996735,-0.558473408222198,-0.199593842029572,-0.787965953350067,-0.594851016998291,-0.158940076828003,-0.983480393886566,0.0308413505554199,0.178367838263512,-0.959444344043732,0.120867058634758,0.254671812057495,-0.960481941699982,0.19626422226429,0.197369828820229,-0.986513137817383,0.111238181591034,0.120074823498726,-0.976194858551025,-0.175322875380516,0.127692595124245,-0.993611633777618,-0.0920403599739075,0.0653026178479195,-0.974614024162292,-0.21708832681179,-0.0547758415341377,-0.954302668571472,-0.298781514167786,0.00601912615820765,-0.960481941699982,0.19626422226429,0.197369828820229,-0.952094972133636,0.270136147737503,0.143323391675949,-0.979358196258545,0.191341832280159,0.065160945057869,-0.986513137817383,0.111238181591034,0.120074823498726,-0.908385515213013,-0.404361307621002,-0.106431648135185,-0.930319607257843,-0.3280228972435,-0.164031803607941,-0.879428446292877,-0.408120214939117,-0.245037719607353,-0.8593590259552,-0.475353062152863,-0.188524588942528,-0.826898038387299,-0.510238766670227,-0.236423283815384,-0.842096447944641,-0.453032642602921,-0.292634665966034,-0.832048654556274,-0.463703066110611,-0.304424583911896,-0.8195920586586,-0.515669405460358,-0.249707564711571,-0.85174548625946,-0.33085909485817,-0.406278014183044,-0.861055910587311,-0.315059244632721,-0.399149477481842,-0.858510673046112,-0.234560817480087,-0.45600488781929,-0.849176168441772,-0.250202178955078,-0.465079337358475,-0.999950885772705,-0.00731660192832351,0.0066896821372211,-0.995735704898834,0.078937754034996,-0.047741211950779,-0.985378801822662,-0.0422624200582504,-0.165053084492683, +-0.985015332698822,-0.131152883172035,-0.111998207867146,-0.934175670146942,0.34418660402298,0.0940810441970825,-0.903263449668884,0.42612037062645,0.0503649152815342,-0.932343304157257,0.360445082187653,-0.028553169220686,-0.962026476860046,0.272541850805283,0.0150333913043141,-0.900376617908478,-0.254474222660065,-0.352937310934067,-0.94979053735733,-0.157779827713966,-0.270191341638565,-0.945272564888,-0.0663445815443993,-0.319465160369873,-0.898228764533997,-0.168878525495529,-0.4057896733284,-0.832771956920624,-0.165778279304504,-0.528212368488312,-0.842951416969299,-0.149763241410255,-0.516724109649658,-0.816720843315125,-0.0636805444955826,-0.573508381843567,-0.80700021982193,-0.0808402448892593,-0.584991931915283,-0.980983018875122,0.168127328157425,-0.0969824194908142,-0.95468407869339,0.262446969747543,-0.140356346964836,-0.954551696777344,0.147012576460838,-0.259265184402466,-0.975569784641266,0.0501002185046673,-0.213900968432426,-0.859487175941467,0.510881006717682,0.0167969167232513,-0.808725237846375,0.588142871856689,-0.00718138087540865,-0.839566946029663,0.536263227462769,-0.0868857055902481,-0.890067577362061,0.451685339212418,-0.0613209493458271,-0.883886814117432,-0.0789119303226471,-0.460995554924011,-0.92915153503418,0.0292611476033926,-0.368539333343506,-0.900184631347656,0.127867221832275,-0.416314214468002,-0.857020974159241,0.0137089714407921,-0.515099167823792,-0.774528384208679,0.00857250019907951,-0.632481098175049,-0.78328537940979,0.0255078952759504,-0.621138870716095,-0.736890554428101,0.123637206852436,-0.664609730243683,-0.727322399616241,0.10787907987833,-0.677764236927032,-0.81995677947998,0.108194269239902,-0.562107503414154,-0.858935952186584,0.226187631487846,-0.459421575069427,-0.803265273571014,0.325352013111115,-0.498909831047058,-0.769560873508453,0.207985609769821,-0.603753268718719,-0.660831570625305,0.692164957523346,-0.290188372135162,-0.735069453716278,0.622829258441925,-0.267874389886856,-0.707728385925293,0.692660510540009,-0.139075294137001,-0.636554539203644,0.754995107650757,-0.157418668270111, +-0.916594743728638,0.358544558286667,-0.176917746663094,-0.86808305978775,0.450471699237823,-0.208583950996399,-0.875946462154388,0.343206882476807,-0.33900859951973,-0.921252071857452,0.246230468153954,-0.301106631755829,-0.609835147857666,0.789600133895874,-0.0680638402700424,-0.678596079349518,0.732632279396057,-0.0525097101926804,-0.66944819688797,0.742208421230316,-0.0310778580605984,-0.600965142250061,0.797970652580261,-0.0456459000706673,0.133779019117355,-0.680475056171417,-0.720455944538116,0.112105987966061,-0.688443899154663,-0.716573297977448,0.110655456781387,-0.688726842403412,-0.716526806354523,0.131930708885193,-0.681313633918762,-0.720004141330719,0.335494667291641,-0.661771476268768,-0.670448958873749,0.335570484399796,-0.662386655807495,-0.669803261756897,0.330828726291656,-0.677279829978943,-0.657148599624634,0.331621140241623,-0.676528930664063,-0.657522678375244,0.325641214847565,-0.642440915107727,-0.693705558776855,0.326312005519867,-0.643150746822357,-0.692731976509094,0.335570484399796,-0.662386655807495,-0.669803261756897,0.335494667291641,-0.661771476268768,-0.670448958873749,0.266298860311508,-0.626155436038971,-0.732812583446503,0.286235898733139,-0.624946057796478,-0.726299822330475,0.283637315034866,-0.624852001667023,-0.727399349212646,0.263311952352524,-0.626739323139191,-0.733392596244812,0.240244761109352,-0.633132815361023,-0.735816061496735,0.24858470261097,-0.630830109119415,-0.735023260116577,0.246277242898941,-0.631740152835846,-0.735018312931061,0.240346282720566,-0.632760465145111,-0.736103117465973,0.276449382305145,-0.585005342960358,-0.762459397315979,0.249795287847519,-0.620917499065399,-0.7430100440979,0.252252876758575,-0.61799556016922,-0.744614005088806,0.278892278671265,-0.58135312795639,-0.764360964298248,0.314287215471268,-0.497495234012604,-0.808530747890472,0.304830849170685,-0.534605383872986,-0.788210213184357,0.305504381656647,-0.533116340637207,-0.788957595825195,0.314271628856659,-0.497389584779739,-0.808601856231689,0.275559842586517,-0.505128443241119,-0.817870378494263, +0.300957053899765,-0.4905866086483,-0.817771196365356,0.300576210021973,-0.490728735923767,-0.81782591342926,0.27453488111496,-0.505881786346436,-0.817749440670013,0.215495407581329,-0.537740707397461,-0.815105259418488,0.246262848377228,-0.523610591888428,-0.815589725971222,0.245150700211525,-0.52419501543045,-0.815549254417419,0.214917615056038,-0.537964940071106,-0.81511002779007,0.189321935176849,-0.549834311008453,-0.813535153865814,0.189097598195076,-0.549963355064392,-0.813500106334686,0.215495407581329,-0.537740707397461,-0.815105259418488,0.214917615056038,-0.537964940071106,-0.81511002779007,0.164602339267731,-0.573203444480896,-0.802710354328156,0.164278388023376,-0.573718190193176,-0.802408933639526,0.173048034310341,-0.562137842178345,-0.80873692035675,0.173420175909996,-0.561713933944702,-0.808951795101166,0.151468753814697,-0.598952531814575,-0.786328852176666,0.151272177696228,-0.599556922912598,-0.78590601682663,0.157329469919205,-0.585274040699005,-0.795425593852997,0.157659515738487,-0.584703147411346,-0.795779943466187,0.151015564799309,-0.640903830528259,-0.752619802951813,0.151113778352737,-0.641322910785675,-0.752242982387543,0.148628801107407,-0.619264960289001,-0.77098673582077,0.148627430200577,-0.618782818317413,-0.771373987197876,0.14520375430584,-0.655498921871185,-0.741105198860168,0.144834816455841,-0.65537691116333,-0.741285383701324,0.152739316225052,-0.654735445976257,-0.74026483297348,0.152776211500168,-0.654557228088379,-0.740414977073669,0.126554638147354,-0.65186333656311,-0.747701823711395,0.126632288098335,-0.651922166347504,-0.747637450695038,0.131480529904366,-0.65190988779068,-0.746810734272003,0.131771937012672,-0.651964664459229,-0.746711611747742,0.150572180747986,-0.660155653953552,-0.735882103443146,0.151440784335136,-0.660661101341248,-0.735250115394592,0.13694503903389,-0.655062198638916,-0.743060886859894,0.136354818940163,-0.654930651187897,-0.743285417556763,0.143325418233871,-0.673335254192352,-0.725311994552612,0.140573054552078,-0.673601865768433,-0.725603044033051, +0.1545749604702,-0.668674230575562,-0.727311074733734,0.155207842588425,-0.667714238166809,-0.728057861328125,0.107051134109497,-0.672619879245758,-0.732203960418701,0.105596341192722,-0.672812223434448,-0.732238471508026,0.120388127863407,-0.673010051250458,-0.729769885540009,0.123079128563404,-0.673336625099182,-0.729019463062286,0.0999424830079079,-0.68348103761673,-0.72309422492981,0.100107617676258,-0.684249401092529,-0.722344398498535,0.0999239683151245,-0.677327334880829,-0.728864133358002,0.100126035511494,-0.676457822322845,-0.72964334487915,0.201174721121788,-0.659834563732147,-0.723980069160461,0.175847545266151,-0.666855931282043,-0.724141418933868,0.174767300486565,-0.667144417762756,-0.724137246608734,0.201174706220627,-0.659834563732147,-0.723979949951172,-0.624014973640442,0.759612798690796,-0.183285847306252,-0.624015033245087,0.759612739086151,-0.183285862207413,-0.618687927722931,0.761608898639679,-0.192813917994499,-0.620675623416901,0.760878324508667,-0.189277276396751,0.738376677036285,0.553139865398407,-0.385792851448059,0.743478178977966,0.553152561187744,-0.375848978757858,0.798272311687469,0.530124247074127,-0.285883903503418,0.781776070594788,0.524024963378906,-0.337970286607742,0.406846165657043,0.713391661643982,-0.570568561553955,0.376286774873734,0.728651583194733,-0.572254478931427,0.292901754379272,0.769643008708954,-0.567325413227081,0.308389812707901,0.761007070541382,-0.570757389068604,0.860638976097107,0.457137048244476,-0.224335432052612,0.859593033790588,0.478953689336777,-0.178053677082062,0.900938928127289,0.419384211301804,-0.111472479999065,0.90740305185318,0.396797627210617,-0.138460516929626,-0.0527839735150337,-0.859681189060211,0.508096575737,-0.0549962595105171,-0.868799448013306,0.492100536823273,-0.167500227689743,-0.865407645702362,0.472242772579193,-0.164380833506584,-0.855252146720886,0.491449564695358,0.743478178977966,0.553152561187744,-0.375848978757858,0.814060628414154,0.537976145744324,-0.218830734491348,0.798272311687469,0.530124247074127,-0.285883903503418, +0.744617104530334,0.660145699977875,-0.0987571030855179,0.84397429227829,0.522969782352448,-0.119205676019192,0.811946988105774,0.565707921981812,-0.143932953476906,0.683483123779297,0.725124657154083,-0.0839348807930946,0.947261214256287,0.319280982017517,-0.0274942107498646,0.918371856212616,0.390708059072495,-0.0627718940377235,0.9125736951828,0.388484686613083,-0.127627238631248,0.951346337795258,0.287874668836594,-0.109856493771076,0.900938928127289,0.419384211301804,-0.111472479999065,0.859593033790588,0.478953689336777,-0.178053677082062,0.84397429227829,0.522969782352448,-0.119205676019192,0.88924103975296,0.449243783950806,-0.0862000286579132,0.955544829368591,0.294668048620224,-0.0102290026843548,0.929601311683655,0.363578885793686,-0.0604299306869507,0.918371856212616,0.390708059072495,-0.0627718940377235,0.947261214256287,0.319280982017517,-0.0274942107498646,0.987307369709015,0.139715284109116,0.0755231752991676,0.972454845905304,0.23200935125351,0.0224328208714724,0.979847848415375,0.185714647173882,-0.0735411643981934,0.996348440647125,0.0785739943385124,-0.0334031730890274,0.976454555988312,0.210528612136841,0.0470550432801247,0.972454845905304,0.23200935125351,0.0224328208714724,0.987307369709015,0.139715284109116,0.0755231752991676,0.986934781074524,0.122394859790802,0.104781627655029,0.986721336841583,0.034363966435194,0.158745408058167,0.990691840648651,0.0481400564312935,0.127327248454094,0.982541859149933,-0.0464210659265518,0.180157005786896,0.976034820079803,-0.0560148358345032,0.210282117128372,0.982541859149933,-0.0464210659265518,0.180157005786896,0.990691840648651,0.0481400564312935,0.127327248454094,0.999632656574249,-0.0249952785670757,0.0104756345972419,0.989922344684601,-0.128703236579895,0.0590692535042763,0.913626849651337,-0.258556932210922,0.313742250204086,0.951542019844055,-0.157129675149918,0.264344781637192,0.959386110305786,-0.152907535433769,0.237060353159904,0.920667409896851,-0.261755615472794,0.289578378200531,0.920667409896851,-0.261755615472794,0.289578378200531,0.959386110305786,-0.152907535433769,0.237060353159904, +0.964792609214783,-0.239488556981087,0.10872159153223,0.923907339572906,-0.350473433732986,0.153504595160484,0.814648866653442,-0.428443908691406,0.390874683856964,0.869904339313507,-0.344727277755737,0.352745711803436,0.874306619167328,-0.355029195547104,0.330971598625183,0.816639840602875,-0.443348735570908,0.369514942169189,0.816639840602875,-0.443348735570908,0.369514942169189,0.874306619167328,-0.355029195547104,0.330971598625183,0.87428742647171,-0.44466158747673,0.194672852754593,0.816357672214508,-0.526052057743073,0.238389149308205,0.655916035175323,-0.594901263713837,0.464614391326904,0.740242958068848,-0.51613986492157,0.430859625339508,0.741131365299225,-0.533720970153809,0.407266736030579,0.6580491065979,-0.613115012645721,0.437105745077133,0.6580491065979,-0.613115012645721,0.437105745077133,0.741131365299225,-0.533720970153809,0.407266736030579,0.743408799171448,-0.607500910758972,0.279796183109283,0.662330329418182,-0.682317137718201,0.309454023838043,0.488165348768234,-0.713943839073181,0.501974999904633,0.572315275669098,-0.65930038690567,0.487624973058701,0.577624380588531,-0.675775945186615,0.457905054092407,0.494536429643631,-0.72918176651001,0.472998470067978,0.494536429643631,-0.72918176651001,0.472998470067978,0.577624380588531,-0.675775945186615,0.457905054092407,0.583747625350952,-0.740580201148987,0.332835763692856,0.503096163272858,-0.787679433822632,0.355605393648148,0.307396620512009,-0.799743175506592,0.515672504901886,0.397733598947525,-0.761988878250122,0.511058568954468,0.401979863643646,-0.777763307094574,0.48321458697319,0.30925127863884,-0.816498339176178,0.487538754940033,0.30925127863884,-0.816498339176178,0.487538754940033,0.401979863643646,-0.777763307094574,0.48321458697319,0.413431137800217,-0.830815851688385,0.372585207223892,0.322065323591232,-0.867082238197327,0.380055755376816,0.132950633764267,-0.847913265228271,0.513193070888519,0.220776662230492,-0.827487170696259,0.516258358955383,0.22141706943512,-0.844668388366699,0.487349689006805,0.132824137806892,-0.865383505821228,0.483186364173889, +0.132824137806892,-0.865383505821228,0.483186364173889,0.22141706943512,-0.844668388366699,0.487349689006805,0.235287114977837,-0.892799735069275,0.384120672941208,0.148474022746086,-0.909900426864624,0.387345612049103,-0.459567219018936,0.580215096473694,-0.672419905662537,-0.518941938877106,0.530140161514282,-0.670559883117676,-0.522631049156189,0.526674687862396,-0.670425653457642,-0.468959718942642,0.572989404201508,-0.67213100194931,-0.0555269010365009,-0.882919192314148,0.466230094432831,-0.0549962595105171,-0.868799448013306,0.492100536823273,0.0588114783167839,-0.859771192073822,0.507281720638275,0.0612420067191124,-0.875404596328735,0.479495942592621,-0.91165167093277,0.215856075286865,-0.349710434675217,-0.916033148765564,0.253893464803696,-0.310517966747284,-0.885988473892212,0.331857442855835,-0.323875218629837,-0.877001404762268,0.273719936609268,-0.394900023937225,-0.916033148765564,0.253893464803696,-0.310517966747284,-0.907359540462494,0.327251821756363,-0.263827443122864,-0.854619860649109,0.462648808956146,-0.235756173729897,-0.885988473892212,0.331857442855835,-0.323875218629837,0.901660442352295,-0.406466871500015,0.147624731063843,0.915845572948456,-0.376419752836227,0.139768317341805,0.909937739372253,-0.378480076789856,0.169606015086174,0.893979668617249,-0.394452720880508,0.21262001991272,-0.609950661659241,0.762418806552887,-0.216050490736961,-0.611638844013214,0.762599647045135,-0.210569873452187,-0.620675623416901,0.760878324508667,-0.189277276396751,-0.618687927722931,0.761608898639679,-0.192813917994499,-0.593897104263306,0.747401118278503,-0.297788113355637,-0.602320849895477,0.758639812469482,-0.248344793915749,-0.600799202919006,0.757277846336365,-0.256067603826523,-0.592884123325348,0.745278775691986,-0.305037587881088,-0.572997391223907,0.730178117752075,-0.372174918651581,-0.575163245201111,0.729696393013,-0.3697709441185,-0.587115049362183,0.734396159648895,-0.340526252985001,-0.586198151111603,0.732834279537201,-0.345435261726379,-0.491416245698929,0.766980171203613,-0.41261550784111, +-0.491936862468719,0.766742169857025,-0.412437289953232,-0.544346392154694,0.741976737976074,-0.391353666782379,-0.541782915592194,0.74321186542511,-0.392565369606018,-0.39240300655365,0.80481368303299,-0.445302963256836,-0.437842935323715,0.789587259292603,-0.429936647415161,-0.437617182731628,0.789674937725067,-0.430005580186844,-0.391716837882996,0.804998695850372,-0.445572555065155,-0.31193083524704,0.814045667648315,-0.489927470684052,-0.350885152816772,0.812869787216187,-0.464889585971832,-0.349956005811691,0.812967002391815,-0.465419739484787,-0.310799598693848,0.813979923725128,-0.490754812955856,-0.248314753174782,0.808694362640381,-0.533247709274292,-0.278971821069717,0.810869753360748,-0.51445609331131,-0.277576744556427,0.8106729388237,-0.515519618988037,-0.246419087052345,0.808691680431366,-0.534130573272705,-0.174512892961502,0.817176580429077,-0.549333870410919,-0.213144287467003,0.811357617378235,-0.544305324554443,-0.210988342761993,0.811657965183258,-0.544697403907776,-0.172922477126122,0.817432820796967,-0.549455642700195,-0.778216004371643,-0.182597190141678,-0.600864470005035,-0.696719408035278,-0.197553753852844,-0.689604699611664,-0.737373828887939,-0.0310200806707144,-0.674772322177887,-0.82836127281189,-0.030024416744709,-0.559388935565948,-0.0659389793872833,0.831221759319305,-0.552016794681549,-0.104121215641499,0.826686680316925,-0.552944719791412,-0.102740220725536,0.826851069927216,-0.552957236766815,-0.0640053451061249,0.83144873380661,-0.551902532577515,0.0102146826684475,0.84311431646347,-0.537637293338776,-0.0256382189691067,0.836462616920471,-0.547423958778381,-0.0238859578967094,0.836716532707214,-0.54711502790451,0.0119663765653968,0.843527972698212,-0.536951899528503,0.0698925703763962,0.857977390289307,-0.508910357952118,0.0406068414449692,0.85097724199295,-0.523630499839783,0.0433148629963398,0.851748704910278,-0.52215701341629,0.0737112984061241,0.858693063259125,-0.507161438465118,0.14335310459137,0.863478302955627,-0.483585745096207,0.103942163288593,0.862124443054199,-0.495920896530151, +0.108135171234608,0.862352669239044,-0.494625866413116,0.146081373095512,0.863504648208618,-0.482721358537674,0.219543889164925,0.866546630859375,-0.448215782642365,0.183443769812584,0.864085078239441,-0.468727439641953,0.186123296618462,0.864151477813721,-0.467547118663788,0.221856251358986,0.866800487041473,-0.446583300828934,0.935437679290771,0.195304363965988,-0.294639497995377,0.865605175495148,0.310322314500809,-0.392973035573959,0.823954164981842,0.305536866188049,-0.477228224277496,0.898703098297119,0.171856269240379,-0.403482496738434,0.273404777050018,0.876736044883728,-0.395706504583359,0.274674832820892,0.87697422504425,-0.394296646118164,0.248945206403732,0.871587693691254,-0.422328263521194,0.24924148619175,0.87165641784668,-0.422011613845825,0.331985354423523,0.881135821342468,-0.336727410554886,0.333156406879425,0.881159543991089,-0.335506498813629,0.301921188831329,0.880024373531342,-0.366606801748276,0.300187736749649,0.879940152168274,-0.36822921037674,0.364147633314133,0.881634056568146,-0.300196528434753,0.364538311958313,0.881637215614319,-0.299712508916855,0.333156406879425,0.881159543991089,-0.335506498813629,0.331985354423523,0.881135821342468,-0.336727410554886,0.419891953468323,0.887660562992096,-0.189075261354446,0.40496352314949,0.883995652198792,-0.233572572469711,0.404495120048523,0.883894979953766,-0.234762579202652,0.419409871101379,0.887538075447083,-0.190713509917259,0.433213412761688,0.890652716159821,-0.138072058558464,0.434039890766144,0.890810370445251,-0.134410262107849,0.419891953468323,0.887660562992096,-0.189075261354446,0.419409871101379,0.887538075447083,-0.190713509917259,0.450144797563553,0.89004510641098,-0.0720370933413506,0.451899915933609,0.889546871185303,-0.0670280605554581,0.444294363260269,0.891158998012543,-0.0918593034148216,0.443033277988434,0.891295790672302,-0.0965059027075768,-0.877001404762268,0.273719936609268,-0.394900023937225,-0.866852343082428,0.323039442300797,-0.379753053188324,-0.813092589378357,0.317156821489334,-0.488151550292969,-0.468959718942642,0.572989404201508,-0.67213100194931, +-0.405256241559982,0.625142633914948,-0.667056262493134,-0.40032497048378,0.631075084209442,-0.664442718029022,-0.459567219018936,0.580215096473694,-0.672419905662537,0.12560373544693,0.553501665592194,0.823322415351868,0.125519454479218,0.552620410919189,0.823926985263824,0.119399666786194,0.527406990528107,0.841181039810181,0.119949132204056,0.5286545753479,0.840319395065308,0.876031935214996,-0.260045111179352,0.406133592128754,0.837920308113098,-0.30336195230484,0.453718960285187,0.858110070228577,-0.358776569366455,0.367323517799377,0.892156720161438,-0.324061930179596,0.314706712961197,-0.866106688976288,0.252948522567749,-0.43113374710083,-0.905876696109772,0.188816428184509,-0.379125088453293,-0.91165167093277,0.215856075286865,-0.349710434675217,-0.877001404762268,0.273719936609268,-0.394900023937225,-0.944790005683899,0.0985130816698074,-0.312517076730728,-0.967608571052551,0.0159404166042805,-0.251951336860657,-0.969312250614166,0.0398839525878429,-0.242575749754906,-0.947455763816833,0.125704109668732,-0.294152975082397,-0.0555269010365009,-0.882919192314148,0.466230094432831,-0.166357293725014,-0.882590591907501,0.439726173877716,-0.167500227689743,-0.865407645702362,0.472242772579193,-0.0549962595105171,-0.868799448013306,0.492100536823273,-0.978541135787964,-0.0698231086134911,-0.193860813975334,-0.978422582149506,-0.152772471308708,-0.139103934168816,-0.981842994689941,-0.132751107215881,-0.135504394769669,-0.980909407138824,-0.0482443869113922,-0.18838594853878,0.798272311687469,0.530124247074127,-0.285883903503418,0.826098144054413,0.514073014259338,-0.230847924947739,0.821043312549591,0.494010090827942,-0.286080211400986,0.781776070594788,0.524024963378906,-0.337970286607742,-0.969312250614166,0.0398839525878429,-0.242575749754906,-0.969683289527893,0.0665885135531425,-0.235117360949516,-0.948522806167603,0.158656448125839,-0.274103164672852,-0.947455763816833,0.125704109668732,-0.294152975082397,-0.969302713871002,-0.230619445443153,-0.0852463021874428,-0.95111608505249,-0.307684779167175,-0.0266136527061462, +-0.953635454177856,-0.299968034029007,-0.0244671758264303,-0.972954988479614,-0.215910732746124,-0.0821038112044334,-0.969683289527893,0.0665885135531425,-0.235117360949516,-0.964405477046967,0.0926254913210869,-0.247674390673637,-0.942300140857697,0.206310003995895,-0.263640701770782,-0.948522806167603,0.158656448125839,-0.274103164672852,-0.981842994689941,-0.132751107215881,-0.135504394769669,-0.982332468032837,-0.120615340769291,-0.143090650439262,-0.981282889842987,-0.0284820031374693,-0.190453633666039,-0.980909407138824,-0.0482443869113922,-0.18838594853878,-0.920806527137756,-0.388105094432831,0.0385984145104885,-0.877260148525238,-0.468549847602844,0.104287005960941,-0.880649268627167,-0.464166760444641,0.0949017927050591,-0.922875583171844,-0.383426278829575,0.0358441434800625,-0.982332468032837,-0.120615340769291,-0.143090650439262,-0.967540562152863,-0.151449754834175,-0.202307313680649,-0.971750259399414,-0.031576856970787,-0.23388934135437,-0.981282889842987,-0.0284820031374693,-0.190453633666039,-0.953635454177856,-0.299968034029007,-0.0244671758264303,-0.954524517059326,-0.296981602907181,-0.0261690057814121,-0.973664164543152,-0.210531666874886,-0.0874903574585915,-0.972954988479614,-0.215910732746124,-0.0821038112044334,-0.826095283031464,-0.540207266807556,0.160445123910904,-0.771490752696991,-0.601683914661407,0.20682966709137,-0.778777837753296,-0.59727543592453,0.191747337579727,-0.83180969953537,-0.535390019416809,0.146458983421326,-0.954524517059326,-0.296981602907181,-0.0261690057814121,-0.949139177799225,-0.311927765607834,-0.0428471863269806,-0.960675477981567,-0.244659081101418,-0.131318554282188,-0.973664164543152,-0.210531666874886,-0.0874903574585915,-0.880649268627167,-0.464166760444641,0.0949017927050591,-0.884804606437683,-0.457960963249207,0.0859802216291428,-0.924851298332214,-0.378955572843552,0.0322908945381641,-0.922875583171844,-0.383426278829575,0.0358441434800625,-0.652795135974884,-0.703852891921997,0.280088633298874,-0.719807803630829,-0.65297132730484,0.23559533059597,-0.712858974933624,-0.655101835727692,0.250347048044205, +-0.646237969398499,-0.703299462795258,0.296220034360886,-0.884804606437683,-0.457960963249207,0.0859802216291428,-0.892132878303528,-0.443055897951126,0.0883204191923141,-0.927103698253632,-0.373506039381027,0.0311771482229233,-0.924851298332214,-0.378955572843552,0.0322908945381641,-0.778777837753296,-0.59727543592453,0.191747337579727,-0.786388993263245,-0.592392265796661,0.175110906362534,-0.838367402553558,-0.528690695762634,0.13276344537735,-0.83180969953537,-0.535390019416809,0.146458983421326,-0.486940175294876,-0.785775125026703,0.381374686956406,-0.498265594244003,-0.788218021392822,0.361169815063477,-0.577446401119232,-0.749671459197998,0.323339432477951,-0.568553984165192,-0.747996091842651,0.342415124177933,-0.786388993263245,-0.592392265796661,0.175110906362534,-0.793179154396057,-0.587971210479736,0.158608675003052,-0.847046732902527,-0.515303790569305,0.130284026265144,-0.838367402553558,-0.528690695762634,0.13276344537735,-0.652795135974884,-0.703852891921997,0.280088633298874,-0.658526003360748,-0.708120048046112,0.25477346777916,-0.72661292552948,-0.652363002300262,0.215536773204803,-0.719807803630829,-0.65297132730484,0.23559533059597,-0.409541547298431,-0.813731729984283,0.412451505661011,-0.333080500364304,-0.833068549633026,0.441649377346039,-0.335416704416275,-0.84122359752655,0.424073606729507,-0.417820036411285,-0.818676292896271,0.393948644399643,-0.658526003360748,-0.708120048046112,0.25477346777916,-0.654017984867096,-0.730486929416656,0.196594446897507,-0.729008257389069,-0.660993874073029,0.17785955965519,-0.72661292552948,-0.652363002300262,0.215536773204803,-0.498265594244003,-0.788218021392822,0.361169815063477,-0.506272315979004,-0.797325432300568,0.328573346138,-0.584298610687256,-0.756926655769348,0.292672395706177,-0.577446401119232,-0.749671459197998,0.323339432477951,-0.24841345846653,-0.846261322498322,0.471309512853622,-0.164380833506584,-0.855252146720886,0.491449564695358,-0.167500227689743,-0.865407645702362,0.472242772579193,-0.246648848056793,-0.856903851032257,0.452636808156967, +-0.506272315979004,-0.797325432300568,0.328573346138,-0.490759879350662,-0.83434009552002,0.251060605049133,-0.572824418544769,-0.789301097393036,0.221079111099243,-0.584298610687256,-0.756926655769348,0.292672395706177,-0.335416704416275,-0.84122359752655,0.424073606729507,-0.334458380937576,-0.857013761997223,0.392001092433929,-0.422532498836517,-0.8307785987854,0.362316399812698,-0.417820036411285,-0.818676292896271,0.393948644399643,0.376286774873734,0.728651583194733,-0.572254478931427,0.406846165657043,0.713391661643982,-0.570568561553955,0.467428982257843,0.675797164440155,-0.569919586181641,0.456793278455734,0.683383882045746,-0.569496512413025,-0.334458380937576,-0.857013761997223,0.392001092433929,-0.313340693712234,-0.900710225105286,0.30089670419693,-0.404787838459015,-0.87070631980896,0.279315412044525,-0.422532498836517,-0.8307785987854,0.362316399812698,-0.167500227689743,-0.865407645702362,0.472242772579193,-0.166357293725014,-0.882590591907501,0.439726173877716,-0.24187034368515,-0.875452756881714,0.418427050113678,-0.246648848056793,-0.856903851032257,0.452636808156967,-0.166357293725014,-0.882590591907501,0.439726173877716,-0.136749014258385,-0.922213852405548,0.361692368984222,-0.217328578233719,-0.921589434146881,0.321622550487518,-0.24187034368515,-0.875452756881714,0.418427050113678,0.88924103975296,0.449243783950806,-0.0862000286579132,0.84397429227829,0.522969782352448,-0.119205676019192,0.744617104530334,0.660145699977875,-0.0987571030855179,0.860865414142609,0.49597030878067,-0.113685496151447,-0.641433656215668,0.646313726902008,0.413329660892487,-0.641826033592224,0.646762549877167,0.41201651096344,-0.628566145896912,0.606737673282623,0.486594349145889,-0.628002762794495,0.599861145019531,0.495761096477509,-0.622714638710022,0.689896643161774,0.369146436452866,-0.620587825775146,0.689143300056458,0.374101847410202,-0.642683029174805,0.678312361240387,0.356161385774612,-0.644183397293091,0.676072478294373,0.357706218957901,-0.70429003238678,0.36199426651001,0.610684633255005,-0.647597372531891,0.531894385814667,0.545624434947968, +-0.643333315849304,0.544253587722778,0.538433194160461,-0.700466930866241,0.373589754104614,0.608092844486237,-0.763160824775696,-0.0478357002139091,0.64443564414978,-0.750934958457947,0.164132237434387,0.639654040336609,-0.752030551433563,0.156788304448128,0.640208959579468,-0.761870443820953,-0.0762629210948944,0.64322429895401,-0.655378699302673,-0.56961727142334,0.495998948812485,-0.737926304340363,-0.291202515363693,0.608823359012604,-0.73172664642334,-0.323387503623962,0.599997103214264,-0.647546529769897,-0.587460935115814,0.48535880446434,-0.540803551673889,-0.169442445039749,-0.823905825614929,-0.334897965192795,-0.0841053500771523,-0.938493251800537,-0.326416850090027,0.132676422595978,-0.93586802482605,-0.554136395454407,0.0203292444348335,-0.832177519798279,-0.303154587745667,-0.952372074127197,-0.0329333059489727,-0.397924184799194,-0.907118678092957,0.137084171175957,-0.400045484304428,-0.905632853507996,0.140687137842178,-0.306805104017258,-0.951422989368439,-0.0257873144000769,-0.228081464767456,-0.95795601606369,-0.174066603183746,-0.226329118013382,-0.9577876329422,-0.177251547574997,-0.303154587745667,-0.952372074127197,-0.0329333059489727,-0.306805104017258,-0.951422989368439,-0.0257873144000769,-0.135781213641167,-0.925816714763641,-0.352741956710815,-0.135377481579781,-0.925501048564911,-0.35372406244278,-0.17109552025795,-0.944920063018799,-0.27902027964592,-0.17232720553875,-0.945378541946411,-0.276699513196945,-0.110524922609329,-0.903628170490265,-0.413811892271042,-0.110330946743488,-0.903667688369751,-0.413777589797974,-0.118964433670044,-0.908790409564972,-0.399934321641922,-0.118901319801807,-0.908696174621582,-0.40016695857048,-0.0899073258042336,-0.916323900222778,-0.390214323997498,-0.0897447541356087,-0.916646838188171,-0.389492630958557,-0.0985692366957664,-0.909459292888641,-0.40394052863121,-0.0996145904064178,-0.90878564119339,-0.405198305845261,-0.0754014402627945,-0.94013124704361,-0.332367330789566,-0.0722447857260704,-0.941954970359802,-0.327874004840851,-0.0904626250267029,-0.925121128559113,-0.36873784661293, +-0.0902316048741341,-0.924303114414215,-0.370839536190033,-0.0762008130550385,-0.911494612693787,-0.404191762208939,-0.0333082638680935,-0.945907950401306,-0.322720587253571,-0.0435533821582794,-0.938541412353516,-0.342408001422882,-0.076200820505619,-0.911494672298431,-0.404191792011261,-0.89208459854126,0.349250584840775,-0.286721408367157,-0.884384393692017,0.346845984458923,-0.312349408864975,-0.925961077213287,0.358620166778564,-0.118268683552742,-0.925961017608643,0.358620196580887,-0.118268691003323,-0.755833446979523,0.0772312209010124,-0.650193154811859,-0.754853367805481,0.0852381736040115,-0.650331258773804,-0.774931490421295,0.236460611224174,-0.586146235466003,-0.774796187877655,0.235763594508171,-0.586605787277222,-0.390801697969437,-0.649240493774414,-0.652503490447998,-0.390801668167114,-0.649240434169769,-0.652503430843353,-0.589029788970947,-0.390399247407913,-0.707553744316101,-0.508340418338776,-0.511716246604919,-0.692630231380463,-0.628566145896912,0.606737673282623,0.486594349145889,-0.645106613636017,0.559507846832275,0.520373225212097,-0.659926950931549,0.545950710773468,0.516172707080841,-0.628002762794495,0.599861145019531,0.495761096477509,0.749874293804169,-0.649870812892914,0.123921379446983,0.774207770824432,-0.622428119182587,0.114828839898109,0.637513160705566,-0.763309895992279,-0.104570671916008,0.615963220596313,-0.784222185611725,-0.0747321173548698,0.283676981925964,-0.895026743412018,-0.344172269105911,0.209494650363922,-0.977356433868408,-0.0297742374241352,0.345061331987381,-0.937940537929535,-0.0346445143222809,0.436083823442459,-0.8669513463974,-0.241301000118256,0.793072044849396,-0.536082923412323,0.289226353168488,0.808530390262604,-0.503700017929077,0.304244667291641,0.774207770824432,-0.622428119182587,0.114828839898109,0.749874293804169,-0.649870812892914,0.123921379446983,0.168249398469925,-0.891458928585052,0.420705616474152,0.151470839977264,-0.728598177433014,0.667983055114746,0.324025064706802,-0.761790096759796,0.560966670513153,0.323264271020889,-0.893875539302826,0.310623019933701, +0.615963220596313,-0.784222185611725,-0.0747321173548698,0.5263831615448,-0.849805593490601,0.0274087712168694,0.690646111965179,-0.708719551563263,0.143960282206535,0.749874293804169,-0.649870812892914,0.123921379446983,-0.0111613115295768,-0.902023434638977,-0.4315425157547,0.0735059455037117,-0.902492642402649,-0.424386560916901,0.0867995172739029,-0.877836644649506,-0.471029311418533,-0.00373929319903255,-0.886215269565582,-0.463258534669876,0.0148712992668152,-0.546777665615082,0.837145805358887,-0.0037532348651439,-0.462602734565735,0.886557698249817,-0.0421829670667648,-0.467899739742279,0.882774293422699,-0.0227747615426779,-0.551540315151215,0.83383721113205,0.734706282615662,-0.481136292219162,0.478241056203842,0.786434650421143,-0.495830148458481,0.368338406085968,0.761715471744537,-0.472965806722641,0.44282391667366,0.697559654712677,-0.470335394144058,0.540550768375397,0.795078992843628,-0.522641777992249,0.307725340127945,0.777065634727478,-0.580229997634888,0.24393056333065,0.813471257686615,-0.544181644916534,0.205257937312126,0.827638208866119,-0.502594590187073,0.24982775747776,0.81871634721756,-0.481854349374771,0.312282025814056,0.852851033210754,-0.460834324359894,0.245513364672661,0.833628058433533,-0.454055398702621,0.31448045372963,0.796359002590179,-0.469575971364975,0.381196528673172,0.856023550033569,-0.446936100721359,0.259753346443176,0.87469071149826,-0.446987152099609,0.187399595975876,0.892635226249695,-0.431775242090225,0.129508435726166,0.876990914344788,-0.436529964208603,0.20081926882267,0.813471257686615,-0.544181644916534,0.205257937312126,0.859838902950287,-0.488049238920212,0.149950385093689,0.863404989242554,-0.466759294271469,0.191487655043602,0.827638208866119,-0.502594590187073,0.24982775747776,0.79199230670929,-0.48136031627655,0.375553458929062,0.809677243232727,-0.52847808599472,0.2552130818367,0.5718674659729,-0.715050101280212,0.402083277702332,0.579777479171753,-0.606185078620911,0.54442423582077,0.324025064706802,-0.761790096759796,0.560966670513153,0.5718674659729,-0.715050101280212,0.402083277702332, +0.549805700778961,-0.812079548835754,0.19555202126503,0.323264271020889,-0.893875539302826,0.310623019933701,0.897973716259003,-0.41534024477005,0.145380631089211,0.905779242515564,-0.416718155145645,0.0768769085407257,0.908586740493774,-0.41457599401474,0.0509580485522747,0.901660442352295,-0.406466871500015,0.147624731063843,0.919773876667023,-0.391604751348495,0.0257225073873997,0.928230226039886,-0.368469744920731,-0.0511729456484318,0.929994761943817,-0.359203964471817,-0.0779896304011345,0.921753525733948,-0.387748926877975,-0.00461699673905969,0.942121863365173,0.0769168511033058,-0.32632839679718,0.982199847698212,0.0583079122006893,-0.178559899330139,0.935437679290771,0.195304363965988,-0.294639497995377,0.898703098297119,0.171856269240379,-0.403482496738434,0.697661280632019,0.33238884806633,-0.634654581546783,0.74810266494751,0.326062172651291,-0.577949702739716,0.641277492046356,0.478991270065308,-0.599441826343536,0.575212597846985,0.470463961362839,-0.669174253940582,0.79020756483078,0.181348860263824,-0.585392773151398,0.834174036979675,0.171859636902809,-0.524040043354034,0.74810266494751,0.326062172651291,-0.577949702739716,0.697661280632019,0.33238884806633,-0.634654581546783,0.99465537071228,-0.101890854537487,0.0167034529149532,0.982199847698212,0.0583079122006893,-0.178559899330139,0.989501714706421,-0.0315620042383671,-0.141032472252846,0.989118278026581,-0.146823480725288,0.00936767365783453,0.963285148143768,-0.019251611083746,-0.267789155244827,0.989501714706421,-0.0315620042383671,-0.141032472252846,0.982199847698212,0.0583079122006893,-0.178559899330139,0.942121863365173,0.0769168511033058,-0.32632839679718,0.823954164981842,0.305536866188049,-0.477228224277496,0.865605175495148,0.310322314500809,-0.392973035573959,0.877688348293304,0.354772418737411,-0.322179824113846,0.754592716693878,0.465805411338806,-0.462185353040695,0.935437679290771,0.195304363965988,-0.294639497995377,0.982199847698212,0.0583079122006893,-0.178559899330139,0.992425203323364,0.0758756399154663,-0.0966176241636276, +0.950916349887848,0.216000497341156,-0.221588909626007,0.920321881771088,-0.327427804470062,0.214006260037422,0.927526712417603,-0.294440060853958,0.230216145515442,0.99465537071228,-0.101890854537487,0.0167034529149532,0.989118278026581,-0.146823480725288,0.00936767365783453,0.579777479171753,-0.606185078620911,0.54442423582077,0.618817389011383,-0.515431225299835,0.592786431312561,0.806885480880737,-0.426367074251175,0.40883606672287,0.79199230670929,-0.48136031627655,0.375553458929062,0.410768091678619,-0.539874017238617,0.73471462726593,0.221545055508614,-0.532006621360779,0.81724339723587,0.286115348339081,-0.561390459537506,0.776517033576965,0.481036335229874,-0.517089664936066,0.707970499992371,0.995732247829437,-0.0610749796032906,0.0691897571086884,0.955482184886932,-0.198175325989723,0.218587160110474,0.961964786052704,-0.189853474497795,0.196416407823563,0.995651662349701,-0.0596232861280441,0.0715734884142876,0.992425203323364,0.0758756399154663,-0.0966176241636276,0.994481861591339,0.0828594267368317,-0.0643445700407028,0.9583780169487,0.224284708499908,-0.176657795906067,0.950916349887848,0.216000497341156,-0.221588909626007,0.868032217025757,-0.325686991214752,0.374764055013657,0.727981209754944,-0.439335405826569,0.526334285736084,0.766794741153717,-0.438713878393173,0.468567967414856,0.888508915901184,-0.317623943090439,0.331160038709641,0.542957842350006,-0.530088722705841,0.651308655738831,0.322585344314575,-0.604224741458893,0.72859525680542,0.357144892215729,-0.631978690624237,0.687786638736725,0.589996337890625,-0.546522974967957,0.594320476055145,0.357144892215729,-0.631978690624237,0.687786638736725,0.391105234622955,-0.649303913116455,0.652258515357971,0.621844053268433,-0.554872155189514,0.552654445171356,0.589996337890625,-0.546522974967957,0.594320476055145,0.899721622467041,-0.317192196846008,0.299816876649857,0.790132343769073,-0.438906788825989,0.427845329046249,0.803848683834076,-0.441196858882904,0.398964464664459,0.906161248683929,-0.320504575967789,0.275950461626053,0.961964786052704,-0.189853474497795,0.196416407823563, +0.964444279670715,-0.195160359144211,0.178212448954582,0.994987070560455,-0.0745266824960709,0.0666822418570518,0.995651662349701,-0.0596232861280441,0.0715734884142876,0.413879811763763,-0.662914872169495,0.623897016048431,0.426669001579285,-0.682175099849701,0.593793451786041,0.653650879859924,-0.573908030986786,0.493325620889664,0.641457378864288,-0.561520218849182,0.52271181344986,0.424600839614868,-0.704623341560364,0.568524360656738,0.413804322481155,-0.73187392950058,0.541411519050598,0.652212262153625,-0.6161128282547,0.441615611314774,0.657342314720154,-0.591103911399841,0.467436909675598,0.91002881526947,-0.327875137329102,0.253664344549179,0.812784194946289,-0.448714256286621,0.371533781290054,0.81583571434021,-0.461969554424286,0.347845017910004,0.910880446434021,-0.340157121419907,0.233644783496857,0.965418100357056,-0.204182729125023,0.162103101611137,0.965633869171143,-0.21521945297718,0.145711719989777,0.993054449558258,-0.108172349631786,0.0462775118649006,0.994104743003845,-0.0917156562209129,0.0578278452157974,0.390994995832443,-0.768842458724976,0.505968749523163,0.354242891073227,-0.82048761844635,0.448678016662598,0.607408165931702,-0.713105380535126,0.350051373243332,0.636303663253784,-0.656347632408142,0.405370742082596,0.908557891845703,-0.360577642917633,0.210965543985367,0.813098967075348,-0.484056383371353,0.323356628417969,0.803426444530487,-0.521454274654388,0.287387251853943,0.901891887187958,-0.394148826599121,0.176741883158684,0.803426444530487,-0.521454274654388,0.287387251853943,0.783328473567963,-0.575309276580811,0.235405400395393,0.888130664825439,-0.441388070583344,0.128063857555389,0.901891887187958,-0.394148826599121,0.176741883158684,0.323926389217377,-0.871468782424927,0.368257820606232,0.316047459840775,-0.913869798183441,0.254864424467087,0.556547999382019,-0.814582765102386,0.163429439067841,0.575161099433899,-0.772217273712158,0.269944906234741,0.964813470840454,-0.228931754827499,0.12932613492012,0.962370157241821,-0.249202132225037,0.1083604991436,0.989149570465088,-0.146321043372154,0.0131682241335511, +0.991648018360138,-0.1247563585639,0.0327129811048508,0.310984462499619,-0.940875351428986,0.134321168065071,0.317906528711319,-0.948105812072754,0.00556065933778882,0.512630224227905,-0.854865968227386,-0.0800901427865028,0.537055850028992,-0.841943383216858,0.0519852191209793,0.755456328392029,-0.633722126483917,0.16637921333313,0.727136492729187,-0.681854784488678,0.0796656310558319,0.833089470863342,-0.553030252456665,-0.0109372679144144,0.865404486656189,-0.496753484010696,0.0656588152050972,0.334278613328934,-0.935530662536621,-0.11419378221035,0.293178021907806,-0.930998980998993,-0.217456981539726,0.374991148710251,-0.863837838172913,-0.336401164531708,0.544152855873108,-0.802878081798553,-0.24348421394825,0.512630224227905,-0.854865968227386,-0.0800901427865028,0.647769629955292,-0.754077017307281,-0.108454771339893,0.695606052875519,-0.718350887298584,-0.010211649350822,0.537055850028992,-0.841943383216858,0.0519852191209793,0.888130664825439,-0.441388070583344,0.128063857555389,0.945518910884857,-0.324195951223373,0.0298477280884981,0.95680183172226,-0.280661940574646,0.0758895054459572,0.901891887187958,-0.394148826599121,0.176741883158684,0.925055325031281,-0.378651767969131,-0.0299264546483755,0.890910506248474,-0.442318201065063,-0.103116735816002,0.920559227466583,-0.339929193258286,-0.192403078079224,0.953888297080994,-0.275172114372253,-0.119905777275562,0.605347454547882,-0.704193413257599,-0.37103396654129,0.396194279193878,-0.791935384273529,-0.464616596698761,0.40015235543251,-0.687723636627197,-0.605734586715698,0.631275296211243,-0.598334193229675,-0.493444621562958,0.837167203426361,-0.513892352581024,-0.187258198857307,0.745830237865448,-0.604466557502747,-0.279924035072327,0.778698563575745,-0.501135766506195,-0.377480566501617,0.866479158401489,-0.414779663085938,-0.277797788381577,0.40015235543251,-0.687723636627197,-0.605734586715698,0.401973396539688,-0.547979474067688,-0.733577489852905,0.638168394565582,-0.476015567779541,-0.605103611946106,0.631275296211243,-0.598334193229675,-0.493444621562958, +0.778698563575745,-0.501135766506195,-0.377480566501617,0.788633465766907,-0.393670290708542,-0.472314476966858,0.875931322574615,-0.311253935098648,-0.368599146604538,0.866479158401489,-0.414779663085938,-0.277797788381577,0.920559227466583,-0.339929193258286,-0.192403078079224,0.928493082523346,-0.238844633102417,-0.284348130226135,0.961324214935303,-0.176067098975182,-0.211792781949043,0.953888297080994,-0.275172114372253,-0.119905777275562,0.973286747932434,-0.221125110983849,-0.0617775060236454,0.980478823184967,-0.12230146676302,-0.153960004448891,0.99074798822403,-0.0780425444245338,-0.11103019118309,0.983849942684174,-0.178103640675545,-0.0178398657590151,0.628257095813751,-0.138301327824593,-0.765614628791809,0.763396441936493,-0.160517677664757,-0.625667691230774,0.782234609127045,-0.286267995834351,-0.55331689119339,0.629420936107635,-0.332539588212967,-0.702315270900726,0.914074838161469,-0.1351498067379,-0.382363319396973,0.869150698184967,-0.0299054346978664,-0.493642359972,0.909271597862244,0.0326748825609684,-0.414918690919876,0.947341322898865,-0.0733457803726196,-0.311712592840195,0.416139543056488,0.0419656150043011,-0.908331871032715,0.408595353364944,-0.157618716359138,-0.899002909660339,0.0658390298485756,-0.16928043961525,-0.983366370201111,0.0484069362282753,0.0602640099823475,-0.99700802564621,0.967174530029297,-0.0185625571757555,-0.253433883190155,0.928876876831055,0.091436043381691,-0.358925074338913,0.938005447387695,0.140061780810356,-0.317062467336655,0.977281033992767,0.027188153937459,-0.210196629166603,0.596891164779663,0.180430635809898,-0.781770944595337,0.733133852481842,0.161153703927994,-0.66071492433548,0.804345428943634,0.0609059222042561,-0.591032087802887,0.661570012569427,0.0201353766024113,-0.749612987041473,0.596891164779663,0.180430635809898,-0.781770944595337,0.384987145662308,0.223548591136932,-0.895439028739929,0.347009241580963,0.385352432727814,-0.855036914348602,0.568586945533752,0.331547886133194,-0.752851128578186,0.859211921691895,0.205861747264862,-0.4683758020401, +0.742296576499939,0.322826832532883,-0.587178468704224,0.739390432834625,0.382857501506805,-0.553824722766876,0.863398969173431,0.260428875684738,-0.432109951972961,0.99074798822403,-0.0780425444245338,-0.11103019118309,0.995709300041199,-0.0445197373628616,-0.081123374402523,0.989149570465088,-0.146321043372154,0.0131682241335511,0.983849942684174,-0.178103640675545,-0.0178398657590151,0.981551349163055,0.0625413656234741,-0.180680707097054,0.940893530845642,0.177625566720963,-0.288389533758163,0.940521478652954,0.205804690718651,-0.270303159952164,0.98273104429245,0.0887446999549866,-0.162370294332504,0.997835278511047,-0.0208043027669191,-0.0623855441808701,0.998737096786499,-0.000725703546777368,-0.0502382442355156,0.993054449558258,-0.108172349631786,0.0462775118649006,0.991648018360138,-0.1247563585639,0.0327129811048508,0.862879574298859,0.301325768232346,-0.405760675668716,0.734146893024445,0.425861358642578,-0.528838753700256,0.729781150817871,0.455140888690948,-0.510163009166718,0.86042845249176,0.33050462603569,-0.387852519750595,0.934223353862762,0.258059114217758,-0.246235981583595,0.938315451145172,0.231052026152611,-0.257253170013428,0.856965005397797,0.355741590261459,-0.372905999422073,0.852206587791443,0.381751835346222,-0.35778421163559,0.998907446861267,0.0211974121630192,-0.0416497439146042,0.998242795467377,0.0461783446371555,-0.0371327959001064,0.994987070560455,-0.0745266824960709,0.0666822418570518,0.994104743003845,-0.0917156562209129,0.0578278452157974,0.912956714630127,0.329766064882278,-0.240342229604721,0.927215337753296,0.289327442646027,-0.237826347351074,0.845332860946655,0.409606158733368,-0.3429796397686,0.828931629657745,0.447074115276337,-0.336150348186493,0.9583780169487,0.224284708499908,-0.176657795906067,0.891241252422333,0.359081774950027,-0.277036875486374,0.877688348293304,0.354772418737411,-0.322179824113846,0.950916349887848,0.216000497341156,-0.221588909626007,0.70813661813736,0.554532289505005,-0.437077015638351,0.72131472826004,0.524516880512238,-0.452313154935837,0.539806127548218,0.629762411117554,-0.558577358722687, +0.52993369102478,0.651088953018188,-0.543372333049774,0.633333384990692,0.596297144889832,-0.493273377418518,0.675091624259949,0.585452079772949,-0.448884308338165,0.50523829460144,0.675825893878937,-0.536650240421295,0.460188359022141,0.699368059635162,-0.546910524368286,0.641277492046356,0.478991270065308,-0.599441826343536,0.545238554477692,0.599459826946259,-0.585971593856812,0.459563225507736,0.601365327835083,-0.653575837612152,0.575212597846985,0.470463961362839,-0.669174253940582,0.220906615257263,0.756115794181824,-0.616026818752289,0.227684542536736,0.765919506549835,-0.601271212100983,0.079546645283699,0.776551485061646,-0.625012040138245,0.115637883543968,0.774021089076996,-0.622510492801666,0.260280787944794,0.75838315486908,-0.597585737705231,0.291859865188599,0.73228508234024,-0.615285575389862,0.030710730701685,0.75297075510025,-0.657336950302124,0.0357582159340382,0.76894199848175,-0.638317704200745,0.02501180768013,0.748669922351837,-0.662470936775208,-0.0550067648291588,0.736840128898621,-0.673825681209564,-0.144441992044449,0.660929799079895,-0.736415803432465,-0.043760783970356,0.67898815870285,-0.732843816280365,0.724304854869843,0.50189471244812,-0.472741097211838,0.726764321327209,0.47911348938942,-0.492203235626221,0.540794849395752,0.587495982646942,-0.601987898349762,0.541990637779236,0.607744932174683,-0.580424249172211,0.311585783958435,0.715845286846161,-0.624883830547333,0.314248204231262,0.701721549034119,-0.639401912689209,0.00808423385024071,0.725178420543671,-0.688513576984406,0.0314251929521561,0.740115284919739,-0.671745300292969,-0.0950275585055351,0.566764056682587,-0.818381488323212,-0.268036127090454,0.528617858886719,-0.805431485176086,-0.344202220439911,0.345681339502335,-0.872942924499512,-0.153429970145226,0.393673598766327,-0.906355559825897,0.030710730701685,0.75297075510025,-0.657336950302124,-0.245551437139511,0.718372702598572,-0.650880217552185,-0.180764004588127,0.72567230463028,-0.663870573043823,0.0357582159340382,0.76894199848175,-0.638317704200745,-0.815178871154785,0.327907800674438,-0.477451324462891, +-0.643880188465118,0.496044784784317,-0.582544207572937,-0.702799379825592,0.502638339996338,-0.503415942192078,-0.866371512413025,0.34406977891922,-0.361962050199509,-0.554136395454407,0.0203292444348335,-0.832177519798279,-0.737373828887939,-0.0310200806707144,-0.674772322177887,-0.696719408035278,-0.197553753852844,-0.689604699611664,-0.540803551673889,-0.169442445039749,-0.823905825614929,-0.702799379825592,0.502638339996338,-0.503415942192078,-0.724820792675018,0.488296508789063,-0.486005514860153,-0.829212605953217,0.381767690181732,-0.408239871263504,-0.866371512413025,0.34406977891922,-0.361962050199509,-0.578065812587738,0.571437358856201,-0.582493960857391,-0.340204417705536,0.666487157344818,-0.663367033004761,-0.402748823165894,0.637026369571686,-0.657260000705719,-0.71201080083847,0.47688302397728,-0.515386581420898,-0.0314447619020939,0.69211483001709,-0.721102178096771,0.306264072656631,0.663350999355316,-0.682764887809753,0.307068943977356,0.640687167644501,-0.703724980354309,-0.0308281201869249,0.671379804611206,-0.740472018718719,-0.0314447619020939,0.69211483001709,-0.721102178096771,-0.417861640453339,0.622978270053864,-0.6612788438797,-0.402748823165894,0.637026369571686,-0.657260000705719,-0.018482843413949,0.708283305168152,-0.705686271190643,-0.0245084930211306,0.64429098367691,-0.764387726783752,0.314256936311722,0.61147153377533,-0.726185321807861,0.323250979185104,0.567481637001038,-0.757280230522156,-0.0187444761395454,0.60321980714798,-0.797354638576508,-0.408084720373154,0.607455492019653,-0.681516528129578,-0.405181378126144,0.584523916244507,-0.702965021133423,-0.703363239765167,0.444451421499252,-0.55474591255188,-0.704760134220123,0.461420625448227,-0.538891673088074,-0.0166043490171432,0.532554030418396,-0.846233129501343,0.3338443338871,0.495575189590454,-0.801843702793121,0.347009241580963,0.385352432727814,-0.855036914348602,-0.00743909925222397,0.420722603797913,-0.907158851623535,-0.409162431955338,0.548035323619843,-0.729550182819366,-0.415800601243973,0.486775487661362,-0.768218338489532, +-0.717322111129761,0.36833444237709,-0.591420948505402,-0.708066523075104,0.415172398090363,-0.571203887462616,-0.421808391809464,0.389350086450577,-0.818830966949463,-0.406554967164993,0.250838577747345,-0.87851756811142,-0.716885149478912,0.193425044417381,-0.669822633266449,-0.724259316921234,0.29660776257515,-0.622472763061523,-0.37541264295578,0.0646031200885773,-0.924603521823883,-0.341657280921936,-0.153093323111534,-0.927271664142609,-0.658147633075714,-0.119798928499222,-0.743296682834625,-0.691006660461426,0.0536962784826756,-0.720851182937622,-0.717322111129761,0.36833444237709,-0.591420948505402,-0.876546919345856,0.24255383014679,-0.415732085704803,-0.873201966285706,0.272477895021439,-0.404071718454361,-0.708066523075104,0.415172398090363,-0.571203887462616,-0.716885149478912,0.193425044417381,-0.669822633266449,-0.877733767032623,0.130273178219795,-0.461099058389664,-0.879667341709137,0.196900233626366,-0.432915419340134,-0.724259316921234,0.29660776257515,-0.622472763061523,-0.867424070835114,0.0367090962827206,-0.496213614940643,-0.852758765220642,-0.0831268876791,-0.515647649765015,-0.929832100868225,-0.0626992583274841,-0.362603008747101,-0.933542311191559,0.0222881771624088,-0.357773661613464,-0.580949723720551,-0.464185059070587,-0.668602764606476,-0.283675044775009,-0.557315707206726,-0.780338168144226,-0.267184793949127,-0.707894921302795,-0.653832614421844,-0.535548329353333,-0.610554158687592,-0.583447992801666,-0.267184793949127,-0.707894921302795,-0.653832614421844,-0.270238667726517,-0.824600636959076,-0.496995866298676,-0.515997290611267,-0.73488438129425,-0.440104246139526,-0.535548329353333,-0.610554158687592,-0.583447992801666,-0.835047483444214,-0.209874138236046,-0.508574962615967,-0.809317827224731,-0.334098935127258,-0.483096987009048,-0.91071605682373,-0.251231551170349,-0.327839821577072,-0.924772799015045,-0.152741327881813,-0.348518788814545,0.0430959016084671,-0.975415349006653,-0.216119304299355,-0.196505293250084,-0.948624968528748,-0.247984245419502,-0.266667097806931,-0.890563011169434,-0.368491649627686, +0.0667621940374374,-0.915768027305603,-0.396120697259903,-0.622719347476959,-0.778302788734436,-0.0804065987467766,-0.321859627962112,-0.946779608726501,0.00383359636180103,-0.327003836631775,-0.932535529136658,0.153121083974838,-0.646524131298065,-0.75988781452179,0.0676540806889534,-0.515997290611267,-0.73488438129425,-0.440104246139526,-0.727853536605835,-0.575738370418549,-0.372497618198395,-0.77514123916626,-0.450169444084167,-0.44328710436821,-0.535548329353333,-0.610554158687592,-0.583447992801666,-0.961361408233643,0.00672297505661845,-0.27520740032196,-0.962268829345703,-0.0581866018474102,-0.26580622792244,-0.979235470294952,-0.0511173829436302,-0.196175694465637,-0.975809037685394,-0.00775173911824822,-0.218487158417702,-0.937841892242432,0.0865924581885338,-0.336086750030518,-0.965153098106384,0.0525701828300953,-0.25635102391243,-0.968387186527252,0.0771231725811958,-0.237230196595192,-0.939928293228149,0.129181504249573,-0.315985530614853,-0.962187588214874,-0.122896865010262,-0.243086993694305,-0.953022539615631,-0.20731158554554,-0.220839008688927,-0.97369784116745,-0.177088499069214,-0.143361046910286,-0.979972839355469,-0.101066254079342,-0.171577647328377,-0.924704253673553,-0.331576824188232,-0.187026351690292,-0.832968950271606,-0.534916579723358,-0.141516700387001,-0.862593770027161,-0.505231440067291,-0.0259434469044209,-0.948109328746796,-0.302053302526474,-0.0992600098252296,-0.98866331577301,-0.0825416371226311,-0.125426605343819,-0.98369961977005,-0.156531363725662,-0.0885036587715149,-0.988251030445099,-0.144525244832039,-0.0497235842049122,-0.992979526519775,-0.0694925487041473,-0.0957209765911102,-0.979235470294952,-0.0511173829436302,-0.196175694465637,-0.987172782421112,-0.0306289494037628,-0.156690150499344,-0.980257153511047,0.0154890529811382,-0.197119429707527,-0.975809037685394,-0.00775173911824822,-0.218487158417702,-0.959132432937622,-0.281308948993683,-0.0305021833628416,-0.871350526809692,-0.48614302277565,0.066433273255825,-0.868027806282043,-0.4756098985672,0.142558544874191, +-0.962441504001617,-0.270519137382507,0.0229311026632786,-0.653223097324371,-0.733468353748322,0.18794609606266,-0.338471829891205,-0.897227048873901,0.283584892749786,-0.318086922168732,-0.862951040267944,0.392601728439331,-0.643077254295349,-0.709993004798889,0.286986976861954,-0.962232112884521,-0.265070706605911,0.0620222389698029,-0.859543204307556,-0.469230562448502,0.202504530549049,-0.847881615161896,-0.468448668718338,0.248299449682236,-0.960773766040802,-0.262095183134079,0.0906642004847527,-0.988251030445099,-0.144525244832039,-0.0497235842049122,-0.990276455879211,-0.137116804718971,-0.0234831012785435,-0.99521666765213,-0.0610512346029282,-0.076266810297966,-0.992979526519775,-0.0694925487041473,-0.0957209765911102,0.121886290609837,-0.796136319637299,0.592714726924896,-0.214072972536087,-0.789665639400482,0.574979186058044,-0.244178518652916,-0.80964869260788,0.533709466457367,0.0973178744316101,-0.826116859912872,0.555031716823578,-0.318086922168732,-0.862951040267944,0.392601728439331,-0.281205296516418,-0.834069550037384,0.474606961011887,-0.617830097675323,-0.696017861366272,0.365848451852798,-0.643077254295349,-0.709993004798889,0.286986976861954,-0.958480954170227,-0.2610904276371,0.114656709134579,-0.835339248180389,-0.469291567802429,0.286310464143753,-0.822051048278809,-0.471668988466263,0.318999230861664,-0.955572426319122,-0.261624395847321,0.135772123932838,-0.952653765678406,-0.262061268091202,0.154190644621849,-0.812737941741943,-0.469397723674774,0.345141768455505,-0.806780338287354,-0.46191880106926,0.368424147367477,-0.950035333633423,-0.260532796382904,0.171917483210564,-0.531385600566864,-0.658237874507904,0.53324681520462,-0.186398461461067,-0.747945785522461,0.637050032615662,-0.182807892560959,-0.726442694664001,0.662466943264008,-0.524181425571442,-0.642627060413361,0.558806300163269,-0.947377622127533,-0.257856458425522,0.189698785543442,-0.801837027072906,-0.452406466007233,0.390366286039352,-0.818417012691498,-0.373486369848251,0.436693787574768,-0.940586507320404,-0.221211418509483,0.257609218358994, +-0.520392119884491,-0.625280499458313,0.581563651561737,-0.186929672956467,-0.705357849597931,0.683759868144989,-0.204335987567902,-0.659367442131042,0.72352010011673,-0.543345808982849,-0.566555798053741,0.619507730007172,-0.578344762325287,-0.523539006710052,0.625639140605927,-0.219719171524048,-0.633464992046356,0.741920232772827,-0.240964815020561,-0.62697434425354,0.740836679935455,-0.447567373514175,-0.578831672668457,0.681643068790436,-0.240964815020561,-0.62697434425354,0.740836679935455,-0.260909587144852,-0.579563319683075,0.772031486034393,-0.230417415499687,-0.589602887630463,0.774129331111908,-0.447567373514175,-0.578831672668457,0.681643068790436,-0.578344762325287,-0.523539006710052,0.625639140605927,-0.839525520801544,-0.332665979862213,0.429569810628891,-0.818417012691498,-0.373486369848251,0.436693787574768,-0.543345808982849,-0.566555798053741,0.619507730007172,-0.922896564006805,-0.219059616327286,0.316661804914474,-0.98156726360321,-0.112370327115059,0.154592126607895,-0.987251818180084,-0.126403361558914,0.0967267975211143,-0.940586507320404,-0.221211418509483,0.257609218358994,-0.247674569487572,-0.592890083789825,0.766249775886536,-0.254184544086456,-0.666435301303864,0.700895309448242,-0.269309669733047,-0.612241268157959,0.743392944335938,-0.245313540101051,-0.590383350849152,0.768939971923828,-0.283683657646179,-0.743323624134064,0.605799973011017,-0.250744044780731,-0.850114226341248,0.463069438934326,-0.223242849111557,-0.753953337669373,0.617832481861115,-0.248487085103989,-0.599471211433411,0.760847151279449,-0.987251818180084,-0.126403361558914,0.0967267975211143,-0.989906668663025,-0.12827755510807,0.0602465718984604,-0.947377622127533,-0.257856458425522,0.189698785543442,-0.940586507320404,-0.221211418509483,0.257609218358994,-0.952653765678406,-0.262061268091202,0.154190644621849,-0.991292595863342,-0.127188116312027,0.0340903587639332,-0.991652309894562,-0.127122908830643,0.0215761531144381,-0.955572426319122,-0.261624395847321,0.135772123932838,-0.999247491359711,-0.0249399412423372,0.0297044180333614, +-0.999453604221344,0.0174932815134525,-0.0280454829335213,-0.998328685760498,-0.00283233472146094,-0.057722520083189,-0.998536765575409,-0.0538738816976547,-0.00469217775389552,-0.998505115509033,-0.0525358617305756,-0.0150875132530928,-0.997724652290344,6.05597379035316e-05,-0.0674206838011742,-0.997070074081421,0.0024189492687583,-0.0764552056789398,-0.998370885848999,-0.05101403221488,-0.0255536492913961,-0.957691788673401,0.17285044491291,-0.230106845498085,-0.982116937637329,0.0972262471914291,-0.16122430562973,-0.985484778881073,0.10607735067606,-0.132541477680206,-0.968631088733673,0.170138478279114,-0.181126326322556,-0.994657158851624,0.0667804479598999,-0.0787238553166389,-0.987275242805481,0.109797686338425,-0.115030311048031,-0.985484778881073,0.10607735067606,-0.132541477680206,-0.993704259395599,0.0520858727395535,-0.0991911217570305,-0.958480954170227,-0.2610904276371,0.114656709134579,-0.991651237010956,-0.128671705722809,0.00845177844166756,-0.99124002456665,-0.131941825151443,-0.00587113155052066,-0.960773766040802,-0.262095183134079,0.0906642004847527,-0.998134613037109,-0.0498636998236179,-0.035224799066782,-0.996392071247101,0.00406589824706316,-0.084771491587162,-0.995700299739838,0.00447451323270798,-0.0925258994102478,-0.997764945030212,-0.0499648228287697,-0.0443698726594448,-0.977473735809326,0.152812570333481,-0.145579650998116,-0.956439673900604,0.210897386074066,-0.201854556798935,-0.930841267108917,0.260436236858368,-0.256334811449051,-0.968631088733673,0.170138478279114,-0.181126326322556,-0.930841267108917,0.260436236858368,-0.256334811449051,-0.900543808937073,0.28319463133812,-0.329881399869919,-0.957691788673401,0.17285044491291,-0.230106845498085,-0.968631088733673,0.170138478279114,-0.181126326322556,-0.932286620140076,0.229391738772392,-0.279680013656616,-0.906107068061829,0.203487575054169,-0.370894551277161,-0.815178871154785,0.327907800674438,-0.477451324462891,-0.866371512413025,0.34406977891922,-0.361962050199509,-0.990095794200897,0.0522689782083035,-0.130301043391228,-0.976868152618408,0.10864632576704,-0.184185907244682, +-0.974820911884308,0.110324420034885,-0.193785145878792,-0.988936364650726,0.05348164960742,-0.138363942503929,-0.884227097034454,0.302752107381821,-0.355645298957825,-0.876102864742279,0.308748841285706,-0.37029430270195,-0.947197496891022,0.188203901052475,-0.259607672691345,-0.951921045780182,0.182818129658699,-0.245812818408012,-0.65726774930954,-0.351282507181168,-0.666783094406128,-0.610036253929138,-0.460801362991333,-0.64460676908493,-0.452102899551392,-0.498666942119598,-0.739549994468689,-0.503585398197174,-0.352859079837799,-0.788601458072662,-0.331973016262054,-0.284388482570648,-0.899398148059845,-0.331608682870865,-0.445981115102768,-0.831346273422241,-0.284562438726425,-0.404397904872894,-0.869187355041504,-0.252328366041183,-0.241920799016953,-0.936912298202515,-0.550896883010864,-0.525933682918549,-0.648001909255981,-0.527204096317291,-0.612429201602936,-0.589055359363556,-0.438000053167343,-0.635713934898376,-0.635628581047058,-0.415487825870514,-0.567078769207001,-0.711190223693848,-0.349887073040009,-0.536685883998871,-0.767819762229919,-0.389668703079224,-0.602210998535156,-0.696778476238251,-0.371910065412521,-0.572470486164093,-0.730725944042206,-0.325535744428635,-0.501727342605591,-0.801433861255646,-0.516454994678497,-0.677501976490021,-0.523703455924988,-0.502862811088562,-0.723091781139374,-0.473568767309189,-0.455420255661011,-0.71868896484375,-0.525431752204895,-0.448892265558243,-0.681523680686951,-0.577945709228516,-0.455420255661011,-0.71868896484375,-0.525431752204895,-0.436919927597046,-0.679874777793884,-0.588957667350769,-0.416544318199158,-0.64534467458725,-0.640328764915466,-0.448892265558243,-0.681523680686951,-0.577945709228516,-0.502279460430145,-0.763205528259277,-0.406488239765167,-0.492681473493576,-0.787114083766937,-0.371101528406143,-0.465778231620789,-0.779828310012817,-0.418232440948486,-0.467377811670303,-0.755487024784088,-0.459126502275467,-0.470318824052811,-0.702146053314209,-0.534594178199768,-0.469042629003525,-0.737256765365601,-0.486262798309326,-0.484330028295517,-0.750629007816315,-0.44942232966423, +-0.501340508460999,-0.718519926071167,-0.482065171003342,-0.541132092475891,-0.72664874792099,-0.423270285129547,-0.520403146743774,-0.748185157775879,-0.411581665277481,-0.583867728710175,-0.733967185020447,-0.346973747014999,-0.58302116394043,-0.726785063743591,-0.363138943910599,-0.398564070463181,-0.8384929895401,-0.371586084365845,-0.421863317489624,-0.852864623069763,-0.307657718658447,-0.375865340232849,-0.891984939575195,-0.251173287630081,-0.315400958061218,-0.888113856315613,-0.334329187870026,-0.375865340232849,-0.891984939575195,-0.251173287630081,-0.336590021848679,-0.930226445198059,-0.146239146590233,-0.234354108572006,-0.939100742340088,-0.251332372426987,-0.315400958061218,-0.888113856315613,-0.334329187870026,-0.234354108572006,-0.939100742340088,-0.251332372426987,-0.154667109251022,-0.929468989372253,-0.334911108016968,-0.251545965671539,-0.896880567073822,-0.363771587610245,-0.315400958061218,-0.888113856315613,-0.334329187870026,-0.52540647983551,-0.802496433258057,-0.282749801874161,-0.446565479040146,-0.822087049484253,-0.353202819824219,-0.403087824583054,-0.858154773712158,-0.31794747710228,-0.497740417718887,-0.82726001739502,-0.260567456483841,-0.618852555751801,-0.722240746021271,-0.308852195739746,-0.620568931102753,-0.726473689079285,-0.295178204774857,-0.648885846138,-0.719097018241882,-0.248690024018288,-0.645516037940979,-0.716913878917694,-0.263331472873688,-0.114206820726395,-0.895859360694885,-0.429409831762314,-0.121380843222141,-0.900714457035065,-0.417109459638596,-0.0111613115295768,-0.902023434638977,-0.4315425157547,-0.00373929319903255,-0.886215269565582,-0.463258534669876,-0.391027927398682,-0.88114321231842,-0.265864372253418,-0.398784339427948,-0.87615180015564,-0.270793616771698,-0.259092777967453,-0.894549131393433,-0.364215224981308,-0.253324866294861,-0.895827174186707,-0.365130573511124,-0.616051256656647,-0.787498354911804,0.0180911235511303,-0.610153436660767,-0.792122006416321,-0.0159816462546587,-0.525209903717041,-0.838167548179626,-0.147070378065109,-0.523414254188538,-0.84218430519104,-0.129472643136978, +-0.251545965671539,-0.896880567073822,-0.363771587610245,-0.372382044792175,-0.869452953338623,-0.324627697467804,-0.403087824583054,-0.858154773712158,-0.31794747710228,-0.315400958061218,-0.888113856315613,-0.334329187870026,-0.663620412349701,-0.697485029697418,0.270411968231201,-0.661904454231262,-0.720592439174652,0.206467926502228,-0.651470363140106,-0.751649379730225,0.103002496063709,-0.658726215362549,-0.736504077911377,0.153757899999619,-0.488100230693817,-0.838716745376587,-0.241479307413101,-0.571285963058472,-0.807904422283173,-0.144647032022476,-0.566215753555298,-0.801503837108612,-0.192331075668335,-0.497740417718887,-0.82726001739502,-0.260567456483841,-0.604302823543549,-0.678694903850555,0.417362421751022,-0.620982706546783,-0.706097900867462,0.340303391218185,-0.651659727096558,-0.700043082237244,0.292026400566101,-0.644486367702484,-0.673507630825043,0.361973643302917,-0.605080187320709,-0.749416708946228,-0.268798321485519,-0.57799232006073,-0.78216940164566,-0.232671022415161,-0.621909260749817,-0.763468146324158,-0.174199402332306,-0.640718340873718,-0.735740482807159,-0.219467222690582,-0.667743563652039,-0.71110874414444,-0.220097497105598,-0.672990739345551,-0.711468696594238,-0.202226966619492,-0.692147254943848,-0.704308092594147,-0.157741159200668,-0.686576902866364,-0.705039620399475,-0.177570477128029,-0.622758805751801,-0.780623733997345,-0.0528965219855309,-0.650058686733246,-0.759272754192352,0.0304749011993408,-0.64468914270401,-0.763040602207184,-0.0463125295937061,-0.615273773670197,-0.779519855976105,-0.117417588829994,0.697559654712677,-0.470335394144058,0.540550768375397,0.659939110279083,-0.463738322257996,0.591123580932617,0.568780958652496,-0.483123123645782,0.66564267873764,0.597104489803314,-0.479072153568268,0.64339417219162,-0.69724315404892,-0.702437520027161,-0.142945751547813,-0.701043605804443,-0.701861321926117,-0.12620835006237,-0.728603780269623,-0.68262904882431,-0.0561620481312275,-0.732806026935577,-0.675643503665924,-0.0806298330426216,-0.668519377708435,-0.724181294441223,-0.169243603944778, +-0.65203332901001,-0.749282121658325,-0.11588329821825,-0.672702848911285,-0.73766702413559,-0.0576041862368584,-0.689681887626648,-0.71403181552887,-0.120405852794647,-0.66126537322998,-0.742161691188812,0.109197497367859,-0.653439521789551,-0.739978134632111,0.159527629613876,-0.659766137599945,-0.74774569272995,0.0747328475117683,-0.661277234554291,-0.749762892723083,0.0238371193408966,-0.696477949619293,-0.71231997013092,-0.0867099910974503,-0.677562713623047,-0.735331237316132,-0.0140205984935164,-0.69608336687088,-0.714668154716492,0.0686835572123528,-0.720623970031738,-0.693292081356049,-0.0068796188570559,-0.997222781181335,-0.0518197081983089,-0.0534919276833534,-0.994957327842712,0.00305879395455122,-0.100252836942673,-0.994039237499237,-0.000213257895666175,-0.109022423624992,-0.996447622776031,-0.0553836040198803,-0.0634411051869392,-0.942123293876648,0.183465525507927,-0.280613571405411,-0.973289847373962,0.10803160816431,-0.202573418617249,-0.974820911884308,0.110324420034885,-0.193785145878792,-0.943807065486908,0.189060479402542,-0.271080404520035,-0.99521666765213,-0.0610512346029282,-0.076266810297966,-0.992728412151337,-0.00594411976635456,-0.120228804647923,-0.990605771541595,-0.0153664480894804,-0.135882541537285,-0.992979526519775,-0.0694925487041473,-0.0957209765911102,-0.872825384140015,0.302739083766937,-0.382785677909851,-0.871357083320618,0.292229920625687,-0.394130051136017,-0.942123293876648,0.183465525507927,-0.280613571405411,-0.943807065486908,0.189060479402542,-0.271080404520035,-0.985166132450104,0.042403120547533,-0.166282147169113,-0.970319330692291,0.0932745859026909,-0.223114937543869,-0.968387186527252,0.0771231725811958,-0.237230196595192,-0.983104288578033,0.0312387645244598,-0.180361151695251,-0.107038833200932,0.989974200725555,-0.0921613797545433,-0.107019260525703,0.989985048770905,-0.092067152261734,-0.107018046081066,0.989985883235931,-0.0920599550008774,-0.107036903500557,0.989975214004517,-0.0921529829502106,-0.107094265520573,0.989955365657806,-0.0922994017601013,-0.107097037136555,0.989955008029938,-0.0923005566000938, +-0.107064686715603,0.9899622797966,-0.0922596752643585,-0.107061982154846,0.989963471889496,-0.0922499746084213,-0.107138961553574,0.989935338497162,-0.0924631804227829,-0.107097037136555,0.989955008029938,-0.0923005566000938,-0.107094265520573,0.989955365657806,-0.0922994017601013,-0.107103392481804,0.989954113960266,-0.0923032313585281,-0.107135243713856,0.989937245845795,-0.092446468770504,-0.107073880732059,0.98998761177063,-0.0919778421521187,-0.106932997703552,0.989998042583466,-0.0920276492834091,-0.10707925260067,0.989998817443848,-0.0918501317501068,-0.107124336063862,0.989992439746857,-0.0918659046292305,-0.107411466538906,0.989953994750977,-0.0919449850916862,-0.107003882527351,0.990023672580719,-0.0916692987084389,-0.107126139104366,0.990009009838104,-0.091685488820076,-0.107312828302383,0.989968597888947,-0.0919031798839569,-0.107177205383778,0.989993333816528,-0.0917950496077538,-0.107163138687611,0.98999559879303,-0.0917864590883255,-0.107307374477386,0.989969789981842,-0.0918962806463242,-0.10706052929163,0.990016222000122,-0.0916835442185402,-0.107093043625355,0.990021049976349,-0.0915940701961517,-0.107096195220947,0.990020930767059,-0.0915903970599174,-0.107059940695763,0.99001681804657,-0.0916783139109612,-0.107005886733532,0.989995419979095,-0.091971255838871,-0.107006460428238,0.989994883537292,-0.0919769331812859,-0.107000380754471,0.990003705024719,-0.0918888971209526,-0.107000239193439,0.990004181861877,-0.0918842256069183,-0.10799815505743,0.990077912807465,-0.0899000093340874,-0.108019188046455,0.990075051784515,-0.089907631278038,-0.107959434390068,0.990078985691071,-0.0899362564086914,-0.107963420450687,0.990078687667847,-0.0899340659379959,-0.107059940695763,0.99001681804657,-0.0916783139109612,-0.107163138687611,0.98999559879303,-0.0917864590883255,-0.107177205383778,0.989993333816528,-0.0917950496077538,-0.10706052929163,0.990016222000122,-0.0916835442185402,-0.107541523873806,0.990025699138641,-0.0910162255167961,-0.109075948596001,0.989931344985962,-0.0902130231261253,-0.108972206711769,0.989937603473663,-0.090269923210144, +-0.107461728155613,0.990030765533447,-0.0910553634166718,-0.107541523873806,0.990025699138641,-0.0910162255167961,-0.107461728155613,0.990030765533447,-0.0910553634166718,-0.106734529137611,0.990071773529053,-0.091464638710022,-0.106734089553356,0.990071952342987,-0.091462068259716,-0.106734529137611,0.990071773529053,-0.091464638710022,-0.106915928423405,0.990045785903931,-0.0915325880050659,-0.106921173632145,0.990045189857483,-0.0915331095457077,-0.106734089553356,0.990071952342987,-0.091462068259716,-0.107019260525703,0.989985048770905,-0.092067152261734,-0.107006460428238,0.989994883537292,-0.0919769331812859,-0.107005886733532,0.989995419979095,-0.091971255838871,-0.107018046081066,0.989985883235931,-0.0920599550008774,-0.503585398197174,-0.352859079837799,-0.788601458072662,-0.331973016262054,-0.284388482570648,-0.899398148059845,-0.334897965192795,-0.0841053500771523,-0.938493251800537,-0.540803551673889,-0.169442445039749,-0.823905825614929,-0.109818838536739,0.989841938018799,-0.0902928560972214,-0.109809882938862,0.989844262599945,-0.0902778133749962,-0.109888762235641,0.98981761932373,-0.0904731899499893,-0.109893307089806,0.989815056324005,-0.0904964506626129,-0.109856687486172,0.98972487449646,-0.0915213748812675,-0.109852366149426,0.989722311496735,-0.0915538743138313,-0.109897971153259,0.989754736423492,-0.0911486744880676,-0.109900765120983,0.989757478237152,-0.091115228831768,-0.108003661036491,0.989871621131897,-0.0921374633908272,-0.10800912976265,0.989868104457855,-0.0921679884195328,-0.108000427484512,0.989871978759766,-0.0921369567513466,-0.10759498924017,0.989970266819,-0.0915537923574448,-0.107944779098034,0.989896833896637,-0.0919355005025864,-0.10759498924017,0.989970266819,-0.0915537923574448,-0.107986785471439,0.989882528781891,-0.0920400246977806,-0.108004041016102,0.990075886249542,-0.0899156555533409,-0.10801162570715,0.990077257156372,-0.0898921340703964,-0.10799815505743,0.990077912807465,-0.0899000093340874,-0.108005911111832,0.990075409412384,-0.089918278157711,-0.107180185616016,0.989861965179443,-0.0931960940361023, +-0.10717298835516,0.989863276481628,-0.0931921526789665,-0.107036232948303,0.989878177642822,-0.0931905210018158,-0.107074946165085,0.989874005317688,-0.0931901708245277,-0.108019061386585,0.989826023578644,-0.0926078334450722,-0.107895828783512,0.989824295043945,-0.0927701368927956,-0.108048900961876,0.989826679229736,-0.0925667211413383,0.344172745943069,0.864676892757416,-0.365894764661789,0.345265358686447,0.865078568458557,-0.363910585641861,0.318278849124908,0.856025397777557,-0.407331734895706,0.317088454961777,0.855661451816559,-0.409021198749542,0.383118450641632,0.882473826408386,-0.272873938083649,0.383835911750793,0.882915914058685,-0.270424604415894,0.367173701524734,0.874080717563629,-0.318066418170929,0.366243064403534,0.873652756214142,-0.320307493209839,0.400983572006226,0.899228751659393,-0.174928158521652,0.401173621416092,0.899661958217621,-0.172244250774384,0.395171403884888,0.891475737094879,-0.221609115600586,0.394705891609192,0.891032159328461,-0.224207550287247,0.397901654243469,0.914198994636536,-0.0769049152731895,0.397529929876328,0.914580702781677,-0.0742444023489952,0.401912122964859,0.907388806343079,-0.122931867837906,0.40200611948967,0.906976640224457,-0.125635862350464,0.375137686729431,0.926817536354065,0.0167623292654753,0.374279260635376,0.927117884159088,0.0191643293946981,0.388232618570328,0.921174168586731,-0.0267132818698883,0.388863086700439,0.920830547809601,-0.0292710345238447,0.334840625524521,0.936707079410553,0.102281838655472,0.333652794361115,0.9369136095047,0.104252547025681,0.355971723794937,0.932374000549316,0.0629517957568169,0.357018560171127,0.932119905948639,0.0607479400932789,0.279792159795761,0.943668723106384,0.176651209592819,0.278476774692535,0.943785130977631,0.178102001547813,0.307692676782608,0.940719664096832,0.142729490995407,0.308970868587494,0.94055962562561,0.141012787818909,0.213098749518394,0.947668731212616,0.237724125385284,0.211865603923798,0.947712242603302,0.23865157365799,0.246400997042656,0.946113109588623,0.210134640336037,0.247700706124306,0.946036040782928,0.208950385451317, +0.13799062371254,0.948796391487122,0.284154951572418,0.137024939060211,0.948793053627014,0.28463289141655,0.175278082489967,0.948598086833954,0.26351323723793,0.176397949457169,0.948581755161285,0.26282411813736,0.0575856268405914,0.947232782840729,0.3153315782547,0.0570277199149132,0.947213470935822,0.315490931272507,0.0974859073758125,0.948321998119354,0.301963537931442,0.0982614457607269,0.948337078094482,0.301664113998413,-0.0252192430198193,0.943214237689972,0.331226319074631,-0.0252890102565289,0.943209886550903,0.331233352422714,0.0159947089850903,0.945498585700989,0.32523313164711,0.0163150131702423,0.94551420211792,0.325171917676926,-0.147697061300278,0.933230042457581,0.327516853809357,-0.107407636940479,0.937042713165283,0.332286775112152,-0.107848577201366,0.93700385093689,0.33225354552269,-0.148383259773254,0.933160483837128,0.327404677867889,-0.225506812334061,0.92430567741394,0.30790513753891,-0.187139898538589,0.928974032402039,0.319352477788925,-0.188056319952011,0.92886883020401,0.319120079278946,-0.226632371544838,0.924160540103912,0.307514280080795,-0.263894081115723,0.919067025184631,0.292704373598099,-0.262585490942001,0.919255495071411,0.293288558721542,-0.225506812334061,0.92430567741394,0.30790513753891,-0.226632371544838,0.924160540103912,0.307514280080795,-0.333658218383789,0.907840728759766,0.253963381052017,-0.332080900669098,0.908122479915619,0.255021125078201,-0.298177778720856,0.913851141929626,0.27561953663826,-0.299638569355011,0.913616597652435,0.27481135725975,-0.395784914493561,0.895423471927643,0.203890204429626,-0.394091963768005,0.895800769329071,0.205505281686783,-0.364116072654724,0.902095854282379,0.231608748435974,-0.365773379802704,0.901765644550323,0.230279326438904,-0.448742270469666,0.882061719894409,0.143518000841141,-0.447108745574951,0.882528781890869,0.145728260278702,-0.421814471483231,0.889269769191742,0.176838576793671,-0.423500716686249,0.888846158981323,0.174927487969398,-0.50638473033905,0.861413776874542,0.0392530336976051,-0.489592045545578,0.868565022945404,0.0767759457230568, +-0.490978598594666,0.868023991584778,0.0739888325333595,-0.507577836513519,0.860844910144806,0.0362043157219887,-0.530009686946869,0.847003221511841,-0.0409318506717682,-0.519927203655243,0.854210615158081,-5.29503522557206e-05,-0.520883917808533,0.853620886802673,-0.00333814113400877,-0.530689656734467,0.846401751041412,-0.0444150492548943,-0.538952171802521,0.832806050777435,-0.126351609826088,-0.536419212818146,0.839848101139069,-0.0831236690282822,-0.536788105964661,0.839244306087494,-0.0867607071995735,-0.538982748985291,0.832210302352905,-0.130090549588203,-0.531642496585846,0.819339096546173,-0.214568763971329,-0.537416398525238,0.825945556163788,-0.170287013053894,-0.537090599536896,0.825369238853455,-0.174066811800003,-0.530953645706177,0.818792700767517,-0.218327164649963,-0.506853699684143,0.807205855846405,-0.302519679069519,-0.521487832069397,0.813064515590668,-0.258798182010651,-0.520441174507141,0.812559366226196,-0.26246589422226,-0.505469381809235,0.806751072406769,-0.306028574705124,-0.464006036520004,0.797069907188416,-0.386494398117065,-0.487692624330521,0.80184531211853,-0.345253646373749,-0.486004769802094,0.801449656486511,-0.348536670207977,-0.462061583995819,0.796739459037781,-0.389493674039841,-0.403431802988052,0.789610087871552,-0.462340474128723,-0.435866802930832,0.792963683605194,-0.425709635019302,-0.433728188276291,0.792702436447144,-0.428372263908386,-0.401171505451202,0.789418935775757,-0.46462807059288,-0.32664281129837,0.785444319248199,-0.525720059871674,-0.36691877245903,0.787082970142365,-0.495853900909424,-0.364615231752396,0.786959111690521,-0.497745990753174,-0.32438325881958,0.785382390022278,-0.5272096991539,-0.107879936695099,0.9898322224617,-0.0927044898271561,-0.107894316315651,0.989830255508423,-0.0927088484168053,-0.107895828783512,0.989824295043945,-0.0927701368927956,-0.107920631766319,0.989850103855133,-0.0924662053585052,-0.107920631766319,0.989850103855133,-0.0924662053585052,-0.107899360358715,0.989865064620972,-0.0923300161957741,-0.107894897460938,0.989863574504852,-0.0923524722456932, +-0.107983537018299,0.989871799945831,-0.0921592339873314,-0.107976980507374,0.989871621131897,-0.0921687707304955,-0.107965506613255,0.989873051643372,-0.0921673402190208,-0.107920631766319,0.989850103855133,-0.0924662053585052,-0.107919104397297,0.989817976951599,-0.0928109586238861,-0.107840746641159,0.98981785774231,-0.0929032117128372,-0.107895828783512,0.989824295043945,-0.0927701368927956,-0.107916206121445,0.98981899023056,-0.0928035750985146,-0.107878148555756,0.989810764789581,-0.0929352715611458,-0.107719071209431,0.989820003509521,-0.0930221453309059,-0.107812136411667,0.989816308021545,-0.0929524302482605,-0.236452713608742,0.785041153430939,-0.572538554668427,-0.282999277114868,0.784750878810883,-0.551432251930237,-0.280866622924805,0.784741938114166,-0.552534222602844,-0.234526976943016,0.785073578357697,-0.573285818099976,-0.10768336802721,0.989820778369904,-0.093054324388504,-0.107719071209431,0.989820003509521,-0.0930221453309059,-0.107878148555756,0.989810764789581,-0.0929352715611458,-0.136877104640007,0.788646459579468,-0.599417567253113,-0.187544658780098,0.786337852478027,-0.588642418384552,-0.185896128416061,0.786397635936737,-0.589085221290588,-0.13556244969368,0.788718521595001,-0.5996213555336,-0.0329080745577812,0.796230673789978,-0.604097366333008,-0.0851039588451385,0.791954636573792,-0.604619860649109,-0.084161676466465,0.792023420333862,-0.604661643505096,-0.0323587507009506,0.796280682086945,-0.604061245918274,0.0191588792949915,0.801440834999084,-0.597767114639282,0.0190019030123949,0.801423668861389,-0.597795188426971,-0.0329080745577812,0.796230673789978,-0.604097366333008,-0.0323587507009506,0.796280682086945,-0.604061245918274,-0.107678711414337,0.989819884300232,-0.0930693596601486,-0.107565961778164,0.989827692508698,-0.0931160971522331,-0.107548594474792,0.989829421043396,-0.0931188464164734,-0.107670865952969,0.989821076393127,-0.0930656939744949,0.118588678538799,0.814191162586212,-0.568356871604919,0.119134701788425,0.814272224903107,-0.568126499652863,0.0699145942926407,0.807465314865112,-0.585757434368134, +0.0697000771760941,0.807437837123871,-0.58582079410553,-0.107499539852142,0.989832282066345,-0.0931436344981194,-0.107439897954464,0.989836454391479,-0.0931688100099564,-0.107548594474792,0.989829421043396,-0.0931188464164734,-0.107565961778164,0.989827692508698,-0.0931160971522331,0.250198632478714,0.838252127170563,-0.484493672847748,0.20987306535244,0.829779386520386,-0.517126202583313,0.208842813968658,0.829577803611755,-0.51786607503891,0.249036207795143,0.837990880012512,-0.485543429851532,-0.106986679136753,0.989874124526978,-0.093290239572525,-0.107181660830975,0.989860475063324,-0.0932112038135529,-0.107281170785427,0.989851474761963,-0.0931923091411591,-0.107192076742649,0.989857256412506,-0.0932325422763824,0.297875821590424,0.552506446838379,0.778464257717133,0.376475304365158,0.558091700077057,0.739459216594696,0.377085626125336,0.558131575584412,0.739118158817291,0.298506200313568,0.552554666996002,0.778188586235046,-0.108003377914429,0.989859700202942,-0.0922665372490883,-0.107976980507374,0.989871621131897,-0.0921687707304955,-0.107983537018299,0.989871799945831,-0.0921592339873314,-0.108007170259953,0.989863336086273,-0.0922221168875694,-0.107999138534069,0.989869475364685,-0.0921662002801895,-0.108000427484512,0.989871978759766,-0.0921369567513466,-0.108007170259953,0.989863336086273,-0.0922221168875694,-0.107983537018299,0.989871799945831,-0.0921592339873314,-0.107375904917717,0.989961624145508,-0.0919033214449883,-0.10739778727293,0.989956974983215,-0.0919286757707596,-0.107392452657223,0.989956676959991,-0.0919382870197296,-0.10716987401247,0.990003228187561,-0.0916972011327744,-0.107220984995365,0.989996075630188,-0.0917134508490562,-0.107228733599186,0.989994764328003,-0.0917188078165054,-0.107294678688049,0.989981234073639,-0.0917882993817329,-0.107728898525238,0.989890873432159,-0.0922524705529213,-0.107673421502113,0.989902079105377,-0.0921968445181847,-0.107478924095631,0.98993968963623,-0.0920195430517197,-0.107411466538906,0.989953994750977,-0.0919449850916862,-0.10716987401247,0.990003228187561,-0.0916972011327744, +-0.107143811881542,0.990007936954498,-0.0916753038764,-0.107220984995365,0.989996075630188,-0.0917134508490562,-0.106932997703552,0.989998042583466,-0.0920276492834091,-0.106931231915951,0.989993572235107,-0.0920787006616592,-0.106918290257454,0.989994525909424,-0.0920830294489861,-0.10801162570715,0.990077257156372,-0.0898921340703964,-0.108019188046455,0.990075051784515,-0.089907631278038,-0.10799815505743,0.990077912807465,-0.0899000093340874,-0.107411466538906,0.989953994750977,-0.0919449850916862,-0.106968976557255,0.990028500556946,-0.0916573405265808,-0.107003882527351,0.990023672580719,-0.0916692987084389,-0.109386615455151,0.98989063501358,-0.0902830883860588,-0.110407553613186,0.989734470844269,-0.0907511711120605,-0.109489105641842,0.989869177341461,-0.0903946533799171,-0.109916716814041,0.98978865146637,-0.0907566323876381,-0.109916530549526,0.98978590965271,-0.0907864049077034,-0.109893307089806,0.989815056324005,-0.0904964506626129,-0.109888762235641,0.98981761932373,-0.0904731899499893,-0.107390835881233,0.989955067634583,-0.0919572412967682,-0.107373677194118,0.989956498146057,-0.0919624343514442,-0.107375904917717,0.989961624145508,-0.0919033214449883,-0.107392452657223,0.989956676959991,-0.0919382870197296,-0.107312828302383,0.989968597888947,-0.0919031798839569,-0.107307374477386,0.989969789981842,-0.0918962806463242,-0.107124336063862,0.989992439746857,-0.0918659046292305,-0.10707925260067,0.989998817443848,-0.0918501317501068,-0.109900765120983,0.989757478237152,-0.091115228831768,-0.109897971153259,0.989754736423492,-0.0911486744880676,-0.109916530549526,0.98978590965271,-0.0907864049077034,-0.109916716814041,0.98978865146637,-0.0907566323876381,-0.107064686715603,0.9899622797966,-0.0922596752643585,-0.107038833200932,0.989974200725555,-0.0921613797545433,-0.107036903500557,0.989975214004517,-0.0921529829502106,-0.107061982154846,0.989963471889496,-0.0922499746084213,-0.109756670892239,0.989453136920929,-0.0945309102535248,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109753221273422,0.989453315734863,-0.0945327877998352, +0.520573794841766,0.565736174583435,0.639488399028778,0.521135866641998,0.565757989883423,0.639011144638062,0.451531618833542,0.562548577785492,0.692573726177216,0.450943827629089,0.562517464160919,0.692981898784637,0.131274804472923,0.538069486618042,0.832615256309509,0.215874791145325,0.545811474323273,0.80962198972702,0.216521680355072,0.545867562294006,0.809411466121674,0.131937608122826,0.538133263587952,0.832469284534454,-0.106932997703552,0.989998042583466,-0.0920276492834091,-0.107147127389908,0.989972531795502,-0.0920547246932983,-0.106931231915951,0.989993572235107,-0.0920787006616592,-0.0424683168530464,0.519746005535126,0.853264629840851,0.0448841154575348,0.529353618621826,0.847213208675385,0.0455602146685123,0.529424905776978,0.847132444381714,-0.0417802818119526,0.519824683666229,0.853250622749329,0.738248407840729,0.566173255443573,0.366656720638275,0.738647222518921,0.566149652004242,0.365889370441437,0.694496929645538,0.567932903766632,0.441730916500092,0.694046556949615,0.567943751811981,0.442424386739731,-0.216678485274315,0.498235374689102,0.839530766010284,-0.129937827587128,0.509340226650238,0.850699007511139,-0.12923863530159,0.509426414966583,0.850753784179688,-0.215969741344452,0.498329401016235,0.839657664299011,0.803626656532288,0.558968365192413,0.20430015027523,0.803893387317657,0.558916389942169,0.203390911221504,0.775225698947906,0.563132107257843,0.286194533109665,0.774888336658478,0.563169479370117,0.287033557891846,-0.301134914159775,0.486637800931931,0.820061862468719,-0.301849365234375,0.486536234617233,0.819859445095062,-0.216678485274315,0.498235374689102,0.839530766010284,-0.215969741344452,0.498329401016235,0.839657664299011,0.840135395526886,0.539515018463135,-0.0556411258876324,0.83649879693985,0.547053933143616,0.0316532775759697,0.83640444278717,0.547137200832367,0.0326880477368832,0.840142488479614,0.539615213871002,-0.0545530132949352,0.821900904178619,0.521603524684906,-0.228929489850998,0.835254728794098,0.531000554561615,-0.14278618991375,0.835373163223267,0.531117379665375,-0.141655117273331, +0.822139084339142,0.521737098693848,-0.22776660323143,-0.610002756118774,0.436259746551514,0.66149377822876,-0.610686480998993,0.436130493879318,0.660947978496552,-0.539799630641937,0.449031382799149,0.712030291557312,-0.539097607135773,0.449154436588287,0.712484419345856,0.77038162946701,0.500485002994537,-0.395002216100693,0.800208270549774,0.511402606964111,-0.313263595104218,0.800573945045471,0.511552751064301,-0.312081933021545,0.770880818367004,0.500651359558105,-0.393815726041794,-0.788361668586731,0.39798304438591,0.469143331050873,-0.735575735569,0.410483807325363,0.538916766643524,-0.734956979751587,0.410623073577881,0.539654552936554,-0.787791967391968,0.398125439882278,0.469978660345078,0.687541842460632,0.476936668157578,-0.547555923461914,0.732705533504486,0.488957196474075,-0.473353445529938,0.733341991901398,0.489138305187225,-0.472179085016251,0.688317358493805,0.477131336927414,-0.546411097049713,-0.888274788856506,0.368193536996841,0.274593025445938,-0.846174538135529,0.38226717710495,0.371295750141144,-0.845787227153778,0.382390141487122,0.372050881385803,-0.887752711772919,0.368387818336487,0.276017308235168,0.636222064495087,0.464747071266174,-0.615817844867706,0.63530820608139,0.464540779590607,-0.616916000843048,0.687541842460632,0.476936668157578,-0.547555923461914,0.688317358493805,0.477131336927414,-0.546411097049713,-0.918395280838013,0.355669140815735,0.173348098993301,-0.888274788856506,0.368193536996841,0.274593025445938,-0.887752711772919,0.368387818336487,0.276017308235168,-0.917930364608765,0.355879962444305,0.175366029143333,0.512845754623413,0.439309239387512,-0.737561166286469,0.51166707277298,0.439085513353348,-0.738512635231018,0.576492428779602,0.451885133981705,-0.680776238441467,0.577542006969452,0.452101439237595,-0.679742276668549,-0.94186395406723,0.334926784038544,-0.0267612226307392,-0.937169194221497,0.343481719493866,0.0611077137291431,-0.937038064002991,0.343612343072891,0.0623727552592754,-0.941857635974884,0.335048198699951,-0.0254365261644125,0.367882043123245,0.413780957460403,-0.832735300064087, +0.366472691297531,0.413550049066544,-0.833471119403839,0.441439777612686,0.426265746355057,-0.789574801921844,0.442739516496658,0.426494538784027,-0.788723170757294,-0.925325095653534,0.320882767438889,-0.202008962631226,-0.937901675701141,0.327368527650833,-0.114761650562286,-0.938029944896698,0.327478528022766,-0.113391548395157,-0.925596296787262,0.32097864151001,-0.200609549880028,0.206814378499985,0.389137774705887,-0.897663414478302,0.205228418111801,0.388911217451096,-0.898125469684601,0.287485331296921,0.401059597730637,-0.869772017002106,0.288991957902908,0.401289999485016,-0.869166254997253,-0.904684484004974,0.315605908632278,-0.286249846220016,-0.904264330863953,0.315525949001312,-0.287662118673325,-0.925325095653534,0.320882767438889,-0.202008962631226,-0.925596296787262,0.32097864151001,-0.200609549880028,-0.0531955249607563,0.355676561594009,-0.933094024658203,0.034069649875164,0.366109371185303,-0.929947972297668,0.0357608087360859,0.366319268941879,-0.92980170249939,-0.0514820925891399,0.355873882770538,-0.933114886283875,-0.838323593139648,0.308442145586014,-0.449529707431793,-0.837597370147705,0.308400899171829,-0.450909823179245,-0.874923050403595,0.311349660158157,-0.370905786752701,-0.875496089458466,0.311411142349243,-0.369499385356903,-0.226916715502739,0.337247014045715,-0.91365921497345,-0.140471771359444,0.346024423837662,-0.927650094032288,-0.138757616281509,0.346206456422806,-0.927840173244476,-0.225222587585449,0.337411403656006,-0.914017617702484,-0.741560757160187,0.3062604367733,-0.596902072429657,-0.740535616874695,0.306264013051987,-0.598171651363373,-0.792653262615204,0.306699007749557,-0.526912093162537,-0.793531715869904,0.306718677282333,-0.525576889514923,-0.393999606370926,0.32264843583107,-0.860617399215698,-0.311694413423538,0.329429447650909,-0.891247808933258,-0.310042023658752,0.329574048519135,-0.891770601272583,-0.392409175634384,0.322771370410919,-0.861297607421875,-0.546582281589508,0.312545627355576,-0.776893138885498,-0.616891324520111,0.309211641550064,-0.723763346672058, +-0.618183434009552,0.309159785509109,-0.722682237625122,-0.547989547252655,0.312469780445099,-0.775931835174561,-0.546582281589508,0.312545627355576,-0.776893138885498,-0.547989547252655,0.312469780445099,-0.775931835174561,-0.473019987344742,0.316977232694626,-0.822056949138641,-0.471512198448181,0.31707701086998,-0.822884261608124,0.457787960767746,0.543580055236816,0.703527510166168,0.544459104537964,0.546156346797943,0.636614084243774,0.544852375984192,0.546163976192474,0.636271119117737,0.458177894353867,0.543595254421234,0.703261852264404,0.691074788570404,0.545440256595612,0.474247425794601,0.69142097234726,0.54542750120163,0.473757237195969,0.622980833053589,0.546777665615082,0.559400737285614,0.622602820396423,0.54677951335907,0.559819519519806,0.264036059379578,0.532751560211182,0.804027736186981,0.363863587379456,0.539090692996979,0.759594976902008,0.364233165979385,0.539111316204071,0.759403228759766,0.264369457960129,0.532775163650513,0.803902626037598,0.795146524906158,0.536967813968658,0.281793415546417,0.79538357257843,0.536931753158569,0.281192749738693,0.749175548553467,0.542132198810577,0.380563735961914,0.74887752532959,0.542156457901001,0.381115198135376,0.0525339655578136,0.514931738376617,0.855619966983795,0.159755617380142,0.524658977985382,0.836188435554504,0.160040244460106,0.524682939052582,0.836118996143341,0.0527567379176617,0.514953315258026,0.855593323707581,0.850530922412872,0.521201014518738,0.0703325942158699,0.850620031356812,0.52114337682724,0.0696801170706749,0.829369187355042,0.529901623725891,0.177062273025513,0.829203009605408,0.529949009418488,0.177697420120239,-0.164539933204651,0.491154581308365,0.855391025543213,-0.0560879074037075,0.50370866060257,0.862050950527191,-0.0559315979480743,0.503725707530975,0.862051069736481,-0.164455160498619,0.491164892911911,0.855401396751404,-0.271242797374725,0.477450579404831,0.835744202136993,-0.271257609128952,0.477448582649231,0.835740506649017,-0.164539933204651,0.491154581308365,0.855391025543213,-0.164455160498619,0.491164892911911,0.855401396751404, +-0.4735067486763,0.447365134954453,0.758719921112061,-0.473398059606552,0.447382897138596,0.758777141571045,-0.374708563089371,0.462786227464676,0.803381860256195,-0.374760985374451,0.46277841925621,0.80336195230484,-0.651054441928864,0.415209114551544,0.635397136211395,-0.65086829662323,0.41524663567543,0.635563313961029,-0.565893411636353,0.431460291147232,0.702571451663971,-0.566047966480255,0.431432336568832,0.702464163303375,-0.848965048789978,0.367199599742889,0.380029797554016,-0.793445467948914,0.382884234189987,0.473121464252472,-0.793646812438965,0.38283172249794,0.472826212644577,-0.849150359630585,0.367142349481583,0.37967112660408,0.761157631874084,0.456605076789856,-0.460598409175873,0.815463244915009,0.475859224796295,-0.329511523246765,0.815465092658997,0.475859969854355,-0.32950559258461,0.761403799057007,0.456681877374649,-0.4601149559021,-0.924411356449127,0.337957948446274,0.17677129805088,-0.892837643623352,0.352152317762375,0.280766159296036,-0.892991483211517,0.352092683315277,0.280351549386978,-0.924521446228027,0.337898224592209,0.176309585571289,0.639562010765076,0.424699902534485,-0.640773296356201,0.705867946147919,0.440868854522705,-0.554423153400421,0.706145763397217,0.440941840410233,-0.554011225700378,0.639854252338409,0.424766540527344,-0.640437304973602,-0.94894927740097,0.312962472438812,-0.0393673814833164,-0.943213522434235,0.324826687574387,0.0695398896932602,-0.943269729614258,0.32476943731308,0.0690444260835648,-0.948945105075836,0.312909841537476,-0.0398819595575333,0.563493251800537,0.408391386270523,-0.718116819858551,0.563204944133759,0.408333092927933,-0.718376159667969,0.639562010765076,0.424699902534485,-0.640773296356201,0.639854252338409,0.424766540527344,-0.640437304973602,-0.941454708576202,0.302480816841125,-0.148890599608421,-0.941521644592285,0.302526950836182,-0.148372679948807,-0.94894927740097,0.312962472438812,-0.0393673814833164,-0.948945105075836,0.312909841537476,-0.0398819595575333,0.385174244642258,0.376007944345474,-0.842768490314484,0.384943872690201,0.375970155000687,-0.842890679836273, +0.477912843227386,0.392009526491165,-0.786083817481995,0.478181034326553,0.392058253288269,-0.78589653968811,-0.887538015842438,0.286504954099655,-0.36081999540329,-0.887722671031952,0.286534070968628,-0.360342413187027,-0.921020328998566,0.293673247098923,-0.255885690450668,-0.920892000198364,0.293635189533234,-0.256390750408173,0.181615322828293,0.345695614814758,-0.920603215694427,0.181497275829315,0.345679700374603,-0.920632541179657,0.285648256540298,0.360449641942978,-0.88796454668045,0.285828202962875,0.360476434230804,-0.887895822525024,-0.784555435180664,0.277786731719971,-0.554352998733521,-0.78482186794281,0.277797043323517,-0.553970634937286,-0.842106640338898,0.281212896108627,-0.460190862417221,-0.841875314712524,0.281193256378174,-0.460625946521759,-0.144559130072594,0.307966113090515,-0.940350770950317,-0.0352002009749413,0.319243669509888,-0.94701874256134,-0.0352216027677059,0.319241315126419,-0.947018682956696,-0.144650161266327,0.307957351207733,-0.940339624881744,-0.638387501239777,0.276858508586884,-0.718199729919434,-0.638678133487701,0.276853173971176,-0.717943370342255,-0.71668142080307,0.276335626840591,-0.640317320823669,-0.716394543647766,0.276333779096603,-0.640639245510101,-0.357276886701584,0.290114343166351,-0.88779890537262,-0.252446234226227,0.298208951950073,-0.920512020587921,-0.252600967884064,0.298195958137512,-0.920473635196686,-0.35748553276062,0.290099680423737,-0.887719631195068,-0.357276886701584,0.290114343166351,-0.88779890537262,-0.35748553276062,0.290099680423737,-0.887719631195068,-0.457753747701645,0.283790439367294,-0.842570185661316,-0.457501500844955,0.283804386854172,-0.842702507972717,-0.929017126560211,0.341513156890869,0.142464190721512,-0.942855834960938,0.330710887908936,0.0406589470803738,-0.942622661590576,0.331003129482269,0.0435819625854492,-0.928450107574463,0.341838628053665,0.145350635051727,-0.935419082641602,0.312829941511154,-0.164707615971565,-0.935850560665131,0.313044846057892,-0.161823153495789,-0.945101201534271,0.321360021829605,-0.0592575334012508, +-0.945000171661377,0.321105122566223,-0.0621790736913681,-0.867112576961517,0.366131842136383,0.337732434272766,-0.903663516044617,0.353367120027542,0.241917297244072,-0.902766227722168,0.353722423315048,0.244731411337852,-0.865893304347992,0.366513103246689,0.340436398983002,-0.881755888462067,0.300671577453613,-0.363460063934326,-0.882821023464203,0.300799638032913,-0.360758394002914,-0.91499799489975,0.306160658597946,-0.262762755155563,-0.91424435377121,0.305988162755966,-0.265572190284729,-0.762497007846832,0.393702119588852,0.51341700553894,-0.819851875305176,0.379637598991394,0.428623616695404,-0.818324029445648,0.380039423704147,0.43117955327034,-0.760675728321075,0.394119828939438,0.515792548656464,-0.784666478633881,0.294848889112473,-0.545309782028198,-0.786306858062744,0.294884979724884,-0.54292219877243,-0.839732885360718,0.297025620937347,-0.454559803009033,-0.838370680809021,0.296942889690399,-0.457120925188065,-0.620616316795349,0.422766387462616,0.660381555557251,-0.695793092250824,0.408139914274216,0.591010749340057,-0.69370037317276,0.408567905426025,0.593171119689941,-0.618274867534637,0.423199862241745,0.662297606468201,-0.571641504764557,0.298474341630936,-0.764290034770966,-0.651390671730042,0.295620769262314,-0.69878363609314,-0.649258434772491,0.2956782579422,-0.700740933418274,-0.569302082061768,0.298577725887299,-0.765993714332581,-0.535382211208344,0.437828421592712,0.72226870059967,-0.537942051887512,0.437395691871643,0.720627009868622,-0.620616316795349,0.422766387462616,0.660381555557251,-0.618274867534637,0.423199862241745,0.662297606468201,-0.392794400453568,0.308980315923691,-0.866166114807129,-0.485063701868057,0.302947103977203,-0.820326924324036,-0.482545495033264,0.303095519542694,-0.821755945682526,-0.39012798666954,0.309171766042709,-0.867302179336548,-0.351624637842178,0.466301262378693,0.811740815639496,-0.354524493217468,0.465887248516083,0.81071662902832,-0.448858082294464,0.45183277130127,0.770956218242645,-0.446110635995865,0.452259063720703,0.772299885749817,-0.196010634303093,0.32538378238678,-0.925043344497681, +-0.296022474765778,0.316491603851318,-0.901223540306091,-0.293240249156952,0.316723883152008,-0.902051091194153,-0.193146899342537,0.325654268264771,-0.925550520420074,-0.152000114321709,0.492494761943817,0.856939136981964,-0.15509133040905,0.492121815681458,0.856599450111389,-0.256170362234116,0.479376047849655,0.83938992023468,-0.253155440092087,0.4797722697258,0.840077996253967,0.00848180614411831,0.346830785274506,-0.937889456748962,-0.0940675139427185,0.335541129112244,-0.937317132949829,-0.0911585092544556,0.335846573114395,-0.937495231628418,0.0114004462957382,0.347167640924454,-0.937733769416809,-0.1385827511549,0.822417795658112,-0.551746129989624,-0.137453153729439,0.82256406545639,-0.551810562610626,-0.102740220725536,0.826851069927216,-0.552957236766815,-0.104121215641499,0.826686680316925,-0.552944719791412,0.113201782107353,0.359470725059509,-0.926264643669128,0.110308825969696,0.359106212854385,-0.926754951477051,0.00848180614411831,0.346830785274506,-0.937889456748962,0.0114004462957382,0.347167640924454,-0.937733769416809,0.249943345785141,0.532553911209106,0.808649957180023,0.151245638728142,0.524309456348419,0.837988317012787,0.154312148690224,0.524582147598267,0.837258279323578,0.252918243408203,0.532784879207611,0.80757212638855,0.309236377477646,0.386369556188583,-0.868960022926331,0.306510001420975,0.38596385717392,-0.870105445384979,0.210082948207855,0.372207880020142,-0.904061079025269,0.212909132242203,0.37259516119957,-0.903240025043488,0.434464871883392,0.544649600982666,0.717354297637939,0.34476500749588,0.539362609386444,0.768261194229126,0.347605526447296,0.539548218250275,0.766849517822266,0.437132894992828,0.544787585735321,0.71562647819519,0.486788958311081,0.415150344371796,-0.76856142282486,0.48437312245369,0.414723336696625,-0.770316243171692,0.398339092731476,0.400196969509125,-0.82532924413681,0.400927066802979,0.400615930557251,-0.823871493339539,0.593936145305634,0.550398886203766,0.586771547794342,0.517882525920868,0.54834657907486,0.656592488288879,0.520343005657196,0.548434674739838,0.654570460319519, +0.596152544021606,0.550435781478882,0.584484875202179,0.697001814842224,0.458146750926971,-0.551624953746796,0.634676873683929,0.443887889385223,-0.632573008537292,0.636649549007416,0.444314062595367,-0.63028758764267,0.698708951473236,0.458564043045044,-0.549112796783447,0.663566827774048,0.550769090652466,0.506292879581451,0.661623120307922,0.550783693790436,0.50881427526474,0.593936145305634,0.550398886203766,0.586771547794342,0.596152544021606,0.550435781478882,0.584484875202179,0.791927099227905,0.485105901956558,-0.370841979980469,0.749646186828613,0.471942961215973,-0.464004993438721,0.751061797142029,0.472345918416977,-0.461297631263733,0.793029725551605,0.485489338636398,-0.367972761392593,0.769847571849823,0.546454966068268,0.329729914665222,0.768523514270782,0.546570718288422,0.332614123821259,0.720073878765106,0.549501061439514,0.423724234104156,0.721718490123749,0.549435377120972,0.421002805233002,0.843352794647217,0.508825063705444,-0.172780528664589,0.823301255702972,0.497458636760712,-0.273331433534622,0.824073255062103,0.497816562652588,-0.270336866378784,0.843780279159546,0.509152233600616,-0.16970206797123,0.833691537380219,0.535701632499695,0.13409760594368,0.833053410053253,0.535912394523621,0.137186080217361,0.806344091892242,0.542022824287415,0.236686438322067,0.807331025600433,0.541858196258545,0.233679920434952,0.848588228225708,0.528069138526917,0.0322642102837563,0.851821303367615,0.519069075584412,-0.0704820975661278,0.851895809173584,0.519361615180969,-0.0673581063747406,0.848305583000183,0.528322875499725,0.0353917554020882,0.250198632478714,0.838252127170563,-0.484493672847748,0.249036207795143,0.837990880012512,-0.485543429851532,0.285260230302811,0.84672600030899,-0.449089735746384,0.286475777626038,0.847042381763458,-0.447717249393463,-0.13449028134346,-0.656905591487885,0.741881012916565,-0.102034099400043,-0.653832256793976,0.749728262424469,-0.14632111787796,-0.584464251995087,0.798117637634277,-0.186330661177635,-0.592158198356628,0.78398323059082,-0.205184370279312,-0.665700018405914,0.717455744743347, +-0.170162871479988,-0.659661173820496,0.732046246528625,-0.229851886630058,-0.598201870918274,0.767673492431641,-0.276363015174866,-0.60367214679718,0.747798919677734,-0.372959643602371,-0.61766117811203,0.692384243011475,-0.241164639592171,-0.677877128124237,0.694494187831879,-0.22932593524456,-0.672872722148895,0.703314900398254,-0.327763140201569,-0.607410490512848,0.723618507385254,-0.395584255456924,-0.638837099075317,0.659848809242249,-0.248119860887527,-0.680859386920929,0.689105927944183,-0.241164639592171,-0.677877128124237,0.694494187831879,-0.372959643602371,-0.61766117811203,0.692384243011475,-0.426441729068756,-0.67831015586853,0.598366737365723,-0.270258545875549,-0.674371719360352,0.687155842781067,-0.257052272558212,-0.681294560432434,0.685391783714294,-0.40829735994339,-0.663861036300659,0.626563549041748,-0.479769468307495,-0.661267995834351,0.576667785644531,-0.309386759996414,-0.636144578456879,0.706823706626892,-0.288425266742706,-0.658069610595703,0.695525109767914,-0.451989978551865,-0.678381443023682,0.579226732254028,0.404854506254196,-0.536928415298462,0.740135550498962,0.403514444828033,-0.513169825077057,0.757517576217651,0.568780958652496,-0.483123123645782,0.66564267873764,0.542803764343262,-0.499212235212326,0.675389647483826,0.373246133327484,-0.564352214336395,0.736338198184967,0.396445780992508,-0.55454295873642,0.731650829315186,0.511453092098236,-0.504644155502319,0.695521295070648,0.478391766548157,-0.503834545612335,0.719230234622955,0.444082170724869,-0.495073944330215,0.746788442134857,0.341375857591629,-0.57038414478302,0.747077226638794,0.373246133327484,-0.564352214336395,0.736338198184967,0.478391766548157,-0.503834545612335,0.719230234622955,0.344740986824036,-0.487214148044586,0.802356481552124,0.279871642589569,-0.582894206047058,0.762827754020691,0.310550421476364,-0.576273918151855,0.755954205989838,0.401788800954819,-0.485980302095413,0.776137173175812,0.228518217802048,-0.511639416217804,0.828253924846649,0.203304156661034,-0.600077569484711,0.773675918579102,0.243788719177246,-0.590774953365326,0.769124209880829, +0.283904045820236,-0.500032186508179,0.818148016929626,0.120851531624794,-0.529502272605896,0.839656054973602,0.115875475108624,-0.617684483528137,0.777842283248901,0.160694688558578,-0.609311699867249,0.776476919651031,0.175832226872444,-0.520594954490662,0.835502207279205,-0.142115145921707,0.4426549077034,0.88535875082016,-0.129498288035393,0.449331849813461,0.883929312229156,-0.129439741373062,0.449352592229843,0.883927404880524,-0.142022699117661,0.442715287208557,0.885343253612518,0.374746948480606,-0.402288675308228,0.835301458835602,0.376294523477554,-0.408364534378052,0.831649541854858,0.389737367630005,-0.45616814494133,0.800009548664093,0.387571454048157,-0.449182152748108,0.804999232292175,0.33545908331871,-0.347694575786591,0.875543117523193,0.36286598443985,-0.365580171346664,0.857134401798248,0.362189143896103,-0.363851934671402,0.85815554857254,0.336131721735001,-0.347691297531128,0.875286340713501,0.191410139203072,-0.41156068444252,0.891055464744568,0.275308102369308,-0.365780264139175,0.889050245285034,0.277618706226349,-0.364765644073486,0.888748526573181,0.194080993533134,-0.40991947054863,0.891234338283539,0.102638758718967,-0.466817110776901,0.878377556800842,0.0985837206244469,-0.469343274831772,0.877495348453522,0.191410139203072,-0.41156068444252,0.891055464744568,0.194080993533134,-0.40991947054863,0.891234338283539,-0.345908284187317,-0.585310220718384,0.733320772647858,-0.348484545946121,-0.58061558008194,0.735828936100006,-0.329651266336441,-0.610939085483551,0.719780147075653,-0.506681323051453,-0.665714621543884,0.547812044620514,-0.378723710775375,-0.526250123977661,0.761333703994751,-0.379608720541,-0.524753034114838,0.761926174163818,-0.365768373012543,-0.549157798290253,0.751424729824066,-0.364027261734009,-0.552314579486847,0.749955177307129,-0.384821593761444,-0.503874361515045,0.77331954240799,-0.384495586156845,-0.50361955165863,0.773647487163544,-0.386684477329254,-0.51061600446701,0.767949402332306,-0.386523246765137,-0.51110315322876,0.767706573009491,-0.312127858400345,-0.503364443778992,0.805729746818542, +-0.351426392793655,-0.495471268892288,0.794359922409058,-0.352177768945694,-0.495419353246689,0.79405951499939,-0.312185913324356,-0.503348052501678,0.805717468261719,-0.179413139820099,-0.534563839435577,0.825864672660828,-0.252297610044479,-0.51984566450119,0.816153407096863,-0.253031969070435,-0.519649982452393,0.81605064868927,-0.183005928993225,-0.534025013446808,0.825424790382385,0.876205682754517,0.00848840177059174,0.481862634420395,0.829477071762085,0.105159044265747,0.5485520362854,0.829682290554047,0.104772992432117,0.548315405845642,0.876416504383087,0.00799667742103338,0.481487601995468,0.0150686772540212,0.860455572605133,0.509302794933319,0.0165698751807213,0.860370218753815,0.509400248527527,-0.0183371845632792,0.864737868309021,0.501888573169708,-0.0190402548760176,0.864888906478882,0.501602113246918,0.0787874758243561,0.849741220474243,0.521279692649841,0.0797037333250046,0.849310398101807,0.521842002868652,0.0519830845296383,0.857025921344757,0.512644350528717,0.0505380220711231,0.85721492767334,0.512472927570343,0.109650552272797,0.819549977779388,0.562418580055237,0.110430426895618,0.81831169128418,0.564066469669342,0.0975135788321495,0.836043953895569,0.539927363395691,0.0969039350748062,0.836755096912384,0.538934528827667,0.139439672231674,0.778484642505646,0.611979007720947,0.140107274055481,0.777526080608368,0.613044083118439,0.124958917498589,0.798008918762207,0.589548110961914,0.123736567795277,0.799558460712433,0.587703585624695,0.133920088410378,0.711525976657867,0.689779818058014,0.133945107460022,0.709952354431152,0.691394448280334,0.139290168881416,0.735013782978058,0.663590908050537,0.139610081911087,0.73565798997879,0.662809550762177,0.14206574857235,0.686476230621338,0.713139355182648,0.143175393342972,0.684859275817871,0.714470863342285,0.133945107460022,0.709952354431152,0.691394448280334,0.133920088410378,0.711525976657867,0.689779818058014,0.159694463014603,0.638714253902435,0.752689719200134,0.159634470939636,0.638495743274689,0.752887725830078,0.157263353466988,0.661720156669617,0.7330721616745, +0.156720414757729,0.662725389003754,0.732279777526855,0.12560373544693,0.553501665592194,0.823322415351868,0.132071301341057,0.582419753074646,0.802087545394897,0.131870001554489,0.581847012042999,0.802536249160767,0.125519454479218,0.552620410919189,0.823926985263824,0.0644150152802467,0.474510878324509,0.877889573574066,0.0877187624573708,0.493840932846069,0.865116477012634,0.0844381079077721,0.490957498550415,0.867081940174103,0.0607060119509697,0.471675366163254,0.879680097103119,0.014785997569561,0.45401406288147,0.890871822834015,0.0387581437826157,0.459295123815536,0.887437701225281,0.0353095307946205,0.458231300115585,0.888131320476532,0.0118501605466008,0.453808307647705,0.891020596027374,-0.0367528423666954,0.438093811273575,0.898177623748779,-0.00991799309849739,0.449439167976379,0.893255829811096,-0.0120444055646658,0.448758214712143,0.893572092056274,-0.0374768301844597,0.437710464000702,0.898334562778473,-0.0805282071232796,0.425983816385269,0.901139795780182,-0.06037662550807,0.427349418401718,0.902068197727203,-0.0603338368237019,0.427365481853485,0.902063548564911,-0.0802847221493721,0.4259073138237,0.901197671890259,-0.117041379213333,0.446848064661026,0.886920571327209,-0.117219790816307,0.446946918964386,0.886847198009491,-0.099933885037899,0.435843974351883,0.89445686340332,-0.0996300280094147,0.435626924037933,0.894596517086029,-0.129439741373062,0.449352592229843,0.883927404880524,-0.129498288035393,0.449331849813461,0.883929312229156,-0.117219790816307,0.446946918964386,0.886847198009491,-0.117041379213333,0.446848064661026,0.886920571327209,-0.188640356063843,0.85552966594696,0.482165783643723,-0.158059924840927,0.865614473819733,0.475108951330185,-0.159493654966354,0.865144610404968,0.475485682487488,-0.189333155751228,0.855300962924957,0.48229992389679,-0.236840054392815,0.838033556938171,0.491534978151321,-0.214857056736946,0.846479713916779,0.487143337726593,-0.215113461017609,0.846387028694153,0.48719111084938,-0.236772865056992,0.838061034679413,0.491520494222641,-0.28039425611496,0.819087326526642,0.500474870204926, +-0.281094253063202,0.818760633468628,0.500616550445557,-0.25781723856926,0.829221367835999,0.495905369520187,-0.257348984479904,0.829423129558563,0.495811194181442,-0.334448009729385,0.784865021705627,0.521662056446075,-0.307315051555634,0.804662466049194,0.508011519908905,-0.307297825813293,0.80467289686203,0.508005559444427,-0.335213333368301,0.784196615219116,0.522175788879395,-0.372272282838821,0.738920152187347,0.561613976955414,-0.357305765151978,0.760845839977264,0.541706800460815,-0.357603996992111,0.760460078716278,0.542051553726196,-0.372188001871109,0.739064574241638,0.561479926109314,-0.408296346664429,0.71166729927063,0.571685016155243,-0.385679930448532,0.723659932613373,0.572335064411163,-0.38566118478775,0.723674058914185,0.572329580783844,-0.409364104270935,0.711240112781525,0.571452915668488,-0.475430101156235,0.669027268886566,0.571286857128143,-0.443559199571609,0.694462299346924,0.566548705101013,-0.446780860424042,0.692574858665466,0.566327631473541,-0.47838768362999,0.665372490882874,0.573083519935608,-0.483511865139008,0.615603744983673,0.622292697429657,-0.487807899713516,0.641734480857849,0.591794013977051,-0.487701803445816,0.637583255767822,0.596350967884064,-0.481931835412979,0.611370623111725,0.627668440341949,-0.479702323675156,0.560986578464508,0.674669981002808,-0.478080272674561,0.589419186115265,0.651171386241913,-0.478107333183289,0.584161698818207,0.655872404575348,-0.480432629585266,0.555284559726715,0.678854584693909,-0.446475654840469,0.520809352397919,0.727610528469086,-0.475027412176132,0.535197257995605,0.698507487773895,-0.471919387578964,0.531340539455414,0.703540503978729,-0.440220296382904,0.520307660102844,0.73176908493042,-0.368548601865768,0.523690342903137,0.768062710762024,-0.398856520652771,0.521935284137726,0.753987491130829,-0.397312849760056,0.522181510925293,0.754631578922272,-0.369432777166367,0.523862361907959,0.767520427703857,-0.361928224563599,0.511007726192474,0.779666066169739,-0.361931383609772,0.509885728359222,0.780398786067963,-0.368548601865768,0.523690342903137,0.768062710762024, +-0.369432777166367,0.523862361907959,0.767520427703857,-0.345250964164734,0.464840441942215,0.815306723117828,-0.344297528266907,0.46396404504776,0.81620866060257,-0.357788681983948,0.486096113920212,0.797306656837463,-0.358083844184875,0.486964583396912,0.796643912792206,-0.325132966041565,0.440428763628006,0.836845874786377,-0.325132131576538,0.440425664186478,0.836847901344299,-0.330646485090256,0.450477838516235,0.829302430152893,-0.331069111824036,0.450945854187012,0.828879475593567,-0.254829078912735,0.437806308269501,0.862199366092682,-0.258357644081116,0.436901599168777,0.861607909202576,-0.29586923122406,0.429899930953979,0.853022575378418,-0.293058931827545,0.430239260196686,0.853821158409119,-0.228532314300537,0.444740295410156,0.866013288497925,-0.229290425777435,0.444516211748123,0.865927934646606,-0.258357644081116,0.436901599168777,0.861607909202576,-0.254829078912735,0.437806308269501,0.862199366092682,-0.223471507430077,0.437732726335526,0.870890617370605,-0.223490789532661,0.437750577926636,0.870876729488373,-0.224679872393608,0.444500863552094,0.867143571376801,-0.224763661623001,0.444438308477402,0.867153942584991,-0.166323870420456,0.433888703584671,0.885481178760529,-0.166150957345963,0.433925807476044,0.885495483875275,-0.201242119073868,0.431705981492996,0.879279017448425,-0.201227769255638,0.431704968214035,0.879282832145691,-0.0683789923787117,0.880440056324005,0.46920108795166,-0.068722777068615,0.880521237850189,0.468998461961746,-0.0948208048939705,0.881590068340302,0.46239385008812,-0.0937852412462234,0.881699025630951,0.462397307157516,-0.106918290257454,0.989994525909424,-0.0920830294489861,-0.105938151478767,0.990059494972229,-0.0925159454345703,-0.106932997703552,0.989998042583466,-0.0920276492834091,-0.105898551642895,0.990053534507751,-0.0926256850361824,-0.106932997703552,0.989998042583466,-0.0920276492834091,-0.105938151478767,0.990059494972229,-0.0925159454345703,-0.105991892516613,0.990043461322784,-0.0926258340477943,-0.107963420450687,0.990078687667847,-0.0899340659379959, +-0.107959434390068,0.990078985691071,-0.0899362564086914,-0.108246542513371,0.990035772323608,-0.0900662839412689,-0.107929021120071,0.990072548389435,-0.0900434851646423,0.0499555580317974,0.514737010002136,0.855891466140747,0.053072601556778,0.51504772901535,0.855516850948334,0.154312148690224,0.524582147598267,0.837258279323578,0.151245638728142,0.524309456348419,0.837988317012787,-0.106915928423405,0.990045785903931,-0.0915325880050659,-0.107096195220947,0.990020930767059,-0.0915903970599174,-0.107093043625355,0.990021049976349,-0.0915940701961517,-0.106921173632145,0.990045189857483,-0.0915331095457077,0.584691345691681,0.567719280719757,0.579509139060974,0.585222780704498,0.567731082439423,0.57896089553833,0.521135866641998,0.565757989883423,0.639011144638062,0.520573794841766,0.565736174583435,0.639488399028778,-0.65726774930954,-0.351282507181168,-0.666783094406128,-0.696719408035278,-0.197553753852844,-0.689604699611664,-0.778216004371643,-0.182597190141678,-0.600864470005035,-0.751957714557648,-0.317486882209778,-0.577720999717712,-0.503585398197174,-0.352859079837799,-0.788601458072662,-0.540803551673889,-0.169442445039749,-0.823905825614929,-0.696719408035278,-0.197553753852844,-0.689604699611664,-0.65726774930954,-0.351282507181168,-0.666783094406128,-0.108000427484512,0.989871978759766,-0.0921369567513466,-0.10800912976265,0.989868104457855,-0.0921679884195328,-0.108015224337578,0.989864408969879,-0.0922018587589264,-0.108007170259953,0.989863336086273,-0.0922221168875694,-0.107986785471439,0.989882528781891,-0.0920400246977806,-0.10759498924017,0.989970266819,-0.0915537923574448,-0.108000427484512,0.989871978759766,-0.0921369567513466,-0.107907257974148,0.989969253540039,-0.0911964252591133,-0.107905559241772,0.989967823028564,-0.0912140086293221,-0.10759498924017,0.989970266819,-0.0915537923574448,-0.107407592236996,0.990011930465698,-0.0913234576582909,0.00272546149790287,-0.531193196773529,0.84724634885788,0.00880803447216749,-0.685341000556946,0.728168964385986,0.0128200761973858,-0.645580470561981,0.763584673404694, +-0.107281170785427,0.989851474761963,-0.0931923091411591,-0.107181660830975,0.989860475063324,-0.0932112038135529,-0.10717298835516,0.989863276481628,-0.0931921526789665,-0.107180185616016,0.989861965179443,-0.0931960940361023,-0.107895828783512,0.989824295043945,-0.0927701368927956,-0.108019061386585,0.989826023578644,-0.0926078334450722,-0.107916206121445,0.98981899023056,-0.0928035750985146,0.367173701524734,0.874080717563629,-0.318066418170929,0.345265358686447,0.865078568458557,-0.363910585641861,0.344172745943069,0.864676892757416,-0.365894764661789,0.366243064403534,0.873652756214142,-0.320307493209839,0.395171403884888,0.891475737094879,-0.221609115600586,0.383835911750793,0.882915914058685,-0.270424604415894,0.383118450641632,0.882473826408386,-0.272873938083649,0.394705891609192,0.891032159328461,-0.224207550287247,0.401912122964859,0.907388806343079,-0.122931867837906,0.401173621416092,0.899661958217621,-0.172244250774384,0.400983572006226,0.899228751659393,-0.174928158521652,0.40200611948967,0.906976640224457,-0.125635862350464,0.388232618570328,0.921174168586731,-0.0267132818698883,0.397529929876328,0.914580702781677,-0.0742444023489952,0.397901654243469,0.914198994636536,-0.0769049152731895,0.388863086700439,0.920830547809601,-0.0292710345238447,0.355971723794937,0.932374000549316,0.0629517957568169,0.374279260635376,0.927117884159088,0.0191643293946981,0.375137686729431,0.926817536354065,0.0167623292654753,0.357018560171127,0.932119905948639,0.0607479400932789,0.307692676782608,0.940719664096832,0.142729490995407,0.333652794361115,0.9369136095047,0.104252547025681,0.334840625524521,0.936707079410553,0.102281838655472,0.308970868587494,0.94055962562561,0.141012787818909,0.246400997042656,0.946113109588623,0.210134640336037,0.278476774692535,0.943785130977631,0.178102001547813,0.279792159795761,0.943668723106384,0.176651209592819,0.247700706124306,0.946036040782928,0.208950385451317,0.175278082489967,0.948598086833954,0.26351323723793,0.211865603923798,0.947712242603302,0.23865157365799,0.213098749518394,0.947668731212616,0.237724125385284, +0.176397949457169,0.948581755161285,0.26282411813736,0.0974859073758125,0.948321998119354,0.301963537931442,0.137024939060211,0.948793053627014,0.28463289141655,0.13799062371254,0.948796391487122,0.284154951572418,0.0982614457607269,0.948337078094482,0.301664113998413,0.0159947089850903,0.945498585700989,0.32523313164711,0.0570277199149132,0.947213470935822,0.315490931272507,0.0575856268405914,0.947232782840729,0.3153315782547,0.0163150131702423,0.94551420211792,0.325171917676926,-0.0665173083543777,0.940380275249481,0.333557099103928,-0.0252890102565289,0.943209886550903,0.331233352422714,-0.0252192430198193,0.943214237689972,0.331226319074631,-0.0667039901018143,0.940366327762604,0.333559334278107,-0.0665173083543777,0.940380275249481,0.333557099103928,-0.0667039901018143,0.940366327762604,0.333559334278107,-0.107848577201366,0.93700385093689,0.33225354552269,-0.107407636940479,0.937042713165283,0.332286775112152,-0.147697061300278,0.933230042457581,0.327516853809357,-0.148383259773254,0.933160483837128,0.327404677867889,-0.188056319952011,0.92886883020401,0.319120079278946,-0.187139898538589,0.928974032402039,0.319352477788925,-0.298177778720856,0.913851141929626,0.27561953663826,-0.262585490942001,0.919255495071411,0.293288558721542,-0.263894081115723,0.919067025184631,0.292704373598099,-0.299638569355011,0.913616597652435,0.27481135725975,-0.364116072654724,0.902095854282379,0.231608748435974,-0.332080900669098,0.908122479915619,0.255021125078201,-0.333658218383789,0.907840728759766,0.253963381052017,-0.365773379802704,0.901765644550323,0.230279326438904,-0.421814471483231,0.889269769191742,0.176838576793671,-0.394091963768005,0.895800769329071,0.205505281686783,-0.395784914493561,0.895423471927643,0.203890204429626,-0.423500716686249,0.888846158981323,0.174927487969398,-0.469766706228256,0.87561559677124,0.112323790788651,-0.447108745574951,0.882528781890869,0.145728260278702,-0.448742270469666,0.882061719894409,0.143518000841141,-0.471299111843109,0.875109493732452,0.109820283949375,-0.469766706228256,0.87561559677124,0.112323790788651, +-0.471299111843109,0.875109493732452,0.109820283949375,-0.490978598594666,0.868023991584778,0.0739888325333595,-0.489592045545578,0.868565022945404,0.0767759457230568,-0.50638473033905,0.861413776874542,0.0392530336976051,-0.507577836513519,0.860844910144806,0.0362043157219887,-0.520883917808533,0.853620886802673,-0.00333814113400877,-0.519927203655243,0.854210615158081,-5.29503522557206e-05,-0.530009686946869,0.847003221511841,-0.0409318506717682,-0.530689656734467,0.846401751041412,-0.0444150492548943,-0.536788105964661,0.839244306087494,-0.0867607071995735,-0.536419212818146,0.839848101139069,-0.0831236690282822,-0.538952171802521,0.832806050777435,-0.126351609826088,-0.538982748985291,0.832210302352905,-0.130090549588203,-0.537090599536896,0.825369238853455,-0.174066811800003,-0.537416398525238,0.825945556163788,-0.170287013053894,-0.531642496585846,0.819339096546173,-0.214568763971329,-0.530953645706177,0.818792700767517,-0.218327164649963,-0.520441174507141,0.812559366226196,-0.26246589422226,-0.521487832069397,0.813064515590668,-0.258798182010651,-0.506853699684143,0.807205855846405,-0.302519679069519,-0.505469381809235,0.806751072406769,-0.306028574705124,-0.486004769802094,0.801449656486511,-0.348536670207977,-0.487692624330521,0.80184531211853,-0.345253646373749,-0.464006036520004,0.797069907188416,-0.386494398117065,-0.462061583995819,0.796739459037781,-0.389493674039841,-0.433728188276291,0.792702436447144,-0.428372263908386,-0.435866802930832,0.792963683605194,-0.425709635019302,-0.403431802988052,0.789610087871552,-0.462340474128723,-0.401171505451202,0.789418935775757,-0.46462807059288,-0.364615231752396,0.786959111690521,-0.497745990753174,-0.36691877245903,0.787082970142365,-0.495853900909424,-0.107895828783512,0.989824295043945,-0.0927701368927956,-0.107894316315651,0.989830255508423,-0.0927088484168053,-0.108048900961876,0.989826679229736,-0.0925667211413383,-0.107879936695099,0.9898322224617,-0.0927044898271561,-0.107920631766319,0.989850103855133,-0.0924662053585052,-0.107894897460938,0.989863574504852,-0.0923524722456932, +-0.107840746641159,0.98981785774231,-0.0929032117128372,-0.107919104397297,0.989817976951599,-0.0928109586238861,-0.107812017202377,0.989817261695862,-0.0929426029324532,-0.32664281129837,0.785444319248199,-0.525720059871674,-0.32438325881958,0.785382390022278,-0.5272096991539,-0.280866622924805,0.784741938114166,-0.552534222602844,-0.282999277114868,0.784750878810883,-0.551432251930237,-0.107670865952969,0.989821076393127,-0.0930656939744949,-0.107548594474792,0.989829421043396,-0.0931188464164734,-0.107719071209431,0.989820003509521,-0.0930221453309059,-0.10768336802721,0.989820778369904,-0.093054324388504,-0.236452713608742,0.785041153430939,-0.572538554668427,-0.234526976943016,0.785073578357697,-0.573285818099976,-0.185896128416061,0.786397635936737,-0.589085221290588,-0.187544658780098,0.786337852478027,-0.588642418384552,-0.107439897954464,0.989836454391479,-0.0931688100099564,-0.107411377131939,0.989839136600494,-0.0931727588176727,-0.107415877282619,0.989838719367981,-0.0931727066636086,-0.107548594474792,0.989829421043396,-0.0931188464164734,-0.136877104640007,0.788646459579468,-0.599417567253113,-0.13556244969368,0.788718521595001,-0.5996213555336,-0.084161676466465,0.792023420333862,-0.604661643505096,-0.0851039588451385,0.791954636573792,-0.604619860649109,0.0699145942926407,0.807465314865112,-0.585757434368134,0.0190019030123949,0.801423668861389,-0.597795188426971,0.0191588792949915,0.801440834999084,-0.597767114639282,0.0697000771760941,0.807437837123871,-0.58582079410553,0.165996193885803,0.821746706962585,-0.545140087604523,0.119134701788425,0.814272224903107,-0.568126499652863,0.118588678538799,0.814191162586212,-0.568356871604919,0.165174350142479,0.821606457233429,-0.545600771903992,-0.107281170785427,0.989851474761963,-0.0931923091411591,-0.107415877282619,0.989838719367981,-0.0931727066636086,-0.107411377131939,0.989839136600494,-0.0931727588176727,-0.107192076742649,0.989857256412506,-0.0932325422763824,-0.107308588922024,0.989956617355347,-0.0920370668172836,-0.107297696173191,0.989939451217651,-0.0922340378165245, +-0.107290551066399,0.98995578289032,-0.0920669361948967,0.165996193885803,0.821746706962585,-0.545140087604523,0.165174350142479,0.821606457233429,-0.545600771903992,0.208842813968658,0.829577803611755,-0.51786607503891,0.20987306535244,0.829779386520386,-0.517126202583313,0.451531618833542,0.562548577785492,0.692573726177216,0.377085626125336,0.558131575584412,0.739118158817291,0.376475304365158,0.558091700077057,0.739459216594696,0.450943827629089,0.562517464160919,0.692981898784637,-0.107356198132038,0.989954650402069,-0.0920022577047348,-0.107305608689785,0.98994380235672,-0.0921786800026894,-0.107308588922024,0.989956617355347,-0.0920370668172836,-0.10673588514328,0.989966452121735,-0.0925950333476067,-0.107341587543488,0.989906013011932,-0.0925417765974998,-0.107552044093609,0.989892661571503,-0.0924396738409996,-0.107455559074879,0.989898681640625,-0.0924864634871483,-0.106568522751331,0.989983141422272,-0.0926097482442856,-0.107728898525238,0.989890873432159,-0.0922524705529213,-0.107455559074879,0.989898681640625,-0.0924864634871483,-0.107552044093609,0.989892661571503,-0.0924396738409996,-0.107797034084797,0.989877104759216,-0.0923207774758339,-0.107673421502113,0.989902079105377,-0.0921968445181847,-0.106377765536308,0.99000209569931,-0.0926265046000481,-0.10673588514328,0.989966452121735,-0.0925950333476067,-0.106568522751331,0.989983141422272,-0.0926097482442856,-0.105898551642895,0.990053534507751,-0.0926256850361824,-0.105991892516613,0.990043461322784,-0.0926258340477943,-0.106377758085728,0.990002036094666,-0.0926264971494675,-0.397924184799194,-0.907118678092957,0.137084171175957,-0.521244943141937,-0.791952013969421,0.317987084388733,-0.515645980834961,-0.798550605773926,0.310525685548782,-0.400045484304428,-0.905632853507996,0.140687137842178,0.297875821590424,0.552506446838379,0.778464257717133,0.298506200313568,0.552554666996002,0.778188586235046,0.216521680355072,0.545867562294006,0.809411466121674,0.215874791145325,0.545811474323273,0.80962198972702,0.694496929645538,0.567932903766632,0.441730916500092, +0.643194854259491,0.56845885515213,0.512986183166504,0.64270007610321,0.568457901477814,0.513607025146484,0.694046556949615,0.567943751811981,0.442424386739731,0.131274804472923,0.538069486618042,0.832615256309509,0.131937608122826,0.538133263587952,0.832469284534454,0.0455602146685123,0.529424905776978,0.847132444381714,0.0448841154575348,0.529353618621826,0.847213208675385,0.775225698947906,0.563132107257843,0.286194533109665,0.738647222518921,0.566149652004242,0.365889370441437,0.738248407840729,0.566173255443573,0.366656720638275,0.774888336658478,0.563169479370117,0.287033557891846,-0.0424683168530464,0.519746005535126,0.853264629840851,-0.0417802818119526,0.519824683666229,0.853250622749329,-0.12923863530159,0.509426414966583,0.850753784179688,-0.129937827587128,0.509340226650238,0.850699007511139,0.824383974075317,0.553538918495178,0.11826153844595,0.803893387317657,0.558916389942169,0.203390911221504,0.803626656532288,0.558968365192413,0.20430015027523,0.824198186397552,0.553606271743774,0.119236901402473,-0.384630411863327,0.474354326725006,0.791863322257996,-0.301849365234375,0.486536234617233,0.819859445095062,-0.301134914159775,0.486637800931931,0.820061862468719,-0.383915215730667,0.474463254213333,0.792145073413849,0.824383974075317,0.553538918495178,0.11826153844595,0.824198186397552,0.553606271743774,0.119236901402473,0.83640444278717,0.547137200832367,0.0326880477368832,0.83649879693985,0.547053933143616,0.0316532775759697,-0.539799630641937,0.449031382799149,0.712030291557312,-0.464203983545303,0.461813151836395,0.755806386470795,-0.463491767644882,0.46192929148674,0.756172358989716,-0.539097607135773,0.449154436588287,0.712484419345856,0.840135395526886,0.539515018463135,-0.0556411258876324,0.840142488479614,0.539615213871002,-0.0545530132949352,0.835373163223267,0.531117379665375,-0.141655117273331,0.835254728794098,0.531000554561615,-0.14278618991375,-0.676160275936127,0.423240423202515,0.603054642677307,-0.610686480998993,0.436130493879318,0.660947978496552,-0.610002756118774,0.436259746551514,0.66149377822876, +-0.675503551959991,0.423375159502029,0.603695571422577,0.821900904178619,0.521603524684906,-0.228929489850998,0.822139084339142,0.521737098693848,-0.22776660323143,0.800573945045471,0.511552751064301,-0.312081933021545,0.800208270549774,0.511402606964111,-0.313263595104218,-0.676160275936127,0.423240423202515,0.603054642677307,-0.675503551959991,0.423375159502029,0.603695571422577,-0.734956979751587,0.410623073577881,0.539654552936554,-0.735575735569,0.410483807325363,0.538916766643524,0.77038162946701,0.500485002994537,-0.395002216100693,0.770880818367004,0.500651359558105,-0.393815726041794,0.733341991901398,0.489138305187225,-0.472179085016251,0.732705533504486,0.488957196474075,-0.473353445529938,-0.788361668586731,0.39798304438591,0.469143331050873,-0.787791967391968,0.398125439882278,0.469978660345078,-0.845787227153778,0.382390141487122,0.372050881385803,-0.846174538135529,0.38226717710495,0.371295750141144,0.576492428779602,0.451885133981705,-0.680776238441467,0.63530820608139,0.464540779590607,-0.616916000843048,0.636222064495087,0.464747071266174,-0.615817844867706,0.577542006969452,0.452101439237595,-0.679742276668549,0.441439777612686,0.426265746355057,-0.789574801921844,0.51166707277298,0.439085513353348,-0.738512635231018,0.512845754623413,0.439309239387512,-0.737561166286469,0.442739516496658,0.426494538784027,-0.788723170757294,-0.918395280838013,0.355669140815735,0.173348098993301,-0.917930364608765,0.355879962444305,0.175366029143333,-0.937038064002991,0.343612343072891,0.0623727552592754,-0.937169194221497,0.343481719493866,0.0611077137291431,0.287485331296921,0.401059597730637,-0.869772017002106,0.366472691297531,0.413550049066544,-0.833471119403839,0.367882043123245,0.413780957460403,-0.832735300064087,0.288991957902908,0.401289999485016,-0.869166254997253,-0.94186395406723,0.334926784038544,-0.0267612226307392,-0.941857635974884,0.335048198699951,-0.0254365261644125,-0.938029944896698,0.327478528022766,-0.113391548395157,-0.937901675701141,0.327368527650833,-0.114761650562286,0.120486222207546,0.377223074436188,-0.918251395225525, +0.205228418111801,0.388911217451096,-0.898125469684601,0.206814378499985,0.389137774705887,-0.897663414478302,0.122134804725647,0.377442896366119,-0.91794341802597,-0.874923050403595,0.311349660158157,-0.370905786752701,-0.904264330863953,0.315525949001312,-0.287662118673325,-0.904684484004974,0.315605908632278,-0.286249846220016,-0.875496089458466,0.311411142349243,-0.369499385356903,0.120486222207546,0.377223074436188,-0.918251395225525,0.122134804725647,0.377442896366119,-0.91794341802597,0.0357608087360859,0.366319268941879,-0.92980170249939,0.034069649875164,0.366109371185303,-0.929947972297668,-0.792653262615204,0.306699007749557,-0.526912093162537,-0.837597370147705,0.308400899171829,-0.450909823179245,-0.838323593139648,0.308442145586014,-0.449529707431793,-0.793531715869904,0.306718677282333,-0.525576889514923,-0.0531955249607563,0.355676561594009,-0.933094024658203,-0.0514820925891399,0.355873882770538,-0.933114886283875,-0.138757616281509,0.346206456422806,-0.927840173244476,-0.140471771359444,0.346024423837662,-0.927650094032288,-0.681755065917969,0.307107508182526,-0.663999259471893,-0.740535616874695,0.306264013051987,-0.598171651363373,-0.741560757160187,0.3062604367733,-0.596902072429657,-0.682919323444366,0.307079881429672,-0.662814557552338,-0.226916715502739,0.337247014045715,-0.91365921497345,-0.225222587585449,0.337411403656006,-0.914017617702484,-0.310042023658752,0.329574048519135,-0.891770601272583,-0.311694413423538,0.329429447650909,-0.891247808933258,-0.681755065917969,0.307107508182526,-0.663999259471893,-0.682919323444366,0.307079881429672,-0.662814557552338,-0.618183434009552,0.309159785509109,-0.722682237625122,-0.616891324520111,0.309211641550064,-0.723763346672058,-0.393999606370926,0.32264843583107,-0.860617399215698,-0.392409175634384,0.322771370410919,-0.861297607421875,-0.471512198448181,0.31707701086998,-0.822884261608124,-0.473019987344742,0.316977232694626,-0.822056949138641,0.622980833053589,0.546777665615082,0.559400737285614,0.544852375984192,0.546163976192474,0.636271119117737, +0.544459104537964,0.546156346797943,0.636614084243774,0.622602820396423,0.54677951335907,0.559819519519806,0.749175548553467,0.542132198810577,0.380563735961914,0.69142097234726,0.54542750120163,0.473757237195969,0.691074788570404,0.545440256595612,0.474247425794601,0.74887752532959,0.542156457901001,0.381115198135376,0.457787960767746,0.543580055236816,0.703527510166168,0.458177894353867,0.543595254421234,0.703261852264404,0.364233165979385,0.539111316204071,0.759403228759766,0.363863587379456,0.539090692996979,0.759594976902008,0.829369187355042,0.529901623725891,0.177062273025513,0.79538357257843,0.536931753158569,0.281192749738693,0.795146524906158,0.536967813968658,0.281793415546417,0.829203009605408,0.529949009418488,0.177697420120239,0.264036059379578,0.532751560211182,0.804027736186981,0.264369457960129,0.532775163650513,0.803902626037598,0.160040244460106,0.524682939052582,0.836118996143341,0.159755617380142,0.524658977985382,0.836188435554504,0.858820497989655,0.507111549377441,-0.0725617185235023,0.850620031356812,0.52114337682724,0.0696801170706749,0.850530922412872,0.521201014518738,0.0703325942158699,0.858841717243195,0.507298588752747,-0.0709861218929291,0.0525339655578136,0.514931738376617,0.855619966983795,0.0527567379176617,0.514953315258026,0.855593323707581,-0.0559315979480743,0.503725707530975,0.862051069736481,-0.0560879074037075,0.50370866060257,0.862050950527191,0.858820497989655,0.507111549377441,-0.0725617185235023,0.858841717243195,0.507298588752747,-0.0709861218929291,0.846832752227783,0.492057114839554,-0.201876744627953,0.846694111824036,0.491957098245621,-0.202699914574623,-0.374708563089371,0.462786227464676,0.803381860256195,-0.271257609128952,0.477448582649231,0.835740506649017,-0.271242797374725,0.477450579404831,0.835744202136993,-0.374760985374451,0.46277841925621,0.80336195230484,-0.565893411636353,0.431460291147232,0.702571451663971,-0.473398059606552,0.447382897138596,0.758777141571045,-0.4735067486763,0.447365134954453,0.758719921112061,-0.566047966480255,0.431432336568832,0.702464163303375, +-0.727096319198608,0.398976266384125,0.558702826499939,-0.65086829662323,0.41524663567543,0.635563313961029,-0.651054441928864,0.415209114551544,0.635397136211395,-0.727298378944397,0.398930460214615,0.558472692966461,-0.727096319198608,0.398976266384125,0.558702826499939,-0.727298378944397,0.398930460214615,0.558472692966461,-0.793646812438965,0.38283172249794,0.472826212644577,-0.793445467948914,0.382884234189987,0.473121464252472,0.846694111824036,0.491957098245621,-0.202699914574623,0.846832752227783,0.492057114839554,-0.201876744627953,0.815465092658997,0.475859969854355,-0.32950559258461,0.815463244915009,0.475859224796295,-0.329511523246765,-0.848965048789978,0.367199599742889,0.380029797554016,-0.849150359630585,0.367142349481583,0.37967112660408,-0.892991483211517,0.352092683315277,0.280351549386978,-0.892837643623352,0.352152317762375,0.280766159296036,0.761157631874084,0.456605076789856,-0.460598409175873,0.761403799057007,0.456681877374649,-0.4601149559021,0.706145763397217,0.440941840410233,-0.554011225700378,0.705867946147919,0.440868854522705,-0.554423153400421,-0.924411356449127,0.337957948446274,0.17677129805088,-0.924521446228027,0.337898224592209,0.176309585571289,-0.943269729614258,0.32476943731308,0.0690444260835648,-0.943213522434235,0.324826687574387,0.0695398896932602,0.477912843227386,0.392009526491165,-0.786083817481995,0.563204944133759,0.408333092927933,-0.718376159667969,0.563493251800537,0.408391386270523,-0.718116819858551,0.478181034326553,0.392058253288269,-0.78589653968811,-0.921020328998566,0.293673247098923,-0.255885690450668,-0.941521644592285,0.302526950836182,-0.148372679948807,-0.941454708576202,0.302480816841125,-0.148890599608421,-0.920892000198364,0.293635189533234,-0.256390750408173,0.285648256540298,0.360449641942978,-0.88796454668045,0.384943872690201,0.375970155000687,-0.842890679836273,0.385174244642258,0.376007944345474,-0.842768490314484,0.285828202962875,0.360476434230804,-0.887895822525024,-0.842106640338898,0.281212896108627,-0.460190862417221,-0.887722671031952,0.286534070968628,-0.360342413187027, +-0.887538015842438,0.286504954099655,-0.36081999540329,-0.841875314712524,0.281193256378174,-0.460625946521759,0.0740231797099113,0.331877112388611,-0.94041383266449,0.181497275829315,0.345679700374603,-0.920632541179657,0.181615322828293,0.345695614814758,-0.920603215694427,0.0740735530853271,0.331883251667023,-0.940407633781433,-0.71668142080307,0.276335626840591,-0.640317320823669,-0.78482186794281,0.277797043323517,-0.553970634937286,-0.784555435180664,0.277786731719971,-0.554352998733521,-0.716394543647766,0.276333779096603,-0.640639245510101,0.0740231797099113,0.331877112388611,-0.94041383266449,0.0740735530853271,0.331883251667023,-0.940407633781433,-0.0352216027677059,0.319241315126419,-0.947018682956696,-0.0352002009749413,0.319243669509888,-0.94701874256134,-0.551946818828583,0.279353260993958,-0.78569483757019,-0.638678133487701,0.276853173971176,-0.717943370342255,-0.638387501239777,0.276858508586884,-0.718199729919434,-0.551666975021362,0.279364019632339,-0.785887479782104,-0.144559130072594,0.307966113090515,-0.940350770950317,-0.144650161266327,0.307957351207733,-0.940339624881744,-0.252600967884064,0.298195958137512,-0.920473635196686,-0.252446234226227,0.298208951950073,-0.920512020587921,-0.551946818828583,0.279353260993958,-0.78569483757019,-0.551666975021362,0.279364019632339,-0.785887479782104,-0.457501500844955,0.283804386854172,-0.842702507972717,-0.457753747701645,0.283790439367294,-0.842570185661316,-0.945101201534271,0.321360021829605,-0.0592575334012508,-0.942622661590576,0.331003129482269,0.0435819625854492,-0.942855834960938,0.330710887908936,0.0406589470803738,-0.945000171661377,0.321105122566223,-0.0621790736913681,-0.91499799489975,0.306160658597946,-0.262762755155563,-0.935850560665131,0.313044846057892,-0.161823153495789,-0.935419082641602,0.312829941511154,-0.164707615971565,-0.91424435377121,0.305988162755966,-0.265572190284729,-0.929017126560211,0.341513156890869,0.142464190721512,-0.928450107574463,0.341838628053665,0.145350635051727,-0.902766227722168,0.353722423315048,0.244731411337852, +-0.903663516044617,0.353367120027542,0.241917297244072,-0.839732885360718,0.297025620937347,-0.454559803009033,-0.882821023464203,0.300799638032913,-0.360758394002914,-0.881755888462067,0.300671577453613,-0.363460063934326,-0.838370680809021,0.296942889690399,-0.457120925188065,-0.867112576961517,0.366131842136383,0.337732434272766,-0.865893304347992,0.366513103246689,0.340436398983002,-0.818324029445648,0.380039423704147,0.43117955327034,-0.819851875305176,0.379637598991394,0.428623616695404,-0.723254382610321,0.294416576623917,-0.624677419662476,-0.786306858062744,0.294884979724884,-0.54292219877243,-0.784666478633881,0.294848889112473,-0.545309782028198,-0.721356868743896,0.294427663087845,-0.626862466335297,-0.762497007846832,0.393702119588852,0.51341700553894,-0.760675728321075,0.394119828939438,0.515792548656464,-0.69370037317276,0.408567905426025,0.593171119689941,-0.695793092250824,0.408139914274216,0.591010749340057,-0.723254382610321,0.294416576623917,-0.624677419662476,-0.721356868743896,0.294427663087845,-0.626862466335297,-0.649258434772491,0.2956782579422,-0.700740933418274,-0.651390671730042,0.295620769262314,-0.69878363609314,-0.448858082294464,0.45183277130127,0.770956218242645,-0.537942051887512,0.437395691871643,0.720627009868622,-0.535382211208344,0.437828421592712,0.72226870059967,-0.446110635995865,0.452259063720703,0.772299885749817,-0.571641504764557,0.298474341630936,-0.764290034770966,-0.569302082061768,0.298577725887299,-0.765993714332581,-0.482545495033264,0.303095519542694,-0.821755945682526,-0.485063701868057,0.302947103977203,-0.820326924324036,-0.256170362234116,0.479376047849655,0.83938992023468,-0.354524493217468,0.465887248516083,0.81071662902832,-0.351624637842178,0.466301262378693,0.811740815639496,-0.253155440092087,0.4797722697258,0.840077996253967,-0.392794400453568,0.308980315923691,-0.866166114807129,-0.39012798666954,0.309171766042709,-0.867302179336548,-0.293240249156952,0.316723883152008,-0.902051091194153,-0.296022474765778,0.316491603851318,-0.901223540306091,-0.0526028200984001,0.503960907459259,0.862123191356659, +-0.15509133040905,0.492121815681458,0.856599450111389,-0.152000114321709,0.492494761943817,0.856939136981964,-0.0494781024754047,0.504305183887482,0.86210685968399,-0.196010634303093,0.32538378238678,-0.925043344497681,-0.193146899342537,0.325654268264771,-0.925550520420074,-0.0911585092544556,0.335846573114395,-0.937495231628418,-0.0940675139427185,0.335541129112244,-0.937317132949829,-0.0526028200984001,0.503960907459259,0.862123191356659,-0.0494781024754047,0.504305183887482,0.86210685968399,0.053072601556778,0.51504772901535,0.855516850948334,0.0499555580317974,0.514737010002136,0.855891466140747,0.210082948207855,0.372207880020142,-0.904061079025269,0.110308825969696,0.359106212854385,-0.926754951477051,0.113201782107353,0.359470725059509,-0.926264643669128,0.212909132242203,0.37259516119957,-0.903240025043488,0.398339092731476,0.400196969509125,-0.82532924413681,0.306510001420975,0.38596385717392,-0.870105445384979,0.309236377477646,0.386369556188583,-0.868960022926331,0.400927066802979,0.400615930557251,-0.823871493339539,0.249943345785141,0.532553911209106,0.808649957180023,0.252918243408203,0.532784879207611,0.80757212638855,0.347605526447296,0.539548218250275,0.766849517822266,0.34476500749588,0.539362609386444,0.768261194229126,0.563495576381683,0.429350584745407,-0.705783843994141,0.48437312245369,0.414723336696625,-0.770316243171692,0.486788958311081,0.415150344371796,-0.76856142282486,0.565704822540283,0.429779827594757,-0.703752338886261,0.434464871883392,0.544649600982666,0.717354297637939,0.437132894992828,0.544787585735321,0.71562647819519,0.520343005657196,0.548434674739838,0.654570460319519,0.517882525920868,0.54834657907486,0.656592488288879,0.563495576381683,0.429350584745407,-0.705783843994141,0.565704822540283,0.429779827594757,-0.703752338886261,0.636649549007416,0.444314062595367,-0.63028758764267,0.634676873683929,0.443887889385223,-0.632573008537292,0.720073878765106,0.549501061439514,0.423724234104156,0.661623120307922,0.550783693790436,0.50881427526474,0.663566827774048,0.550769090652466,0.506292879581451, +0.721718490123749,0.549435377120972,0.421002805233002,0.697001814842224,0.458146750926971,-0.551624953746796,0.698708951473236,0.458564043045044,-0.549112796783447,0.751061797142029,0.472345918416977,-0.461297631263733,0.749646186828613,0.471942961215973,-0.464004993438721,0.806344091892242,0.542022824287415,0.236686438322067,0.768523514270782,0.546570718288422,0.332614123821259,0.769847571849823,0.546454966068268,0.329729914665222,0.807331025600433,0.541858196258545,0.233679920434952,0.791927099227905,0.485105901956558,-0.370841979980469,0.793029725551605,0.485489338636398,-0.367972761392593,0.824073255062103,0.497816562652588,-0.270336866378784,0.823301255702972,0.497458636760712,-0.273331433534622,0.848588228225708,0.528069138526917,0.0322642102837563,0.848305583000183,0.528322875499725,0.0353917554020882,0.833053410053253,0.535912394523621,0.137186080217361,0.833691537380219,0.535701632499695,0.13409760594368,0.843352794647217,0.508825063705444,-0.172780528664589,0.843780279159546,0.509152233600616,-0.16970206797123,0.851895809173584,0.519361615180969,-0.0673581063747406,0.851821303367615,0.519069075584412,-0.0704820975661278,-0.108185239136219,0.98990386724472,-0.0915761664509773,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108190126717091,0.989901900291443,-0.0915919095277786,0.00963577441871166,-0.555363953113556,0.831551611423492,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0120826736092567,-0.476918518543243,0.878864467144012,0.0632155016064644,-0.734642505645752,0.675502955913544,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0712678954005241,-0.735388100147247,0.673888206481934,-0.136253386735916,-0.358394503593445,0.923573672771454,-0.167590856552124,-0.331401407718658,0.928486049175262,0.00272546149790287,-0.531193196773529,0.84724634885788,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0128200761973858,-0.645580470561981,0.763584673404694,0.00745453918352723,-0.599202454090118,0.800562739372253,0.0714048817753792,-0.2548788189888,0.96433299779892,0.00272546149790287,-0.531193196773529,0.84724634885788, +0.0808819532394409,-0.238137289881706,0.967857837677002,0.780008673667908,0.191202566027641,0.595842242240906,0.779766142368317,0.19159996509552,0.596032202243805,0.73299252986908,0.265868574380875,0.626127660274506,0.733311951160431,0.265377759933472,0.62596184015274,0.6707723736763,0.355790436267853,0.65075159072876,0.670495808124542,0.35616335272789,0.650832533836365,0.584464132785797,0.462358862161636,0.666802763938904,0.584277331829071,0.462569922208786,0.666820108890533,0.490984380245209,0.559980094432831,0.667350471019745,0.491296529769897,0.55967777967453,0.66737425327301,0.400390982627869,0.639825165271759,0.655980825424194,0.400514394044876,0.639726400375366,0.65600198507309,0.0503431409597397,0.808794379234314,0.585932910442352,0.173091173171997,0.772573113441467,0.610876619815826,0.172773629426956,0.772700011730194,0.610806047916412,0.0503189787268639,0.808799088001251,0.585928380489349,-0.204423829913139,0.800592184066772,0.563261091709137,-0.0699645355343819,0.81701397895813,0.572357594966888,-0.0707438364624977,0.8169806599617,0.572309255599976,-0.203763291239738,0.800721824169159,0.563316166400909,0.447486191987991,-0.710730135440826,-0.542788147926331,0.447569310665131,-0.710714817047119,-0.542739391326904,0.335326761007309,-0.723764359951019,-0.603092908859253,0.335842281579971,-0.723737835884094,-0.602837741374969,0.055137362331152,-0.734911561012268,0.675917625427246,0.0352165549993515,-0.736778795719147,0.675216019153595,0.00272546149790287,-0.531193196773529,0.84724634885788,0.224032685160637,-0.7353635430336,-0.63957005739212,0.335842281579971,-0.723737835884094,-0.602837741374969,0.335326761007309,-0.723764359951019,-0.603092908859253,0.223020538687706,-0.735501766204834,-0.639764666557312,0.655419766902924,-0.638542115688324,-0.403347104787827,0.655095219612122,-0.63870906829834,-0.40361014008522,0.56099945306778,-0.679828405380249,-0.472348421812057,0.560880541801453,-0.679872035980225,-0.472426772117615,0.806200265884399,-0.539266526699066,-0.243377879261971,0.733237087726593,-0.593745827674866,-0.331405103206635, +0.733722627162933,-0.593431830406189,-0.330892622470856,0.806410670280457,-0.539083302021027,-0.243086352944374,0.905624270439148,-0.420467674732208,-0.0552427805960178,0.905572772026062,-0.420559108257294,-0.0553907342255116,0.865977168083191,-0.47807976603508,-0.146708205342293,0.86592572927475,-0.478142559528351,-0.146807119250298,0.944638013839722,-0.298583179712296,0.136040866374969,0.931076884269714,-0.362959504127502,0.0368276312947273,0.931241750717163,-0.362454116344452,0.0376277416944504,0.944725215435028,-0.297700941562653,0.137361943721771,0.931981682777405,-0.155609130859375,0.327407956123352,0.94457072019577,-0.228651031851768,0.2355947047472,0.944475471973419,-0.22766937315464,0.23692375421524,0.93176943063736,-0.154738083481789,0.328423321247101,0.931981682777405,-0.155609130859375,0.327407956123352,0.93176943063736,-0.154738083481789,0.328423321247101,0.90937066078186,-0.0776803344488144,0.408669412136078,0.909619867801666,-0.0784254372119904,0.407971858978271,-0.907016634941101,0.00856796652078629,0.421007394790649,-0.920217275619507,-0.14859102666378,0.362106144428253,-0.920197129249573,-0.147865056991577,0.362454503774643,-0.90703934431076,0.00840500835329294,0.420961886644363,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.000464731536339968,-0.715449154376984,0.698664665222168,0.00880803447216749,-0.685341000556946,0.728168964385986,-0.103349946439266,-0.392858177423477,0.913773059844971,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.070955254137516,-0.434592127799988,0.897827923297882,-0.00890664104372263,-0.546891987323761,0.837155818939209,-0.0373072549700737,-0.488416254520416,0.87181293964386,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.820271730422974,0.333872824907303,0.464417159557343,-0.878640592098236,0.16022914648056,0.449797093868256,-0.879038989543915,0.158573806285858,0.449605226516724,-0.821151971817017,0.331840753555298,0.464317917823792,-0.524789214134216,0.683255136013031,0.507699429988861,-0.69990062713623,0.52940821647644,0.479443550109863, +-0.701169967651367,0.527854084968567,0.479302227497101,-0.529332518577576,0.680400490760803,0.506815791130066,-0.524789214134216,0.683255136013031,0.507699429988861,-0.529332518577576,0.680400490760803,0.506815791130066,-0.358469277620316,0.761200487613678,0.54043847322464,-0.352967649698257,0.762954831123352,0.541584432125092,-0.915543913841248,-0.282456904649734,0.286351919174194,-0.902280867099762,-0.373685747385025,0.215053901076317,-0.902239382266998,-0.373893469572067,0.214867055416107,-0.915563821792603,-0.282254099845886,0.286488115787506,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.00680322712287307,-0.743137538433075,0.669104158878326,-0.00851425901055336,-0.743472516536713,0.668712258338928,-0.880204200744629,-0.456111639738083,0.131158828735352,-0.841839194297791,-0.539009809494019,0.027842752635479,-0.841498553752899,-0.539581120014191,0.0270638465881348,-0.880086123943329,-0.45645073056221,0.13077150285244,-0.785836815834045,-0.612851202487946,-0.082907646894455,-0.786727905273438,-0.611916661262512,-0.0813469439744949,-0.725718259811401,-0.664315164089203,-0.178936794400215,-0.724521160125732,-0.665141820907593,-0.180708587169647,-0.667673349380493,-0.697648346424103,-0.259805679321289,-0.668703019618988,-0.697169303894043,-0.258439958095551,-0.60425728559494,-0.723142206668854,-0.334572196006775,-0.6031214594841,-0.723535239696503,-0.335769563913345,-0.524687469005585,-0.746297478675842,-0.409564465284348,-0.437109887599945,-0.764969527721405,-0.47302919626236,-0.43633234500885,-0.765112042427063,-0.473516285419464,-0.523687958717346,-0.746535181999207,-0.410409957170486,-0.338509112596512,-0.779972016811371,-0.526360332965851,-0.338974446058273,-0.779914259910583,-0.526146411895752,-0.225180551409721,-0.788024187088013,-0.572984755039215,-0.22492316365242,-0.788029313087463,-0.573078751564026,-0.0802600681781769,-0.782321095466614,-0.617682814598083,-0.0801177471876144,-0.782307088375092,-0.617718994617462,0.0823806002736092,-0.75981342792511,-0.644900918006897,0.0815175771713257,-0.759966731071472,-0.64482969045639, +-0.104750357568264,-0.574085056781769,0.812067568302155,-0.14632111787796,-0.584464251995087,0.798117637634277,-0.102034099400043,-0.653832256793976,0.749728262424469,-0.069454051554203,-0.644765138626099,0.761218845844269,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.00872469320893288,-0.743663489818573,0.668497204780579,-0.0136146610602736,-0.746125340461731,0.665666282176971,0.0493366345763206,-0.305691778659821,0.950851440429688,0.026465080678463,-0.384438067674637,0.922771334648132,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.0208465121686459,-0.750408172607422,0.66064590215683,-0.024351580068469,-0.752699196338654,0.657913982868195,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.0206752326339483,-0.748669028282166,0.662621378898621,-0.0113693345338106,-0.736207365989685,0.676660418510437,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0720954835414886,-0.722913205623627,0.687167167663574,0.0822478979825974,-0.731772124767303,0.676568388938904,0.00272546149790287,-0.531193196773529,0.84724634885788,0.171943947672844,-0.9038245677948,-0.391837179660797,0.187823235988617,-0.872961461544037,-0.450178593397141,0.0867995172739029,-0.877836644649506,-0.471029311418533,0.0735059455037117,-0.902492642402649,-0.424386560916901,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0887148380279541,-0.7360600233078,0.67107766866684,0.0933723300695419,-0.738501369953156,0.667755365371704,0.0961389243602753,-0.739680707454681,0.66605532169342,0.0941086187958717,-0.739217042922974,0.666859567165375,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0339426137506962,-0.664139866828918,0.746837437152863,0.0552661530673504,-0.702335000038147,0.709697961807251,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0339426137506962,-0.664139866828918,0.746837437152863,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0172380451112986,-0.613386750221252,0.78959459066391,0.542803764343262,-0.499212235212326,0.675389647483826,0.624454081058502,-0.477743476629257,0.617914319038391, +0.586189150810242,-0.475561112165451,0.655914604663849,0.511453092098236,-0.504644155502319,0.695521295070648,0.679702043533325,-0.477342039346695,0.556910812854767,0.721237778663635,-0.468950927257538,0.509804785251617,0.764132022857666,-0.462935894727707,0.449213325977325,0.730969965457916,-0.46271812915802,0.50157231092453,0.764132022857666,-0.462935894727707,0.449213325977325,0.721237778663635,-0.468950927257538,0.509804785251617,0.761715471744537,-0.472965806722641,0.44282391667366,0.796359002590179,-0.469575971364975,0.381196528673172,0.761715471744537,-0.472965806722641,0.44282391667366,0.721237778663635,-0.468950927257538,0.509804785251617,0.659939110279083,-0.463738322257996,0.591123580932617,0.697559654712677,-0.470335394144058,0.540550768375397,0.401788800954819,-0.485980302095413,0.776137173175812,0.444082170724869,-0.495073944330215,0.746788442134857,0.506362795829773,-0.447443544864655,0.737150609493256,0.456888765096664,-0.418798714876175,0.784767687320709,-0.746244609355927,0.371477365493774,-0.552379846572876,-0.68177455663681,0.416619867086411,-0.601341187953949,-0.680759429931641,0.417442411184311,-0.601920664310455,-0.74321174621582,0.370267629623413,-0.557259500026703,0.833628058433533,-0.454055398702621,0.31448045372963,0.806884229183197,-0.447146356105804,0.386002749204636,0.764132022857666,-0.462935894727707,0.449213325977325,0.796359002590179,-0.469575971364975,0.381196528673172,0.599214911460876,-0.449337154626846,0.662599146366119,0.638755440711975,-0.46838766336441,0.610413253307343,0.692995369434357,-0.448745965957642,0.564255654811859,0.654242098331451,-0.423821240663528,0.626372635364532,0.692995369434357,-0.448745965957642,0.564255654811859,0.638755440711975,-0.46838766336441,0.610413253307343,0.679702043533325,-0.477342039346695,0.556910812854767,0.730969965457916,-0.46271812915802,0.50157231092453,0.679702043533325,-0.477342039346695,0.556910812854767,0.638755440711975,-0.46838766336441,0.610413253307343,0.586189150810242,-0.475561112165451,0.655914604663849,0.624454081058502,-0.477743476629257,0.617914319038391, +0.819685816764832,-0.428128093481064,0.38055419921875,0.836326897144318,-0.436528623104095,0.331662505865097,0.862799763679504,-0.420903295278549,0.280029952526093,0.870073080062866,-0.391977846622467,0.298874735832214,0.862799763679504,-0.420903295278549,0.280029952526093,0.836326897144318,-0.436528623104095,0.331662505865097,0.856023550033569,-0.446936100721359,0.259753346443176,0.876990914344788,-0.436529964208603,0.20081926882267,0.769440948963165,-0.361524820327759,0.526555120944977,0.735380947589874,-0.306696802377701,0.604277968406677,0.681010007858276,-0.346068799495697,0.645338535308838,0.717995405197144,-0.391631782054901,0.575419068336487,0.781888365745544,-0.444380909204483,0.437236905097961,0.752130091190338,-0.424689471721649,0.503923773765564,0.692995369434357,-0.448745965957642,0.564255654811859,0.730969965457916,-0.46271812915802,0.50157231092453,0.283904045820236,-0.500032186508179,0.818148016929626,0.344740986824036,-0.487214148044586,0.802356481552124,0.382338970899582,-0.421155482530594,0.822462737560272,0.313730776309967,-0.425255089998245,0.848958790302277,0.506362795829773,-0.447443544864655,0.737150609493256,0.557535648345947,-0.420799851417542,0.71559876203537,0.519807875156403,-0.37946817278862,0.76537823677063,0.456888765096664,-0.418798714876175,0.784767687320709,0.519807875156403,-0.37946817278862,0.76537823677063,0.557535648345947,-0.420799851417542,0.71559876203537,0.614830315113068,-0.38836258649826,0.686409652233124,0.577608168125153,-0.339330613613129,0.742444336414337,0.614830315113068,-0.38836258649826,0.686409652233124,0.557535648345947,-0.420799851417542,0.71559876203537,0.599214911460876,-0.449337154626846,0.662599146366119,0.654242098331451,-0.423821240663528,0.626372635364532,0.607740521430969,-0.227635487914085,0.76081109046936,0.617699444293976,-0.237255468964577,0.749771356582642,0.668188810348511,-0.175476402044296,0.723001897335052,0.65421336889267,-0.165817052125931,0.737908840179443,0.717995405197144,-0.391631782054901,0.575419068336487,0.681010007858276,-0.346068799495697,0.645338535308838, +0.614830315113068,-0.38836258649826,0.686409652233124,0.654242098331451,-0.423821240663528,0.626372635364532,0.769440948963165,-0.361524820327759,0.526555120944977,0.799119651317596,-0.402984946966171,0.446106344461441,0.858110070228577,-0.358776569366455,0.367323517799377,0.837920308113098,-0.30336195230484,0.453718960285187,0.858110070228577,-0.358776569366455,0.367323517799377,0.799119651317596,-0.402984946966171,0.446106344461441,0.819685816764832,-0.428128093481064,0.38055419921875,0.870073080062866,-0.391977846622467,0.298874735832214,0.893979668617249,-0.394452720880508,0.21262001991272,0.891054272651672,-0.395764172077179,0.222245335578918,0.897973716259003,-0.41534024477005,0.145380631089211,0.901660442352295,-0.406466871500015,0.147624731063843,0.897973716259003,-0.41534024477005,0.145380631089211,0.891054272651672,-0.395764172077179,0.222245335578918,0.862799763679504,-0.420903295278549,0.280029952526093,0.876990914344788,-0.436529964208603,0.20081926882267,-0.815006971359253,0.309278428554535,-0.49001070857048,-0.866106688976288,0.252948522567749,-0.43113374710083,-0.877001404762268,0.273719936609268,-0.394900023937225,-0.813092589378357,0.317156821489334,-0.488151550292969,0.696622431278229,-0.237920626997948,0.676838994026184,0.735380947589874,-0.306696802377701,0.604277968406677,0.808620154857635,-0.233222976326942,0.540129959583282,0.769384980201721,-0.151651710271835,0.620522677898407,0.808620154857635,-0.233222976326942,0.540129959583282,0.735380947589874,-0.306696802377701,0.604277968406677,0.769440948963165,-0.361524820327759,0.526555120944977,0.837920308113098,-0.30336195230484,0.453718960285187,0.760018944740295,-0.0105391787365079,0.649815499782562,0.720698118209839,-0.076399140059948,0.689026296138763,0.732249021530151,-0.0923037081956863,0.674752831459045,0.771739065647125,-0.0211929734796286,0.635586023330688,0.952396929264069,-0.302877634763718,0.0347174517810345,0.932711839675903,-0.346269637346268,0.100727051496506,0.933776199817657,-0.348706722259521,0.0804096087813377,0.950812041759491,-0.309176176786423,0.0191461592912674, +0.933776199817657,-0.348706722259521,0.0804096087813377,0.932711839675903,-0.346269637346268,0.100727051496506,0.909937739372253,-0.378480076789856,0.169606015086174,0.915845572948456,-0.376419752836227,0.139768317341805,0.909937739372253,-0.378480076789856,0.169606015086174,0.932711839675903,-0.346269637346268,0.100727051496506,0.932035565376282,-0.323586285114288,0.163100123405457,0.900952756404877,-0.363071292638779,0.237620383501053,0.962175071239471,-0.203448295593262,0.181184977293015,0.929237306118011,-0.27287945151329,0.249107986688614,0.932035565376282,-0.323586285114288,0.163100123405457,0.958916902542114,-0.268308401107788,0.0921365171670914,0.932035565376282,-0.323586285114288,0.163100123405457,0.929237306118011,-0.27287945151329,0.249107986688614,0.892156720161438,-0.324061930179596,0.314706712961197,0.900952756404877,-0.363071292638779,0.237620383501053,0.892156720161438,-0.324061930179596,0.314706712961197,0.929237306118011,-0.27287945151329,0.249107986688614,0.916360676288605,-0.198120176792145,0.347895860671997,0.876031935214996,-0.260045111179352,0.406133592128754,0.978924870491028,-0.191251203417778,-0.0716172531247139,0.967875003814697,-0.250627100467682,-0.0201025549322367,0.965841829776764,-0.257167518138885,-0.0318508334457874,0.977685391902924,-0.195159703493118,-0.0777426362037659,0.965841829776764,-0.257167518138885,-0.0318508334457874,0.967875003814697,-0.250627100467682,-0.0201025549322367,0.952396929264069,-0.302877634763718,0.0347174517810345,0.950812041759491,-0.309176176786423,0.0191461592912674,0.952396929264069,-0.302877634763718,0.0347174517810345,0.967875003814697,-0.250627100467682,-0.0201025549322367,0.977048695087433,-0.210245221853256,0.0342474803328514,0.958916902542114,-0.268308401107788,0.0921365171670914,0.995356321334839,-0.0649463534355164,0.0710470527410507,0.982782006263733,-0.136359050869942,0.124682068824768,0.977048695087433,-0.210245221853256,0.0342474803328514,0.988789319992065,-0.147783517837524,-0.0213430970907211,0.977048695087433,-0.210245221853256,0.0342474803328514, +0.982782006263733,-0.136359050869942,0.124682068824768,0.962175071239471,-0.203448295593262,0.181184977293015,0.958916902542114,-0.268308401107788,0.0921365171670914,0.962175071239471,-0.203448295593262,0.181184977293015,0.982782006263733,-0.136359050869942,0.124682068824768,0.972480237483978,-0.0425272919237614,0.229071453213692,0.951593995094299,-0.117630794644356,0.283957421779633,0.981316268444061,-0.0627036020159721,-0.181897670030594,0.983983874320984,-0.127370923757553,-0.124709121882915,0.983104348182678,-0.128086522221565,-0.130765795707703,0.978673160076141,-0.0664524957537651,-0.194377735257149,0.983104348182678,-0.128086522221565,-0.130765795707703,0.983983874320984,-0.127370923757553,-0.124709121882915,0.978924870491028,-0.191251203417778,-0.0716172531247139,0.977685391902924,-0.195159703493118,-0.0777426362037659,0.978924870491028,-0.191251203417778,-0.0716172531247139,0.983983874320984,-0.127370923757553,-0.124709121882915,0.993958592414856,-0.0808793008327484,-0.0741933137178421,0.988789319992065,-0.147783517837524,-0.0213430970907211,0.995415925979614,0.0910405665636063,-0.0293059181421995,0.999738216400146,0.0112723344936967,0.0199074819684029,0.993958592414856,-0.0808793008327484,-0.0741933137178421,0.992118716239929,-0.00848200358450413,-0.125014007091522,0.993958592414856,-0.0808793008327484,-0.0741933137178421,0.999738216400146,0.0112723344936967,0.0199074819684029,0.995356321334839,-0.0649463534355164,0.0710470527410507,0.988789319992065,-0.147783517837524,-0.0213430970907211,0.995356321334839,-0.0649463534355164,0.0710470527410507,0.999738216400146,0.0112723344936967,0.0199074819684029,0.985108852386475,0.117774486541748,0.125258311629295,0.983691871166229,0.0357370600104332,0.176275476813316,0.952480912208557,0.0736365541815758,-0.295563668012619,0.970815598964691,0.00323633314110339,-0.239805072546005,0.966262876987457,-0.00838364940136671,-0.257421374320984,0.947595715522766,0.0565695948898792,-0.314423590898514,0.966262876987457,-0.00838364940136671,-0.257421374320984,0.970815598964691,0.00323633314110339,-0.239805072546005, +0.981316268444061,-0.0627036020159721,-0.181897670030594,0.978673160076141,-0.0664524957537651,-0.194377735257149,0.981316268444061,-0.0627036020159721,-0.181897670030594,0.970815598964691,0.00323633314110339,-0.239805072546005,0.981865644454956,0.0690517798066139,-0.176555082201958,0.992118716239929,-0.00848200358450413,-0.125014007091522,0.931258499622345,0.227360010147095,-0.284719049930573,0.924600541591644,0.147649690508842,-0.351159900426865,0.887727499008179,0.218531146645546,-0.405196219682693,0.891023457050323,0.30240735411644,-0.338566273450851,0.887727499008179,0.218531146645546,-0.405196219682693,0.924600541591644,0.147649690508842,-0.351159900426865,0.920266687870026,0.128234967589378,-0.369682222604752,0.884512603282928,0.196809485554695,-0.422969728708267,0.920266687870026,0.128234967589378,-0.369682222604752,0.924600541591644,0.147649690508842,-0.351159900426865,0.952480912208557,0.0736365541815758,-0.295563668012619,0.947595715522766,0.0565695948898792,-0.314423590898514,0.95767205953598,0.256459891796112,-0.13073818385601,0.981655955314636,0.173446819186211,-0.0791694596409798,0.981865644454956,0.0690517798066139,-0.176555082201958,0.961841642856598,0.148483201861382,-0.229811429977417,0.981865644454956,0.0690517798066139,-0.176555082201958,0.981655955314636,0.173446819186211,-0.0791694596409798,0.995415925979614,0.0910405665636063,-0.0293059181421995,0.992118716239929,-0.00848200358450413,-0.125014007091522,0.995415925979614,0.0910405665636063,-0.0293059181421995,0.981655955314636,0.173446819186211,-0.0791694596409798,0.957989394664764,0.285421222448349,0.0281246323138475,0.976541996002197,0.201259523630142,0.0765539184212685,0.841935575008392,0.373304575681686,-0.389600247144699,0.843363344669342,0.285134464502335,-0.455452233552933,0.79138857126236,0.350090861320496,-0.501139223575592,0.784067809581757,0.440502256155014,-0.437258958816528,0.79138857126236,0.350090861320496,-0.501139223575592,0.843363344669342,0.285134464502335,-0.455452233552933,0.84236752986908,0.260527282953262,-0.471744269132614, +0.793668508529663,0.323371708393097,-0.515287339687347,0.84236752986908,0.260527282953262,-0.471744269132614,0.843363344669342,0.285134464502335,-0.455452233552933,0.887727499008179,0.218531146645546,-0.405196219682693,0.884512603282928,0.196809485554695,-0.422969728708267,0.878167629241943,0.416062027215958,-0.236037954688072,0.922917187213898,0.338304132223129,-0.183777615427971,0.931258499622345,0.227360010147095,-0.284719049930573,0.891023457050323,0.30240735411644,-0.338566273450851,0.931258499622345,0.227360010147095,-0.284719049930573,0.922917187213898,0.338304132223129,-0.183777615427971,0.95767205953598,0.256459891796112,-0.13073818385601,0.961841642856598,0.148483201861382,-0.229811429977417,0.95767205953598,0.256459891796112,-0.13073818385601,0.922917187213898,0.338304132223129,-0.183777615427971,0.889849781990051,0.450553596019745,-0.0718945562839508,0.929179430007935,0.369009852409363,-0.0213855635374784,0.718789994716644,0.502372741699219,-0.480585783720016,0.731321930885315,0.412949502468109,-0.542808353900909,0.663239121437073,0.46925100684166,-0.583024382591248,0.648189067840576,0.55603015422821,-0.520270645618439,0.663239121437073,0.46925100684166,-0.583024382591248,0.731321930885315,0.412949502468109,-0.542808353900909,0.736534833908081,0.38606920838356,-0.555398046970367,0.669276595115662,0.444175064563751,-0.595631897449493,0.736534833908081,0.38606920838356,-0.555398046970367,0.731321930885315,0.412949502468109,-0.542808353900909,0.79138857126236,0.350090861320496,-0.501139223575592,0.793668508529663,0.323371708393097,-0.515287339687347,0.761472105979919,0.555673122406006,-0.333747833967209,0.82421350479126,0.488665997982025,-0.286142855882645,0.841935575008392,0.373304575681686,-0.389600247144699,0.784067809581757,0.440502256155014,-0.437258958816528,0.841935575008392,0.373304575681686,-0.389600247144699,0.82421350479126,0.488665997982025,-0.286142855882645,0.878167629241943,0.416062027215958,-0.236037954688072,0.891023457050323,0.30240735411644,-0.338566273450851,0.878167629241943,0.416062027215958,-0.236037954688072, +0.82421350479126,0.488665997982025,-0.286142855882645,0.783733367919922,0.597517967224121,-0.169511780142784,0.841037690639496,0.527145326137543,-0.121545694768429,0.570380091667175,0.601023733615875,-0.559854447841644,0.586081206798553,0.51582932472229,-0.624843001365662,0.499634772539139,0.553026556968689,-0.666728377342224,0.483266532421112,0.637818932533264,-0.599700331687927,0.499634772539139,0.553026556968689,-0.666728377342224,0.586081206798553,0.51582932472229,-0.624843001365662,0.591385304927826,0.492674440145493,-0.638384878635406,0.504456698894501,0.530964136123657,-0.680882275104523,0.591385304927826,0.492674440145493,-0.638384878635406,0.586081206798553,0.51582932472229,-0.624843001365662,0.663239121437073,0.46925100684166,-0.583024382591248,0.669276595115662,0.444175064563751,-0.595631897449493,0.618495404720306,0.666654884815216,-0.415974378585815,0.691980302333832,0.615448296070099,-0.377341628074646,0.718789994716644,0.502372741699219,-0.480585783720016,0.648189067840576,0.55603015422821,-0.520270645618439,0.718789994716644,0.502372741699219,-0.480585783720016,0.691980302333832,0.615448296070099,-0.377341628074646,0.761472105979919,0.555673122406006,-0.333747833967209,0.784067809581757,0.440502256155014,-0.437258958816528,0.761472105979919,0.555673122406006,-0.333747833967209,0.691980302333832,0.615448296070099,-0.377341628074646,0.647168278694153,0.717207789421082,-0.258430272340775,0.718414425849915,0.66132652759552,-0.215703219175339,0.39168980717659,0.666319370269775,-0.634505867958069,0.409706890583038,0.581074655056,-0.703201472759247,0.317597717046738,0.601452708244324,-0.733066380023956,0.295942306518555,0.689684629440308,-0.660873174667358,0.317597717046738,0.601452708244324,-0.733066380023956,0.409706890583038,0.581074655056,-0.703201472759247,0.414174735546112,0.559402942657471,-0.718002438545227,0.321832746267319,0.578827202320099,-0.749254763126373,0.414174735546112,0.559402942657471,-0.718002438545227,0.409706890583038,0.581074655056,-0.703201472759247,0.499634772539139,0.553026556968689,-0.666728377342224, +0.504456698894501,0.530964136123657,-0.680882275104523,0.452260971069336,0.746307909488678,-0.488348841667175,0.539259552955627,0.710268139839172,-0.452458024024963,0.570380091667175,0.601023733615875,-0.559854447841644,0.483266532421112,0.637818932533264,-0.599700331687927,0.570380091667175,0.601023733615875,-0.559854447841644,0.539259552955627,0.710268139839172,-0.452458024024963,0.618495404720306,0.666654884815216,-0.415974378585815,0.648189067840576,0.55603015422821,-0.520270645618439,0.618495404720306,0.666654884815216,-0.415974378585815,0.539259552955627,0.710268139839172,-0.452458024024963,0.494096875190735,0.804125189781189,-0.330531150102615,0.572801768779755,0.764351308345795,-0.296083182096481,0.197084307670593,0.709033489227295,-0.677074015140533,0.22279067337513,0.615127444267273,-0.756295263767242,0.12533663213253,0.621041119098663,-0.773691594600677,0.0991671532392502,0.720739364624023,-0.686076402664185,0.12533663213253,0.621041119098663,-0.773691594600677,0.22279067337513,0.615127444267273,-0.756295263767242,0.227020472288132,0.590042173862457,-0.774797976016998,0.129696443676949,0.592461407184601,-0.795090138912201,0.227020472288132,0.590042173862457,-0.774797976016998,0.22279067337513,0.615127444267273,-0.756295263767242,0.317597717046738,0.601452708244324,-0.733066380023956,0.321832746267319,0.578827202320099,-0.749254763126373,0.257429361343384,0.798309743404388,-0.544455409049988,0.35915145277977,0.774681627750397,-0.520460069179535,0.39168980717659,0.666319370269775,-0.634505867958069,0.295942306518555,0.689684629440308,-0.660873174667358,0.39168980717659,0.666319370269775,-0.634505867958069,0.35915145277977,0.774681627750397,-0.520460069179535,0.452260971069336,0.746307909488678,-0.488348841667175,0.483266532421112,0.637818932533264,-0.599700331687927,0.452260971069336,0.746307909488678,-0.488348841667175,0.35915145277977,0.774681627750397,-0.520460069179535,0.317929655313492,0.862894177436829,-0.392854154109955,0.409441828727722,0.836996495723724,-0.363034605979919,0.00141387525945902,0.71882700920105,-0.695187509059906, +0.0240517910569906,0.615848958492279,-0.787497103214264,-0.0745095908641815,0.597803235054016,-0.798172652721405,-0.0927318260073662,0.700167775154114,-0.707930684089661,-0.0745095908641815,0.597803235054016,-0.798172652721405,0.0240517910569906,0.615848958492279,-0.787497103214264,0.0291348565369844,0.584923148155212,-0.810565233230591,-0.0687743648886681,0.567654550075531,-0.820389211177826,0.0291348565369844,0.584923148155212,-0.810565233230591,0.0240517910569906,0.615848958492279,-0.787497103214264,0.12533663213253,0.621041119098663,-0.773691594600677,0.129696443676949,0.592461407184601,-0.795090138912201,0.0603340975940228,0.826625764369965,-0.559508442878723,0.153918206691742,0.816798388957977,-0.556012332439423,0.197084307670593,0.709033489227295,-0.677074015140533,0.0991671532392502,0.720739364624023,-0.686076402664185,0.197084307670593,0.709033489227295,-0.677074015140533,0.153918206691742,0.816798388957977,-0.556012332439423,0.257429361343384,0.798309743404388,-0.544455409049988,0.295942306518555,0.689684629440308,-0.660873174667358,0.257429361343384,0.798309743404388,-0.544455409049988,0.153918206691742,0.816798388957977,-0.556012332439423,0.115516245365143,0.89021909236908,-0.440642595291138,0.216100484132767,0.8814617395401,-0.419911563396454,-0.0460207425057888,0.885126054286957,-0.463070005178452,-0.0266171656548977,0.824205636978149,-0.565664649009705,-0.110308974981308,0.807806670665741,-0.579033970832825,-0.122072242200375,0.873593330383301,-0.471097588539124,-0.110308974981308,0.807806670665741,-0.579033970832825,-0.0266171656548977,0.824205636978149,-0.565664649009705,0.00141387525945902,0.71882700920105,-0.695187509059906,-0.0927318260073662,0.700167775154114,-0.707930684089661,0.00141387525945902,0.71882700920105,-0.695187509059906,-0.0266171656548977,0.824205636978149,-0.565664649009705,0.0603340975940228,0.826625764369965,-0.559508442878723,0.0991671532392502,0.720739364624023,-0.686076402664185,-0.260247379541397,0.529694139957428,-0.807276487350464,-0.168222829699516,0.568801820278168,-0.805087387561798, +-0.16215018928051,0.541046500205994,-0.825212717056274,-0.253558814525604,0.503533065319061,-0.825931191444397,-0.16215018928051,0.541046500205994,-0.825212717056274,-0.168222829699516,0.568801820278168,-0.805087387561798,-0.0745095908641815,0.597803235054016,-0.798172652721405,-0.0687743648886681,0.567654550075531,-0.820389211177826,-0.0745095908641815,0.597803235054016,-0.798172652721405,-0.168222829699516,0.568801820278168,-0.805087387561798,-0.184642806649208,0.667108356952667,-0.7217156291008,-0.0927318260073662,0.700167775154114,-0.707930684089661,-0.206236183643341,0.853951930999756,-0.477737009525299,-0.197715252637863,0.777518630027771,-0.59697014093399,-0.29567077755928,0.734853982925415,-0.610383868217468,-0.305734932422638,0.82171630859375,-0.480945408344269,-0.29567077755928,0.734853982925415,-0.610383868217468,-0.197715252637863,0.777518630027771,-0.59697014093399,-0.184642806649208,0.667108356952667,-0.7217156291008,-0.278666794300079,0.623718798160553,-0.730287492275238,-0.184642806649208,0.667108356952667,-0.7217156291008,-0.197715252637863,0.777518630027771,-0.59697014093399,-0.110308974981308,0.807806670665741,-0.579033970832825,-0.0927318260073662,0.700167775154114,-0.707930684089661,0.179120764136314,0.940421223640442,-0.289004534482956,0.0894456505775452,0.942907631397247,-0.320818692445755,0.0665305480360985,0.979680061340332,-0.189210370182991,0.145446941256523,0.976195991039276,-0.160892963409424,0.0665305480360985,0.979680061340332,-0.189210370182991,0.0894456505775452,0.942907631397247,-0.320818692445755,0.0109201520681381,0.937956869602203,-0.346580147743225,-0.00974548328667879,0.97719269990921,-0.212130784988403,0.0109201520681381,0.937956869602203,-0.346580147743225,0.0894456505775452,0.942907631397247,-0.320818692445755,0.115516245365143,0.89021909236908,-0.440642595291138,0.0306913871318102,0.890658497810364,-0.453635960817337,-0.0853950008749962,0.970623850822449,-0.224937781691551,-0.0637263506650925,0.930471122264862,-0.360780328512192,-0.139876693487167,0.921451449394226,-0.362438768148422, +-0.161752372980118,0.960318565368652,-0.227210402488708,-0.139876693487167,0.921451449394226,-0.362438768148422,-0.0637263506650925,0.930471122264862,-0.360780328512192,-0.0460207425057888,0.885126054286957,-0.463070005178452,-0.122072242200375,0.873593330383301,-0.471097588539124,-0.0460207425057888,0.885126054286957,-0.463070005178452,-0.0637263506650925,0.930471122264862,-0.360780328512192,0.0109201520681381,0.937956869602203,-0.346580147743225,0.0306913871318102,0.890658497810364,-0.453635960817337,-0.435032486915588,0.425925672054291,-0.793305695056915,-0.350330919027328,0.480568528175354,-0.803941607475281,-0.341777682304382,0.455492854118347,-0.822018384933472,-0.42360046505928,0.403470575809479,-0.811032831668854,-0.341777682304382,0.455492854118347,-0.822018384933472,-0.350330919027328,0.480568528175354,-0.803941607475281,-0.260247379541397,0.529694139957428,-0.807276487350464,-0.253558814525604,0.503533065319061,-0.825931191444397,-0.260247379541397,0.529694139957428,-0.807276487350464,-0.350330919027328,0.480568528175354,-0.803941607475281,-0.372895002365112,0.572881281375885,-0.729901611804962,-0.278666794300079,0.623718798160553,-0.730287492275238,-0.407908320426941,0.777762532234192,-0.478222042322159,-0.395785719156265,0.684575915336609,-0.612135112285614,-0.489397644996643,0.629499733448029,-0.60350638628006,-0.501989543437958,0.726572275161743,-0.469147354364395,-0.489397644996643,0.629499733448029,-0.60350638628006,-0.395785719156265,0.684575915336609,-0.612135112285614,-0.372895002365112,0.572881281375885,-0.729901611804962,-0.462735056877136,0.516225874423981,-0.720685064792633,-0.372895002365112,0.572881281375885,-0.729901611804962,-0.395785719156265,0.684575915336609,-0.612135112285614,-0.29567077755928,0.734853982925415,-0.610383868217468,-0.278666794300079,0.623718798160553,-0.730287492275238,-0.240361705422401,0.945226609706879,-0.220845982432365,-0.222561478614807,0.908286511898041,-0.354234516620636,-0.31527903676033,0.884803712368011,-0.34310582280159,-0.321096867322922,0.923266470432281,-0.210892736911774, +-0.31527903676033,0.884803712368011,-0.34310582280159,-0.222561478614807,0.908286511898041,-0.354234516620636,-0.206236183643341,0.853951930999756,-0.477737009525299,-0.305734932422638,0.82171630859375,-0.480945408344269,-0.206236183643341,0.853951930999756,-0.477737009525299,-0.222561478614807,0.908286511898041,-0.354234516620636,-0.139876693487167,0.921451449394226,-0.362438768148422,-0.122072242200375,0.873593330383301,-0.471097588539124,-0.593216180801392,0.306512922048569,-0.744408667087555,-0.514229714870453,0.370153814554214,-0.773662626743317,-0.500773668289185,0.351386338472366,-0.791045784950256,-0.57987517118454,0.29037156701088,-0.761202454566956,-0.500773668289185,0.351386338472366,-0.791045784950256,-0.514229714870453,0.370153814554214,-0.773662626743317,-0.435032486915588,0.425925672054291,-0.793305695056915,-0.42360046505928,0.403470575809479,-0.811032831668854,-0.435032486915588,0.425925672054291,-0.793305695056915,-0.514229714870453,0.370153814554214,-0.773662626743317,-0.546164691448212,0.455898582935333,-0.702752232551575,-0.462735056877136,0.516225874423981,-0.720685064792633,-0.588184535503387,0.669372320175171,-0.453849881887436,-0.575633704662323,0.569017350673676,-0.587252199649811,-0.656933128833771,0.500306248664856,-0.564032435417175,-0.668926358222961,0.604226052761078,-0.432952880859375,-0.656933128833771,0.500306248664856,-0.564032435417175,-0.575633704662323,0.569017350673676,-0.587252199649811,-0.546164691448212,0.455898582935333,-0.702752232551575,-0.626207113265991,0.388383746147156,-0.67603462934494,-0.546164691448212,0.455898582935333,-0.702752232551575,-0.575633704662323,0.569017350673676,-0.587252199649811,-0.489397644996643,0.629499733448029,-0.60350638628006,-0.462735056877136,0.516225874423981,-0.720685064792633,-0.403838366270065,0.892540812492371,-0.20071280002594,-0.410055488348007,0.848762631416321,-0.333850979804993,-0.500174820423126,0.803229749202728,-0.323492020368576,-0.486889660358429,0.853006660938263,-0.18793061375618,-0.500174820423126,0.803229749202728,-0.323492020368576, +-0.410055488348007,0.848762631416321,-0.333850979804993,-0.407908320426941,0.777762532234192,-0.478222042322159,-0.501989543437958,0.726572275161743,-0.469147354364395,-0.407908320426941,0.777762532234192,-0.478222042322159,-0.410055488348007,0.848762631416321,-0.333850979804993,-0.31527903676033,0.884803712368011,-0.34310582280159,-0.305734932422638,0.82171630859375,-0.480945408344269,-0.736890554428101,0.123637206852436,-0.664609730243683,-0.670958399772644,0.223740637302399,-0.706933438777924,-0.659385681152344,0.208390742540359,-0.722345948219299,-0.727322399616241,0.10787907987833,-0.677764236927032,-0.659385681152344,0.208390742540359,-0.722345948219299,-0.670958399772644,0.223740637302399,-0.706933438777924,-0.593216180801392,0.306512922048569,-0.744408667087555,-0.57987517118454,0.29037156701088,-0.761202454566956,-0.593216180801392,0.306512922048569,-0.744408667087555,-0.670958399772644,0.223740637302399,-0.706933438777924,-0.702655971050262,0.306119441986084,-0.642312705516815,-0.626207113265991,0.388383746147156,-0.67603462934494,-0.745279967784882,0.528198421001434,-0.406895846128464,-0.733676075935364,0.41961395740509,-0.534456372261047,-0.803265273571014,0.325352013111115,-0.498909831047058,-0.81654679775238,0.438992261886597,-0.374882847070694,-0.803265273571014,0.325352013111115,-0.498909831047058,-0.733676075935364,0.41961395740509,-0.534456372261047,-0.702655971050262,0.306119441986084,-0.642312705516815,-0.769560873508453,0.207985609769821,-0.603753268718719,-0.702655971050262,0.306119441986084,-0.642312705516815,-0.733676075935364,0.41961395740509,-0.534456372261047,-0.656933128833771,0.500306248664856,-0.564032435417175,-0.626207113265991,0.388383746147156,-0.67603462934494,-0.564300417900085,0.807275533676147,-0.172833397984505,-0.583394885063171,0.751233577728271,-0.308704674243927,-0.660831570625305,0.692164957523346,-0.290188372135162,-0.636554539203644,0.754995107650757,-0.157418668270111,-0.660831570625305,0.692164957523346,-0.290188372135162,-0.583394885063171,0.751233577728271,-0.308704674243927, +-0.588184535503387,0.669372320175171,-0.453849881887436,-0.668926358222961,0.604226052761078,-0.432952880859375,-0.588184535503387,0.669372320175171,-0.453849881887436,-0.583394885063171,0.751233577728271,-0.308704674243927,-0.500174820423126,0.803229749202728,-0.323492020368576,-0.501989543437958,0.726572275161743,-0.469147354364395,-0.247400805354118,0.964831352233887,-0.0888433903455734,-0.247328028082848,0.961627304553986,-0.118751138448715,-0.320006519556046,0.940107226371765,-0.117448754608631,-0.318148761987686,0.943682968616486,-0.090794712305069,-0.320006519556046,0.940107226371765,-0.117448754608631,-0.247328028082848,0.961627304553986,-0.118751138448715,-0.240361705422401,0.945226609706879,-0.220845982432365,-0.321096867322922,0.923266470432281,-0.210892736911774,-0.240361705422401,0.945226609706879,-0.220845982432365,-0.247328028082848,0.961627304553986,-0.118751138448715,-0.174514785408974,0.977853834629059,-0.115526609122753,-0.161752372980118,0.960318565368652,-0.227210402488708,-0.391484379768372,0.916363656520844,-0.0837716683745384,-0.39510852098465,0.912105083465576,-0.109333075582981,-0.471571117639542,0.876666724681854,-0.0952693372964859,-0.465701520442963,0.882141530513763,-0.0703453943133354,-0.471571117639542,0.876666724681854,-0.0952693372964859,-0.39510852098465,0.912105083465576,-0.109333075582981,-0.403838366270065,0.892540812492371,-0.20071280002594,-0.486889660358429,0.853006660938263,-0.18793061375618,-0.403838366270065,0.892540812492371,-0.20071280002594,-0.39510852098465,0.912105083465576,-0.109333075582981,-0.320006519556046,0.940107226371765,-0.117448754608631,-0.321096867322922,0.923266470432281,-0.210892736911774,-0.0853950008749962,0.970623850822449,-0.224937781691551,-0.102393694221973,0.988690316677094,-0.109575875103474,-0.0293397922068834,0.994452714920044,-0.101010054349899,-0.00974548328667879,0.97719269990921,-0.212130784988403,-0.0293397922068834,0.994452714920044,-0.101010054349899,-0.102393694221973,0.988690316677094,-0.109575875103474,-0.107730634510517,0.991324603557587,-0.0752976313233376, +-0.0366612002253532,0.996991217136383,-0.0682976916432381,-0.107730634510517,0.991324603557587,-0.0752976313233376,-0.102393694221973,0.988690316677094,-0.109575875103474,-0.174514785408974,0.977853834629059,-0.115526609122753,-0.177220210433006,0.980723559856415,-0.082305409014225,-0.534829676151276,0.843019902706146,-0.0572249218821526,-0.542549610137939,0.836125791072845,-0.0808302834630013,-0.609835147857666,0.789600133895874,-0.0680638402700424,-0.600965142250061,0.797970652580261,-0.0456459000706673,-0.609835147857666,0.789600133895874,-0.0680638402700424,-0.542549610137939,0.836125791072845,-0.0808302834630013,-0.564300417900085,0.807275533676147,-0.172833397984505,-0.636554539203644,0.754995107650757,-0.157418668270111,-0.564300417900085,0.807275533676147,-0.172833397984505,-0.542549610137939,0.836125791072845,-0.0808302834630013,-0.471571117639542,0.876666724681854,-0.0952693372964859,-0.486889660358429,0.853006660938263,-0.18793061375618,0.119121521711349,0.990518450737,-0.0684339329600334,0.0452298223972321,0.995095789432526,-0.0879694670438766,0.0372525081038475,0.997578978538513,-0.0587234906852245,0.110974431037903,0.99294102191925,-0.0418656207621098,0.0372525081038475,0.997578978538513,-0.0587234906852245,0.0452298223972321,0.995095789432526,-0.0879694670438766,-0.0293397922068834,0.994452714920044,-0.101010054349899,-0.0366612002253532,0.996991217136383,-0.0682976916432381,-0.0293397922068834,0.994452714920044,-0.101010054349899,0.0452298223972321,0.995095789432526,-0.0879694670438766,0.0665305480360985,0.979680061340332,-0.189210370182991,-0.00974548328667879,0.97719269990921,-0.212130784988403,0.357482701539993,0.904777407646179,-0.231481924653053,0.271441668272018,0.926925778388977,-0.259090662002563,0.22495898604393,0.965238213539124,-0.133073344826698,0.302448570728302,0.947197198867798,-0.10649997740984,0.22495898604393,0.965238213539124,-0.133073344826698,0.271441668272018,0.926925778388977,-0.259090662002563,0.179120764136314,0.940421223640442,-0.289004534482956,0.145446941256523,0.976195991039276,-0.160892963409424, +0.179120764136314,0.940421223640442,-0.289004534482956,0.271441668272018,0.926925778388977,-0.259090662002563,0.317929655313492,0.862894177436829,-0.392854154109955,0.216100484132767,0.8814617395401,-0.419911563396454,0.259150266647339,0.965677917003632,-0.0175296701490879,0.190349489450455,0.980754435062408,-0.0434471182525158,0.180351257324219,0.983444690704346,-0.0176067836582661,0.245376110076904,0.969399392604828,0.00744323572143912,0.180351257324219,0.983444690704346,-0.0176067836582661,0.190349489450455,0.980754435062408,-0.0434471182525158,0.119121521711349,0.990518450737,-0.0684339329600334,0.110974431037903,0.99294102191925,-0.0418656207621098,0.119121521711349,0.990518450737,-0.0684339329600334,0.190349489450455,0.980754435062408,-0.0434471182525158,0.22495898604393,0.965238213539124,-0.133073344826698,0.145446941256523,0.976195991039276,-0.160892963409424,0.514174044132233,0.840704798698425,-0.169824913144112,0.438212215900421,0.875887393951416,-0.201968491077423,0.377480417490005,0.922581970691681,-0.0796933025121689,0.449486941099167,0.891828536987305,-0.0510226227343082,0.377480417490005,0.922581970691681,-0.0796933025121689,0.438212215900421,0.875887393951416,-0.201968491077423,0.357482701539993,0.904777407646179,-0.231481924653053,0.302448570728302,0.947197198867798,-0.10649997740984,0.357482701539993,0.904777407646179,-0.231481924653053,0.438212215900421,0.875887393951416,-0.201968491077423,0.494096875190735,0.804125189781189,-0.330531150102615,0.409441828727722,0.836996495723724,-0.363034605979919,0.396079748868942,0.917660892009735,0.0319283008575439,0.327474176883698,0.944837749004364,0.00650440761819482,0.310467660427094,0.950112998485565,0.0299160797148943,0.378423035144806,0.924041867256165,0.0542464330792427,0.310467660427094,0.950112998485565,0.0299160797148943,0.327474176883698,0.944837749004364,0.00650440761819482,0.259150266647339,0.965677917003632,-0.0175296701490879,0.245376110076904,0.969399392604828,0.00744323572143912,0.259150266647339,0.965677917003632,-0.0175296701490879,0.327474176883698,0.944837749004364,0.00650440761819482, +0.377480417490005,0.922581970691681,-0.0796933025121689,0.302448570728302,0.947197198867798,-0.10649997740984,0.657213926315308,0.747902154922485,-0.0933397337794304,0.586880683898926,0.798507213592529,-0.134004518389702,0.518908321857452,0.854644775390625,-0.0177867151796818,0.585924804210663,0.810103178024292,0.0206156149506569,0.518908321857452,0.854644775390625,-0.0177867151796818,0.586880683898926,0.798507213592529,-0.134004518389702,0.514174044132233,0.840704798698425,-0.169824913144112,0.449486941099167,0.891828536987305,-0.0510226227343082,0.514174044132233,0.840704798698425,-0.169824913144112,0.586880683898926,0.798507213592529,-0.134004518389702,0.647168278694153,0.717207789421082,-0.258430272340775,0.572801768779755,0.764351308345795,-0.296083182096481,0.526554584503174,0.844215452671051,0.100202545523643,0.463158965110779,0.884012162685394,0.0632945820689201,0.446017384529114,0.890927612781525,0.0855365321040154,0.508826851844788,0.852119743824005,0.122422076761723,0.446017384529114,0.890927612781525,0.0855365321040154,0.463158965110779,0.884012162685394,0.0632945820689201,0.396079748868942,0.917660892009735,0.0319283008575439,0.378423035144806,0.924041867256165,0.0542464330792427,0.396079748868942,0.917660892009735,0.0319283008575439,0.463158965110779,0.884012162685394,0.0632945820689201,0.518908321857452,0.854644775390625,-0.0177867151796818,0.449486941099167,0.891828536987305,-0.0510226227343082,0.780999660491943,0.62450909614563,-0.00528780138120055,0.722512781620026,0.689560830593109,-0.0498121045529842,0.648475527763367,0.758762121200562,0.0613143667578697,0.705668330192566,0.701148450374603,0.102093853056431,0.648475527763367,0.758762121200562,0.0613143667578697,0.722512781620026,0.689560830593109,-0.0498121045529842,0.657213926315308,0.747902154922485,-0.0933397337794304,0.585924804210663,0.810103178024292,0.0206156149506569,0.657213926315308,0.747902154922485,-0.0933397337794304,0.722512781620026,0.689560830593109,-0.0498121045529842,0.783733367919922,0.597517967224121,-0.169511780142784,0.718414425849915,0.66132652759552,-0.215703219175339, +0.639467537403107,0.748440086841583,0.175836846232414,0.585065186023712,0.799091517925262,0.138388901948929,0.565928101539612,0.808860540390015,0.159593656659126,0.619027674198151,0.760620474815369,0.195604667067528,0.565928101539612,0.808860540390015,0.159593656659126,0.585065186023712,0.799091517925262,0.138388901948929,0.526554584503174,0.844215452671051,0.100202545523643,0.508826851844788,0.852119743824005,0.122422076761723,0.526554584503174,0.844215452671051,0.100202545523643,0.585065186023712,0.799091517925262,0.138388901948929,0.648475527763367,0.758762121200562,0.0613143667578697,0.585924804210663,0.810103178024292,0.0206156149506569,0.875840425491333,0.474394619464874,0.0886185243725777,0.832585573196411,0.552391409873962,0.0408043377101421,0.758039176464081,0.635898172855377,0.144948333501816,0.803019165992737,0.564331293106079,0.191547334194183,0.758039176464081,0.635898172855377,0.144948333501816,0.832585573196411,0.552391409873962,0.0408043377101421,0.780999660491943,0.62450909614563,-0.00528780138120055,0.705668330192566,0.701148450374603,0.102093853056431,0.780999660491943,0.62450909614563,-0.00528780138120055,0.832585573196411,0.552391409873962,0.0408043377101421,0.889849781990051,0.450553596019745,-0.0718945562839508,0.841037690639496,0.527145326137543,-0.121545694768429,0.737169086933136,0.623049855232239,0.261515974998474,0.691290676593781,0.689502477645874,0.216109782457352,0.670462191104889,0.703804075717926,0.23481959104538,0.717418372631073,0.638071298599243,0.279599785804749,0.670462191104889,0.703804075717926,0.23481959104538,0.691290676593781,0.689502477645874,0.216109782457352,0.639467537403107,0.748440086841583,0.175836846232414,0.619027674198151,0.760620474815369,0.195604667067528,0.639467537403107,0.748440086841583,0.175836846232414,0.691290676593781,0.689502477645874,0.216109782457352,0.758039176464081,0.635898172855377,0.144948333501816,0.705668330192566,0.701148450374603,0.102093853056431,0.93259471654892,0.310945987701416,0.183247715234756,0.909105956554413,0.393671125173569,0.136196419596672, +0.838186919689178,0.490378022193909,0.238688111305237,0.865068197250366,0.413032591342926,0.284712255001068,0.838186919689178,0.490378022193909,0.238688111305237,0.909105956554413,0.393671125173569,0.136196419596672,0.875840425491333,0.474394619464874,0.0886185243725777,0.803019165992737,0.564331293106079,0.191547334194183,0.875840425491333,0.474394619464874,0.0886185243725777,0.909105956554413,0.393671125173569,0.136196419596672,0.957989394664764,0.285421222448349,0.0281246323138475,0.929179430007935,0.369009852409363,-0.0213855635374784,0.801302015781403,0.483456552028656,0.352398723363876,0.773092985153198,0.55461984872818,0.307772725820541,0.754349648952484,0.570044219493866,0.325585842132568,0.782713651657104,0.500744521617889,0.369613587856293,0.754349648952484,0.570044219493866,0.325585842132568,0.773092985153198,0.55461984872818,0.307772725820541,0.737169086933136,0.623049855232239,0.261515974998474,0.717418372631073,0.638071298599243,0.279599785804749,0.737169086933136,0.623049855232239,0.261515974998474,0.773092985153198,0.55461984872818,0.307772725820541,0.838186919689178,0.490378022193909,0.238688111305237,0.803019165992737,0.564331293106079,0.191547334194183,0.948792994022369,0.142214477062225,0.282076299190521,0.94608873128891,0.226721525192261,0.231329470872879,0.883519172668457,0.330919593572617,0.331490814685822,0.890902698040009,0.246582344174385,0.381430923938751,0.883519172668457,0.330919593572617,0.331490814685822,0.94608873128891,0.226721525192261,0.231329470872879,0.93259471654892,0.310945987701416,0.183247715234756,0.865068197250366,0.413032591342926,0.284712255001068,0.93259471654892,0.310945987701416,0.183247715234756,0.94608873128891,0.226721525192261,0.231329470872879,0.985108852386475,0.117774486541748,0.125258311629295,0.976541996002197,0.201259523630142,0.0765539184212685,0.835202932357788,0.321155816316605,0.446424722671509,0.82326352596283,0.405250370502472,0.397503823041916,0.80550342798233,0.424065589904785,0.413923293352127,0.819191634654999,0.338610649108887,0.462890714406967,0.80550342798233,0.424065589904785,0.413923293352127, +0.82326352596283,0.405250370502472,0.397503823041916,0.801302015781403,0.483456552028656,0.352398723363876,0.782713651657104,0.500744521617889,0.369613587856293,0.801302015781403,0.483456552028656,0.352398723363876,0.82326352596283,0.405250370502472,0.397503823041916,0.883519172668457,0.330919593572617,0.331490814685822,0.865068197250366,0.413032591342926,0.284712255001068,0.92164021730423,-0.0199242029339075,0.387533813714981,0.940581858158112,0.0603803135454655,0.334155589342117,0.886175215244293,0.164691090583801,0.433093816041946,0.870449364185333,0.0830996334552765,0.485193192958832,0.886175215244293,0.164691090583801,0.433093816041946,0.940581858158112,0.0603803135454655,0.334155589342117,0.948792994022369,0.142214477062225,0.282076299190521,0.890902698040009,0.246582344174385,0.381430923938751,0.948792994022369,0.142214477062225,0.282076299190521,0.940581858158112,0.0603803135454655,0.334155589342117,0.972480237483978,-0.0425272919237614,0.229071453213692,0.983691871166229,0.0357370600104332,0.176275476813316,0.820317029953003,0.158004492521286,0.54964941740036,0.833660960197449,0.238616421818733,0.498067796230316,0.818186044692993,0.254074037075043,0.515769362449646,0.804510533809662,0.173809736967087,0.56793749332428,0.818186044692993,0.254074037075043,0.515769362449646,0.833660960197449,0.238616421818733,0.498067796230316,0.835202932357788,0.321155816316605,0.446424722671509,0.819191634654999,0.338610649108887,0.462890714406967,0.835202932357788,0.321155816316605,0.446424722671509,0.833660960197449,0.238616421818733,0.498067796230316,0.886175215244293,0.164691090583801,0.433093816041946,0.890902698040009,0.246582344174385,0.381430923938751,0.848035275936127,-0.180256187915802,0.498341172933578,0.887793838977814,-0.108413584530354,0.447290182113647,0.841695487499237,-0.00998861342668533,0.539860129356384,0.806958973407745,-0.0900640487670898,0.583699882030487,0.841695487499237,-0.00998861342668533,0.539860129356384,0.887793838977814,-0.108413584530354,0.447290182113647,0.92164021730423,-0.0199242029339075,0.387533813714981, +0.870449364185333,0.0830996334552765,0.485193192958832,0.92164021730423,-0.0199242029339075,0.387533813714981,0.887793838977814,-0.108413584530354,0.447290182113647,0.916360676288605,-0.198120176792145,0.347895860671997,0.951593995094299,-0.117630794644356,0.283957421779633,0.841695487499237,-0.00998861342668533,0.539860129356384,0.79884797334671,0.0667911320924759,0.597813487052917,0.771739065647125,-0.0211929734796286,0.635586023330688,0.806958973407745,-0.0900640487670898,0.583699882030487,0.771739065647125,-0.0211929734796286,0.635586023330688,0.79884797334671,0.0667911320924759,0.597813487052917,0.785791516304016,0.0801931917667389,0.61327064037323,0.760018944740295,-0.0105391787365079,0.649815499782562,0.785791516304016,0.0801931917667389,0.61327064037323,0.79884797334671,0.0667911320924759,0.597813487052917,0.820317029953003,0.158004492521286,0.54964941740036,0.804510533809662,0.173809736967087,0.56793749332428,0.806958973407745,-0.0900640487670898,0.583699882030487,0.769384980201721,-0.151651710271835,0.620522677898407,0.808620154857635,-0.233222976326942,0.540129959583282,0.848035275936127,-0.180256187915802,0.498341172933578,0.332151532173157,-0.631217420101166,-0.700885057449341,0.31896248459816,-0.649161458015442,-0.690544903278351,0.320822417736053,-0.646670341491699,-0.692018985748291,0.332151561975479,-0.631217420101166,-0.700885117053986,0.856023550033569,-0.446936100721359,0.259753346443176,0.833628058433533,-0.454055398702621,0.31448045372963,0.852851033210754,-0.460834324359894,0.245513364672661,0.87469071149826,-0.446987152099609,0.187399595975876,0.65421336889267,-0.165817052125931,0.737908840179443,0.668188810348511,-0.175476402044296,0.723001897335052,0.732249021530151,-0.0923037081956863,0.674752831459045,0.720698118209839,-0.076399140059948,0.689026296138763,0.643299579620361,-0.285868614912033,0.710242748260498,0.617699444293976,-0.237255468964577,0.749771356582642,0.556985139846802,-0.297771066427231,0.775306344032288,0.577608168125153,-0.339330613613129,0.742444336414337,0.556985139846802,-0.297771066427231,0.775306344032288, +0.617699444293976,-0.237255468964577,0.749771356582642,0.607740521430969,-0.227635487914085,0.76081109046936,0.549617171287537,-0.289963215589523,0.783480823040009,0.519807875156403,-0.37946817278862,0.76537823677063,0.499127447605133,-0.344298601150513,0.795192003250122,0.444655239582062,-0.372629851102829,0.814511239528656,0.456888765096664,-0.418798714876175,0.784767687320709,0.444655239582062,-0.372629851102829,0.814511239528656,0.499127447605133,-0.344298601150513,0.795192003250122,0.495314240455627,-0.334812253713608,0.801601231098175,0.439857572317123,-0.36407145857811,0.820961177349091,0.495314240455627,-0.334812253713608,0.801601231098175,0.499127447605133,-0.344298601150513,0.795192003250122,0.556985139846802,-0.297771066427231,0.775306344032288,0.549617171287537,-0.289963215589523,0.783480823040009,0.382338970899582,-0.421155482530594,0.822462737560272,0.382387578487396,-0.391030311584473,0.837182819843292,0.313335865736008,-0.403007626533508,0.859886884689331,0.313730776309967,-0.425255089998245,0.848958790302277,0.313335865736008,-0.403007626533508,0.859886884689331,0.382387578487396,-0.391030311584473,0.837182819843292,0.380015999078751,-0.383973598480225,0.841517806053162,0.315648436546326,-0.398545742034912,0.86111980676651,0.380015999078751,-0.383973598480225,0.841517806053162,0.382387578487396,-0.391030311584473,0.837182819843292,0.444655239582062,-0.372629851102829,0.814511239528656,0.439857572317123,-0.36407145857811,0.820961177349091,0.175832226872444,-0.520594954490662,0.835502207279205,0.228518217802048,-0.511639416217804,0.828253924846649,0.249737083911896,-0.430089026689529,0.867556691169739,0.188580513000488,-0.436514109373093,0.879711747169495,0.249737083911896,-0.430089026689529,0.867556691169739,0.249733299016953,-0.413002461194992,0.875820875167847,0.188823118805885,-0.425177872180939,0.885194659233093,0.188580513000488,-0.436514109373093,0.879711747169495,0.188823118805885,-0.425177872180939,0.885194659233093,0.249733299016953,-0.413002461194992,0.875820875167847,0.253294736146927,-0.410641461610794,0.875908315181732, +0.191680267453194,-0.424432039260864,0.884938478469849,0.253294736146927,-0.410641461610794,0.875908315181732,0.249733299016953,-0.413002461194992,0.875820875167847,0.313335865736008,-0.403007626533508,0.859886884689331,0.315648436546326,-0.398545742034912,0.86111980676651,0.0596204027533531,-0.453271239995956,0.889376521110535,0.0651199147105217,-0.538973927497864,0.839801430702209,0.120851531624794,-0.529502272605896,0.839656054973602,0.124484948813915,-0.44426640868187,0.887203991413116,0.124484948813915,-0.44426640868187,0.887203991413116,0.122266829013824,-0.438016623258591,0.890613436698914,0.0547015890479088,-0.442984223365784,0.89485901594162,0.0596204027533531,-0.453271239995956,0.889376521110535,0.0547015890479088,-0.442984223365784,0.89485901594162,0.122266829013824,-0.438016623258591,0.890613436698914,0.122714415192604,-0.438660562038422,0.890234887599945,0.0511880703270435,-0.442237854003906,0.895435869693756,0.122714415192604,-0.438660562038422,0.890234887599945,0.122266829013824,-0.438016623258591,0.890613436698914,0.188823118805885,-0.425177872180939,0.885194659233093,0.191680267453194,-0.424432039260864,0.884938478469849,-0.142809644341469,-0.489621996879578,0.860160291194916,-0.191549643874168,-0.501517474651337,0.843675851821899,-0.14632111787796,-0.584464251995087,0.798117637634277,-0.104750357568264,-0.574085056781769,0.812067568302155,-0.0908437892794609,0.949721157550812,-0.299628227949142,-0.108443900942802,0.930269300937653,-0.350483745336533,-0.108887553215027,0.929703533649445,-0.351844936609268,-0.0899063795804977,0.95060122013092,-0.297109663486481,-0.0112791266292334,-0.439287006855011,0.898275911808014,-0.00962775014340878,-0.443623781204224,0.896161437034607,0.0547015890479088,-0.442984223365784,0.89485901594162,0.0511880703270435,-0.442237854003906,0.895435869693756,-0.00469926744699478,-0.621390581130981,0.783486843109131,-0.0227747615426779,-0.551540315151215,0.83383721113205,-0.0580516494810581,-0.560424506664276,0.826168477535248,-0.0365387871861458,-0.630775094032288,0.775104999542236, +-0.0421829670667648,-0.467899739742279,0.882774293422699,-0.0037532348651439,-0.462602734565735,0.886557698249817,-0.00962775014340878,-0.443623781204224,0.896161437034607,-0.0475826002657413,-0.444023489952087,0.894750893115997,-0.146074652671814,-0.459408044815063,0.876131474971771,-0.0860291048884392,-0.447738409042358,0.890016496181488,-0.0856623873114586,-0.440617859363556,0.893598258495331,-0.143043383955956,-0.454935699701309,0.878960788249969,-0.186330661177635,-0.592158198356628,0.78398323059082,-0.239478275179863,-0.513941645622253,0.823719620704651,-0.291056603193283,-0.523904025554657,0.800506472587585,-0.229851886630058,-0.598201870918274,0.767673492431641,-0.253354370594025,-0.474762231111526,0.842859625816345,-0.197569400072098,-0.470081925392151,0.860226333141327,-0.198394626379013,-0.468401581048965,0.860952734947205,-0.257921993732452,-0.47106671333313,0.843547523021698,-0.198394626379013,-0.468401581048965,0.860952734947205,-0.197569400072098,-0.470081925392151,0.860226333141327,-0.146074652671814,-0.459408044815063,0.876131474971771,-0.143043383955956,-0.454935699701309,0.878960788249969,-0.146074652671814,-0.459408044815063,0.876131474971771,-0.197569400072098,-0.470081925392151,0.860226333141327,-0.191549643874168,-0.501517474651337,0.843675851821899,-0.142809644341469,-0.489621996879578,0.860160291194916,-0.276363015174866,-0.60367214679718,0.747798919677734,-0.344437569379807,-0.531491875648499,0.773872911930084,-0.400741964578629,-0.540269315242767,0.73994243144989,-0.327763140201569,-0.607410490512848,0.723618507385254,-0.369443595409393,-0.47899341583252,0.796289443969727,-0.312162697315216,-0.476809293031693,0.821709930896759,-0.317063689231873,-0.470928460359573,0.82322359085083,-0.371925204992294,-0.471991509199142,0.799309432506561,-0.317063689231873,-0.470928460359573,0.82322359085083,-0.312162697315216,-0.476809293031693,0.821709930896759,-0.253354370594025,-0.474762231111526,0.842859625816345,-0.257921993732452,-0.47106671333313,0.843547523021698,-0.253354370594025,-0.474762231111526,0.842859625816345, +-0.312162697315216,-0.476809293031693,0.821709930896759,-0.291056603193283,-0.523904025554657,0.800506472587585,-0.239478275179863,-0.513941645622253,0.823719620704651,-0.40829735994339,-0.663861036300659,0.626563549041748,-0.395584255456924,-0.638837099075317,0.659848809242249,-0.479258030653,-0.601837158203125,0.638830006122589,-0.495442360639572,-0.643798291683197,0.583147287368774,-0.485695242881775,-0.474673062562943,0.734020054340363,-0.427676647901535,-0.480783492326736,0.76546710729599,-0.426730275154114,-0.470786809921265,0.772179424762726,-0.484629809856415,-0.461276561021805,0.74320787191391,-0.426730275154114,-0.470786809921265,0.772179424762726,-0.427676647901535,-0.480783492326736,0.76546710729599,-0.369443595409393,-0.47899341583252,0.796289443969727,-0.371925204992294,-0.471991509199142,0.799309432506561,-0.369443595409393,-0.47899341583252,0.796289443969727,-0.427676647901535,-0.480783492326736,0.76546710729599,-0.400741964578629,-0.540269315242767,0.73994243144989,-0.344437569379807,-0.531491875648499,0.773872911930084,-0.40829735994339,-0.663861036300659,0.626563549041748,-0.495442360639572,-0.643798291683197,0.583147287368774,-0.514005720615387,-0.674599945545197,0.52982372045517,-0.426441729068756,-0.67831015586853,0.598366737365723,-0.538349449634552,-0.688024818897247,0.486622780561447,-0.571795165538788,-0.680692732334137,0.457938432693481,-0.479769468307495,-0.661267995834351,0.576667785644531,-0.451989978551865,-0.678381443023682,0.579226732254028,-0.587910354137421,-0.418111205101013,0.692491471767426,-0.535411417484283,-0.455697625875473,0.711107790470123,-0.537204384803772,-0.43926802277565,0.720038175582886,-0.5881307721138,-0.400474727153778,0.702653646469116,-0.537204384803772,-0.43926802277565,0.720038175582886,-0.535411417484283,-0.455697625875473,0.711107790470123,-0.485695242881775,-0.474673062562943,0.734020054340363,-0.484629809856415,-0.461276561021805,0.74320787191391,-0.485695242881775,-0.474673062562943,0.734020054340363,-0.535411417484283,-0.455697625875473,0.711107790470123, +-0.537122964859009,-0.508779466152191,0.672787010669708,-0.462378084659576,-0.551173686981201,0.694560408592224,-0.604521632194519,-0.551361799240112,0.574938058853149,-0.551442265510559,-0.568498730659485,0.610508620738983,-0.537122964859009,-0.508779466152191,0.672787010669708,-0.589976191520691,-0.480722337961197,0.64871734380722,-0.537122964859009,-0.508779466152191,0.672787010669708,-0.551442265510559,-0.568498730659485,0.610508620738983,-0.479258030653,-0.601837158203125,0.638830006122589,-0.462378084659576,-0.551173686981201,0.694560408592224,-0.479258030653,-0.601837158203125,0.638830006122589,-0.551442265510559,-0.568498730659485,0.610508620738983,-0.57540762424469,-0.622274160385132,0.530736207962036,-0.495442360639572,-0.643798291683197,0.583147287368774,0.171943947672844,-0.9038245677948,-0.391837179660797,0.283676981925964,-0.895026743412018,-0.344172269105911,0.296047121286392,-0.869268655776978,-0.395888924598694,0.187823235988617,-0.872961461544037,-0.450178593397141,-0.66938841342926,-0.709360897541046,0.220740288496017,-0.638048648834229,-0.7086141705513,0.301263719797134,-0.617504179477692,-0.700288653373718,0.358167976140976,-0.65744823217392,-0.696082890033722,0.288496851921082,-0.617504179477692,-0.700288653373718,0.358167976140976,-0.638048648834229,-0.7086141705513,0.301263719797134,-0.571795165538788,-0.680692732334137,0.457938432693481,-0.538349449634552,-0.688024818897247,0.486622780561447,-0.571795165538788,-0.680692732334137,0.457938432693481,-0.638048648834229,-0.7086141705513,0.301263719797134,-0.649016559123993,-0.724011957645416,0.233632564544678,-0.595205426216125,-0.68846195936203,0.414427995681763,-0.645019173622131,-0.661725461483002,0.382190525531769,-0.598159551620483,-0.669631242752075,0.440226227045059,-0.57540762424469,-0.622274160385132,0.530736207962036,-0.625729024410248,-0.611058354377747,0.484841078519821,-0.57540762424469,-0.622274160385132,0.530736207962036,-0.598159551620483,-0.669631242752075,0.440226227045059,-0.514005720615387,-0.674599945545197,0.52982372045517, +-0.495442360639572,-0.643798291683197,0.583147287368774,-0.514005720615387,-0.674599945545197,0.52982372045517,-0.598159551620483,-0.669631242752075,0.440226227045059,-0.617504179477692,-0.700288653373718,0.358167976140976,-0.538349449634552,-0.688024818897247,0.486622780561447,-0.69608336687088,-0.714668154716492,0.0686835572123528,-0.705497860908508,-0.694082498550415,0.143255904316902,-0.735452234745026,-0.67417573928833,0.0678016245365143,-0.720623970031738,-0.693292081356049,-0.0068796188570559,-0.735452234745026,-0.67417573928833,0.0678016245365143,-0.705497860908508,-0.694082498550415,0.143255904316902,-0.701837062835693,-0.679338276386261,0.214299067854881,-0.738130271434784,-0.659674525260925,0.141397655010223,-0.701837062835693,-0.679338276386261,0.214299067854881,-0.705497860908508,-0.694082498550415,0.143255904316902,-0.66938841342926,-0.709360897541046,0.220740288496017,-0.65744823217392,-0.696082890033722,0.288496851921082,-0.728603780269623,-0.68262904882431,-0.0561620481312275,-0.745784044265747,-0.666071236133575,0.012464702129364,-0.752277851104736,-0.658125877380371,-0.0307952985167503,-0.732806026935577,-0.675643503665924,-0.0806298330426216,-0.752277851104736,-0.658125877380371,-0.0307952985167503,-0.745784044265747,-0.666071236133575,0.012464702129364,-0.753817737102509,-0.651477992534637,0.08564642816782,-0.76663738489151,-0.641198337078094,0.033643152564764,-0.753817737102509,-0.651477992534637,0.08564642816782,-0.745784044265747,-0.666071236133575,0.012464702129364,-0.735452234745026,-0.67417573928833,0.0678016245365143,-0.738130271434784,-0.659674525260925,0.141397655010223,-0.701837062835693,-0.679338276386261,0.214299067854881,-0.699672698974609,-0.642060935497284,0.313394367694855,-0.746380925178528,-0.619045376777649,0.244332477450371,-0.738130271434784,-0.659674525260925,0.141397655010223,-0.746380925178528,-0.619045376777649,0.244332477450371,-0.699672698974609,-0.642060935497284,0.313394367694855,-0.692671358585358,-0.584756731987,0.422215521335602,-0.751390159130096,-0.553865551948547,0.358672469854355, +-0.692671358585358,-0.584756731987,0.422215521335602,-0.699672698974609,-0.642060935497284,0.313394367694855,-0.645019173622131,-0.661725461483002,0.382190525531769,-0.625729024410248,-0.611058354377747,0.484841078519821,-0.753817737102509,-0.651477992534637,0.08564642816782,-0.769535422325134,-0.609962821006775,0.189104527235031,-0.790164768695831,-0.598218441009521,0.133320689201355,-0.76663738489151,-0.641198337078094,0.033643152564764,-0.790164768695831,-0.598218441009521,0.133320689201355,-0.769535422325134,-0.609962821006775,0.189104527235031,-0.782716274261475,-0.540324509143829,0.30887633562088,-0.812692940235138,-0.523456871509552,0.255974739789963,-0.782716274261475,-0.540324509143829,0.30887633562088,-0.769535422325134,-0.609962821006775,0.189104527235031,-0.746380925178528,-0.619045376777649,0.244332477450371,-0.751390159130096,-0.553865551948547,0.358672469854355,-0.749436378479004,-0.471412658691406,0.464881777763367,-0.681457579135895,-0.513396918773651,0.521573722362518,-0.669552743434906,-0.428347855806351,0.606809139251709,-0.740842878818512,-0.373773396015167,0.558072745800018,-0.669552743434906,-0.428347855806351,0.606809139251709,-0.681457579135895,-0.513396918773651,0.521573722362518,-0.604521632194519,-0.551361799240112,0.574938058853149,-0.589976191520691,-0.480722337961197,0.64871734380722,-0.604521632194519,-0.551361799240112,0.574938058853149,-0.681457579135895,-0.513396918773651,0.521573722362518,-0.692671358585358,-0.584756731987,0.422215521335602,-0.625729024410248,-0.611058354377747,0.484841078519821,-0.73035717010498,-0.293996155261993,0.616558790206909,-0.661892235279083,-0.35614675283432,0.659589409828186,-0.656573414802551,-0.337280303239822,0.6746506690979,-0.724414110183716,-0.27280792593956,0.633087635040283,-0.656573414802551,-0.337280303239822,0.6746506690979,-0.661892235279083,-0.35614675283432,0.659589409828186,-0.587910354137421,-0.418111205101013,0.692491471767426,-0.5881307721138,-0.400474727153778,0.702653646469116,-0.587910354137421,-0.418111205101013,0.692491471767426, +-0.661892235279083,-0.35614675283432,0.659589409828186,-0.669552743434906,-0.428347855806351,0.606809139251709,-0.589976191520691,-0.480722337961197,0.64871734380722,-0.805038332939148,-0.202450782060623,0.557608366012573,-0.770061016082764,-0.249317809939384,0.587236523628235,-0.765499174594879,-0.221767872571945,0.604011535644531,-0.797343969345093,-0.168645307421684,0.5794837474823,-0.765499174594879,-0.221767872571945,0.604011535644531,-0.770061016082764,-0.249317809939384,0.587236523628235,-0.73035717010498,-0.293996155261993,0.616558790206909,-0.724414110183716,-0.27280792593956,0.633087635040283,-0.73035717010498,-0.293996155261993,0.616558790206909,-0.770061016082764,-0.249317809939384,0.587236523628235,-0.780074894428253,-0.34274959564209,0.523455619812012,-0.740842878818512,-0.373773396015167,0.558072745800018,-0.782716274261475,-0.540324509143829,0.30887633562088,-0.786443412303925,-0.450318962335587,0.422752320766449,-0.823093593120575,-0.425131350755692,0.376537412405014,-0.812692940235138,-0.523456871509552,0.255974739789963,-0.823093593120575,-0.425131350755692,0.376537412405014,-0.786443412303925,-0.450318962335587,0.422752320766449,-0.780074894428253,-0.34274959564209,0.523455619812012,-0.818539798259735,-0.308393239974976,0.484650760889053,-0.780074894428253,-0.34274959564209,0.523455619812012,-0.786443412303925,-0.450318962335587,0.422752320766449,-0.749436378479004,-0.471412658691406,0.464881777763367,-0.740842878818512,-0.373773396015167,0.558072745800018,-0.899268507957458,-0.081151157617569,0.429803103208542,-0.853722929954529,-0.141011893749237,0.50127100944519,-0.841453611850739,-0.108220033347607,0.529380917549133,-0.889574706554413,-0.0544708371162415,0.453530430793762,-0.841453611850739,-0.108220033347607,0.529380917549133,-0.853722929954529,-0.141011893749237,0.50127100944519,-0.805038332939148,-0.202450782060623,0.557608366012573,-0.797343969345093,-0.168645307421684,0.5794837474823,-0.805038332939148,-0.202450782060623,0.557608366012573,-0.853722929954529,-0.141011893749237,0.50127100944519, +-0.873752653598785,-0.246370017528534,0.419354379177094,-0.818539798259735,-0.308393239974976,0.484650760889053,-0.859706342220306,-0.47694519162178,0.182834297418594,-0.877372264862061,-0.369055986404419,0.306619465351105,-0.923664510250092,-0.301872611045837,0.236044093966484,-0.901884436607361,-0.417058229446411,0.112547941505909,-0.923664510250092,-0.301872611045837,0.236044093966484,-0.877372264862061,-0.369055986404419,0.306619465351105,-0.873752653598785,-0.246370017528534,0.419354379177094,-0.920029401779175,-0.177577450871468,0.349302381277084,-0.873752653598785,-0.246370017528534,0.419354379177094,-0.877372264862061,-0.369055986404419,0.306619465351105,-0.823093593120575,-0.425131350755692,0.376537412405014,-0.818539798259735,-0.308393239974976,0.484650760889053,-0.793124735355377,-0.608313322067261,-0.030136339366436,-0.825988411903381,-0.560300648212433,0.0616962127387524,-0.860593616962433,-0.509266376495361,-0.00514261424541473,-0.820578813552856,-0.564198195934296,-0.0912731662392616,-0.860593616962433,-0.509266376495361,-0.00514261424541473,-0.825988411903381,-0.560300648212433,0.0616962127387524,-0.859706342220306,-0.47694519162178,0.182834297418594,-0.901884436607361,-0.417058229446411,0.112547941505909,-0.859706342220306,-0.47694519162178,0.182834297418594,-0.825988411903381,-0.560300648212433,0.0616962127387524,-0.790164768695831,-0.598218441009521,0.133320689201355,-0.812692940235138,-0.523456871509552,0.255974739789963,-0.769684612751007,-0.628689527511597,-0.111062847077847,-0.773782908916473,-0.627123773097992,-0.0893075242638588,-0.794866979122162,-0.589686274528503,-0.143026128411293,-0.787965953350067,-0.594851016998291,-0.158940076828003,-0.794866979122162,-0.589686274528503,-0.143026128411293,-0.773782908916473,-0.627123773097992,-0.0893075242638588,-0.793124735355377,-0.608313322067261,-0.030136339366436,-0.820578813552856,-0.564198195934296,-0.0912731662392616,-0.793124735355377,-0.608313322067261,-0.030136339366436,-0.773782908916473,-0.627123773097992,-0.0893075242638588,-0.752277851104736,-0.658125877380371,-0.0307952985167503, +-0.76663738489151,-0.641198337078094,0.033643152564764,-0.976194858551025,-0.175322875380516,0.127692595124245,-0.951949059963226,-0.244813710451126,0.184008419513702,-0.947358012199402,-0.119896613061428,0.296880155801773,-0.969369828701019,-0.05037721991539,0.240383639931679,-0.947358012199402,-0.119896613061428,0.296880155801773,-0.951949059963226,-0.244813710451126,0.184008419513702,-0.923664510250092,-0.301872611045837,0.236044093966484,-0.920029401779175,-0.177577450871468,0.349302381277084,-0.923664510250092,-0.301872611045837,0.236044093966484,-0.951949059963226,-0.244813710451126,0.184008419513702,-0.929153323173523,-0.364609599113464,0.0611061155796051,-0.901884436607361,-0.417058229446411,0.112547941505909,-0.839317381381989,-0.525748729705811,-0.138327702879906,-0.884389758110046,-0.463580816984177,-0.0542901195585728,-0.908385515213013,-0.404361307621002,-0.106431648135185,-0.8593590259552,-0.475353062152863,-0.188524588942528,-0.908385515213013,-0.404361307621002,-0.106431648135185,-0.884389758110046,-0.463580816984177,-0.0542901195585728,-0.929153323173523,-0.364609599113464,0.0611061155796051,-0.954302668571472,-0.298781514167786,0.00601912615820765,-0.929153323173523,-0.364609599113464,0.0611061155796051,-0.884389758110046,-0.463580816984177,-0.0542901195585728,-0.860593616962433,-0.509266376495361,-0.00514261424541473,-0.901884436607361,-0.417058229446411,0.112547941505909,-0.948241710662842,0.0431638769805431,0.314602077007294,-0.928055584430695,-0.0259605720639229,0.371535986661911,-0.921356558799744,-0.000266353075858206,0.388718605041504,-0.941102385520935,0.0701934322714806,0.330755650997162,-0.921356558799744,-0.000266353075858206,0.388718605041504,-0.928055584430695,-0.0259605720639229,0.371535986661911,-0.899268507957458,-0.081151157617569,0.429803103208542,-0.889574706554413,-0.0544708371162415,0.453530430793762,-0.899268507957458,-0.081151157617569,0.429803103208542,-0.928055584430695,-0.0259605720639229,0.371535986661911,-0.947358012199402,-0.119896613061428,0.296880155801773,-0.920029401779175,-0.177577450871468,0.349302381277084, +-0.805151998996735,-0.558473408222198,-0.199593842029572,-0.811097919940948,-0.554378390312195,-0.186506628990173,-0.826898038387299,-0.510238766670227,-0.236423283815384,-0.8195920586586,-0.515669405460358,-0.249707564711571,-0.826898038387299,-0.510238766670227,-0.236423283815384,-0.811097919940948,-0.554378390312195,-0.186506628990173,-0.839317381381989,-0.525748729705811,-0.138327702879906,-0.8593590259552,-0.475353062152863,-0.188524588942528,-0.839317381381989,-0.525748729705811,-0.138327702879906,-0.811097919940948,-0.554378390312195,-0.186506628990173,-0.794866979122162,-0.589686274528503,-0.143026128411293,-0.820578813552856,-0.564198195934296,-0.0912731662392616,-0.960481941699982,0.19626422226429,0.197369828820229,-0.959444344043732,0.120867058634758,0.254671812057495,-0.950962603092194,0.146885633468628,0.272203803062439,-0.951243281364441,0.220511198043823,0.215664222836494,-0.950962603092194,0.146885633468628,0.272203803062439,-0.959444344043732,0.120867058634758,0.254671812057495,-0.948241710662842,0.0431638769805431,0.314602077007294,-0.941102385520935,0.0701934322714806,0.330755650997162,-0.948241710662842,0.0431638769805431,0.314602077007294,-0.959444344043732,0.120867058634758,0.254671812057495,-0.983480393886566,0.0308413505554199,0.178367838263512,-0.969369828701019,-0.05037721991539,0.240383639931679,-0.974614024162292,-0.21708832681179,-0.0547758415341377,-0.993611633777618,-0.0920403599739075,0.0653026178479195,-0.999950885772705,-0.00731660192832351,0.0066896821372211,-0.985015332698822,-0.131152883172035,-0.111998207867146,-0.999950885772705,-0.00731660192832351,0.0066896821372211,-0.993611633777618,-0.0920403599739075,0.0653026178479195,-0.983480393886566,0.0308413505554199,0.178367838263512,-0.986513137817383,0.111238181591034,0.120074823498726,-0.983480393886566,0.0308413505554199,0.178367838263512,-0.993611633777618,-0.0920403599739075,0.0653026178479195,-0.976194858551025,-0.175322875380516,0.127692595124245,-0.969369828701019,-0.05037721991539,0.240383639931679,-0.979358196258545,0.191341832280159,0.065160945057869, +-0.952094972133636,0.270136147737503,0.143323391675949,-0.934175670146942,0.34418660402298,0.0940810441970825,-0.962026476860046,0.272541850805283,0.0150333913043141,-0.934175670146942,0.34418660402298,0.0940810441970825,-0.952094972133636,0.270136147737503,0.143323391675949,-0.94238018989563,0.292192071676254,0.162921026349068,-0.924222052097321,0.363963842391968,0.115516379475594,-0.94238018989563,0.292192071676254,0.162921026349068,-0.952094972133636,0.270136147737503,0.143323391675949,-0.960481941699982,0.19626422226429,0.197369828820229,-0.951243281364441,0.220511198043823,0.215664222836494,-0.879428446292877,-0.408120214939117,-0.245037719607353,-0.930319607257843,-0.3280228972435,-0.164031803607941,-0.944476962089539,-0.245073437690735,-0.218865916132927,-0.893487095832825,-0.333851844072342,-0.30037260055542,-0.944476962089539,-0.245073437690735,-0.218865916132927,-0.930319607257843,-0.3280228972435,-0.164031803607941,-0.974614024162292,-0.21708832681179,-0.0547758415341377,-0.985015332698822,-0.131152883172035,-0.111998207867146,-0.974614024162292,-0.21708832681179,-0.0547758415341377,-0.930319607257843,-0.3280228972435,-0.164031803607941,-0.908385515213013,-0.404361307621002,-0.106431648135185,-0.954302668571472,-0.298781514167786,0.00601912615820765,-0.832048654556274,-0.463703066110611,-0.304424583911896,-0.842096447944641,-0.453032642602921,-0.292634665966034,-0.854250907897949,-0.387447863817215,-0.34661141037941,-0.843956053256989,-0.401942163705826,-0.355219155550003,-0.854250907897949,-0.387447863817215,-0.34661141037941,-0.842096447944641,-0.453032642602921,-0.292634665966034,-0.879428446292877,-0.408120214939117,-0.245037719607353,-0.893487095832825,-0.333851844072342,-0.30037260055542,-0.879428446292877,-0.408120214939117,-0.245037719607353,-0.842096447944641,-0.453032642602921,-0.292634665966034,-0.826898038387299,-0.510238766670227,-0.236423283815384,-0.8593590259552,-0.475353062152863,-0.188524588942528,-0.858510673046112,-0.234560817480087,-0.45600488781929,-0.861055910587311,-0.315059244632721,-0.399149477481842, +-0.900376617908478,-0.254474222660065,-0.352937310934067,-0.898228764533997,-0.168878525495529,-0.4057896733284,-0.900376617908478,-0.254474222660065,-0.352937310934067,-0.861055910587311,-0.315059244632721,-0.399149477481842,-0.854250907897949,-0.387447863817215,-0.34661141037941,-0.893487095832825,-0.333851844072342,-0.30037260055542,-0.854250907897949,-0.387447863817215,-0.34661141037941,-0.861055910587311,-0.315059244632721,-0.399149477481842,-0.85174548625946,-0.33085909485817,-0.406278014183044,-0.843956053256989,-0.401942163705826,-0.355219155550003,-0.985378801822662,-0.0422624200582504,-0.165053084492683,-0.995735704898834,0.078937754034996,-0.047741211950779,-0.980983018875122,0.168127328157425,-0.0969824194908142,-0.975569784641266,0.0501002185046673,-0.213900968432426,-0.980983018875122,0.168127328157425,-0.0969824194908142,-0.995735704898834,0.078937754034996,-0.047741211950779,-0.979358196258545,0.191341832280159,0.065160945057869,-0.962026476860046,0.272541850805283,0.0150333913043141,-0.979358196258545,0.191341832280159,0.065160945057869,-0.995735704898834,0.078937754034996,-0.047741211950779,-0.999950885772705,-0.00731660192832351,0.0066896821372211,-0.986513137817383,0.111238181591034,0.120074823498726,-0.932343304157257,0.360445082187653,-0.028553169220686,-0.903263449668884,0.42612037062645,0.0503649152815342,-0.859487175941467,0.510881006717682,0.0167969167232513,-0.890067577362061,0.451685339212418,-0.0613209493458271,-0.859487175941467,0.510881006717682,0.0167969167232513,-0.903263449668884,0.42612037062645,0.0503649152815342,-0.893772423267365,0.442511141300201,0.0731756761670113,-0.851706027984619,0.522664070129395,0.0376687422394753,-0.893772423267365,0.442511141300201,0.0731756761670113,-0.903263449668884,0.42612037062645,0.0503649152815342,-0.934175670146942,0.34418660402298,0.0940810441970825,-0.924222052097321,0.363963842391968,0.115516379475594,-0.945272564888,-0.0663445815443993,-0.319465160369873,-0.94979053735733,-0.157779827713966,-0.270191341638565,-0.985378801822662,-0.0422624200582504,-0.165053084492683, +-0.975569784641266,0.0501002185046673,-0.213900968432426,-0.985378801822662,-0.0422624200582504,-0.165053084492683,-0.94979053735733,-0.157779827713966,-0.270191341638565,-0.944476962089539,-0.245073437690735,-0.218865916132927,-0.985015332698822,-0.131152883172035,-0.111998207867146,-0.944476962089539,-0.245073437690735,-0.218865916132927,-0.94979053735733,-0.157779827713966,-0.270191341638565,-0.900376617908478,-0.254474222660065,-0.352937310934067,-0.893487095832825,-0.333851844072342,-0.30037260055542,-0.816720843315125,-0.0636805444955826,-0.573508381843567,-0.842951416969299,-0.149763241410255,-0.516724109649658,-0.883886814117432,-0.0789119303226471,-0.460995554924011,-0.857020974159241,0.0137089714407921,-0.515099167823792,-0.883886814117432,-0.0789119303226471,-0.460995554924011,-0.842951416969299,-0.149763241410255,-0.516724109649658,-0.858510673046112,-0.234560817480087,-0.45600488781929,-0.898228764533997,-0.168878525495529,-0.4057896733284,-0.858510673046112,-0.234560817480087,-0.45600488781929,-0.842951416969299,-0.149763241410255,-0.516724109649658,-0.832771956920624,-0.165778279304504,-0.528212368488312,-0.849176168441772,-0.250202178955078,-0.465079337358475,-0.954551696777344,0.147012576460838,-0.259265184402466,-0.95468407869339,0.262446969747543,-0.140356346964836,-0.916594743728638,0.358544558286667,-0.176917746663094,-0.921252071857452,0.246230468153954,-0.301106631755829,-0.916594743728638,0.358544558286667,-0.176917746663094,-0.95468407869339,0.262446969747543,-0.140356346964836,-0.932343304157257,0.360445082187653,-0.028553169220686,-0.890067577362061,0.451685339212418,-0.0613209493458271,-0.932343304157257,0.360445082187653,-0.028553169220686,-0.95468407869339,0.262446969747543,-0.140356346964836,-0.980983018875122,0.168127328157425,-0.0969824194908142,-0.962026476860046,0.272541850805283,0.0150333913043141,-0.839566946029663,0.536263227462769,-0.0868857055902481,-0.808725237846375,0.588142871856689,-0.00718138087540865,-0.748026967048645,0.662966072559357,-0.0305241793394089,-0.778186678886414,0.617611408233643,-0.113936528563499, +-0.748026967048645,0.662966072559357,-0.0305241793394089,-0.808725237846375,0.588142871856689,-0.00718138087540865,-0.801667094230652,0.597667634487152,0.0110993152484298,-0.739707827568054,0.672834992408752,-0.0111969457939267,-0.801667094230652,0.597667634487152,0.0110993152484298,-0.808725237846375,0.588142871856689,-0.00718138087540865,-0.859487175941467,0.510881006717682,0.0167969167232513,-0.851706027984619,0.522664070129395,0.0376687422394753,-0.900184631347656,0.127867221832275,-0.416314214468002,-0.92915153503418,0.0292611476033926,-0.368539333343506,-0.954551696777344,0.147012576460838,-0.259265184402466,-0.921252071857452,0.246230468153954,-0.301106631755829,-0.954551696777344,0.147012576460838,-0.259265184402466,-0.92915153503418,0.0292611476033926,-0.368539333343506,-0.945272564888,-0.0663445815443993,-0.319465160369873,-0.975569784641266,0.0501002185046673,-0.213900968432426,-0.945272564888,-0.0663445815443993,-0.319465160369873,-0.92915153503418,0.0292611476033926,-0.368539333343506,-0.883886814117432,-0.0789119303226471,-0.460995554924011,-0.898228764533997,-0.168878525495529,-0.4057896733284,-0.736890554428101,0.123637206852436,-0.664609730243683,-0.78328537940979,0.0255078952759504,-0.621138870716095,-0.81995677947998,0.108194269239902,-0.562107503414154,-0.769560873508453,0.207985609769821,-0.603753268718719,-0.81995677947998,0.108194269239902,-0.562107503414154,-0.78328537940979,0.0255078952759504,-0.621138870716095,-0.816720843315125,-0.0636805444955826,-0.573508381843567,-0.857020974159241,0.0137089714407921,-0.515099167823792,-0.816720843315125,-0.0636805444955826,-0.573508381843567,-0.78328537940979,0.0255078952759504,-0.621138870716095,-0.774528384208679,0.00857250019907951,-0.632481098175049,-0.80700021982193,-0.0808402448892593,-0.584991931915283,-0.803265273571014,0.325352013111115,-0.498909831047058,-0.858935952186584,0.226187631487846,-0.459421575069427,-0.875946462154388,0.343206882476807,-0.33900859951973,-0.81654679775238,0.438992261886597,-0.374882847070694,-0.875946462154388,0.343206882476807,-0.33900859951973, +-0.858935952186584,0.226187631487846,-0.459421575069427,-0.900184631347656,0.127867221832275,-0.416314214468002,-0.921252071857452,0.246230468153954,-0.301106631755829,-0.900184631347656,0.127867221832275,-0.416314214468002,-0.858935952186584,0.226187631487846,-0.459421575069427,-0.81995677947998,0.108194269239902,-0.562107503414154,-0.857020974159241,0.0137089714407921,-0.515099167823792,-0.707728385925293,0.692660510540009,-0.139075294137001,-0.735069453716278,0.622829258441925,-0.267874389886856,-0.80664324760437,0.540223360061646,-0.239760965108871,-0.778186678886414,0.617611408233643,-0.113936528563499,-0.80664324760437,0.540223360061646,-0.239760965108871,-0.735069453716278,0.622829258441925,-0.267874389886856,-0.745279967784882,0.528198421001434,-0.406895846128464,-0.81654679775238,0.438992261886597,-0.374882847070694,-0.745279967784882,0.528198421001434,-0.406895846128464,-0.735069453716278,0.622829258441925,-0.267874389886856,-0.660831570625305,0.692164957523346,-0.290188372135162,-0.668926358222961,0.604226052761078,-0.432952880859375,-0.875946462154388,0.343206882476807,-0.33900859951973,-0.86808305978775,0.450471699237823,-0.208583950996399,-0.80664324760437,0.540223360061646,-0.239760965108871,-0.81654679775238,0.438992261886597,-0.374882847070694,-0.80664324760437,0.540223360061646,-0.239760965108871,-0.86808305978775,0.450471699237823,-0.208583950996399,-0.839566946029663,0.536263227462769,-0.0868857055902481,-0.778186678886414,0.617611408233643,-0.113936528563499,-0.839566946029663,0.536263227462769,-0.0868857055902481,-0.86808305978775,0.450471699237823,-0.208583950996399,-0.916594743728638,0.358544558286667,-0.176917746663094,-0.890067577362061,0.451685339212418,-0.0613209493458271,-0.66944819688797,0.742208421230316,-0.0310778580605984,-0.678596079349518,0.732632279396057,-0.0525097101926804,-0.748026967048645,0.662966072559357,-0.0305241793394089,-0.739707827568054,0.672834992408752,-0.0111969457939267,-0.748026967048645,0.662966072559357,-0.0305241793394089,-0.678596079349518,0.732632279396057,-0.0525097101926804, +-0.707728385925293,0.692660510540009,-0.139075294137001,-0.778186678886414,0.617611408233643,-0.113936528563499,-0.707728385925293,0.692660510540009,-0.139075294137001,-0.678596079349518,0.732632279396057,-0.0525097101926804,-0.609835147857666,0.789600133895874,-0.0680638402700424,-0.636554539203644,0.754995107650757,-0.157418668270111,0.320682197809219,-0.678787469863892,-0.660613715648651,0.319372832775116,-0.678205251693726,-0.661844789981842,0.310116231441498,-0.669642746448517,-0.674838185310364,0.311002999544144,-0.670875012874603,-0.673204183578491,0.320682197809219,-0.678787469863892,-0.660613715648651,0.331621140241623,-0.676528930664063,-0.657522678375244,0.330828726291656,-0.677279829978943,-0.657148599624634,0.319372832775116,-0.678205251693726,-0.661844789981842,0.307297319173813,-0.629730403423309,-0.71344792842865,0.326312005519867,-0.643150746822357,-0.692731976509094,0.325641214847565,-0.642440915107727,-0.693705558776855,0.305399268865585,-0.629041016101837,-0.714869678020477,0.307297319173813,-0.629730403423309,-0.71344792842865,0.305399268865585,-0.629041016101837,-0.714869678020477,0.283637315034866,-0.624852001667023,-0.727399349212646,0.286235898733139,-0.624946057796478,-0.726299822330475,0.266298860311508,-0.626155436038971,-0.732812583446503,0.263311952352524,-0.626739323139191,-0.733392596244812,0.246277242898941,-0.631740152835846,-0.735018312931061,0.24858470261097,-0.630830109119415,-0.735023260116577,0.240244761109352,-0.633132815361023,-0.735816061496735,0.240346282720566,-0.632760465145111,-0.736103117465973,0.252252876758575,-0.61799556016922,-0.744614005088806,0.249795287847519,-0.620917499065399,-0.7430100440979,0.276449382305145,-0.585005342960358,-0.762459397315979,0.278892278671265,-0.58135312795639,-0.764360964298248,0.305504381656647,-0.533116340637207,-0.788957595825195,0.304830849170685,-0.534605383872986,-0.788210213184357,0.314287215471268,-0.497495234012604,-0.808530747890472,0.314271628856659,-0.497389584779739,-0.808601856231689,0.300576210021973,-0.490728735923767,-0.81782591342926, +0.300957053899765,-0.4905866086483,-0.817771196365356,0.275559842586517,-0.505128443241119,-0.817870378494263,0.27453488111496,-0.505881786346436,-0.817749440670013,0.245150700211525,-0.52419501543045,-0.815549254417419,0.246262848377228,-0.523610591888428,-0.815589725971222,0.173048034310341,-0.562137842178345,-0.80873692035675,0.189097598195076,-0.549963355064392,-0.813500106334686,0.189321935176849,-0.549834311008453,-0.813535153865814,0.173420175909996,-0.561713933944702,-0.808951795101166,0.157329469919205,-0.585274040699005,-0.795425593852997,0.164278388023376,-0.573718190193176,-0.802408933639526,0.164602339267731,-0.573203444480896,-0.802710354328156,0.157659515738487,-0.584703147411346,-0.795779943466187,0.148628801107407,-0.619264960289001,-0.77098673582077,0.151272177696228,-0.599556922912598,-0.78590601682663,0.151468753814697,-0.598952531814575,-0.786328852176666,0.148627430200577,-0.618782818317413,-0.771373987197876,0.152739316225052,-0.654735445976257,-0.74026483297348,0.151113778352737,-0.641322910785675,-0.752242982387543,0.151015564799309,-0.640903830528259,-0.752619802951813,0.152776211500168,-0.654557228088379,-0.740414977073669,0.131480529904366,-0.65190988779068,-0.746810734272003,0.144834816455841,-0.65537691116333,-0.741285383701324,0.14520375430584,-0.655498921871185,-0.741105198860168,0.131771937012672,-0.651964664459229,-0.746711611747742,0.13694503903389,-0.655062198638916,-0.743060886859894,0.126632288098335,-0.651922166347504,-0.747637450695038,0.126554638147354,-0.65186333656311,-0.747701823711395,0.136354818940163,-0.654930651187897,-0.743285417556763,0.1545749604702,-0.668674230575562,-0.727311074733734,0.151440784335136,-0.660661101341248,-0.735250115394592,0.150572180747986,-0.660155653953552,-0.735882103443146,0.155207842588425,-0.667714238166809,-0.728057861328125,0.120388127863407,-0.673010051250458,-0.729769885540009,0.140573054552078,-0.673601865768433,-0.725603044033051,0.143325418233871,-0.673335254192352,-0.725311994552612,0.123079128563404,-0.673336625099182,-0.729019463062286, +0.0999239683151245,-0.677327334880829,-0.728864133358002,0.105596341192722,-0.672812223434448,-0.732238471508026,0.107051134109497,-0.672619879245758,-0.732203960418701,0.100126035511494,-0.676457822322845,-0.72964334487915,0.101858995854855,-0.688990116119385,-0.717577457427979,0.100107617676258,-0.684249401092529,-0.722344398498535,0.0999424830079079,-0.68348103761673,-0.72309422492981,0.1016740873456,-0.688674628734589,-0.717906415462494,0.101858995854855,-0.688990116119385,-0.717577457427979,0.1016740873456,-0.688674628734589,-0.717906415462494,0.110655456781387,-0.688726842403412,-0.716526806354523,0.112105987966061,-0.688443899154663,-0.716573297977448,0.133779019117355,-0.680475056171417,-0.720455944538116,0.131930708885193,-0.681313633918762,-0.720004141330719,0.174767300486565,-0.667144417762756,-0.724137246608734,0.175847545266151,-0.666855931282043,-0.724141418933868,0.554684996604919,0.635664641857147,-0.536893844604492,0.530681014060974,0.646599292755127,-0.547984480857849,0.456793278455734,0.683383882045746,-0.569496512413025,0.467428982257843,0.675797164440155,-0.569919586181641,0.239218562841415,0.797632455825806,-0.553675711154938,0.209106177091599,0.81199836730957,-0.544915854930878,0.136085972189903,0.862029612064362,-0.488247364759445,0.148720815777779,0.847546815872192,-0.509457051753998,0.072780080139637,0.908120810985565,-0.412334442138672,0.0507491901516914,0.919102907180786,-0.390735685825348,-0.00245987554080784,0.943007826805115,-0.332761406898499,-0.0319097489118576,0.949040591716766,-0.313534408807755,0.673729836940765,0.588984370231628,-0.446301996707916,0.607207417488098,0.616229116916656,-0.501558303833008,0.61514014005661,0.614202439785004,-0.49432572722435,0.689720153808594,0.582654893398285,-0.429883033037186,-0.0319097489118576,0.949040591716766,-0.313534408807755,-0.00245987554080784,0.943007826805115,-0.332761406898499,-0.0747213140130043,0.956928908824921,-0.280541867017746,0.826098144054413,0.514073014259338,-0.230847924947739,0.859593033790588,0.478953689336777,-0.178053677082062, +0.860638976097107,0.457137048244476,-0.224335432052612,0.821043312549591,0.494010090827942,-0.286080211400986,0.811946988105774,0.565707921981812,-0.143932953476906,0.816087543964386,0.552608788013458,-0.169188424944878,0.683483123779297,0.725124657154083,-0.0839348807930946,0.811946988105774,0.565707921981812,-0.143932953476906,0.826098144054413,0.514073014259338,-0.230847924947739,0.798272311687469,0.530124247074127,-0.285883903503418,0.816087543964386,0.552608788013458,-0.169188424944878,0.939624607563019,0.335361808538437,-0.0681034848093987,0.929601311683655,0.363578885793686,-0.0604299306869507,0.955544829368591,0.294668048620224,-0.0102290026843548,0.964583516120911,0.263706058263779,-0.00614453293383121,0.90740305185318,0.396797627210617,-0.138460516929626,0.900938928127289,0.419384211301804,-0.111472479999065,0.929601311683655,0.363578885793686,-0.0604299306869507,0.939624607563019,0.335361808538437,-0.0681034848093987,0.88924103975296,0.449243783950806,-0.0862000286579132,0.860865414142609,0.49597030878067,-0.113685496151447,0.9125736951828,0.388484686613083,-0.127627238631248,0.918371856212616,0.390708059072495,-0.0627718940377235,0.826098144054413,0.514073014259338,-0.230847924947739,0.811946988105774,0.565707921981812,-0.143932953476906,0.84397429227829,0.522969782352448,-0.119205676019192,0.859593033790588,0.478953689336777,-0.178053677082062,0.955544829368591,0.294668048620224,-0.0102290026843548,0.976454555988312,0.210528612136841,0.0470550432801247,0.982153117656708,0.179450958967209,0.0563247054815292,0.964583516120911,0.263706058263779,-0.00614453293383121,0.982153117656708,0.179450958967209,0.0563247054815292,0.976454555988312,0.210528612136841,0.0470550432801247,0.986934781074524,0.122394859790802,0.104781627655029,0.988992273807526,0.0911971256136894,0.11652210354805,0.900938928127289,0.419384211301804,-0.111472479999065,0.88924103975296,0.449243783950806,-0.0862000286579132,0.918371856212616,0.390708059072495,-0.0627718940377235,0.929601311683655,0.363578885793686,-0.0604299306869507,0.947261214256287,0.319280982017517,-0.0274942107498646, +0.951346337795258,0.287874668836594,-0.109856493771076,0.979847848415375,0.185714647173882,-0.0735411643981934,0.972454845905304,0.23200935125351,0.0224328208714724,0.955544829368591,0.294668048620224,-0.0102290026843548,0.947261214256287,0.319280982017517,-0.0274942107498646,0.972454845905304,0.23200935125351,0.0224328208714724,0.976454555988312,0.210528612136841,0.0470550432801247,0.987307369709015,0.139715284109116,0.0755231752991676,0.990691840648651,0.0481400564312935,0.127327248454094,0.986721336841583,0.034363966435194,0.158745408058167,0.986934781074524,0.122394859790802,0.104781627655029,0.987307369709015,0.139715284109116,0.0755231752991676,0.996348440647125,0.0785739943385124,-0.0334031730890274,0.999632656574249,-0.0249952785670757,0.0104756345972419,0.990691840648651,0.0481400564312935,0.127327248454094,0.988992273807526,0.0911971256136894,0.11652210354805,0.986934781074524,0.122394859790802,0.104781627655029,0.986721336841583,0.034363966435194,0.158745408058167,0.985256671905518,0.00271533243358135,0.171061038970947,0.985256671905518,0.00271533243358135,0.171061038970947,0.986721336841583,0.034363966435194,0.158745408058167,0.976034820079803,-0.0560148358345032,0.210282117128372,0.971517980098724,-0.0872575864195824,0.220315560698509,0.944876968860626,-0.185481414198875,0.269822537899017,0.951542019844055,-0.157129675149918,0.264344781637192,0.913626849651337,-0.258556932210922,0.313742250204086,0.907560348510742,-0.278394401073456,0.31437361240387,0.976034820079803,-0.0560148358345032,0.210282117128372,0.951542019844055,-0.157129675149918,0.264344781637192,0.944876968860626,-0.185481414198875,0.269822537899017,0.971517980098724,-0.0872575864195824,0.220315560698509,0.866618454456329,-0.354969948530197,0.350669085979462,0.869904339313507,-0.344727277755737,0.352745711803436,0.814648866653442,-0.428443908691406,0.390874683856964,0.813410580158234,-0.432084828615189,0.389443129301071,0.913626849651337,-0.258556932210922,0.313742250204086,0.869904339313507,-0.344727277755737,0.352745711803436,0.866618454456329,-0.354969948530197,0.350669085979462, +0.907560348510742,-0.278394401073456,0.31437361240387,0.982541859149933,-0.0464210659265518,0.180157005786896,0.959386110305786,-0.152907535433769,0.237060353159904,0.951542019844055,-0.157129675149918,0.264344781637192,0.976034820079803,-0.0560148358345032,0.210282117128372,0.982541859149933,-0.0464210659265518,0.180157005786896,0.989922344684601,-0.128703236579895,0.0590692535042763,0.964792609214783,-0.239488556981087,0.10872159153223,0.959386110305786,-0.152907535433769,0.237060353159904,0.740211963653564,-0.514792323112488,0.432521849870682,0.740242958068848,-0.51613986492157,0.430859625339508,0.655916035175323,-0.594901263713837,0.464614391326904,0.654921174049377,-0.591593086719513,0.470208287239075,0.814648866653442,-0.428443908691406,0.390874683856964,0.740242958068848,-0.51613986492157,0.430859625339508,0.740211963653564,-0.514792323112488,0.432521849870682,0.813410580158234,-0.432084828615189,0.389443129301071,0.913626849651337,-0.258556932210922,0.313742250204086,0.920667409896851,-0.261755615472794,0.289578378200531,0.874306619167328,-0.355029195547104,0.330971598625183,0.869904339313507,-0.344727277755737,0.352745711803436,0.567943692207336,-0.656792163848877,0.496048390865326,0.572315275669098,-0.65930038690567,0.487624973058701,0.488165348768234,-0.713943839073181,0.501974999904633,0.482114255428314,-0.711486339569092,0.511226952075958,0.655916035175323,-0.594901263713837,0.464614391326904,0.572315275669098,-0.65930038690567,0.487624973058701,0.567943692207336,-0.656792163848877,0.496048390865326,0.654921174049377,-0.591593086719513,0.470208287239075,0.920667409896851,-0.261755615472794,0.289578378200531,0.923907339572906,-0.350473433732986,0.153504595160484,0.87428742647171,-0.44466158747673,0.194672852754593,0.874306619167328,-0.355029195547104,0.330971598625183,0.814648866653442,-0.428443908691406,0.390874683856964,0.816639840602875,-0.443348735570908,0.369514942169189,0.741131365299225,-0.533720970153809,0.407266736030579,0.740242958068848,-0.51613986492157,0.430859625339508,0.393958240747452,-0.757664382457733,0.520328342914581, +0.397733598947525,-0.761988878250122,0.511058568954468,0.307396620512009,-0.799743175506592,0.515672504901886,0.306521356105804,-0.793561995029449,0.525646448135376,0.488165348768234,-0.713943839073181,0.501974999904633,0.397733598947525,-0.761988878250122,0.511058568954468,0.393958240747452,-0.757664382457733,0.520328342914581,0.482114255428314,-0.711486339569092,0.511226952075958,0.816639840602875,-0.443348735570908,0.369514942169189,0.816357672214508,-0.526052057743073,0.238389149308205,0.743408799171448,-0.607500910758972,0.279796183109283,0.741131365299225,-0.533720970153809,0.407266736030579,0.655916035175323,-0.594901263713837,0.464614391326904,0.6580491065979,-0.613115012645721,0.437105745077133,0.577624380588531,-0.675775945186615,0.457905054092407,0.572315275669098,-0.65930038690567,0.487624973058701,0.221271172165871,-0.8200803399086,0.5277379155159,0.220776662230492,-0.827487170696259,0.516258358955383,0.132950633764267,-0.847913265228271,0.513193070888519,0.134317174553871,-0.8391392827034,0.527071297168732,0.306521356105804,-0.793561995029449,0.525646448135376,0.307396620512009,-0.799743175506592,0.515672504901886,0.220776662230492,-0.827487170696259,0.516258358955383,0.221271172165871,-0.8200803399086,0.5277379155159,0.6580491065979,-0.613115012645721,0.437105745077133,0.662330329418182,-0.682317137718201,0.309454023838043,0.583747625350952,-0.740580201148987,0.332835763692856,0.577624380588531,-0.675775945186615,0.457905054092407,0.488165348768234,-0.713943839073181,0.501974999904633,0.494536429643631,-0.72918176651001,0.472998470067978,0.401979863643646,-0.777763307094574,0.48321458697319,0.397733598947525,-0.761988878250122,0.511058568954468,-0.0527839735150337,-0.859681189060211,0.508096575737,0.056101355701685,-0.851355314254761,0.521581053733826,0.0588114783167839,-0.859771192073822,0.507281720638275,-0.0549962595105171,-0.868799448013306,0.492100536823273,0.132950633764267,-0.847913265228271,0.513193070888519,0.0588114783167839,-0.859771192073822,0.507281720638275,0.056101355701685,-0.851355314254761,0.521581053733826, +0.134317174553871,-0.8391392827034,0.527071297168732,0.494536429643631,-0.72918176651001,0.472998470067978,0.503096163272858,-0.787679433822632,0.355605393648148,0.413431137800217,-0.830815851688385,0.372585207223892,0.401979863643646,-0.777763307094574,0.48321458697319,0.307396620512009,-0.799743175506592,0.515672504901886,0.30925127863884,-0.816498339176178,0.487538754940033,0.22141706943512,-0.844668388366699,0.487349689006805,0.220776662230492,-0.827487170696259,0.516258358955383,0.30925127863884,-0.816498339176178,0.487538754940033,0.322065323591232,-0.867082238197327,0.380055755376816,0.235287114977837,-0.892799735069275,0.384120672941208,0.22141706943512,-0.844668388366699,0.487349689006805,-0.605044484138489,0.4689681828022,-0.643420517444611,-0.522631049156189,0.526674687862396,-0.670425653457642,-0.518941938877106,0.530140161514282,-0.670559883117676,-0.602864146232605,0.470481991767883,-0.644361257553101,0.132950633764267,-0.847913265228271,0.513193070888519,0.132824137806892,-0.865383505821228,0.483186364173889,0.0612420067191124,-0.875404596328735,0.479495942592621,0.0588114783167839,-0.859771192073822,0.507281720638275,-0.854619860649109,0.462648808956146,-0.235756173729897,-0.796077013015747,0.57025545835495,-0.202657997608185,-0.878110527992249,0.33600264787674,-0.340623140335083,-0.885988473892212,0.331857442855835,-0.323875218629837,0.132824137806892,-0.865383505821228,0.483186364173889,0.148474022746086,-0.909900426864624,0.387345612049103,0.0646437555551529,-0.912932932376862,0.40295735001564,0.0612420067191124,-0.875404596328735,0.479495942592621,-0.593897104263306,0.747401118278503,-0.297788113355637,-0.592884123325348,0.745278775691986,-0.305037587881088,-0.586198151111603,0.732834279537201,-0.345435261726379,-0.587115049362183,0.734396159648895,-0.340526252985001,-0.609950661659241,0.762418806552887,-0.216050490736961,-0.600799202919006,0.757277846336365,-0.256067603826523,-0.602320849895477,0.758639812469482,-0.248344793915749,-0.611638844013214,0.762599647045135,-0.210569873452187,-0.0459728427231312,0.873032212257385,0.485490709543228, +-0.0459737703204155,0.873032569885254,0.485489934682846,-0.068722777068615,0.880521237850189,0.468998461961746,-0.0683789923787117,0.880440056324005,0.46920108795166,-0.572997391223907,0.730178117752075,-0.372174918651581,-0.541782915592194,0.74321186542511,-0.392565369606018,-0.544346392154694,0.741976737976074,-0.391353666782379,-0.575163245201111,0.729696393013,-0.3697709441185,-0.491416245698929,0.766980171203613,-0.41261550784111,-0.437617182731628,0.789674937725067,-0.430005580186844,-0.437842935323715,0.789587259292603,-0.429936647415161,-0.491936862468719,0.766742169857025,-0.412437289953232,-0.39240300655365,0.80481368303299,-0.445302963256836,-0.391716837882996,0.804998695850372,-0.445572555065155,-0.349956005811691,0.812967002391815,-0.465419739484787,-0.350885152816772,0.812869787216187,-0.464889585971832,-0.31193083524704,0.814045667648315,-0.489927470684052,-0.310799598693848,0.813979923725128,-0.490754812955856,-0.277576744556427,0.8106729388237,-0.515519618988037,-0.278971821069717,0.810869753360748,-0.51445609331131,-0.248314753174782,0.808694362640381,-0.533247709274292,-0.246419087052345,0.808691680431366,-0.534130573272705,-0.210988342761993,0.811657965183258,-0.544697403907776,-0.213144287467003,0.811357617378235,-0.544305324554443,-0.0659389793872833,0.831221759319305,-0.552016794681549,-0.0640053451061249,0.83144873380661,-0.551902532577515,-0.0238859578967094,0.836716532707214,-0.54711502790451,-0.0256382189691067,0.836462616920471,-0.547423958778381,0.0102146826684475,0.84311431646347,-0.537637293338776,0.0119663765653968,0.843527972698212,-0.536951899528503,0.0433148629963398,0.851748704910278,-0.52215701341629,0.0406068414449692,0.85097724199295,-0.523630499839783,0.0698925703763962,0.857977390289307,-0.508910357952118,0.0737112984061241,0.858693063259125,-0.507161438465118,0.108135171234608,0.862352669239044,-0.494625866413116,0.103942163288593,0.862124443054199,-0.495920896530151,0.14335310459137,0.863478302955627,-0.483585745096207,0.146081373095512,0.863504648208618,-0.482721358537674, +0.186123296618462,0.864151477813721,-0.467547118663788,0.183443769812584,0.864085078239441,-0.468727439641953,0.219543889164925,0.866546630859375,-0.448215782642365,0.221856251358986,0.866800487041473,-0.446583300828934,0.24924148619175,0.87165641784668,-0.422011613845825,0.248945206403732,0.871587693691254,-0.422328263521194,0.301921188831329,0.880024373531342,-0.366606801748276,0.274674832820892,0.87697422504425,-0.394296646118164,0.273404777050018,0.876736044883728,-0.395706504583359,0.300187736749649,0.879940152168274,-0.36822921037674,0.38891127705574,0.881984829902649,-0.266177982091904,0.364538311958313,0.881637215614319,-0.299712508916855,0.364147633314133,0.881634056568146,-0.300196528434753,0.38840925693512,0.881968021392822,-0.266965836286545,0.38891127705574,0.881984829902649,-0.266177982091904,0.38840925693512,0.881968021392822,-0.266965836286545,0.404495120048523,0.883894979953766,-0.234762579202652,0.40496352314949,0.883995652198792,-0.233572572469711,0.444294363260269,0.891158998012543,-0.0918593034148216,0.434039890766144,0.890810370445251,-0.134410262107849,0.433213412761688,0.890652716159821,-0.138072058558464,0.443033277988434,0.891295790672302,-0.0965059027075768,0.454261124134064,0.888830423355103,-0.0602280795574188,0.451899915933609,0.889546871185303,-0.0670280605554581,0.450144797563553,0.89004510641098,-0.0720370933413506,0.454261064529419,0.888830423355103,-0.0602280721068382,-0.68177455663681,0.416619867086411,-0.601341187953949,-0.605044484138489,0.4689681828022,-0.643420517444611,-0.602864146232605,0.470481991767883,-0.644361257553101,-0.680759429931641,0.417442411184311,-0.601920664310455,-0.343299984931946,0.685774445533752,-0.641762018203735,-0.40032497048378,0.631075084209442,-0.664442718029022,-0.405256241559982,0.625142633914948,-0.667056262493134,-0.356304436922073,0.674880146980286,-0.646207332611084,-0.219684705138206,0.815183579921722,-0.535924017429352,-0.285215377807617,0.743204951286316,-0.60522598028183,-0.294735372066498,0.73055237531662,-0.615974426269531,-0.246324956417084,0.788581907749176,-0.563438236713409, +-0.356304436922073,0.674880146980286,-0.646207332611084,-0.294735372066498,0.73055237531662,-0.615974426269531,-0.285215377807617,0.743204951286316,-0.60522598028183,-0.343299984931946,0.685774445533752,-0.641762018203735,-0.866852343082428,0.323039442300797,-0.379753053188324,-0.775519192218781,0.362793177366257,-0.51667320728302,-0.746244609355927,0.371477365493774,-0.552379846572876,-0.813092589378357,0.317156821489334,-0.488151550292969,-0.107812136411667,0.989816308021545,-0.0929524302482605,-0.107719071209431,0.989820003509521,-0.0930221453309059,-0.107840746641159,0.98981785774231,-0.0929032117128372,-0.107812017202377,0.989817261695862,-0.0929426029324532,-0.813092589378357,0.317156821489334,-0.488151550292969,-0.746244609355927,0.371477365493774,-0.552379846572876,-0.74321174621582,0.370267629623413,-0.557259500026703,-0.815006971359253,0.309278428554535,-0.49001070857048,-0.18099670112133,0.856252074241638,-0.483810603618622,-0.144828572869301,0.898604810237885,-0.414166748523712,-0.140740588307381,0.901642739772797,-0.408940494060516,-0.173966303467751,0.867335200309753,-0.466331899166107,-0.246324956417084,0.788581907749176,-0.563438236713409,-0.18099670112133,0.856252074241638,-0.483810603618622,-0.173966303467751,0.867335200309753,-0.466331899166107,-0.219684705138206,0.815183579921722,-0.535924017429352,-0.144828572869301,0.898604810237885,-0.414166748523712,-0.108887553215027,0.929703533649445,-0.351844936609268,-0.108443900942802,0.930269300937653,-0.350483745336533,-0.140740588307381,0.901642739772797,-0.408940494060516,0.673729836940765,0.588984370231628,-0.446301996707916,0.689720153808594,0.582654893398285,-0.429883033037186,0.743478178977966,0.553152561187744,-0.375848978757858,0.738376677036285,0.553139865398407,-0.385792851448059,0.0877187624573708,0.493840932846069,0.865116477012634,0.106911569833755,0.510180354118347,0.853396654129028,0.105041548609734,0.508634209632874,0.854551076889038,0.0844381079077721,0.490957498550415,0.867081940174103,-0.775519192218781,0.362793177366257,-0.51667320728302, +-0.68177455663681,0.416619867086411,-0.601341187953949,-0.746244609355927,0.371477365493774,-0.552379846572876,-0.877001404762268,0.273719936609268,-0.394900023937225,-0.885988473892212,0.331857442855835,-0.323875218629837,-0.878110527992249,0.33600264787674,-0.340623140335083,-0.866852343082428,0.323039442300797,-0.379753053188324,-0.944790005683899,0.0985130816698074,-0.312517076730728,-0.947455763816833,0.125704109668732,-0.294152975082397,-0.91165167093277,0.215856075286865,-0.349710434675217,-0.905876696109772,0.188816428184509,-0.379125088453293,-0.978541135787964,-0.0698231086134911,-0.193860813975334,-0.980909407138824,-0.0482443869113922,-0.18838594853878,-0.969312250614166,0.0398839525878429,-0.242575749754906,-0.967608571052551,0.0159404166042805,-0.251951336860657,-0.948522806167603,0.158656448125839,-0.274103164672852,-0.916033148765564,0.253893464803696,-0.310517966747284,-0.91165167093277,0.215856075286865,-0.349710434675217,-0.947455763816833,0.125704109668732,-0.294152975082397,-0.969302713871002,-0.230619445443153,-0.0852463021874428,-0.972954988479614,-0.215910732746124,-0.0821038112044334,-0.981842994689941,-0.132751107215881,-0.135504394769669,-0.978422582149506,-0.152772471308708,-0.139103934168816,-0.948522806167603,0.158656448125839,-0.274103164672852,-0.942300140857697,0.206310003995895,-0.263640701770782,-0.907359540462494,0.327251821756363,-0.263827443122864,-0.916033148765564,0.253893464803696,-0.310517966747284,-0.981282889842987,-0.0284820031374693,-0.190453633666039,-0.969683289527893,0.0665885135531425,-0.235117360949516,-0.969312250614166,0.0398839525878429,-0.242575749754906,-0.980909407138824,-0.0482443869113922,-0.18838594853878,-0.920806527137756,-0.388105094432831,0.0385984145104885,-0.922875583171844,-0.383426278829575,0.0358441434800625,-0.953635454177856,-0.299968034029007,-0.0244671758264303,-0.95111608505249,-0.307684779167175,-0.0266136527061462,-0.981282889842987,-0.0284820031374693,-0.190453633666039,-0.971750259399414,-0.031576856970787,-0.23388934135437,-0.964405477046967,0.0926254913210869,-0.247674390673637, +-0.969683289527893,0.0665885135531425,-0.235117360949516,-0.973664164543152,-0.210531666874886,-0.0874903574585915,-0.982332468032837,-0.120615340769291,-0.143090650439262,-0.981842994689941,-0.132751107215881,-0.135504394769669,-0.972954988479614,-0.215910732746124,-0.0821038112044334,-0.826095283031464,-0.540207266807556,0.160445123910904,-0.83180969953537,-0.535390019416809,0.146458983421326,-0.880649268627167,-0.464166760444641,0.0949017927050591,-0.877260148525238,-0.468549847602844,0.104287005960941,-0.960675477981567,-0.244659081101418,-0.131318554282188,-0.967540562152863,-0.151449754834175,-0.202307313680649,-0.982332468032837,-0.120615340769291,-0.143090650439262,-0.973664164543152,-0.210531666874886,-0.0874903574585915,-0.924851298332214,-0.378955572843552,0.0322908945381641,-0.954524517059326,-0.296981602907181,-0.0261690057814121,-0.953635454177856,-0.299968034029007,-0.0244671758264303,-0.922875583171844,-0.383426278829575,0.0358441434800625,-0.719807803630829,-0.65297132730484,0.23559533059597,-0.778777837753296,-0.59727543592453,0.191747337579727,-0.771490752696991,-0.601683914661407,0.20682966709137,-0.712858974933624,-0.655101835727692,0.250347048044205,-0.924851298332214,-0.378955572843552,0.0322908945381641,-0.927103698253632,-0.373506039381027,0.0311771482229233,-0.949139177799225,-0.311927765607834,-0.0428471863269806,-0.954524517059326,-0.296981602907181,-0.0261690057814121,-0.838367402553558,-0.528690695762634,0.13276344537735,-0.884804606437683,-0.457960963249207,0.0859802216291428,-0.880649268627167,-0.464166760444641,0.0949017927050591,-0.83180969953537,-0.535390019416809,0.146458983421326,-0.577446401119232,-0.749671459197998,0.323339432477951,-0.652795135974884,-0.703852891921997,0.280088633298874,-0.646237969398499,-0.703299462795258,0.296220034360886,-0.568553984165192,-0.747996091842651,0.342415124177933,-0.847046732902527,-0.515303790569305,0.130284026265144,-0.892132878303528,-0.443055897951126,0.0883204191923141,-0.884804606437683,-0.457960963249207,0.0859802216291428,-0.838367402553558,-0.528690695762634,0.13276344537735, +-0.72661292552948,-0.652363002300262,0.215536773204803,-0.786388993263245,-0.592392265796661,0.175110906362534,-0.778777837753296,-0.59727543592453,0.191747337579727,-0.719807803630829,-0.65297132730484,0.23559533059597,-0.409541547298431,-0.813731729984283,0.412451505661011,-0.417820036411285,-0.818676292896271,0.393948644399643,-0.498265594244003,-0.788218021392822,0.361169815063477,-0.486940175294876,-0.785775125026703,0.381374686956406,-0.729008257389069,-0.660993874073029,0.17785955965519,-0.793179154396057,-0.587971210479736,0.158608675003052,-0.786388993263245,-0.592392265796661,0.175110906362534,-0.72661292552948,-0.652363002300262,0.215536773204803,-0.584298610687256,-0.756926655769348,0.292672395706177,-0.658526003360748,-0.708120048046112,0.25477346777916,-0.652795135974884,-0.703852891921997,0.280088633298874,-0.577446401119232,-0.749671459197998,0.323339432477951,-0.24841345846653,-0.846261322498322,0.471309512853622,-0.246648848056793,-0.856903851032257,0.452636808156967,-0.335416704416275,-0.84122359752655,0.424073606729507,-0.333080500364304,-0.833068549633026,0.441649377346039,-0.572824418544769,-0.789301097393036,0.221079111099243,-0.654017984867096,-0.730486929416656,0.196594446897507,-0.658526003360748,-0.708120048046112,0.25477346777916,-0.584298610687256,-0.756926655769348,0.292672395706177,-0.422532498836517,-0.8307785987854,0.362316399812698,-0.506272315979004,-0.797325432300568,0.328573346138,-0.498265594244003,-0.788218021392822,0.361169815063477,-0.417820036411285,-0.818676292896271,0.393948644399643,-0.404787838459015,-0.87070631980896,0.279315412044525,-0.490759879350662,-0.83434009552002,0.251060605049133,-0.506272315979004,-0.797325432300568,0.328573346138,-0.422532498836517,-0.8307785987854,0.362316399812698,-0.24187034368515,-0.875452756881714,0.418427050113678,-0.334458380937576,-0.857013761997223,0.392001092433929,-0.335416704416275,-0.84122359752655,0.424073606729507,-0.246648848056793,-0.856903851032257,0.452636808156967,-0.24187034368515,-0.875452756881714,0.418427050113678,-0.217328578233719,-0.921589434146881,0.321622550487518, +-0.313340693712234,-0.900710225105286,0.30089670419693,-0.334458380937576,-0.857013761997223,0.392001092433929,-0.0433887839317322,-0.914197504520416,0.40293961763382,-0.136749014258385,-0.922213852405548,0.361692368984222,-0.166357293725014,-0.882590591907501,0.439726173877716,-0.0555269010365009,-0.882919192314148,0.466230094432831,-0.0433887839317322,-0.914197504520416,0.40293961763382,-0.0555269010365009,-0.882919192314148,0.466230094432831,0.0612420067191124,-0.875404596328735,0.479495942592621,0.0646437555551529,-0.912932932376862,0.40295735001564,-0.642683029174805,0.678312361240387,0.356161385774612,-0.641826033592224,0.646762549877167,0.41201651096344,-0.641433656215668,0.646313726902008,0.413329660892487,-0.644183397293091,0.676072478294373,0.357706218957901,-0.614830851554871,0.647075653076172,0.450861662626266,-0.620587825775146,0.689143300056458,0.374101847410202,-0.622714638710022,0.689896643161774,0.369146436452866,-0.614240884780884,0.652768909931183,0.443396866321564,-0.614830851554871,0.647075653076172,0.450861662626266,-0.614240884780884,0.652768909931183,0.443396866321564,-0.643333315849304,0.544253587722778,0.538433194160461,-0.647597372531891,0.531894385814667,0.545624434947968,-0.70429003238678,0.36199426651001,0.610684633255005,-0.700466930866241,0.373589754104614,0.608092844486237,-0.752030551433563,0.156788304448128,0.640208959579468,-0.750934958457947,0.164132237434387,0.639654040336609,-0.763160824775696,-0.0478357002139091,0.64443564414978,-0.761870443820953,-0.0762629210948944,0.64322429895401,-0.73172664642334,-0.323387503623962,0.599997103214264,-0.737926304340363,-0.291202515363693,0.608823359012604,-0.655378699302673,-0.56961727142334,0.495998948812485,-0.647546529769897,-0.587460935115814,0.48535880446434,-0.515645980834961,-0.798550605773926,0.310525685548782,-0.521244943141937,-0.791952013969421,0.317987084388733,-0.17109552025795,-0.944920063018799,-0.27902027964592,-0.226329118013382,-0.9577876329422,-0.177251547574997,-0.228081464767456,-0.95795601606369,-0.174066603183746,-0.17232720553875,-0.945378541946411,-0.276699513196945, +-0.118964433670044,-0.908790409564972,-0.399934321641922,-0.135377481579781,-0.925501048564911,-0.35372406244278,-0.135781213641167,-0.925816714763641,-0.352741956710815,-0.118901319801807,-0.908696174621582,-0.40016695857048,-0.0985692366957664,-0.909459292888641,-0.40394052863121,-0.110330946743488,-0.903667688369751,-0.413777589797974,-0.110524922609329,-0.903628170490265,-0.413811892271042,-0.0996145904064178,-0.90878564119339,-0.405198305845261,-0.0904626250267029,-0.925121128559113,-0.36873784661293,-0.0897447541356087,-0.916646838188171,-0.389492630958557,-0.0899073258042336,-0.916323900222778,-0.390214323997498,-0.0902316048741341,-0.924303114414215,-0.370839536190033,-0.0292357988655567,-0.958316445350647,-0.284209430217743,-0.0722447857260704,-0.941954970359802,-0.327874004840851,-0.0754014402627945,-0.94013124704361,-0.332367330789566,-0.0310712866485119,-0.957841277122498,-0.285612612962723,-0.0292357988655567,-0.958316445350647,-0.284209430217743,-0.0310712866485119,-0.957841277122498,-0.285612612962723,-0.0435533821582794,-0.938541412353516,-0.342408001422882,-0.0333082638680935,-0.945907950401306,-0.322720587253571,-0.774931490421295,0.236460611224174,-0.586146235466003,-0.884384393692017,0.346845984458923,-0.312349408864975,-0.89208459854126,0.349250584840775,-0.286721408367157,-0.774796187877655,0.235763594508171,-0.586605787277222,-0.732882618904114,-0.0732411220669746,-0.676401376724243,-0.754853367805481,0.0852381736040115,-0.650331258773804,-0.755833446979523,0.0772312209010124,-0.650193154811859,-0.718339264392853,-0.115007340908051,-0.686121046543121,-0.732882618904114,-0.0732411220669746,-0.676401376724243,-0.718339264392853,-0.115007340908051,-0.686121046543121,-0.508340418338776,-0.511716246604919,-0.692630231380463,-0.589029788970947,-0.390399247407913,-0.707553744316101,0.450006395578384,-0.846444368362427,-0.284651011228561,0.436083823442459,-0.8669513463974,-0.241301000118256,0.615963220596313,-0.784222185611725,-0.0747321173548698,0.637513160705566,-0.763309895992279,-0.104570671916008, +0.345061331987381,-0.937940537929535,-0.0346445143222809,0.209494650363922,-0.977356433868408,-0.0297742374241352,0.168249398469925,-0.891458928585052,0.420705616474152,0.323264271020889,-0.893875539302826,0.310623019933701,0.168249398469925,-0.891458928585052,0.420705616474152,0.209494650363922,-0.977356433868408,-0.0297742374241352,0.0791421085596085,-0.99609100818634,-0.0392342545092106,-0.0272339042276144,-0.89887672662735,0.437354296445847,0.0791421085596085,-0.99609100818634,-0.0392342545092106,0.209494650363922,-0.977356433868408,-0.0297742374241352,0.283676981925964,-0.895026743412018,-0.344172269105911,0.171943947672844,-0.9038245677948,-0.391837179660797,0.772943317890167,-0.459111332893372,0.43792188167572,0.808530390262604,-0.503700017929077,0.304244667291641,0.793072044849396,-0.536082923412323,0.289226353168488,0.774068713188171,-0.486837685108185,0.404730409383774,0.324025064706802,-0.761790096759796,0.560966670513153,0.151470839977264,-0.728598177433014,0.667983055114746,0.166743367910385,-0.587504029273987,0.791855871677399,0.355349272489548,-0.628612816333771,0.691789567470551,0.166743367910385,-0.587504029273987,0.791855871677399,0.151470839977264,-0.728598177433014,0.667983055114746,-0.0501322895288467,-0.707809090614319,0.704622626304626,-0.046120148152113,-0.580380856990814,0.813038110733032,-0.0501322895288467,-0.707809090614319,0.704622626304626,0.151470839977264,-0.728598177433014,0.667983055114746,0.168249398469925,-0.891458928585052,0.420705616474152,-0.0272339042276144,-0.89887672662735,0.437354296445847,0.690646111965179,-0.708719551563263,0.143960282206535,0.5263831615448,-0.849805593490601,0.0274087712168694,0.549805700778961,-0.812079548835754,0.19555202126503,0.735284209251404,-0.653447270393372,0.179899409413338,0.549805700778961,-0.812079548835754,0.19555202126503,0.5263831615448,-0.849805593490601,0.0274087712168694,0.345061331987381,-0.937940537929535,-0.0346445143222809,0.323264271020889,-0.893875539302826,0.310623019933701,0.345061331987381,-0.937940537929535,-0.0346445143222809, +0.5263831615448,-0.849805593490601,0.0274087712168694,0.615963220596313,-0.784222185611725,-0.0747321173548698,0.436083823442459,-0.8669513463974,-0.241301000118256,0.772943317890167,-0.459111332893372,0.43792188167572,0.774068713188171,-0.486837685108185,0.404730409383774,0.734706282615662,-0.481136292219162,0.478241056203842,0.715223670005798,-0.463750928640366,0.522867202758789,-0.259092777967453,-0.894549131393433,-0.364215224981308,-0.121380843222141,-0.900714457035065,-0.417109459638596,-0.114206820726395,-0.895859360694885,-0.429409831762314,-0.253324866294861,-0.895827174186707,-0.365130573511124,0.761715471744537,-0.472965806722641,0.44282391667366,0.786434650421143,-0.495830148458481,0.368338406085968,0.81871634721756,-0.481854349374771,0.312282025814056,0.796359002590179,-0.469575971364975,0.381196528673172,0.81871634721756,-0.481854349374771,0.312282025814056,0.786434650421143,-0.495830148458481,0.368338406085968,0.795078992843628,-0.522641777992249,0.307725340127945,0.827638208866119,-0.502594590187073,0.24982775747776,0.795078992843628,-0.522641777992249,0.307725340127945,0.786434650421143,-0.495830148458481,0.368338406085968,0.734706282615662,-0.481136292219162,0.478241056203842,0.774068713188171,-0.486837685108185,0.404730409383774,0.813471257686615,-0.544181644916534,0.205257937312126,0.777065634727478,-0.580229997634888,0.24393056333065,0.690646111965179,-0.708719551563263,0.143960282206535,0.735284209251404,-0.653447270393372,0.179899409413338,0.690646111965179,-0.708719551563263,0.143960282206535,0.777065634727478,-0.580229997634888,0.24393056333065,0.793072044849396,-0.536082923412323,0.289226353168488,0.749874293804169,-0.649870812892914,0.123921379446983,0.793072044849396,-0.536082923412323,0.289226353168488,0.777065634727478,-0.580229997634888,0.24393056333065,0.795078992843628,-0.522641777992249,0.307725340127945,0.774068713188171,-0.486837685108185,0.404730409383774,0.889593064785004,-0.434417635202408,0.141087412834167,0.87469071149826,-0.446987152099609,0.187399595975876,0.852851033210754,-0.460834324359894,0.245513364672661, +0.863404989242554,-0.466759294271469,0.191487655043602,0.863404989242554,-0.466759294271469,0.191487655043602,0.859838902950287,-0.488049238920212,0.149950385093689,0.899694263935089,-0.427780240774155,0.0869162976741791,0.889593064785004,-0.434417635202408,0.141087412834167,0.863404989242554,-0.466759294271469,0.191487655043602,0.852851033210754,-0.460834324359894,0.245513364672661,0.81871634721756,-0.481854349374771,0.312282025814056,0.827638208866119,-0.502594590187073,0.24982775747776,0.892635226249695,-0.431775242090225,0.129508435726166,0.87469071149826,-0.446987152099609,0.187399595975876,0.889593064785004,-0.434417635202408,0.141087412834167,0.910303711891174,-0.405882686376572,0.0812794789671898,0.809677243232727,-0.52847808599472,0.2552130818367,0.914900243282318,-0.386566549539566,0.116291858255863,0.899694263935089,-0.427780240774155,0.0869162976741791,0.859838902950287,-0.488049238920212,0.149950385093689,0.859838902950287,-0.488049238920212,0.149950385093689,0.813471257686615,-0.544181644916534,0.205257937312126,0.735284209251404,-0.653447270393372,0.179899409413338,0.809677243232727,-0.52847808599472,0.2552130818367,0.943566203117371,-0.327480643987656,-0.0493887960910797,0.924871385097504,-0.380094885826111,0.0118652665987611,0.899694263935089,-0.427780240774155,0.0869162976741791,0.914900243282318,-0.386566549539566,0.116291858255863,0.889593064785004,-0.434417635202408,0.141087412834167,0.899694263935089,-0.427780240774155,0.0869162976741791,0.924871385097504,-0.380094885826111,0.0118652665987611,0.910303711891174,-0.405882686376572,0.0812794789671898,0.735284209251404,-0.653447270393372,0.179899409413338,0.549805700778961,-0.812079548835754,0.19555202126503,0.5718674659729,-0.715050101280212,0.402083277702332,0.809677243232727,-0.52847808599472,0.2552130818367,0.781888365745544,-0.444380909204483,0.437236905097961,0.806884229183197,-0.447146356105804,0.386002749204636,0.836326897144318,-0.436528623104095,0.331662505865097,0.819685816764832,-0.428128093481064,0.38055419921875,0.579777479171753,-0.606185078620911,0.54442423582077, +0.5718674659729,-0.715050101280212,0.402083277702332,0.324025064706802,-0.761790096759796,0.560966670513153,0.355349272489548,-0.628612816333771,0.691789567470551,0.908586740493774,-0.41457599401474,0.0509580485522747,0.905779242515564,-0.416718155145645,0.0768769085407257,0.919773876667023,-0.391604751348495,0.0257225073873997,0.921753525733948,-0.387748926877975,-0.00461699673905969,0.919773876667023,-0.391604751348495,0.0257225073873997,0.905779242515564,-0.416718155145645,0.0768769085407257,0.892635226249695,-0.431775242090225,0.129508435726166,0.910303711891174,-0.405882686376572,0.0812794789671898,0.892635226249695,-0.431775242090225,0.129508435726166,0.905779242515564,-0.416718155145645,0.0768769085407257,0.897973716259003,-0.41534024477005,0.145380631089211,0.876990914344788,-0.436529964208603,0.20081926882267,0.929994761943817,-0.359203964471817,-0.0779896304011345,0.928230226039886,-0.368469744920731,-0.0511729456484318,0.934256672859192,-0.328212022781372,-0.139431938529015,0.9326052069664,-0.318338066339493,-0.170024782419205,0.924871385097504,-0.380094885826111,0.0118652665987611,0.928230226039886,-0.368469744920731,-0.0511729456484318,0.919773876667023,-0.391604751348495,0.0257225073873997,0.910303711891174,-0.405882686376572,0.0812794789671898,0.935914158821106,-0.155002310872078,-0.316289335489273,0.966890394687653,-0.143485724925995,-0.211033090949059,0.963285148143768,-0.019251611083746,-0.267789155244827,0.914596319198608,-0.0584051609039307,-0.40012788772583,0.934256672859192,-0.328212022781372,-0.139431938529015,0.942311406135559,-0.255701333284378,-0.216022998094559,0.930738210678101,-0.287071943283081,-0.226530507206917,0.9326052069664,-0.318338066339493,-0.170024782419205,0.898703098297119,0.171856269240379,-0.403482496738434,0.834174036979675,0.171859636902809,-0.524040043354034,0.879079461097717,0.0545366704463959,-0.473545074462891,0.942121863365173,0.0769168511033058,-0.32632839679718,0.879079461097717,0.0545366704463959,-0.473545074462891,0.834174036979675,0.171859636902809,-0.524040043354034, +0.79020756483078,0.181348860263824,-0.585392773151398,0.843963384628296,0.0443091951310635,-0.534567594528198,0.819685816764832,-0.428128093481064,0.38055419921875,0.799119651317596,-0.402984946966171,0.446106344461441,0.752130091190338,-0.424689471721649,0.503923773765564,0.781888365745544,-0.444380909204483,0.437236905097961,0.989501714706421,-0.0315620042383671,-0.141032472252846,0.989091873168945,-0.0998027101159096,-0.108335711061954,0.976318776607513,-0.215806856751442,0.0151355043053627,0.989118278026581,-0.146823480725288,0.00936767365783453,0.976318776607513,-0.215806856751442,0.0151355043053627,0.989091873168945,-0.0998027101159096,-0.108335711061954,0.966890394687653,-0.143485724925995,-0.211033090949059,0.960497796535492,-0.258555501699448,-0.102922454476357,0.950916349887848,0.216000497341156,-0.221588909626007,0.877688348293304,0.354772418737411,-0.322179824113846,0.865605175495148,0.310322314500809,-0.392973035573959,0.935437679290771,0.195304363965988,-0.294639497995377,0.960497796535492,-0.258555501699448,-0.102922454476357,0.943566203117371,-0.327480643987656,-0.0493887960910797,0.914900243282318,-0.386566549539566,0.116291858255863,0.976318776607513,-0.215806856751442,0.0151355043053627,0.992425203323364,0.0758756399154663,-0.0966176241636276,0.982199847698212,0.0583079122006893,-0.178559899330139,0.99465537071228,-0.101890854537487,0.0167034529149532,0.996062576770782,-0.0723169595003128,0.0512786507606506,0.79199230670929,-0.48136031627655,0.375553458929062,0.920321881771088,-0.327427804470062,0.214006260037422,0.914900243282318,-0.386566549539566,0.116291858255863,0.809677243232727,-0.52847808599472,0.2552130818367,0.99465537071228,-0.101890854537487,0.0167034529149532,0.927526712417603,-0.294440060853958,0.230216145515442,0.943928062915802,-0.231711432337761,0.235179960727692,0.996062576770782,-0.0723169595003128,0.0512786507606506,0.943928062915802,-0.231711432337761,0.235179960727692,0.927526712417603,-0.294440060853958,0.230216145515442,0.806885480880737,-0.426367074251175,0.40883606672287, +0.837399363517761,-0.356193035840988,0.414594978094101,0.806885480880737,-0.426367074251175,0.40883606672287,0.927526712417603,-0.294440060853958,0.230216145515442,0.920321881771088,-0.327427804470062,0.214006260037422,0.79199230670929,-0.48136031627655,0.375553458929062,0.806885480880737,-0.426367074251175,0.40883606672287,0.618817389011383,-0.515431225299835,0.592786431312561,0.674352765083313,-0.454488188028336,0.581969916820526,0.837399363517761,-0.356193035840988,0.414594978094101,0.674352765083313,-0.454488188028336,0.581969916820526,0.618817389011383,-0.515431225299835,0.592786431312561,0.410768091678619,-0.539874017238617,0.73471462726593,0.481036335229874,-0.517089664936066,0.707970499992371,0.410768091678619,-0.539874017238617,0.73471462726593,0.618817389011383,-0.515431225299835,0.592786431312561,0.579777479171753,-0.606185078620911,0.54442423582077,0.355349272489548,-0.628612816333771,0.691789567470551,0.286115348339081,-0.561390459537506,0.776517033576965,0.221545055508614,-0.532006621360779,0.81724339723587,-0.0521888993680477,-0.556438565254211,0.829248130321503,-0.00401757657527924,-0.612584948539734,0.79039454460144,-0.0521888993680477,-0.556438565254211,0.829248130321503,0.221545055508614,-0.532006621360779,0.81724339723587,0.166743367910385,-0.587504029273987,0.791855871677399,-0.046120148152113,-0.580380856990814,0.813038110733032,0.166743367910385,-0.587504029273987,0.791855871677399,0.221545055508614,-0.532006621360779,0.81724339723587,0.410768091678619,-0.539874017238617,0.73471462726593,0.355349272489548,-0.628612816333771,0.691789567470551,0.961964786052704,-0.189853474497795,0.196416407823563,0.955482184886932,-0.198175325989723,0.218587160110474,0.868032217025757,-0.325686991214752,0.374764055013657,0.888508915901184,-0.317623943090439,0.331160038709641,0.868032217025757,-0.325686991214752,0.374764055013657,0.955482184886932,-0.198175325989723,0.218587160110474,0.943928062915802,-0.231711432337761,0.235179960727692,0.837399363517761,-0.356193035840988,0.414594978094101,0.943928062915802,-0.231711432337761,0.235179960727692, +0.955482184886932,-0.198175325989723,0.218587160110474,0.995732247829437,-0.0610749796032906,0.0691897571086884,0.996062576770782,-0.0723169595003128,0.0512786507606506,0.9583780169487,0.224284708499908,-0.176657795906067,0.994481861591339,0.0828594267368317,-0.0643445700407028,0.996524631977081,0.0721102505922318,-0.041697908192873,0.968461632728577,0.203231081366539,-0.144150331616402,0.996524631977081,0.0721102505922318,-0.041697908192873,0.994481861591339,0.0828594267368317,-0.0643445700407028,0.995732247829437,-0.0610749796032906,0.0691897571086884,0.995651662349701,-0.0596232861280441,0.0715734884142876,0.995732247829437,-0.0610749796032906,0.0691897571086884,0.994481861591339,0.0828594267368317,-0.0643445700407028,0.992425203323364,0.0758756399154663,-0.0966176241636276,0.996062576770782,-0.0723169595003128,0.0512786507606506,0.766794741153717,-0.438713878393173,0.468567967414856,0.727981209754944,-0.439335405826569,0.526334285736084,0.542957842350006,-0.530088722705841,0.651308655738831,0.589996337890625,-0.546522974967957,0.594320476055145,0.542957842350006,-0.530088722705841,0.651308655738831,0.727981209754944,-0.439335405826569,0.526334285736084,0.674352765083313,-0.454488188028336,0.581969916820526,0.481036335229874,-0.517089664936066,0.707970499992371,0.674352765083313,-0.454488188028336,0.581969916820526,0.727981209754944,-0.439335405826569,0.526334285736084,0.868032217025757,-0.325686991214752,0.374764055013657,0.837399363517761,-0.356193035840988,0.414594978094101,0.357144892215729,-0.631978690624237,0.687786638736725,0.322585344314575,-0.604224741458893,0.72859525680542,0.0183179043233395,-0.651320338249207,0.758581638336182,0.0745918229222298,-0.672625839710236,0.736213684082031,0.0183179043233395,-0.651320338249207,0.758581638336182,0.322585344314575,-0.604224741458893,0.72859525680542,0.286115348339081,-0.561390459537506,0.776517033576965,-0.00401757657527924,-0.612584948539734,0.79039454460144,0.286115348339081,-0.561390459537506,0.776517033576965,0.322585344314575,-0.604224741458893,0.72859525680542, +0.542957842350006,-0.530088722705841,0.651308655738831,0.481036335229874,-0.517089664936066,0.707970499992371,0.621844053268433,-0.554872155189514,0.552654445171356,0.391105234622955,-0.649303913116455,0.652258515357971,0.413879811763763,-0.662914872169495,0.623897016048431,0.641457378864288,-0.561520218849182,0.52271181344986,0.413879811763763,-0.662914872169495,0.623897016048431,0.391105234622955,-0.649303913116455,0.652258515357971,0.119997426867485,-0.704074919223785,0.699913620948792,0.137506917119026,-0.725036025047302,0.674844086170197,0.119997426867485,-0.704074919223785,0.699913620948792,0.391105234622955,-0.649303913116455,0.652258515357971,0.357144892215729,-0.631978690624237,0.687786638736725,0.0745918229222298,-0.672625839710236,0.736213684082031,0.803848683834076,-0.441196858882904,0.398964464664459,0.790132343769073,-0.438906788825989,0.427845329046249,0.621844053268433,-0.554872155189514,0.552654445171356,0.641457378864288,-0.561520218849182,0.52271181344986,0.621844053268433,-0.554872155189514,0.552654445171356,0.790132343769073,-0.438906788825989,0.427845329046249,0.766794741153717,-0.438713878393173,0.468567967414856,0.589996337890625,-0.546522974967957,0.594320476055145,0.766794741153717,-0.438713878393173,0.468567967414856,0.790132343769073,-0.438906788825989,0.427845329046249,0.899721622467041,-0.317192196846008,0.299816876649857,0.888508915901184,-0.317623943090439,0.331160038709641,0.994987070560455,-0.0745266824960709,0.0666822418570518,0.964444279670715,-0.195160359144211,0.178212448954582,0.965418100357056,-0.204182729125023,0.162103101611137,0.994104743003845,-0.0917156562209129,0.0578278452157974,0.965418100357056,-0.204182729125023,0.162103101611137,0.964444279670715,-0.195160359144211,0.178212448954582,0.899721622467041,-0.317192196846008,0.299816876649857,0.906161248683929,-0.320504575967789,0.275950461626053,0.899721622467041,-0.317192196846008,0.299816876649857,0.964444279670715,-0.195160359144211,0.178212448954582,0.961964786052704,-0.189853474497795,0.196416407823563,0.888508915901184,-0.317623943090439,0.331160038709641, +0.653650879859924,-0.573908030986786,0.493325620889664,0.426669001579285,-0.682175099849701,0.593793451786041,0.424600839614868,-0.704623341560364,0.568524360656738,0.657342314720154,-0.591103911399841,0.467436909675598,0.424600839614868,-0.704623341560364,0.568524360656738,0.426669001579285,-0.682175099849701,0.593793451786041,0.138696238398552,-0.747663080692291,0.649433016777039,0.138898104429245,-0.770571649074554,0.6220343708992,0.138696238398552,-0.747663080692291,0.649433016777039,0.426669001579285,-0.682175099849701,0.593793451786041,0.413879811763763,-0.662914872169495,0.623897016048431,0.137506917119026,-0.725036025047302,0.674844086170197,0.652212262153625,-0.6161128282547,0.441615611314774,0.413804322481155,-0.73187392950058,0.541411519050598,0.390994995832443,-0.768842458724976,0.505968749523163,0.636303663253784,-0.656347632408142,0.405370742082596,0.390994995832443,-0.768842458724976,0.505968749523163,0.413804322481155,-0.73187392950058,0.541411519050598,0.121886290609837,-0.796136319637299,0.592714726924896,0.0973178744316101,-0.826116859912872,0.555031716823578,0.121886290609837,-0.796136319637299,0.592714726924896,0.413804322481155,-0.73187392950058,0.541411519050598,0.424600839614868,-0.704623341560364,0.568524360656738,0.138898104429245,-0.770571649074554,0.6220343708992,0.81583571434021,-0.461969554424286,0.347845017910004,0.812784194946289,-0.448714256286621,0.371533781290054,0.653650879859924,-0.573908030986786,0.493325620889664,0.657342314720154,-0.591103911399841,0.467436909675598,0.653650879859924,-0.573908030986786,0.493325620889664,0.812784194946289,-0.448714256286621,0.371533781290054,0.803848683834076,-0.441196858882904,0.398964464664459,0.641457378864288,-0.561520218849182,0.52271181344986,0.803848683834076,-0.441196858882904,0.398964464664459,0.812784194946289,-0.448714256286621,0.371533781290054,0.91002881526947,-0.327875137329102,0.253664344549179,0.906161248683929,-0.320504575967789,0.275950461626053,0.993054449558258,-0.108172349631786,0.0462775118649006,0.965633869171143,-0.21521945297718,0.145711719989777, +0.964813470840454,-0.228931754827499,0.12932613492012,0.991648018360138,-0.1247563585639,0.0327129811048508,0.964813470840454,-0.228931754827499,0.12932613492012,0.965633869171143,-0.21521945297718,0.145711719989777,0.91002881526947,-0.327875137329102,0.253664344549179,0.910880446434021,-0.340157121419907,0.233644783496857,0.91002881526947,-0.327875137329102,0.253664344549179,0.965633869171143,-0.21521945297718,0.145711719989777,0.965418100357056,-0.204182729125023,0.162103101611137,0.906161248683929,-0.320504575967789,0.275950461626053,0.607408165931702,-0.713105380535126,0.350051373243332,0.354242891073227,-0.82048761844635,0.448678016662598,0.323926389217377,-0.871468782424927,0.368257820606232,0.575161099433899,-0.772217273712158,0.269944906234741,0.323926389217377,-0.871468782424927,0.368257820606232,0.354242891073227,-0.82048761844635,0.448678016662598,0.0602224171161652,-0.864339411258698,0.499290138483047,0.0206438545137644,-0.906076669692993,0.422609627246857,0.0602224171161652,-0.864339411258698,0.499290138483047,0.354242891073227,-0.82048761844635,0.448678016662598,0.390994995832443,-0.768842458724976,0.505968749523163,0.0973178744316101,-0.826116859912872,0.555031716823578,0.803426444530487,-0.521454274654388,0.287387251853943,0.813098967075348,-0.484056383371353,0.323356628417969,0.652212262153625,-0.6161128282547,0.441615611314774,0.636303663253784,-0.656347632408142,0.405370742082596,0.652212262153625,-0.6161128282547,0.441615611314774,0.813098967075348,-0.484056383371353,0.323356628417969,0.81583571434021,-0.461969554424286,0.347845017910004,0.657342314720154,-0.591103911399841,0.467436909675598,0.81583571434021,-0.461969554424286,0.347845017910004,0.813098967075348,-0.484056383371353,0.323356628417969,0.908557891845703,-0.360577642917633,0.210965543985367,0.910880446434021,-0.340157121419907,0.233644783496857,0.888130664825439,-0.441388070583344,0.128063857555389,0.783328473567963,-0.575309276580811,0.235405400395393,0.755456328392029,-0.633722126483917,0.16637921333313,0.865404486656189,-0.496753484010696,0.0656588152050972, +0.755456328392029,-0.633722126483917,0.16637921333313,0.783328473567963,-0.575309276580811,0.235405400395393,0.607408165931702,-0.713105380535126,0.350051373243332,0.575161099433899,-0.772217273712158,0.269944906234741,0.607408165931702,-0.713105380535126,0.350051373243332,0.783328473567963,-0.575309276580811,0.235405400395393,0.803426444530487,-0.521454274654388,0.287387251853943,0.636303663253784,-0.656347632408142,0.405370742082596,0.556547999382019,-0.814582765102386,0.163429439067841,0.316047459840775,-0.913869798183441,0.254864424467087,0.310984462499619,-0.940875351428986,0.134321168065071,0.537055850028992,-0.841943383216858,0.0519852191209793,0.310984462499619,-0.940875351428986,0.134321168065071,0.316047459840775,-0.913869798183441,0.254864424467087,0.00680793961510062,-0.94628918170929,0.323249757289886,-0.00328982388600707,-0.978203892707825,0.207620725035667,0.00680793961510062,-0.94628918170929,0.323249757289886,0.316047459840775,-0.913869798183441,0.254864424467087,0.323926389217377,-0.871468782424927,0.368257820606232,0.0206438545137644,-0.906076669692993,0.422609627246857,0.989149570465088,-0.146321043372154,0.0131682241335511,0.962370157241821,-0.249202132225037,0.1083604991436,0.95680183172226,-0.280661940574646,0.0758895054459572,0.983849942684174,-0.178103640675545,-0.0178398657590151,0.95680183172226,-0.280661940574646,0.0758895054459572,0.962370157241821,-0.249202132225037,0.1083604991436,0.908557891845703,-0.360577642917633,0.210965543985367,0.901891887187958,-0.394148826599121,0.176741883158684,0.908557891845703,-0.360577642917633,0.210965543985367,0.962370157241821,-0.249202132225037,0.1083604991436,0.964813470840454,-0.228931754827499,0.12932613492012,0.910880446434021,-0.340157121419907,0.233644783496857,0.512630224227905,-0.854865968227386,-0.0800901427865028,0.317906528711319,-0.948105812072754,0.00556065933778882,0.334278613328934,-0.935530662536621,-0.11419378221035,0.544152855873108,-0.802878081798553,-0.24348421394825,0.334278613328934,-0.935530662536621,-0.11419378221035,0.317906528711319,-0.948105812072754,0.00556065933778882, +0.00594837917014956,-0.996839284896851,0.0792212933301926,0.0191380754113197,-0.998614311218262,-0.0490235239267349,0.00594837917014956,-0.996839284896851,0.0792212933301926,0.317906528711319,-0.948105812072754,0.00556065933778882,0.310984462499619,-0.940875351428986,0.134321168065071,-0.00328982388600707,-0.978203892707825,0.207620725035667,0.833089470863342,-0.553030252456665,-0.0109372679144144,0.727136492729187,-0.681854784488678,0.0796656310558319,0.695606052875519,-0.718350887298584,-0.010211649350822,0.788503408432007,-0.6070916056633,-0.0984990820288658,0.695606052875519,-0.718350887298584,-0.010211649350822,0.727136492729187,-0.681854784488678,0.0796656310558319,0.556547999382019,-0.814582765102386,0.163429439067841,0.537055850028992,-0.841943383216858,0.0519852191209793,0.556547999382019,-0.814582765102386,0.163429439067841,0.727136492729187,-0.681854784488678,0.0796656310558319,0.755456328392029,-0.633722126483917,0.16637921333313,0.575161099433899,-0.772217273712158,0.269944906234741,0.374991148710251,-0.863837838172913,-0.336401164531708,0.293178021907806,-0.930998980998993,-0.217456981539726,0.0430959016084671,-0.975415349006653,-0.216119304299355,0.0667621940374374,-0.915768027305603,-0.396120697259903,0.0430959016084671,-0.975415349006653,-0.216119304299355,0.293178021907806,-0.930998980998993,-0.217456981539726,0.334278613328934,-0.935530662536621,-0.11419378221035,0.0191380754113197,-0.998614311218262,-0.0490235239267349,0.695606052875519,-0.718350887298584,-0.010211649350822,0.647769629955292,-0.754077017307281,-0.108454771339893,0.70058661699295,-0.68558669090271,-0.197861298918724,0.788503408432007,-0.6070916056633,-0.0984990820288658,0.70058661699295,-0.68558669090271,-0.197861298918724,0.647769629955292,-0.754077017307281,-0.108454771339893,0.512630224227905,-0.854865968227386,-0.0800901427865028,0.544152855873108,-0.802878081798553,-0.24348421394825,0.95680183172226,-0.280661940574646,0.0758895054459572,0.945518910884857,-0.324195951223373,0.0298477280884981,0.973286747932434,-0.221125110983849,-0.0617775060236454, +0.983849942684174,-0.178103640675545,-0.0178398657590151,0.973286747932434,-0.221125110983849,-0.0617775060236454,0.945518910884857,-0.324195951223373,0.0298477280884981,0.925055325031281,-0.378651767969131,-0.0299264546483755,0.953888297080994,-0.275172114372253,-0.119905777275562,0.925055325031281,-0.378651767969131,-0.0299264546483755,0.945518910884857,-0.324195951223373,0.0298477280884981,0.888130664825439,-0.441388070583344,0.128063857555389,0.865404486656189,-0.496753484010696,0.0656588152050972,0.920559227466583,-0.339929193258286,-0.192403078079224,0.890910506248474,-0.442318201065063,-0.103116735816002,0.837167203426361,-0.513892352581024,-0.187258198857307,0.866479158401489,-0.414779663085938,-0.277797788381577,0.837167203426361,-0.513892352581024,-0.187258198857307,0.890910506248474,-0.442318201065063,-0.103116735816002,0.833089470863342,-0.553030252456665,-0.0109372679144144,0.788503408432007,-0.6070916056633,-0.0984990820288658,0.833089470863342,-0.553030252456665,-0.0109372679144144,0.890910506248474,-0.442318201065063,-0.103116735816002,0.925055325031281,-0.378651767969131,-0.0299264546483755,0.865404486656189,-0.496753484010696,0.0656588152050972,0.40015235543251,-0.687723636627197,-0.605734586715698,0.396194279193878,-0.791935384273529,-0.464616596698761,0.0702170729637146,-0.847245931625366,-0.52653956413269,0.0678506717085838,-0.739227712154388,-0.670028984546661,0.0702170729637146,-0.847245931625366,-0.52653956413269,0.396194279193878,-0.791935384273529,-0.464616596698761,0.374991148710251,-0.863837838172913,-0.336401164531708,0.0667621940374374,-0.915768027305603,-0.396120697259903,0.374991148710251,-0.863837838172913,-0.336401164531708,0.396194279193878,-0.791935384273529,-0.464616596698761,0.605347454547882,-0.704193413257599,-0.37103396654129,0.544152855873108,-0.802878081798553,-0.24348421394825,0.778698563575745,-0.501135766506195,-0.377480566501617,0.745830237865448,-0.604466557502747,-0.279924035072327,0.605347454547882,-0.704193413257599,-0.37103396654129,0.631275296211243,-0.598334193229675,-0.493444621562958, +0.605347454547882,-0.704193413257599,-0.37103396654129,0.745830237865448,-0.604466557502747,-0.279924035072327,0.70058661699295,-0.68558669090271,-0.197861298918724,0.544152855873108,-0.802878081798553,-0.24348421394825,0.70058661699295,-0.68558669090271,-0.197861298918724,0.745830237865448,-0.604466557502747,-0.279924035072327,0.837167203426361,-0.513892352581024,-0.187258198857307,0.788503408432007,-0.6070916056633,-0.0984990820288658,0.638168394565582,-0.476015567779541,-0.605103611946106,0.401973396539688,-0.547979474067688,-0.733577489852905,0.394735902547836,-0.366298407316208,-0.842620313167572,0.629420936107635,-0.332539588212967,-0.702315270900726,0.394735902547836,-0.366298407316208,-0.842620313167572,0.401973396539688,-0.547979474067688,-0.733577489852905,0.0822428613901138,-0.587737619876862,-0.804860591888428,0.0661617293953896,-0.39223250746727,-0.917483747005463,0.0822428613901138,-0.587737619876862,-0.804860591888428,0.401973396539688,-0.547979474067688,-0.733577489852905,0.40015235543251,-0.687723636627197,-0.605734586715698,0.0678506717085838,-0.739227712154388,-0.670028984546661,0.875931322574615,-0.311253935098648,-0.368599146604538,0.788633465766907,-0.393670290708542,-0.472314476966858,0.782234609127045,-0.286267995834351,-0.55331689119339,0.866147458553314,-0.205035120248795,-0.455795139074326,0.782234609127045,-0.286267995834351,-0.55331689119339,0.788633465766907,-0.393670290708542,-0.472314476966858,0.638168394565582,-0.476015567779541,-0.605103611946106,0.629420936107635,-0.332539588212967,-0.702315270900726,0.638168394565582,-0.476015567779541,-0.605103611946106,0.788633465766907,-0.393670290708542,-0.472314476966858,0.778698563575745,-0.501135766506195,-0.377480566501617,0.631275296211243,-0.598334193229675,-0.493444621562958,0.961324214935303,-0.176067098975182,-0.211792781949043,0.928493082523346,-0.238844633102417,-0.284348130226135,0.914074838161469,-0.1351498067379,-0.382363319396973,0.947341322898865,-0.0733457803726196,-0.311712592840195,0.914074838161469,-0.1351498067379,-0.382363319396973, +0.928493082523346,-0.238844633102417,-0.284348130226135,0.875931322574615,-0.311253935098648,-0.368599146604538,0.866147458553314,-0.205035120248795,-0.455795139074326,0.875931322574615,-0.311253935098648,-0.368599146604538,0.928493082523346,-0.238844633102417,-0.284348130226135,0.920559227466583,-0.339929193258286,-0.192403078079224,0.866479158401489,-0.414779663085938,-0.277797788381577,0.99074798822403,-0.0780425444245338,-0.11103019118309,0.980478823184967,-0.12230146676302,-0.153960004448891,0.967174530029297,-0.0185625571757555,-0.253433883190155,0.977281033992767,0.027188153937459,-0.210196629166603,0.967174530029297,-0.0185625571757555,-0.253433883190155,0.980478823184967,-0.12230146676302,-0.153960004448891,0.961324214935303,-0.176067098975182,-0.211792781949043,0.947341322898865,-0.0733457803726196,-0.311712592840195,0.961324214935303,-0.176067098975182,-0.211792781949043,0.980478823184967,-0.12230146676302,-0.153960004448891,0.973286747932434,-0.221125110983849,-0.0617775060236454,0.953888297080994,-0.275172114372253,-0.119905777275562,0.782234609127045,-0.286267995834351,-0.55331689119339,0.763396441936493,-0.160517677664757,-0.625667691230774,0.816720485687256,-0.0855851322412491,-0.570651233196259,0.866147458553314,-0.205035120248795,-0.455795139074326,0.816720485687256,-0.0855851322412491,-0.570651233196259,0.763396441936493,-0.160517677664757,-0.625667691230774,0.628257095813751,-0.138301327824593,-0.765614628791809,0.661570012569427,0.0201353766024113,-0.749612987041473,0.909271597862244,0.0326748825609684,-0.414918690919876,0.869150698184967,-0.0299054346978664,-0.493642359972,0.804345428943634,0.0609059222042561,-0.591032087802887,0.8478182554245,0.138061761856079,-0.511999189853668,0.804345428943634,0.0609059222042561,-0.591032087802887,0.869150698184967,-0.0299054346978664,-0.493642359972,0.816720485687256,-0.0855851322412491,-0.570651233196259,0.661570012569427,0.0201353766024113,-0.749612987041473,0.816720485687256,-0.0855851322412491,-0.570651233196259,0.869150698184967,-0.0299054346978664,-0.493642359972, +0.914074838161469,-0.1351498067379,-0.382363319396973,0.866147458553314,-0.205035120248795,-0.455795139074326,0.0658390298485756,-0.16928043961525,-0.983366370201111,0.408595353364944,-0.157618716359138,-0.899002909660339,0.394735902547836,-0.366298407316208,-0.842620313167572,0.0661617293953896,-0.39223250746727,-0.917483747005463,0.394735902547836,-0.366298407316208,-0.842620313167572,0.408595353364944,-0.157618716359138,-0.899002909660339,0.628257095813751,-0.138301327824593,-0.765614628791809,0.629420936107635,-0.332539588212967,-0.702315270900726,0.628257095813751,-0.138301327824593,-0.765614628791809,0.408595353364944,-0.157618716359138,-0.899002909660339,0.416139543056488,0.0419656150043011,-0.908331871032715,0.661570012569427,0.0201353766024113,-0.749612987041473,0.938005447387695,0.140061780810356,-0.317062467336655,0.928876876831055,0.091436043381691,-0.358925074338913,0.859211921691895,0.205861747264862,-0.4683758020401,0.863398969173431,0.260428875684738,-0.432109951972961,0.859211921691895,0.205861747264862,-0.4683758020401,0.928876876831055,0.091436043381691,-0.358925074338913,0.909271597862244,0.0326748825609684,-0.414918690919876,0.8478182554245,0.138061761856079,-0.511999189853668,0.909271597862244,0.0326748825609684,-0.414918690919876,0.928876876831055,0.091436043381691,-0.358925074338913,0.967174530029297,-0.0185625571757555,-0.253433883190155,0.947341322898865,-0.0733457803726196,-0.311712592840195,0.804345428943634,0.0609059222042561,-0.591032087802887,0.733133852481842,0.161153703927994,-0.66071492433548,0.740345120429993,0.252019166946411,-0.623197674751282,0.8478182554245,0.138061761856079,-0.511999189853668,0.740345120429993,0.252019166946411,-0.623197674751282,0.733133852481842,0.161153703927994,-0.66071492433548,0.596891164779663,0.180430635809898,-0.781770944595337,0.568586945533752,0.331547886133194,-0.752851128578186,0.347009241580963,0.385352432727814,-0.855036914348602,0.384987145662308,0.223548591136932,-0.895439028739929,0.0163987390697002,0.262881457805634,-0.964688837528229,-0.00743909925222397,0.420722603797913,-0.907158851623535, +0.0163987390697002,0.262881457805634,-0.964688837528229,0.384987145662308,0.223548591136932,-0.895439028739929,0.416139543056488,0.0419656150043011,-0.908331871032715,0.0484069362282753,0.0602640099823475,-0.99700802564621,0.416139543056488,0.0419656150043011,-0.908331871032715,0.384987145662308,0.223548591136932,-0.895439028739929,0.596891164779663,0.180430635809898,-0.781770944595337,0.661570012569427,0.0201353766024113,-0.749612987041473,0.739390432834625,0.382857501506805,-0.553824722766876,0.742296576499939,0.322826832532883,-0.587178468704224,0.564546346664429,0.424194365739822,-0.708058416843414,0.557148277759552,0.49072802066803,-0.669904291629791,0.564546346664429,0.424194365739822,-0.708058416843414,0.742296576499939,0.322826832532883,-0.587178468704224,0.740345120429993,0.252019166946411,-0.623197674751282,0.568586945533752,0.331547886133194,-0.752851128578186,0.740345120429993,0.252019166946411,-0.623197674751282,0.742296576499939,0.322826832532883,-0.587178468704224,0.859211921691895,0.205861747264862,-0.4683758020401,0.8478182554245,0.138061761856079,-0.511999189853668,0.989149570465088,-0.146321043372154,0.0131682241335511,0.995709300041199,-0.0445197373628616,-0.081123374402523,0.997835278511047,-0.0208043027669191,-0.0623855441808701,0.991648018360138,-0.1247563585639,0.0327129811048508,0.997835278511047,-0.0208043027669191,-0.0623855441808701,0.995709300041199,-0.0445197373628616,-0.081123374402523,0.981551349163055,0.0625413656234741,-0.180680707097054,0.98273104429245,0.0887446999549866,-0.162370294332504,0.981551349163055,0.0625413656234741,-0.180680707097054,0.995709300041199,-0.0445197373628616,-0.081123374402523,0.99074798822403,-0.0780425444245338,-0.11103019118309,0.977281033992767,0.027188153937459,-0.210196629166603,0.940521478652954,0.205804690718651,-0.270303159952164,0.940893530845642,0.177625566720963,-0.288389533758163,0.862879574298859,0.301325768232346,-0.405760675668716,0.86042845249176,0.33050462603569,-0.387852519750595,0.862879574298859,0.301325768232346,-0.405760675668716,0.940893530845642,0.177625566720963,-0.288389533758163, +0.938005447387695,0.140061780810356,-0.317062467336655,0.863398969173431,0.260428875684738,-0.432109951972961,0.938005447387695,0.140061780810356,-0.317062467336655,0.940893530845642,0.177625566720963,-0.288389533758163,0.981551349163055,0.0625413656234741,-0.180680707097054,0.977281033992767,0.027188153937459,-0.210196629166603,0.993054449558258,-0.108172349631786,0.0462775118649006,0.998737096786499,-0.000725703546777368,-0.0502382442355156,0.998907446861267,0.0211974121630192,-0.0416497439146042,0.994104743003845,-0.0917156562209129,0.0578278452157974,0.998907446861267,0.0211974121630192,-0.0416497439146042,0.998737096786499,-0.000725703546777368,-0.0502382442355156,0.982308149337769,0.111902683973312,-0.150161772966385,0.980365514755249,0.137365192174911,-0.141471058130264,0.982308149337769,0.111902683973312,-0.150161772966385,0.998737096786499,-0.000725703546777368,-0.0502382442355156,0.997835278511047,-0.0208043027669191,-0.0623855441808701,0.98273104429245,0.0887446999549866,-0.162370294332504,0.729781150817871,0.455140888690948,-0.510163009166718,0.734146893024445,0.425861358642578,-0.528838753700256,0.548325419425964,0.534896016120911,-0.64282613992691,0.542526125907898,0.564267992973328,-0.62230783700943,0.548325419425964,0.534896016120911,-0.64282613992691,0.734146893024445,0.425861358642578,-0.528838753700256,0.739390432834625,0.382857501506805,-0.553824722766876,0.557148277759552,0.49072802066803,-0.669904291629791,0.739390432834625,0.382857501506805,-0.553824722766876,0.734146893024445,0.425861358642578,-0.528838753700256,0.862879574298859,0.301325768232346,-0.405760675668716,0.863398969173431,0.260428875684738,-0.432109951972961,0.856965005397797,0.355741590261459,-0.372905999422073,0.938315451145172,0.231052026152611,-0.257253170013428,0.940521478652954,0.205804690718651,-0.270303159952164,0.86042845249176,0.33050462603569,-0.387852519750595,0.940521478652954,0.205804690718651,-0.270303159952164,0.938315451145172,0.231052026152611,-0.257253170013428,0.982308149337769,0.111902683973312,-0.150161772966385, +0.98273104429245,0.0887446999549866,-0.162370294332504,0.982308149337769,0.111902683973312,-0.150161772966385,0.938315451145172,0.231052026152611,-0.257253170013428,0.934223353862762,0.258059114217758,-0.246235981583595,0.980365514755249,0.137365192174911,-0.141471058130264,0.994987070560455,-0.0745266824960709,0.0666822418570518,0.998242795467377,0.0461783446371555,-0.0371327959001064,0.996524631977081,0.0721102505922318,-0.041697908192873,0.995651662349701,-0.0596232861280441,0.0715734884142876,0.996524631977081,0.0721102505922318,-0.041697908192873,0.998242795467377,0.0461783446371555,-0.0371327959001064,0.976334750652313,0.167396381497383,-0.136926740407944,0.968461632728577,0.203231081366539,-0.144150331616402,0.976334750652313,0.167396381497383,-0.136926740407944,0.998242795467377,0.0461783446371555,-0.0371327959001064,0.998907446861267,0.0211974121630192,-0.0416497439146042,0.980365514755249,0.137365192174911,-0.141471058130264,0.845332860946655,0.409606158733368,-0.3429796397686,0.927215337753296,0.289327442646027,-0.237826347351074,0.934223353862762,0.258059114217758,-0.246235981583595,0.852206587791443,0.381751835346222,-0.35778421163559,0.934223353862762,0.258059114217758,-0.246235981583595,0.927215337753296,0.289327442646027,-0.237826347351074,0.976334750652313,0.167396381497383,-0.136926740407944,0.980365514755249,0.137365192174911,-0.141471058130264,0.976334750652313,0.167396381497383,-0.136926740407944,0.927215337753296,0.289327442646027,-0.237826347351074,0.912956714630127,0.329766064882278,-0.240342229604721,0.968461632728577,0.203231081366539,-0.144150331616402,0.877688348293304,0.354772418737411,-0.322179824113846,0.891241252422333,0.359081774950027,-0.277036875486374,0.795827031135559,0.479936212301254,-0.36921638250351,0.754592716693878,0.465805411338806,-0.462185353040695,0.795827031135559,0.479936212301254,-0.36921638250351,0.891241252422333,0.359081774950027,-0.277036875486374,0.912956714630127,0.329766064882278,-0.240342229604721,0.828931629657745,0.447074115276337,-0.336150348186493,0.912956714630127,0.329766064882278,-0.240342229604721, +0.891241252422333,0.359081774950027,-0.277036875486374,0.9583780169487,0.224284708499908,-0.176657795906067,0.968461632728577,0.203231081366539,-0.144150331616402,0.539806127548218,0.629762411117554,-0.558577358722687,0.72131472826004,0.524516880512238,-0.452313154935837,0.724304854869843,0.50189471244812,-0.472741097211838,0.541990637779236,0.607744932174683,-0.580424249172211,0.724304854869843,0.50189471244812,-0.472741097211838,0.72131472826004,0.524516880512238,-0.452313154935837,0.845332860946655,0.409606158733368,-0.3429796397686,0.852206587791443,0.381751835346222,-0.35778421163559,0.845332860946655,0.409606158733368,-0.3429796397686,0.72131472826004,0.524516880512238,-0.452313154935837,0.70813661813736,0.554532289505005,-0.437077015638351,0.828931629657745,0.447074115276337,-0.336150348186493,0.50523829460144,0.675825893878937,-0.536650240421295,0.675091624259949,0.585452079772949,-0.448884308338165,0.70813661813736,0.554532289505005,-0.437077015638351,0.52993369102478,0.651088953018188,-0.543372333049774,0.70813661813736,0.554532289505005,-0.437077015638351,0.675091624259949,0.585452079772949,-0.448884308338165,0.795827031135559,0.479936212301254,-0.36921638250351,0.828931629657745,0.447074115276337,-0.336150348186493,0.795827031135559,0.479936212301254,-0.36921638250351,0.675091624259949,0.585452079772949,-0.448884308338165,0.633333384990692,0.596297144889832,-0.493273377418518,0.754592716693878,0.465805411338806,-0.462185353040695,0.459563225507736,0.601365327835083,-0.653575837612152,0.545238554477692,0.599459826946259,-0.585971593856812,0.38816311955452,0.706085443496704,-0.592260837554932,0.349969476461411,0.693596959114075,-0.62963855266571,0.38816311955452,0.706085443496704,-0.592260837554932,0.545238554477692,0.599459826946259,-0.585971593856812,0.633333384990692,0.596297144889832,-0.493273377418518,0.460188359022141,0.699368059635162,-0.546910524368286,0.633333384990692,0.596297144889832,-0.493273377418518,0.545238554477692,0.599459826946259,-0.585971593856812,0.641277492046356,0.478991270065308,-0.599441826343536, +0.754592716693878,0.465805411338806,-0.462185353040695,0.079546645283699,0.776551485061646,-0.625012040138245,0.227684542536736,0.765919506549835,-0.601271212100983,0.260280787944794,0.75838315486908,-0.597585737705231,0.0357582159340382,0.76894199848175,-0.638317704200745,0.260280787944794,0.75838315486908,-0.597585737705231,0.227684542536736,0.765919506549835,-0.601271212100983,0.38816311955452,0.706085443496704,-0.592260837554932,0.460188359022141,0.699368059635162,-0.546910524368286,0.38816311955452,0.706085443496704,-0.592260837554932,0.227684542536736,0.765919506549835,-0.601271212100983,0.220906615257263,0.756115794181824,-0.616026818752289,0.349969476461411,0.693596959114075,-0.62963855266571,0.030710730701685,0.75297075510025,-0.657336950302124,0.291859865188599,0.73228508234024,-0.615285575389862,0.311585783958435,0.715845286846161,-0.624883830547333,0.0314251929521561,0.740115284919739,-0.671745300292969,0.311585783958435,0.715845286846161,-0.624883830547333,0.291859865188599,0.73228508234024,-0.615285575389862,0.50523829460144,0.675825893878937,-0.536650240421295,0.52993369102478,0.651088953018188,-0.543372333049774,0.50523829460144,0.675825893878937,-0.536650240421295,0.291859865188599,0.73228508234024,-0.615285575389862,0.260280787944794,0.75838315486908,-0.597585737705231,0.460188359022141,0.699368059635162,-0.546910524368286,-0.144441992044449,0.660929799079895,-0.736415803432465,-0.0550067648291588,0.736840128898621,-0.673825681209564,-0.180764004588127,0.72567230463028,-0.663870573043823,-0.31982147693634,0.647120118141174,-0.692062020301819,-0.180764004588127,0.72567230463028,-0.663870573043823,-0.0550067648291588,0.736840128898621,-0.673825681209564,0.079546645283699,0.776551485061646,-0.625012040138245,0.0357582159340382,0.76894199848175,-0.638317704200745,0.079546645283699,0.776551485061646,-0.625012040138245,-0.0550067648291588,0.736840128898621,-0.673825681209564,0.02501180768013,0.748669922351837,-0.662470936775208,0.115637883543968,0.774021089076996,-0.622510492801666,0.540794849395752,0.587495982646942,-0.601987898349762, +0.726764321327209,0.47911348938942,-0.492203235626221,0.729781150817871,0.455140888690948,-0.510163009166718,0.542526125907898,0.564267992973328,-0.62230783700943,0.729781150817871,0.455140888690948,-0.510163009166718,0.726764321327209,0.47911348938942,-0.492203235626221,0.856965005397797,0.355741590261459,-0.372905999422073,0.86042845249176,0.33050462603569,-0.387852519750595,0.856965005397797,0.355741590261459,-0.372905999422073,0.726764321327209,0.47911348938942,-0.492203235626221,0.724304854869843,0.50189471244812,-0.472741097211838,0.852206587791443,0.381751835346222,-0.35778421163559,0.00808423385024071,0.725178420543671,-0.688513576984406,0.314248204231262,0.701721549034119,-0.639401912689209,0.310116082429886,0.681994497776031,-0.662353038787842,-0.018482843413949,0.708283305168152,-0.705686271190643,0.310116082429886,0.681994497776031,-0.662353038787842,0.314248204231262,0.701721549034119,-0.639401912689209,0.539806127548218,0.629762411117554,-0.558577358722687,0.541990637779236,0.607744932174683,-0.580424249172211,0.539806127548218,0.629762411117554,-0.558577358722687,0.314248204231262,0.701721549034119,-0.639401912689209,0.311585783958435,0.715845286846161,-0.624883830547333,0.52993369102478,0.651088953018188,-0.543372333049774,-0.344202220439911,0.345681339502335,-0.872942924499512,-0.268036127090454,0.528617858886719,-0.805431485176086,-0.519887864589691,0.487424194812775,-0.701522707939148,-0.662346661090851,0.265414595603943,-0.700608313083649,-0.519887864589691,0.487424194812775,-0.701522707939148,-0.268036127090454,0.528617858886719,-0.805431485176086,-0.144441992044449,0.660929799079895,-0.736415803432465,-0.31982147693634,0.647120118141174,-0.692062020301819,-0.144441992044449,0.660929799079895,-0.736415803432465,-0.268036127090454,0.528617858886719,-0.805431485176086,-0.0950275585055351,0.566764056682587,-0.818381488323212,-0.043760783970356,0.67898815870285,-0.732843816280365,-0.180764004588127,0.72567230463028,-0.663870573043823,-0.245551437139511,0.718372702598572,-0.650880217552185,-0.442819148302078,0.64055472612381,-0.627376198768616, +-0.31982147693634,0.647120118141174,-0.692062020301819,-0.442819148302078,0.64055472612381,-0.627376198768616,-0.245551437139511,0.718372702598572,-0.650880217552185,-0.278088808059692,0.700193583965302,-0.657567858695984,-0.505576074123383,0.622995555400848,-0.596883058547974,-0.278088808059692,0.700193583965302,-0.657567858695984,-0.245551437139511,0.718372702598572,-0.650880217552185,0.030710730701685,0.75297075510025,-0.657336950302124,0.0314251929521561,0.740115284919739,-0.671745300292969,-0.702799379825592,0.502638339996338,-0.503415942192078,-0.643880188465118,0.496044784784317,-0.582544207572937,-0.442819148302078,0.64055472612381,-0.627376198768616,-0.505576074123383,0.622995555400848,-0.596883058547974,-0.442819148302078,0.64055472612381,-0.627376198768616,-0.643880188465118,0.496044784784317,-0.582544207572937,-0.519887864589691,0.487424194812775,-0.701522707939148,-0.31982147693634,0.647120118141174,-0.692062020301819,-0.519887864589691,0.487424194812775,-0.701522707939148,-0.643880188465118,0.496044784784317,-0.582544207572937,-0.815178871154785,0.327907800674438,-0.477451324462891,-0.662346661090851,0.265414595603943,-0.700608313083649,-0.554136395454407,0.0203292444348335,-0.832177519798279,-0.326416850090027,0.132676422595978,-0.93586802482605,-0.344202220439911,0.345681339502335,-0.872942924499512,-0.662346661090851,0.265414595603943,-0.700608313083649,-0.344202220439911,0.345681339502335,-0.872942924499512,-0.326416850090027,0.132676422595978,-0.93586802482605,-0.19464647769928,0.190210908651352,-0.962253868579865,-0.153429970145226,0.393673598766327,-0.906355559825897,-0.829212605953217,0.381767690181732,-0.408239871263504,-0.724820792675018,0.488296508789063,-0.486005514860153,-0.578065812587738,0.571437358856201,-0.582493960857391,-0.71201080083847,0.47688302397728,-0.515386581420898,-0.578065812587738,0.571437358856201,-0.582493960857391,-0.724820792675018,0.488296508789063,-0.486005514860153,-0.702799379825592,0.502638339996338,-0.503415942192078,-0.505576074123383,0.622995555400848,-0.596883058547974, +-0.402748823165894,0.637026369571686,-0.657260000705719,-0.340204417705536,0.666487157344818,-0.663367033004761,0.00808423385024071,0.725178420543671,-0.688513576984406,-0.018482843413949,0.708283305168152,-0.705686271190643,0.00808423385024071,0.725178420543671,-0.688513576984406,-0.340204417705536,0.666487157344818,-0.663367033004761,-0.278088808059692,0.700193583965302,-0.657567858695984,0.0314251929521561,0.740115284919739,-0.671745300292969,-0.278088808059692,0.700193583965302,-0.657567858695984,-0.340204417705536,0.666487157344818,-0.663367033004761,-0.578065812587738,0.571437358856201,-0.582493960857391,-0.505576074123383,0.622995555400848,-0.596883058547974,0.307068943977356,0.640687167644501,-0.703724980354309,0.306264072656631,0.663350999355316,-0.682764887809753,0.540794849395752,0.587495982646942,-0.601987898349762,0.542526125907898,0.564267992973328,-0.62230783700943,0.540794849395752,0.587495982646942,-0.601987898349762,0.306264072656631,0.663350999355316,-0.682764887809753,0.310116082429886,0.681994497776031,-0.662353038787842,0.541990637779236,0.607744932174683,-0.580424249172211,0.310116082429886,0.681994497776031,-0.662353038787842,0.306264072656631,0.663350999355316,-0.682764887809753,-0.0314447619020939,0.69211483001709,-0.721102178096771,-0.018482843413949,0.708283305168152,-0.705686271190643,-0.402748823165894,0.637026369571686,-0.657260000705719,-0.417861640453339,0.622978270053864,-0.6612788438797,-0.710681021213531,0.472971498966217,-0.520797967910767,-0.71201080083847,0.47688302397728,-0.515386581420898,-0.710681021213531,0.472971498966217,-0.520797967910767,-0.417861640453339,0.622978270053864,-0.6612788438797,-0.408084720373154,0.607455492019653,-0.681516528129578,-0.704760134220123,0.461420625448227,-0.538891673088074,-0.408084720373154,0.607455492019653,-0.681516528129578,-0.417861640453339,0.622978270053864,-0.6612788438797,-0.0314447619020939,0.69211483001709,-0.721102178096771,-0.0308281201869249,0.671379804611206,-0.740472018718719,0.323250979185104,0.567481637001038,-0.757280230522156, +0.314256936311722,0.61147153377533,-0.726185321807861,0.548325419425964,0.534896016120911,-0.64282613992691,0.557148277759552,0.49072802066803,-0.669904291629791,0.548325419425964,0.534896016120911,-0.64282613992691,0.314256936311722,0.61147153377533,-0.726185321807861,0.307068943977356,0.640687167644501,-0.703724980354309,0.542526125907898,0.564267992973328,-0.62230783700943,0.307068943977356,0.640687167644501,-0.703724980354309,0.314256936311722,0.61147153377533,-0.726185321807861,-0.0245084930211306,0.64429098367691,-0.764387726783752,-0.0308281201869249,0.671379804611206,-0.740472018718719,-0.703363239765167,0.444451421499252,-0.55474591255188,-0.405181378126144,0.584523916244507,-0.702965021133423,-0.409162431955338,0.548035323619843,-0.729550182819366,-0.708066523075104,0.415172398090363,-0.571203887462616,-0.409162431955338,0.548035323619843,-0.729550182819366,-0.405181378126144,0.584523916244507,-0.702965021133423,-0.0245084930211306,0.64429098367691,-0.764387726783752,-0.0187444761395454,0.60321980714798,-0.797354638576508,-0.0245084930211306,0.64429098367691,-0.764387726783752,-0.405181378126144,0.584523916244507,-0.702965021133423,-0.408084720373154,0.607455492019653,-0.681516528129578,-0.0308281201869249,0.671379804611206,-0.740472018718719,0.347009241580963,0.385352432727814,-0.855036914348602,0.3338443338871,0.495575189590454,-0.801843702793121,0.564546346664429,0.424194365739822,-0.708058416843414,0.568586945533752,0.331547886133194,-0.752851128578186,0.564546346664429,0.424194365739822,-0.708058416843414,0.3338443338871,0.495575189590454,-0.801843702793121,0.323250979185104,0.567481637001038,-0.757280230522156,0.557148277759552,0.49072802066803,-0.669904291629791,0.323250979185104,0.567481637001038,-0.757280230522156,0.3338443338871,0.495575189590454,-0.801843702793121,-0.0166043490171432,0.532554030418396,-0.846233129501343,-0.0187444761395454,0.60321980714798,-0.797354638576508,-0.717322111129761,0.36833444237709,-0.591420948505402,-0.415800601243973,0.486775487661362,-0.768218338489532,-0.421808391809464,0.389350086450577,-0.818830966949463, +-0.724259316921234,0.29660776257515,-0.622472763061523,-0.421808391809464,0.389350086450577,-0.818830966949463,-0.415800601243973,0.486775487661362,-0.768218338489532,-0.0166043490171432,0.532554030418396,-0.846233129501343,-0.00743909925222397,0.420722603797913,-0.907158851623535,-0.0166043490171432,0.532554030418396,-0.846233129501343,-0.415800601243973,0.486775487661362,-0.768218338489532,-0.409162431955338,0.548035323619843,-0.729550182819366,-0.0187444761395454,0.60321980714798,-0.797354638576508,-0.716885149478912,0.193425044417381,-0.669822633266449,-0.406554967164993,0.250838577747345,-0.87851756811142,-0.37541264295578,0.0646031200885773,-0.924603521823883,-0.691006660461426,0.0536962784826756,-0.720851182937622,-0.37541264295578,0.0646031200885773,-0.924603521823883,-0.406554967164993,0.250838577747345,-0.87851756811142,0.0163987390697002,0.262881457805634,-0.964688837528229,0.0484069362282753,0.0602640099823475,-0.99700802564621,0.0163987390697002,0.262881457805634,-0.964688837528229,-0.406554967164993,0.250838577747345,-0.87851756811142,-0.421808391809464,0.389350086450577,-0.818830966949463,-0.00743909925222397,0.420722603797913,-0.907158851623535,-0.658147633075714,-0.119798928499222,-0.743296682834625,-0.341657280921936,-0.153093323111534,-0.927271664142609,-0.311913907527924,-0.365304380655289,-0.877076029777527,-0.622326612472534,-0.29792058467865,-0.723845899105072,-0.311913907527924,-0.365304380655289,-0.877076029777527,-0.341657280921936,-0.153093323111534,-0.927271664142609,0.0658390298485756,-0.16928043961525,-0.983366370201111,0.0661617293953896,-0.39223250746727,-0.917483747005463,0.0658390298485756,-0.16928043961525,-0.983366370201111,-0.341657280921936,-0.153093323111534,-0.927271664142609,-0.37541264295578,0.0646031200885773,-0.924603521823883,0.0484069362282753,0.0602640099823475,-0.99700802564621,-0.873201966285706,0.272477895021439,-0.404071718454361,-0.876546919345856,0.24255383014679,-0.415732085704803,-0.940643668174744,0.156116455793381,-0.301358908414841,-0.941398143768311,0.172345191240311,-0.289942413568497, +-0.940643668174744,0.156116455793381,-0.301358908414841,-0.876546919345856,0.24255383014679,-0.415732085704803,-0.879667341709137,0.196900233626366,-0.432915419340134,-0.939928293228149,0.129181504249573,-0.315985530614853,-0.879667341709137,0.196900233626366,-0.432915419340134,-0.876546919345856,0.24255383014679,-0.415732085704803,-0.717322111129761,0.36833444237709,-0.591420948505402,-0.724259316921234,0.29660776257515,-0.622472763061523,-0.879667341709137,0.196900233626366,-0.432915419340134,-0.877733767032623,0.130273178219795,-0.461099058389664,-0.937841892242432,0.0865924581885338,-0.336086750030518,-0.939928293228149,0.129181504249573,-0.315985530614853,-0.937841892242432,0.0865924581885338,-0.336086750030518,-0.877733767032623,0.130273178219795,-0.461099058389664,-0.867424070835114,0.0367090962827206,-0.496213614940643,-0.933542311191559,0.0222881771624088,-0.357773661613464,-0.867424070835114,0.0367090962827206,-0.496213614940643,-0.877733767032623,0.130273178219795,-0.461099058389664,-0.716885149478912,0.193425044417381,-0.669822633266449,-0.691006660461426,0.0536962784826756,-0.720851182937622,-0.929832100868225,-0.0626992583274841,-0.362603008747101,-0.852758765220642,-0.0831268876791,-0.515647649765015,-0.835047483444214,-0.209874138236046,-0.508574962615967,-0.924772799015045,-0.152741327881813,-0.348518788814545,-0.835047483444214,-0.209874138236046,-0.508574962615967,-0.852758765220642,-0.0831268876791,-0.515647649765015,-0.658147633075714,-0.119798928499222,-0.743296682834625,-0.622326612472534,-0.29792058467865,-0.723845899105072,-0.658147633075714,-0.119798928499222,-0.743296682834625,-0.852758765220642,-0.0831268876791,-0.515647649765015,-0.867424070835114,0.0367090962827206,-0.496213614940643,-0.691006660461426,0.0536962784826756,-0.720851182937622,-0.267184793949127,-0.707894921302795,-0.653832614421844,-0.283675044775009,-0.557315707206726,-0.780338168144226,0.0822428613901138,-0.587737619876862,-0.804860591888428,0.0678506717085838,-0.739227712154388,-0.670028984546661,0.0822428613901138,-0.587737619876862,-0.804860591888428, +-0.283675044775009,-0.557315707206726,-0.780338168144226,-0.311913907527924,-0.365304380655289,-0.877076029777527,0.0661617293953896,-0.39223250746727,-0.917483747005463,-0.311913907527924,-0.365304380655289,-0.877076029777527,-0.283675044775009,-0.557315707206726,-0.780338168144226,-0.580949723720551,-0.464185059070587,-0.668602764606476,-0.622326612472534,-0.29792058467865,-0.723845899105072,-0.515997290611267,-0.73488438129425,-0.440104246139526,-0.270238667726517,-0.824600636959076,-0.496995866298676,-0.266667097806931,-0.890563011169434,-0.368491649627686,-0.557763934135437,-0.791554272174835,-0.249682143330574,-0.266667097806931,-0.890563011169434,-0.368491649627686,-0.270238667726517,-0.824600636959076,-0.496995866298676,0.0702170729637146,-0.847245931625366,-0.52653956413269,0.0667621940374374,-0.915768027305603,-0.396120697259903,0.0702170729637146,-0.847245931625366,-0.52653956413269,-0.270238667726517,-0.824600636959076,-0.496995866298676,-0.267184793949127,-0.707894921302795,-0.653832614421844,0.0678506717085838,-0.739227712154388,-0.670028984546661,-0.91071605682373,-0.251231551170349,-0.327839821577072,-0.809317827224731,-0.334098935127258,-0.483096987009048,-0.77514123916626,-0.450169444084167,-0.44328710436821,-0.88285905122757,-0.366750419139862,-0.293349623680115,-0.77514123916626,-0.450169444084167,-0.44328710436821,-0.809317827224731,-0.334098935127258,-0.483096987009048,-0.580949723720551,-0.464185059070587,-0.668602764606476,-0.535548329353333,-0.610554158687592,-0.583447992801666,-0.580949723720551,-0.464185059070587,-0.668602764606476,-0.809317827224731,-0.334098935127258,-0.483096987009048,-0.835047483444214,-0.209874138236046,-0.508574962615967,-0.622326612472534,-0.29792058467865,-0.723845899105072,-0.266667097806931,-0.890563011169434,-0.368491649627686,-0.196505293250084,-0.948624968528748,-0.247984245419502,-0.310496121644974,-0.94143670797348,-0.131487622857094,-0.557763934135437,-0.791554272174835,-0.249682143330574,-0.310496121644974,-0.94143670797348,-0.131487622857094,-0.196505293250084,-0.948624968528748,-0.247984245419502, +0.0430959016084671,-0.975415349006653,-0.216119304299355,0.0191380754113197,-0.998614311218262,-0.0490235239267349,-0.327003836631775,-0.932535529136658,0.153121083974838,-0.321859627962112,-0.946779608726501,0.00383359636180103,0.00594837917014956,-0.996839284896851,0.0792212933301926,-0.00328982388600707,-0.978203892707825,0.207620725035667,0.00594837917014956,-0.996839284896851,0.0792212933301926,-0.321859627962112,-0.946779608726501,0.00383359636180103,-0.310496121644974,-0.94143670797348,-0.131487622857094,0.0191380754113197,-0.998614311218262,-0.0490235239267349,-0.310496121644974,-0.94143670797348,-0.131487622857094,-0.321859627962112,-0.946779608726501,0.00383359636180103,-0.622719347476959,-0.778302788734436,-0.0804065987467766,-0.557763934135437,-0.791554272174835,-0.249682143330574,-0.77514123916626,-0.450169444084167,-0.44328710436821,-0.727853536605835,-0.575738370418549,-0.372497618198395,-0.787928640842438,-0.561852514743805,-0.251972526311874,-0.88285905122757,-0.366750419139862,-0.293349623680115,-0.787928640842438,-0.561852514743805,-0.251972526311874,-0.727853536605835,-0.575738370418549,-0.372497618198395,-0.515997290611267,-0.73488438129425,-0.440104246139526,-0.557763934135437,-0.791554272174835,-0.249682143330574,-0.979235470294952,-0.0511173829436302,-0.196175694465637,-0.962268829345703,-0.0581866018474102,-0.26580622792244,-0.962187588214874,-0.122896865010262,-0.243086993694305,-0.979972839355469,-0.101066254079342,-0.171577647328377,-0.962187588214874,-0.122896865010262,-0.243086993694305,-0.962268829345703,-0.0581866018474102,-0.26580622792244,-0.929832100868225,-0.0626992583274841,-0.362603008747101,-0.924772799015045,-0.152741327881813,-0.348518788814545,-0.929832100868225,-0.0626992583274841,-0.362603008747101,-0.962268829345703,-0.0581866018474102,-0.26580622792244,-0.961361408233643,0.00672297505661845,-0.27520740032196,-0.933542311191559,0.0222881771624088,-0.357773661613464,-0.968387186527252,0.0771231725811958,-0.237230196595192,-0.965153098106384,0.0525701828300953,-0.25635102391243, +-0.980257153511047,0.0154890529811382,-0.197119429707527,-0.983104288578033,0.0312387645244598,-0.180361151695251,-0.980257153511047,0.0154890529811382,-0.197119429707527,-0.965153098106384,0.0525701828300953,-0.25635102391243,-0.961361408233643,0.00672297505661845,-0.27520740032196,-0.975809037685394,-0.00775173911824822,-0.218487158417702,-0.961361408233643,0.00672297505661845,-0.27520740032196,-0.965153098106384,0.0525701828300953,-0.25635102391243,-0.937841892242432,0.0865924581885338,-0.336086750030518,-0.933542311191559,0.0222881771624088,-0.357773661613464,-0.97369784116745,-0.177088499069214,-0.143361046910286,-0.953022539615631,-0.20731158554554,-0.220839008688927,-0.924704253673553,-0.331576824188232,-0.187026351690292,-0.948109328746796,-0.302053302526474,-0.0992600098252296,-0.924704253673553,-0.331576824188232,-0.187026351690292,-0.953022539615631,-0.20731158554554,-0.220839008688927,-0.91071605682373,-0.251231551170349,-0.327839821577072,-0.88285905122757,-0.366750419139862,-0.293349623680115,-0.91071605682373,-0.251231551170349,-0.327839821577072,-0.953022539615631,-0.20731158554554,-0.220839008688927,-0.962187588214874,-0.122896865010262,-0.243086993694305,-0.924772799015045,-0.152741327881813,-0.348518788814545,-0.862593770027161,-0.505231440067291,-0.0259434469044209,-0.832968950271606,-0.534916579723358,-0.141516700387001,-0.622719347476959,-0.778302788734436,-0.0804065987467766,-0.646524131298065,-0.75988781452179,0.0676540806889534,-0.622719347476959,-0.778302788734436,-0.0804065987467766,-0.832968950271606,-0.534916579723358,-0.141516700387001,-0.787928640842438,-0.561852514743805,-0.251972526311874,-0.557763934135437,-0.791554272174835,-0.249682143330574,-0.787928640842438,-0.561852514743805,-0.251972526311874,-0.832968950271606,-0.534916579723358,-0.141516700387001,-0.924704253673553,-0.331576824188232,-0.187026351690292,-0.88285905122757,-0.366750419139862,-0.293349623680115,-0.988251030445099,-0.144525244832039,-0.0497235842049122,-0.98369961977005,-0.156531363725662,-0.0885036587715149,-0.959132432937622,-0.281308948993683,-0.0305021833628416, +-0.962441504001617,-0.270519137382507,0.0229311026632786,-0.959132432937622,-0.281308948993683,-0.0305021833628416,-0.98369961977005,-0.156531363725662,-0.0885036587715149,-0.97369784116745,-0.177088499069214,-0.143361046910286,-0.948109328746796,-0.302053302526474,-0.0992600098252296,-0.97369784116745,-0.177088499069214,-0.143361046910286,-0.98369961977005,-0.156531363725662,-0.0885036587715149,-0.98866331577301,-0.0825416371226311,-0.125426605343819,-0.979972839355469,-0.101066254079342,-0.171577647328377,-0.980257153511047,0.0154890529811382,-0.197119429707527,-0.987172782421112,-0.0306289494037628,-0.156690150499344,-0.990605771541595,-0.0153664480894804,-0.135882541537285,-0.983104288578033,0.0312387645244598,-0.180361151695251,-0.990605771541595,-0.0153664480894804,-0.135882541537285,-0.987172782421112,-0.0306289494037628,-0.156690150499344,-0.98866331577301,-0.0825416371226311,-0.125426605343819,-0.992979526519775,-0.0694925487041473,-0.0957209765911102,-0.98866331577301,-0.0825416371226311,-0.125426605343819,-0.987172782421112,-0.0306289494037628,-0.156690150499344,-0.979235470294952,-0.0511173829436302,-0.196175694465637,-0.979972839355469,-0.101066254079342,-0.171577647328377,-0.868027806282043,-0.4756098985672,0.142558544874191,-0.871350526809692,-0.48614302277565,0.066433273255825,-0.653223097324371,-0.733468353748322,0.18794609606266,-0.643077254295349,-0.709993004798889,0.286986976861954,-0.653223097324371,-0.733468353748322,0.18794609606266,-0.871350526809692,-0.48614302277565,0.066433273255825,-0.862593770027161,-0.505231440067291,-0.0259434469044209,-0.646524131298065,-0.75988781452179,0.0676540806889534,-0.862593770027161,-0.505231440067291,-0.0259434469044209,-0.871350526809692,-0.48614302277565,0.066433273255825,-0.959132432937622,-0.281308948993683,-0.0305021833628416,-0.948109328746796,-0.302053302526474,-0.0992600098252296,-0.318086922168732,-0.862951040267944,0.392601728439331,-0.338471829891205,-0.897227048873901,0.283584892749786,0.00680793961510062,-0.94628918170929,0.323249757289886,0.0206438545137644,-0.906076669692993,0.422609627246857, +0.00680793961510062,-0.94628918170929,0.323249757289886,-0.338471829891205,-0.897227048873901,0.283584892749786,-0.327003836631775,-0.932535529136658,0.153121083974838,-0.00328982388600707,-0.978203892707825,0.207620725035667,-0.327003836631775,-0.932535529136658,0.153121083974838,-0.338471829891205,-0.897227048873901,0.283584892749786,-0.653223097324371,-0.733468353748322,0.18794609606266,-0.646524131298065,-0.75988781452179,0.0676540806889534,-0.847881615161896,-0.468448668718338,0.248299449682236,-0.859543204307556,-0.469230562448502,0.202504530549049,-0.617830097675323,-0.696017861366272,0.365848451852798,-0.590779066085815,-0.686415255069733,0.424045115709305,-0.617830097675323,-0.696017861366272,0.365848451852798,-0.859543204307556,-0.469230562448502,0.202504530549049,-0.868027806282043,-0.4756098985672,0.142558544874191,-0.643077254295349,-0.709993004798889,0.286986976861954,-0.868027806282043,-0.4756098985672,0.142558544874191,-0.859543204307556,-0.469230562448502,0.202504530549049,-0.962232112884521,-0.265070706605911,0.0620222389698029,-0.962441504001617,-0.270519137382507,0.0229311026632786,-0.99521666765213,-0.0610512346029282,-0.076266810297966,-0.990276455879211,-0.137116804718971,-0.0234831012785435,-0.99124002456665,-0.131941825151443,-0.00587113155052066,-0.996447622776031,-0.0553836040198803,-0.0634411051869392,-0.99124002456665,-0.131941825151443,-0.00587113155052066,-0.990276455879211,-0.137116804718971,-0.0234831012785435,-0.962232112884521,-0.265070706605911,0.0620222389698029,-0.960773766040802,-0.262095183134079,0.0906642004847527,-0.962232112884521,-0.265070706605911,0.0620222389698029,-0.990276455879211,-0.137116804718971,-0.0234831012785435,-0.988251030445099,-0.144525244832039,-0.0497235842049122,-0.962441504001617,-0.270519137382507,0.0229311026632786,-0.244178518652916,-0.80964869260788,0.533709466457367,-0.214072972536087,-0.789665639400482,0.574979186058044,-0.565668404102325,-0.679015219211578,0.467929124832153,-0.590779066085815,-0.686415255069733,0.424045115709305,-0.565668404102325,-0.679015219211578,0.467929124832153, +-0.214072972536087,-0.789665639400482,0.574979186058044,-0.19432207942009,-0.769234716892242,0.60870099067688,-0.543036162853241,-0.671515643596649,0.50416111946106,-0.19432207942009,-0.769234716892242,0.60870099067688,-0.214072972536087,-0.789665639400482,0.574979186058044,0.121886290609837,-0.796136319637299,0.592714726924896,0.138898104429245,-0.770571649074554,0.6220343708992,-0.617830097675323,-0.696017861366272,0.365848451852798,-0.281205296516418,-0.834069550037384,0.474606961011887,-0.244178518652916,-0.80964869260788,0.533709466457367,-0.590779066085815,-0.686415255069733,0.424045115709305,-0.244178518652916,-0.80964869260788,0.533709466457367,-0.281205296516418,-0.834069550037384,0.474606961011887,0.0602224171161652,-0.864339411258698,0.499290138483047,0.0973178744316101,-0.826116859912872,0.555031716823578,0.0602224171161652,-0.864339411258698,0.499290138483047,-0.281205296516418,-0.834069550037384,0.474606961011887,-0.318086922168732,-0.862951040267944,0.392601728439331,0.0206438545137644,-0.906076669692993,0.422609627246857,-0.822051048278809,-0.471668988466263,0.318999230861664,-0.835339248180389,-0.469291567802429,0.286310464143753,-0.565668404102325,-0.679015219211578,0.467929124832153,-0.543036162853241,-0.671515643596649,0.50416111946106,-0.565668404102325,-0.679015219211578,0.467929124832153,-0.835339248180389,-0.469291567802429,0.286310464143753,-0.847881615161896,-0.468448668718338,0.248299449682236,-0.590779066085815,-0.686415255069733,0.424045115709305,-0.847881615161896,-0.468448668718338,0.248299449682236,-0.835339248180389,-0.469291567802429,0.286310464143753,-0.958480954170227,-0.2610904276371,0.114656709134579,-0.960773766040802,-0.262095183134079,0.0906642004847527,-0.806780338287354,-0.46191880106926,0.368424147367477,-0.812737941741943,-0.469397723674774,0.345141768455505,-0.531385600566864,-0.658237874507904,0.53324681520462,-0.524181425571442,-0.642627060413361,0.558806300163269,-0.531385600566864,-0.658237874507904,0.53324681520462,-0.812737941741943,-0.469397723674774,0.345141768455505, +-0.822051048278809,-0.471668988466263,0.318999230861664,-0.543036162853241,-0.671515643596649,0.50416111946106,-0.822051048278809,-0.471668988466263,0.318999230861664,-0.812737941741943,-0.469397723674774,0.345141768455505,-0.952653765678406,-0.262061268091202,0.154190644621849,-0.955572426319122,-0.261624395847321,0.135772123932838,-0.182807892560959,-0.726442694664001,0.662466943264008,-0.186398461461067,-0.747945785522461,0.637050032615662,0.138696238398552,-0.747663080692291,0.649433016777039,0.137506917119026,-0.725036025047302,0.674844086170197,0.138696238398552,-0.747663080692291,0.649433016777039,-0.186398461461067,-0.747945785522461,0.637050032615662,-0.19432207942009,-0.769234716892242,0.60870099067688,0.138898104429245,-0.770571649074554,0.6220343708992,-0.19432207942009,-0.769234716892242,0.60870099067688,-0.186398461461067,-0.747945785522461,0.637050032615662,-0.531385600566864,-0.658237874507904,0.53324681520462,-0.543036162853241,-0.671515643596649,0.50416111946106,-0.818417012691498,-0.373486369848251,0.436693787574768,-0.801837027072906,-0.452406466007233,0.390366286039352,-0.520392119884491,-0.625280499458313,0.581563651561737,-0.543345808982849,-0.566555798053741,0.619507730007172,-0.520392119884491,-0.625280499458313,0.581563651561737,-0.801837027072906,-0.452406466007233,0.390366286039352,-0.806780338287354,-0.46191880106926,0.368424147367477,-0.524181425571442,-0.642627060413361,0.558806300163269,-0.806780338287354,-0.46191880106926,0.368424147367477,-0.801837027072906,-0.452406466007233,0.390366286039352,-0.947377622127533,-0.257856458425522,0.189698785543442,-0.950035333633423,-0.260532796382904,0.171917483210564,-0.204335987567902,-0.659367442131042,0.72352010011673,-0.186929672956467,-0.705357849597931,0.683759868144989,0.119997426867485,-0.704074919223785,0.699913620948792,0.0745918229222298,-0.672625839710236,0.736213684082031,0.119997426867485,-0.704074919223785,0.699913620948792,-0.186929672956467,-0.705357849597931,0.683759868144989,-0.182807892560959,-0.726442694664001,0.662466943264008, +0.137506917119026,-0.725036025047302,0.674844086170197,-0.182807892560959,-0.726442694664001,0.662466943264008,-0.186929672956467,-0.705357849597931,0.683759868144989,-0.520392119884491,-0.625280499458313,0.581563651561737,-0.524181425571442,-0.642627060413361,0.558806300163269,-0.240964815020561,-0.62697434425354,0.740836679935455,-0.219719171524048,-0.633464992046356,0.741920232772827,0.0183179043233395,-0.651320338249207,0.758581638336182,-0.00401757657527924,-0.612584948539734,0.79039454460144,0.0183179043233395,-0.651320338249207,0.758581638336182,-0.219719171524048,-0.633464992046356,0.741920232772827,-0.204335987567902,-0.659367442131042,0.72352010011673,0.0745918229222298,-0.672625839710236,0.736213684082031,-0.204335987567902,-0.659367442131042,0.72352010011673,-0.219719171524048,-0.633464992046356,0.741920232772827,-0.578344762325287,-0.523539006710052,0.625639140605927,-0.543345808982849,-0.566555798053741,0.619507730007172,-0.230417415499687,-0.589602887630463,0.774129331111908,-0.260909587144852,-0.579563319683075,0.772031486034393,-0.247674569487572,-0.592890083789825,0.766249775886536,-0.245313540101051,-0.590383350849152,0.768939971923828,-0.247674569487572,-0.592890083789825,0.766249775886536,-0.260909587144852,-0.579563319683075,0.772031486034393,-0.0521888993680477,-0.556438565254211,0.829248130321503,-0.046120148152113,-0.580380856990814,0.813038110733032,-0.0521888993680477,-0.556438565254211,0.829248130321503,-0.260909587144852,-0.579563319683075,0.772031486034393,-0.240964815020561,-0.62697434425354,0.740836679935455,-0.00401757657527924,-0.612584948539734,0.79039454460144,-0.818417012691498,-0.373486369848251,0.436693787574768,-0.839525520801544,-0.332665979862213,0.429569810628891,-0.922896564006805,-0.219059616327286,0.316661804914474,-0.940586507320404,-0.221211418509483,0.257609218358994,-0.922896564006805,-0.219059616327286,0.316661804914474,-0.839525520801544,-0.332665979862213,0.429569810628891,-0.841974496841431,-0.364123821258545,0.398111611604691,-0.90075945854187,-0.296011954545975,0.317820012569427, +-0.841974496841431,-0.364123821258545,0.398111611604691,-0.839525520801544,-0.332665979862213,0.429569810628891,-0.578344762325287,-0.523539006710052,0.625639140605927,-0.447567373514175,-0.578831672668457,0.681643068790436,-0.987251818180084,-0.126403361558914,0.0967267975211143,-0.98156726360321,-0.112370327115059,0.154592126607895,-0.999247491359711,-0.0249399412423372,0.0297044180333614,-0.998536765575409,-0.0538738816976547,-0.00469217775389552,-0.999247491359711,-0.0249399412423372,0.0297044180333614,-0.98156726360321,-0.112370327115059,0.154592126607895,-0.974282920360565,-0.125938758254051,0.186848327517509,-0.997341752052307,0.00589697808027267,0.0726280584931374,-0.974282920360565,-0.125938758254051,0.186848327517509,-0.98156726360321,-0.112370327115059,0.154592126607895,-0.922896564006805,-0.219059616327286,0.316661804914474,-0.90075945854187,-0.296011954545975,0.317820012569427,-0.269309669733047,-0.612241268157959,0.743392944335938,-0.254184544086456,-0.666435301303864,0.700895309448242,-0.283683657646179,-0.743323624134064,0.605799973011017,-0.248487085103989,-0.599471211433411,0.760847151279449,-0.283683657646179,-0.743323624134064,0.605799973011017,-0.254184544086456,-0.666435301303864,0.700895309448242,-0.0501322895288467,-0.707809090614319,0.704622626304626,-0.0272339042276144,-0.89887672662735,0.437354296445847,-0.0501322895288467,-0.707809090614319,0.704622626304626,-0.254184544086456,-0.666435301303864,0.700895309448242,-0.247674569487572,-0.592890083789825,0.766249775886536,-0.046120148152113,-0.580380856990814,0.813038110733032,-0.138218551874161,-0.970393717288971,0.198070183396339,-0.250744044780731,-0.850114226341248,0.463069438934326,-0.283683657646179,-0.743323624134064,0.605799973011017,-0.0272339042276144,-0.89887672662735,0.437354296445847,-0.072753481566906,-0.966231167316437,-0.247193098068237,-0.00622919015586376,-0.990969955921173,-0.13393859565258,0.0735059455037117,-0.902492642402649,-0.424386560916901,-0.0111613115295768,-0.902023434638977,-0.4315425157547,0.0735059455037117,-0.902492642402649,-0.424386560916901, +-0.00622919015586376,-0.990969955921173,-0.13393859565258,0.0791421085596085,-0.99609100818634,-0.0392342545092106,0.171943947672844,-0.9038245677948,-0.391837179660797,0.0791421085596085,-0.99609100818634,-0.0392342545092106,-0.00622919015586376,-0.990969955921173,-0.13393859565258,-0.138218551874161,-0.970393717288971,0.198070183396339,-0.0272339042276144,-0.89887672662735,0.437354296445847,-0.947377622127533,-0.257856458425522,0.189698785543442,-0.989906668663025,-0.12827755510807,0.0602465718984604,-0.99066436290741,-0.127964213490486,0.0470031686127186,-0.950035333633423,-0.260532796382904,0.171917483210564,-0.99066436290741,-0.127964213490486,0.0470031686127186,-0.989906668663025,-0.12827755510807,0.0602465718984604,-0.998505115509033,-0.0525358617305756,-0.0150875132530928,-0.998370885848999,-0.05101403221488,-0.0255536492913961,-0.998505115509033,-0.0525358617305756,-0.0150875132530928,-0.989906668663025,-0.12827755510807,0.0602465718984604,-0.987251818180084,-0.126403361558914,0.0967267975211143,-0.998536765575409,-0.0538738816976547,-0.00469217775389552,-0.991652309894562,-0.127122908830643,0.0215761531144381,-0.991292595863342,-0.127188116312027,0.0340903587639332,-0.998134613037109,-0.0498636998236179,-0.035224799066782,-0.997764945030212,-0.0499648228287697,-0.0443698726594448,-0.998134613037109,-0.0498636998236179,-0.035224799066782,-0.991292595863342,-0.127188116312027,0.0340903587639332,-0.99066436290741,-0.127964213490486,0.0470031686127186,-0.998370885848999,-0.05101403221488,-0.0255536492913961,-0.99066436290741,-0.127964213490486,0.0470031686127186,-0.991292595863342,-0.127188116312027,0.0340903587639332,-0.952653765678406,-0.262061268091202,0.154190644621849,-0.950035333633423,-0.260532796382904,0.171917483210564,-0.998328685760498,-0.00283233472146094,-0.057722520083189,-0.999453604221344,0.0174932815134525,-0.0280454829335213,-0.994657158851624,0.0667804479598999,-0.0787238553166389,-0.993704259395599,0.0520858727395535,-0.0991911217570305,-0.994657158851624,0.0667804479598999,-0.0787238553166389, +-0.999453604221344,0.0174932815134525,-0.0280454829335213,-0.999091923236847,0.0420396961271763,0.00693105673417449,-0.99579131603241,0.0757562071084976,-0.0515819564461708,-0.999091923236847,0.0420396961271763,0.00693105673417449,-0.999453604221344,0.0174932815134525,-0.0280454829335213,-0.999247491359711,-0.0249399412423372,0.0297044180333614,-0.997341752052307,0.00589697808027267,0.0726280584931374,-0.997070074081421,0.0024189492687583,-0.0764552056789398,-0.997724652290344,6.05597379035316e-05,-0.0674206838011742,-0.992729842662811,0.0451260283589363,-0.111584566533566,-0.991380333900452,0.0493155159056187,-0.121379993855953,-0.992729842662811,0.0451260283589363,-0.111584566533566,-0.997724652290344,6.05597379035316e-05,-0.0674206838011742,-0.998328685760498,-0.00283233472146094,-0.057722520083189,-0.993704259395599,0.0520858727395535,-0.0991911217570305,-0.998328685760498,-0.00283233472146094,-0.057722520083189,-0.997724652290344,6.05597379035316e-05,-0.0674206838011742,-0.998505115509033,-0.0525358617305756,-0.0150875132530928,-0.998536765575409,-0.0538738816976547,-0.00469217775389552,-0.985484778881073,0.10607735067606,-0.132541477680206,-0.982116937637329,0.0972262471914291,-0.16122430562973,-0.992729842662811,0.0451260283589363,-0.111584566533566,-0.993704259395599,0.0520858727395535,-0.0991911217570305,-0.992729842662811,0.0451260283589363,-0.111584566533566,-0.982116937637329,0.0972262471914291,-0.16122430562973,-0.979355037212372,0.104070901870728,-0.173300385475159,-0.991380333900452,0.0493155159056187,-0.121379993855953,-0.979355037212372,0.104070901870728,-0.173300385475159,-0.982116937637329,0.0972262471914291,-0.16122430562973,-0.957691788673401,0.17285044491291,-0.230106845498085,-0.951921045780182,0.182818129658699,-0.245812818408012,-0.985484778881073,0.10607735067606,-0.132541477680206,-0.987275242805481,0.109797686338425,-0.115030311048031,-0.977473735809326,0.152812570333481,-0.145579650998116,-0.968631088733673,0.170138478279114,-0.181126326322556,-0.977473735809326,0.152812570333481,-0.145579650998116, +-0.987275242805481,0.109797686338425,-0.115030311048031,-0.988432168960571,0.0943712741136551,-0.118726469576359,-0.977840900421143,0.107809267938137,-0.179455548524857,-0.988432168960571,0.0943712741136551,-0.118726469576359,-0.987275242805481,0.109797686338425,-0.115030311048031,-0.994657158851624,0.0667804479598999,-0.0787238553166389,-0.99579131603241,0.0757562071084976,-0.0515819564461708,-0.99124002456665,-0.131941825151443,-0.00587113155052066,-0.991651237010956,-0.128671705722809,0.00845177844166756,-0.997222781181335,-0.0518197081983089,-0.0534919276833534,-0.996447622776031,-0.0553836040198803,-0.0634411051869392,-0.997222781181335,-0.0518197081983089,-0.0534919276833534,-0.991651237010956,-0.128671705722809,0.00845177844166756,-0.991652309894562,-0.127122908830643,0.0215761531144381,-0.997764945030212,-0.0499648228287697,-0.0443698726594448,-0.991652309894562,-0.127122908830643,0.0215761531144381,-0.991651237010956,-0.128671705722809,0.00845177844166756,-0.958480954170227,-0.2610904276371,0.114656709134579,-0.955572426319122,-0.261624395847321,0.135772123932838,-0.995700299739838,0.00447451323270798,-0.0925258994102478,-0.996392071247101,0.00406589824706316,-0.084771491587162,-0.990095794200897,0.0522689782083035,-0.130301043391228,-0.988936364650726,0.05348164960742,-0.138363942503929,-0.990095794200897,0.0522689782083035,-0.130301043391228,-0.996392071247101,0.00406589824706316,-0.084771491587162,-0.997070074081421,0.0024189492687583,-0.0764552056789398,-0.991380333900452,0.0493155159056187,-0.121379993855953,-0.997070074081421,0.0024189492687583,-0.0764552056789398,-0.996392071247101,0.00406589824706316,-0.084771491587162,-0.998134613037109,-0.0498636998236179,-0.035224799066782,-0.998370885848999,-0.05101403221488,-0.0255536492913961,-0.930841267108917,0.260436236858368,-0.256334811449051,-0.956439673900604,0.210897386074066,-0.201854556798935,-0.932286620140076,0.229391738772392,-0.279680013656616,-0.866371512413025,0.34406977891922,-0.361962050199509,-0.932286620140076,0.229391738772392,-0.279680013656616, +-0.956439673900604,0.210897386074066,-0.201854556798935,-0.958379447460175,0.14838533103466,-0.243907198309898,-0.940251648426056,0.164491638541222,-0.298109918832779,-0.958379447460175,0.14838533103466,-0.243907198309898,-0.956439673900604,0.210897386074066,-0.201854556798935,-0.977473735809326,0.152812570333481,-0.145579650998116,-0.977840900421143,0.107809267938137,-0.179455548524857,-0.957691788673401,0.17285044491291,-0.230106845498085,-0.900543808937073,0.28319463133812,-0.329881399869919,-0.884227097034454,0.302752107381821,-0.355645298957825,-0.951921045780182,0.182818129658699,-0.245812818408012,-0.884227097034454,0.302752107381821,-0.355645298957825,-0.900543808937073,0.28319463133812,-0.329881399869919,-0.829212605953217,0.381767690181732,-0.408239871263504,-0.71201080083847,0.47688302397728,-0.515386581420898,-0.829212605953217,0.381767690181732,-0.408239871263504,-0.900543808937073,0.28319463133812,-0.329881399869919,-0.930841267108917,0.260436236858368,-0.256334811449051,-0.866371512413025,0.34406977891922,-0.361962050199509,-0.815178871154785,0.327907800674438,-0.477451324462891,-0.906107068061829,0.203487575054169,-0.370894551277161,-0.858811616897583,0.143602699041367,-0.49175301194191,-0.662346661090851,0.265414595603943,-0.700608313083649,-0.858811616897583,0.143602699041367,-0.49175301194191,-0.906107068061829,0.203487575054169,-0.370894551277161,-0.925147235393524,0.158274903893471,-0.345038592815399,-0.900158047676086,0.118585154414177,-0.41910994052887,-0.925147235393524,0.158274903893471,-0.345038592815399,-0.906107068061829,0.203487575054169,-0.370894551277161,-0.932286620140076,0.229391738772392,-0.279680013656616,-0.940251648426056,0.164491638541222,-0.298109918832779,-0.974820911884308,0.110324420034885,-0.193785145878792,-0.976868152618408,0.10864632576704,-0.184185907244682,-0.947197496891022,0.188203901052475,-0.259607672691345,-0.943807065486908,0.189060479402542,-0.271080404520035,-0.947197496891022,0.188203901052475,-0.259607672691345,-0.976868152618408,0.10864632576704,-0.184185907244682, +-0.979355037212372,0.104070901870728,-0.173300385475159,-0.951921045780182,0.182818129658699,-0.245812818408012,-0.979355037212372,0.104070901870728,-0.173300385475159,-0.976868152618408,0.10864632576704,-0.184185907244682,-0.990095794200897,0.0522689782083035,-0.130301043391228,-0.991380333900452,0.0493155159056187,-0.121379993855953,-0.947197496891022,0.188203901052475,-0.259607672691345,-0.876102864742279,0.308748841285706,-0.37029430270195,-0.872825384140015,0.302739083766937,-0.382785677909851,-0.943807065486908,0.189060479402542,-0.271080404520035,-0.872825384140015,0.302739083766937,-0.382785677909851,-0.876102864742279,0.308748841285706,-0.37029430270195,-0.710681021213531,0.472971498966217,-0.520797967910767,-0.704760134220123,0.461420625448227,-0.538891673088074,-0.710681021213531,0.472971498966217,-0.520797967910767,-0.876102864742279,0.308748841285706,-0.37029430270195,-0.884227097034454,0.302752107381821,-0.355645298957825,-0.71201080083847,0.47688302397728,-0.515386581420898,-0.82836127281189,-0.030024416744709,-0.559388935565948,-0.737373828887939,-0.0310200806707144,-0.674772322177887,-0.858811616897583,0.143602699041367,-0.49175301194191,-0.900158047676086,0.118585154414177,-0.41910994052887,-0.858811616897583,0.143602699041367,-0.49175301194191,-0.737373828887939,-0.0310200806707144,-0.674772322177887,-0.554136395454407,0.0203292444348335,-0.832177519798279,-0.662346661090851,0.265414595603943,-0.700608313083649,-0.174512892961502,0.817176580429077,-0.549333870410919,-0.172922477126122,0.817432820796967,-0.549455642700195,-0.137453153729439,0.82256406545639,-0.551810562610626,-0.1385827511549,0.822417795658112,-0.551746129989624,-0.252328366041183,-0.241920799016953,-0.936912298202515,-0.226717472076416,-0.0472726114094257,-0.972812652587891,-0.334897965192795,-0.0841053500771523,-0.938493251800537,-0.331973016262054,-0.284388482570648,-0.899398148059845,-0.226717472076416,-0.0472726114094257,-0.972812652587891,-0.19464647769928,0.190210908651352,-0.962253868579865,-0.326416850090027,0.132676422595978,-0.93586802482605, +-0.334897965192795,-0.0841053500771523,-0.938493251800537,-0.452102899551392,-0.498666942119598,-0.739549994468689,-0.610036253929138,-0.460801362991333,-0.64460676908493,-0.550896883010864,-0.525933682918549,-0.648001909255981,-0.415487825870514,-0.567078769207001,-0.711190223693848,-0.550896883010864,-0.525933682918549,-0.648001909255981,-0.610036253929138,-0.460801362991333,-0.64460676908493,-0.710413038730621,-0.40294361114502,-0.577018141746521,-0.647116243839264,-0.480468541383743,-0.591937899589539,-0.710413038730621,-0.40294361114502,-0.577018141746521,-0.610036253929138,-0.460801362991333,-0.64460676908493,-0.65726774930954,-0.351282507181168,-0.666783094406128,-0.751957714557648,-0.317486882209778,-0.577720999717712,-0.284562438726425,-0.404397904872894,-0.869187355041504,-0.331608682870865,-0.445981115102768,-0.831346273422241,-0.349887073040009,-0.536685883998871,-0.767819762229919,-0.325535744428635,-0.501727342605591,-0.801433861255646,-0.349887073040009,-0.536685883998871,-0.767819762229919,-0.331608682870865,-0.445981115102768,-0.831346273422241,-0.452102899551392,-0.498666942119598,-0.739549994468689,-0.415487825870514,-0.567078769207001,-0.711190223693848,-0.452102899551392,-0.498666942119598,-0.739549994468689,-0.331608682870865,-0.445981115102768,-0.831346273422241,-0.331973016262054,-0.284388482570648,-0.899398148059845,-0.503585398197174,-0.352859079837799,-0.788601458072662,-0.438000053167343,-0.635713934898376,-0.635628581047058,-0.527204096317291,-0.612429201602936,-0.589055359363556,-0.516454994678497,-0.677501976490021,-0.523703455924988,-0.448892265558243,-0.681523680686951,-0.577945709228516,-0.516454994678497,-0.677501976490021,-0.523703455924988,-0.527204096317291,-0.612429201602936,-0.589055359363556,-0.593634903430939,-0.579204916954041,-0.558676481246948,-0.560611188411713,-0.662067472934723,-0.497374981641769,-0.593634903430939,-0.579204916954041,-0.558676481246948,-0.527204096317291,-0.612429201602936,-0.589055359363556,-0.550896883010864,-0.525933682918549,-0.648001909255981,-0.647116243839264,-0.480468541383743,-0.591937899589539, +-0.371910065412521,-0.572470486164093,-0.730725944042206,-0.389668703079224,-0.602210998535156,-0.696778476238251,-0.416544318199158,-0.64534467458725,-0.640328764915466,-0.405657023191452,-0.616533875465393,-0.674780309200287,-0.416544318199158,-0.64534467458725,-0.640328764915466,-0.389668703079224,-0.602210998535156,-0.696778476238251,-0.438000053167343,-0.635713934898376,-0.635628581047058,-0.448892265558243,-0.681523680686951,-0.577945709228516,-0.438000053167343,-0.635713934898376,-0.635628581047058,-0.389668703079224,-0.602210998535156,-0.696778476238251,-0.349887073040009,-0.536685883998871,-0.767819762229919,-0.415487825870514,-0.567078769207001,-0.711190223693848,-0.455420255661011,-0.71868896484375,-0.525431752204895,-0.502862811088562,-0.723091781139374,-0.473568767309189,-0.502279460430145,-0.763205528259277,-0.406488239765167,-0.467377811670303,-0.755487024784088,-0.459126502275467,-0.502279460430145,-0.763205528259277,-0.406488239765167,-0.502862811088562,-0.723091781139374,-0.473568767309189,-0.533083021640778,-0.715324699878693,-0.451810926198959,-0.52496749162674,-0.75726854801178,-0.388527184724808,-0.533083021640778,-0.715324699878693,-0.451810926198959,-0.502862811088562,-0.723091781139374,-0.473568767309189,-0.516454994678497,-0.677501976490021,-0.523703455924988,-0.560611188411713,-0.662067472934723,-0.497374981641769,-0.416544318199158,-0.64534467458725,-0.640328764915466,-0.436919927597046,-0.679874777793884,-0.588957667350769,-0.429638922214508,-0.650370538234711,-0.626441180706024,-0.405657023191452,-0.616533875465393,-0.674780309200287,-0.429638922214508,-0.650370538234711,-0.626441180706024,-0.436919927597046,-0.679874777793884,-0.588957667350769,-0.454819619655609,-0.711352527141571,-0.535832643508911,-0.448588848114014,-0.678992688655853,-0.581151485443115,-0.454819619655609,-0.711352527141571,-0.535832643508911,-0.436919927597046,-0.679874777793884,-0.588957667350769,-0.455420255661011,-0.71868896484375,-0.525431752204895,-0.467377811670303,-0.755487024784088,-0.459126502275467,-0.465778231620789,-0.779828310012817,-0.418232440948486, +-0.492681473493576,-0.787114083766937,-0.371101528406143,-0.459188282489777,-0.812885344028473,-0.358278453350067,-0.448415815830231,-0.79328191280365,-0.411858081817627,-0.459188282489777,-0.812885344028473,-0.358278453350067,-0.492681473493576,-0.787114083766937,-0.371101528406143,-0.519833922386169,-0.78088641166687,-0.346394628286362,-0.509277939796448,-0.81212043762207,-0.284773945808411,-0.519833922386169,-0.78088641166687,-0.346394628286362,-0.492681473493576,-0.787114083766937,-0.371101528406143,-0.502279460430145,-0.763205528259277,-0.406488239765167,-0.52496749162674,-0.75726854801178,-0.388527184724808,-0.484330028295517,-0.750629007816315,-0.44942232966423,-0.469042629003525,-0.737256765365601,-0.486262798309326,-0.465778231620789,-0.779828310012817,-0.418232440948486,-0.448415815830231,-0.79328191280365,-0.411858081817627,-0.465778231620789,-0.779828310012817,-0.418232440948486,-0.469042629003525,-0.737256765365601,-0.486262798309326,-0.454819619655609,-0.711352527141571,-0.535832643508911,-0.467377811670303,-0.755487024784088,-0.459126502275467,-0.454819619655609,-0.711352527141571,-0.535832643508911,-0.469042629003525,-0.737256765365601,-0.486262798309326,-0.470318824052811,-0.702146053314209,-0.534594178199768,-0.448588848114014,-0.678992688655853,-0.581151485443115,-0.583867728710175,-0.733967185020447,-0.346973747014999,-0.520403146743774,-0.748185157775879,-0.411581665277481,-0.485234051942825,-0.781471729278564,-0.392237305641174,-0.563136875629425,-0.763297319412231,-0.316629081964493,-0.485234051942825,-0.781471729278564,-0.392237305641174,-0.520403146743774,-0.748185157775879,-0.411581665277481,-0.484330028295517,-0.750629007816315,-0.44942232966423,-0.448415815830231,-0.79328191280365,-0.411858081817627,-0.484330028295517,-0.750629007816315,-0.44942232966423,-0.520403146743774,-0.748185157775879,-0.411581665277481,-0.541132092475891,-0.72664874792099,-0.423270285129547,-0.501340508460999,-0.718519926071167,-0.482065171003342,-0.375865340232849,-0.891984939575195,-0.251173287630081,-0.421863317489624,-0.852864623069763,-0.307657718658447, +-0.496292322874069,-0.842112183570862,-0.211047098040581,-0.465882062911987,-0.87637197971344,-0.122172184288502,-0.496292322874069,-0.842112183570862,-0.211047098040581,-0.421863317489624,-0.852864623069763,-0.307657718658447,-0.459188282489777,-0.812885344028473,-0.358278453350067,-0.509277939796448,-0.81212043762207,-0.284773945808411,-0.459188282489777,-0.812885344028473,-0.358278453350067,-0.421863317489624,-0.852864623069763,-0.307657718658447,-0.398564070463181,-0.8384929895401,-0.371586084365845,-0.448415815830231,-0.79328191280365,-0.411858081817627,-0.271911710500717,-0.961562216281891,0.0382375158369541,-0.336590021848679,-0.930226445198059,-0.146239146590233,-0.396678656339645,-0.917946219444275,0.00455271080136299,-0.34049928188324,-0.925960063934326,0.16327366232872,-0.396678656339645,-0.917946219444275,0.00455271080136299,-0.336590021848679,-0.930226445198059,-0.146239146590233,-0.375865340232849,-0.891984939575195,-0.251173287630081,-0.465882062911987,-0.87637197971344,-0.122172184288502,-0.251545965671539,-0.896880567073822,-0.363771587610245,-0.154667109251022,-0.929468989372253,-0.334911108016968,-0.121380843222141,-0.900714457035065,-0.417109459638596,-0.259092777967453,-0.894549131393433,-0.364215224981308,-0.121380843222141,-0.900714457035065,-0.417109459638596,-0.154667109251022,-0.929468989372253,-0.334911108016968,-0.072753481566906,-0.966231167316437,-0.247193098068237,-0.0111613115295768,-0.902023434638977,-0.4315425157547,-0.173500671982765,-0.983356356620789,-0.0539233386516571,-0.234354108572006,-0.939100742340088,-0.251332372426987,-0.336590021848679,-0.930226445198059,-0.146239146590233,-0.271911710500717,-0.961562216281891,0.0382375158369541,-0.403087824583054,-0.858154773712158,-0.31794747710228,-0.446565479040146,-0.822087049484253,-0.353202819824219,-0.398564070463181,-0.8384929895401,-0.371586084365845,-0.315400958061218,-0.888113856315613,-0.334329187870026,-0.398564070463181,-0.8384929895401,-0.371586084365845,-0.446565479040146,-0.822087049484253,-0.353202819824219,-0.485234051942825,-0.781471729278564,-0.392237305641174, +-0.448415815830231,-0.79328191280365,-0.411858081817627,-0.485234051942825,-0.781471729278564,-0.392237305641174,-0.446565479040146,-0.822087049484253,-0.353202819824219,-0.52540647983551,-0.802496433258057,-0.282749801874161,-0.563136875629425,-0.763297319412231,-0.316629081964493,-0.648885846138,-0.719097018241882,-0.248690024018288,-0.620568931102753,-0.726473689079285,-0.295178204774857,-0.605080187320709,-0.749416708946228,-0.268798321485519,-0.640718340873718,-0.735740482807159,-0.219467222690582,-0.605080187320709,-0.749416708946228,-0.268798321485519,-0.620568931102753,-0.726473689079285,-0.295178204774857,-0.583867728710175,-0.733967185020447,-0.346973747014999,-0.563136875629425,-0.763297319412231,-0.316629081964493,-0.583867728710175,-0.733967185020447,-0.346973747014999,-0.620568931102753,-0.726473689079285,-0.295178204774857,-0.618852555751801,-0.722240746021271,-0.308852195739746,-0.58302116394043,-0.726785063743591,-0.363138943910599,-0.595205426216125,-0.68846195936203,0.414427995681763,-0.620982706546783,-0.706097900867462,0.340303391218185,-0.604302823543549,-0.678694903850555,0.417362421751022,-0.506681323051453,-0.665714621543884,0.547812044620514,-0.525209903717041,-0.838167548179626,-0.147070378065109,-0.398784339427948,-0.87615180015564,-0.270793616771698,-0.391027927398682,-0.88114321231842,-0.265864372253418,-0.523414254188538,-0.84218430519104,-0.129472643136978,-0.651470363140106,-0.751649379730225,0.103002496063709,-0.610153436660767,-0.792122006416321,-0.0159816462546587,-0.616051256656647,-0.787498354911804,0.0180911235511303,-0.658726215362549,-0.736504077911377,0.153757899999619,-0.403087824583054,-0.858154773712158,-0.31794747710228,-0.372382044792175,-0.869452953338623,-0.324627697467804,-0.488100230693817,-0.838716745376587,-0.241479307413101,-0.497740417718887,-0.82726001739502,-0.260567456483841,-0.488100230693817,-0.838716745376587,-0.241479307413101,-0.372382044792175,-0.869452953338623,-0.324627697467804,-0.398784339427948,-0.87615180015564,-0.270793616771698,-0.525209903717041,-0.838167548179626,-0.147070378065109, +-0.398784339427948,-0.87615180015564,-0.270793616771698,-0.372382044792175,-0.869452953338623,-0.324627697467804,-0.251545965671539,-0.896880567073822,-0.363771587610245,-0.259092777967453,-0.894549131393433,-0.364215224981308,-0.651659727096558,-0.700043082237244,0.292026400566101,-0.661904454231262,-0.720592439174652,0.206467926502228,-0.663620412349701,-0.697485029697418,0.270411968231201,-0.644486367702484,-0.673507630825043,0.361973643302917,-0.566215753555298,-0.801503837108612,-0.192331075668335,-0.571285963058472,-0.807904422283173,-0.144647032022476,-0.622758805751801,-0.780623733997345,-0.0528965219855309,-0.615273773670197,-0.779519855976105,-0.117417588829994,-0.622758805751801,-0.780623733997345,-0.0528965219855309,-0.571285963058472,-0.807904422283173,-0.144647032022476,-0.610153436660767,-0.792122006416321,-0.0159816462546587,-0.651470363140106,-0.751649379730225,0.103002496063709,-0.610153436660767,-0.792122006416321,-0.0159816462546587,-0.571285963058472,-0.807904422283173,-0.144647032022476,-0.488100230693817,-0.838716745376587,-0.241479307413101,-0.525209903717041,-0.838167548179626,-0.147070378065109,0.697559654712677,-0.470335394144058,0.540550768375397,0.597104489803314,-0.479072153568268,0.64339417219162,0.715223670005798,-0.463750928640366,0.522867202758789,0.734706282615662,-0.481136292219162,0.478241056203842,-0.621909260749817,-0.763468146324158,-0.174199402332306,-0.57799232006073,-0.78216940164566,-0.232671022415161,-0.566215753555298,-0.801503837108612,-0.192331075668335,-0.615273773670197,-0.779519855976105,-0.117417588829994,-0.566215753555298,-0.801503837108612,-0.192331075668335,-0.57799232006073,-0.78216940164566,-0.232671022415161,-0.52540647983551,-0.802496433258057,-0.282749801874161,-0.497740417718887,-0.82726001739502,-0.260567456483841,-0.52540647983551,-0.802496433258057,-0.282749801874161,-0.57799232006073,-0.78216940164566,-0.232671022415161,-0.605080187320709,-0.749416708946228,-0.268798321485519,-0.563136875629425,-0.763297319412231,-0.316629081964493,-0.692147254943848,-0.704308092594147,-0.157741159200668, +-0.672990739345551,-0.711468696594238,-0.202226966619492,-0.668519377708435,-0.724181294441223,-0.169243603944778,-0.689681887626648,-0.71403181552887,-0.120405852794647,-0.668519377708435,-0.724181294441223,-0.169243603944778,-0.672990739345551,-0.711468696594238,-0.202226966619492,-0.648885846138,-0.719097018241882,-0.248690024018288,-0.640718340873718,-0.735740482807159,-0.219467222690582,-0.648885846138,-0.719097018241882,-0.248690024018288,-0.672990739345551,-0.711468696594238,-0.202226966619492,-0.667743563652039,-0.71110874414444,-0.220097497105598,-0.645516037940979,-0.716913878917694,-0.263331472873688,-0.64468914270401,-0.763040602207184,-0.0463125295937061,-0.650058686733246,-0.759272754192352,0.0304749011993408,-0.66126537322998,-0.742161691188812,0.109197497367859,-0.661277234554291,-0.749762892723083,0.0238371193408966,-0.66126537322998,-0.742161691188812,0.109197497367859,-0.650058686733246,-0.759272754192352,0.0304749011993408,-0.661904454231262,-0.720592439174652,0.206467926502228,-0.651659727096558,-0.700043082237244,0.292026400566101,-0.661904454231262,-0.720592439174652,0.206467926502228,-0.650058686733246,-0.759272754192352,0.0304749011993408,-0.622758805751801,-0.780623733997345,-0.0528965219855309,-0.651470363140106,-0.751649379730225,0.103002496063709,-0.0831155329942703,-0.47706526517868,0.874928891658783,-0.0580516494810581,-0.560424506664276,0.826168477535248,-0.0227747615426779,-0.551540315151215,0.83383721113205,-0.0421829670667648,-0.467899739742279,0.882774293422699,-0.728603780269623,-0.68262904882431,-0.0561620481312275,-0.701043605804443,-0.701861321926117,-0.12620835006237,-0.696477949619293,-0.71231997013092,-0.0867099910974503,-0.720623970031738,-0.693292081356049,-0.0068796188570559,-0.696477949619293,-0.71231997013092,-0.0867099910974503,-0.701043605804443,-0.701861321926117,-0.12620835006237,-0.692147254943848,-0.704308092594147,-0.157741159200668,-0.689681887626648,-0.71403181552887,-0.120405852794647,-0.692147254943848,-0.704308092594147,-0.157741159200668,-0.701043605804443,-0.701861321926117,-0.12620835006237, +-0.69724315404892,-0.702437520027161,-0.142945751547813,-0.686576902866364,-0.705039620399475,-0.177570477128029,-0.672702848911285,-0.73766702413559,-0.0576041862368584,-0.65203332901001,-0.749282121658325,-0.11588329821825,-0.64468914270401,-0.763040602207184,-0.0463125295937061,-0.661277234554291,-0.749762892723083,0.0238371193408966,-0.64468914270401,-0.763040602207184,-0.0463125295937061,-0.65203332901001,-0.749282121658325,-0.11588329821825,-0.621909260749817,-0.763468146324158,-0.174199402332306,-0.615273773670197,-0.779519855976105,-0.117417588829994,-0.621909260749817,-0.763468146324158,-0.174199402332306,-0.65203332901001,-0.749282121658325,-0.11588329821825,-0.668519377708435,-0.724181294441223,-0.169243603944778,-0.640718340873718,-0.735740482807159,-0.219467222690582,-0.659766137599945,-0.74774569272995,0.0747328475117683,-0.653439521789551,-0.739978134632111,0.159527629613876,-0.649016559123993,-0.724011957645416,0.233632564544678,-0.666373133659363,-0.729299187660217,0.155143395066261,-0.649016559123993,-0.724011957645416,0.233632564544678,-0.653439521789551,-0.739978134632111,0.159527629613876,-0.620982706546783,-0.706097900867462,0.340303391218185,-0.595205426216125,-0.68846195936203,0.414427995681763,-0.620982706546783,-0.706097900867462,0.340303391218185,-0.653439521789551,-0.739978134632111,0.159527629613876,-0.66126537322998,-0.742161691188812,0.109197497367859,-0.651659727096558,-0.700043082237244,0.292026400566101,-0.69608336687088,-0.714668154716492,0.0686835572123528,-0.677562713623047,-0.735331237316132,-0.0140205984935164,-0.659766137599945,-0.74774569272995,0.0747328475117683,-0.666373133659363,-0.729299187660217,0.155143395066261,-0.659766137599945,-0.74774569272995,0.0747328475117683,-0.677562713623047,-0.735331237316132,-0.0140205984935164,-0.672702848911285,-0.73766702413559,-0.0576041862368584,-0.661277234554291,-0.749762892723083,0.0238371193408966,-0.672702848911285,-0.73766702413559,-0.0576041862368584,-0.677562713623047,-0.735331237316132,-0.0140205984935164,-0.696477949619293,-0.71231997013092,-0.0867099910974503, +-0.689681887626648,-0.71403181552887,-0.120405852794647,-0.994039237499237,-0.000213257895666175,-0.109022423624992,-0.994957327842712,0.00305879395455122,-0.100252836942673,-0.987845957279205,0.0522878393530846,-0.14637753367424,-0.98665988445282,0.0487916618585587,-0.155311182141304,-0.987845957279205,0.0522878393530846,-0.14637753367424,-0.994957327842712,0.00305879395455122,-0.100252836942673,-0.995700299739838,0.00447451323270798,-0.0925258994102478,-0.988936364650726,0.05348164960742,-0.138363942503929,-0.995700299739838,0.00447451323270798,-0.0925258994102478,-0.994957327842712,0.00305879395455122,-0.100252836942673,-0.997222781181335,-0.0518197081983089,-0.0534919276833534,-0.997764945030212,-0.0499648228287697,-0.0443698726594448,-0.974820911884308,0.110324420034885,-0.193785145878792,-0.973289847373962,0.10803160816431,-0.202573418617249,-0.987845957279205,0.0522878393530846,-0.14637753367424,-0.988936364650726,0.05348164960742,-0.138363942503929,-0.987845957279205,0.0522878393530846,-0.14637753367424,-0.973289847373962,0.10803160816431,-0.202573418617249,-0.971926689147949,0.102412909269333,-0.211825713515282,-0.98665988445282,0.0487916618585587,-0.155311182141304,-0.971926689147949,0.102412909269333,-0.211825713515282,-0.973289847373962,0.10803160816431,-0.202573418617249,-0.942123293876648,0.183465525507927,-0.280613571405411,-0.941398143768311,0.172345191240311,-0.289942413568497,-0.990605771541595,-0.0153664480894804,-0.135882541537285,-0.992728412151337,-0.00594411976635456,-0.120228804647923,-0.985166132450104,0.042403120547533,-0.166282147169113,-0.983104288578033,0.0312387645244598,-0.180361151695251,-0.985166132450104,0.042403120547533,-0.166282147169113,-0.992728412151337,-0.00594411976635456,-0.120228804647923,-0.994039237499237,-0.000213257895666175,-0.109022423624992,-0.98665988445282,0.0487916618585587,-0.155311182141304,-0.994039237499237,-0.000213257895666175,-0.109022423624992,-0.992728412151337,-0.00594411976635456,-0.120228804647923,-0.99521666765213,-0.0610512346029282,-0.076266810297966, +-0.996447622776031,-0.0553836040198803,-0.0634411051869392,-0.942123293876648,0.183465525507927,-0.280613571405411,-0.871357083320618,0.292229920625687,-0.394130051136017,-0.873201966285706,0.272477895021439,-0.404071718454361,-0.941398143768311,0.172345191240311,-0.289942413568497,-0.873201966285706,0.272477895021439,-0.404071718454361,-0.871357083320618,0.292229920625687,-0.394130051136017,-0.703363239765167,0.444451421499252,-0.55474591255188,-0.708066523075104,0.415172398090363,-0.571203887462616,-0.703363239765167,0.444451421499252,-0.55474591255188,-0.871357083320618,0.292229920625687,-0.394130051136017,-0.872825384140015,0.302739083766937,-0.382785677909851,-0.704760134220123,0.461420625448227,-0.538891673088074,-0.968387186527252,0.0771231725811958,-0.237230196595192,-0.970319330692291,0.0932745859026909,-0.223114937543869,-0.940643668174744,0.156116455793381,-0.301358908414841,-0.939928293228149,0.129181504249573,-0.315985530614853,-0.940643668174744,0.156116455793381,-0.301358908414841,-0.970319330692291,0.0932745859026909,-0.223114937543869,-0.971926689147949,0.102412909269333,-0.211825713515282,-0.941398143768311,0.172345191240311,-0.289942413568497,-0.971926689147949,0.102412909269333,-0.211825713515282,-0.970319330692291,0.0932745859026909,-0.223114937543869,-0.985166132450104,0.042403120547533,-0.166282147169113,-0.98665988445282,0.0487916618585587,-0.155311182141304,-0.329651266336441,-0.610939085483551,0.719780147075653,-0.309386759996414,-0.636144578456879,0.706823706626892,-0.479769468307495,-0.661267995834351,0.576667785644531,-0.506681323051453,-0.665714621543884,0.547812044620514,-0.13449028134346,-0.656905591487885,0.741881012916565,-0.186330661177635,-0.592158198356628,0.78398323059082,-0.229851886630058,-0.598201870918274,0.767673492431641,-0.170162871479988,-0.659661173820496,0.732046246528625,-0.205184370279312,-0.665700018405914,0.717455744743347,-0.276363015174866,-0.60367214679718,0.747798919677734,-0.327763140201569,-0.607410490512848,0.723618507385254,-0.22932593524456,-0.672872722148895,0.703314900398254, +-0.257052272558212,-0.681294560432434,0.685391783714294,-0.248119860887527,-0.680859386920929,0.689105927944183,-0.395584255456924,-0.638837099075317,0.659848809242249,-0.40829735994339,-0.663861036300659,0.626563549041748,-0.288425266742706,-0.658069610595703,0.695525109767914,-0.270258545875549,-0.674371719360352,0.687155842781067,-0.426441729068756,-0.67831015586853,0.598366737365723,-0.451989978551865,-0.678381443023682,0.579226732254028,0.404854506254196,-0.536928415298462,0.740135550498962,0.542803764343262,-0.499212235212326,0.675389647483826,0.511453092098236,-0.504644155502319,0.695521295070648,0.396445780992508,-0.55454295873642,0.731650829315186,0.597104489803314,-0.479072153568268,0.64339417219162,0.568780958652496,-0.483123123645782,0.66564267873764,0.403514444828033,-0.513169825077057,0.757517576217651,0.398039042949677,-0.486051082611084,0.778022587299347,0.310550421476364,-0.576273918151855,0.755954205989838,0.341375857591629,-0.57038414478302,0.747077226638794,0.444082170724869,-0.495073944330215,0.746788442134857,0.401788800954819,-0.485980302095413,0.776137173175812,0.243788719177246,-0.590774953365326,0.769124209880829,0.279871642589569,-0.582894206047058,0.762827754020691,0.344740986824036,-0.487214148044586,0.802356481552124,0.283904045820236,-0.500032186508179,0.818148016929626,0.160694688558578,-0.609311699867249,0.776476919651031,0.203304156661034,-0.600077569484711,0.773675918579102,0.228518217802048,-0.511639416217804,0.828253924846649,0.175832226872444,-0.520594954490662,0.835502207279205,0.0705995485186577,-0.622447967529297,0.779470443725586,0.115875475108624,-0.617684483528137,0.777842283248901,0.120851531624794,-0.529502272605896,0.839656054973602,0.0651199147105217,-0.538973927497864,0.839801430702209,0.0705995485186577,-0.622447967529297,0.779470443725586,0.0651199147105217,-0.538973927497864,0.839801430702209,0.0148712992668152,-0.546777665615082,0.837145805358887,0.0300240367650986,-0.621192753314972,0.783082485198975,0.597104489803314,-0.479072153568268,0.64339417219162,0.398039042949677,-0.486051082611084,0.778022587299347, +0.387571454048157,-0.449182152748108,0.804999232292175,0.389737367630005,-0.45616814494133,0.800009548664093,0.374746948480606,-0.402288675308228,0.835301458835602,0.362189143896103,-0.363851934671402,0.85815554857254,0.36286598443985,-0.365580171346664,0.857134401798248,0.376294523477554,-0.408364534378052,0.831649541854858,0.33545908331871,-0.347694575786591,0.875543117523193,0.336131721735001,-0.347691297531128,0.875286340713501,0.277618706226349,-0.364765644073486,0.888748526573181,0.275308102369308,-0.365780264139175,0.889050245285034,-0.00233037397265434,-0.518018305301666,0.855366349220276,0.0985837206244469,-0.469343274831772,0.877495348453522,0.102638758718967,-0.466817110776901,0.878377556800842,0.00343262054957449,-0.5159952044487,0.85658460855484,-0.365768373012543,-0.549157798290253,0.751424729824066,-0.348484545946121,-0.58061558008194,0.735828936100006,-0.345908284187317,-0.585310220718384,0.733320772647858,-0.364027261734009,-0.552314579486847,0.749955177307129,-0.386684477329254,-0.51061600446701,0.767949402332306,-0.379608720541,-0.524753034114838,0.761926174163818,-0.378723710775375,-0.526250123977661,0.761333703994751,-0.386523246765137,-0.51110315322876,0.767706573009491,-0.373561561107635,-0.497601062059402,0.782844066619873,-0.384495586156845,-0.50361955165863,0.773647487163544,-0.384821593761444,-0.503874361515045,0.77331954240799,-0.374222218990326,-0.497902870178223,0.782336592674255,-0.373561561107635,-0.497601062059402,0.782844066619873,-0.374222218990326,-0.497902870178223,0.782336592674255,-0.352177768945694,-0.495419353246689,0.79405951499939,-0.351426392793655,-0.495471268892288,0.794359922409058,-0.312127858400345,-0.503364443778992,0.805729746818542,-0.312185913324356,-0.503348052501678,0.805717468261719,-0.253031969070435,-0.519649982452393,0.81605064868927,-0.252297610044479,-0.51984566450119,0.816153407096863,-0.179413139820099,-0.534563839435577,0.825864672660828,-0.183005928993225,-0.534025013446808,0.825424790382385,-0.100850634276867,-0.537807464599609,0.837013840675354,-0.0946295037865639,-0.537550389766693,0.837904989719391, +-0.00233037397265434,-0.518018305301666,0.855366349220276,0.00343262054957449,-0.5159952044487,0.85658460855484,-0.0946295037865639,-0.537550389766693,0.837904989719391,-0.100850634276867,-0.537807464599609,0.837013840675354,-0.0190402548760176,0.864888906478882,0.501602113246918,-0.0183371845632792,0.864737868309021,0.501888573169708,-0.0459737703204155,0.873032569885254,0.485489934682846,-0.0459728427231312,0.873032212257385,0.485490709543228,0.0519830845296383,0.857025921344757,0.512644350528717,0.0165698751807213,0.860370218753815,0.509400248527527,0.0150686772540212,0.860455572605133,0.509302794933319,0.0505380220711231,0.85721492767334,0.512472927570343,0.0969039350748062,0.836755096912384,0.538934528827667,0.0975135788321495,0.836043953895569,0.539927363395691,0.0797037333250046,0.849310398101807,0.521842002868652,0.0787874758243561,0.849741220474243,0.521279692649841,0.124958917498589,0.798008918762207,0.589548110961914,0.110430426895618,0.81831169128418,0.564066469669342,0.109650552272797,0.819549977779388,0.562418580055237,0.123736567795277,0.799558460712433,0.587703585624695,0.146055936813354,0.757469534873962,0.636323511600494,0.146036416292191,0.757177352905273,0.636675536632538,0.140107274055481,0.777526080608368,0.613044083118439,0.139439672231674,0.778484642505646,0.611979007720947,0.146055936813354,0.757469534873962,0.636323511600494,0.139610081911087,0.73565798997879,0.662809550762177,0.139290168881416,0.735013782978058,0.663590908050537,0.146036416292191,0.757177352905273,0.636675536632538,0.157263353466988,0.661720156669617,0.7330721616745,0.143175393342972,0.684859275817871,0.714470863342285,0.14206574857235,0.686476230621338,0.713139355182648,0.156720414757729,0.662725389003754,0.732279777526855,0.146944731473923,0.612074255943298,0.77702796459198,0.159634470939636,0.638495743274689,0.752887725830078,0.159694463014603,0.638714253902435,0.752689719200134,0.14667834341526,0.611674726009369,0.777392745018005,0.146944731473923,0.612074255943298,0.77702796459198,0.14667834341526,0.611674726009369,0.777392745018005, +0.131870001554489,0.581847012042999,0.802536249160767,0.132071301341057,0.582419753074646,0.802087545394897,0.119949132204056,0.5286545753479,0.840319395065308,0.119399666786194,0.527406990528107,0.841181039810181,0.105041548609734,0.508634209632874,0.854551076889038,0.106911569833755,0.510180354118347,0.853396654129028,0.0644150152802467,0.474510878324509,0.877889573574066,0.0607060119509697,0.471675366163254,0.879680097103119,0.0353095307946205,0.458231300115585,0.888131320476532,0.0387581437826157,0.459295123815536,0.887437701225281,0.014785997569561,0.45401406288147,0.890871822834015,0.0118501605466008,0.453808307647705,0.891020596027374,-0.0120444055646658,0.448758214712143,0.893572092056274,-0.00991799309849739,0.449439167976379,0.893255829811096,-0.0367528423666954,0.438093811273575,0.898177623748779,-0.0374768301844597,0.437710464000702,0.898334562778473,-0.0603338368237019,0.427365481853485,0.902063548564911,-0.06037662550807,0.427349418401718,0.902068197727203,-0.0805282071232796,0.425983816385269,0.901139795780182,-0.0802847221493721,0.4259073138237,0.901197671890259,-0.0996300280094147,0.435626924037933,0.894596517086029,-0.099933885037899,0.435843974351883,0.89445686340332,-0.126784220337868,0.875134706497192,0.466974169015884,-0.159493654966354,0.865144610404968,0.475485682487488,-0.158059924840927,0.865614473819733,0.475108951330185,-0.125002339482307,0.875635504722595,0.466515630483627,-0.188640356063843,0.85552966594696,0.482165783643723,-0.189333155751228,0.855300962924957,0.48229992389679,-0.215113461017609,0.846387028694153,0.48719111084938,-0.214857056736946,0.846479713916779,0.487143337726593,-0.236840054392815,0.838033556938171,0.491534978151321,-0.236772865056992,0.838061034679413,0.491520494222641,-0.257348984479904,0.829423129558563,0.495811194181442,-0.25781723856926,0.829221367835999,0.495905369520187,-0.28039425611496,0.819087326526642,0.500474870204926,-0.307297825813293,0.80467289686203,0.508005559444427,-0.307315051555634,0.804662466049194,0.508011519908905,-0.281094253063202,0.818760633468628,0.500616550445557, +-0.334448009729385,0.784865021705627,0.521662056446075,-0.335213333368301,0.784196615219116,0.522175788879395,-0.357603996992111,0.760460078716278,0.542051553726196,-0.357305765151978,0.760845839977264,0.541706800460815,-0.372272282838821,0.738920152187347,0.561613976955414,-0.372188001871109,0.739064574241638,0.561479926109314,-0.38566118478775,0.723674058914185,0.572329580783844,-0.385679930448532,0.723659932613373,0.572335064411163,-0.408296346664429,0.71166729927063,0.571685016155243,-0.409364104270935,0.711240112781525,0.571452915668488,-0.446780860424042,0.692574858665466,0.566327631473541,-0.443559199571609,0.694462299346924,0.566548705101013,-0.475430101156235,0.669027268886566,0.571286857128143,-0.47838768362999,0.665372490882874,0.573083519935608,-0.487701803445816,0.637583255767822,0.596350967884064,-0.487807899713516,0.641734480857849,0.591794013977051,-0.483511865139008,0.615603744983673,0.622292697429657,-0.481931835412979,0.611370623111725,0.627668440341949,-0.478107333183289,0.584161698818207,0.655872404575348,-0.478080272674561,0.589419186115265,0.651171386241913,-0.479702323675156,0.560986578464508,0.674669981002808,-0.480432629585266,0.555284559726715,0.678854584693909,-0.471919387578964,0.531340539455414,0.703540503978729,-0.475027412176132,0.535197257995605,0.698507487773895,-0.446475654840469,0.520809352397919,0.727610528469086,-0.440220296382904,0.520307660102844,0.73176908493042,-0.397312849760056,0.522181510925293,0.754631578922272,-0.398856520652771,0.521935284137726,0.753987491130829,-0.358083844184875,0.486964583396912,0.796643912792206,-0.357788681983948,0.486096113920212,0.797306656837463,-0.361931383609772,0.509885728359222,0.780398786067963,-0.361928224563599,0.511007726192474,0.779666066169739,-0.330646485090256,0.450477838516235,0.829302430152893,-0.344297528266907,0.46396404504776,0.81620866060257,-0.345250964164734,0.464840441942215,0.815306723117828,-0.331069111824036,0.450945854187012,0.828879475593567,-0.317943662405014,0.43179926276207,0.844074249267578,-0.325132131576538,0.440425664186478,0.836847901344299, +-0.325132966041565,0.440428763628006,0.836845874786377,-0.317304491996765,0.431456923484802,0.844489634037018,-0.317943662405014,0.43179926276207,0.844074249267578,-0.317304491996765,0.431456923484802,0.844489634037018,-0.293058931827545,0.430239260196686,0.853821158409119,-0.29586923122406,0.429899930953979,0.853022575378418,-0.224763661623001,0.444438308477402,0.867153942584991,-0.224679872393608,0.444500863552094,0.867143571376801,-0.229290425777435,0.444516211748123,0.865927934646606,-0.228532314300537,0.444740295410156,0.866013288497925,-0.201242119073868,0.431705981492996,0.879279017448425,-0.223490789532661,0.437750577926636,0.870876729488373,-0.223471507430077,0.437732726335526,0.870890617370605,-0.201227769255638,0.431704968214035,0.879282832145691,-0.0937852412462234,0.881699025630951,0.462397307157516,-0.0948208048939705,0.881590068340302,0.46239385008812,-0.126784220337868,0.875134706497192,0.466974169015884,-0.125002339482307,0.875635504722595,0.466515630483627,0.286475777626038,0.847042381763458,-0.447717249393463,0.285260230302811,0.84672600030899,-0.449089735746384,0.317088454961777,0.855661451816559,-0.409021198749542,0.318278849124908,0.856025397777557,-0.407331734895706,-0.659926950931549,0.545950710773468,0.516172707080841,-0.645106613636017,0.559507846832275,0.520373225212097,-0.687529563903809,0.519349634647369,0.507522642612457,-0.687529563903809,0.519349575042725,0.507522642612457,0.311002999544144,-0.670875012874603,-0.673204183578491,0.310116231441498,-0.669642746448517,-0.674838185310364,0.320822417736053,-0.646670341491699,-0.692018985748291,0.31896248459816,-0.649161458015442,-0.690544903278351,0.780008673667908,0.191202566027641,0.595842242240906,0.829682290554047,0.104772992432117,0.548315405845642,0.829477071762085,0.105159044265747,0.5485520362854,0.779766142368317,0.19159996509552,0.596032202243805,-0.463491767644882,0.46192929148674,0.756172358989716,-0.464203983545303,0.461813151836395,0.755806386470795,-0.384630411863327,0.474354326725006,0.791863322257996,-0.383915215730667,0.474463254213333,0.792145073413849, +-0.108950957655907,0.989915072917938,-0.0905416682362556,-0.109050408005714,0.989912152290344,-0.0904536619782448,-0.108972206711769,0.989937603473663,-0.090269923210144,-0.109075948596001,0.989931344985962,-0.0902130231261253,-0.109818838536739,0.989841938018799,-0.0902928560972214,-0.109690576791763,0.989867150783539,-0.0901713520288467,-0.109676852822304,0.98986953496933,-0.0901631787419319,-0.109809882938862,0.989844262599945,-0.0902778133749962,-0.109690576791763,0.989867150783539,-0.0901713520288467,-0.109512858092785,0.989891946315765,-0.0901163145899773,-0.109495960175991,0.989893972873688,-0.0901135504245758,-0.109676852822304,0.98986953496933,-0.0901631787419319,-0.109512858092785,0.989891946315765,-0.0901163145899773,-0.109821185469627,0.989834427833557,-0.0903725773096085,-0.109386615455151,0.98989063501358,-0.0902830883860588,-0.109495960175991,0.989893972873688,-0.0901135504245758,-0.109821185469627,0.989834427833557,-0.0903725773096085,-0.110407553613186,0.989734470844269,-0.0907511711120605,-0.109386615455151,0.98989063501358,-0.0902830883860588,-0.107805125415325,0.990108668804169,-0.0897934138774872,-0.107453361153603,0.990107893943787,-0.0902220606803894,-0.10712656378746,0.990139782428741,-0.0902612507343292,-0.1071447879076,0.990139186382294,-0.0902470126748085,-0.0831155329942703,-0.47706526517868,0.874928891658783,-0.0421829670667648,-0.467899739742279,0.882774293422699,-0.0475826002657413,-0.444023489952087,0.894750893115997,-0.0860291048884392,-0.447738409042358,0.890016496181488,0.0300240367650986,-0.621192753314972,0.783082485198975,0.0148712992668152,-0.546777665615082,0.837145805358887,-0.0227747615426779,-0.551540315151215,0.83383721113205,-0.00469926744699478,-0.621390581130981,0.783486843109131,0.0823806002736092,-0.75981342792511,-0.644900918006897,0.224032685160637,-0.7353635430336,-0.63957005739212,0.223020538687706,-0.735501766204834,-0.639764666557312,0.0815175771713257,-0.759966731071472,-0.64482969045639,-0.166323870420456,0.433888703584671,0.885481178760529,-0.142115145921707,0.4426549077034,0.88535875082016, +-0.142022699117661,0.442715287208557,0.885343253612518,-0.166150957345963,0.433925807476044,0.885495483875275,-0.0856623873114586,-0.440617859363556,0.893598258495331,-0.0860291048884392,-0.447738409042358,0.890016496181488,-0.0475826002657413,-0.444023489952087,0.894750893115997,-0.0494741797447205,-0.438117533922195,0.89755517244339,-0.0747213140130043,0.956928908824921,-0.280541867017746,-0.0908437892794609,0.949721157550812,-0.299628227949142,-0.0899063795804977,0.95060122013092,-0.297109663486481,-0.0319097489118576,0.949040591716766,-0.313534408807755,-0.105226956307888,0.990196526050568,-0.0918592140078545,-0.1071447879076,0.990139186382294,-0.0902470126748085,-0.10712656378746,0.990139782428741,-0.0902612507343292,-0.105230942368507,0.990196466445923,-0.0918557122349739,0.64270007610321,0.568457901477814,0.513607025146484,0.643194854259491,0.56845885515213,0.512986183166504,0.585222780704498,0.567731082439423,0.57896089553833,0.584691345691681,0.567719280719757,0.579509139060974,-0.108039654791355,0.990064680576324,-0.0899963453412056,-0.108004041016102,0.990075886249542,-0.0899156555533409,-0.108005911111832,0.990075409412384,-0.089918278157711,-0.108041614294052,0.990063846111298,-0.0900042653083801,-0.10796432942152,0.990023672580719,-0.0905357673764229,-0.10796370357275,0.990022420883179,-0.090551070868969,-0.107951276004314,0.990006685256958,-0.0907373353838921,-0.107952751219273,0.990008234977722,-0.09071896225214,-0.107970170676708,0.990039765834808,-0.0903536304831505,-0.107969962060452,0.990038812160492,-0.090364083647728,-0.10796370357275,0.990022420883179,-0.090551070868969,-0.10796432942152,0.990023672580719,-0.0905357673764229,-0.107761986553669,0.990076899528503,-0.0901940017938614,-0.107997447252274,0.990053534507751,-0.0901693105697632,-0.107969962060452,0.990038812160492,-0.090364083647728,-0.107970170676708,0.990039765834808,-0.0903536304831505,-0.107810713350773,0.990085780620575,-0.0900386646389961,-0.108039654791355,0.990064680576324,-0.0899963453412056,-0.108041614294052,0.990063846111298,-0.0900042653083801, +-0.107997447252274,0.990053534507751,-0.0901693105697632,-0.107810713350773,0.990085780620575,-0.0900386646389961,-0.107997447252274,0.990053534507751,-0.0901693105697632,-0.107761986553669,0.990076899528503,-0.0901940017938614,-0.107000552117825,0.990012347698212,-0.0917958542704582,-0.107000239193439,0.990004181861877,-0.0918842256069183,-0.107000380754471,0.990003705024719,-0.0918888971209526,-0.107000425457954,0.990012049674988,-0.0917992666363716,-0.107005394995213,0.990020453929901,-0.0917029082775116,-0.107000552117825,0.990012347698212,-0.0917958542704582,-0.107000425457954,0.990012049674988,-0.0917992666363716,-0.107005245983601,0.990020215511322,-0.0917052626609802,-0.106792084872723,0.990191459655762,-0.0900906771421432,-0.107005394995213,0.990020453929901,-0.0917029082775116,-0.107005245983601,0.990020215511322,-0.0917052626609802,-0.106792785227299,0.990190863609314,-0.0900958552956581,-0.106746681034565,0.99020653963089,-0.089979387819767,-0.106833890080452,0.990197360515594,-0.0899762660264969,-0.10682051628828,0.990198850631714,-0.0899747759103775,-0.106792084872723,0.990191459655762,-0.0900906771421432,-0.106792785227299,0.990190863609314,-0.0900958552956581,-0.106743566691875,0.990206778049469,-0.0899804159998894,-0.106257475912571,0.990247130393982,-0.0901108160614967,-0.106746681034565,0.99020653963089,-0.089979387819767,-0.106743566691875,0.990206778049469,-0.0899804159998894,-0.106255784630775,0.990247428417206,-0.0901097282767296,-0.1061742156744,0.990260541439056,-0.0900616347789764,-0.106257475912571,0.990247130393982,-0.0901108160614967,-0.106255784630775,0.990247428417206,-0.0901097282767296,-0.106173478066921,0.990260660648346,-0.0900612771511078,-0.106120325624943,0.990267992019653,-0.0900422036647797,-0.1061742156744,0.990260541439056,-0.0900616347789764,-0.106173478066921,0.990260660648346,-0.0900612771511078,-0.106120266020298,0.990268051624298,-0.0900422111153603,-0.106103658676147,0.990268230438232,-0.0900602266192436,-0.106120325624943,0.990267992019653,-0.0900422036647797,-0.106120266020298,0.990268051624298,-0.0900422111153603, +-0.106103636324406,0.990268290042877,-0.0900598764419556,-0.106126226484776,0.990260243415833,-0.0901205465197563,-0.106103658676147,0.990268230438232,-0.0900602266192436,-0.106103636324406,0.990268290042877,-0.0900598764419556,-0.106125436723232,0.990260601043701,-0.0901190191507339,-0.106187269091606,0.990244805812836,-0.090218797326088,-0.106126226484776,0.990260243415833,-0.0901205465197563,-0.106125436723232,0.990260601043701,-0.0901190191507339,-0.106185011565685,0.990245342254639,-0.0902154445648193,-0.106276698410511,0.990223288536072,-0.0903496071696281,-0.106187269091606,0.990244805812836,-0.090218797326088,-0.106185011565685,0.990245342254639,-0.0902154445648193,-0.106272928416729,0.990224301815033,-0.0903441309928894,-0.106386579573154,0.990197777748108,-0.0905001163482666,-0.106276698410511,0.990223288536072,-0.0903496071696281,-0.106272928416729,0.990224301815033,-0.0903441309928894,-0.106381274759769,0.990199029445648,-0.0904930979013443,-0.106335736811161,0.990135312080383,-0.0912410542368889,-0.106386579573154,0.990197777748108,-0.0905001163482666,-0.106381274759769,0.990199029445648,-0.0904930979013443,-0.106337256729603,0.990136206150055,-0.0912299156188965,-0.109803810715675,0.98968917131424,-0.0919699594378471,-0.109852366149426,0.989722311496735,-0.0915538743138313,-0.109856687486172,0.98972487449646,-0.0915213748812675,-0.109806895256042,0.989691555500031,-0.0919411405920982,-0.106268055737019,0.990117251873016,-0.0915156677365303,-0.106335736811161,0.990135312080383,-0.0912410542368889,-0.106337256729603,0.990136206150055,-0.0912299156188965,-0.106454931199551,0.990112841129303,-0.0913455039262772,-0.106482274830341,0.990108788013458,-0.0913577452301979,-0.106277145445347,0.990119278430939,-0.0914820209145546,-0.106454931199551,0.990112841129303,-0.0913455039262772,-0.109761789441109,0.989623606204987,-0.0927224308252335,-0.10976155102253,0.98962527513504,-0.0927050784230232,-0.106482274830341,0.990108788013458,-0.0913577452301979,-0.109761789441109,0.989623606204987,-0.0927224308252335,-0.109768450260162,0.989656209945679,-0.0923653617501259, +-0.109770268201828,0.989658176898956,-0.0923424512147903,-0.10976155102253,0.98962527513504,-0.0927050784230232,-0.109768450260162,0.989656209945679,-0.0923653617501259,-0.109803810715675,0.98968917131424,-0.0919699594378471,-0.109806895256042,0.989691555500031,-0.0919411405920982,-0.109770268201828,0.989658176898956,-0.0923424512147903,-0.105590559542179,0.990006148815155,-0.0934799090027809,-0.106268055737019,0.990117251873016,-0.0915156677365303,-0.106277145445347,0.990119278430939,-0.0914820209145546,-0.105604775249958,0.990004181861877,-0.0934849455952644,-0.105306006968021,0.990046799182892,-0.0933707505464554,-0.105590559542179,0.990006148815155,-0.0934799090027809,-0.105604775249958,0.990004181861877,-0.0934849455952644,-0.105319522321224,0.990044713020325,-0.0933764427900314,-0.105079725384712,0.990081191062927,-0.0932603478431702,-0.105306006968021,0.990046799182892,-0.0933707505464554,-0.105319522321224,0.990044713020325,-0.0933764427900314,-0.105090759694576,0.990079343318939,-0.0932666659355164,-0.104930236935616,0.990107595920563,-0.0931483060121536,-0.105079725384712,0.990081191062927,-0.0932603478431702,-0.105090759694576,0.990079343318939,-0.0932666659355164,-0.104937128722668,0.990106284618378,-0.0931551977992058,-0.104866661131382,0.990125358104706,-0.0930319651961327,-0.104930236935616,0.990107595920563,-0.0931483060121536,-0.104937128722668,0.990106284618378,-0.0931551977992058,-0.104868434369564,0.990124464035034,-0.0930394902825356,-0.104886583983898,0.990134596824646,-0.0929095447063446,-0.104866661131382,0.990125358104706,-0.0930319651961327,-0.104868434369564,0.990124464035034,-0.0930394902825356,-0.104883410036564,0.990134239196777,-0.0929175168275833,-0.104979746043682,0.990137279033661,-0.0927756950259209,-0.104886583983898,0.990134596824646,-0.0929095447063446,-0.104883410036564,0.990134239196777,-0.0929175168275833,-0.104972407221794,0.990137219429016,-0.0927844122052193,-0.105129830539227,0.990135133266449,-0.0926289111375809,-0.104979746043682,0.990137279033661,-0.0927756950259209, +-0.104972407221794,0.990137219429016,-0.0927844122052193,-0.105119802057743,0.990135371685028,-0.0926380157470703,-0.105665318667889,0.990034282207489,-0.0930963829159737,-0.105129830539227,0.990135133266449,-0.0926289111375809,-0.105119802057743,0.990135371685028,-0.0926380157470703,-0.105587303638458,0.990043222904205,-0.0930908024311066,-0.105773210525513,0.990021407604218,-0.0931110829114914,-0.107074946165085,0.989874005317688,-0.0931901708245277,-0.107036232948303,0.989878177642822,-0.0931905210018158,-0.105665318667889,0.990034282207489,-0.0930963829159737,-0.105869315564632,0.990023910999298,-0.0929752513766289,-0.105773210525513,0.990021407604218,-0.0931110829114914,-0.105665318667889,0.990034282207489,-0.0930963829159737,-0.105587303638458,0.990043222904205,-0.0930908024311066,-0.1058289706707,0.990026593208313,-0.0929934978485107,-0.107066214084625,0.989943504333496,-0.0924589186906815,-0.105869315564632,0.990023910999298,-0.0929752513766289,-0.1058289706707,0.990026593208313,-0.0929934978485107,-0.107063360512257,0.98994392156601,-0.0924579203128815,-0.10713492333889,0.98993307352066,-0.0924912467598915,-0.107066214084625,0.989943504333496,-0.0924589186906815,-0.107063360512257,0.98994392156601,-0.0924579203128815,-0.107132561504841,0.989933431148529,-0.0924897715449333,-0.107196003198624,0.989920973777771,-0.0925494208931923,-0.10713492333889,0.98993307352066,-0.0924912467598915,-0.107132561504841,0.989933431148529,-0.0924897715449333,-0.107195883989334,0.989921152591705,-0.092549204826355,-0.107186421751976,0.989913582801819,-0.0926395505666733,-0.107196003198624,0.989920973777771,-0.0925494208931923,-0.107195883989334,0.989921152591705,-0.092549204826355,-0.107185833156109,0.989913642406464,-0.0926404520869255,-0.107147224247456,0.989908218383789,-0.0927431508898735,-0.107186421751976,0.989913582801819,-0.0926395505666733,-0.107185833156109,0.989913642406464,-0.0926404520869255,-0.107147261500359,0.989908158779144,-0.0927426889538765,-0.107210747897625,0.989889442920685,-0.0928685739636421,-0.107147224247456,0.989908218383789,-0.0927431508898735, +-0.107147261500359,0.989908158779144,-0.0927426889538765,-0.107211396098137,0.98988938331604,-0.0928691551089287,-0.107304617762566,0.989865005016327,-0.0930212736129761,-0.107210747897625,0.989889442920685,-0.0928685739636421,-0.107211396098137,0.98988938331604,-0.0928691551089287,-0.107304386794567,0.989864826202393,-0.0930226668715477,-0.107061624526978,0.98988538980484,-0.0930845066905022,-0.107304617762566,0.989865005016327,-0.0930212736129761,-0.107304386794567,0.989864826202393,-0.0930226668715477,-0.107049345970154,0.98988676071167,-0.0930839478969574,-0.105400137603283,0.990086853504181,-0.0928381234407425,-0.105747036635876,0.98999148607254,-0.093458890914917,-0.105999872088432,0.989911079406738,-0.0940219387412071,-0.105898596346378,0.98992931842804,-0.0939444899559021,-0.106730245053768,0.989915907382965,-0.0931411907076836,-0.107061624526978,0.98988538980484,-0.0930845066905022,-0.107049345970154,0.98988676071167,-0.0930839478969574,-0.106727831065655,0.989915668964386,-0.0931452736258507,-0.106726489961147,0.989896535873413,-0.0933513417840004,-0.106730245053768,0.989915907382965,-0.0931411907076836,-0.106727831065655,0.989915668964386,-0.0931452736258507,-0.10672901570797,0.989895462989807,-0.0933579653501511,-0.106723457574844,0.989877283573151,-0.0935577601194382,-0.106726489961147,0.989896535873413,-0.0933513417840004,-0.10672901570797,0.989895462989807,-0.0933579653501511,-0.106721207499504,0.989877343177795,-0.0935597345232964,-0.106394343078136,0.989919781684875,-0.0934823676943779,-0.106723457574844,0.989877283573151,-0.0935577601194382,-0.106721207499504,0.989877343177795,-0.0935597345232964,-0.106381595134735,0.989921867847443,-0.0934755802154541,-0.105788096785545,0.990025341510773,-0.0930521264672279,-0.106394343078136,0.989919781684875,-0.0934823676943779,-0.106381595134735,0.989921867847443,-0.0934755802154541,-0.106166385114193,0.989932537078857,-0.0936072543263435,-0.105747036635876,0.98999148607254,-0.093458890914917,-0.105788096785545,0.990025341510773,-0.0930521264672279,-0.106166385114193,0.989932537078857,-0.0936072543263435, +-0.105747036635876,0.98999148607254,-0.093458890914917,-0.106166385114193,0.989932537078857,-0.0936072543263435,-0.105999872088432,0.989911079406738,-0.0940219387412071,-0.104708753526211,0.990223288536072,-0.0921620428562164,-0.104859463870525,0.990215241909027,-0.0920767039060593,-0.104710713028908,0.99019980430603,-0.0924131125211716,-0.10470911860466,0.990222632884979,-0.0921691060066223,-0.104859463870525,0.990215241909027,-0.0920767039060593,-0.104953907430172,0.990204095840454,-0.0920897126197815,-0.104710713028908,0.99019980430603,-0.0924131125211716,-0.104859463870525,0.990215241909027,-0.0920767039060593,-0.105400137603283,0.990086853504181,-0.0928381234407425,-0.105070859193802,0.990176498889923,-0.0922532603144646,-0.104953907430172,0.990204095840454,-0.0920897126197815,-0.105400137603283,0.990086853504181,-0.0928381234407425,-0.105898596346378,0.98992931842804,-0.0939444899559021,-0.106165789067745,0.989732205867767,-0.095702201128006,-0.105400137603283,0.990086853504181,-0.0928381234407425,-0.106165789067745,0.989732205867767,-0.095702201128006,-0.105070859193802,0.990176498889923,-0.0922532603144646,-0.104538306593895,0.990222275257111,-0.0923664942383766,-0.104534834623337,0.990221560001373,-0.0923783853650093,-0.105226956307888,0.990196526050568,-0.0918592140078545,-0.105230942368507,0.990196466445923,-0.0918557122349739,-0.104496747255325,0.990213572978973,-0.0925082713365555,-0.104697316884995,0.990251362323761,-0.0918740779161453,-0.104693442583084,0.990250706672668,-0.0918843373656273,-0.104534834623337,0.990221560001373,-0.0923783853650093,-0.104538306593895,0.990222275257111,-0.0923664942383766,-0.104796156287193,0.990266501903534,-0.091596856713295,-0.104795895516872,0.990266442298889,-0.0915979221463203,-0.104693442583084,0.990250706672668,-0.0918843373656273,-0.104697316884995,0.990251362323761,-0.0918740779161453,-0.10478338599205,0.990265071392059,-0.0916272923350334,-0.104783222079277,0.99026495218277,-0.0916277766227722,-0.104795895516872,0.990266442298889,-0.0915979221463203,-0.104796156287193,0.990266501903534,-0.091596856713295, +-0.104729123413563,0.990249037742615,-0.0918613970279694,-0.104728639125824,0.990248918533325,-0.091864101588726,-0.104783222079277,0.99026495218277,-0.0916277766227722,-0.10478338599205,0.990265071392059,-0.0916272923350334,-0.104708753526211,0.990223288536072,-0.0921620428562164,-0.10470911860466,0.990222632884979,-0.0921691060066223,-0.104728639125824,0.990248918533325,-0.091864101588726,-0.104729123413563,0.990249037742615,-0.0918613970279694,-0.108331471681595,0.989931702613831,-0.0911006778478622,-0.109050408005714,0.989912152290344,-0.0904536619782448,-0.108950957655907,0.989915072917938,-0.0905416682362556,-0.106685183942318,0.989977955818176,-0.092529833316803,-0.106565698981285,0.990088820457458,-0.0914764478802681,-0.10586604475975,0.99007660150528,-0.0924169942736626,-0.107453361153603,0.990107893943787,-0.0902220606803894,-0.105827197432518,0.989998877048492,-0.0932890027761459,-0.108331471681595,0.989931702613831,-0.0911006778478622,-0.106685183942318,0.989977955818176,-0.092529833316803,-0.105893924832344,0.990009486675262,-0.093099981546402,-0.105827197432518,0.989998877048492,-0.0932890027761459,-0.106685183942318,0.989977955818176,-0.092529833316803,-0.105097271502018,0.990035891532898,-0.0937197282910347,-0.105114676058292,0.990050494670868,-0.0935457125306129,-0.105893924832344,0.990009486675262,-0.093099981546402,-0.105097271502018,0.990035891532898,-0.0937197282910347,-0.10586604475975,0.99007660150528,-0.0924169942736626,-0.1052590534091,0.990063548088074,-0.0932454094290733,-0.105114676058292,0.990050494670868,-0.0935457125306129,-0.105097271502018,0.990035891532898,-0.0937197282910347,-0.10586604475975,0.99007660150528,-0.0924169942736626,-0.106673002243042,0.990090906620026,-0.0913282558321953,-0.1052590534091,0.990063548088074,-0.0932454094290733,-0.106565698981285,0.990088820457458,-0.0914764478802681,-0.106673002243042,0.990090906620026,-0.0913282558321953,-0.10586604475975,0.99007660150528,-0.0924169942736626,-0.10776475071907,0.99010956287384,-0.0898311510682106,-0.106565698981285,0.990088820457458,-0.0914764478802681, +-0.107453361153603,0.990107893943787,-0.0902220606803894,-0.107807546854019,0.990108132362366,-0.0897960886359215,-0.10776475071907,0.99010956287384,-0.0898311510682106,-0.107453361153603,0.990107893943787,-0.0902220606803894,-0.107805125415325,0.990108668804169,-0.0897934138774872,-0.107919998466969,0.989981055259705,-0.0910537019371986,-0.10791851580143,0.989979445934296,-0.0910727456212044,-0.107905559241772,0.989967823028564,-0.0912140086293221,-0.107907257974148,0.989969253540039,-0.0911964252591133,-0.107934974133968,0.98999410867691,-0.090893529355526,-0.107932686805725,0.989992618560791,-0.0909129753708839,-0.10791851580143,0.989979445934296,-0.0910727456212044,-0.107919998466969,0.989981055259705,-0.0910537019371986,-0.107952751219273,0.990008234977722,-0.09071896225214,-0.107951276004314,0.990006685256958,-0.0907373353838921,-0.107932686805725,0.989992618560791,-0.0909129753708839,-0.107934974133968,0.98999410867691,-0.090893529355526,-0.1075139939785,0.989977121353149,-0.0915750712156296,-0.10759498924017,0.989970266819,-0.0915537923574448,-0.107944779098034,0.989896833896637,-0.0919355005025864,-0.1075139939785,0.989977121353149,-0.0915750712156296,-0.107386663556099,0.990012466907501,-0.0913424864411354,-0.107407592236996,0.990011930465698,-0.0913234576582909,-0.10759498924017,0.989970266819,-0.0915537923574448,-0.1075139939785,0.989977121353149,-0.0915750712156296,-0.107181176543236,0.98994255065918,-0.0923353284597397,-0.107386663556099,0.990012466907501,-0.0913424864411354,-0.1075139939785,0.989977121353149,-0.0915750712156296,-0.107271134853363,0.989954471588135,-0.0921032205224037,-0.107181176543236,0.98994255065918,-0.0923353284597397,-0.107308588922024,0.989956617355347,-0.0920370668172836,-0.107290551066399,0.98995578289032,-0.0920669361948967,-0.107271134853363,0.989954471588135,-0.0921032205224037,-0.1075139939785,0.989977121353149,-0.0915750712156296,-0.108246542513371,0.990035772323608,-0.0900662839412689,-0.1080267354846,0.990055203437805,-0.0901156365871429,-0.107929021120071,0.990072548389435,-0.0900434851646423, +-0.106833890080452,0.990197360515594,-0.0899762660264969,-0.107929021120071,0.990072548389435,-0.0900434851646423,-0.1080267354846,0.990055203437805,-0.0901156365871429,-0.10682051628828,0.990198850631714,-0.0899747759103775,-0.107478924095631,0.98993968963623,-0.0920195430517197,-0.106968976557255,0.990028500556946,-0.0916573405265808,-0.107411466538906,0.989953994750977,-0.0919449850916862,-0.10716987401247,0.990003228187561,-0.0916972011327744,-0.107135519385338,0.990008115768433,-0.0916836857795715,-0.107143811881542,0.990007936954498,-0.0916753038764,-0.107411466538906,0.989953994750977,-0.0919449850916862,-0.107126139104366,0.990009009838104,-0.091685488820076,-0.107135519385338,0.990008115768433,-0.0916836857795715,-0.10716987401247,0.990003228187561,-0.0916972011327744,-0.107228733599186,0.989994764328003,-0.0917188078165054,-0.107337951660156,0.989972233772278,-0.0918348431587219,-0.107294678688049,0.989981234073639,-0.0917882993817329,-0.107294678688049,0.989981234073639,-0.0917882993817329,-0.107337951660156,0.989972233772278,-0.0918348431587219,-0.107350446283817,0.989970088005066,-0.0918427035212517,-0.107375904917717,0.989961624145508,-0.0919033214449883,-0.107375904917717,0.989961624145508,-0.0919033214449883,-0.107350446283817,0.989970088005066,-0.0918427035212517,-0.107370890676975,0.989966511726379,-0.0918576866388321,-0.107370890676975,0.989966511726379,-0.0918576866388321,-0.10739778727293,0.989956974983215,-0.0919286757707596,-0.107375904917717,0.989961624145508,-0.0919033214449883,-0.107366859912872,0.989955425262451,-0.091981329023838,-0.107373677194118,0.989956498146057,-0.0919624343514442,-0.107390835881233,0.989955067634583,-0.0919572412967682,-0.107366859912872,0.989955425262451,-0.091981329023838,-0.107356198132038,0.989954650402069,-0.0920022577047348,-0.107308588922024,0.989956617355347,-0.0920370668172836,-0.107373677194118,0.989956498146057,-0.0919624343514442,-0.107305608689785,0.98994380235672,-0.0921786800026894,-0.107297696173191,0.989939451217651,-0.0922340378165245,-0.107308588922024,0.989956617355347,-0.0920370668172836, +-0.107150077819824,0.989971518516541,-0.0920620858669281,-0.107138961553574,0.989935338497162,-0.0924631804227829,-0.107135243713856,0.989937245845795,-0.092446468770504,-0.107150129973888,0.989971220493317,-0.0920651704072952,-0.107073880732059,0.98998761177063,-0.0919778421521187,-0.107150077819824,0.989971518516541,-0.0920620858669281,-0.107150129973888,0.989971220493317,-0.0920651704072952,-0.107147127389908,0.989972531795502,-0.0920547246932983,-0.106932997703552,0.989998042583466,-0.0920276492834091,-0.109386615455151,0.98989063501358,-0.0902830883860588,-0.109489105641842,0.989869177341461,-0.0903946533799171,-0.107807546854019,0.990108132362366,-0.0897960886359215,-0.107805125415325,0.990108668804169,-0.0897934138774872,0.209106177091599,0.81199836730957,-0.544915854930878,0.239218562841415,0.797632455825806,-0.553675711154938,0.308389812707901,0.761007070541382,-0.570757389068604,0.292901754379272,0.769643008708954,-0.567325413227081,0.0507491901516914,0.919102907180786,-0.390735685825348,0.072780080139637,0.908120810985565,-0.412334442138672,0.148720815777779,0.847546815872192,-0.509457051753998,0.136085972189903,0.862029612064362,-0.488247364759445,0.607207417488098,0.616229116916656,-0.501558303833008,0.530681014060974,0.646599292755127,-0.547984480857849,0.554684996604919,0.635664641857147,-0.536893844604492,0.61514014005661,0.614202439785004,-0.49432572722435,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.0996144786477089,-0.310065180063248,0.945482134819031,-0.0268524140119553,-0.29538369178772,0.95500123500824,-0.156814441084862,-0.311870098114014,0.937094509601593,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.192522555589676,-0.307569861412048,0.931845426559448,-0.0996144786477089,-0.310065180063248,0.945482134819031,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.156814441084862,-0.311870098114014,0.937094509601593,0.00272546149790287,-0.531193196773529,0.84724634885788,0.00839607045054436,-0.740432560443878,0.672078311443329,-0.00680322712287307,-0.743137538433075,0.669104158878326, +0.0352165549993515,-0.736778795719147,0.675216019153595,0.00839607045054436,-0.740432560443878,0.672078311443329,0.00272546149790287,-0.531193196773529,0.84724634885788,0.055137362331152,-0.734911561012268,0.675917625427246,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0632155016064644,-0.734642505645752,0.675502955913544,-0.193154200911522,-0.313465774059296,0.929747700691223,-0.208943709731102,-0.304563373327255,0.92929208278656,0.00272546149790287,-0.531193196773529,0.84724634885788,-0.208943709731102,-0.304563373327255,0.92929208278656,-0.210368305444717,-0.303417444229126,0.929345428943634,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0705678388476372,-0.247022077441216,0.966436862945557,0.00272546149790287,-0.531193196773529,0.84724634885788,0.0349617004394531,-0.269924879074097,0.962246477603912,0.798272311687469,0.530124247074127,-0.285883903503418,0.814060628414154,0.537976145744324,-0.218830734491348,0.816087543964386,0.552608788013458,-0.169188424944878,0.689720153808594,0.582654893398285,-0.429883033037186,0.814060628414154,0.537976145744324,-0.218830734491348,0.743478178977966,0.553152561187744,-0.375848978757858,-0.107920631766319,0.989850103855133,-0.0924662053585052,-0.107965506613255,0.989873051643372,-0.0921673402190208,-0.107899360358715,0.989865064620972,-0.0923300161957741,0.754592716693878,0.465805411338806,-0.462185353040695,0.641277492046356,0.478991270065308,-0.599441826343536,0.74810266494751,0.326062172651291,-0.577949702739716,0.823954164981842,0.305536866188049,-0.477228224277496,0.823954164981842,0.305536866188049,-0.477228224277496,0.74810266494751,0.326062172651291,-0.577949702739716,0.834174036979675,0.171859636902809,-0.524040043354034,0.898703098297119,0.171856269240379,-0.403482496738434,0.91574090719223,-0.128389164805412,-0.380703032016754,0.935914158821106,-0.155002310872078,-0.316289335489273,0.914596319198608,-0.0584051609039307,-0.40012788772583,0.883838057518005,-0.0550799034535885,-0.464539080858231,0.893979668617249,-0.394452720880508,0.21262001991272, +0.909937739372253,-0.378480076789856,0.169606015086174,0.900952756404877,-0.363071292638779,0.237620383501053,0.870073080062866,-0.391977846622467,0.298874735832214,0.879079461097717,0.0545366704463959,-0.473545074462891,0.843963384628296,0.0443091951310635,-0.534567594528198,0.883838057518005,-0.0550799034535885,-0.464539080858231,0.914596319198608,-0.0584051609039307,-0.40012788772583,0.930738210678101,-0.287071943283081,-0.226530507206917,0.942311406135559,-0.255701333284378,-0.216022998094559,0.929230868816376,-0.181309133768082,-0.321957767009735,0.929230868816376,-0.181309133768082,-0.321957767009735,0.942311406135559,-0.255701333284378,-0.216022998094559,0.935914158821106,-0.155002310872078,-0.316289335489273,0.91574090719223,-0.128389164805412,-0.380703032016754,0.942311406135559,-0.255701333284378,-0.216022998094559,0.960497796535492,-0.258555501699448,-0.102922454476357,0.966890394687653,-0.143485724925995,-0.211033090949059,0.935914158821106,-0.155002310872078,-0.316289335489273,0.542803764343262,-0.499212235212326,0.675389647483826,0.568780958652496,-0.483123123645782,0.66564267873764,0.659939110279083,-0.463738322257996,0.591123580932617,0.624454081058502,-0.477743476629257,0.617914319038391,0.856023550033569,-0.446936100721359,0.259753346443176,0.836326897144318,-0.436528623104095,0.331662505865097,0.806884229183197,-0.447146356105804,0.386002749204636,0.833628058433533,-0.454055398702621,0.31448045372963,-0.072753481566906,-0.966231167316437,-0.247193098068237,-0.154667109251022,-0.929468989372253,-0.334911108016968,-0.234354108572006,-0.939100742340088,-0.251332372426987,-0.173500671982765,-0.983356356620789,-0.0539233386516571,-0.00622919015586376,-0.990969955921173,-0.13393859565258,-0.072753481566906,-0.966231167316437,-0.247193098068237,-0.173500671982765,-0.983356356620789,-0.0539233386516571,-0.138218551874161,-0.970393717288971,0.198070183396339,-0.271911710500717,-0.961562216281891,0.0382375158369541,-0.250744044780731,-0.850114226341248,0.463069438934326,-0.138218551874161,-0.970393717288971,0.198070183396339, +-0.173500671982765,-0.983356356620789,-0.0539233386516571,-0.223242849111557,-0.753953337669373,0.617832481861115,-0.250744044780731,-0.850114226341248,0.463069438934326,-0.271911710500717,-0.961562216281891,0.0382375158369541,-0.34049928188324,-0.925960063934326,0.16327366232872,0.928230226039886,-0.368469744920731,-0.0511729456484318,0.924871385097504,-0.380094885826111,0.0118652665987611,0.943566203117371,-0.327480643987656,-0.0493887960910797,0.934256672859192,-0.328212022781372,-0.139431938529015,0.934256672859192,-0.328212022781372,-0.139431938529015,0.943566203117371,-0.327480643987656,-0.0493887960910797,0.960497796535492,-0.258555501699448,-0.102922454476357,0.942311406135559,-0.255701333284378,-0.216022998094559,0.942121863365173,0.0769168511033058,-0.32632839679718,0.879079461097717,0.0545366704463959,-0.473545074462891,0.914596319198608,-0.0584051609039307,-0.40012788772583,0.963285148143768,-0.019251611083746,-0.267789155244827,0.963285148143768,-0.019251611083746,-0.267789155244827,0.966890394687653,-0.143485724925995,-0.211033090949059,0.989091873168945,-0.0998027101159096,-0.108335711061954,0.989501714706421,-0.0315620042383671,-0.141032472252846,0.976318776607513,-0.215806856751442,0.0151355043053627,0.914900243282318,-0.386566549539566,0.116291858255863,0.920321881771088,-0.327427804470062,0.214006260037422,0.989118278026581,-0.146823480725288,0.00936767365783453,-0.114088580012321,0.989402890205383,-0.0898085683584213,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090293645859,0.989402413368225,-0.0898121148347855,-0.114090293645859,0.989402413368225,-0.0898121148347855,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114088661968708,0.989403009414673,-0.0898081883788109,-0.114088661968708,0.989403009414673,-0.0898081883788109,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090949296951,0.989402115345001,-0.0898151621222496,-0.114090949296951,0.989402115345001,-0.0898151621222496,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089086651802,0.989403009414673,-0.0898074805736542, +-0.114089086651802,0.989403009414673,-0.0898074805736542,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114091090857983,0.989401817321777,-0.0898192524909973,-0.114091090857983,0.989401817321777,-0.0898192524909973,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114091761410236,0.989401578903198,-0.0898191183805466,-0.114091761410236,0.989401578903198,-0.0898191183805466,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114091135561466,0.98940235376358,-0.0898119285702705,-0.114091135561466,0.98940235376358,-0.0898119285702705,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089317619801,0.98940372467041,-0.0897982493042946,-0.114089317619801,0.98940372467041,-0.0897982493042946,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.11408919095993,0.989402234554291,-0.0898148342967033,-0.11408919095993,0.989402234554291,-0.0898148342967033,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114091545343399,0.989400207996368,-0.089835099875927,-0.114089973270893,0.989402294158936,-0.089814156293869,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114092044532299,0.989402890205383,-0.0898049995303154,-0.114092044532299,0.989402890205383,-0.0898049995303154,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090472459793,0.989402532577515,-0.0898101776838303,-0.114090472459793,0.989402532577515,-0.0898101776838303,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114087052643299,0.989401996135712,-0.0898208767175674,-0.114087052643299,0.989401996135712,-0.0898208767175674,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114095509052277,0.989403069019318,-0.0897980406880379,-0.114095509052277,0.989403069019318,-0.0897980406880379,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114086896181107,0.989402174949646,-0.0898188501596451,-0.114086896181107,0.989402174949646,-0.0898188501596451,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089958369732,0.989402592182159,-0.0898101627826691,-0.114089958369732,0.989402592182159,-0.0898101627826691, +-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.11409243196249,0.989402532577515,-0.0898091197013855,-0.11409243196249,0.989402532577515,-0.0898091197013855,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114086613059044,0.98940247297287,-0.0898168981075287,-0.114086613059044,0.98940247297287,-0.0898168981075287,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090174436569,0.98940247297287,-0.0898118242621422,-0.114090174436569,0.98940247297287,-0.0898118242621422,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090196788311,0.989402532577515,-0.0898111313581467,-0.114090196788311,0.989402532577515,-0.0898111313581467,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114091254770756,0.989402413368225,-0.0898105949163437,-0.114091254770756,0.989402413368225,-0.0898105949163437,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.11409030854702,0.98940247297287,-0.0898115709424019,-0.11409030854702,0.98940247297287,-0.0898115709424019,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.11408869177103,0.989402592182159,-0.0898124203085899,-0.11408869177103,0.989402592182159,-0.0898124203085899,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090874791145,0.98940247297287,-0.0898114070296288,-0.114090874791145,0.98940247297287,-0.0898114070296288,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114088848233223,0.989402532577515,-0.0898129045963287,-0.114088848233223,0.989402532577515,-0.0898129045963287,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090949296951,0.98940235376358,-0.089811347424984,-0.114090949296951,0.98940235376358,-0.089811347424984,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090904593468,0.989402532577515,-0.0898111239075661,-0.114090904593468,0.989402532577515,-0.0898111239075661,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.11408781260252,0.989402592182159,-0.0898128300905228,-0.11408781260252,0.989402592182159,-0.0898128300905228,-0.114090092480183,0.989402532577515,-0.0898117870092392, +-0.11409106105566,0.98940247297287,-0.0898115113377571,-0.11409106105566,0.98940247297287,-0.0898115113377571,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.11409042775631,0.98940247297287,-0.0898114591836929,-0.11409042775631,0.98940247297287,-0.0898114591836929,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114091448485851,0.989402413368225,-0.0898112207651138,-0.114091448485851,0.989402413368225,-0.0898112207651138,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089339971542,0.989402592182159,-0.0898120254278183,-0.114089339971542,0.989402592182159,-0.0898120254278183,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090643823147,0.98940235376358,-0.0898115634918213,-0.114090643823147,0.98940235376358,-0.0898115634918213,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089012145996,0.989402592182159,-0.0898117423057556,-0.114089012145996,0.989402592182159,-0.0898117423057556,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090152084827,0.98940247297287,-0.0898119136691093,-0.114090152084827,0.98940247297287,-0.0898119136691093,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.11408905684948,0.989402592182159,-0.0898120254278183,-0.11408905684948,0.989402592182159,-0.0898120254278183,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090040326118,0.98940247297287,-0.0898118540644646,-0.114090040326118,0.98940247297287,-0.0898118540644646,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090949296951,0.989402294158936,-0.0898116156458855,-0.114090949296951,0.989402294158936,-0.0898116156458855,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089250564575,0.989402651786804,-0.0898116901516914,-0.114089250564575,0.989402651786804,-0.0898116901516914,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090263843536,0.98940247297287,-0.0898118615150452,-0.114090263843536,0.98940247297287,-0.0898118615150452,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090941846371,0.98940235376358,-0.0898119732737541, +-0.114090941846371,0.98940235376358,-0.0898119732737541,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090301096439,0.989402413368225,-0.0898118540644646,-0.114090301096439,0.989402413368225,-0.0898118540644646,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089958369732,0.989402592182159,-0.0898116677999496,-0.114089958369732,0.989402592182159,-0.0898116677999496,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089630544186,0.989402592182159,-0.0898115709424019,-0.114089630544186,0.989402592182159,-0.0898115709424019,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090867340565,0.98940235376358,-0.0898120403289795,-0.114090867340565,0.98940235376358,-0.0898120403289795,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090785384178,0.989402413368225,-0.0898119509220123,-0.114090785384178,0.989402413368225,-0.0898119509220123,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114088892936707,0.989402711391449,-0.0898112058639526,-0.114088892936707,0.989402711391449,-0.0898112058639526,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089608192444,0.989402592182159,-0.0898115113377571,-0.114089608192444,0.989402592182159,-0.0898115113377571,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089392125607,0.989402592182159,-0.0898114293813705,-0.114089392125607,0.989402592182159,-0.0898114293813705,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089876413345,0.989402592182159,-0.0898117646574974,-0.114089876413345,0.989402592182159,-0.0898117646574974,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114091880619526,0.989402174949646,-0.0898129194974899,-0.114091880619526,0.989402174949646,-0.0898129194974899,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089816808701,0.989402592182159,-0.0898115336894989,-0.114089816808701,0.989402592182159,-0.0898115336894989,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089772105217,0.989402592182159,-0.0898114591836929, +-0.114089772105217,0.989402592182159,-0.0898114591836929,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089280366898,0.989402651786804,-0.0898110792040825,-0.114089280366898,0.989402651786804,-0.0898110792040825,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090338349342,0.989402413368225,-0.0898120924830437,-0.114090338349342,0.989402413368225,-0.0898120924830437,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114090569317341,0.989402413368225,-0.0898122414946556,-0.114090569317341,0.989402413368225,-0.0898122414946556,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089787006378,0.989402532577515,-0.0898114442825317,-0.114089787006378,0.989402532577515,-0.0898114442825317,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114091068506241,0.989402294158936,-0.0898130536079407,-0.114091068506241,0.989402294158936,-0.0898130536079407,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089511334896,0.989402592182159,-0.0898108780384064,-0.114089511334896,0.989402592182159,-0.0898108780384064,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114092081785202,0.989401996135712,-0.089814767241478,-0.114092081785202,0.989401996135712,-0.089814767241478,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114089950919151,0.989402532577515,-0.0898111537098885,-0.114089950919151,0.989402532577515,-0.0898111537098885,-0.114090092480183,0.989402532577515,-0.0898117870092392,-0.114088580012321,0.989402890205383,-0.0898085683584213,-0.106858320534229,0.990013480186462,-0.0919486656785011,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106856241822243,0.990013837814331,-0.0919473245739937,-0.106856241822243,0.990013837814331,-0.0919473245739937,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857493519783,0.990013480186462,-0.0919505655765533,-0.106857493519783,0.990013480186462,-0.0919505655765533,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857150793076,0.990013837814331,-0.0919464975595474, +-0.106857150793076,0.990013837814331,-0.0919464975595474,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106855757534504,0.990013599395752,-0.0919509083032608,-0.106855757534504,0.990013599395752,-0.0919509083032608,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106860026717186,0.990013659000397,-0.0919454246759415,-0.106860026717186,0.990013659000397,-0.0919454246759415,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106858871877193,0.990013718605042,-0.0919460952281952,-0.106858871877193,0.990013718605042,-0.0919460952281952,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106858417391777,0.990013659000397,-0.0919472202658653,-0.106858417391777,0.990013659000397,-0.0919472202658653,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106853693723679,0.990013659000397,-0.0919515192508698,-0.106853693723679,0.990013659000397,-0.0919515192508698,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106858111917973,0.990013659000397,-0.0919478833675385,-0.106858111917973,0.990013659000397,-0.0919478833675385,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106858305633068,0.990013599395752,-0.0919474512338638,-0.106858305633068,0.990013599395752,-0.0919474512338638,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106855005025864,0.990013778209686,-0.091948963701725,-0.106855005025864,0.990013778209686,-0.091948963701725,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857277452946,0.990013718605042,-0.0919480174779892,-0.106857277452946,0.990013718605042,-0.0919480174779892,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857113540173,0.990013539791107,-0.091949000954628,-0.106857113540173,0.990013539791107,-0.091949000954628,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106860436499119,0.990013420581818,-0.0919467657804489,-0.106860436499119,0.990013420581818,-0.0919467657804489,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106858506798744,0.990013599395752,-0.0919474065303802,-0.106858506798744,0.990013599395752,-0.0919474065303802, +-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106854774057865,0.990013897418976,-0.0919489860534668,-0.106854774057865,0.990013897418976,-0.0919489860534668,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106855280697346,0.990013778209686,-0.0919490158557892,-0.106855280697346,0.990013778209686,-0.0919490158557892,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106856629252434,0.990013718605042,-0.0919485986232758,-0.106856629252434,0.990013718605042,-0.0919485986232758,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106859289109707,0.990013480186462,-0.091948077082634,-0.106859289109707,0.990013480186462,-0.091948077082634,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106859654188156,0.990013360977173,-0.0919477269053459,-0.106859654188156,0.990013360977173,-0.0919477269053459,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857061386108,0.990013778209686,-0.0919477567076683,-0.106857061386108,0.990013778209686,-0.0919477567076683,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106856420636177,0.990013778209686,-0.0919481068849564,-0.106856420636177,0.990013778209686,-0.0919481068849564,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106856279075146,0.990013778209686,-0.0919481068849564,-0.106856279075146,0.990013778209686,-0.0919481068849564,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106855861842632,0.990013837814331,-0.0919482633471489,-0.106855861842632,0.990013837814331,-0.0919482633471489,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106859177350998,0.990013480186462,-0.091948501765728,-0.106859177350998,0.990013480186462,-0.091948501765728,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106858730316162,0.990013480186462,-0.0919481441378593,-0.106858730316162,0.990013480186462,-0.0919481441378593,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106855437159538,0.990013837814331,-0.0919478312134743,-0.106855437159538,0.990013837814331,-0.0919478312134743,-0.106857359409332,0.990013599395752,-0.0919481441378593, +-0.10685770958662,0.990013539791107,-0.0919484347105026,-0.10685770958662,0.990013539791107,-0.0919484347105026,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106858864426613,0.990013480186462,-0.0919487103819847,-0.106858864426613,0.990013480186462,-0.0919487103819847,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106856718659401,0.990013837814331,-0.0919477641582489,-0.106856718659401,0.990013837814331,-0.0919477641582489,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.10685720294714,0.990013659000397,-0.0919480919837952,-0.10685720294714,0.990013659000397,-0.0919480919837952,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106859043240547,0.990013480186462,-0.0919488146901131,-0.106859043240547,0.990013480186462,-0.0919488146901131,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857821345329,0.990013599395752,-0.0919482856988907,-0.106857821345329,0.990013599395752,-0.0919482856988907,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106858246028423,0.990013539791107,-0.0919485464692116,-0.106858246028423,0.990013539791107,-0.0919485464692116,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857866048813,0.990013539791107,-0.0919482409954071,-0.106857866048813,0.990013539791107,-0.0919482409954071,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857016682625,0.990013778209686,-0.0919477194547653,-0.106857016682625,0.990013778209686,-0.0919477194547653,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106856375932693,0.990013897418976,-0.0919472575187683,-0.106856375932693,0.990013897418976,-0.0919472575187683,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106856472790241,0.990013778209686,-0.0919472947716713,-0.106856472790241,0.990013778209686,-0.0919472947716713,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106856003403664,0.990013957023621,-0.0919467210769653,-0.106856003403664,0.990013957023621,-0.0919467210769653,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857962906361,0.990013480186462,-0.0919490903615952, +-0.106857962906361,0.990013480186462,-0.0919490903615952,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106858767569065,0.990013360977173,-0.0919500812888145,-0.106858767569065,0.990013360977173,-0.0919500812888145,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106856472790241,0.990013897418976,-0.0919466912746429,-0.106856472790241,0.990013897418976,-0.0919466912746429,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857262551785,0.990013659000397,-0.0919480547308922,-0.106857262551785,0.990013659000397,-0.0919480547308922,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106858678162098,0.990013360977173,-0.0919507220387459,-0.106858678162098,0.990013360977173,-0.0919507220387459,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106856666505337,0.990013957023621,-0.091945692896843,-0.106856666505337,0.990013957023621,-0.091945692896843,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106855854392052,0.990014135837555,-0.0919455662369728,-0.106855854392052,0.990014135837555,-0.0919455662369728,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106859154999256,0.990013003349304,-0.0919527187943459,-0.106859154999256,0.990013003349304,-0.0919527187943459,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106859900057316,0.990012764930725,-0.0919553190469742,-0.106859900057316,0.990012764930725,-0.0919553190469742,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857433915138,0.990013659000397,-0.091948077082634,-0.106857433915138,0.990013659000397,-0.091948077082634,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106856845319271,0.990014433860779,-0.0919405221939087,-0.106856845319271,0.990014433860779,-0.0919405221939087,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106854848563671,0.990015208721161,-0.0919346138834953,-0.106854848563671,0.990015208721161,-0.0919346138834953,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857918202877,0.990012586116791,-0.0919584035873413,-0.106857918202877,0.990012586116791,-0.0919584035873413, +-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857761740685,0.990012764930725,-0.0919574722647667,-0.106857761740685,0.990012764930725,-0.0919574722647667,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106860637664795,0.990012109279633,-0.0919610932469368,-0.106860637664795,0.990012109279633,-0.0919610932469368,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106855854392052,0.990009367465973,-0.0919955000281334,-0.106865584850311,0.9900141954422,-0.0919325202703476,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106850236654282,0.990012347698212,-0.0919703990221024,-0.106850236654282,0.990012347698212,-0.0919703990221024,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106862917542458,0.990014016628265,-0.0919379517436028,-0.106862917542458,0.990014016628265,-0.0919379517436028,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106856413185596,0.990013957023621,-0.0919458642601967,-0.106856413185596,0.990013957023621,-0.0919458642601967,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106853783130646,0.990013003349304,-0.091959573328495,-0.106853783130646,0.990013003349304,-0.091959573328495,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106857120990753,0.990013837814331,-0.0919458866119385,-0.106857120990753,0.990013837814331,-0.0919458866119385,-0.106857359409332,0.990013599395752,-0.0919481441378593,-0.106858320534229,0.990013480186462,-0.0919486656785011,-0.108190126717091,0.989901900291443,-0.0915919095277786,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108187966048717,0.989902317523956,-0.0915901660919189,-0.108187966048717,0.989902317523956,-0.0915901660919189,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188234269619,0.989903569221497,-0.0915764719247818,-0.108188234269619,0.989903569221497,-0.0915764719247818,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108187466859818,0.989902317523956,-0.0915906131267548,-0.108187466859818,0.989902317523956,-0.0915906131267548,-0.108188651502132,0.98990261554718,-0.0915865525603294, +-0.108187086880207,0.989904582500458,-0.0915660709142685,-0.108184263110161,0.989899933338165,-0.0916197374463081,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108192808926105,0.989904344081879,-0.0915625393390656,-0.108192808926105,0.989904344081879,-0.0915625393390656,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.10818874835968,0.989902317523956,-0.0915895104408264,-0.10818874835968,0.989902317523956,-0.0915895104408264,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188129961491,0.989902555942535,-0.0915874540805817,-0.108188129961491,0.989902555942535,-0.0915874540805817,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108186796307564,0.989902257919312,-0.0915924981236458,-0.108186796307564,0.989902257919312,-0.0915924981236458,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108191609382629,0.98990261554718,-0.0915823429822922,-0.108191609382629,0.98990261554718,-0.0915823429822922,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188666403294,0.98990261554718,-0.0915856212377548,-0.108188666403294,0.98990261554718,-0.0915856212377548,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108190946280956,0.98990261554718,-0.0915825739502907,-0.108190946280956,0.98990261554718,-0.0915825739502907,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188979327679,0.989902496337891,-0.0915868431329727,-0.108188979327679,0.989902496337891,-0.0915868431329727,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108187288045883,0.98990261554718,-0.0915881171822548,-0.108187288045883,0.98990261554718,-0.0915881171822548,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108187258243561,0.989902555942535,-0.0915880724787712,-0.108187258243561,0.989902555942535,-0.0915880724787712,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108190931379795,0.989902496337891,-0.0915845707058907,-0.108190931379795,0.989902496337891,-0.0915845707058907,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108189150691032,0.98990273475647,-0.091585211455822, +-0.108189150691032,0.98990273475647,-0.091585211455822,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108187399804592,0.989902555942535,-0.091588132083416,-0.108187399804592,0.989902555942535,-0.091588132083416,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108187384903431,0.989902555942535,-0.0915878713130951,-0.108187384903431,0.989902555942535,-0.0915878713130951,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188889920712,0.989902555942535,-0.0915865674614906,-0.108188889920712,0.989902555942535,-0.0915865674614906,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108190022408962,0.989902496337891,-0.0915853679180145,-0.108190022408962,0.989902496337891,-0.0915853679180145,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188234269619,0.989902555942535,-0.0915865674614906,-0.108188234269619,0.989902555942535,-0.0915865674614906,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188234269619,0.989902555942535,-0.0915872231125832,-0.108188234269619,0.989902555942535,-0.0915872231125832,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188197016716,0.989902555942535,-0.0915868431329727,-0.108188197016716,0.989902555942535,-0.0915868431329727,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.10818837583065,0.98990261554718,-0.0915865451097488,-0.10818837583065,0.98990261554718,-0.0915865451097488,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108189582824707,0.989902496337891,-0.0915863364934921,-0.108189582824707,0.989902496337891,-0.0915863364934921,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188807964325,0.98990261554718,-0.0915866941213608,-0.108188807964325,0.98990261554718,-0.0915866941213608,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188711106777,0.989902555942535,-0.091586746275425,-0.108188711106777,0.989902555942535,-0.091586746275425,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188174664974,0.989902675151825,-0.0915865898132324,-0.108188174664974,0.989902675151825,-0.0915865898132324, +-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188509941101,0.989902555942535,-0.0915866121649742,-0.108188509941101,0.989902555942535,-0.0915866121649742,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188673853874,0.989902555942535,-0.0915866121649742,-0.108188673853874,0.989902555942535,-0.0915866121649742,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188144862652,0.98990261554718,-0.0915865451097488,-0.108188144862652,0.98990261554718,-0.0915865451097488,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188800513744,0.989902496337891,-0.0915866196155548,-0.108188800513744,0.989902496337891,-0.0915866196155548,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108189448714256,0.989902555942535,-0.0915869027376175,-0.108189448714256,0.989902555942535,-0.0915869027376175,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108189590275288,0.989902436733246,-0.0915869325399399,-0.108189590275288,0.989902436733246,-0.0915869325399399,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108187906444073,0.98990273475647,-0.0915861576795578,-0.108187906444073,0.98990273475647,-0.0915861576795578,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188346028328,0.989902555942535,-0.0915864706039429,-0.108188346028328,0.989902555942535,-0.0915864706039429,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108190171420574,0.989902377128601,-0.0915874466300011,-0.108190171420574,0.989902377128601,-0.0915874466300011,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188010752201,0.989902675151825,-0.0915861055254936,-0.108188010752201,0.989902675151825,-0.0915861055254936,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108187951147556,0.989902794361115,-0.0915859937667847,-0.108187951147556,0.989902794361115,-0.0915859937667847,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108187012374401,0.98990273475647,-0.0915859118103981,-0.108187012374401,0.98990273475647,-0.0915859118103981,-0.108188651502132,0.98990261554718,-0.0915865525603294, +-0.108190305531025,0.989902257919312,-0.0915879681706429,-0.108190305531025,0.989902257919312,-0.0915879681706429,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108189977705479,0.989902377128601,-0.0915873423218727,-0.108189977705479,0.989902377128601,-0.0915873423218727,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188197016716,0.989902675151825,-0.0915862247347832,-0.108188197016716,0.989902675151825,-0.0915862247347832,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108186788856983,0.989902973175049,-0.0915847420692444,-0.108186788856983,0.989902973175049,-0.0915847420692444,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108189105987549,0.989902436733246,-0.0915872678160667,-0.108189105987549,0.989902436733246,-0.0915872678160667,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108187794685364,0.989902675151825,-0.0915856584906578,-0.108187794685364,0.989902675151825,-0.0915856584906578,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188442885876,0.98990261554718,-0.0915860310196877,-0.108188442885876,0.98990261554718,-0.0915860310196877,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108187600970268,0.989902794361115,-0.0915854424238205,-0.108187600970268,0.989902794361115,-0.0915854424238205,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188606798649,0.989902436733246,-0.0915877819061279,-0.108188606798649,0.989902436733246,-0.0915877819061279,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108190476894379,0.989902138710022,-0.091589093208313,-0.108190476894379,0.989902138710022,-0.091589093208313,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108188509941101,0.989902436733246,-0.0915876030921936,-0.108188509941101,0.989902436733246,-0.0915876030921936,-0.108188651502132,0.98990261554718,-0.0915865525603294,-0.108185239136219,0.98990386724472,-0.0915761664509773,-0.109753221273422,0.989453315734863,-0.0945327877998352,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754040837288,0.989453136920929,-0.0945323705673218, +-0.109754040837288,0.989453136920929,-0.0945323705673218,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.10975281894207,0.989453375339508,-0.094532236456871,-0.10975281894207,0.989453375339508,-0.094532236456871,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109751641750336,0.989453494548798,-0.0945328325033188,-0.109751641750336,0.989453494548798,-0.0945328325033188,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754055738449,0.989453256130219,-0.0945327654480934,-0.109754055738449,0.989453256130219,-0.0945327654480934,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754338860512,0.989453077316284,-0.0945323929190636,-0.109754338860512,0.989453077316284,-0.0945323929190636,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109752558171749,0.989453434944153,-0.0945324599742889,-0.109752558171749,0.989453434944153,-0.0945324599742889,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754055738449,0.989453196525574,-0.0945325270295143,-0.109754055738449,0.989453196525574,-0.0945325270295143,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109755620360374,0.989453077316284,-0.0945325642824173,-0.109755620360374,0.989453077316284,-0.0945325642824173,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754279255867,0.989453136920929,-0.0945326089859009,-0.109754279255867,0.989453136920929,-0.0945326089859009,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109752222895622,0.989453434944153,-0.0945320725440979,-0.109752222895622,0.989453434944153,-0.0945320725440979,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109752997756004,0.989453434944153,-0.0945321917533875,-0.109752997756004,0.989453434944153,-0.0945321917533875,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754912555218,0.989453017711639,-0.0945329293608665,-0.109754912555218,0.989453017711639,-0.0945329293608665,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109753303229809,0.989453375339508,-0.0945324301719666,-0.109753303229809,0.989453375339508,-0.0945324301719666, +-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109753020107746,0.989453375339508,-0.0945322662591934,-0.109753020107746,0.989453375339508,-0.0945322662591934,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109755977988243,0.98945289850235,-0.0945335105061531,-0.109755977988243,0.98945289850235,-0.0945335105061531,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754718840122,0.989453077316284,-0.0945327505469322,-0.109754718840122,0.989453077316284,-0.0945327505469322,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109752558171749,0.989453434944153,-0.0945315584540367,-0.109752558171749,0.989453434944153,-0.0945315584540367,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754875302315,0.989453077316284,-0.0945330634713173,-0.109754875302315,0.989453077316284,-0.0945330634713173,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109751805663109,0.989453613758087,-0.0945307984948158,-0.109751805663109,0.989453613758087,-0.0945307984948158,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109753921627998,0.989453256130219,-0.0945328325033188,-0.109753921627998,0.989453256130219,-0.0945328325033188,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109753996133804,0.989453136920929,-0.0945327132940292,-0.109753996133804,0.989453136920929,-0.0945327132940292,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754286706448,0.989453196525574,-0.0945324897766113,-0.109754286706448,0.989453196525574,-0.0945324897766113,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.10975269973278,0.989453494548798,-0.0945318043231964,-0.10975269973278,0.989453494548798,-0.0945318043231964,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109755724668503,0.98945277929306,-0.0945351868867874,-0.109755724668503,0.98945277929306,-0.0945351868867874,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754122793674,0.989453315734863,-0.0945320054888725,-0.109754122793674,0.989453315734863,-0.0945320054888725,-0.109753705561161,0.989453196525574,-0.0945325344800949, +-0.10975407063961,0.989453136920929,-0.0945331379771233,-0.10975407063961,0.989453136920929,-0.0945331379771233,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109752804040909,0.989453673362732,-0.0945292562246323,-0.109752804040909,0.989453673362732,-0.0945292562246323,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109752595424652,0.989453494548798,-0.0945305153727531,-0.109752595424652,0.989453494548798,-0.0945305153727531,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109755270183086,0.989452719688416,-0.0945369005203247,-0.109755270183086,0.989452719688416,-0.0945369005203247,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754823148251,0.989452660083771,-0.0945367962121964,-0.109754823148251,0.989452660083771,-0.0945367962121964,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754212200642,0.989453256130219,-0.09453134983778,-0.109754212200642,0.989453256130219,-0.09453134983778,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754331409931,0.98945289850235,-0.0945351272821426,-0.109754331409931,0.98945289850235,-0.0945351272821426,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109756633639336,0.989451050758362,-0.094551719725132,-0.109756633639336,0.989451050758362,-0.094551719725132,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109756454825401,0.989453494548798,-0.094526931643486,-0.109753139317036,0.989454209804535,-0.0945234149694443,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109747543931007,0.989452421665192,-0.094547338783741,-0.109747543931007,0.989452421665192,-0.094547338783741,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109752640128136,0.989453375339508,-0.0945329591631889,-0.109752640128136,0.989453375339508,-0.0945329591631889,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109756298363209,0.989453315734863,-0.0945286229252815,-0.109756298363209,0.989453315734863,-0.0945286229252815,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109750829637051,0.989453077316284,-0.0945372357964516, +-0.109750829637051,0.989453077316284,-0.0945372357964516,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754160046577,0.989453375339508,-0.0945312455296516,-0.109754160046577,0.989453375339508,-0.0945312455296516,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109752967953682,0.989453315734863,-0.0945325866341591,-0.109752967953682,0.989453315734863,-0.0945325866341591,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.10975331813097,0.989453315734863,-0.0945323705673218,-0.10975331813097,0.989453315734863,-0.0945323705673218,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754219651222,0.989453256130219,-0.0945320427417755,-0.109754219651222,0.989453256130219,-0.0945320427417755,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109752424061298,0.989453315734863,-0.094533383846283,-0.109752424061298,0.989453315734863,-0.094533383846283,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109752394258976,0.989453315734863,-0.0945336818695068,-0.109752394258976,0.989453315734863,-0.0945336818695068,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109754800796509,0.989453256130219,-0.0945316180586815,-0.109754800796509,0.989453256130219,-0.0945316180586815,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109752126038074,0.989453315734863,-0.0945335701107979,-0.109752126038074,0.989453315734863,-0.0945335701107979,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109753333032131,0.989453256130219,-0.0945325717329979,-0.109753333032131,0.989453256130219,-0.0945325717329979,-0.109753705561161,0.989453196525574,-0.0945325344800949,-0.109756670892239,0.989453136920929,-0.0945309102535248,-0.0585433021187782,0.989585816860199,0.13150155544281,-0.0295115001499653,0.966083526611328,0.256537586450577,0.0710949525237083,0.971909999847412,0.224357232451439,0.0144301643595099,0.993595123291016,0.112073868513107,0.0144301643595099,0.993595123291016,0.112073868513107,0.0710949525237083,0.971909999847412,0.224357232451439,0.169115200638771,0.97297078371048,0.157251492142677, +0.0986433327198029,0.990710437297821,0.0936071872711182,0.0710949525237083,0.971909999847412,0.224357232451439,0.0966104418039322,0.961720287799835,0.256438106298447,0.192352756857872,0.965034008026123,0.178072094917297,0.169115200638771,0.97297078371048,0.157251492142677,-0.0295115001499653,0.966083526611328,0.256537586450577,-0.0187311060726643,0.953490316867828,0.300841093063354,0.0966104418039322,0.961720287799835,0.256438106298447,0.0710949525237083,0.971909999847412,0.224357232451439,-0.260824888944626,0.924906849861145,0.276618212461472,-0.14184482395649,0.940623760223389,0.308394074440002,-0.133975520730019,0.95380049943924,0.268914788961411,-0.249977678060532,0.935904979705811,0.248179063200951,-0.249977678060532,0.935904979705811,0.248179063200951,-0.133975520730019,0.95380049943924,0.268914788961411,-0.132685154676437,0.980655252933502,0.143909901380539,-0.215556055307388,0.963026821613312,0.161601439118385,-0.133975520730019,0.95380049943924,0.268914788961411,-0.0295115001499653,0.966083526611328,0.256537586450577,-0.0585433021187782,0.989585816860199,0.13150155544281,-0.132685154676437,0.980655252933502,0.143909901380539,-0.14184482395649,0.940623760223389,0.308394074440002,-0.0187311060726643,0.953490316867828,0.300841093063354,-0.0295115001499653,0.966083526611328,0.256537586450577,-0.133975520730019,0.95380049943924,0.268914788961411,0.0986433327198029,0.990710437297821,0.0936071872711182,0.169115200638771,0.97297078371048,0.157251492142677,0.225695267319679,0.972765743732452,0.0528066083788872,0.108395338058472,0.994076550006866,0.0078863687813282,0.108395338058472,0.994076550006866,0.0078863687813282,0.225695267319679,0.972765743732452,0.0528066083788872,0.247332662343979,0.967613399028778,-0.0505067780613899,0.120283402502537,0.990498304367065,-0.0666705593466759,0.225695267319679,0.972765743732452,0.0528066083788872,0.260262578725815,0.962642073631287,0.0747231245040894,0.292406737804413,0.955258965492249,-0.0444808751344681,0.247332662343979,0.967613399028778,-0.0505067780613899,0.169115200638771,0.97297078371048,0.157251492142677, +0.192352756857872,0.965034008026123,0.178072094917297,0.260262578725815,0.962642073631287,0.0747231245040894,0.225695267319679,0.972765743732452,0.0528066083788872,-0.441338807344437,0.890070676803589,0.113992139697075,-0.364332973957062,0.9072545170784,0.210120856761932,-0.343972831964493,0.922328412532806,0.176048263907433,-0.405190408229828,0.909769952297211,0.0902189686894417,-0.405190408229828,0.909769952297211,0.0902189686894417,-0.343972831964493,0.922328412532806,0.176048263907433,-0.260127425193787,0.961605966091156,0.0874513611197472,-0.300872832536697,0.953361213207245,0.0240407921373844,-0.343972831964493,0.922328412532806,0.176048263907433,-0.249977678060532,0.935904979705811,0.248179063200951,-0.215556055307388,0.963026821613312,0.161601439118385,-0.260127425193787,0.961605966091156,0.0874513611197472,-0.364332973957062,0.9072545170784,0.210120856761932,-0.260824888944626,0.924906849861145,0.276618212461472,-0.249977678060532,0.935904979705811,0.248179063200951,-0.343972831964493,0.922328412532806,0.176048263907433,0.120283402502537,0.990498304367065,-0.0666705593466759,0.247332662343979,0.967613399028778,-0.0505067780613899,0.248957514762878,0.955941319465637,-0.155551865696907,0.125098809599876,0.98198413848877,-0.141624718904495,0.125098809599876,0.98198413848877,-0.141624718904495,0.248957514762878,0.955941319465637,-0.155551865696907,0.216640919446945,0.938569605350494,-0.268614739179611,0.134292736649513,0.964885532855988,-0.225746169686317,0.248957514762878,0.955941319465637,-0.155551865696907,0.287265598773956,0.943096220493317,-0.167475163936615,0.243699580430984,0.927856922149658,-0.282297849655151,0.216640919446945,0.938569605350494,-0.268614739179611,0.247332662343979,0.967613399028778,-0.0505067780613899,0.292406737804413,0.955258965492249,-0.0444808751344681,0.287265598773956,0.943096220493317,-0.167475163936615,0.248957514762878,0.955941319465637,-0.155551865696907,-0.106863118708134,0.989989578723907,-0.0922003537416458,-0.0840507596731186,0.996332466602325,0.0160346031188965,-0.00317906611599028,0.999993681907654,0.00157160812523216, +0.00302736810408533,0.996758937835693,-0.0803892761468887,0.00302736810408533,0.996758937835693,-0.0803892761468887,-0.00317906611599028,0.999993681907654,0.00157160812523216,0.108395338058472,0.994076550006866,0.0078863687813282,0.120283402502537,0.990498304367065,-0.0666705593466759,-0.00317906611599028,0.999993681907654,0.00157160812523216,0.0144301643595099,0.993595123291016,0.112073868513107,0.0986433327198029,0.990710437297821,0.0936071872711182,0.108395338058472,0.994076550006866,0.0078863687813282,-0.0840507596731186,0.996332466602325,0.0160346031188965,-0.0585433021187782,0.989585816860199,0.13150155544281,0.0144301643595099,0.993595123291016,0.112073868513107,-0.00317906611599028,0.999993681907654,0.00157160812523216,-0.215556055307388,0.963026821613312,0.161601439118385,-0.132685154676437,0.980655252933502,0.143909901380539,-0.163221940398216,0.985929012298584,0.0360902510583401,-0.260127425193787,0.961605966091156,0.0874513611197472,-0.260127425193787,0.961605966091156,0.0874513611197472,-0.163221940398216,0.985929012298584,0.0360902510583401,-0.201865911483765,0.978740453720093,-0.0362952426075935,-0.300872832536697,0.953361213207245,0.0240407921373844,-0.163221940398216,0.985929012298584,0.0360902510583401,-0.0840507596731186,0.996332466602325,0.0160346031188965,-0.106863118708134,0.989989578723907,-0.0922003537416458,-0.201865911483765,0.978740453720093,-0.0362952426075935,-0.132685154676437,0.980655252933502,0.143909901380539,-0.0585433021187782,0.989585816860199,0.13150155544281,-0.0840507596731186,0.996332466602325,0.0160346031188965,-0.163221940398216,0.985929012298584,0.0360902510583401,-0.106863118708134,0.989989578723907,-0.0922003537416458,0.00302736810408533,0.996758937835693,-0.0803892761468887,0.0149875208735466,0.98681777715683,-0.161139756441116,-0.0607815086841583,0.979446887969971,-0.192326620221138,-0.0607815086841583,0.979446887969971,-0.192326620221138,0.0149875208735466,0.98681777715683,-0.161139756441116,0.0562416426837444,0.963268399238586,-0.262584686279297,-0.0107555026188493,0.954895317554474,-0.296747803688049, +0.0149875208735466,0.98681777715683,-0.161139756441116,0.125098809599876,0.98198413848877,-0.141624718904495,0.134292736649513,0.964885532855988,-0.225746169686317,0.0562416426837444,0.963268399238586,-0.262584686279297,0.00302736810408533,0.996758937835693,-0.0803892761468887,0.120283402502537,0.990498304367065,-0.0666705593466759,0.125098809599876,0.98198413848877,-0.141624718904495,0.0149875208735466,0.98681777715683,-0.161139756441116,0.134292736649513,0.964885532855988,-0.225746169686317,0.216640919446945,0.938569605350494,-0.268614739179611,0.135703772306442,0.925085186958313,-0.354685872793198,0.0562416426837444,0.963268399238586,-0.262584686279297,0.0562416426837444,0.963268399238586,-0.262584686279297,0.135703772306442,0.925085186958313,-0.354685872793198,0.0445081666111946,0.912373900413513,-0.406931102275848,-0.0107555026188493,0.954895317554474,-0.296747803688049,0.135703772306442,0.925085186958313,-0.354685872793198,0.167439639568329,0.91041499376297,-0.378296971321106,0.0645538866519928,0.893123388290405,-0.44515535235405,0.0445081666111946,0.912373900413513,-0.406931102275848,0.216640919446945,0.938569605350494,-0.268614739179611,0.243699580430984,0.927856922149658,-0.282297849655151,0.167439639568329,0.91041499376297,-0.378296971321106,0.135703772306442,0.925085186958313,-0.354685872793198,-0.490658938884735,0.862333118915558,-0.125041276216507,-0.48538276553154,0.874300837516785,-0.00130729435477406,-0.447943776845932,0.894043385982513,-0.0057296846061945,-0.462325423955917,0.878113746643066,-0.123172424733639,-0.462325423955917,0.878113746643066,-0.123172424733639,-0.447943776845932,0.894043385982513,-0.0057296846061945,-0.334584712982178,0.941390812397003,-0.0428540855646133,-0.37458723783493,0.919821441173553,-0.116674959659576,-0.447943776845932,0.894043385982513,-0.0057296846061945,-0.405190408229828,0.909769952297211,0.0902189686894417,-0.300872832536697,0.953361213207245,0.0240407921373844,-0.334584712982178,0.941390812397003,-0.0428540855646133,-0.48538276553154,0.874300837516785,-0.00130729435477406, +-0.441338807344437,0.890070676803589,0.113992139697075,-0.405190408229828,0.909769952297211,0.0902189686894417,-0.447943776845932,0.894043385982513,-0.0057296846061945,-0.0107555026188493,0.954895317554474,-0.296747803688049,0.0445081666111946,0.912373900413513,-0.406931102275848,-0.0548824779689312,0.896357893943787,-0.439920961856842,-0.0805120021104813,0.942755818367004,-0.323618978261948,-0.0805120021104813,0.942755818367004,-0.323618978261948,-0.0548824779689312,0.896357893943787,-0.439920961856842,-0.172846272587776,0.879844605922699,-0.442716211080551,-0.157767727971077,0.921019971370697,-0.35613426566124,-0.0548824779689312,0.896357893943787,-0.439920961856842,-0.0540635250508785,0.876941502094269,-0.477546483278275,-0.177307933568954,0.864271700382233,-0.470740228891373,-0.172846272587776,0.879844605922699,-0.442716211080551,0.0445081666111946,0.912373900413513,-0.406931102275848,0.0645538866519928,0.893123388290405,-0.44515535235405,-0.0540635250508785,0.876941502094269,-0.477546483278275,-0.0548824779689312,0.896357893943787,-0.439920961856842,-0.389617115259171,0.852463901042938,-0.348574072122574,-0.458138972520828,0.854492545127869,-0.244849294424057,-0.422234326601028,0.875356137752533,-0.235520169138908,-0.35922583937645,0.876357614994049,-0.320864766836166,-0.35922583937645,0.876357614994049,-0.320864766836166,-0.422234326601028,0.875356137752533,-0.235520169138908,-0.319007277488708,0.930057406425476,-0.18228454887867,-0.271250605583191,0.931824803352356,-0.24109223484993,-0.422234326601028,0.875356137752533,-0.235520169138908,-0.462325423955917,0.878113746643066,-0.123172424733639,-0.37458723783493,0.919821441173553,-0.116674959659576,-0.319007277488708,0.930057406425476,-0.18228454887867,-0.458138972520828,0.854492545127869,-0.244849294424057,-0.490658938884735,0.862333118915558,-0.125041276216507,-0.462325423955917,0.878113746643066,-0.123172424733639,-0.422234326601028,0.875356137752533,-0.235520169138908,-0.106863118708134,0.989989578723907,-0.0922003537416458,-0.0607815086841583,0.979446887969971,-0.192326620221138, +-0.133803158998489,0.964551091194153,-0.227459624409676,-0.1874790340662,0.968276798725128,-0.165201604366302,-0.1874790340662,0.968276798725128,-0.165201604366302,-0.133803158998489,0.964551091194153,-0.227459624409676,-0.217481166124344,0.930603682994843,-0.294412344694138,-0.271250605583191,0.931824803352356,-0.24109223484993,-0.133803158998489,0.964551091194153,-0.227459624409676,-0.0805120021104813,0.942755818367004,-0.323618978261948,-0.157767727971077,0.921019971370697,-0.35613426566124,-0.217481166124344,0.930603682994843,-0.294412344694138,-0.0607815086841583,0.979446887969971,-0.192326620221138,-0.0107555026188493,0.954895317554474,-0.296747803688049,-0.0805120021104813,0.942755818367004,-0.323618978261948,-0.133803158998489,0.964551091194153,-0.227459624409676,-0.37458723783493,0.919821441173553,-0.116674959659576,-0.334584712982178,0.941390812397003,-0.0428540855646133,-0.244100198149681,0.963988959789276,-0.105548322200775,-0.319007277488708,0.930057406425476,-0.18228454887867,-0.319007277488708,0.930057406425476,-0.18228454887867,-0.244100198149681,0.963988959789276,-0.105548322200775,-0.1874790340662,0.968276798725128,-0.165201604366302,-0.271250605583191,0.931824803352356,-0.24109223484993,-0.244100198149681,0.963988959789276,-0.105548322200775,-0.201865911483765,0.978740453720093,-0.0362952426075935,-0.106863118708134,0.989989578723907,-0.0922003537416458,-0.1874790340662,0.968276798725128,-0.165201604366302,-0.334584712982178,0.941390812397003,-0.0428540855646133,-0.300872832536697,0.953361213207245,0.0240407921373844,-0.201865911483765,0.978740453720093,-0.0362952426075935,-0.244100198149681,0.963988959789276,-0.105548322200775,-0.271250605583191,0.931824803352356,-0.24109223484993,-0.217481166124344,0.930603682994843,-0.294412344694138,-0.28051832318306,0.876195192337036,-0.391907215118408,-0.35922583937645,0.876357614994049,-0.320864766836166,-0.35922583937645,0.876357614994049,-0.320864766836166,-0.28051832318306,0.876195192337036,-0.391907215118408,-0.293135166168213,0.855518102645874,-0.42680287361145, +-0.389617115259171,0.852463901042938,-0.348574072122574,-0.28051832318306,0.876195192337036,-0.391907215118408,-0.172846272587776,0.879844605922699,-0.442716211080551,-0.177307933568954,0.864271700382233,-0.470740228891373,-0.293135166168213,0.855518102645874,-0.42680287361145,-0.217481166124344,0.930603682994843,-0.294412344694138,-0.157767727971077,0.921019971370697,-0.35613426566124,-0.172846272587776,0.879844605922699,-0.442716211080551,-0.28051832318306,0.876195192337036,-0.391907215118408,-0.736551225185394,-0.111963540315628,-0.667050540447235,-0.907795488834381,-0.107258103787899,-0.405466347932816,-0.907998085021973,-0.107239425182343,-0.405017554759979,-0.737172186374664,-0.111970789730549,-0.666363120079041,-0.867673575878143,-0.0180855952203274,0.496805220842361,-0.976747214794159,-0.057901743799448,0.206427380442619,-0.976671099662781,-0.0578581281006336,0.206799417734146,-0.867268979549408,-0.0179724469780922,0.497515231370926,-0.976747214794159,-0.057901743799448,0.206427380442619,-0.99059271812439,-0.0885570496320724,-0.104325637221336,-0.990585923194885,-0.0885618776082993,-0.104385480284691,-0.976671099662781,-0.0578581281006336,0.206799417734146,-0.49370077252388,-0.102401800453663,-0.863581657409668,-0.736551225185394,-0.111963540315628,-0.667050540447235,-0.737172186374664,-0.111970789730549,-0.666363120079041,-0.494724214076996,-0.102464288473129,-0.862988412380219,-0.202883094549179,-0.0793346911668777,-0.975983858108521,-0.49370077252388,-0.102401800453663,-0.863581657409668,-0.494724214076996,-0.102464288473129,-0.862988412380219,-0.204285934567451,-0.0794681012630463,-0.975680410861969,-0.673901498317719,0.0268339738249779,0.738333702087402,-0.867673575878143,-0.0180855952203274,0.496805220842361,-0.867268979549408,-0.0179724469780922,0.497515231370926,-0.673088371753693,0.0269966144114733,0.739069104194641,-0.414506375789642,0.0725951939821243,0.907146215438843,-0.673901498317719,0.0268339738249779,0.738333702087402,-0.673088371753693,0.0269966144114733,0.739069104194641,-0.413249462842941,0.0727923065423965,0.907703757286072, +0.406947106122971,-0.00313375610858202,-0.913446307182312,0.107417322695255,-0.0451948121190071,-0.993186235427856,0.106012567877769,-0.0453702434897423,-0.993329226970673,0.405681639909744,-0.00333233736455441,-0.914008319377899,0.107417322695255,-0.0451948121190071,-0.993186235427856,-0.202883094549179,-0.0793346911668777,-0.975983858108521,-0.204285934567451,-0.0794681012630463,-0.975680410861969,0.106012567877769,-0.0453702434897423,-0.993329226970673,-0.114890828728676,0.114545308053493,0.986751973628998,-0.414506375789642,0.0725951939821243,0.907146215438843,-0.413249462842941,0.0727923065423965,0.907703757286072,-0.113500528037548,0.114718772470951,0.986892700195313,0.19537378847599,0.148731663823128,0.969385325908661,-0.114890828728676,0.114545308053493,0.986751973628998,-0.113500528037548,0.114718772470951,0.986892700195313,0.196763455867767,0.148863658308983,0.969083964824677,0.859810948371887,0.0875170603394508,-0.503056287765503,0.666205525398254,0.0425374358892441,-0.744554102420807,0.66539192199707,0.0423746407032013,-0.745290577411652,0.859410285949707,0.0874049812555313,-0.503760099411011,0.666205525398254,0.0425374358892441,-0.744554102420807,0.406947106122971,-0.00313375610858202,-0.913446307182312,0.405681639909744,-0.00333233736455441,-0.914008319377899,0.66539192199707,0.0423746407032013,-0.745290577411652,0.72877448797226,0.181294307112694,0.660318195819855,0.486089438199997,0.171669438481331,0.85688191652298,0.48710635304451,0.171731442213058,0.856291830539703,0.729396283626556,0.18130150437355,0.659629225730896,0.486089438199997,0.171669438481331,0.85688191652298,0.19537378847599,0.148731663823128,0.969385325908661,0.196763455867767,0.148863658308983,0.969083964824677,0.48710635304451,0.171731442213058,0.856291830539703,0.982597589492798,0.157913386821747,0.0978024080395699,0.968783795833588,0.127207487821579,-0.212782099843025,0.968710064888,0.127165243029594,-0.213142707943916,0.982589304447174,0.157919242978096,0.0978754088282585,0.968783795833588,0.127207487821579,-0.212782099843025,0.859810948371887,0.0875170603394508,-0.503056287765503, +0.859410285949707,0.0874049812555313,-0.503760099411011,0.968710064888,0.127165243029594,-0.213142707943916,0.899882733821869,0.176504403352737,0.398820072412491,0.72877448797226,0.181294307112694,0.660318195819855,0.729396283626556,0.18130150437355,0.659629225730896,0.900088906288147,0.17648534476757,0.398362576961517,0.982597589492798,0.157913386821747,0.0978024080395699,0.982589304447174,0.157919242978096,0.0978754088282585,0.899882733821869,0.176504403352737,0.398820072412491,0.900088906288147,0.17648534476757,0.398362576961517,0.413326114416122,0.0730395466089249,-0.907649040222168,0.116118565201759,0.0367299616336823,-0.992555975914001,0.116107001900673,0.0367287173867226,-0.992557346820831,0.413317799568176,0.0730384141206741,-0.907652854919434,-0.0968438908457756,0.991799831390381,-0.0833930522203445,-0.182623997330666,0.969423830509186,-0.163908421993256,-0.209674820303917,0.968295574188232,-0.135794788599014,-0.214124754071236,0.971960544586182,-0.0971757471561432,-0.0968438908457756,0.991799831390381,-0.0833930522203445,-0.11810489743948,0.972732603549957,-0.199605911970139,-0.156324833631516,0.968725085258484,-0.192702457308769,-0.182623997330666,0.969423830509186,-0.163908421993256,-0.0968438908457756,0.991799831390381,-0.0833930522203445,-0.0452594943344593,0.980610549449921,-0.190668419003487,-0.0799996554851532,0.974942207336426,-0.207576110959053,-0.11810489743948,0.972732603549957,-0.199605911970139,-0.0968438908457756,0.991799831390381,-0.0833930522203445,0.00810385216027498,0.990038096904755,-0.140565887093544,-0.00986159965395927,0.984560966491699,-0.174763843417168,-0.0452594943344593,0.980610549449921,-0.190668419003487,-0.0968438908457756,0.991799831390381,-0.0833930522203445,-0.214124754071236,0.971960544586182,-0.0971757471561432,-0.219633683562279,0.973822236061096,-0.058576375246048,-0.200525194406509,0.979371070861816,-0.0249400082975626,-0.00974343623965979,0.999950885772705,-0.00178458436857909,0.0173945985734463,0.999406516551971,-0.0297337491065264,0.0216616243124008,0.997420132160187,-0.0684392526745796, +-0.0968438908457756,0.991799831390381,-0.0833930522203445,-0.0968438908457756,0.991799831390381,-0.0833930522203445,-0.200525194406509,0.979371070861816,-0.0249400082975626,-0.182352334260941,0.983188152313232,0.00941703654825687,-0.147042945027351,0.988810181617737,0.0251555703580379,0.0273184105753899,0.993901193141937,-0.106836408376694,0.0216616243124008,0.997420132160187,-0.0684392526745796,0.0931690633296967,0.993904531002045,-0.0589353293180466,0.0907087475061417,0.988837897777557,-0.11820126324892,-0.0968438908457756,0.991799831390381,-0.0833930522203445,-0.147042945027351,0.988810181617737,0.0251555703580379,-0.11212033778429,0.992800295352936,0.0421492606401443,-0.074164591729641,0.99666702747345,0.033977746963501,-0.0968438908457756,0.991799831390381,-0.0833930522203445,-0.074164591729641,0.99666702747345,0.033977746963501,-0.03583749756217,0.998988330364227,0.0271659083664417,-0.00974343623965979,0.999950885772705,-0.00178458436857909,0.00810385216027498,0.990038096904755,-0.140565887093544,-0.0968438908457756,0.991799831390381,-0.0833930522203445,0.0216616243124008,0.997420132160187,-0.0684392526745796,0.0273184105753899,0.993901193141937,-0.106836408376694,0.00810385216027498,0.990038096904755,-0.140565887093544,0.0273184105753899,0.993901193141937,-0.106836408376694,0.0907087475061417,0.988837897777557,-0.11820126324892,0.0715129226446152,0.982116341590881,-0.174165561795235,-0.00986159965395927,0.984560966491699,-0.174763843417168,0.00810385216027498,0.990038096904755,-0.140565887093544,0.0715129226446152,0.982116341590881,-0.174165561795235,0.0347621291875839,0.974776744842529,-0.220458596944809,-0.0452594943344593,0.980610549449921,-0.190668419003487,-0.00986159965395927,0.984560966491699,-0.174763843417168,0.0347621291875839,0.974776744842529,-0.220458596944809,-0.0137093784287572,0.967040479183197,-0.254253089427948,-0.0799996554851532,0.974942207336426,-0.207576110959053,-0.0452594943344593,0.980610549449921,-0.190668419003487,-0.0137093784287572,0.967040479183197,-0.254253089427948,-0.0708031803369522,0.960269868373871,-0.269941627979279, +-0.11810489743948,0.972732603549957,-0.199605911970139,-0.0799996554851532,0.974942207336426,-0.207576110959053,-0.0708031803369522,0.960269868373871,-0.269941627979279,-0.130133301019669,0.954415678977966,-0.268618673086166,-0.233345255255699,0.949094593524933,-0.211587950587273,-0.182623997330666,0.969423830509186,-0.163908421993256,-0.156324833631516,0.968725085258484,-0.192702457308769,-0.18583320081234,0.950866103172302,-0.247628316283226,-0.283762216567993,0.953145384788513,-0.104847051203251,-0.214124754071236,0.971960544586182,-0.0971757471561432,-0.209674820303917,0.968295574188232,-0.135794788599014,-0.266316294670105,0.950198471546173,-0.161859199404716,-0.18583320081234,0.950866103172302,-0.247628316283226,-0.156324833631516,0.968725085258484,-0.192702457308769,-0.11810489743948,0.972732603549957,-0.199605911970139,-0.130133301019669,0.954415678977966,-0.268618673086166,-0.26198872923851,0.965011715888977,0.010690851137042,-0.200525194406509,0.979371070861816,-0.0249400082975626,-0.219633683562279,0.973822236061096,-0.058576375246048,-0.281317621469498,0.958538711071014,-0.0454303920269012,-0.266316294670105,0.950198471546173,-0.161859199404716,-0.209674820303917,0.968295574188232,-0.135794788599014,-0.182623997330666,0.969423830509186,-0.163908421993256,-0.233345255255699,0.949094593524933,-0.211587950587273,-0.225086182355881,0.972669541835785,0.0570105202496052,-0.176430225372314,0.980120003223419,0.0907588675618172,-0.147042945027351,0.988810181617737,0.0251555703580379,-0.182352334260941,0.983188152313232,0.00941703654825687,-0.281317621469498,0.958538711071014,-0.0454303920269012,-0.219633683562279,0.973822236061096,-0.058576375246048,-0.214124754071236,0.971960544586182,-0.0971757471561432,-0.283762216567993,0.953145384788513,-0.104847051203251,-0.225086182355881,0.972669541835785,0.0570105202496052,-0.182352334260941,0.983188152313232,0.00941703654825687,-0.200525194406509,0.979371070861816,-0.0249400082975626,-0.26198872923851,0.965011715888977,0.010690851137042,-0.0599127076566219,0.992687106132507,0.10479848086834, +-0.074164591729641,0.99666702747345,0.033977746963501,-0.11212033778429,0.992800295352936,0.0421492606401443,-0.119253382086754,0.98716014623642,0.106270998716354,-0.03583749756217,0.998988330364227,0.0271659083664417,-0.074164591729641,0.99666702747345,0.033977746963501,-0.0599127076566219,0.992687106132507,0.10479848086834,-0.0043429764918983,0.996486127376556,0.0836451277136803,-0.119253382086754,0.98716014623642,0.106270998716354,-0.11212033778429,0.992800295352936,0.0421492606401443,-0.147042945027351,0.988810181617737,0.0251555703580379,-0.176430225372314,0.980120003223419,0.0907588675618172,-0.00974343623965979,0.999950885772705,-0.00178458436857909,-0.03583749756217,0.998988330364227,0.0271659083664417,-0.0043429764918983,0.996486127376556,0.0836451277136803,0.0430221632122993,0.997940242290497,0.0475859045982361,0.0173945985734463,0.999406516551971,-0.0297337491065264,-0.00974343623965979,0.999950885772705,-0.00178458436857909,0.0430221632122993,0.997940242290497,0.0475859045982361,0.0758000984787941,0.99712085723877,-0.00210207561030984,0.0216616243124008,0.997420132160187,-0.0684392526745796,0.0173945985734463,0.999406516551971,-0.0297337491065264,0.0758000984787941,0.99712085723877,-0.00210207561030984,0.0931690633296967,0.993904531002045,-0.0589353293180466,0.116118565201759,0.0367299616336823,-0.992555975914001,-0.193351194262505,0.00759398238733411,-0.981100261211395,-0.193363189697266,0.00759300589561462,-0.981097817420959,0.116107001900673,0.0367287173867226,-0.992557346820831,-0.484751343727112,-0.0120509630069137,-0.874568939208984,-0.193363189697266,0.00759300589561462,-0.981097817420959,-0.193351194262505,0.00759398238733411,-0.981100261211395,-0.484745442867279,-0.0120506631210446,-0.874572277069092,-0.729693174362183,-0.0197729878127575,-0.683488845825195,-0.484751343727112,-0.0120509630069137,-0.874568939208984,-0.484745442867279,-0.0120506631210446,-0.874572277069092,-0.729694426059723,-0.0197729971259832,-0.683487474918365,0.858209311962128,0.151541158556938,-0.490420341491699,0.669110596179962,0.112425930798054,-0.734609663486481, +0.669114649295807,0.112426660954952,-0.73460590839386,0.858216881752014,0.151543080806732,-0.490406572818756,0.669110596179962,0.112425930798054,-0.734609663486481,0.413326114416122,0.0730395466089249,-0.907649040222168,0.413317799568176,0.0730384141206741,-0.907652854919434,0.669114649295807,0.112426660954952,-0.73460590839386,-0.904351413249969,-0.0153388474136591,-0.426512837409973,-0.729693174362183,-0.0197729878127575,-0.683488845825195,-0.729694426059723,-0.0197729971259832,-0.683487474918365,-0.904356777667999,-0.0153384171426296,-0.426501512527466,-0.991689026355743,0.00135309295728803,-0.128650695085526,-0.904351413249969,-0.0153388474136591,-0.426512837409973,-0.904356777667999,-0.0153384171426296,-0.426501512527466,-0.991691589355469,0.00135451881214976,-0.128630757331848,0.970771431922913,0.213001474738121,0.110603831708431,0.962157607078552,0.186019524931908,-0.19912177324295,0.962161421775818,0.186021596193314,-0.199101433157921,0.970768988132477,0.213002815842628,0.110622815787792,0.962157607078552,0.186019524931908,-0.19912177324295,0.858209311962128,0.151541158556938,-0.490420341491699,0.858216881752014,0.151543080806732,-0.490406572818756,0.962161421775818,0.186021596193314,-0.199101433157921,-0.983061671257019,0.0281436629593372,0.181101024150848,-0.991689026355743,0.00135309295728803,-0.128650695085526,-0.991691589355469,0.00135451881214976,-0.128630757331848,-0.983058214187622,0.0281455833464861,0.181119740009308,-0.879146695137024,0.0629377365112305,0.47237691283226,-0.983061671257019,0.0281436629593372,0.181101024150848,-0.983058214187622,0.0281455833464861,0.181119740009308,-0.87914252281189,0.062938779592514,0.472384542226791,0.708774745464325,0.234046027064323,0.665477812290192,0.883467733860016,0.22936587035656,0.408504843711853,0.883463442325592,0.229366183280945,0.40851366519928,0.708777010440826,0.234046086668968,0.66547554731369,0.883467733860016,0.22936587035656,0.408504843711853,0.970771431922913,0.213001474738121,0.110603831708431,0.970768988132477,0.213002815842628,0.110622815787792, +0.883463442325592,0.229366183280945,0.40851366519928,-0.690019071102142,0.101797789335251,0.716596662998199,-0.879146695137024,0.0629377365112305,0.47237691283226,-0.87914252281189,0.062938779592514,0.472384542226791,-0.690021157264709,0.101797454059124,0.716594815254211,-0.434247940778732,0.141432240605354,0.889621078968048,-0.690019071102142,0.101797789335251,0.716596662998199,-0.690021157264709,0.101797454059124,0.716594815254211,-0.434261918067932,0.141430333256721,0.889614522457123,0.172420755028725,0.206763103604317,0.963078498840332,0.463846385478973,0.226085916161537,0.856581449508667,0.463861793279648,0.226086691021919,0.856572866439819,0.172444373369217,0.206764966249466,0.963073790073395,0.463846385478973,0.226085916161537,0.856581449508667,0.708774745464325,0.234046027064323,0.665477812290192,0.708777010440826,0.234046086668968,0.66547554731369,0.463861793279648,0.226086691021919,0.856572866439819,-0.137004271149635,0.177425146102905,0.974551320075989,-0.434247940778732,0.141432240605354,0.889621078968048,-0.434261918067932,0.141430333256721,0.889614522457123,-0.137030303478241,0.17742232978344,0.974548161029816,0.172420755028725,0.206763103604317,0.963078498840332,0.172444373369217,0.206764966249466,0.963073790073395,-0.137004271149635,0.177425146102905,0.974551320075989,-0.137030303478241,0.17742232978344,0.974548161029816,0.747625291347504,0.181450754404068,0.638852179050446,0.510808825492859,0.173262968659401,0.842053592205048,0.500164151191711,0.172666251659393,0.848541140556335,0.739685773849487,0.181378602981567,0.648048400878906,-0.195964202284813,0.608727276325226,0.768797218799591,-0.164916232228279,0.963235080242157,0.212086692452431,-0.23583796620369,0.939466893672943,0.248560592532158,-0.360606789588928,0.514312863349915,0.778103530406952,-0.488056629896164,0.516646444797516,0.703475058078766,-0.360606789588928,0.514312863349915,0.778103530406952,-0.23583796620369,0.939466893672943,0.248560592532158,-0.28594097495079,0.941943287849426,0.176012873649597,-0.186062574386597,0.980156540870667,0.0683648064732552, +-0.28594097495079,0.941943287849426,0.176012873649597,-0.23583796620369,0.939466893672943,0.248560592532158,-0.164916232228279,0.963235080242157,0.212086692452431,-0.697272181510925,0.509707927703857,0.503993511199951,-0.594009339809418,0.545458137989044,0.59129387140274,-0.3120376765728,0.942311942577362,0.121164403855801,-0.335128337144852,0.938011705875397,0.0884480699896812,-0.335128337144852,0.938011705875397,0.0884480699896812,-0.3120376765728,0.942311942577362,0.121164403855801,-0.198663890361786,0.980020225048065,-0.00964921806007624,-0.220971122384071,0.974068224430084,-0.0486097298562527,-0.3120376765728,0.942311942577362,0.121164403855801,-0.28594097495079,0.941943287849426,0.176012873649597,-0.186062574386597,0.980156540870667,0.0683648064732552,-0.198663890361786,0.980020225048065,-0.00964921806007624,-0.594009339809418,0.545458137989044,0.59129387140274,-0.488056629896164,0.516646444797516,0.703475058078766,-0.28594097495079,0.941943287849426,0.176012873649597,-0.3120376765728,0.942311942577362,0.121164403855801,-0.0792113170027733,0.996154308319092,0.0374448075890541,-0.121316775679588,0.992106378078461,0.0317349396646023,-0.121789783239365,0.971090376377106,0.205306634306908,-0.0734358429908752,0.973601460456848,0.216119050979614,-0.0734358429908752,0.973601460456848,0.216119050979614,-0.121789783239365,0.971090376377106,0.205306634306908,-0.0453801527619362,0.631865739822388,0.773748278617859,0.0918228253722191,0.591379523277283,0.801148355007172,-0.121789783239365,0.971090376377106,0.205306634306908,-0.164916232228279,0.963235080242157,0.212086692452431,-0.195964202284813,0.608727276325226,0.768797218799591,-0.0453801527619362,0.631865739822388,0.773748278617859,-0.121316775679588,0.992106378078461,0.0317349396646023,-0.186062574386597,0.980156540870667,0.0683648064732552,-0.164916232228279,0.963235080242157,0.212086692452431,-0.121789783239365,0.971090376377106,0.205306634306908,0.368090093135834,0.645393431186676,0.669310808181763,0.0322658456861973,0.984496891498566,0.172408953309059,0.00422738818451762,0.971269190311432,0.237945809960365, +0.255523502826691,0.574448764324188,0.777635097503662,0.0918228253722191,0.591379523277283,0.801148355007172,0.255523502826691,0.574448764324188,0.777635097503662,0.00422738818451762,0.971269190311432,0.237945809960365,-0.0734358429908752,0.973601460456848,0.216119050979614,-0.0792113170027733,0.996154308319092,0.0374448075890541,-0.0734358429908752,0.973601460456848,0.216119050979614,0.00422738818451762,0.971269190311432,0.237945809960365,0.0322658456861973,0.984496891498566,0.172408953309059,-0.220971122384071,0.974068224430084,-0.0486097298562527,-0.198663890361786,0.980020225048065,-0.00964921806007624,-0.125402450561523,0.990324378013611,-0.0594302453100681,-0.129193425178528,0.987907826900482,-0.0857160910964012,-0.129193425178528,0.987907826900482,-0.0857160910964012,-0.125402450561523,0.990324378013611,-0.0594302453100681,-0.101717472076416,0.992560923099518,-0.0669069588184357,-0.106719762086868,0.98990672826767,-0.0932505056262016,-0.125402450561523,0.990324378013611,-0.0594302453100681,-0.121316775679588,0.992106378078461,0.0317349396646023,-0.0792113170027733,0.996154308319092,0.0374448075890541,-0.101717472076416,0.992560923099518,-0.0669069588184357,-0.198663890361786,0.980020225048065,-0.00964921806007624,-0.186062574386597,0.980156540870667,0.0683648064732552,-0.121316775679588,0.992106378078461,0.0317349396646023,-0.125402450561523,0.990324378013611,-0.0594302453100681,-0.697272181510925,0.509707927703857,0.503993511199951,-0.335128337144852,0.938011705875397,0.0884480699896812,-0.39975893497467,0.913723289966583,0.0728184208273888,-0.810073375701904,0.418969988822937,0.410177230834961,-0.866000533103943,0.431205660104752,0.253189116716385,-0.810073375701904,0.418969988822937,0.410177230834961,-0.39975893497467,0.913723289966583,0.0728184208273888,-0.385908871889114,0.922463119029999,-0.0116598391905427,-0.220971122384071,0.974068224430084,-0.0486097298562527,-0.385908871889114,0.922463119029999,-0.0116598391905427,-0.39975893497467,0.913723289966583,0.0728184208273888,-0.335128337144852,0.938011705875397,0.0884480699896812, +-0.880635678768158,0.471592128276825,-0.0456244982779026,-0.874834358692169,0.474789589643478,0.0961227416992188,-0.37877756357193,0.922943472862244,-0.0685786157846451,-0.386597454547882,0.913945257663727,-0.123476728796959,-0.386597454547882,0.913945257663727,-0.123476728796959,-0.37877756357193,0.922943472862244,-0.0685786157846451,-0.218886956572533,0.971733093261719,-0.0884492322802544,-0.257245242595673,0.956354320049286,-0.138604745268822,-0.37877756357193,0.922943472862244,-0.0685786157846451,-0.385908871889114,0.922463119029999,-0.0116598391905427,-0.220971122384071,0.974068224430084,-0.0486097298562527,-0.218886956572533,0.971733093261719,-0.0884492322802544,-0.874834358692169,0.474789589643478,0.0961227416992188,-0.866000533103943,0.431205660104752,0.253189116716385,-0.385908871889114,0.922463119029999,-0.0116598391905427,-0.37877756357193,0.922943472862244,-0.0685786157846451,0.0368759892880917,0.999223113059998,0.0139050409197807,-0.0371719375252724,0.999165892601013,0.0169079434126616,0.0683281049132347,0.985704481601715,0.154006406664848,0.125320300459862,0.982566475868225,0.137323945760727,0.125320300459862,0.982566475868225,0.137323945760727,0.0683281049132347,0.985704481601715,0.154006406664848,0.472364753484726,0.66435968875885,0.579221665859222,0.601396918296814,0.620811343193054,0.502906560897827,0.0683281049132347,0.985704481601715,0.154006406664848,0.0322658456861973,0.984496891498566,0.172408953309059,0.368090093135834,0.645393431186676,0.669310808181763,0.472364753484726,0.66435968875885,0.579221665859222,-0.0371719375252724,0.999165892601013,0.0169079434126616,-0.0792113170027733,0.996154308319092,0.0374448075890541,0.0322658456861973,0.984496891498566,0.172408953309059,0.0683281049132347,0.985704481601715,0.154006406664848,0.73176121711731,0.644272327423096,0.222347944974899,0.179799720644951,0.983466267585754,0.0215930920094252,0.204344600439072,0.973563969135284,0.102060832083225,0.711689829826355,0.588897049427032,0.383011490106583,0.601396918296814,0.620811343193054,0.502906560897827, +0.711689829826355,0.588897049427032,0.383011490106583,0.204344600439072,0.973563969135284,0.102060832083225,0.125320300459862,0.982566475868225,0.137323945760727,0.0368759892880917,0.999223113059998,0.0139050409197807,0.125320300459862,0.982566475868225,0.137323945760727,0.204344600439072,0.973563969135284,0.102060832083225,0.179799720644951,0.983466267585754,0.0215930920094252,0.00853911135345697,0.995258629322052,-0.0968875214457512,0.0126280626282096,0.99809318780899,-0.0604207254946232,0.173232734203339,0.984283804893494,-0.0342900939285755,0.171364337205887,0.980524182319641,-0.0959497839212418,0.171364337205887,0.980524182319641,-0.0959497839212418,0.173232734203339,0.984283804893494,-0.0342900939285755,0.738719165325165,0.669542074203491,0.0775070339441299,0.744040548801422,0.664959132671356,-0.0650620386004448,0.173232734203339,0.984283804893494,-0.0342900939285755,0.179799720644951,0.983466267585754,0.0215930920094252,0.73176121711731,0.644272327423096,0.222347944974899,0.738719165325165,0.669542074203491,0.0775070339441299,0.0126280626282096,0.99809318780899,-0.0604207254946232,0.0368759892880917,0.999223113059998,0.0139050409197807,0.179799720644951,0.983466267585754,0.0215930920094252,0.173232734203339,0.984283804893494,-0.0342900939285755,0.00853911135345697,0.995258629322052,-0.0968875214457512,0.171364337205887,0.980524182319641,-0.0959497839212418,0.159277305006981,0.975232422351837,-0.153468012809753,0.000177038120455109,0.9923375248909,-0.123556897044182,0.000177038120455109,0.9923375248909,-0.123556897044182,0.159277305006981,0.975232422351837,-0.153468012809753,0.155520245432854,0.96789962053299,-0.197443589568138,0.00437991367653012,0.984822988510132,-0.173506081104279,0.159277305006981,0.975232422351837,-0.153468012809753,0.737858355045319,0.642758131027222,-0.20597830414772,0.730023860931396,0.590763330459595,-0.343603938817978,0.155520245432854,0.96789962053299,-0.197443589568138,0.171364337205887,0.980524182319641,-0.0959497839212418,0.744040548801422,0.664959132671356,-0.0650620386004448, +0.737858355045319,0.642758131027222,-0.20597830414772,0.159277305006981,0.975232422351837,-0.153468012809753,-0.257245242595673,0.956354320049286,-0.138604745268822,-0.218886956572533,0.971733093261719,-0.0884492322802544,-0.13129523396492,0.987066745758057,-0.0919816270470619,-0.136099487543106,0.985639810562134,-0.0999558866024017,-0.136099487543106,0.985639810562134,-0.0999558866024017,-0.13129523396492,0.987066745758057,-0.0919816270470619,-0.10671878606081,0.989906787872314,-0.093251071870327,-0.106719650328159,0.989906549453735,-0.0932526364922523,-0.13129523396492,0.987066745758057,-0.0919816270470619,-0.129193425178528,0.987907826900482,-0.0857160910964012,-0.106719762086868,0.98990672826767,-0.0932505056262016,-0.10671878606081,0.989906787872314,-0.093251071870327,-0.218886956572533,0.971733093261719,-0.0884492322802544,-0.220971122384071,0.974068224430084,-0.0486097298562527,-0.129193425178528,0.987907826900482,-0.0857160910964012,-0.13129523396492,0.987066745758057,-0.0919816270470619,-0.882110059261322,0.331427693367004,-0.334720075130463,-0.891131401062012,0.419420719146729,-0.173121586441994,-0.397766053676605,0.897063851356506,-0.192506343126297,-0.78338360786438,0.40312984585762,-0.473071306943893,-0.78338360786438,0.40312984585762,-0.473071306943893,-0.397766053676605,0.897063851356506,-0.192506343126297,-0.371048659086227,0.895206928253174,-0.246834680438042,-0.692607998847961,0.443133026361465,-0.569146037101746,-0.397766053676605,0.897063851356506,-0.192506343126297,-0.386597454547882,0.913945257663727,-0.123476728796959,-0.257245242595673,0.956354320049286,-0.138604745268822,-0.371048659086227,0.895206928253174,-0.246834680438042,-0.891131401062012,0.419420719146729,-0.173121586441994,-0.880635678768158,0.471592128276825,-0.0456244982779026,-0.386597454547882,0.913945257663727,-0.123476728796959,-0.397766053676605,0.897063851356506,-0.192506343126297,0.597647249698639,0.515088796615601,-0.614411354064941,0.124871619045734,0.941835403442383,-0.312014549970627,0.187870115041733,0.942829072475433,-0.275278210639954, +0.708906650543213,0.506205439567566,-0.491128653287888,0.730023860931396,0.590763330459595,-0.343603938817978,0.708906650543213,0.506205439567566,-0.491128653287888,0.187870115041733,0.942829072475433,-0.275278210639954,0.155520245432854,0.96789962053299,-0.197443589568138,0.00437991367653012,0.984822988510132,-0.173506081104279,0.155520245432854,0.96789962053299,-0.197443589568138,0.187870115041733,0.942829072475433,-0.275278210639954,0.124871619045734,0.941835403442383,-0.312014549970627,0.00437991367653012,0.984822988510132,-0.173506081104279,0.124871619045734,0.941835403442383,-0.312014549970627,0.0824868306517601,0.936447143554688,-0.340973109006882,-0.0180248450487852,0.975980699062347,-0.217109709978104,-0.0180248450487852,0.975980699062347,-0.217109709978104,0.0824868306517601,0.936447143554688,-0.340973109006882,0.0543354637920856,0.923723101615906,-0.379187643527985,-0.0385151542723179,0.951553344726563,-0.305061876773834,0.0824868306517601,0.936447143554688,-0.340973109006882,0.467880606651306,0.543572962284088,-0.696861684322357,0.362796157598495,0.507979452610016,-0.781239926815033,0.0543354637920856,0.923723101615906,-0.379187643527985,0.124871619045734,0.941835403442383,-0.312014549970627,0.597647249698639,0.515088796615601,-0.614411354064941,0.467880606651306,0.543572962284088,-0.696861684322357,0.0824868306517601,0.936447143554688,-0.340973109006882,-0.692607998847961,0.443133026361465,-0.569146037101746,-0.371048659086227,0.895206928253174,-0.246834680438042,-0.336745887994766,0.891629278659821,-0.302653938531876,-0.593488395214081,0.445264607667923,-0.670455813407898,-0.593488395214081,0.445264607667923,-0.670455813407898,-0.336745887994766,0.891629278659821,-0.302653938531876,-0.285145580768585,0.883533656597137,-0.371564656496048,-0.480479925870895,0.428850591182709,-0.765000879764557,-0.336745887994766,0.891629278659821,-0.302653938531876,-0.23896187543869,0.952512204647064,-0.188726589083672,-0.239119052886963,0.930712997913361,-0.276758790016174,-0.285145580768585,0.883533656597137,-0.371564656496048, +-0.371048659086227,0.895206928253174,-0.246834680438042,-0.257245242595673,0.956354320049286,-0.138604745268822,-0.23896187543869,0.952512204647064,-0.188726589083672,-0.336745887994766,0.891629278659821,-0.302653938531876,-0.239119052886963,0.930712997913361,-0.276758790016174,-0.23896187543869,0.952512204647064,-0.188726589083672,-0.141003012657166,0.981338381767273,-0.130740270018578,-0.165535897016525,0.951721131801605,-0.258504748344421,-0.165535897016525,0.951721131801605,-0.258504748344421,-0.141003012657166,0.981338381767273,-0.130740270018578,-0.112357258796692,0.985806047916412,-0.124748863279819,-0.13488307595253,0.957155704498291,-0.256240874528885,-0.141003012657166,0.981338381767273,-0.130740270018578,-0.136099487543106,0.985639810562134,-0.0999558866024017,-0.106719650328159,0.989906549453735,-0.0932526364922523,-0.112357258796692,0.985806047916412,-0.124748863279819,-0.23896187543869,0.952512204647064,-0.188726589083672,-0.257245242595673,0.956354320049286,-0.138604745268822,-0.136099487543106,0.985639810562134,-0.0999558866024017,-0.141003012657166,0.981338381767273,-0.130740270018578,-0.206340104341507,0.435525238513947,-0.876208662986755,-0.346655637025833,0.423334389925003,-0.837029159069061,-0.210372775793076,0.890852868556976,-0.402646899223328,-0.158889546990395,0.89847594499588,-0.409261703491211,-0.158889546990395,0.89847594499588,-0.409261703491211,-0.210372775793076,0.890852868556976,-0.402646899223328,-0.165535897016525,0.951721131801605,-0.258504748344421,-0.13488307595253,0.957155704498291,-0.256240874528885,-0.210372775793076,0.890852868556976,-0.402646899223328,-0.285145580768585,0.883533656597137,-0.371564656496048,-0.239119052886963,0.930712997913361,-0.276758790016174,-0.165535897016525,0.951721131801605,-0.258504748344421,-0.346655637025833,0.423334389925003,-0.837029159069061,-0.480479925870895,0.428850591182709,-0.765000879764557,-0.285145580768585,0.883533656597137,-0.371564656496048,-0.210372775793076,0.890852868556976,-0.402646899223328,0.0926564186811447,0.406753212213516,-0.908827126026154, +-0.055571049451828,0.89839780330658,-0.435652494430542,0.0201713498681784,0.895762324333191,-0.444075345993042,0.251266688108444,0.413900315761566,-0.874958038330078,0.362796157598495,0.507979452610016,-0.781239926815033,0.251266688108444,0.413900315761566,-0.874958038330078,0.0201713498681784,0.895762324333191,-0.444075345993042,0.0543354637920856,0.923723101615906,-0.379187643527985,-0.0385151542723179,0.951553344726563,-0.305061876773834,0.0543354637920856,0.923723101615906,-0.379187643527985,0.0201713498681784,0.895762324333191,-0.444075345993042,-0.055571049451828,0.89839780330658,-0.435652494430542,-0.106719762086868,0.98990672826767,-0.0932505056262016,-0.101717472076416,0.992560923099518,-0.0669069588184357,-0.0777323991060257,0.994619607925415,-0.0684799253940582,-0.0848138257861137,0.991880774497986,-0.0947578400373459,-0.0848138257861137,0.991880774497986,-0.0947578400373459,-0.0777323991060257,0.994619607925415,-0.0684799253940582,0.0126280626282096,0.99809318780899,-0.0604207254946232,0.00853911135345697,0.995258629322052,-0.0968875214457512,-0.0777323991060257,0.994619607925415,-0.0684799253940582,-0.0371719375252724,0.999165892601013,0.0169079434126616,0.0368759892880917,0.999223113059998,0.0139050409197807,0.0126280626282096,0.99809318780899,-0.0604207254946232,-0.101717472076416,0.992560923099518,-0.0669069588184357,-0.0792113170027733,0.996154308319092,0.0374448075890541,-0.0371719375252724,0.999165892601013,0.0169079434126616,-0.0777323991060257,0.994619607925415,-0.0684799253940582,-0.106719650328159,0.989906549453735,-0.0932526364922523,-0.10671878606081,0.989906787872314,-0.093251071870327,-0.0845812559127808,0.991328120231628,-0.100571818649769,-0.082715317606926,0.990592956542969,-0.109012812376022,-0.082715317606926,0.990592956542969,-0.109012812376022,-0.0845812559127808,0.991328120231628,-0.100571818649769,0.000177038120455109,0.9923375248909,-0.123556897044182,0.00437991367653012,0.984822988510132,-0.173506081104279,-0.0845812559127808,0.991328120231628,-0.100571818649769,-0.0848138257861137,0.991880774497986,-0.0947578400373459, +0.00853911135345697,0.995258629322052,-0.0968875214457512,0.000177038120455109,0.9923375248909,-0.123556897044182,-0.10671878606081,0.989906787872314,-0.093251071870327,-0.106719762086868,0.98990672826767,-0.0932505056262016,-0.0848138257861137,0.991880774497986,-0.0947578400373459,-0.0845812559127808,0.991328120231628,-0.100571818649769,-0.13488307595253,0.957155704498291,-0.256240874528885,-0.112357258796692,0.985806047916412,-0.124748863279819,-0.0879682451486588,0.985778212547302,-0.143188327550888,-0.108515024185181,0.957774519920349,-0.266256183385849,-0.108515024185181,0.957774519920349,-0.266256183385849,-0.0879682451486588,0.985778212547302,-0.143188327550888,-0.0180248450487852,0.975980699062347,-0.217109709978104,-0.0385151542723179,0.951553344726563,-0.305061876773834,-0.0879682451486588,0.985778212547302,-0.143188327550888,-0.082715317606926,0.990592956542969,-0.109012812376022,0.00437991367653012,0.984822988510132,-0.173506081104279,-0.0180248450487852,0.975980699062347,-0.217109709978104,-0.112357258796692,0.985806047916412,-0.124748863279819,-0.106719650328159,0.989906549453735,-0.0932526364922523,-0.082715317606926,0.990592956542969,-0.109012812376022,-0.0879682451486588,0.985778212547302,-0.143188327550888,-0.206340104341507,0.435525238513947,-0.876208662986755,-0.158889546990395,0.89847594499588,-0.409261703491211,-0.116645455360413,0.899822533130646,-0.420372724533081,-0.0635585561394691,0.436064600944519,-0.897668063640594,-0.0635585561394691,0.436064600944519,-0.897668063640594,-0.116645455360413,0.899822533130646,-0.420372724533081,-0.055571049451828,0.89839780330658,-0.435652494430542,0.0926564186811447,0.406753212213516,-0.908827126026154,-0.116645455360413,0.899822533130646,-0.420372724533081,-0.108515024185181,0.957774519920349,-0.266256183385849,-0.0385151542723179,0.951553344726563,-0.305061876773834,-0.055571049451828,0.89839780330658,-0.435652494430542,-0.158889546990395,0.89847594499588,-0.409261703491211,-0.13488307595253,0.957155704498291,-0.256240874528885,-0.108515024185181,0.957774519920349,-0.266256183385849, +-0.116645455360413,0.899822533130646,-0.420372724533081,-0.523073375225067,-0.0364377796649933,0.851508498191833,-0.136801242828369,0.0539739541709423,0.989127039909363,-0.242692440748215,-0.101825885474682,0.964744567871094,-0.541305601596832,-0.190026432275772,0.819071531295776,-0.260681390762329,-0.749897003173828,0.608029305934906,-0.541305601596832,-0.190026432275772,0.819071531295776,-0.242692440748215,-0.101825885474682,0.964744567871094,-0.130295857787132,-0.0680427774786949,0.989137649536133,-0.0449376255273819,0.08904979377985,0.995012938976288,-0.130295857787132,-0.0680427774786949,0.989137649536133,-0.242692440748215,-0.101825885474682,0.964744567871094,-0.136801242828369,0.0539739541709423,0.989127039909363,-0.932422041893005,-0.073934443295002,0.353727251291275,-0.768364191055298,-0.045069795101881,0.638423979282379,-0.718804597854614,-0.222130000591278,0.658770203590393,-0.884072601795197,-0.291307955980301,0.36545205116272,-0.884072601795197,-0.291307955980301,0.36545205116272,-0.718804597854614,-0.222130000591278,0.658770203590393,-0.418721199035645,-0.760615229606628,0.496122121810913,-0.51872980594635,-0.810997784137726,0.270558655261993,-0.718804597854614,-0.222130000591278,0.658770203590393,-0.541305601596832,-0.190026432275772,0.819071531295776,-0.260681390762329,-0.749897003173828,0.608029305934906,-0.418721199035645,-0.760615229606628,0.496122121810913,-0.768364191055298,-0.045069795101881,0.638423979282379,-0.523073375225067,-0.0364377796649933,0.851508498191833,-0.541305601596832,-0.190026432275772,0.819071531295776,-0.718804597854614,-0.222130000591278,0.658770203590393,-0.932422041893005,-0.073934443295002,0.353727251291275,-0.884072601795197,-0.291307955980301,0.36545205116272,-0.944085001945496,-0.328169196844101,0.031757727265358,-0.993479907512665,-0.113183043897152,0.013683863915503,-0.993479907512665,-0.113183043897152,0.013683863915503,-0.944085001945496,-0.328169196844101,0.031757727265358,-0.886550188064575,-0.354234576225281,-0.297567903995514,-0.934509992599487,-0.138721168041229,-0.327791810035706, +-0.944085001945496,-0.328169196844101,0.031757727265358,-0.585919737815857,-0.808386623859406,0.0566502287983894,-0.501961767673492,-0.849678039550781,-0.161497801542282,-0.886550188064575,-0.354234576225281,-0.297567903995514,-0.884072601795197,-0.291307955980301,0.36545205116272,-0.51872980594635,-0.810997784137726,0.270558655261993,-0.585919737815857,-0.808386623859406,0.0566502287983894,-0.944085001945496,-0.328169196844101,0.031757727265358,-0.51872980594635,-0.810997784137726,0.270558655261993,-0.418721199035645,-0.760615229606628,0.496122121810913,-0.218306958675385,-0.921591401100159,0.320954024791718,-0.250018268823624,-0.935358047485352,0.250192314386368,-0.250018268823624,-0.935358047485352,0.250192314386368,-0.218306958675385,-0.921591401100159,0.320954024791718,-0.395717710256577,-0.83382773399353,0.384888142347336,-0.477069050073624,-0.816279649734497,0.32571879029274,-0.218306958675385,-0.921591401100159,0.320954024791718,-0.173049509525299,-0.909850478172302,0.377128601074219,-0.347298294305801,-0.823477029800415,0.448630660772324,-0.395717710256577,-0.83382773399353,0.384888142347336,-0.418721199035645,-0.760615229606628,0.496122121810913,-0.260681390762329,-0.749897003173828,0.608029305934906,-0.173049509525299,-0.909850478172302,0.377128601074219,-0.218306958675385,-0.921591401100159,0.320954024791718,-0.934509992599487,-0.138721168041229,-0.327791810035706,-0.886550188064575,-0.354234576225281,-0.297567903995514,-0.722541093826294,-0.353799849748611,-0.59393584728241,-0.762864172458649,-0.147506728768349,-0.629507720470428,-0.762864172458649,-0.147506728768349,-0.629507720470428,-0.722541093826294,-0.353799849748611,-0.59393584728241,-0.468315482139587,-0.332645654678345,-0.818552136421204,-0.499271541833878,-0.138524383306503,-0.855300486087799,-0.722541093826294,-0.353799849748611,-0.59393584728241,-0.418609797954559,-0.831982731819153,-0.364102721214294,-0.254510968923569,-0.82706493139267,-0.501186490058899,-0.468315482139587,-0.332645654678345,-0.818552136421204,-0.886550188064575,-0.354234576225281,-0.297567903995514, +-0.501961767673492,-0.849678039550781,-0.161497801542282,-0.418609797954559,-0.831982731819153,-0.364102721214294,-0.722541093826294,-0.353799849748611,-0.59393584728241,-0.281380027532578,-0.666499197483063,0.690365195274353,-0.305134415626526,-0.788690865039825,0.533722519874573,-0.118533335626125,-0.887158930301666,0.445980757474899,-0.132488489151001,-0.75963294506073,0.636713922023773,-0.132488489151001,-0.75963294506073,0.636713922023773,-0.118533335626125,-0.887158930301666,0.445980757474899,-0.0723855048418045,-0.894047379493713,0.442085593938828,-0.113953426480293,-0.730108439922333,0.673762857913971,-0.118533335626125,-0.887158930301666,0.445980757474899,-0.173049509525299,-0.909850478172302,0.377128601074219,-0.260681390762329,-0.749897003173828,0.608029305934906,-0.0723855048418045,-0.894047379493713,0.442085593938828,-0.305134415626526,-0.788690865039825,0.533722519874573,-0.347298294305801,-0.823477029800415,0.448630660772324,-0.173049509525299,-0.909850478172302,0.377128601074219,-0.118533335626125,-0.887158930301666,0.445980757474899,-0.50081330537796,0.107972986996174,0.858794391155243,-0.414098918437958,-0.356571972370148,0.837483465671539,-0.282893180847168,-0.376980543136597,0.8819620013237,-0.371464550495148,0.139413014054298,0.917920529842377,-0.371464550495148,0.139413014054298,0.917920529842377,-0.282893180847168,-0.376980543136597,0.8819620013237,-0.248861894011497,-0.372502207756042,0.894041359424591,-0.319898366928101,0.155496597290039,0.934604704380035,-0.282893180847168,-0.376980543136597,0.8819620013237,-0.132488489151001,-0.75963294506073,0.636713922023773,-0.113953426480293,-0.730108439922333,0.673762857913971,-0.248861894011497,-0.372502207756042,0.894041359424591,-0.414098918437958,-0.356571972370148,0.837483465671539,-0.281380027532578,-0.666499197483063,0.690365195274353,-0.132488489151001,-0.75963294506073,0.636713922023773,-0.282893180847168,-0.376980543136597,0.8819620013237,-0.371464550495148,0.139413014054298,0.917920529842377,-0.319898366928101,0.155496597290039,0.934604704380035, +-0.195964202284813,0.608727276325226,0.768797218799591,-0.360606789588928,0.514312863349915,0.778103530406952,-0.642990708351135,0.0825930163264275,0.761407434940338,-0.50081330537796,0.107972986996174,0.858794391155243,-0.488056629896164,0.516646444797516,0.703475058078766,-0.594009339809418,0.545458137989044,0.59129387140274,-0.765482306480408,0.0573067702353001,0.640899896621704,-0.642990708351135,0.0825930163264275,0.761407434940338,-0.594009339809418,0.545458137989044,0.59129387140274,-0.697272181510925,0.509707927703857,0.503993511199951,-0.938689887523651,0.00889022834599018,0.344647794961929,-0.864990055561066,0.0323596559464931,0.5007444024086,-0.810073375701904,0.418969988822937,0.410177230834961,-0.866000533103943,0.431205660104752,0.253189116716385,-0.281380027532578,-0.666499197483063,0.690365195274353,-0.414098918437958,-0.356571972370148,0.837483465671539,-0.542339205741882,-0.420045733451843,0.727619349956512,-0.305134415626526,-0.788690865039825,0.533722519874573,-0.305134415626526,-0.788690865039825,0.533722519874573,-0.542339205741882,-0.420045733451843,0.727619349956512,-0.629576861858368,-0.475825518369675,0.61418491601944,-0.347298294305801,-0.823477029800415,0.448630660772324,-0.542339205741882,-0.420045733451843,0.727619349956512,-0.642990708351135,0.0825930163264275,0.761407434940338,-0.765482306480408,0.0573067702353001,0.640899896621704,-0.629576861858368,-0.475825518369675,0.61418491601944,-0.414098918437958,-0.356571972370148,0.837483465671539,-0.50081330537796,0.107972986996174,0.858794391155243,-0.642990708351135,0.0825930163264275,0.761407434940338,-0.542339205741882,-0.420045733451843,0.727619349956512,-0.864990055561066,0.0323596559464931,0.5007444024086,-0.765482306480408,0.0573067702353001,0.640899896621704,-0.697272181510925,0.509707927703857,0.503993511199951,-0.810073375701904,0.418969988822937,0.410177230834961,-0.98400205373764,-0.0119350031018257,0.177757278084755,-0.938689887523651,0.00889022834599018,0.344647794961929,-0.866000533103943,0.431205660104752,0.253189116716385, +-0.874834358692169,0.474789589643478,0.0961227416992188,-0.347298294305801,-0.823477029800415,0.448630660772324,-0.629576861858368,-0.475825518369675,0.61418491601944,-0.708089232444763,-0.502128303050995,0.496464252471924,-0.395717710256577,-0.83382773399353,0.384888142347336,-0.395717710256577,-0.83382773399353,0.384888142347336,-0.708089232444763,-0.502128303050995,0.496464252471924,-0.782279431819916,-0.503051102161407,0.367394089698792,-0.477069050073624,-0.816279649734497,0.32571879029274,-0.708089232444763,-0.502128303050995,0.496464252471924,-0.864990055561066,0.0323596559464931,0.5007444024086,-0.938689887523651,0.00889022834599018,0.344647794961929,-0.782279431819916,-0.503051102161407,0.367394089698792,-0.629576861858368,-0.475825518369675,0.61418491601944,-0.765482306480408,0.0573067702353001,0.640899896621704,-0.864990055561066,0.0323596559464931,0.5007444024086,-0.708089232444763,-0.502128303050995,0.496464252471924,-0.999539375305176,-0.029794055968523,0.00578389596194029,-0.98400205373764,-0.0119350031018257,0.177757278084755,-0.874834358692169,0.474789589643478,0.0961227416992188,-0.880635678768158,0.471592128276825,-0.0456244982779026,-0.939836859703064,-0.076336607336998,-0.332985699176788,-0.986880302429199,-0.054327342659235,-0.152038976550102,-0.891131401062012,0.419420719146729,-0.173121586441994,-0.882110059261322,0.331427693367004,-0.334720075130463,-0.477069050073624,-0.816279649734497,0.32571879029274,-0.782279431819916,-0.503051102161407,0.367394089698792,-0.834799349308014,-0.510234117507935,0.206811651587486,-0.554673552513123,-0.809455573558807,0.192662790417671,-0.554673552513123,-0.809455573558807,0.192662790417671,-0.834799349308014,-0.510234117507935,0.206811651587486,-0.837612926959991,-0.544508397579193,0.0437610559165478,-0.506810188293457,-0.859694182872772,0.0637900456786156,-0.834799349308014,-0.510234117507935,0.206811651587486,-0.98400205373764,-0.0119350031018257,0.177757278084755,-0.999539375305176,-0.029794055968523,0.00578389596194029,-0.837612926959991,-0.544508397579193,0.0437610559165478, +-0.782279431819916,-0.503051102161407,0.367394089698792,-0.938689887523651,0.00889022834599018,0.344647794961929,-0.98400205373764,-0.0119350031018257,0.177757278084755,-0.834799349308014,-0.510234117507935,0.206811651587486,-0.477069050073624,-0.816279649734497,0.32571879029274,-0.554673552513123,-0.809455573558807,0.192662790417671,-0.2821144759655,-0.943650722503662,0.173016548156738,-0.250018268823624,-0.935358047485352,0.250192314386368,-0.51872980594635,-0.810997784137726,0.270558655261993,-0.250018268823624,-0.935358047485352,0.250192314386368,-0.2821144759655,-0.943650722503662,0.173016548156738,-0.28573814034462,-0.952034294605255,0.109473675489426,-0.506810188293457,-0.859694182872772,0.0637900456786156,-0.28573814034462,-0.952034294605255,0.109473675489426,-0.2821144759655,-0.943650722503662,0.173016548156738,-0.554673552513123,-0.809455573558807,0.192662790417671,-0.501961767673492,-0.849678039550781,-0.161497801542282,-0.585919737815857,-0.808386623859406,0.0566502287983894,-0.290756821632385,-0.955450475215912,0.0507433526217937,-0.271745055913925,-0.962300062179565,-0.0115427216514945,-0.271745055913925,-0.962300062179565,-0.0115427216514945,-0.290756821632385,-0.955450475215912,0.0507433526217937,-0.482147216796875,-0.876083254814148,-0.00348536018282175,-0.504096865653992,-0.858626782894135,-0.0929857566952705,-0.290756821632385,-0.955450475215912,0.0507433526217937,-0.28573814034462,-0.952034294605255,0.109473675489426,-0.506810188293457,-0.859694182872772,0.0637900456786156,-0.482147216796875,-0.876083254814148,-0.00348536018282175,-0.585919737815857,-0.808386623859406,0.0566502287983894,-0.51872980594635,-0.810997784137726,0.270558655261993,-0.28573814034462,-0.952034294605255,0.109473675489426,-0.290756821632385,-0.955450475215912,0.0507433526217937,-0.986880302429199,-0.054327342659235,-0.152038976550102,-0.999539375305176,-0.029794055968523,0.00578389596194029,-0.880635678768158,0.471592128276825,-0.0456244982779026,-0.891131401062012,0.419420719146729,-0.173121586441994,-0.86079353094101,-0.0730983018875122,-0.503677725791931, +-0.939836859703064,-0.076336607336998,-0.332985699176788,-0.882110059261322,0.331427693367004,-0.334720075130463,-0.78338360786438,0.40312984585762,-0.473071306943893,-0.506810188293457,-0.859694182872772,0.0637900456786156,-0.837612926959991,-0.544508397579193,0.0437610559165478,-0.817305266857147,-0.568070828914642,-0.0964762568473816,-0.482147216796875,-0.876083254814148,-0.00348536018282175,-0.482147216796875,-0.876083254814148,-0.00348536018282175,-0.817305266857147,-0.568070828914642,-0.0964762568473816,-0.791575789451599,-0.561492085456848,-0.241110816597939,-0.504096865653992,-0.858626782894135,-0.0929857566952705,-0.817305266857147,-0.568070828914642,-0.0964762568473816,-0.986880302429199,-0.054327342659235,-0.152038976550102,-0.939836859703064,-0.076336607336998,-0.332985699176788,-0.791575789451599,-0.561492085456848,-0.241110816597939,-0.837612926959991,-0.544508397579193,0.0437610559165478,-0.999539375305176,-0.029794055968523,0.00578389596194029,-0.986880302429199,-0.054327342659235,-0.152038976550102,-0.817305266857147,-0.568070828914642,-0.0964762568473816,-0.769748151302338,-0.064054474234581,-0.635125815868378,-0.86079353094101,-0.0730983018875122,-0.503677725791931,-0.78338360786438,0.40312984585762,-0.473071306943893,-0.692607998847961,0.443133026361465,-0.569146037101746,-0.507100701332092,-0.0555375404655933,-0.860095620155334,-0.648321747779846,-0.0620093457400799,-0.758837103843689,-0.593488395214081,0.445264607667923,-0.670455813407898,-0.480479925870895,0.428850591182709,-0.765000879764557,-0.504096865653992,-0.858626782894135,-0.0929857566952705,-0.480376571416855,-0.842303156852722,-0.24446576833725,-0.246880203485489,-0.96469521522522,-0.0917244032025337,-0.271745055913925,-0.962300062179565,-0.0115427216514945,-0.501961767673492,-0.849678039550781,-0.161497801542282,-0.271745055913925,-0.962300062179565,-0.0115427216514945,-0.246880203485489,-0.96469521522522,-0.0917244032025337,-0.208818987011909,-0.96740460395813,-0.143258288502693,-0.357894241809845,-0.878893494606018,-0.315369606018066, +-0.208818987011909,-0.96740460395813,-0.143258288502693,-0.246880203485489,-0.96469521522522,-0.0917244032025337,-0.480376571416855,-0.842303156852722,-0.24446576833725,-0.504096865653992,-0.858626782894135,-0.0929857566952705,-0.791575789451599,-0.561492085456848,-0.241110816597939,-0.730017840862274,-0.555347204208374,-0.398325681686401,-0.480376571416855,-0.842303156852722,-0.24446576833725,-0.480376571416855,-0.842303156852722,-0.24446576833725,-0.730017840862274,-0.555347204208374,-0.398325681686401,-0.626306176185608,-0.574292778968811,-0.527189135551453,-0.357894241809845,-0.878893494606018,-0.315369606018066,-0.730017840862274,-0.555347204208374,-0.398325681686401,-0.86079353094101,-0.0730983018875122,-0.503677725791931,-0.769748151302338,-0.064054474234581,-0.635125815868378,-0.626306176185608,-0.574292778968811,-0.527189135551453,-0.791575789451599,-0.561492085456848,-0.241110816597939,-0.939836859703064,-0.076336607336998,-0.332985699176788,-0.86079353094101,-0.0730983018875122,-0.503677725791931,-0.730017840862274,-0.555347204208374,-0.398325681686401,-0.254510968923569,-0.82706493139267,-0.501186490058899,-0.418609797954559,-0.831982731819153,-0.364102721214294,-0.179274290800095,-0.963176667690277,-0.200378581881523,-0.105130650103092,-0.959527969360352,-0.261253923177719,-0.105130650103092,-0.959527969360352,-0.261253923177719,-0.179274290800095,-0.963176667690277,-0.200378581881523,-0.279224008321762,-0.894012868404388,-0.350392550230026,-0.194939434528351,-0.892409920692444,-0.406943589448929,-0.179274290800095,-0.963176667690277,-0.200378581881523,-0.208818987011909,-0.96740460395813,-0.143258288502693,-0.357894241809845,-0.878893494606018,-0.315369606018066,-0.279224008321762,-0.894012868404388,-0.350392550230026,-0.418609797954559,-0.831982731819153,-0.364102721214294,-0.501961767673492,-0.849678039550781,-0.161497801542282,-0.208818987011909,-0.96740460395813,-0.143258288502693,-0.179274290800095,-0.963176667690277,-0.200378581881523,-0.648321747779846,-0.0620093457400799,-0.758837103843689,-0.769748151302338,-0.064054474234581,-0.635125815868378, +-0.692607998847961,0.443133026361465,-0.569146037101746,-0.593488395214081,0.445264607667923,-0.670455813407898,-0.350750654935837,-0.0444538369774818,-0.935413181781769,-0.507100701332092,-0.0555375404655933,-0.860095620155334,-0.480479925870895,0.428850591182709,-0.765000879764557,-0.346655637025833,0.423334389925003,-0.837029159069061,-0.357894241809845,-0.878893494606018,-0.315369606018066,-0.626306176185608,-0.574292778968811,-0.527189135551453,-0.515078127384186,-0.588845372200012,-0.622860968112946,-0.279224008321762,-0.894012868404388,-0.350392550230026,-0.279224008321762,-0.894012868404388,-0.350392550230026,-0.515078127384186,-0.588845372200012,-0.622860968112946,-0.390433430671692,-0.586349427700043,-0.709757745265961,-0.194939434528351,-0.892409920692444,-0.406943589448929,-0.515078127384186,-0.588845372200012,-0.622860968112946,-0.648321747779846,-0.0620093457400799,-0.758837103843689,-0.507100701332092,-0.0555375404655933,-0.860095620155334,-0.390433430671692,-0.586349427700043,-0.709757745265961,-0.626306176185608,-0.574292778968811,-0.527189135551453,-0.769748151302338,-0.064054474234581,-0.635125815868378,-0.648321747779846,-0.0620093457400799,-0.758837103843689,-0.515078127384186,-0.588845372200012,-0.622860968112946,-0.184516087174416,-0.0295257326215506,-0.9823859333992,-0.350750654935837,-0.0444538369774818,-0.935413181781769,-0.346655637025833,0.423334389925003,-0.837029159069061,-0.206340104341507,0.435525238513947,-0.876208662986755,0.159362897276878,0.00921255443245173,-0.987177014350891,-0.0129112601280212,-0.0116301830857992,-0.999849021434784,-0.0635585561394691,0.436064600944519,-0.897668063640594,0.0926564186811447,0.406753212213516,-0.908827126026154,-0.194939434528351,-0.892409920692444,-0.406943589448929,-0.390433430671692,-0.586349427700043,-0.709757745265961,-0.255074769258499,-0.574078917503357,-0.778055429458618,-0.105302423238754,-0.884686768054962,-0.454137414693832,-0.105302423238754,-0.884686768054962,-0.454137414693832,-0.255074769258499,-0.574078917503357,-0.778055429458618, +-0.119455277919769,-0.545478641986847,-0.829568266868591,-0.0383022725582123,-0.861690044403076,-0.505987405776978,-0.255074769258499,-0.574078917503357,-0.778055429458618,-0.350750654935837,-0.0444538369774818,-0.935413181781769,-0.184516087174416,-0.0295257326215506,-0.9823859333992,-0.119455277919769,-0.545478641986847,-0.829568266868591,-0.390433430671692,-0.586349427700043,-0.709757745265961,-0.507100701332092,-0.0555375404655933,-0.860095620155334,-0.350750654935837,-0.0444538369774818,-0.935413181781769,-0.255074769258499,-0.574078917503357,-0.778055429458618,-0.0129112601280212,-0.0116301830857992,-0.999849021434784,-0.184516087174416,-0.0295257326215506,-0.9823859333992,-0.206340104341507,0.435525238513947,-0.876208662986755,-0.0635585561394691,0.436064600944519,-0.897668063640594,0.326463460922241,0.0326916165649891,-0.944644391536713,0.159362897276878,0.00921255443245173,-0.987177014350891,0.0926564186811447,0.406753212213516,-0.908827126026154,0.251266688108444,0.413900315761566,-0.874958038330078,-0.254510968923569,-0.82706493139267,-0.501186490058899,-0.105130650103092,-0.959527969360352,-0.261253923177719,-0.0163290817290545,-0.954587340354919,-0.297483533620834,-0.0561435334384441,-0.81227570772171,-0.580565333366394,-0.0561435334384441,-0.81227570772171,-0.580565333366394,-0.0163290817290545,-0.954587340354919,-0.297483533620834,0.0482111796736717,-0.953867793083191,-0.296330749988556,0.162867695093155,-0.81348580121994,-0.558314502239227,-0.0163290817290545,-0.954587340354919,-0.297483533620834,-0.105302423238754,-0.884686768054962,-0.454137414693832,-0.0383022725582123,-0.861690044403076,-0.505987405776978,0.0482111796736717,-0.953867793083191,-0.296330749988556,-0.105130650103092,-0.959527969360352,-0.261253923177719,-0.194939434528351,-0.892409920692444,-0.406943589448929,-0.105302423238754,-0.884686768054962,-0.454137414693832,-0.0163290817290545,-0.954587340354919,-0.297483533620834,-0.0383022725582123,-0.861690044403076,-0.505987405776978,-0.119455277919769,-0.545478641986847,-0.829568266868591, +0.0414473339915276,-0.511232793331146,-0.858442306518555,0.0795723274350166,-0.811856031417847,-0.578409969806671,0.0795723274350166,-0.811856031417847,-0.578409969806671,0.0414473339915276,-0.511232793331146,-0.858442306518555,0.209518030285835,-0.504191517829895,-0.837790668010712,0.225367024540901,-0.81905072927475,-0.527603685855865,0.0414473339915276,-0.511232793331146,-0.858442306518555,-0.0129112601280212,-0.0116301830857992,-0.999849021434784,0.159362897276878,0.00921255443245173,-0.987177014350891,0.209518030285835,-0.504191517829895,-0.837790668010712,-0.119455277919769,-0.545478641986847,-0.829568266868591,-0.184516087174416,-0.0295257326215506,-0.9823859333992,-0.0129112601280212,-0.0116301830857992,-0.999849021434784,0.0414473339915276,-0.511232793331146,-0.858442306518555,0.482875168323517,0.0576335340738297,-0.873790621757507,0.326463460922241,0.0326916165649891,-0.944644391536713,0.251266688108444,0.413900315761566,-0.874958038330078,0.362796157598495,0.507979452610016,-0.781239926815033,0.747105717658997,0.108261547982693,-0.65582948923111,0.624432325363159,0.0829072296619415,-0.776666402816772,0.467880606651306,0.543572962284088,-0.696861684322357,0.597647249698639,0.515088796615601,-0.614411354064941,-0.499271541833878,-0.138524383306503,-0.855300486087799,-0.468315482139587,-0.332645654678345,-0.818552136421204,-0.149274960160255,-0.320336252450943,-0.935468673706055,-0.175549536943436,-0.112846024334431,-0.977981567382813,-0.175549536943436,-0.112846024334431,-0.977981567382813,-0.149274960160255,-0.320336252450943,-0.935468673706055,0.188952773809433,-0.291252762079239,-0.937799870967865,0.169541448354721,-0.0735349878668785,-0.982775747776031,-0.149274960160255,-0.320336252450943,-0.935468673706055,-0.0561435334384441,-0.81227570772171,-0.580565333366394,0.162867695093155,-0.81348580121994,-0.558314502239227,0.188952773809433,-0.291252762079239,-0.937799870967865,-0.468315482139587,-0.332645654678345,-0.818552136421204,-0.254510968923569,-0.82706493139267,-0.501186490058899,-0.0561435334384441,-0.81227570772171,-0.580565333366394, +-0.149274960160255,-0.320336252450943,-0.935468673706055,0.759297847747803,0.0259118527173996,-0.650227248668671,0.494197010993958,-0.0253498535603285,-0.868980169296265,0.509840667247772,-0.235357686877251,-0.827447414398193,0.765135049819946,-0.184830576181412,-0.616770625114441,0.765135049819946,-0.184830576181412,-0.616770625114441,0.509840667247772,-0.235357686877251,-0.827447414398193,0.402530163526535,-0.757841348648071,-0.513464748859406,0.551145255565643,-0.767867863178253,-0.32652360200882,0.509840667247772,-0.235357686877251,-0.827447414398193,0.188952773809433,-0.291252762079239,-0.937799870967865,0.162867695093155,-0.81348580121994,-0.558314502239227,0.402530163526535,-0.757841348648071,-0.513464748859406,0.494197010993958,-0.0253498535603285,-0.868980169296265,0.169541448354721,-0.0735349878668785,-0.982775747776031,0.188952773809433,-0.291252762079239,-0.937799870967865,0.509840667247772,-0.235357686877251,-0.827447414398193,-0.0383022725582123,-0.861690044403076,-0.505987405776978,0.0795723274350166,-0.811856031417847,-0.578409969806671,0.111521735787392,-0.945804476737976,-0.304986327886581,0.0482111796736717,-0.953867793083191,-0.296330749988556,0.162867695093155,-0.81348580121994,-0.558314502239227,0.0482111796736717,-0.953867793083191,-0.296330749988556,0.111521735787392,-0.945804476737976,-0.304986327886581,0.193569287657738,-0.937784612178802,-0.288254827260971,0.225367024540901,-0.81905072927475,-0.527603685855865,0.193569287657738,-0.937784612178802,-0.288254827260971,0.111521735787392,-0.945804476737976,-0.304986327886581,0.0795723274350166,-0.811856031417847,-0.578409969806671,0.225367024540901,-0.81905072927475,-0.527603685855865,0.209518030285835,-0.504191517829895,-0.837790668010712,0.350755780935287,-0.50347226858139,-0.789611399173737,0.299089521169662,-0.836786389350891,-0.458621919155121,0.299089521169662,-0.836786389350891,-0.458621919155121,0.350755780935287,-0.50347226858139,-0.789611399173737,0.481773376464844,-0.477169126272202,-0.734985888004303,0.371195942163467,-0.826523542404175,-0.423169553279877, +0.350755780935287,-0.50347226858139,-0.789611399173737,0.326463460922241,0.0326916165649891,-0.944644391536713,0.482875168323517,0.0576335340738297,-0.873790621757507,0.481773376464844,-0.477169126272202,-0.734985888004303,0.209518030285835,-0.504191517829895,-0.837790668010712,0.159362897276878,0.00921255443245173,-0.987177014350891,0.326463460922241,0.0326916165649891,-0.944644391536713,0.350755780935287,-0.50347226858139,-0.789611399173737,0.162867695093155,-0.81348580121994,-0.558314502239227,0.193569287657738,-0.937784612178802,-0.288254827260971,0.266149938106537,-0.925383627414703,-0.269869148731232,0.402530163526535,-0.757841348648071,-0.513464748859406,0.402530163526535,-0.757841348648071,-0.513464748859406,0.266149938106537,-0.925383627414703,-0.269869148731232,0.330713212490082,-0.917412102222443,-0.221322745084763,0.551145255565643,-0.767867863178253,-0.32652360200882,0.266149938106537,-0.925383627414703,-0.269869148731232,0.299089521169662,-0.836786389350891,-0.458621919155121,0.371195942163467,-0.826523542404175,-0.423169553279877,0.330713212490082,-0.917412102222443,-0.221322745084763,0.193569287657738,-0.937784612178802,-0.288254827260971,0.225367024540901,-0.81905072927475,-0.527603685855865,0.299089521169662,-0.836786389350891,-0.458621919155121,0.266149938106537,-0.925383627414703,-0.269869148731232,0.624432325363159,0.0829072296619415,-0.776666402816772,0.482875168323517,0.0576335340738297,-0.873790621757507,0.362796157598495,0.507979452610016,-0.781239926815033,0.467880606651306,0.543572962284088,-0.696861684322357,0.846620440483093,0.133222281932831,-0.515253067016602,0.747105717658997,0.108261547982693,-0.65582948923111,0.597647249698639,0.515088796615601,-0.614411354064941,0.708906650543213,0.506205439567566,-0.491128653287888,0.371195942163467,-0.826523542404175,-0.423169553279877,0.481773376464844,-0.477169126272202,-0.734985888004303,0.610284268856049,-0.421149104833603,-0.67095947265625,0.463260591030121,-0.791768968105316,-0.398109763860703,0.463260591030121,-0.791768968105316,-0.398109763860703, +0.610284268856049,-0.421149104833603,-0.67095947265625,0.743065059185028,-0.357362866401672,-0.56581449508667,0.622755527496338,-0.669184267520905,-0.405423283576965,0.610284268856049,-0.421149104833603,-0.67095947265625,0.624432325363159,0.0829072296619415,-0.776666402816772,0.747105717658997,0.108261547982693,-0.65582948923111,0.743065059185028,-0.357362866401672,-0.56581449508667,0.481773376464844,-0.477169126272202,-0.734985888004303,0.482875168323517,0.0576335340738297,-0.873790621757507,0.624432325363159,0.0829072296619415,-0.776666402816772,0.610284268856049,-0.421149104833603,-0.67095947265625,0.919818997383118,0.156583085656166,-0.359742492437363,0.846620440483093,0.133222281932831,-0.515253067016602,0.708906650543213,0.506205439567566,-0.491128653287888,0.730023860931396,0.590763330459595,-0.343603938817978,0.980539739131927,0.195156782865524,-0.0213438533246517,0.964931428432465,0.177274286746979,-0.193600684404373,0.737858355045319,0.642758131027222,-0.20597830414772,0.744040548801422,0.664959132671356,-0.0650620386004448,0.551145255565643,-0.767867863178253,-0.32652360200882,0.330713212490082,-0.917412102222443,-0.221322745084763,0.401037037372589,-0.899380505084991,-0.174023196101189,0.437856912612915,-0.893919706344604,-0.0958582013845444,0.437856912612915,-0.893919706344604,-0.0958582013845444,0.401037037372589,-0.899380505084991,-0.174023196101189,0.610059678554535,-0.759268522262573,-0.226580008864403,0.624588310718536,-0.77059930562973,-0.126752957701683,0.401037037372589,-0.899380505084991,-0.174023196101189,0.463260591030121,-0.791768968105316,-0.398109763860703,0.622755527496338,-0.669184267520905,-0.405423283576965,0.610059678554535,-0.759268522262573,-0.226580008864403,0.330713212490082,-0.917412102222443,-0.221322745084763,0.371195942163467,-0.826523542404175,-0.423169553279877,0.463260591030121,-0.791768968105316,-0.398109763860703,0.401037037372589,-0.899380505084991,-0.174023196101189,0.622755527496338,-0.669184267520905,-0.405423283576965,0.743065059185028,-0.357362866401672,-0.56581449508667, +0.83328902721405,-0.370909988880157,-0.409945368766785,0.610059678554535,-0.759268522262573,-0.226580008864403,0.610059678554535,-0.759268522262573,-0.226580008864403,0.83328902721405,-0.370909988880157,-0.409945368766785,0.883119404315948,-0.387038350105286,-0.265143901109695,0.624588310718536,-0.77059930562973,-0.126752957701683,0.83328902721405,-0.370909988880157,-0.409945368766785,0.846620440483093,0.133222281932831,-0.515253067016602,0.919818997383118,0.156583085656166,-0.359742492437363,0.883119404315948,-0.387038350105286,-0.265143901109695,0.743065059185028,-0.357362866401672,-0.56581449508667,0.747105717658997,0.108261547982693,-0.65582948923111,0.846620440483093,0.133222281932831,-0.515253067016602,0.83328902721405,-0.370909988880157,-0.409945368766785,0.964931428432465,0.177274286746979,-0.193600684404373,0.919818997383118,0.156583085656166,-0.359742492437363,0.730023860931396,0.590763330459595,-0.343603938817978,0.737858355045319,0.642758131027222,-0.20597830414772,0.965935707092285,0.210000723600388,0.151221811771393,0.980539739131927,0.195156782865524,-0.0213438533246517,0.744040548801422,0.664959132671356,-0.0650620386004448,0.738719165325165,0.669542074203491,0.0775070339441299,0.624588310718536,-0.77059930562973,-0.126752957701683,0.883119404315948,-0.387038350105286,-0.265143901109695,0.918028116226196,-0.376190066337585,-0.125321239233017,0.648355901241302,-0.759698510169983,-0.0499281100928783,0.648355901241302,-0.759698510169983,-0.0499281100928783,0.918028116226196,-0.376190066337585,-0.125321239233017,0.940192520618439,-0.340154260396957,0.0182525683194399,0.699374675750732,-0.714237093925476,0.0272109657526016,0.918028116226196,-0.376190066337585,-0.125321239233017,0.964931428432465,0.177274286746979,-0.193600684404373,0.980539739131927,0.195156782865524,-0.0213438533246517,0.940192520618439,-0.340154260396957,0.0182525683194399,0.883119404315948,-0.387038350105286,-0.265143901109695,0.919818997383118,0.156583085656166,-0.359742492437363,0.964931428432465,0.177274286746979,-0.193600684404373, +0.918028116226196,-0.376190066337585,-0.125321239233017,0.921851694583893,0.220953181385994,0.318385064601898,0.965935707092285,0.210000723600388,0.151221811771393,0.738719165325165,0.669542074203491,0.0775070339441299,0.73176121711731,0.644272327423096,0.222347944974899,0.751295924186707,0.229323551058769,0.618841767311096,0.849716663360596,0.227314680814743,0.475720226764679,0.711689829826355,0.588897049427032,0.383011490106583,0.601396918296814,0.620811343193054,0.502906560897827,0.71759432554245,-0.690560638904572,0.0904684141278267,0.705267906188965,-0.690719544887543,-0.159698873758316,0.475202679634094,-0.8795166015625,-0.0251562800258398,0.482710510492325,-0.874332904815674,0.0503246076405048,0.482710510492325,-0.874332904815674,0.0503246076405048,0.475202679634094,-0.8795166015625,-0.0251562800258398,0.648355901241302,-0.759698510169983,-0.0499281100928783,0.699374675750732,-0.714237093925476,0.0272109657526016,0.475202679634094,-0.8795166015625,-0.0251562800258398,0.437856912612915,-0.893919706344604,-0.0958582013845444,0.624588310718536,-0.77059930562973,-0.126752957701683,0.648355901241302,-0.759698510169983,-0.0499281100928783,0.705267906188965,-0.690719544887543,-0.159698873758316,0.551145255565643,-0.767867863178253,-0.32652360200882,0.437856912612915,-0.893919706344604,-0.0958582013845444,0.475202679634094,-0.8795166015625,-0.0251562800258398,0.759297847747803,0.0259118527173996,-0.650227248668671,0.765135049819946,-0.184830576181412,-0.616770625114441,0.933305442333221,-0.139621585607529,-0.330827355384827,0.932647347450256,0.0740228742361069,-0.353114068508148,0.932647347450256,0.0740228742361069,-0.353114068508148,0.933305442333221,-0.139621585607529,-0.330827355384827,0.993995010852814,-0.109227254986763,0.00657274993136525,0.993481516838074,0.11318189650774,-0.0135743767023087,0.933305442333221,-0.139621585607529,-0.330827355384827,0.705267906188965,-0.690719544887543,-0.159698873758316,0.71759432554245,-0.690560638904572,0.0904684141278267,0.993995010852814,-0.109227254986763,0.00657274993136525, +0.765135049819946,-0.184830576181412,-0.616770625114441,0.551145255565643,-0.767867863178253,-0.32652360200882,0.705267906188965,-0.690719544887543,-0.159698873758316,0.933305442333221,-0.139621585607529,-0.330827355384827,0.699374675750732,-0.714237093925476,0.0272109657526016,0.940192520618439,-0.340154260396957,0.0182525683194399,0.932106673717499,-0.311066418886185,0.185512363910675,0.722084641456604,-0.669517755508423,0.174182817339897,0.722084641456604,-0.669517755508423,0.174182817339897,0.932106673717499,-0.311066418886185,0.185512363910675,0.882174074649811,-0.320425659418106,0.345103323459625,0.640172064304352,-0.71165931224823,0.289345383644104,0.932106673717499,-0.311066418886185,0.185512363910675,0.965935707092285,0.210000723600388,0.151221811771393,0.921851694583893,0.220953181385994,0.318385064601898,0.882174074649811,-0.320425659418106,0.345103323459625,0.940192520618439,-0.340154260396957,0.0182525683194399,0.980539739131927,0.195156782865524,-0.0213438533246517,0.965935707092285,0.210000723600388,0.151221811771393,0.932106673717499,-0.311066418886185,0.185512363910675,0.849716663360596,0.227314680814743,0.475720226764679,0.921851694583893,0.220953181385994,0.318385064601898,0.73176121711731,0.644272327423096,0.222347944974899,0.711689829826355,0.588897049427032,0.383011490106583,0.629687011241913,0.227271318435669,0.742860615253448,0.751295924186707,0.229323551058769,0.618841767311096,0.601396918296814,0.620811343193054,0.502906560897827,0.472364753484726,0.66435968875885,0.579221665859222,0.699374675750732,-0.714237093925476,0.0272109657526016,0.722084641456604,-0.669517755508423,0.174182817339897,0.486018359661102,-0.863618910312653,0.133972570300102,0.482710510492325,-0.874332904815674,0.0503246076405048,0.71759432554245,-0.690560638904572,0.0904684141278267,0.482710510492325,-0.874332904815674,0.0503246076405048,0.486018359661102,-0.863618910312653,0.133972570300102,0.468055933713913,-0.861706256866455,0.195923700928688,0.640172064304352,-0.71165931224823,0.289345383644104,0.468055933713913,-0.861706256866455,0.195923700928688, +0.486018359661102,-0.863618910312653,0.133972570300102,0.722084641456604,-0.669517755508423,0.174182817339897,0.640172064304352,-0.71165931224823,0.289345383644104,0.882174074649811,-0.320425659418106,0.345103323459625,0.813584744930267,-0.334092706441879,0.475880086421967,0.582159996032715,-0.732815265655518,0.35223788022995,0.582159996032715,-0.732815265655518,0.35223788022995,0.813584744930267,-0.334092706441879,0.475880086421967,0.725625395774841,-0.335689812898636,0.600649654865265,0.521884977817535,-0.734029293060303,0.434553742408752,0.813584744930267,-0.334092706441879,0.475880086421967,0.849716663360596,0.227314680814743,0.475720226764679,0.751295924186707,0.229323551058769,0.618841767311096,0.725625395774841,-0.335689812898636,0.600649654865265,0.882174074649811,-0.320425659418106,0.345103323459625,0.921851694583893,0.220953181385994,0.318385064601898,0.849716663360596,0.227314680814743,0.475720226764679,0.813584744930267,-0.334092706441879,0.475880086421967,0.489092797040939,0.220867067575455,0.84380441904068,0.629687011241913,0.227271318435669,0.742860615253448,0.472364753484726,0.66435968875885,0.579221665859222,0.368090093135834,0.645393431186676,0.669310808181763,0.166868165135384,0.194981560111046,0.966507792472839,0.333458006381989,0.209865108132362,0.919109642505646,0.255523502826691,0.574448764324188,0.777635097503662,0.0918228253722191,0.591379523277283,0.801148355007172,0.59137374162674,-0.639187753200531,0.491646260023117,0.700746953487396,-0.644314348697662,0.306288659572601,0.458003014326096,-0.850409626960754,0.258914619684219,0.408084213733673,-0.846757709980011,0.341275125741959,0.408084213733673,-0.846757709980011,0.341275125741959,0.458003014326096,-0.850409626960754,0.258914619684219,0.582159996032715,-0.732815265655518,0.35223788022995,0.521884977817535,-0.734029293060303,0.434553742408752,0.458003014326096,-0.850409626960754,0.258914619684219,0.468055933713913,-0.861706256866455,0.195923700928688,0.640172064304352,-0.71165931224823,0.289345383644104,0.582159996032715,-0.732815265655518,0.35223788022995, +0.700746953487396,-0.644314348697662,0.306288659572601,0.71759432554245,-0.690560638904572,0.0904684141278267,0.468055933713913,-0.861706256866455,0.195923700928688,0.458003014326096,-0.850409626960754,0.258914619684219,0.993481516838074,0.11318189650774,-0.0135743767023087,0.993995010852814,-0.109227254986763,0.00657274993136525,0.937466204166412,-0.0744961351156235,0.340011060237885,0.934662103652954,0.138676822185516,0.327376365661621,0.934662103652954,0.138676822185516,0.327376365661621,0.937466204166412,-0.0744961351156235,0.340011060237885,0.769975543022156,-0.0524080544710159,0.635917603969574,0.763464212417603,0.147494897246361,0.628782689571381,0.937466204166412,-0.0744961351156235,0.340011060237885,0.700746953487396,-0.644314348697662,0.306288659572601,0.59137374162674,-0.639187753200531,0.491646260023117,0.769975543022156,-0.0524080544710159,0.635917603969574,0.993995010852814,-0.109227254986763,0.00657274993136525,0.71759432554245,-0.690560638904572,0.0904684141278267,0.700746953487396,-0.644314348697662,0.306288659572601,0.937466204166412,-0.0744961351156235,0.340011060237885,0.521884977817535,-0.734029293060303,0.434553742408752,0.725625395774841,-0.335689812898636,0.600649654865265,0.619610071182251,-0.333905756473541,0.710345149040222,0.452306568622589,-0.732300698757172,0.509072005748749,0.452306568622589,-0.732300698757172,0.509072005748749,0.619610071182251,-0.333905756473541,0.710345149040222,0.504266738891602,-0.320050984621048,0.802048861980438,0.401595264673233,-0.710754871368408,0.577536880970001,0.619610071182251,-0.333905756473541,0.710345149040222,0.629687011241913,0.227271318435669,0.742860615253448,0.489092797040939,0.220867067575455,0.84380441904068,0.504266738891602,-0.320050984621048,0.802048861980438,0.725625395774841,-0.335689812898636,0.600649654865265,0.751295924186707,0.229323551058769,0.618841767311096,0.629687011241913,0.227271318435669,0.742860615253448,0.619610071182251,-0.333905756473541,0.710345149040222,0.333458006381989,0.209865108132362,0.919109642505646,0.489092797040939,0.220867067575455,0.84380441904068, +0.368090093135834,0.645393431186676,0.669310808181763,0.255523502826691,0.574448764324188,0.777635097503662,0.0224010646343231,0.190629914402962,0.981406331062317,0.166868165135384,0.194981560111046,0.966507792472839,0.0918228253722191,0.591379523277283,0.801148355007172,-0.0453801527619362,0.631865739822388,0.773748278617859,-0.0345583558082581,0.194889307022095,0.980216205120087,0.0224010646343231,0.190629914402962,0.981406331062317,-0.0453801527619362,0.631865739822388,0.773748278617859,-0.195964202284813,0.608727276325226,0.768797218799591,0.401595264673233,-0.710754871368408,0.577536880970001,0.504266738891602,-0.320050984621048,0.802048861980438,0.357184231281281,-0.3106469810009,0.880862057209015,0.304311335086823,-0.668132781982422,0.678964734077454,0.304311335086823,-0.668132781982422,0.678964734077454,0.357184231281281,-0.3106469810009,0.880862057209015,0.194743454456329,-0.339578747749329,0.920196294784546,0.155782490968704,-0.712305784225464,0.684362649917603,0.357184231281281,-0.3106469810009,0.880862057209015,0.333458006381989,0.209865108132362,0.919109642505646,0.166868165135384,0.194981560111046,0.966507792472839,0.194743454456329,-0.339578747749329,0.920196294784546,0.504266738891602,-0.320050984621048,0.802048861980438,0.489092797040939,0.220867067575455,0.84380441904068,0.333458006381989,0.209865108132362,0.919109642505646,0.357184231281281,-0.3106469810009,0.880862057209015,0.59137374162674,-0.639187753200531,0.491646260023117,0.408084213733673,-0.846757709980011,0.341275125741959,0.33594673871994,-0.85003250837326,0.405690133571625,0.432169109582901,-0.645632028579712,0.629594445228577,0.432169109582901,-0.645632028579712,0.629594445228577,0.33594673871994,-0.85003250837326,0.405690133571625,0.275155335664749,-0.86163204908371,0.426473587751389,0.217280060052872,-0.720940470695496,0.658053517341614,0.33594673871994,-0.85003250837326,0.405690133571625,0.452306568622589,-0.732300698757172,0.509072005748749,0.401595264673233,-0.710754871368408,0.577536880970001,0.275155335664749,-0.86163204908371,0.426473587751389, +0.408084213733673,-0.846757709980011,0.341275125741959,0.521884977817535,-0.734029293060303,0.434553742408752,0.452306568622589,-0.732300698757172,0.509072005748749,0.33594673871994,-0.85003250837326,0.405690133571625,0.155782490968704,-0.712305784225464,0.684362649917603,0.194743454456329,-0.339578747749329,0.920196294784546,0.0851994901895523,-0.378553926944733,0.921649634838104,0.09183569252491,-0.761615633964539,0.641488790512085,0.09183569252491,-0.761615633964539,0.641488790512085,0.0851994901895523,-0.378553926944733,0.921649634838104,0.049788162112236,-0.395429193973541,0.917146146297455,0.0744675695896149,-0.793396949768066,0.604132294654846,0.0851994901895523,-0.378553926944733,0.921649634838104,0.0224010646343231,0.190629914402962,0.981406331062317,-0.0345583558082581,0.194889307022095,0.980216205120087,0.049788162112236,-0.395429193973541,0.917146146297455,0.194743454456329,-0.339578747749329,0.920196294784546,0.166868165135384,0.194981560111046,0.966507792472839,0.0224010646343231,0.190629914402962,0.981406331062317,0.0851994901895523,-0.378553926944733,0.921649634838104,0.401595264673233,-0.710754871368408,0.577536880970001,0.304311335086823,-0.668132781982422,0.678964734077454,0.218726515769958,-0.863268733024597,0.454891085624695,0.275155335664749,-0.86163204908371,0.426473587751389,0.217280060052872,-0.720940470695496,0.658053517341614,0.275155335664749,-0.86163204908371,0.426473587751389,0.218726515769958,-0.863268733024597,0.454891085624695,0.131206497550011,-0.878165304660797,0.460011452436447,0.155782490968704,-0.712305784225464,0.684362649917603,0.131206497550011,-0.878165304660797,0.460011452436447,0.218726515769958,-0.863268733024597,0.454891085624695,0.304311335086823,-0.668132781982422,0.678964734077454,0.217280060052872,-0.720940470695496,0.658053517341614,0.131206497550011,-0.878165304660797,0.460011452436447,0.087856113910675,-0.879987299442291,0.466801643371582,0.0622608661651611,-0.733261227607727,0.677090525627136,0.0622608661651611,-0.733261227607727,0.677090525627136,0.087856113910675,-0.879987299442291,0.466801643371582, +0.0785567462444305,-0.87724769115448,0.473566651344299,0.0615055039525032,-0.776434242725372,0.627189695835114,0.087856113910675,-0.879987299442291,0.466801643371582,0.09183569252491,-0.761615633964539,0.641488790512085,0.0744675695896149,-0.793396949768066,0.604132294654846,0.0785567462444305,-0.87724769115448,0.473566651344299,0.131206497550011,-0.878165304660797,0.460011452436447,0.155782490968704,-0.712305784225464,0.684362649917603,0.09183569252491,-0.761615633964539,0.641488790512085,0.087856113910675,-0.879987299442291,0.466801643371582,0.763464212417603,0.147494897246361,0.628782689571381,0.769975543022156,-0.0524080544710159,0.635917603969574,0.520780622959137,-0.0689516738057137,0.850901484489441,0.511144042015076,0.123270191252232,0.850609302520752,0.511144042015076,0.123270191252232,0.850609302520752,0.520780622959137,-0.0689516738057137,0.850901484489441,0.235267177224159,-0.119221575558186,0.964590847492218,0.243689373135567,0.0730376541614532,0.967099249362946,0.520780622959137,-0.0689516738057137,0.850901484489441,0.432169109582901,-0.645632028579712,0.629594445228577,0.217280060052872,-0.720940470695496,0.658053517341614,0.235267177224159,-0.119221575558186,0.964590847492218,0.769975543022156,-0.0524080544710159,0.635917603969574,0.59137374162674,-0.639187753200531,0.491646260023117,0.432169109582901,-0.645632028579712,0.629594445228577,0.520780622959137,-0.0689516738057137,0.850901484489441,0.217280060052872,-0.720940470695496,0.658053517341614,0.0622608661651611,-0.733261227607727,0.677090525627136,0.00219982652924955,-0.19106237590313,0.981575489044189,0.235267177224159,-0.119221575558186,0.964590847492218,0.243689373135567,0.0730376541614532,0.967099249362946,0.235267177224159,-0.119221575558186,0.964590847492218,0.00219982652924955,-0.19106237590313,0.981575489044189,-0.0081470962613821,-0.145576879382133,0.98931348323822,0.0615055039525032,-0.776434242725372,0.627189695835114,-0.0081470962613821,-0.145576879382133,0.98931348323822,0.00219982652924955,-0.19106237590313,0.981575489044189,0.0622608661651611,-0.733261227607727,0.677090525627136, +-0.67251980304718,0.486120939254761,-0.558035373687744,-0.809115469455719,0.494285434484482,-0.317827373743057,-0.788763701915741,0.529457092285156,-0.312293291091919,-0.656684577465057,0.521762013435364,-0.544545352458954,-0.834494590759277,0.548792243003845,-0.0494553595781326,-0.788763701915741,0.529457092285156,-0.312293291091919,-0.809115469455719,0.494285434484482,-0.317827373743057,-0.85654604434967,0.51401960849762,-0.0459646210074425,-0.786917984485626,0.579456925392151,0.212107762694359,-0.834494590759277,0.548792243003845,-0.0494553595781326,-0.85654604434967,0.51401960849762,-0.0459646210074425,-0.807139337062836,0.546013951301575,0.224488079547882,0.0694252476096153,0.544295608997345,-0.836015820503235,-0.204472228884697,0.512818694114685,-0.833791315555573,-0.204234704375267,0.547387003898621,-0.811576068401337,0.0608094446361065,0.57748943567276,-0.814130306243896,-0.204472228884697,0.512818694114685,-0.833791315555573,-0.462027758359909,0.493673712015152,-0.736760854721069,-0.453362017869949,0.528726577758789,-0.717573046684265,-0.204234704375267,0.547387003898621,-0.811576068401337,0.535782098770142,0.621918261051178,-0.571099996566772,0.326762676239014,0.581169784069061,-0.745297074317932,0.310048490762711,0.613343060016632,-0.726415991783142,0.512737810611725,0.652509570121765,-0.557970583438873,-0.453362017869949,0.528726577758789,-0.717573046684265,-0.656684577465057,0.521762013435364,-0.544545352458954,-0.562655508518219,0.681522011756897,-0.467917114496231,-0.39680740237236,0.687020659446716,-0.608725249767303,-0.39680740237236,0.687020659446716,-0.608725249767303,-0.562655508518219,0.681522011756897,-0.467917114496231,-0.525403738021851,0.729864776134491,-0.437319427728653,-0.373926401138306,0.73498809337616,-0.565660238265991,-0.562655508518219,0.681522011756897,-0.467917114496231,-0.670139074325562,0.687969088554382,-0.278589159250259,-0.623237490653992,0.735975503921509,-0.264414846897125,-0.525403738021851,0.729864776134491,-0.437319427728653,-0.656684577465057,0.521762013435364,-0.544545352458954, +-0.788763701915741,0.529457092285156,-0.312293291091919,-0.670139074325562,0.687969088554382,-0.278589159250259,-0.562655508518219,0.681522011756897,-0.467917114496231,-0.623237490653992,0.735975503921509,-0.264414846897125,-0.670139074325562,0.687969088554382,-0.278589159250259,-0.707545638084412,0.703723192214966,-0.0644429326057434,-0.65761387348175,0.750186026096344,-0.0690286457538605,-0.65761387348175,0.750186026096344,-0.0690286457538605,-0.707545638084412,0.703723192214966,-0.0644429326057434,-0.668543219566345,0.728668868541718,0.148632735013962,-0.621787488460541,0.773087322711945,0.125364795327187,-0.707545638084412,0.703723192214966,-0.0644429326057434,-0.834494590759277,0.548792243003845,-0.0494553595781326,-0.786917984485626,0.579456925392151,0.212107762694359,-0.668543219566345,0.728668868541718,0.148632735013962,-0.670139074325562,0.687969088554382,-0.278589159250259,-0.788763701915741,0.529457092285156,-0.312293291091919,-0.834494590759277,0.548792243003845,-0.0494553595781326,-0.707545638084412,0.703723192214966,-0.0644429326057434,-0.370019555091858,0.82866382598877,0.420002281665802,-0.52258825302124,0.79962146282196,0.295815736055374,-0.559580564498901,0.757970750331879,0.335186332464218,-0.392570406198502,0.789711773395538,0.471427589654922,-0.392570406198502,0.789711773395538,0.471427589654922,-0.559580564498901,0.757970750331879,0.335186332464218,-0.653049886226654,0.615665972232819,0.441000431776047,-0.448234409093857,0.654921412467957,0.608411014080048,-0.559580564498901,0.757970750331879,0.335186332464218,-0.668543219566345,0.728668868541718,0.148632735013962,-0.786917984485626,0.579456925392151,0.212107762694359,-0.653049886226654,0.615665972232819,0.441000431776047,-0.52258825302124,0.79962146282196,0.295815736055374,-0.621787488460541,0.773087322711945,0.125364795327187,-0.668543219566345,0.728668868541718,0.148632735013962,-0.559580564498901,0.757970750331879,0.335186332464218,0.0608094446361065,0.57748943567276,-0.814130306243896,-0.204234704375267,0.547387003898621,-0.811576068401337, +-0.193840697407722,0.701911211013794,-0.685380399227142,0.0221158694475889,0.726166486740112,-0.68716299533844,0.0221158694475889,0.726166486740112,-0.68716299533844,-0.193840697407722,0.701911211013794,-0.685380399227142,-0.1887576431036,0.748311877250671,-0.635924458503723,0.00837407354265451,0.770520091056824,-0.637360572814941,-0.193840697407722,0.701911211013794,-0.685380399227142,-0.39680740237236,0.687020659446716,-0.608725249767303,-0.373926401138306,0.73498809337616,-0.565660238265991,-0.1887576431036,0.748311877250671,-0.635924458503723,-0.204234704375267,0.547387003898621,-0.811576068401337,-0.453362017869949,0.528726577758789,-0.717573046684265,-0.39680740237236,0.687020659446716,-0.608725249767303,-0.193840697407722,0.701911211013794,-0.685380399227142,0.326762676239014,0.581169784069061,-0.745297074317932,0.0694252476096153,0.544295608997345,-0.836015820503235,0.0608094446361065,0.57748943567276,-0.814130306243896,0.310048490762711,0.613343060016632,-0.726415991783142,0.720544993877411,0.69012713432312,-0.0673752278089523,0.673139929771423,0.658784508705139,-0.335984408855438,0.645806193351746,0.688414692878723,-0.330181062221527,0.691948533058167,0.71854966878891,-0.0699548348784447,0.512737810611725,0.652509570121765,-0.557970583438873,0.310048490762711,0.613343060016632,-0.726415991783142,0.225184455513954,0.755050897598267,-0.615784108638763,0.390143573284149,0.78671669960022,-0.47839817404747,0.390143573284149,0.78671669960022,-0.47839817404747,0.225184455513954,0.755050897598267,-0.615784108638763,0.193940117955208,0.796645104885101,-0.572489023208618,0.344443708658218,0.825627207756042,-0.446876019239426,0.225184455513954,0.755050897598267,-0.615784108638763,0.0221158694475889,0.726166486740112,-0.68716299533844,0.00837407354265451,0.770520091056824,-0.637360572814941,0.193940117955208,0.796645104885101,-0.572489023208618,0.310048490762711,0.613343060016632,-0.726415991783142,0.0608094446361065,0.57748943567276,-0.814130306243896,0.0221158694475889,0.726166486740112,-0.68716299533844,0.225184455513954,0.755050897598267,-0.615784108638763, +0.673139929771423,0.658784508705139,-0.335984408855438,0.535782098770142,0.621918261051178,-0.571099996566772,0.512737810611725,0.652509570121765,-0.557970583438873,0.645806193351746,0.688414692878723,-0.330181062221527,0.539189755916595,0.717570066452026,0.440871238708496,0.674852073192596,0.709626019001007,0.202498584985733,0.647474944591522,0.737652897834778,0.191426932811737,0.516097366809845,0.745157301425934,0.422355622053146,0.691948533058167,0.71854966878891,-0.0699548348784447,0.645806193351746,0.688414692878723,-0.330181062221527,0.498677849769592,0.815776705741882,-0.292965590953827,0.53611832857132,0.840247631072998,-0.0809997990727425,0.53611832857132,0.840247631072998,-0.0809997990727425,0.498677849769592,0.815776705741882,-0.292965590953827,0.443863660097122,0.851991653442383,-0.27766016125679,0.477798759937286,0.874440848827362,-0.0840327143669128,0.498677849769592,0.815776705741882,-0.292965590953827,0.390143573284149,0.78671669960022,-0.47839817404747,0.344443708658218,0.825627207756042,-0.446876019239426,0.443863660097122,0.851991653442383,-0.27766016125679,0.645806193351746,0.688414692878723,-0.330181062221527,0.512737810611725,0.652509570121765,-0.557970583438873,0.390143573284149,0.78671669960022,-0.47839817404747,0.498677849769592,0.815776705741882,-0.292965590953827,0.674852073192596,0.709626019001007,0.202498584985733,0.720544993877411,0.69012713432312,-0.0673752278089523,0.691948533058167,0.71854966878891,-0.0699548348784447,0.647474944591522,0.737652897834778,0.191426932811737,0.0752958953380585,0.691723823547363,0.718226194381714,0.331673622131348,0.71049290895462,0.620638847351074,0.314930886030197,0.738544583320618,0.596129596233368,0.0666706785559654,0.720204949378967,0.690550327301025,0.516097366809845,0.745157301425934,0.422355622053146,0.647474944591522,0.737652897834778,0.191426932811737,0.500113964080811,0.855851829051971,0.131922796368599,0.392970532178879,0.862096786499023,0.319942712783813,0.392970532178879,0.862096786499023,0.319942712783813,0.500113964080811,0.855851829051971,0.131922796368599, +0.445185750722885,0.888597428798676,0.110472865402699,0.347056120634079,0.894441306591034,0.282005041837692,0.500113964080811,0.855851829051971,0.131922796368599,0.53611832857132,0.840247631072998,-0.0809997990727425,0.477798759937286,0.874440848827362,-0.0840327143669128,0.445185750722885,0.888597428798676,0.110472865402699,0.647474944591522,0.737652897834778,0.191426932811737,0.691948533058167,0.71854966878891,-0.0699548348784447,0.53611832857132,0.840247631072998,-0.0809997990727425,0.500113964080811,0.855851829051971,0.131922796368599,0.331673622131348,0.71049290895462,0.620638847351074,0.539189755916595,0.717570066452026,0.440871238708496,0.516097366809845,0.745157301425934,0.422355622053146,0.314930886030197,0.738544583320618,0.596129596233368,-0.456762969493866,0.62414813041687,0.633882224559784,-0.198446422815323,0.660845994949341,0.723810374736786,-0.198273867368698,0.690596163272858,0.695531725883484,-0.448234409093857,0.654921412467957,0.608411014080048,0.0666706785559654,0.720204949378967,0.690550327301025,0.314930886030197,0.738544583320618,0.596129596233368,0.229204535484314,0.856943488121033,0.461641818284988,0.0268855039030313,0.842279434204102,0.538370192050934,0.0268855039030313,0.842279434204102,0.538370192050934,0.229204535484314,0.856943488121033,0.461641818284988,0.197675868868828,0.889688909053802,0.411555528640747,0.0128085585311055,0.876478016376495,0.481271386146545,0.229204535484314,0.856943488121033,0.461641818284988,0.392970532178879,0.862096786499023,0.319942712783813,0.347056120634079,0.894441306591034,0.282005041837692,0.197675868868828,0.889688909053802,0.411555528640747,0.314930886030197,0.738544583320618,0.596129596233368,0.516097366809845,0.745157301425934,0.422355622053146,0.392970532178879,0.862096786499023,0.319942712783813,0.229204535484314,0.856943488121033,0.461641818284988,-0.198446422815323,0.660845994949341,0.723810374736786,0.0752958953380585,0.691723823547363,0.718226194381714,0.0666706785559654,0.720204949378967,0.690550327301025,-0.198273867368698,0.690596163272858,0.695531725883484, +-0.786917984485626,0.579456925392151,0.212107762694359,-0.807139337062836,0.546013951301575,0.224488079547882,-0.668707847595215,0.583258450031281,0.461128443479538,-0.653049886226654,0.615665972232819,0.441000431776047,-0.448234409093857,0.654921412467957,0.608411014080048,-0.198273867368698,0.690596163272858,0.695531725883484,-0.18898019194603,0.818468272686005,0.542582869529724,-0.392570406198502,0.789711773395538,0.471427589654922,-0.392570406198502,0.789711773395538,0.471427589654922,-0.18898019194603,0.818468272686005,0.542582869529724,-0.184251740574837,0.85470712184906,0.485311269760132,-0.370019555091858,0.82866382598877,0.420002281665802,-0.18898019194603,0.818468272686005,0.542582869529724,0.0268855039030313,0.842279434204102,0.538370192050934,0.0128085585311055,0.876478016376495,0.481271386146545,-0.184251740574837,0.85470712184906,0.485311269760132,-0.198273867368698,0.690596163272858,0.695531725883484,0.0666706785559654,0.720204949378967,0.690550327301025,0.0268855039030313,0.842279434204102,0.538370192050934,-0.18898019194603,0.818468272686005,0.542582869529724,-0.668707847595215,0.583258450031281,0.461128443479538,-0.456762969493866,0.62414813041687,0.633882224559784,-0.448234409093857,0.654921412467957,0.608411014080048,-0.653049886226654,0.615665972232819,0.441000431776047,-0.50081330537796,0.107972986996174,0.858794391155243,-0.371464550495148,0.139413014054298,0.917920529842377,-0.360606789588928,0.514312863349915,0.778103530406952,-0.488056629896164,0.516646444797516,0.703475058078766,-0.124883852899075,0.973982572555542,0.18910813331604,-0.127574950456619,0.950560986995697,0.28312274813652,-0.0113823190331459,0.965104758739471,0.261616587638855,-0.0530598908662796,0.988282322883606,0.143118321895599,-0.0530598908662796,0.988282322883606,0.143118321895599,-0.0113823190331459,0.965104758739471,0.261616587638855,0.0823879167437553,0.973497569561005,0.213342025876045,0.012248751707375,0.994350075721741,0.105442017316818,-0.0113823190331459,0.965104758739471,0.261616587638855,-0.00531517202034593,0.953355967998505,0.301801830530167, +0.107604257762432,0.961841344833374,0.251559972763062,0.0823879167437553,0.973497569561005,0.213342025876045,-0.127574950456619,0.950560986995697,0.28312274813652,-0.128082230687141,0.94076943397522,0.313923269510269,-0.00531517202034593,0.953355967998505,0.301801830530167,-0.0113823190331459,0.965104758739471,0.261616587638855,-0.35445111989975,0.907435357570648,0.225667029619217,-0.248500853776932,0.924742460250854,0.288268566131592,-0.2409727871418,0.938117563724518,0.248731717467308,-0.328460305929184,0.925188720226288,0.190104067325592,-0.328460305929184,0.925188720226288,0.190104067325592,-0.2409727871418,0.938117563724518,0.248731717467308,-0.192456886172295,0.971948146820068,0.135193079710007,-0.252875179052353,0.963279068470001,0.0902640372514725,-0.2409727871418,0.938117563724518,0.248731717467308,-0.127574950456619,0.950560986995697,0.28312274813652,-0.124883852899075,0.973982572555542,0.18910813331604,-0.192456886172295,0.971948146820068,0.135193079710007,-0.248500853776932,0.924742460250854,0.288268566131592,-0.128082230687141,0.94076943397522,0.313923269510269,-0.127574950456619,0.950560986995697,0.28312274813652,-0.2409727871418,0.938117563724518,0.248731717467308,0.012248751707375,0.994350075721741,0.105442017316818,0.0823879167437553,0.973497569561005,0.213342025876045,0.16554968059063,0.975016236305237,0.148110181093216,0.0739285796880722,0.995348036289215,0.0617808625102043,0.0739285796880722,0.995348036289215,0.0617808625102043,0.16554968059063,0.975016236305237,0.148110181093216,0.234080225229263,0.970867097377777,0.0512213818728924,0.146338135004044,0.989115238189697,0.0153733482584357,0.16554968059063,0.975016236305237,0.148110181093216,0.200368151068687,0.964912056922913,0.169697225093842,0.262902438640594,0.962764263153076,0.0629864037036896,0.234080225229263,0.970867097377777,0.0512213818728924,0.0823879167437553,0.973497569561005,0.213342025876045,0.107604257762432,0.961841344833374,0.251559972763062,0.200368151068687,0.964912056922913,0.169697225093842,0.16554968059063,0.975016236305237,0.148110181093216, +-0.48457869887352,0.874518871307373,0.0200038570910692,-0.436218351125717,0.889866709709167,0.133607119321823,-0.40228059887886,0.908177077770233,0.115692488849163,-0.457055330276489,0.889366865158081,0.0112675707787275,-0.457055330276489,0.889366865158081,0.0112675707787275,-0.40228059887886,0.908177077770233,0.115692488849163,-0.308018177747726,0.950549244880676,0.0397599302232265,-0.371693968772888,0.928238987922668,-0.0146954786032438,-0.40228059887886,0.908177077770233,0.115692488849163,-0.328460305929184,0.925188720226288,0.190104067325592,-0.252875179052353,0.963279068470001,0.0902640372514725,-0.308018177747726,0.950549244880676,0.0397599302232265,-0.436218351125717,0.889866709709167,0.133607119321823,-0.35445111989975,0.907435357570648,0.225667029619217,-0.328460305929184,0.925188720226288,0.190104067325592,-0.40228059887886,0.908177077770233,0.115692488849163,0.146338135004044,0.989115238189697,0.0153733482584357,0.234080225229263,0.970867097377777,0.0512213818728924,0.250815570354462,0.965764343738556,-0.0662627220153809,0.125760138034821,0.98969578742981,-0.0684594213962555,0.125760138034821,0.98969578742981,-0.0684594213962555,0.250815570354462,0.965764343738556,-0.0662627220153809,0.235091745853424,0.956915616989136,-0.170424267649651,0.110900156199932,0.983586072921753,-0.142336323857307,0.250815570354462,0.965764343738556,-0.0662627220153809,0.290591835975647,0.955129683017731,-0.0573041290044785,0.279172956943512,0.943237721920013,-0.179903045296669,0.235091745853424,0.956915616989136,-0.170424267649651,0.234080225229263,0.970867097377777,0.0512213818728924,0.262902438640594,0.962764263153076,0.0629864037036896,0.290591835975647,0.955129683017731,-0.0573041290044785,0.250815570354462,0.965764343738556,-0.0662627220153809,-0.124883852899075,0.973982572555542,0.18910813331604,-0.0530598908662796,0.988282322883606,0.143118321895599,-0.119054704904556,0.991496682167053,0.0525382123887539,-0.192456886172295,0.971948146820068,0.135193079710007,-0.192456886172295,0.971948146820068,0.135193079710007,-0.119054704904556,0.991496682167053,0.0525382123887539, +-0.180610328912735,0.983553409576416,-0.00159079441800714,-0.252875179052353,0.963279068470001,0.0902640372514725,-0.119054704904556,0.991496682167053,0.0525382123887539,-0.0516491867601871,0.99864798784256,0.00587699795141816,-0.110828995704651,0.989989578723907,-0.0873932242393494,-0.180610328912735,0.983553409576416,-0.00159079441800714,-0.0530598908662796,0.988282322883606,0.143118321895599,0.012248751707375,0.994350075721741,0.105442017316818,-0.0516491867601871,0.99864798784256,0.00587699795141816,-0.119054704904556,0.991496682167053,0.0525382123887539,-0.110828995704651,0.989989578723907,-0.0873932242393494,-0.0516491867601871,0.99864798784256,0.00587699795141816,0.0191553682088852,0.999172627925873,-0.035877414047718,-0.00361229316331446,0.993391036987305,-0.114722222089767,-0.00361229316331446,0.993391036987305,-0.114722222089767,0.0191553682088852,0.999172627925873,-0.035877414047718,0.125760138034821,0.98969578742981,-0.0684594213962555,0.110900156199932,0.983586072921753,-0.142336323857307,0.0191553682088852,0.999172627925873,-0.035877414047718,0.0739285796880722,0.995348036289215,0.0617808625102043,0.146338135004044,0.989115238189697,0.0153733482584357,0.125760138034821,0.98969578742981,-0.0684594213962555,-0.0516491867601871,0.99864798784256,0.00587699795141816,0.012248751707375,0.994350075721741,0.105442017316818,0.0739285796880722,0.995348036289215,0.0617808625102043,0.0191553682088852,0.999172627925873,-0.035877414047718,0.110900156199932,0.983586072921753,-0.142336323857307,0.235091745853424,0.956915616989136,-0.170424267649651,0.19984869658947,0.942163586616516,-0.269050538539886,0.0891570821404457,0.972764551639557,-0.213963240385056,0.0891570821404457,0.972764551639557,-0.213963240385056,0.19984869658947,0.942163586616516,-0.269050538539886,0.129859805107117,0.922606408596039,-0.363226890563965,0.0681427046656609,0.952939748764038,-0.295402050018311,0.19984869658947,0.942163586616516,-0.269050538539886,0.231376051902771,0.927694499492645,-0.292998611927032,0.150293961167336,0.910590589046478,-0.385014891624451, +0.129859805107117,0.922606408596039,-0.363226890563965,0.235091745853424,0.956915616989136,-0.170424267649651,0.279172956943512,0.943237721920013,-0.179903045296669,0.231376051902771,0.927694499492645,-0.292998611927032,0.19984869658947,0.942163586616516,-0.269050538539886,-0.371693968772888,0.928238987922668,-0.0146954786032438,-0.308018177747726,0.950549244880676,0.0397599302232265,-0.244615167379379,0.96826446056366,-0.0512584820389748,-0.342274039983749,0.934695541858673,-0.0958791151642799,-0.342274039983749,0.934695541858673,-0.0958791151642799,-0.244615167379379,0.96826446056366,-0.0512584820389748,-0.212255299091339,0.968927800655365,-0.126990213990211,-0.317981958389282,0.933153331279755,-0.167666718363762,-0.244615167379379,0.96826446056366,-0.0512584820389748,-0.180610328912735,0.983553409576416,-0.00159079441800714,-0.110828995704651,0.989989578723907,-0.0873932242393494,-0.212255299091339,0.968927800655365,-0.126990213990211,-0.308018177747726,0.950549244880676,0.0397599302232265,-0.252875179052353,0.963279068470001,0.0902640372514725,-0.180610328912735,0.983553409576416,-0.00159079441800714,-0.244615167379379,0.96826446056366,-0.0512584820389748,-0.468139320611954,0.854725778102875,-0.224253430962563,-0.496100336313248,0.862101972103119,-0.103269994258881,-0.458748430013657,0.881996691226959,-0.107850603759289,-0.429444283246994,0.878385543823242,-0.209801122546196,-0.429444283246994,0.878385543823242,-0.209801122546196,-0.458748430013657,0.881996691226959,-0.107850603759289,-0.342274039983749,0.934695541858673,-0.0958791151642799,-0.317981958389282,0.933153331279755,-0.167666718363762,-0.458748430013657,0.881996691226959,-0.107850603759289,-0.457055330276489,0.889366865158081,0.0112675707787275,-0.371693968772888,0.928238987922668,-0.0146954786032438,-0.342274039983749,0.934695541858673,-0.0958791151642799,-0.496100336313248,0.862101972103119,-0.103269994258881,-0.48457869887352,0.874518871307373,0.0200038570910692,-0.457055330276489,0.889366865158081,0.0112675707787275,-0.458748430013657,0.881996691226959,-0.107850603759289, +-0.110828995704651,0.989989578723907,-0.0873932242393494,-0.00361229316331446,0.993391036987305,-0.114722222089767,-0.0207181945443153,0.980741560459137,-0.1942078769207,-0.102730982005596,0.97503525018692,-0.196856424212456,-0.102730982005596,0.97503525018692,-0.196856424212456,-0.0207181945443153,0.980741560459137,-0.1942078769207,-0.0178655199706554,0.952891528606415,-0.302784502506256,-0.0927385911345482,0.945798933506012,-0.311229526996613,-0.0207181945443153,0.980741560459137,-0.1942078769207,0.0891570821404457,0.972764551639557,-0.213963240385056,0.0681427046656609,0.952939748764038,-0.295402050018311,-0.0178655199706554,0.952891528606415,-0.302784502506256,-0.00361229316331446,0.993391036987305,-0.114722222089767,0.110900156199932,0.983586072921753,-0.142336323857307,0.0891570821404457,0.972764551639557,-0.213963240385056,-0.0207181945443153,0.980741560459137,-0.1942078769207,0.0681427046656609,0.952939748764038,-0.295402050018311,0.129859805107117,0.922606408596039,-0.363226890563965,0.0237435605376959,0.90935355424881,-0.415346205234528,-0.0178655199706554,0.952891528606415,-0.302784502506256,-0.0178655199706554,0.952891528606415,-0.302784502506256,0.0237435605376959,0.90935355424881,-0.415346205234528,-0.0802204981446266,0.898208379745483,-0.432187914848328,-0.0927385911345482,0.945798933506012,-0.311229526996613,0.0237435605376959,0.90935355424881,-0.415346205234528,0.0450093857944012,0.892925083637238,-0.447949677705765,-0.0751278772950172,0.877157866954803,-0.474288940429688,-0.0802204981446266,0.898208379745483,-0.432187914848328,0.129859805107117,0.922606408596039,-0.363226890563965,0.150293961167336,0.910590589046478,-0.385014891624451,0.0450093857944012,0.892925083637238,-0.447949677705765,0.0237435605376959,0.90935355424881,-0.415346205234528,-0.311478853225708,0.85575670003891,-0.413111686706543,-0.404932051897049,0.852220058441162,-0.331287026405334,-0.380449801683426,0.87349009513855,-0.303764820098877,-0.297154903411865,0.872000813484192,-0.38899040222168,-0.297154903411865,0.872000813484192,-0.38899040222168, +-0.380449801683426,0.87349009513855,-0.303764820098877,-0.286199241876602,0.92857700586319,-0.236293643712997,-0.251954287290573,0.915186166763306,-0.314568310976028,-0.380449801683426,0.87349009513855,-0.303764820098877,-0.429444283246994,0.878385543823242,-0.209801122546196,-0.317981958389282,0.933153331279755,-0.167666718363762,-0.286199241876602,0.92857700586319,-0.236293643712997,-0.404932051897049,0.852220058441162,-0.331287026405334,-0.468139320611954,0.854725778102875,-0.224253430962563,-0.429444283246994,0.878385543823242,-0.209801122546196,-0.380449801683426,0.87349009513855,-0.303764820098877,-0.251954287290573,0.915186166763306,-0.314568310976028,-0.286199241876602,0.92857700586319,-0.236293643712997,-0.183719381690025,0.961605727672577,-0.203866943717003,-0.167744308710098,0.935244083404541,-0.311737716197968,-0.167744308710098,0.935244083404541,-0.311737716197968,-0.183719381690025,0.961605727672577,-0.203866943717003,-0.102730982005596,0.97503525018692,-0.196856424212456,-0.0927385911345482,0.945798933506012,-0.311229526996613,-0.183719381690025,0.961605727672577,-0.203866943717003,-0.212255299091339,0.968927800655365,-0.126990213990211,-0.110828995704651,0.989989578723907,-0.0873932242393494,-0.102730982005596,0.97503525018692,-0.196856424212456,-0.286199241876602,0.92857700586319,-0.236293643712997,-0.317981958389282,0.933153331279755,-0.167666718363762,-0.212255299091339,0.968927800655365,-0.126990213990211,-0.183719381690025,0.961605727672577,-0.203866943717003,-0.251954287290573,0.915186166763306,-0.314568310976028,-0.167744308710098,0.935244083404541,-0.311737716197968,-0.185235917568207,0.884596347808838,-0.427991658449173,-0.297154903411865,0.872000813484192,-0.38899040222168,-0.297154903411865,0.872000813484192,-0.38899040222168,-0.185235917568207,0.884596347808838,-0.427991658449173,-0.198007270693779,0.864045739173889,-0.462837129831314,-0.311478853225708,0.85575670003891,-0.413111686706543,-0.185235917568207,0.884596347808838,-0.427991658449173,-0.0802204981446266,0.898208379745483,-0.432187914848328, +-0.0751278772950172,0.877157866954803,-0.474288940429688,-0.198007270693779,0.864045739173889,-0.462837129831314,-0.167744308710098,0.935244083404541,-0.311737716197968,-0.0927385911345482,0.945798933506012,-0.311229526996613,-0.0802204981446266,0.898208379745483,-0.432187914848328,-0.185235917568207,0.884596347808838,-0.427991658449173,0.911372125148773,0.175333127379417,0.372369647026062,0.747625291347504,0.181450754404068,0.638852179050446,0.739685773849487,0.181378602981567,0.648048400878906,0.906235933303833,0.175895765423775,0.384443998336792,-0.0985553115606308,0.116845056414604,0.98824805021286,0.211747512221336,0.150383591651917,0.965685069561005,0.222996100783348,0.151444837450981,0.96298348903656,-0.0866162925958633,0.1182881295681,0.989194452762604,0.211747512221336,0.150383591651917,0.965685069561005,0.500164151191711,0.172666251659393,0.848541140556335,0.510808825492859,0.173262968659401,0.842053592205048,0.222996100783348,0.151444837450981,0.96298348903656,0.985382199287415,0.155439168214798,0.0697193741798401,0.911372125148773,0.175333127379417,0.372369647026062,0.906235933303833,0.175895765423775,0.384443998336792,0.984236180782318,0.156478002667427,0.0824250504374504,0.962640166282654,0.123688235878944,-0.240883946418762,0.985382199287415,0.155439168214798,0.0697193741798401,0.984236180782318,0.156478002667427,0.0824250504374504,0.965671956539154,0.125312522053719,-0.227539926767349,-0.399315237998962,0.07517921179533,0.913726150989532,-0.0985553115606308,0.116845056414604,0.98824805021286,-0.0866162925958633,0.1182881295681,0.989194452762604,-0.388908267021179,0.076803594827652,0.91806948184967,-0.661990880966187,0.0295600648969412,0.748928785324097,-0.399315237998962,0.07517921179533,0.913726150989532,-0.388908267021179,0.076803594827652,0.91806948184967,-0.652993023395538,0.0313062183558941,0.756716549396515,0.644495248794556,0.0379558429121971,-0.763665676116943,0.845369040966034,0.0832348167896271,-0.52765816450119,0.852147459983826,0.0850556567311287,-0.516343295574188,0.655077874660492,0.0400585159659386,-0.754498660564423, +0.845369040966034,0.0832348167896271,-0.52765816450119,0.962640166282654,0.123688235878944,-0.240883946418762,0.965671956539154,0.125312522053719,-0.227539926767349,0.852147459983826,0.0850556567311287,-0.516343295574188,-0.973603248596191,-0.0558052733540535,0.221319660544395,-0.859675049781799,-0.0156112676486373,0.510602593421936,-0.853800535202026,-0.013994887471199,0.52041220664978,-0.970880210399628,-0.0543866194784641,0.233310133218765,-0.859675049781799,-0.0156112676486373,0.510602593421936,-0.661990880966187,0.0295600648969412,0.748928785324097,-0.652993023395538,0.0313062183558941,0.756716549396515,-0.853800535202026,-0.013994887471199,0.52041220664978,0.0786298364400864,-0.0490061789751053,-0.995698630809784,0.380636096000671,-0.00757935550063848,-0.924693882465363,0.392948269844055,-0.00570045877248049,-0.919542849063873,0.0925829261541367,-0.0472719110548496,-0.994582235813141,0.380636096000671,-0.00757935550063848,-0.924693882465363,0.644495248794556,0.0379558429121971,-0.763665676116943,0.655077874660492,0.0400585159659386,-0.754498660564423,0.392948269844055,-0.00570045877248049,-0.919542849063873,-0.992188394069672,-0.0871674343943596,-0.0892409458756447,-0.973603248596191,-0.0558052733540535,0.221319660544395,-0.970880210399628,-0.0543866194784641,0.233310133218765,-0.993278205394745,-0.0861511826515198,-0.0773058161139488,-0.913855671882629,-0.106503650546074,-0.39182236790657,-0.992188394069672,-0.0871674343943596,-0.0892409458756447,-0.993278205394745,-0.0861511826515198,-0.0773058161139488,-0.918943762779236,-0.105988554656506,-0.379879862070084,-0.230642050504684,-0.0821825861930847,-0.969561874866486,0.0786298364400864,-0.0490061789751053,-0.995698630809784,0.0925829261541367,-0.0472719110548496,-0.994582235813141,-0.217829763889313,-0.0810173749923706,-0.972618222236633,-0.518229186534882,-0.103930748999119,-0.848903357982635,-0.230642050504684,-0.0821825861930847,-0.969561874866486,-0.217829763889313,-0.0810173749923706,-0.972618222236633,-0.506581485271454,-0.103233776986599,-0.855989456176758, +-0.746747851371765,-0.112116284668446,-0.655589461326599,-0.913855671882629,-0.106503650546074,-0.39182236790657,-0.918943762779236,-0.105988554656506,-0.379879862070084,-0.755039036273956,-0.112149238586426,-0.646017491817474,-0.518229186534882,-0.103930748999119,-0.848903357982635,-0.506581485271454,-0.103233776986599,-0.855989456176758,-0.746747851371765,-0.112116284668446,-0.655589461326599,-0.755039036273956,-0.112149238586426,-0.646017491817474,0.120922207832336,-0.796792030334473,0.592030644416809,0.0372416973114014,-0.630433619022369,0.775349259376526,-0.114940471947193,-0.628887355327606,0.768953442573547,-0.0560099147260189,-0.800769805908203,0.596347749233246,0.0372416973114014,-0.630433619022369,0.775349259376526,-0.00524978945031762,-0.562684535980225,0.826655030250549,-0.168257042765617,-0.562811315059662,0.809279263019562,-0.114940471947193,-0.628887355327606,0.768953442573547,-0.050597071647644,-0.561986684799194,0.825597286224365,-0.0517490468919277,-0.584344148635864,0.809854328632355,-0.238652244210243,-0.614571273326874,0.751895725727081,-0.222108259797096,-0.581345081329346,0.782755315303802,-0.0440644770860672,-0.548213720321655,0.835176646709442,-0.050597071647644,-0.561986684799194,0.825597286224365,-0.222108259797096,-0.581345081329346,0.782755315303802,-0.21025076508522,-0.55827385187149,0.80257385969162,0.17906953394413,-0.898161590099335,-0.401546806097031,0.211005046963692,-0.967498183250427,-0.139370158314705,0.168535068631172,-0.963177859783173,-0.209486126899719,0.0752217844128609,-0.939485013484955,-0.33422988653183,-0.0560099147260189,-0.800769805908203,0.596347749233246,0.168535068631172,-0.963177859783173,-0.209486126899719,0.211005046963692,-0.967498183250427,-0.139370158314705,0.120922207832336,-0.796792030334473,0.592030644416809,-0.345515191555023,-0.547185301780701,0.762369692325592,-0.263171195983887,-0.646720111370087,0.715886890888214,-0.0522820577025414,-0.612648069858551,0.78862464427948,-0.0757329538464546,-0.591529846191406,0.802718579769135,-0.21025076508522,-0.55827385187149,0.80257385969162, +-0.222108259797096,-0.581345081329346,0.782755315303802,-0.811607897281647,-0.451142132282257,0.371164947748184,-0.805096209049225,-0.40862163901329,0.429939955472946,-0.222108259797096,-0.581345081329346,0.782755315303802,-0.238652244210243,-0.614571273326874,0.751895725727081,-0.808336079120636,-0.496064335107803,0.317037552595139,-0.811607897281647,-0.451142132282257,0.371164947748184,-0.0517490468919277,-0.584344148635864,0.809854328632355,-0.0522820577025414,-0.612648069858551,0.78862464427948,-0.263171195983887,-0.646720111370087,0.715886890888214,-0.238652244210243,-0.614571273326874,0.751895725727081,-0.0293660555034876,-0.545552730560303,0.837561786174774,-0.0440644770860672,-0.548213720321655,0.835176646709442,-0.21025076508522,-0.55827385187149,0.80257385969162,-0.195457860827446,-0.548572957515717,0.812935352325439,-0.168257042765617,-0.562811315059662,0.809279263019562,-0.195457860827446,-0.548572957515717,0.812935352325439,-0.789217472076416,-0.381894737482071,0.480928480625153,-0.764118194580078,-0.392846435308456,0.511659264564514,-0.195457860827446,-0.548572957515717,0.812935352325439,-0.21025076508522,-0.55827385187149,0.80257385969162,-0.805096209049225,-0.40862163901329,0.429939955472946,-0.789217472076416,-0.381894737482071,0.480928480625153,-0.957286834716797,-0.159693911671638,0.241038918495178,-0.904984831809998,-0.257053256034851,0.339007496833801,-0.916231274604797,-0.245609506964684,0.316537886857986,-0.961817741394043,-0.153129860758781,0.226843118667603,-0.961817741394043,-0.153129860758781,0.226843118667603,-0.916231274604797,-0.245609506964684,0.316537886857986,-0.920750439167023,-0.279902219772339,0.271796673536301,-0.962435603141785,-0.195333227515221,0.188580542802811,-0.916231274604797,-0.245609506964684,0.316537886857986,-0.789217472076416,-0.381894737482071,0.480928480625153,-0.805096209049225,-0.40862163901329,0.429939955472946,-0.920750439167023,-0.279902219772339,0.271796673536301,-0.904984831809998,-0.257053256034851,0.339007496833801,-0.764118194580078,-0.392846435308456,0.511659264564514, +-0.789217472076416,-0.381894737482071,0.480928480625153,-0.916231274604797,-0.245609506964684,0.316537886857986,-0.962435603141785,-0.195333227515221,0.188580542802811,-0.920750439167023,-0.279902219772339,0.271796673536301,-0.917342960834503,-0.332715511322021,0.218591719865799,-0.956763327121735,-0.254459887742996,0.140904620289803,-0.956763327121735,-0.254459887742996,0.140904620289803,-0.917342960834503,-0.332715511322021,0.218591719865799,-0.908021211624146,-0.384221374988556,0.166947528719902,-0.947105586528778,-0.306440472602844,0.0953160524368286,-0.917342960834503,-0.332715511322021,0.218591719865799,-0.811607897281647,-0.451142132282257,0.371164947748184,-0.808336079120636,-0.496064335107803,0.317037552595139,-0.908021211624146,-0.384221374988556,0.166947528719902,-0.920750439167023,-0.279902219772339,0.271796673536301,-0.805096209049225,-0.40862163901329,0.429939955472946,-0.811607897281647,-0.451142132282257,0.371164947748184,-0.917342960834503,-0.332715511322021,0.218591719865799,-0.962435603141785,-0.195333227515221,0.188580542802811,-0.956763327121735,-0.254459887742996,0.140904620289803,-0.984600245952606,-0.172810226678848,0.0264330040663481,-0.993463218212128,-0.0900352150201797,0.0701736137270927,-0.984600245952606,-0.172810226678848,0.0264330040663481,-0.97163712978363,-0.236452788114548,-0.00334431556984782,-0.979274868965149,-0.190437749028206,-0.0689512118697166,-0.99169510602951,-0.121804192662239,-0.0412847921252251,-0.99026620388031,-0.0312759727239609,0.135626822710037,-0.993057072162628,-0.0288663785904646,0.114036664366722,-0.997232258319855,0.0469515509903431,0.0576493106782436,-0.995224714279175,0.050151988863945,0.0837406516075134,-0.956763327121735,-0.254459887742996,0.140904620289803,-0.947105586528778,-0.306440472602844,0.0953160524368286,-0.97163712978363,-0.236452788114548,-0.00334431556984782,-0.984600245952606,-0.172810226678848,0.0264330040663481,-0.957286834716797,-0.159693911671638,0.241038918495178,-0.961817741394043,-0.153129860758781,0.226843118667603,-0.993057072162628,-0.0288663785904646,0.114036664366722, +-0.99026620388031,-0.0312759727239609,0.135626822710037,-0.993057072162628,-0.0288663785904646,0.114036664366722,-0.993463218212128,-0.0900352150201797,0.0701736137270927,-0.999643266201019,-0.025479244068265,0.00800420250743628,-0.997232258319855,0.0469515509903431,0.0576493106782436,-0.985216319561005,-0.170767039060593,0.0136895691975951,-0.965637505054474,-0.25279626250267,0.0603170990943909,-0.988030552864075,-0.0654797479510307,0.139670982956886,-0.99558812379837,0.0150237353518605,0.0926198810338974,-0.961817741394043,-0.153129860758781,0.226843118667603,-0.962435603141785,-0.195333227515221,0.188580542802811,-0.993463218212128,-0.0900352150201797,0.0701736137270927,-0.993057072162628,-0.0288663785904646,0.114036664366722,-0.961486876010895,-0.273843705654144,-0.0235074926167727,-0.992032170295715,-0.122918725013733,0.0276260264217854,-0.994631052017212,-0.0965266823768616,-0.0373038686811924,-0.970166742801666,-0.228205963969231,-0.0818443894386292,-0.853363394737244,-0.3871710896492,0.349098354578018,-0.345515191555023,-0.547185301780701,0.762369692325592,-0.372758835554123,0.574041485786438,0.729059219360352,-0.424128174781799,0.762127161026001,0.489160120487213,-0.345515191555023,-0.547185301780701,0.762369692325592,-0.0757329538464546,-0.591529846191406,0.802718579769135,-0.289176911115646,0.263845860958099,0.920196771621704,-0.372758835554123,0.574041485786438,0.729059219360352,-0.424128174781799,0.762127161026001,0.489160120487213,-0.307173669338226,0.819123506546021,0.484438627958298,-0.313579857349396,0.851016700267792,0.421234101057053,-0.408781379461288,0.80727356672287,0.425684303045273,-0.408781379461288,0.80727356672287,0.425684303045273,-0.313579857349396,0.851016700267792,0.421234101057053,-0.309285789728165,0.866391241550446,0.39205676317215,-0.403938621282578,0.82799357175827,0.388922035694122,-0.403938621282578,0.82799357175827,0.388922035694122,-0.309285789728165,0.866391241550446,0.39205676317215,-0.312057465314865,0.882471203804016,0.351944297552109,-0.403244912624359,0.848339080810547,0.343095332384109, +-0.403244912624359,0.848339080810547,0.343095332384109,-0.312057465314865,0.882471203804016,0.351944297552109,-0.319655776023865,0.907958507537842,0.27098274230957,-0.404508680105209,0.875312983989716,0.264952659606934,-0.382088601589203,0.91823935508728,0.104138001799583,-0.325790345668793,0.941037356853485,0.0911553651094437,-0.321462064981461,0.937324345111847,-0.134480938315392,-0.357530146837234,0.926915526390076,-0.11401641368866,-0.404508680105209,0.875312983989716,0.264952659606934,-0.319655776023865,0.907958507537842,0.27098274230957,-0.325790345668793,0.941037356853485,0.0911553651094437,-0.382088601589203,0.91823935508728,0.104138001799583,-0.342633962631226,0.872563242912292,-0.348188728094101,-0.299597024917603,0.877605974674225,-0.374231606721878,-0.264925301074982,0.766633987426758,-0.584881901741028,-0.311021834611893,0.758113920688629,-0.573174059391022,-0.357530146837234,0.926915526390076,-0.11401641368866,-0.321462064981461,0.937324345111847,-0.134480938315392,-0.299597024917603,0.877605974674225,-0.374231606721878,-0.342633962631226,0.872563242912292,-0.348188728094101,-0.270094692707062,0.615147829055786,-0.740703642368317,-0.225151583552361,0.629361212253571,-0.743781626224518,-0.160423427820206,0.410944879055023,-0.897434413433075,-0.195976778864861,0.374445557594299,-0.906302213668823,-0.311021834611893,0.758113920688629,-0.573174059391022,-0.264925301074982,0.766633987426758,-0.584881901741028,-0.225151583552361,0.629361212253571,-0.743781626224518,-0.270094692707062,0.615147829055786,-0.740703642368317,-0.195976778864861,0.374445557594299,-0.906302213668823,-0.160423427820206,0.410944879055023,-0.897434413433075,-0.0769923478364944,0.133566156029701,-0.988044679164886,-0.114598922431469,0.0986514165997505,-0.988501369953156,-0.114598922431469,0.0986514165997505,-0.988501369953156,-0.0769923478364944,0.133566156029701,-0.988044679164886,-0.0063014468178153,-0.12918746471405,-0.991600155830383,-0.0509979538619518,-0.159659445285797,-0.985854029655457,-0.0509979538619518,-0.159659445285797,-0.985854029655457, +-0.0063014468178153,-0.12918746471405,-0.991600155830383,0.0584855489432812,-0.427987068891525,-0.901890516281128,0.0143258413299918,-0.447848200798035,-0.893994808197021,0.0143258413299918,-0.447848200798035,-0.893994808197021,0.0584855489432812,-0.427987068891525,-0.901890516281128,0.107560262084007,-0.643963098526001,-0.757457852363586,0.0679104551672935,-0.648036420345306,-0.758575677871704,0.0756487101316452,-0.781587302684784,-0.619191944599152,0.137573927640915,-0.779442369937897,-0.611181676387787,0.148749560117722,-0.854888439178467,-0.497030526399612,0.057095043361187,-0.863382458686829,-0.501309096813202,0.0679104551672935,-0.648036420345306,-0.758575677871704,0.107560262084007,-0.643963098526001,-0.757457852363586,0.137573927640915,-0.779442369937897,-0.611181676387787,0.0756487101316452,-0.781587302684784,-0.619191944599152,0.0581420473754406,-0.894277513027191,-0.443719953298569,0.154334470629692,-0.879126369953156,-0.450907677412033,0.158308371901512,-0.885948359966278,-0.435928910970688,0.0556420534849167,-0.9095379114151,-0.411879658699036,0.057095043361187,-0.863382458686829,-0.501309096813202,0.148749560117722,-0.854888439178467,-0.497030526399612,0.154334470629692,-0.879126369953156,-0.450907677412033,0.0581420473754406,-0.894277513027191,-0.443719953298569,0.0573644787073135,-0.920928537845612,-0.385486781597137,0.161488875746727,-0.889263808727264,-0.427938252687454,0.17906953394413,-0.898161590099335,-0.401546806097031,0.0752217844128609,-0.939485013484955,-0.33422988653183,0.0556420534849167,-0.9095379114151,-0.411879658699036,0.158308371901512,-0.885948359966278,-0.435928910970688,0.161488875746727,-0.889263808727264,-0.427938252687454,0.0573644787073135,-0.920928537845612,-0.385486781597137,-0.808336079120636,-0.496064335107803,0.317037552595139,-0.238652244210243,-0.614571273326874,0.751895725727081,-0.263171195983887,-0.646720111370087,0.715886890888214,-0.801077723503113,-0.527776837348938,0.28235849738121,-0.372758835554123,0.574041485786438,0.729059219360352,-0.289176911115646,0.263845860958099,0.920196771621704, +-0.307173669338226,0.819123506546021,0.484438627958298,-0.424128174781799,0.762127161026001,0.489160120487213,-0.263171195983887,-0.646720111370087,0.715886890888214,-0.345515191555023,-0.547185301780701,0.762369692325592,-0.853363394737244,-0.3871710896492,0.349098354578018,-0.801077723503113,-0.527776837348938,0.28235849738121,-0.73882269859314,-0.41847437620163,0.528223633766174,-0.678895652294159,-0.57173627614975,0.460671693086624,-0.0560099147260189,-0.800769805908203,0.596347749233246,-0.114940471947193,-0.628887355327606,0.768953442573547,-0.808336079120636,-0.496064335107803,0.317037552595139,-0.801077723503113,-0.527776837348938,0.28235849738121,-0.899295508861542,-0.41834545135498,0.12749370932579,-0.908021211624146,-0.384221374988556,0.166947528719902,-0.908021211624146,-0.384221374988556,0.166947528719902,-0.899295508861542,-0.41834545135498,0.12749370932579,-0.9390709400177,-0.338641941547394,0.0588848367333412,-0.947105586528778,-0.306440472602844,0.0953160524368286,-0.899295508861542,-0.41834545135498,0.12749370932579,-0.945762574672699,-0.268301486968994,0.183159947395325,-0.977363348007202,-0.181837975978851,0.108147487044334,-0.9390709400177,-0.338641941547394,0.0588848367333412,-0.801077723503113,-0.527776837348938,0.28235849738121,-0.853363394737244,-0.3871710896492,0.349098354578018,-0.945762574672699,-0.268301486968994,0.183159947395325,-0.899295508861542,-0.41834545135498,0.12749370932579,-0.168257042765617,-0.562811315059662,0.809279263019562,-0.764118194580078,-0.392846435308456,0.511659264564514,-0.73882269859314,-0.41847437620163,0.528223633766174,-0.114940471947193,-0.628887355327606,0.768953442573547,-0.678895652294159,-0.57173627614975,0.460671693086624,-0.73882269859314,-0.41847437620163,0.528223633766174,-0.891765773296356,-0.292139291763306,0.345555365085602,-0.844573855400085,-0.458493798971176,0.27654755115509,-0.844573855400085,-0.458493798971176,0.27654755115509,-0.891765773296356,-0.292139291763306,0.345555365085602,-0.952116906642914,-0.191382601857185,0.238424405455589,-0.917723834514618,-0.364136636257172,0.158705964684486, +-0.891765773296356,-0.292139291763306,0.345555365085602,-0.904984831809998,-0.257053256034851,0.339007496833801,-0.957286834716797,-0.159693911671638,0.241038918495178,-0.952116906642914,-0.191382601857185,0.238424405455589,-0.73882269859314,-0.41847437620163,0.528223633766174,-0.764118194580078,-0.392846435308456,0.511659264564514,-0.904984831809998,-0.257053256034851,0.339007496833801,-0.891765773296356,-0.292139291763306,0.345555365085602,-0.917723834514618,-0.364136636257172,0.158705964684486,-0.952116906642914,-0.191382601857185,0.238424405455589,-0.988030552864075,-0.0654797479510307,0.139670982956886,-0.965637505054474,-0.25279626250267,0.0603170990943909,-0.995224714279175,0.050151988863945,0.0837406516075134,-0.99558812379837,0.0150237353518605,0.0926198810338974,-0.988030552864075,-0.0654797479510307,0.139670982956886,-0.99026620388031,-0.0312759727239609,0.135626822710037,-0.961486876010895,-0.273843705654144,-0.0235074926167727,-0.970166742801666,-0.228205963969231,-0.0818443894386292,-0.979274868965149,-0.190437749028206,-0.0689512118697166,-0.97163712978363,-0.236452788114548,-0.00334431556984782,-0.952116906642914,-0.191382601857185,0.238424405455589,-0.957286834716797,-0.159693911671638,0.241038918495178,-0.99026620388031,-0.0312759727239609,0.135626822710037,-0.988030552864075,-0.0654797479510307,0.139670982956886,-0.961486876010895,-0.273843705654144,-0.0235074926167727,-0.9390709400177,-0.338641941547394,0.0588848367333412,-0.977363348007202,-0.181837975978851,0.108147487044334,-0.992032170295715,-0.122918725013733,0.0276260264217854,-0.97163712978363,-0.236452788114548,-0.00334431556984782,-0.947105586528778,-0.306440472602844,0.0953160524368286,-0.9390709400177,-0.338641941547394,0.0588848367333412,-0.961486876010895,-0.273843705654144,-0.0235074926167727,-0.979274868965149,-0.190437749028206,-0.0689512118697166,-0.970166742801666,-0.228205963969231,-0.0818443894386292,-0.976446092128754,-0.132949203252792,-0.169934079051018,-0.983071446418762,-0.0982120782136917,-0.154677271842957,-0.983071446418762,-0.0982120782136917,-0.154677271842957, +-0.976446092128754,-0.132949203252792,-0.169934079051018,-0.953835725784302,0.115405768156052,-0.277270495891571,-0.95547091960907,0.106037005782127,-0.275375068187714,-0.976446092128754,-0.132949203252792,-0.169934079051018,-0.990070223808289,0.0396941378712654,-0.134852916002274,-0.952376306056976,0.185740008950233,-0.241826102137566,-0.953835725784302,0.115405768156052,-0.277270495891571,-0.970166742801666,-0.228205963969231,-0.0818443894386292,-0.994631052017212,-0.0965266823768616,-0.0373038686811924,-0.990070223808289,0.0396941378712654,-0.134852916002274,-0.976446092128754,-0.132949203252792,-0.169934079051018,-0.999643266201019,-0.025479244068265,0.00800420250743628,-0.99169510602951,-0.121804192662239,-0.0412847921252251,-0.992962896823883,-0.0448131859302521,-0.109619721770287,-0.997947454452515,0.0414311997592449,-0.0488292574882507,-0.997947454452515,0.0414311997592449,-0.0488292574882507,-0.992962896823883,-0.0448131859302521,-0.109619721770287,-0.959869921207428,0.117983169853687,-0.2544204890728,-0.960423171520233,0.146283864974976,-0.237040758132935,-0.992962896823883,-0.0448131859302521,-0.109619721770287,-0.983071446418762,-0.0982120782136917,-0.154677271842957,-0.95547091960907,0.106037005782127,-0.275375068187714,-0.959869921207428,0.117983169853687,-0.2544204890728,-0.99169510602951,-0.121804192662239,-0.0412847921252251,-0.979274868965149,-0.190437749028206,-0.0689512118697166,-0.983071446418762,-0.0982120782136917,-0.154677271842957,-0.992962896823883,-0.0448131859302521,-0.109619721770287,-0.999643266201019,-0.025479244068265,0.00800420250743628,-0.997947454452515,0.0414311997592449,-0.0488292574882507,-0.993392169475555,0.114749424159527,-0.00209963088855147,-0.997232258319855,0.0469515509903431,0.0576493106782436,-0.997232258319855,0.0469515509903431,0.0576493106782436,-0.993392169475555,0.114749424159527,-0.00209963088855147,-0.992397904396057,0.121891438961029,0.0169975403696299,-0.995224714279175,0.050151988863945,0.0837406516075134,-0.993392169475555,0.114749424159527,-0.00209963088855147, +-0.959905743598938,0.15990161895752,-0.230244427919388,-0.962219893932343,0.125714436173439,-0.241513639688492,-0.992397904396057,0.121891438961029,0.0169975403696299,-0.997947454452515,0.0414311997592449,-0.0488292574882507,-0.960423171520233,0.146283864974976,-0.237040758132935,-0.959905743598938,0.15990161895752,-0.230244427919388,-0.993392169475555,0.114749424159527,-0.00209963088855147,-0.995224714279175,0.050151988863945,0.0837406516075134,-0.992397904396057,0.121891438961029,0.0169975403696299,-0.996597468852997,0.0782530531287193,0.0258827172219753,-0.99558812379837,0.0150237353518605,0.0926198810338974,-0.99558812379837,0.0150237353518605,0.0926198810338974,-0.996597468852997,0.0782530531287193,0.0258827172219753,-0.983412265777588,-0.141690373420715,-0.113243877887726,-0.985216319561005,-0.170767039060593,0.0136895691975951,-0.996597468852997,0.0782530531287193,0.0258827172219753,-0.965829968452454,0.0350237749516964,-0.256799280643463,-0.946085751056671,-0.113329820334911,-0.303443640470505,-0.983412265777588,-0.141690373420715,-0.113243877887726,-0.992397904396057,0.121891438961029,0.0169975403696299,-0.962219893932343,0.125714436173439,-0.241513639688492,-0.965829968452454,0.0350237749516964,-0.256799280643463,-0.996597468852997,0.0782530531287193,0.0258827172219753,-0.945762574672699,-0.268301486968994,0.183159947395325,-0.853363394737244,-0.3871710896492,0.349098354578018,-0.424128174781799,0.762127161026001,0.489160120487213,-0.408781379461288,0.80727356672287,0.425684303045273,-0.992032170295715,-0.122918725013733,0.0276260264217854,-0.977363348007202,-0.181837975978851,0.108147487044334,-0.403938621282578,0.82799357175827,0.388922035694122,-0.403244912624359,0.848339080810547,0.343095332384109,-0.945762574672699,-0.268301486968994,0.183159947395325,-0.408781379461288,0.80727356672287,0.425684303045273,-0.403938621282578,0.82799357175827,0.388922035694122,-0.977363348007202,-0.181837975978851,0.108147487044334,-0.990070223808289,0.0396941378712654,-0.134852916002274,-0.994631052017212,-0.0965266823768616,-0.0373038686811924, +-0.404508680105209,0.875312983989716,0.264952659606934,-0.382088601589203,0.91823935508728,0.104138001799583,-0.992032170295715,-0.122918725013733,0.0276260264217854,-0.403244912624359,0.848339080810547,0.343095332384109,-0.404508680105209,0.875312983989716,0.264952659606934,-0.994631052017212,-0.0965266823768616,-0.0373038686811924,-0.953835725784302,0.115405768156052,-0.277270495891571,-0.952376306056976,0.185740008950233,-0.241826102137566,-0.357530146837234,0.926915526390076,-0.11401641368866,-0.342633962631226,0.872563242912292,-0.348188728094101,-0.990070223808289,0.0396941378712654,-0.134852916002274,-0.382088601589203,0.91823935508728,0.104138001799583,-0.357530146837234,0.926915526390076,-0.11401641368866,-0.952376306056976,0.185740008950233,-0.241826102137566,-0.959869921207428,0.117983169853687,-0.2544204890728,-0.95547091960907,0.106037005782127,-0.275375068187714,-0.311021834611893,0.758113920688629,-0.573174059391022,-0.270094692707062,0.615147829055786,-0.740703642368317,-0.953835725784302,0.115405768156052,-0.277270495891571,-0.342633962631226,0.872563242912292,-0.348188728094101,-0.311021834611893,0.758113920688629,-0.573174059391022,-0.95547091960907,0.106037005782127,-0.275375068187714,-0.959905743598938,0.15990161895752,-0.230244427919388,-0.960423171520233,0.146283864974976,-0.237040758132935,-0.195976778864861,0.374445557594299,-0.906302213668823,-0.114598922431469,0.0986514165997505,-0.988501369953156,-0.959869921207428,0.117983169853687,-0.2544204890728,-0.270094692707062,0.615147829055786,-0.740703642368317,-0.195976778864861,0.374445557594299,-0.906302213668823,-0.960423171520233,0.146283864974976,-0.237040758132935,-0.965829968452454,0.0350237749516964,-0.256799280643463,-0.962219893932343,0.125714436173439,-0.241513639688492,-0.0509979538619518,-0.159659445285797,-0.985854029655457,0.0143258413299918,-0.447848200798035,-0.893994808197021,-0.959905743598938,0.15990161895752,-0.230244427919388,-0.114598922431469,0.0986514165997505,-0.988501369953156,-0.0509979538619518,-0.159659445285797,-0.985854029655457, +-0.962219893932343,0.125714436173439,-0.241513639688492,-0.983412265777588,-0.141690373420715,-0.113243877887726,-0.946085751056671,-0.113329820334911,-0.303443640470505,0.0679104551672935,-0.648036420345306,-0.758575677871704,0.0756487101316452,-0.781587302684784,-0.619191944599152,-0.965829968452454,0.0350237749516964,-0.256799280643463,0.0143258413299918,-0.447848200798035,-0.893994808197021,0.0679104551672935,-0.648036420345306,-0.758575677871704,-0.946085751056671,-0.113329820334911,-0.303443640470505,-0.965637505054474,-0.25279626250267,0.0603170990943909,-0.985216319561005,-0.170767039060593,0.0136895691975951,0.057095043361187,-0.863382458686829,-0.501309096813202,0.0581420473754406,-0.894277513027191,-0.443719953298569,-0.983412265777588,-0.141690373420715,-0.113243877887726,0.0756487101316452,-0.781587302684784,-0.619191944599152,0.057095043361187,-0.863382458686829,-0.501309096813202,-0.985216319561005,-0.170767039060593,0.0136895691975951,-0.844573855400085,-0.458493798971176,0.27654755115509,-0.917723834514618,-0.364136636257172,0.158705964684486,0.0556420534849167,-0.9095379114151,-0.411879658699036,0.0573644787073135,-0.920928537845612,-0.385486781597137,-0.965637505054474,-0.25279626250267,0.0603170990943909,0.0581420473754406,-0.894277513027191,-0.443719953298569,0.0556420534849167,-0.9095379114151,-0.411879658699036,-0.917723834514618,-0.364136636257172,0.158705964684486,-0.0560099147260189,-0.800769805908203,0.596347749233246,-0.678895652294159,-0.57173627614975,0.460671693086624,0.0752217844128609,-0.939485013484955,-0.33422988653183,0.168535068631172,-0.963177859783173,-0.209486126899719,-0.844573855400085,-0.458493798971176,0.27654755115509,0.0573644787073135,-0.920928537845612,-0.385486781597137,0.0752217844128609,-0.939485013484955,-0.33422988653183,-0.678895652294159,-0.57173627614975,0.460671693086624,0.361598342657089,-0.0712272375822067,0.92960923910141,0.377829998731613,-0.134092524647713,0.916113376617432,0.241753593087196,-0.118983514606953,0.963015198707581,0.223784565925598,-0.0620396696031094,0.972662091255188, +0.223784565925598,-0.0620396696031094,0.972662091255188,0.241753593087196,-0.118983514606953,0.963015198707581,0.0638734698295593,-0.115245692431927,0.991281270980835,0.071906216442585,-0.0729461312294006,0.994740307331085,0.241753593087196,-0.118983514606953,0.963015198707581,0.246597483754158,-0.220601752400398,0.943676054477692,0.0505744554102421,-0.216818645596504,0.974901020526886,0.0638734698295593,-0.115245692431927,0.991281270980835,0.377829998731613,-0.134092524647713,0.916113376617432,0.383983701467514,-0.234084784984589,0.893174588680267,0.246597483754158,-0.220601752400398,0.943676054477692,0.241753593087196,-0.118983514606953,0.963015198707581,0.0505744554102421,-0.216818645596504,0.974901020526886,0.246597483754158,-0.220601752400398,0.943676054477692,0.218548119068146,-0.327068895101547,0.919381678104401,0.0366969332098961,-0.326264470815659,0.944565951824188,0.0366969332098961,-0.326264470815659,0.944565951824188,0.218548119068146,-0.327068895101547,0.919381678104401,0.170277565717697,-0.404759466648102,0.898429334163666,0.0189603194594383,-0.40018105506897,0.91623991727829,0.218548119068146,-0.327068895101547,0.919381678104401,0.336872190237045,-0.329914152622223,0.881858110427856,0.28636845946312,-0.412363708019257,0.864840686321259,0.170277565717697,-0.404759466648102,0.898429334163666,0.246597483754158,-0.220601752400398,0.943676054477692,0.383983701467514,-0.234084784984589,0.893174588680267,0.336872190237045,-0.329914152622223,0.881858110427856,0.218548119068146,-0.327068895101547,0.919381678104401,0.0505744554102421,-0.216818645596504,0.974901020526886,0.0366969332098961,-0.326264470815659,0.944565951824188,-0.127728417515755,-0.318698853254318,0.939210653305054,-0.132243737578392,-0.221355453133583,0.966184973716736,-0.132243737578392,-0.221355453133583,0.966184973716736,-0.127728417515755,-0.318698853254318,0.939210653305054,-0.231495603919029,-0.308973133563995,0.922466993331909,-0.239904269576073,-0.232672616839409,0.942501604557037,-0.127728417515755,-0.318698853254318,0.939210653305054, +-0.117902912199497,-0.393635421991348,0.911674380302429,-0.216270342469215,-0.383504301309586,0.897859394550323,-0.231495603919029,-0.308973133563995,0.922466993331909,0.0366969332098961,-0.326264470815659,0.944565951824188,0.0189603194594383,-0.40018105506897,0.91623991727829,-0.117902912199497,-0.393635421991348,0.911674380302429,-0.127728417515755,-0.318698853254318,0.939210653305054,0.0505744554102421,-0.216818645596504,0.974901020526886,-0.132243737578392,-0.221355453133583,0.966184973716736,-0.119567878544331,-0.132719561457634,0.983915150165558,0.0638734698295593,-0.115245692431927,0.991281270980835,0.0638734698295593,-0.115245692431927,0.991281270980835,-0.119567878544331,-0.132719561457634,0.983915150165558,-0.105405382812023,-0.097995288670063,0.989589095115662,0.071906216442585,-0.0729461312294006,0.994740307331085,-0.119567878544331,-0.132719561457634,0.983915150165558,-0.23691163957119,-0.164822116494179,0.957447946071625,-0.23056648671627,-0.129148349165916,0.964447975158691,-0.105405382812023,-0.097995288670063,0.989589095115662,-0.132243737578392,-0.221355453133583,0.966184973716736,-0.239904269576073,-0.232672616839409,0.942501604557037,-0.23691163957119,-0.164822116494179,0.957447946071625,-0.119567878544331,-0.132719561457634,0.983915150165558,0.412259489297867,-0.423253208398819,0.806782960891724,0.454911947250366,-0.377363950014114,0.806629717350006,0.919804930686951,-0.00966162607073784,0.392257034778595,0.847694396972656,0.124246589839458,0.515729665756226,0.114812076091766,0.451685070991516,0.884759187698364,-0.0782053545117378,0.440202981233597,0.894485950469971,-0.0229926221072674,-0.400102138519287,0.916182100772858,0.0903514996170998,-0.41138967871666,0.906970322132111,0.900490403175354,0.243682965636253,0.360188245773315,0.847694396972656,0.124246589839458,0.515729665756226,0.919804930686951,-0.00966162607073784,0.392257034778595,0.970040500164032,0.0697208642959595,0.232723861932755,0.12865224480629,0.729240119457245,0.672054648399353,-0.0693510174751282,0.729603946208954,0.68034440279007, +-0.0782053545117378,0.440202981233597,0.894485950469971,0.114812076091766,0.451685070991516,0.884759187698364,-0.618683815002441,0.574086785316467,0.53633451461792,-0.623217701911926,0.403632968664169,0.669835925102234,-0.462848097085953,0.400284379720688,0.7909135222435,-0.4588922560215,0.640223324298859,0.616061687469482,0.721783816814423,0.439079016447067,0.535011827945709,0.681694686412811,0.325800359249115,0.655092775821686,0.776377737522125,0.210157230496407,0.594198167324066,0.814375281333923,0.356891125440598,0.457625955343246,0.361598342657089,-0.0712272375822067,0.92960923910141,0.339758992195129,-0.0431800372898579,0.939520835876465,0.471959412097931,-0.0620016865432262,0.879437386989594,0.484588295221329,-0.105302020907402,0.868381142616272,0.585570514202118,-0.198790192604065,0.785868704319,0.484588295221329,-0.105302020907402,0.868381142616272,0.471959412097931,-0.0620016865432262,0.879437386989594,0.567091405391693,-0.228764325380325,0.791248440742493,0.407100200653076,-0.198704659938812,0.891507685184479,0.567091405391693,-0.228764325380325,0.791248440742493,0.471959412097931,-0.0620016865432262,0.879437386989594,0.339758992195129,-0.0431800372898579,0.939520835876465,0.361598342657089,-0.0712272375822067,0.92960923910141,0.484588295221329,-0.105302020907402,0.868381142616272,0.484679192304611,-0.153817042708397,0.861061215400696,0.377829998731613,-0.134092524647713,0.916113376617432,0.377829998731613,-0.134092524647713,0.916113376617432,0.484679192304611,-0.153817042708397,0.861061215400696,0.479119181632996,-0.204020574688911,0.853709816932678,0.383983701467514,-0.234084784984589,0.893174588680267,0.484679192304611,-0.153817042708397,0.861061215400696,0.568796694278717,-0.199679255485535,0.797871232032776,0.552910208702087,-0.228044465184212,0.801427483558655,0.479119181632996,-0.204020574688911,0.853709816932678,0.484588295221329,-0.105302020907402,0.868381142616272,0.585570514202118,-0.198790192604065,0.785868704319,0.568796694278717,-0.199679255485535,0.797871232032776,0.484679192304611,-0.153817042708397,0.861061215400696, +0.0669140517711639,-0.20579332113266,0.976305067539215,0.237987101078033,-0.173029571771622,0.955731570720673,0.212204053997993,-0.0491059347987175,0.975990772247314,0.0682226195931435,-0.0804065465927124,0.994424760341644,0.0682226195931435,-0.0804065465927124,0.994424760341644,0.212204053997993,-0.0491059347987175,0.975990772247314,0.223784565925598,-0.0620396696031094,0.972662091255188,0.071906216442585,-0.0729461312294006,0.994740307331085,0.212204053997993,-0.0491059347987175,0.975990772247314,0.339758992195129,-0.0431800372898579,0.939520835876465,0.361598342657089,-0.0712272375822067,0.92960923910141,0.223784565925598,-0.0620396696031094,0.972662091255188,0.237987101078033,-0.173029571771622,0.955731570720673,0.407100200653076,-0.198704659938812,0.891507685184479,0.339758992195129,-0.0431800372898579,0.939520835876465,0.212204053997993,-0.0491059347987175,0.975990772247314,0.412259489297867,-0.423253208398819,0.806782960891724,0.351397186517715,-0.426370710134506,0.833503425121307,0.402608633041382,-0.350464791059494,0.845624387264252,0.454911947250366,-0.377363950014114,0.806629717350006,0.454911947250366,-0.377363950014114,0.806629717350006,0.402608633041382,-0.350464791059494,0.845624387264252,0.439279913902283,-0.301905274391174,0.846100568771362,0.496195912361145,-0.333043038845062,0.801792919635773,0.402608633041382,-0.350464791059494,0.845624387264252,0.336872190237045,-0.329914152622223,0.881858110427856,0.383983701467514,-0.234084784984589,0.893174588680267,0.439279913902283,-0.301905274391174,0.846100568771362,0.351397186517715,-0.426370710134506,0.833503425121307,0.28636845946312,-0.412363708019257,0.864840686321259,0.336872190237045,-0.329914152622223,0.881858110427856,0.402608633041382,-0.350464791059494,0.845624387264252,0.383983701467514,-0.234084784984589,0.893174588680267,0.479119181632996,-0.204020574688911,0.853709816932678,0.472198694944382,-0.265831053256989,0.840453624725342,0.439279913902283,-0.301905274391174,0.846100568771362,0.496195912361145,-0.333043038845062,0.801792919635773,0.439279913902283,-0.301905274391174,0.846100568771362, +0.472198694944382,-0.265831053256989,0.840453624725342,0.536541342735291,-0.283028483390808,0.794995725154877,0.552910208702087,-0.228044465184212,0.801427483558655,0.536541342735291,-0.283028483390808,0.794995725154877,0.472198694944382,-0.265831053256989,0.840453624725342,0.479119181632996,-0.204020574688911,0.853709816932678,-0.236912608146667,-0.243171244859695,0.940606236457825,-0.11465847492218,-0.244710266590118,0.962793052196503,-0.104917734861374,-0.116473980247974,0.987636625766754,-0.224461317062378,-0.130396842956543,0.965719282627106,-0.224461317062378,-0.130396842956543,0.965719282627106,-0.104917734861374,-0.116473980247974,0.987636625766754,-0.105405382812023,-0.097995288670063,0.989589095115662,-0.23056648671627,-0.129148349165916,0.964447975158691,-0.104917734861374,-0.116473980247974,0.987636625766754,0.0682226195931435,-0.0804065465927124,0.994424760341644,0.071906216442585,-0.0729461312294006,0.994740307331085,-0.105405382812023,-0.097995288670063,0.989589095115662,-0.11465847492218,-0.244710266590118,0.962793052196503,0.0669140517711639,-0.20579332113266,0.976305067539215,0.0682226195931435,-0.0804065465927124,0.994424760341644,-0.104917734861374,-0.116473980247974,0.987636625766754,0.28636845946312,-0.412363708019257,0.864840686321259,0.351397186517715,-0.426370710134506,0.833503425121307,0.296786248683929,-0.485381186008453,0.822388648986816,0.225928097963333,-0.469884157180786,0.853326022624969,0.225928097963333,-0.469884157180786,0.853326022624969,0.296786248683929,-0.485381186008453,0.822388648986816,0.261821687221527,-0.465790182352066,0.845274448394775,0.182404041290283,-0.438867568969727,0.87984311580658,0.296786248683929,-0.485381186008453,0.822388648986816,0.370273232460022,-0.465006470680237,0.804155945777893,0.346329301595688,-0.460982084274292,0.817038297653198,0.261821687221527,-0.465790182352066,0.845274448394775,0.351397186517715,-0.426370710134506,0.833503425121307,0.412259489297867,-0.423253208398819,0.806782960891724,0.370273232460022,-0.465006470680237,0.804155945777893,0.296786248683929,-0.485381186008453,0.822388648986816, +0.0189603194594383,-0.40018105506897,0.91623991727829,0.170277565717697,-0.404759466648102,0.898429334163666,0.122560702264309,-0.449457675218582,0.884854078292847,-0.00177549256477505,-0.44005936384201,0.897966921329498,-0.00177549256477505,-0.44005936384201,0.897966921329498,0.122560702264309,-0.449457675218582,0.884854078292847,0.0903514996170998,-0.41138967871666,0.906970322132111,-0.0229926221072674,-0.400102138519287,0.916182100772858,0.122560702264309,-0.449457675218582,0.884854078292847,0.225928097963333,-0.469884157180786,0.853326022624969,0.182404041290283,-0.438867568969727,0.87984311580658,0.0903514996170998,-0.41138967871666,0.906970322132111,0.170277565717697,-0.404759466648102,0.898429334163666,0.28636845946312,-0.412363708019257,0.864840686321259,0.225928097963333,-0.469884157180786,0.853326022624969,0.122560702264309,-0.449457675218582,0.884854078292847,-0.216270342469215,-0.383504301309586,0.897859394550323,-0.117902912199497,-0.393635421991348,0.911674380302429,-0.114331156015396,-0.437331706285477,0.892002940177917,-0.201531782746315,-0.434956759214401,0.877608954906464,-0.201531782746315,-0.434956759214401,0.877608954906464,-0.114331156015396,-0.437331706285477,0.892002940177917,-0.13127301633358,-0.397726476192474,0.908064424991608,-0.220540374517441,-0.394344121217728,0.892106890678406,-0.114331156015396,-0.437331706285477,0.892002940177917,-0.00177549256477505,-0.44005936384201,0.897966921329498,-0.0229926221072674,-0.400102138519287,0.916182100772858,-0.13127301633358,-0.397726476192474,0.908064424991608,-0.117902912199497,-0.393635421991348,0.911674380302429,0.0189603194594383,-0.40018105506897,0.91623991727829,-0.00177549256477505,-0.44005936384201,0.897966921329498,-0.114331156015396,-0.437331706285477,0.892002940177917,-0.216270342469215,-0.383504301309586,0.897859394550323,-0.201531782746315,-0.434956759214401,0.877608954906464,-0.266518384218216,-0.424553781747818,0.865287303924561,-0.282441169023514,-0.367245078086853,0.886204302310944,-0.282441169023514,-0.367245078086853,0.886204302310944, +-0.266518384218216,-0.424553781747818,0.865287303924561,-0.359492778778076,-0.371799051761627,0.855879962444305,-0.365729212760925,-0.331635147333145,0.869632244110107,-0.266518384218216,-0.424553781747818,0.865287303924561,-0.294802010059357,-0.388044625520706,0.873220026493073,-0.370895266532898,-0.358845919370651,0.856543183326721,-0.359492778778076,-0.371799051761627,0.855879962444305,-0.201531782746315,-0.434956759214401,0.877608954906464,-0.220540374517441,-0.394344121217728,0.892106890678406,-0.294802010059357,-0.388044625520706,0.873220026493073,-0.266518384218216,-0.424553781747818,0.865287303924561,-0.239904269576073,-0.232672616839409,0.942501604557037,-0.231495603919029,-0.308973133563995,0.922466993331909,-0.294351547956467,-0.300368249416351,0.907268404960632,-0.300563156604767,-0.242200091481209,0.922497093677521,-0.300563156604767,-0.242200091481209,0.922497093677521,-0.294351547956467,-0.300368249416351,0.907268404960632,-0.375633090734482,-0.286742269992828,0.881293714046478,-0.383601069450378,-0.250067085027695,0.888997554779053,-0.294351547956467,-0.300368249416351,0.907268404960632,-0.282441169023514,-0.367245078086853,0.886204302310944,-0.365729212760925,-0.331635147333145,0.869632244110107,-0.375633090734482,-0.286742269992828,0.881293714046478,-0.231495603919029,-0.308973133563995,0.922466993331909,-0.216270342469215,-0.383504301309586,0.897859394550323,-0.282441169023514,-0.367245078086853,0.886204302310944,-0.294351547956467,-0.300368249416351,0.907268404960632,-0.239904269576073,-0.232672616839409,0.942501604557037,-0.300563156604767,-0.242200091481209,0.922497093677521,-0.29730635881424,-0.190878078341484,0.935507595539093,-0.23691163957119,-0.164822116494179,0.957447946071625,-0.23691163957119,-0.164822116494179,0.957447946071625,-0.29730635881424,-0.190878078341484,0.935507595539093,-0.289451032876968,-0.153645440936089,0.944781005382538,-0.23056648671627,-0.129148349165916,0.964447975158691,-0.29730635881424,-0.190878078341484,0.935507595539093,-0.380535304546356,-0.220748290419579,0.898032903671265, +-0.373126238584518,-0.202009245753288,0.90552145242691,-0.289451032876968,-0.153645440936089,0.944781005382538,-0.300563156604767,-0.242200091481209,0.922497093677521,-0.383601069450378,-0.250067085027695,0.888997554779053,-0.380535304546356,-0.220748290419579,0.898032903671265,-0.29730635881424,-0.190878078341484,0.935507595539093,-0.23056648671627,-0.129148349165916,0.964447975158691,-0.289451032876968,-0.153645440936089,0.944781005382538,-0.279362350702286,-0.137008681893349,0.950360655784607,-0.224461317062378,-0.130396842956543,0.965719282627106,-0.224461317062378,-0.130396842956543,0.965719282627106,-0.279362350702286,-0.137008681893349,0.950360655784607,-0.304406583309174,-0.231144770979881,0.924071848392487,-0.236912608146667,-0.243171244859695,0.940606236457825,-0.279362350702286,-0.137008681893349,0.950360655784607,-0.365831911563873,-0.199143916368484,0.90912526845932,-0.373045593500137,-0.249453783035278,0.893649697303772,-0.304406583309174,-0.231144770979881,0.924071848392487,-0.289451032876968,-0.153645440936089,0.944781005382538,-0.373126238584518,-0.202009245753288,0.90552145242691,-0.365831911563873,-0.199143916368484,0.90912526845932,-0.279362350702286,-0.137008681893349,0.950360655784607,0.12865224480629,0.729240119457245,0.672054648399353,0.114812076091766,0.451685070991516,0.884759187698364,0.282006412744522,0.429831594228745,0.857739567756653,0.310237944126129,0.683920979499817,0.6603062748909,-0.277505487203598,0.692932605743408,0.665458619594574,-0.282528609037399,0.412074953317642,0.86624002456665,-0.0782053545117378,0.440202981233597,0.894485950469971,-0.0693510174751282,0.729603946208954,0.68034440279007,0.282006412744522,0.429831594228745,0.857739567756653,0.114812076091766,0.451685070991516,0.884759187698364,0.0903514996170998,-0.41138967871666,0.906970322132111,0.182404041290283,-0.438867568969727,0.87984311580658,-0.13127301633358,-0.397726476192474,0.908064424991608,-0.0229926221072674,-0.400102138519287,0.916182100772858,-0.0782053545117378,0.440202981233597,0.894485950469971,-0.282528609037399,0.412074953317642,0.86624002456665, +-0.220540374517441,-0.394344121217728,0.892106890678406,-0.13127301633358,-0.397726476192474,0.908064424991608,-0.282528609037399,0.412074953317642,0.86624002456665,-0.462848097085953,0.400284379720688,0.7909135222435,-0.294802010059357,-0.388044625520706,0.873220026493073,-0.220540374517441,-0.394344121217728,0.892106890678406,-0.462848097085953,0.400284379720688,0.7909135222435,-0.623217701911926,0.403632968664169,0.669835925102234,-0.282528609037399,0.412074953317642,0.86624002456665,-0.277505487203598,0.692932605743408,0.665458619594574,-0.4588922560215,0.640223324298859,0.616061687469482,-0.462848097085953,0.400284379720688,0.7909135222435,-0.876497566699982,0.370114117860794,0.307843327522278,-0.864598631858826,0.269353866577148,0.42416700720787,-0.759624361991882,0.387805163860321,0.522090017795563,-0.754851043224335,0.491557121276855,0.434248238801956,-0.370895266532898,-0.358845919370651,0.856543183326721,-0.294802010059357,-0.388044625520706,0.873220026493073,-0.623217701911926,0.403632968664169,0.669835925102234,-0.759624361991882,0.387805163860321,0.522090017795563,-0.359492778778076,-0.371799051761627,0.855879962444305,-0.370895266532898,-0.358845919370651,0.856543183326721,-0.759624361991882,0.387805163860321,0.522090017795563,-0.864598631858826,0.269353866577148,0.42416700720787,-0.623217701911926,0.403632968664169,0.669835925102234,-0.618683815002441,0.574086785316467,0.53633451461792,-0.754851043224335,0.491557121276855,0.434248238801956,-0.759624361991882,0.387805163860321,0.522090017795563,-0.997382342815399,0.0232590083032846,0.0684652924537659,-0.981013774871826,-0.0117723168805242,0.193580150604248,-0.943304657936096,0.128374010324478,0.30609866976738,-0.965314388275146,0.196021303534508,0.172463580965996,-0.365729212760925,-0.331635147333145,0.869632244110107,-0.359492778778076,-0.371799051761627,0.855879962444305,-0.864598631858826,0.269353866577148,0.42416700720787,-0.943304657936096,0.128374010324478,0.30609866976738,-0.375633090734482,-0.286742269992828,0.881293714046478,-0.365729212760925,-0.331635147333145,0.869632244110107, +-0.943304657936096,0.128374010324478,0.30609866976738,-0.981013774871826,-0.0117723168805242,0.193580150604248,-0.864598631858826,0.269353866577148,0.42416700720787,-0.876497566699982,0.370114117860794,0.307843327522278,-0.965314388275146,0.196021303534508,0.172463580965996,-0.943304657936096,0.128374010324478,0.30609866976738,-0.940168678760529,-0.327005445957184,-0.0956568121910095,-0.940913558006287,-0.338642805814743,-0.00165420596022159,-0.981829702854156,-0.167553246021271,0.0890862345695496,-0.988168895244598,-0.152195602655411,-0.0189413130283356,-0.383601069450378,-0.250067085027695,0.888997554779053,-0.375633090734482,-0.286742269992828,0.881293714046478,-0.981013774871826,-0.0117723168805242,0.193580150604248,-0.981829702854156,-0.167553246021271,0.0890862345695496,-0.380535304546356,-0.220748290419579,0.898032903671265,-0.383601069450378,-0.250067085027695,0.888997554779053,-0.981829702854156,-0.167553246021271,0.0890862345695496,-0.940913558006287,-0.338642805814743,-0.00165420596022159,-0.981013774871826,-0.0117723168805242,0.193580150604248,-0.997382342815399,0.0232590083032846,0.0684652924537659,-0.988168895244598,-0.152195602655411,-0.0189413130283356,-0.981829702854156,-0.167553246021271,0.0890862345695496,-0.856195330619812,-0.510899305343628,-0.0768875479698181,-0.853770732879639,-0.496541082859039,-0.156596824526787,-0.729135036468506,-0.654514133930206,-0.199933186173439,-0.727086067199707,-0.672135472297668,-0.139927685260773,-0.373126238584518,-0.202009245753288,0.90552145242691,-0.380535304546356,-0.220748290419579,0.898032903671265,-0.940913558006287,-0.338642805814743,-0.00165420596022159,-0.856195330619812,-0.510899305343628,-0.0768875479698181,-0.365831911563873,-0.199143916368484,0.90912526845932,-0.373126238584518,-0.202009245753288,0.90552145242691,-0.856195330619812,-0.510899305343628,-0.0768875479698181,-0.727086067199707,-0.672135472297668,-0.139927685260773,-0.940913558006287,-0.338642805814743,-0.00165420596022159,-0.940168678760529,-0.327005445957184,-0.0956568121910095,-0.853770732879639,-0.496541082859039,-0.156596824526787, +-0.856195330619812,-0.510899305343628,-0.0768875479698181,-0.572177171707153,-0.788367331027985,-0.226031348109245,-0.562346875667572,-0.80561751127243,-0.186403945088387,-0.727086067199707,-0.672135472297668,-0.139927685260773,-0.729135036468506,-0.654514133930206,-0.199933186173439,-0.373045593500137,-0.249453783035278,0.893649697303772,-0.365831911563873,-0.199143916368484,0.90912526845932,-0.727086067199707,-0.672135472297668,-0.139927685260773,-0.562346875667572,-0.80561751127243,-0.186403945088387,-0.304406583309174,-0.231144770979881,0.924071848392487,-0.373045593500137,-0.249453783035278,0.893649697303772,-0.562346875667572,-0.80561751127243,-0.186403945088387,-0.401149660348892,-0.897936820983887,-0.181075885891914,-0.562346875667572,-0.80561751127243,-0.186403945088387,-0.572177171707153,-0.788367331027985,-0.226031348109245,-0.403691470623016,-0.885030508041382,-0.231849893927574,-0.401149660348892,-0.897936820983887,-0.181075885891914,-0.23504313826561,-0.947100758552551,-0.218528777360916,-0.24049811065197,-0.957556545734406,-0.158889815211296,-0.401149660348892,-0.897936820983887,-0.181075885891914,-0.403691470623016,-0.885030508041382,-0.231849893927574,-0.236912608146667,-0.243171244859695,0.940606236457825,-0.304406583309174,-0.231144770979881,0.924071848392487,-0.401149660348892,-0.897936820983887,-0.181075885891914,-0.24049811065197,-0.957556545734406,-0.158889815211296,-0.11465847492218,-0.244710266590118,0.962793052196503,-0.236912608146667,-0.243171244859695,0.940606236457825,-0.24049811065197,-0.957556545734406,-0.158889815211296,-0.0643943771719933,-0.989104688167572,-0.132382586598396,-0.24049811065197,-0.957556545734406,-0.158889815211296,-0.23504313826561,-0.947100758552551,-0.218528777360916,-0.055339727550745,-0.978889107704163,-0.19675774872303,-0.0643943771719933,-0.989104688167572,-0.132382586598396,0.104748383164406,-0.978583991527557,-0.177204132080078,0.0985888317227364,-0.98917955160141,-0.108646064996719,-0.0643943771719933,-0.989104688167572,-0.132382586598396,-0.055339727550745,-0.978889107704163,-0.19675774872303, +0.0669140517711639,-0.20579332113266,0.976305067539215,-0.11465847492218,-0.244710266590118,0.962793052196503,-0.0643943771719933,-0.989104688167572,-0.132382586598396,0.0985888317227364,-0.98917955160141,-0.108646064996719,0.237987101078033,-0.173029571771622,0.955731570720673,0.0669140517711639,-0.20579332113266,0.976305067539215,0.0985888317227364,-0.98917955160141,-0.108646064996719,0.242297947406769,-0.965703427791595,-0.0933194682002068,0.246732816100121,-0.955414950847626,-0.162188947200775,0.242297947406769,-0.965703427791595,-0.0933194682002068,0.0985888317227364,-0.98917955160141,-0.108646064996719,0.104748383164406,-0.978583991527557,-0.177204132080078,0.534683704376221,-0.8309525847435,-0.153724044561386,0.52061128616333,-0.847798883914948,-0.100999131798744,0.380318164825439,-0.920312225818634,-0.0915612876415253,0.384059190750122,-0.910068333148956,-0.155801773071289,0.407100200653076,-0.198704659938812,0.891507685184479,0.237987101078033,-0.173029571771622,0.955731570720673,0.242297947406769,-0.965703427791595,-0.0933194682002068,0.380318164825439,-0.920312225818634,-0.0915612876415253,0.567091405391693,-0.228764325380325,0.791248440742493,0.407100200653076,-0.198704659938812,0.891507685184479,0.380318164825439,-0.920312225818634,-0.0915612876415253,0.52061128616333,-0.847798883914948,-0.100999131798744,0.242297947406769,-0.965703427791595,-0.0933194682002068,0.246732816100121,-0.955414950847626,-0.162188947200775,0.384059190750122,-0.910068333148956,-0.155801773071289,0.380318164825439,-0.920312225818634,-0.0915612876415253,0.854321300983429,-0.515301883220673,-0.0678176209330559,0.847756087779999,-0.530036389827728,0.0192636363208294,0.700317442417145,-0.711113631725311,-0.0622319169342518,0.716777622699738,-0.685908377170563,-0.125537008047104,0.585570514202118,-0.198790192604065,0.785868704319,0.567091405391693,-0.228764325380325,0.791248440742493,0.52061128616333,-0.847798883914948,-0.100999131798744,0.700317442417145,-0.711113631725311,-0.0622319169342518,0.568796694278717,-0.199679255485535,0.797871232032776, +0.585570514202118,-0.198790192604065,0.785868704319,0.700317442417145,-0.711113631725311,-0.0622319169342518,0.847756087779999,-0.530036389827728,0.0192636363208294,0.52061128616333,-0.847798883914948,-0.100999131798744,0.534683704376221,-0.8309525847435,-0.153724044561386,0.716777622699738,-0.685908377170563,-0.125537008047104,0.700317442417145,-0.711113631725311,-0.0622319169342518,0.918535530567169,-0.384821027517319,0.0905824452638626,0.929130434989929,-0.369726181030273,-0.00436251796782017,0.971522450447083,-0.228972852230072,0.0609547533094883,0.95450621843338,-0.250995069742203,0.160994559526443,0.552910208702087,-0.228044465184212,0.801427483558655,0.568796694278717,-0.199679255485535,0.797871232032776,0.847756087779999,-0.530036389827728,0.0192636363208294,0.918535530567169,-0.384821027517319,0.0905824452638626,0.536541342735291,-0.283028483390808,0.794995725154877,0.552910208702087,-0.228044465184212,0.801427483558655,0.918535530567169,-0.384821027517319,0.0905824452638626,0.95450621843338,-0.250995069742203,0.160994559526443,0.847756087779999,-0.530036389827728,0.0192636363208294,0.854321300983429,-0.515301883220673,-0.0678176209330559,0.929130434989929,-0.369726181030273,-0.00436251796782017,0.918535530567169,-0.384821027517319,0.0905824452638626,0.955842077732086,-0.133473619818687,0.261821866035461,0.95450621843338,-0.250995069742203,0.160994559526443,0.971522450447083,-0.228972852230072,0.0609547533094883,0.987255394458771,-0.08931715041399,0.131716072559357,0.496195912361145,-0.333043038845062,0.801792919635773,0.536541342735291,-0.283028483390808,0.794995725154877,0.95450621843338,-0.250995069742203,0.160994559526443,0.955842077732086,-0.133473619818687,0.261821866035461,0.370273232460022,-0.465006470680237,0.804155945777893,0.412259489297867,-0.423253208398819,0.806782960891724,0.847694396972656,0.124246589839458,0.515729665756226,0.776377737522125,0.210157230496407,0.594198167324066,0.847694396972656,0.124246589839458,0.515729665756226,0.900490403175354,0.243682965636253,0.360188245773315,0.814375281333923,0.356891125440598,0.457625955343246, +0.776377737522125,0.210157230496407,0.594198167324066,0.310237944126129,0.683920979499817,0.6603062748909,0.282006412744522,0.429831594228745,0.857739567756653,0.482747048139572,0.386345744132996,0.785933911800385,0.542903184890747,0.568707466125488,0.617922186851501,0.346329301595688,-0.460982084274292,0.817038297653198,0.370273232460022,-0.465006470680237,0.804155945777893,0.776377737522125,0.210157230496407,0.594198167324066,0.681694686412811,0.325800359249115,0.655092775821686,0.261821687221527,-0.465790182352066,0.845274448394775,0.346329301595688,-0.460982084274292,0.817038297653198,0.681694686412811,0.325800359249115,0.655092775821686,0.482747048139572,0.386345744132996,0.785933911800385,0.681694686412811,0.325800359249115,0.655092775821686,0.721783816814423,0.439079016447067,0.535011827945709,0.542903184890747,0.568707466125488,0.617922186851501,0.482747048139572,0.386345744132996,0.785933911800385,0.282006412744522,0.429831594228745,0.857739567756653,0.182404041290283,-0.438867568969727,0.87984311580658,0.261821687221527,-0.465790182352066,0.845274448394775,0.482747048139572,0.386345744132996,0.785933911800385,0.454911947250366,-0.377363950014114,0.806629717350006,0.496195912361145,-0.333043038845062,0.801792919635773,0.955842077732086,-0.133473619818687,0.261821866035461,0.919804930686951,-0.00966162607073784,0.392257034778595,-0.907795488834381,-0.107258103787899,-0.405466347932816,-0.990585923194885,-0.0885618776082993,-0.104385480284691,-0.99059271812439,-0.0885570496320724,-0.104325637221336,-0.907998085021973,-0.107239425182343,-0.405017554759979,-0.462027758359909,0.493673712015152,-0.736760854721069,-0.67251980304718,0.486120939254761,-0.558035373687744,-0.656684577465057,0.521762013435364,-0.544545352458954,-0.453362017869949,0.528726577758789,-0.717573046684265,-0.993463218212128,-0.0900352150201797,0.0701736137270927,-0.984600245952606,-0.172810226678848,0.0264330040663481,-0.99169510602951,-0.121804192662239,-0.0412847921252251,-0.999643266201019,-0.025479244068265,0.00800420250743628,0.919804930686951,-0.00966162607073784,0.392257034778595, +0.955842077732086,-0.133473619818687,0.261821866035461,0.987255394458771,-0.08931715041399,0.131716072559357,0.970040500164032,0.0697208642959595,0.232723861932755,-0.00524978945031762,-0.562684535980225,0.826655030250549,-0.0293660555034876,-0.545552730560303,0.837561786174774,-0.195457860827446,-0.548572957515717,0.812935352325439,-0.168257042765617,-0.562811315059662,0.809279263019562 + } + NormalsW: *11977 { + 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 + } + } + LayerElementBinormal: 0 { + Version: 102 + Name: "DiffuseUV" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Binormals: *35931 { + a: 0.435547024011612,-0.826435804367065,-0.356794983148575,0.434305787086487,-0.789192140102386,-0.434228390455246,0.431962192058563,-0.763501286506653,-0.480077594518661,0.382855892181396,-0.782141149044037,-0.491606146097183,0.335917681455612,-0.915172815322876,-0.222751379013062,0.337825059890747,-0.912336766719818,-0.231334894895554,0.419471114873886,-0.768498599529266,-0.483170568943024,0.386960864067078,-0.888336300849915,-0.247224822640419,0.382252335548401,-0.896763205528259,-0.222932457923889,0.378337144851685,-0.889832317829132,-0.255067527294159,0.378695130348206,-0.890880167484283,-0.250844061374664,0.343378514051437,-0.795236706733704,-0.499689608812332,0.381809204816818,-0.775619268417358,-0.502629637718201,0.381642580032349,-0.782568156719208,-0.491869956254959,0.381685346364975,-0.738266170024872,-0.556129038333893,-0.34134766459465,-0.630868315696716,0.696768939495087,-0.353712618350983,-0.637363076210022,0.684584379196167,-0.354366719722748,-0.636446475982666,0.685098707675934,-0.342131048440933,-0.629958391189575,0.697207808494568,-0.440658509731293,-0.501175820827484,0.744743466377258,-0.449237853288651,-0.499941051006317,0.740435302257538,-0.453828632831573,-0.494952321052551,0.740987002849579,-0.445809096097946,-0.496661841869354,0.744702100753784,-0.552345633506775,-0.416196703910828,0.722284317016602,-0.592745363712311,-0.385589838027954,0.707088053226471,-0.621837437152863,-0.336059242486954,0.707377135753632,-0.585569560527802,-0.371981829404831,0.720234632492065,-0.626838624477386,-0.39208048582077,0.673309981822968,-0.625527918338776,-0.39285084605217,0.674079418182373,-0.615446209907532,-0.36736848950386,0.69732803106308,-0.617067396640778,-0.366173386573792,0.696523427963257,-0.571599006652832,-0.503405809402466,0.647963881492615,-0.623772740364075,-0.483585357666016,0.614046216011047,-0.673863232135773,-0.405503898859024,0.617636680603027,-0.624309659004211,-0.432450085878372,0.650557100772858,0.503817617893219,-0.826773166656494,-0.250227957963943,0.489196687936783,-0.738239467144012,-0.464423447847366, +0.503837525844574,-0.82912415266037,-0.242282941937447,0.0885842144489288,0.893189370632172,0.440869361162186,0.0212918724864721,0.89511114358902,0.445334553718567,0.088488906621933,0.892309069633484,0.442667424678802,0.155380725860596,0.886651158332825,0.435553133487701,-0.0019444078207016,0.569551587104797,-0.821953296661377,0.0395915955305099,0.591977000236511,-0.804981887340546,-0.0223330873996019,0.597849011421204,-0.801297605037689,-0.0667281076312065,0.578720092773438,-0.812791705131531,-0.084252767264843,0.40377813577652,-0.910969138145447,-0.0677732229232788,0.421138286590576,-0.904460787773132,-0.0855033248662949,0.468093395233154,-0.879532754421234,-0.103639602661133,0.452956318855286,-0.885488271713257,-0.0409603081643581,0.224737733602524,-0.973558127880096,-0.0366507358849049,0.231904193758965,-0.972047924995422,-0.110554799437523,0.26680314540863,-0.957389056682587,-0.11513577401638,0.260071665048599,-0.958700478076935,0.0556603819131851,0.0394344441592693,-0.997670769691467,0.0691739171743393,0.0765238776803017,-0.994665384292603,0.00663471966981888,0.144606381654739,-0.989467084407806,-0.00952461641281843,0.110065296292305,-0.993878722190857,0.195951297879219,-0.188539907336235,-0.962317883968353,0.204947635531425,-0.149941578507423,-0.967219710350037,0.115565270185471,-0.0852797850966454,-0.989632368087769,0.105089262127876,-0.121903151273727,-0.986962974071503,0.445847451686859,-0.393905282020569,-0.803777694702148,0.450821161270142,-0.365097373723984,-0.814533054828644,0.361836761236191,-0.332945078611374,-0.870759248733521,0.356341958045959,-0.361408889293671,-0.861628770828247,-0.38781601190567,0.470320284366608,-0.792715311050415,-0.388330847024918,0.462374180555344,-0.797125697135925,-0.390540957450867,0.453973710536957,-0.800865590572357,-0.391405075788498,0.461627304553986,-0.796054363250732,0.400079786777496,-0.775907695293427,-0.487753391265869,0.386659651994705,-0.862303197383881,-0.326997607946396,0.381273180246353,-0.879429936408997,-0.285015791654587,0.457521438598633,-0.594699621200562,-0.661064743995667, +0.439261913299561,-0.760497748851776,-0.478217959403992,0.457475692033768,-0.596613585948944,-0.659369587898254,-0.449583292007446,0.0380794033408165,-0.892426490783691,-0.45524674654007,0.0030152196995914,-0.890360176563263,-0.420478522777557,0.0356350839138031,-0.906602442264557,-0.419351756572723,0.0715619325637817,-0.904998898506165,-0.633380770683289,-0.152453646063805,-0.758674383163452,-0.651297271251678,-0.197528019547462,-0.732662677764893,-0.543655514717102,-0.202783524990082,-0.814443051815033,-0.531891822814941,-0.150062158703804,-0.833410263061523,-0.895615816116333,0.0792655646800995,-0.437709271907806,-0.918278157711029,0.0432035773992538,-0.39357191324234,-0.856740117073059,-0.0309090651571751,-0.514821529388428,-0.830631732940674,0.00415624631568789,-0.556806564331055,0.271798521280289,-0.257906407117844,0.927151560783386,0.263984888792038,-0.241456538438797,0.933815181255341,0.31694284081459,-0.237066105008125,0.918339252471924,0.322541475296021,-0.254038840532303,0.911828517913818,0.400224685668945,-0.775853931903839,-0.487720161676407,0.398583024740219,-0.807292342185974,-0.435213387012482,0.394993722438812,-0.838759362697601,-0.374783754348755,0.439407825469971,-0.760436952114105,-0.478180289268494,0.454727113246918,-0.598470389842987,-0.659588098526001,0.454728305339813,-0.598351120948792,-0.659695446491241,0.132616147398949,-0.297934800386429,0.945329546928406,0.194527208805084,-0.255877465009689,0.946935057640076,0.195440247654915,-0.25634554028511,0.946620345115662,0.134643524885178,-0.298707842826843,0.944798827171326,0.0423637479543686,-0.384028226137161,0.922348976135254,0.0689620301127434,-0.330819815397263,0.941170811653137,0.0555648505687714,-0.315830618143082,0.947187185287476,0.0283149071037769,-0.371210783720016,0.928116917610168,-0.0102503607049584,-0.475534319877625,0.879637539386749,0.00907064881175756,-0.486611545085907,0.873571455478668,0.0209997016936541,-0.43520599603653,0.900086045265198,0.00232672691345215,-0.421500086784363,0.906825423240662,-0.03849171474576,-0.547438323497772,0.835960268974304, +-0.0509425699710846,-0.504404425621033,0.861963510513306,-0.078936442732811,-0.491275817155838,0.867419838905334,-0.0675783902406693,-0.537627160549164,0.840470314025879,0.0884745195508003,-0.622827291488647,0.777340650558472,0.0276588685810566,-0.59307587146759,0.804671406745911,-0.0378109477460384,-0.580577790737152,0.813326478004456,0.0219418443739414,-0.620945155620575,0.783546984195709,0.302594721317291,-0.796242296695709,-0.523865103721619,0.328528553247452,-0.735279023647308,-0.59281849861145,0.348291784524918,-0.735029220581055,-0.581743061542511,0.321949511766434,-0.793858468532562,-0.5158851146698,0.365070372819901,-0.893039405345917,-0.263067454099655,0.362443506717682,-0.881636142730713,-0.302245616912842,0.338433235883713,-0.796763300895691,-0.500630795955658,0.439953446388245,-0.760209858417511,-0.478039711713791,0.452444076538086,-0.607257425785065,-0.65309476852417,0.452312171459198,-0.623261332511902,-0.637933492660522,0.408213794231415,-0.611322939395905,-0.677971839904785,0.388737678527832,-0.780048727989197,-0.490313202142715,0.408316135406494,-0.608201801776886,-0.68071186542511,0.412822812795639,-0.771086156368256,-0.484771490097046,0.405239045619965,-0.595657408237457,-0.693522691726685,0.404469430446625,-0.589065313339233,-0.699576020240784,0.350562065839767,-0.792974710464478,-0.498294502496719,0.33764836192131,-0.607452869415283,-0.719023406505585,0.337375581264496,-0.605329632759094,-0.720939517021179,0.4335797727108,-0.762841045856476,-0.479668825864792,0.424816429615021,-0.575971484184265,-0.698418140411377,0.425482094287872,-0.581368148326874,-0.693524420261383,0.392151057720184,-0.778817296028137,-0.489552110433578,0.38926887512207,-0.639385581016541,-0.663065552711487,0.387073129415512,-0.614683210849762,-0.68726921081543,0.37109962105751,-0.77021712064743,-0.518701016902924,0.370305746793747,-0.729637265205383,-0.57489401102066,0.37089866399765,-0.786280691623688,-0.494163006544113,0.320454120635986,-0.616659343242645,-0.71905517578125,0.321097940206528,-0.622727811336517,-0.713516891002655, +0.32986843585968,-0.7993483543396,-0.502224028110504,0.584359586238861,0.807528972625732,0.0801296606659889,0.61147129535675,0.778968214988708,0.138965606689453,0.592393696308136,0.793385624885559,0.140032798051834,0.568994045257568,0.817982792854309,0.0845577344298363,0.691256999969482,0.683019578456879,-0.23589850962162,0.655466198921204,0.700052082538605,-0.283357322216034,0.692396640777588,0.668121874332428,-0.272396862506866,0.723530948162079,0.651820123195648,-0.227230623364449,0.458327353000641,0.863750457763672,0.209454670548439,0.484123200178146,0.833921909332275,0.264951258897781,0.474238455295563,0.837556600570679,0.271287500858307,0.453370660543442,0.863500952720642,0.220955312252045,0.626293897628784,0.699187994003296,-0.344807267189026,0.580177962779999,0.722736120223999,-0.375561058521271,0.606133341789246,0.705896258354187,-0.366487294435501,0.656567394733429,0.677228212356567,-0.33208629488945,0.569638967514038,0.817620158195496,0.0837184488773346,0.564448833465576,0.824402451515198,0.0419309139251709,0.552085041999817,0.831292271614075,0.0644626170396805,0.559044420719147,0.821849584579468,0.109693229198456,0.573398470878601,0.801442980766296,-0.170009836554527,0.588172018527985,0.777487874031067,-0.222634762525558,0.558104932308197,0.773108839988708,-0.301366209983826,0.546729326248169,0.799013018608093,-0.250330656766891,0.518073737621307,0.854249596595764,0.0430981256067753,0.497641891241074,0.867302060127258,-0.0118220299482346,0.474066823720932,0.880455255508423,0.00770996697247028,0.497060358524323,0.865184605121613,0.0662318617105484,0.232319697737694,0.905311942100525,0.355581104755402,0.335365355014801,0.862269401550293,0.379501730203629,0.260212779045105,0.87321138381958,0.412057220935822,0.157631903886795,0.906389832496643,0.391930848360062,0.451452255249023,0.873148798942566,0.183853626251221,0.423022150993347,0.885707199573517,0.191246166825294,0.425274908542633,0.873234033584595,0.237915456295013,0.449552476406097,0.864539802074432,0.224663138389587,0.252554506063461,0.921471059322357,0.295139670372009, +0.251794010400772,0.938208818435669,0.237411141395569,0.184065267443657,0.958215415477753,0.218959793448448,0.189829602837563,0.940409421920776,0.282125651836395,0.35675448179245,0.932733654975891,0.0522909238934517,0.425444930791855,0.904269576072693,0.0359613001346588,0.419543504714966,0.906325697898865,-0.0505679324269295,0.352131754159927,0.935345888137817,-0.0336340181529522,0.496284961700439,0.599647760391235,-0.627792835235596,0.436114847660065,0.610787510871887,-0.660865008831024,0.431447267532349,0.629503309726715,-0.646203458309174,0.489778339862823,0.61910206079483,-0.613864719867706,0.451158076524734,0.674140512943268,-0.584799945354462,0.509569048881531,0.683009326457977,-0.523295044898987,0.492265254259109,0.72227531671524,-0.48579153418541,0.432901978492737,0.71464991569519,-0.549428284168243,0.295439213514328,0.954839825630188,0.0315680913627148,0.223508879542351,0.974243521690369,0.0298901200294495,0.230367630720139,0.966171741485596,0.115944117307663,0.297404736280441,0.948130667209625,0.112243957817554,0.165570661425591,0.983171820640564,-0.0771977230906487,0.0939218625426292,0.992282748222351,-0.0809548124670982,0.124301478266716,0.992244243621826,0.00084207218606025,0.192043632268906,0.981384873390198,0.00172954075969756,0.320097684860229,0.524240136146545,-0.789119601249695,0.295387953519821,0.573355972766876,-0.764204740524292,0.208277016878128,0.563272535800934,-0.799590468406677,0.224260181188583,0.518038749694824,-0.825435161590576,0.373147815465927,0.737521767616272,-0.562869727611542,0.369133800268173,0.714955925941467,-0.593783140182495,0.272414594888687,0.710967719554901,-0.648317337036133,0.27569568157196,0.735076725482941,-0.619398176670074,0.132813706994057,0.475558191537857,-0.869600474834442,0.100548602640629,0.45909857749939,-0.882676959037781,0.0230173971503973,0.451777428388596,-0.891833662986755,0.0512557737529278,0.470188200473785,-0.881076574325562,0.19929413497448,0.661117672920227,-0.723329305648804,0.183410510420799,0.638297259807587,-0.747621059417725,0.0960193127393723,0.617896914482117,-0.78037416934967, +0.112486511468887,0.64250522851944,-0.757980227470398,-0.0392107740044594,0.36970391869545,-0.928321957588196,-0.0721739083528519,0.35502153635025,-0.932067930698395,-0.149870753288269,0.343739539384842,-0.927028477191925,-0.113656170666218,0.359113752841949,-0.926347494125366,0.0398603491485119,0.552240073680878,-0.832731783390045,0.0109032709151506,0.530225396156311,-0.847786664962769,-0.0711912736296654,0.500686943531036,-0.86269599199295,-0.0415466837584972,0.524953186511993,-0.850116431713104,-0.188406348228455,0.252038776874542,-0.949199497699738,-0.233672946691513,0.237825825810432,-0.9427809715271,-0.304585367441177,0.221254974603653,-0.926430821418762,-0.260175675153732,0.236429035663605,-0.93616771697998,-0.304110139608383,0.174969792366028,-0.936430871486664,-0.372261375188828,0.154582396149635,-0.915164411067963,-0.326178461313248,0.1719771027565,-0.929532945156097,-0.255973309278488,0.191685810685158,-0.947488367557526,-0.102667167782784,0.432843059301376,-0.895603895187378,-0.144689232110977,0.407287418842316,-0.901766121387482,-0.222123235464096,0.369476675987244,-0.902301609516144,-0.178709581494331,0.397845357656479,-0.899878859519958,-0.422911256551743,0.0393501035869122,-0.905316293239594,-0.478596866130829,0.0132343675941229,-0.87793505191803,-0.432869166135788,0.0362275056540966,-0.900728523731232,-0.37303814291954,0.0627561137080193,-0.925691187381744,-0.231219127774239,0.309479624032974,-0.922366619110107,-0.283524602651596,0.274300217628479,-0.918897807598114,-0.352202713489532,0.228484228253365,-0.907605826854706,-0.299475729465485,0.266570448875427,-0.916108369827271,-0.500094294548035,-0.100711926817894,-0.860094726085663,-0.542464077472687,-0.130220085382462,-0.829925000667572,-0.502632558345795,-0.102062985301018,-0.858454287052155,-0.455204427242279,-0.0707963034510612,-0.88756799697876,-0.339547246694565,0.183664336800575,-0.922483205795288,-0.395498037338257,0.135104492306709,-0.908475756645203,-0.450783848762512,0.0839816406369209,-0.888673841953278,-0.396422028541565,0.134425789117813,-0.908173680305481, +-0.554589033126831,-0.214938223361969,-0.803885996341705,-0.579861521720886,-0.271604627370834,-0.768109142780304,-0.522938191890717,-0.259899228811264,-0.81178092956543,-0.499415785074234,-0.205352455377579,-0.841673493385315,-0.423736900091171,0.0566146150231361,-0.904014229774475,-0.475432723760605,-0.00482900440692902,-0.879738867282867,-0.51471471786499,-0.0562845915555954,-0.855512022972107,-0.465480089187622,0.00599583890289068,-0.885038018226624,-0.572523772716522,-0.366782158613205,-0.733271718025208,-0.586007654666901,-0.42311903834343,-0.691061019897461,-0.535724341869354,-0.39550119638443,-0.746041774749756,-0.521845698356628,-0.340143263339996,-0.782291293144226,-0.478958547115326,-0.0655262097716331,-0.875388622283936,-0.534323215484619,-0.126704081892967,-0.835730075836182,-0.556438684463501,-0.191808700561523,-0.808446288108826,-0.50125640630722,-0.126099154353142,-0.856061339378357,-0.539233267307281,-0.521356582641602,-0.661373376846313,-0.553331136703491,-0.558924615383148,-0.617598593235016,-0.531390190124512,-0.503115355968475,-0.681541919708252,-0.51620352268219,-0.466661721467972,-0.71816486120224,-0.523245215415955,-0.185850828886032,-0.831669330596924,-0.55358761548996,-0.272135078907013,-0.787072539329529,-0.570336699485779,-0.329305380582809,-0.75251179933548,-0.545130014419556,-0.247874051332474,-0.800869464874268,-0.491360694169998,-0.63862270116806,-0.592221021652222,-0.494946777820587,-0.677072763442993,-0.54461008310318,-0.487459778785706,-0.606504857540131,-0.628120124340057,-0.481403350830078,-0.568668842315674,-0.666983187198639,-0.548605263233185,-0.312635958194733,-0.775429666042328,-0.557027041912079,-0.393047451972961,-0.731597363948822,-0.559362232685089,-0.436250030994415,-0.704840302467346,-0.554194986820221,-0.362536132335663,-0.74929004907608,-0.555148303508759,-0.438053250312805,-0.707050025463104,-0.550491452217102,-0.484419763088226,-0.679924011230469,-0.549061596393585,-0.409671574831009,-0.728491961956024,-0.551048219203949,-0.363570272922516,-0.751107454299927,-0.404413819313049,-0.720862925052643,-0.562855422496796, +-0.388481616973877,-0.788882195949554,-0.476179569959641,-0.367284893989563,-0.827542841434479,-0.424587666988373,-0.384663015604019,-0.769237816333771,-0.51020359992981,-0.533814966678619,-0.539580941200256,-0.651071488857269,-0.518618881702423,-0.599749326705933,-0.609372913837433,-0.537452161312103,-0.506851255893707,-0.673978507518768,-0.546733260154724,-0.455328226089478,-0.702679812908173,-0.593056201934814,-0.294054955244064,-0.749543905258179,-0.5826336145401,-0.211711779236794,-0.7846759557724,-0.570201098918915,-0.140153363347054,-0.809461534023285,-0.58506441116333,-0.227404206991196,-0.77845162153244,-0.637263119220734,-0.260567724704742,-0.725258767604828,-0.637359738349915,-0.316129267215729,-0.702733874320984,-0.646004438400269,-0.22581647336483,-0.729167461395264,-0.642362058162689,-0.168697565793991,-0.747604370117188,-0.322370916604996,-0.817625045776367,-0.477039068937302,-0.287576705217361,-0.872068107128143,-0.395975857973099,-0.255319088697433,-0.903234362602234,-0.344934612512589,-0.290876597166061,-0.856365561485291,-0.426648557186127,-0.480692446231842,-0.666613876819611,-0.569702386856079,-0.450805008411407,-0.725556671619415,-0.519944727420807,-0.501378893852234,-0.628552198410034,-0.594593584537506,-0.524537801742554,-0.566929697990417,-0.635177850723267,-0.64428722858429,-0.362648904323578,-0.673334777355194,-0.6397625207901,-0.410238325595856,-0.649929583072662,-0.665739893913269,-0.326101809740067,-0.671154320240021,-0.667030215263367,-0.276076555252075,-0.691991746425629,-0.214046493172646,-0.887032032012939,-0.409094423055649,-0.161366626620293,-0.927716732025146,-0.336604565382004,-0.12470369040966,-0.948507189750671,-0.291175365447998,-0.176091313362122,-0.915141940116882,-0.362639129161835,-0.400417029857635,-0.776990830898285,-0.485748559236526,-0.361283302307129,-0.821250081062317,-0.44161382317543,-0.43998521566391,-0.735729336738586,-0.514893591403961,-0.474352806806564,-0.684875905513763,-0.553113341331482,-0.641273140907288,-0.465144455432892,-0.610253632068634,-0.620118737220764,-0.527867555618286,-0.580352187156677, +-0.668040633201599,-0.437604188919067,-0.601850748062134,-0.681604146957397,-0.3798987865448,-0.62537407875061,-0.0805790200829506,-0.93114823102951,-0.355626255273819,-0.00853328499943018,-0.955656290054321,-0.294361054897308,0.0486207902431488,-0.970893740653992,-0.234523773193359,-0.0237032808363438,-0.954124331474304,-0.298471301794052,-0.290824085474014,-0.858361065387726,-0.422655522823334,-0.246694535017014,-0.897365570068359,-0.365891844034195,-0.359918296337128,-0.832421898841858,-0.421346187591553,-0.401427894830704,-0.783859550952911,-0.473729759454727,-0.605379819869995,-0.591475248336792,-0.532609045505524,-0.57134073972702,-0.649737417697906,-0.50140905380249,-0.64337420463562,-0.561206996440887,-0.520688354969025,-0.66986358165741,-0.502731561660767,-0.546391606330872,-0.755484044551849,-0.208219438791275,-0.621199250221252,-0.743506252765656,-0.266944229602814,-0.613138854503632,-0.749904274940491,-0.248735994100571,-0.613004088401794,-0.760978639125824,-0.18958243727684,-0.62045955657959,-0.763972997665405,-0.329369902610779,-0.554852068424225,-0.742344081401825,-0.387123018503189,-0.546864867210388,-0.748214781284332,-0.369993060827255,-0.550708472728729,-0.768637955188751,-0.312819749116898,-0.557978212833405,-0.717654466629028,-0.206646800041199,-0.665033280849457,-0.715762436389923,-0.149725094437599,-0.682104527950287,-0.697799742221832,-0.219410374760628,-0.681861162185669,-0.697157323360443,-0.274156183004379,-0.662427484989166,-0.730861365795135,-0.449002385139465,-0.514041543006897,-0.717304766178131,-0.511215686798096,-0.473426312208176,-0.745325028896332,-0.50258594751358,-0.438061654567719,-0.759846091270447,-0.439350128173828,-0.479171633720398,-0.66695511341095,-0.0973768979310989,-0.738707423210144,-0.66754537820816,-0.0354059338569641,-0.743726849555969,-0.657137393951416,0.0269846245646477,-0.753287672996521,-0.658391177654266,-0.0258837901055813,-0.752230823040009,-0.573276579380035,-0.155071899294853,-0.804553687572479,-0.538825809955597,-0.076700933277607,-0.838918149471283,-0.519721329212189,-0.0132057815790176,-0.854233801364899, +-0.555706143379211,-0.0867876261472702,-0.826836585998535,-0.629778623580933,0.0398267544806004,-0.775753080844879,-0.61908346414566,0.0855721533298492,-0.780649185180664,-0.602580547332764,0.147471681237221,-0.784314215183258,-0.613780677318573,0.108054682612419,-0.782047033309937,-0.53200888633728,-0.0210453867912292,-0.846477150917053,-0.495279312133789,0.0477756559848785,-0.867419123649597,-0.462404727935791,0.104955606162548,-0.880435228347778,-0.500161111354828,0.0397399365901947,-0.865020036697388,-0.578386723995209,0.167689383029938,-0.798341453075409,-0.565449297428131,0.201486676931381,-0.799793839454651,-0.54035747051239,0.261059999465942,-0.799913465976715,-0.552846014499664,0.23286384344101,-0.800084948539734,-0.473397076129913,0.112365230917931,-0.873652815818787,-0.432149052619934,0.168958082795143,-0.885833263397217,-0.385689854621887,0.227326244115829,-0.894184708595276,-0.427135229110718,0.174643784761429,-0.887161254882813,-0.511933982372284,0.294029146432877,-0.807137191295624,-0.499968290328979,0.319579362869263,-0.804922819137573,-0.463431864976883,0.383849889039993,-0.798680424690247,-0.474102109670639,0.363314509391785,-0.802016139030457,-0.38656884431839,0.255656868219376,-0.886117458343506,-0.346546083688736,0.298876881599426,-0.889144778251648,-0.28836515545845,0.353088080883026,-0.890041768550873,-0.32619047164917,0.31491082906723,-0.891308605670929,-0.429894685745239,0.43149796128273,-0.793095350265503,-0.424144566059113,0.446944773197174,-0.787617743015289,-0.380484014749527,0.506819725036621,-0.77354109287262,-0.382124483585358,0.497942209243774,-0.778482139110565,-0.272856116294861,0.39922171831131,-0.875312387943268,-0.242601871490479,0.429900318384171,-0.869672417640686,-0.172366440296173,0.479012817144394,-0.860718607902527,-0.199730724096298,0.452562361955643,-0.869077026844025,-0.333354473114014,0.568776309490204,-0.751909852027893,-0.34000751376152,0.574298977851868,-0.744698286056519,-0.282271444797516,0.635585367679596,-0.718577802181244,-0.272385627031326,0.633428990840912,-0.724274694919586, +-0.136053711175919,0.538586437702179,-0.831513166427612,-0.120797209441662,0.562040209770203,-0.81824141740799,-0.0445021092891693,0.602907955646515,-0.796568632125854,-0.0564766190946102,0.58247309923172,-0.810885608196259,-0.223201751708984,0.707759201526642,-0.67026698589325,-0.245203286409378,0.708820104598999,-0.661399602890015,-0.18574433028698,0.760973274707794,-0.621625900268555,-0.157875746488571,0.762859642505646,-0.626993119716644,0.015304908156395,0.665573835372925,-0.746175050735474,0.0128476321697235,0.687355279922485,-0.726207673549652,0.0965028256177902,0.719762682914734,-0.687480211257935,0.101364903151989,0.699445903301239,-0.707460641860962,-0.105164110660553,0.829794108867645,-0.548071384429932,-0.14523346722126,0.827311813831329,-0.542643845081329,-0.0752250552177429,0.870853900909424,-0.485751777887344,-0.0324457883834839,0.87220299243927,-0.48806694149971,0.177317261695862,0.772873222827911,-0.609282970428467,0.15680505335331,0.795626759529114,-0.585141181945801,0.239416018128395,0.815137922763824,-0.527475118637085,0.26229789853096,0.792375981807709,-0.550763189792633,0.0170920360833406,0.922445893287659,-0.385748207569122,-0.0359330028295517,0.923369407653809,-0.38222736120224,0.025059025734663,0.950225234031677,-0.310554683208466,0.0824252441525459,0.947127759456635,-0.310088783502579,0.342170059680939,0.838715434074402,-0.423646152019501,0.304510027170181,0.867094457149506,-0.39423468708992,0.370648741722107,0.873847961425781,-0.314657360315323,0.410047233104706,0.844916522502899,-0.343478262424469,0.0111962491646409,0.956457555294037,-0.291656941175461,0.0744126439094543,0.97521048784256,-0.208392411470413,0.141347274184227,0.969039261341095,-0.202445045113564,0.0715718045830727,0.953809499740601,-0.291761815547943,0.399508595466614,0.863029658794403,-0.309148639440536,0.351101726293564,0.895481944084167,-0.273568600416183,0.386886715888977,0.902437925338745,-0.18953800201416,0.437128514051437,0.870783925056458,-0.225064754486084,0.117704749107361,0.993015587329865,0.00810642912983894,0.157143607735634,0.983150541782379,0.0933858007192612, +0.222843825817108,0.968504011631012,0.111088588833809,0.177859738469124,0.983854293823242,0.0199196133762598,0.106023080646992,0.951371788978577,0.289224654436111,0.0983131676912308,0.93425053358078,0.342798143625259,0.15076707303524,0.922616720199585,0.355032026767731,0.160408467054367,0.938956737518311,0.304350823163986,0.0975879356265068,0.924096643924713,0.369489043951035,0.0625531822443008,0.914916574954987,0.398766607046127,0.11734639108181,0.905013918876648,0.408876240253448,0.158474341034889,0.906442642211914,0.391468554735184,0.0682149827480316,0.90153443813324,0.427296847105026,0.135777115821838,0.859200239181519,0.493294596672058,0.0906018689274788,0.863429248332977,0.496267378330231,0.0260025076568127,0.897612810134888,0.440017372369766,-0.0203636065125465,0.902425348758698,0.430364698171616,-0.000313766300678253,0.904445052146912,0.426589965820313,0.0247579477727413,0.898489236831665,0.438296884298325,0.00593784544616938,0.894961416721344,0.446104139089584,-0.0629800781607628,0.888818204402924,0.453911542892456,-0.00321881053969264,0.845642149448395,0.533740520477295,0.0401699170470238,0.851812660694122,0.522304058074951,-0.0189728997647762,0.893997669219971,0.447669982910156,-0.0817792490124702,0.891470730304718,0.445636928081512,-0.0981999561190605,0.887603938579559,0.450017780065536,-0.0801133960485458,0.886739492416382,0.455274641513824,-0.0630435571074486,0.888555467128754,0.454416781663895,-0.129728138446808,0.879297316074371,0.458265066146851,-0.105845302343369,0.831673443317413,0.545083701610565,-0.0859731361269951,0.835428178310394,0.542833745479584,-0.109312631189823,0.88263863325119,0.457165151834488,-0.144747719168663,0.883216083049774,0.446068853139877,-0.158758983016014,0.885513782501221,0.436647325754166,-0.144361570477486,0.877527713775635,0.457279741764069,-0.130586117506027,0.879763305187225,0.457125842571259,0.288524031639099,-0.851916432380676,-0.437026709318161,0.302170872688293,-0.796327650547028,-0.523980140686035,0.304439872503281,-0.798082768917084,-0.519981026649475,0.291893839836121,-0.851114392280579,-0.436351120471954, +0.381447732448578,-0.77896386384964,-0.497707664966583,0.410548180341721,-0.769917368888855,-0.488546133041382,0.361377090215683,-0.83524364233017,-0.41445729136467,0.333024352788925,-0.840418636798859,-0.427541136741638,0.285473495721817,-0.852570056915283,-0.43775475025177,0.274577856063843,-0.869387269020081,-0.41081976890564,0.28137069940567,-0.868348002433777,-0.408414661884308,0.292387902736664,-0.851150691509247,-0.435949355363846,0.424714863300323,-0.774714410305023,-0.468438804149628,0.445487767457962,-0.765973687171936,-0.463492184877396,0.397841036319733,-0.827233910560608,-0.396744936704636,0.376728177070618,-0.83328241109848,-0.404618769884109,0.333248257637024,-0.841760396957397,-0.424717575311661,0.319989502429962,-0.860381484031677,-0.396674275398254,0.312913119792938,-0.864665806293488,-0.392986863851547,0.328338921070099,-0.84128999710083,-0.429447025060654,0.420652627944946,-0.825918555259705,-0.375379890203476,0.513443112373352,-0.758947014808655,-0.400469154119492,0.568351984024048,-0.738601386547089,-0.362552136182785,0.477540552616119,-0.812419295310974,-0.334559321403503,0.377994060516357,-0.831627607345581,-0.406836628913879,0.35467928647995,-0.860885083675385,-0.364800691604614,0.346487492322922,-0.86612331867218,-0.360245615243912,0.372026830911636,-0.834100961685181,-0.407273441553116,0.459770739078522,-0.79216068983078,-0.401363253593445,0.464241504669189,-0.758997082710266,-0.456511974334717,0.476931393146515,-0.767715752124786,-0.427959024906158,0.454893946647644,-0.819838166236877,-0.34775984287262,0.410856395959854,-0.827842116355896,-0.381935507059097,0.370322376489639,-0.865684747695923,-0.336825311183929,0.372394293546677,-0.872064113616943,-0.317532449960709,0.420653223991394,-0.825918436050415,-0.37537944316864,0.591188549995422,-0.719849467277527,-0.36374843120575,0.595652878284454,-0.71288925409317,-0.370117127895355,0.600189208984375,-0.707114934921265,-0.373846858739853,0.586114704608917,-0.727196097373962,-0.357288926839828,0.605138123035431,-0.723343789577484,-0.332538276910782, +0.598601281642914,-0.728934347629547,-0.332161694765091,0.603146970272064,-0.725895702838898,-0.330589115619659,0.604439258575439,-0.726960718631744,-0.325854748487473,0.405181735754013,-0.855187654495239,-0.323236763477325,0.369714081287384,-0.883456945419312,-0.287776470184326,0.347116768360138,-0.903636336326599,-0.250901192426682,0.388716757297516,-0.873313546180725,-0.293637424707413,0.511364817619324,-0.780173420906067,-0.360326886177063,0.472595304250717,-0.815966010093689,-0.332946360111237,0.460428357124329,-0.830822587013245,-0.312633603811264,0.505500376224518,-0.791036486625671,-0.344573140144348,-0.669980943202972,-0.530748426914215,0.51906818151474,-0.703570425510406,-0.478774785995483,0.525131821632385,-0.70828241109848,-0.437521398067474,0.553995668888092,-0.676072359085083,-0.492590606212616,0.547978818416595,0.64192795753479,-0.685981333255768,-0.342575758695602,0.624919652938843,-0.705134749412537,-0.335053026676178,0.630609393119812,-0.69961804151535,-0.335956037044525,0.654778957366943,-0.671912431716919,-0.346118956804276,0.605202853679657,-0.713859379291534,-0.352327227592468,0.580182552337646,-0.740805745124817,-0.338518917560577,0.571393668651581,-0.749739825725555,-0.333765715360641,0.603402018547058,-0.715682864189148,-0.351716101169586,0.638588666915894,-0.701238930225372,-0.316967904567719,0.631735742092133,-0.707506358623505,-0.316772550344467,0.66252738237381,-0.676252841949463,-0.322086274623871,0.664302587509155,-0.675195336341858,-0.320645362138748,0.63504683971405,-0.720723330974579,-0.277980953454971,0.637090921401978,-0.718554973602295,-0.278915703296661,0.668072283267975,-0.69018965959549,-0.278060525655746,0.667563736438751,-0.691133260726929,-0.276935875415802,0.5762619972229,-0.749675035476685,-0.325437307357788,0.559437870979309,-0.765172839164734,-0.318653404712677,0.600086688995361,-0.72595077753067,-0.335993349552155,0.609737396240234,-0.716421008110046,-0.339059442281723,0.551949620246887,-0.780912160873413,-0.292451411485672,0.55023205280304,-0.783606648445129,-0.288453489542007, +0.605421543121338,-0.739285469055176,-0.294825196266174,0.603163242340088,-0.739148914813995,-0.299754977226257,0.492374360561371,-0.811137616634369,-0.315631628036499,0.430531948804855,-0.857529163360596,-0.28157776594162,0.395604372024536,-0.881873488426208,-0.256508320569992,0.470284730195999,-0.830786824226379,-0.297700256109238,0.347395539283752,-0.902692079544067,-0.253896296024323,0.294979572296143,-0.932680070400238,-0.207593232393265,0.246004685759544,-0.955276608467102,-0.164098501205444,0.305154293775558,-0.927463889122009,-0.216082841157913,0.275406002998352,-0.939299702644348,-0.204615756869316,0.199540168046951,-0.96841961145401,-0.149490252137184,0.160724848508835,-0.979243516921997,-0.123489834368229,0.247655510902405,-0.950694262981415,-0.186674222350121,0.395275115966797,-0.881868064403534,-0.257033586502075,0.378732293844223,-0.892248153686523,-0.245876252651215,0.465450435876846,-0.83764910697937,-0.285832017660141,0.472435504198074,-0.831034064292908,-0.29357635974884,0.187312752008438,-0.966159880161285,-0.177338838577271,0.0906308442354202,-0.988181173801422,-0.123629063367844,0.0395643189549446,-0.993701636791229,-0.104841232299805,0.129781246185303,-0.979198634624481,-0.155970975756645,0.358526736497879,-0.90318888425827,-0.236026614904404,0.312306225299835,-0.924397110939026,-0.218986332416534,0.426444828510284,-0.867218494415283,-0.257054388523102,0.459952116012573,-0.845990121364594,-0.269712209701538,0.552965223789215,-0.789645254611969,-0.265875697135925,0.528633594512939,-0.807964205741882,-0.260269612073898,0.593895494937897,-0.761458456516266,-0.259748250246048,0.611701488494873,-0.74528831243515,-0.265267223119736,0.642558991909027,-0.722550630569458,-0.255026549100876,0.627126336097717,-0.738532483577728,-0.247552677989006,0.634798943996429,-0.735131621360779,-0.23793226480484,0.671904861927032,-0.699811160564423,-0.242504119873047,0.343970865011215,-0.913188636302948,-0.218565121293068,0.206964045763016,-0.95712149143219,-0.20269313454628,0.148203954100609,-0.969036757946014,-0.197492837905884, +0.29049950838089,-0.932199597358704,-0.215902954339981,0.49705982208252,-0.837680637836456,-0.226324409246445,0.463076591491699,-0.856913208961487,-0.226406559348106,0.543638527393341,-0.81081360578537,-0.216883778572083,0.569342255592346,-0.79297137260437,-0.216900229454041,0.0733324587345123,-0.983843445777893,-0.163323178887367,-0.0243494492024183,-0.991204380989075,-0.130081281065941,-0.0815785229206085,-0.990580677986145,-0.109976559877396,0.0157160088419914,-0.989455282688141,-0.143983945250511,0.605623602867126,-0.756424725055695,-0.247066497802734,0.584232330322266,-0.783217012882233,-0.212706029415131,0.589881122112274,-0.788955807685852,-0.172015234827995,0.615716755390167,-0.760590672492981,-0.2058996707201,-0.0611374899744987,-0.984069049358368,-0.166944354772568,-0.161921128630638,-0.975808382034302,-0.14689975976944,-0.224680513143539,-0.965236306190491,-0.13355752825737,-0.129178673028946,-0.979625284671783,-0.153776779770851,0.14759087562561,-0.968357682228088,-0.201247334480286,0.0772242993116379,-0.976482629776001,-0.201291307806969,0.223812326788902,-0.951193869113922,-0.212457746267319,0.290943205356598,-0.933490395545959,-0.209636881947517,-0.229607045650482,-0.959496438503265,-0.163239642977715,-0.291076987981796,-0.94423645734787,-0.153921499848366,-0.199772134423256,-0.965371429920197,-0.167777374386787,-0.131504729390144,-0.975426256656647,-0.176777318120003,0.417942643165588,-0.885757148265839,-0.20188669860363,0.358003437519073,-0.909333884716034,-0.212003499269485,0.456674665212631,-0.868604719638824,-0.192286938428879,0.506233632564545,-0.842934966087341,-0.18217633664608,0.551871776580811,-0.817074775695801,-0.166812941431999,0.514581084251404,-0.837372660636902,-0.184427082538605,0.52920925617218,-0.828047454357147,-0.185135275125504,0.561248302459717,-0.810218572616577,-0.168956398963928,0.419805914163589,-0.894910633563995,-0.151321142911911,0.403428673744202,-0.901083946228027,-0.159037724137306,0.349374383687973,-0.918475329875946,-0.18531234562397,0.366411149501801,-0.913332939147949,-0.17766797542572, +0.0056975637562573,-0.976336717605591,-0.216181099414825,-0.066170796751976,-0.971737563610077,-0.226599931716919,0.0790483504533768,-0.971573829650879,-0.223149463534355,0.152422398328781,-0.965855598449707,-0.209500283002853,-0.356388837099075,-0.91290271282196,-0.198986783623695,-0.426701992750168,-0.879677653312683,-0.209982544183731,-0.3447405397892,-0.909975290298462,-0.230432629585266,-0.269166231155396,-0.938082993030548,-0.218059331178665,0.325570374727249,-0.93214362859726,-0.15846848487854,0.216156184673309,-0.955227434635162,-0.20203272998333,0.143631801009178,-0.963749289512634,-0.224849745631218,0.260415494441986,-0.948223471641541,-0.181813627481461,0.271355867385864,-0.953869819641113,-0.12844580411911,0.250986248254776,-0.959018588066101,-0.131488859653473,0.199413046240807,-0.963804483413696,-0.176962018013,0.22151018679142,-0.959698081016541,-0.172953724861145,-0.138891577720642,-0.957096815109253,-0.254312634468079,-0.218147128820419,-0.937861561775208,-0.269865602254868,-0.0807043388485909,-0.964879870414734,-0.249987334012985,0.000577650964260101,-0.973061203956604,-0.230546489357948,-0.496369510889053,-0.826324939727783,-0.266091048717499,-0.56248277425766,-0.776895940303802,-0.282923877239227,-0.491570860147476,-0.81799727678299,-0.298728197813034,-0.419037282466888,-0.863737523555756,-0.279938161373138,0.161368474364281,-0.97659170627594,-0.142228543758392,0.0526371151208878,-0.976236522197723,-0.210218161344528,-0.0290068686008453,-0.971407830715179,-0.235638558864594,0.0851864293217659,-0.982121407985687,-0.167871430516243,0.126734927296638,-0.977529466152191,-0.168447211384773,0.1303900629282,-0.970191836357117,-0.204270228743553,0.0491131469607353,-0.970743775367737,-0.235041797161102,0.0425419136881828,-0.978582262992859,-0.201412588357925,0.0147805456072092,-0.977646052837372,-0.209737673401833,-0.102353535592556,-0.954890310764313,-0.278761953115463,-0.170783370733261,-0.928268492221832,-0.330379664897919,-0.0529823079705238,-0.963008284568787,-0.26421183347702,-0.543413281440735,-0.70794665813446,-0.451124787330627, +-0.493184119462967,-0.762313902378082,-0.419102489948273,-0.585298836231232,-0.685102939605713,-0.433658003807068,-0.628811359405518,-0.626257836818695,-0.460866034030914,-0.294510096311569,-0.904743432998657,-0.307738780975342,-0.369319289922714,-0.866817951202393,-0.335007339715958,-0.24093122780323,-0.920063018798828,-0.308927565813065,-0.162533029913902,-0.946988046169281,-0.277122467756271,-0.705903947353363,-0.580213963985443,-0.406265079975128,-0.662475883960724,-0.64135354757309,-0.387028992176056,-0.681415677070618,-0.630199313163757,-0.372184902429581,-0.724177539348602,-0.567779362201691,-0.391399592161179,0.925475239753723,0.345766246318817,-0.154729977250099,0.920710682868958,0.343225687742233,-0.185709476470947,0.912924766540527,0.355408072471619,-0.200633093714714,0.918090224266052,0.357869297266006,-0.170411422848701,-0.934792399406433,-0.145741850137711,-0.323917359113693,-0.929326415061951,-0.116471156477928,-0.350409716367722,-0.922749280929565,-0.0862777158617973,-0.375619500875473,-0.929664194583893,-0.115789495408535,-0.349739044904709,-0.941356360912323,-0.151736930012703,-0.301370531320572,-0.942443370819092,-0.164805516600609,-0.290928959846497,-0.939648032188416,-0.184991613030434,-0.287819057703018,-0.938448071479797,-0.172671809792519,-0.29916524887085,-0.929542303085327,-0.367974042892456,-0.0233717560768127,-0.925902366638184,-0.375437468290329,-0.0418536998331547,-0.924949884414673,-0.378418564796448,-0.0355990417301655,-0.928611636161804,-0.370680570602417,-0.0166274309158325,-0.875819861888885,-0.46825385093689,0.116952806711197,-0.875124096870422,-0.471527338027954,0.108719259500504,-0.874398946762085,-0.471948325634003,0.112655892968178,-0.874395132064819,-0.470425844192505,0.118881776928902,-0.772094249725342,-0.60760372877121,0.186247885227203,-0.786695122718811,-0.577517807483673,0.21813727915287,-0.783311128616333,-0.582209050655365,0.217844545841217,-0.76792311668396,-0.612943112850189,0.18599659204483,-0.614338934421539,-0.755892872810364,0.226304575800896,-0.625837862491608,-0.736274898052216,0.257344871759415, +-0.625773012638092,-0.736923396587372,0.255640476942062,-0.61434680223465,-0.755915284156799,0.226208478212357,-0.465428948402405,-0.814543008804321,0.346259444952011,-0.455268025398254,-0.827410340309143,0.32882097363472,-0.458713501691818,-0.826170861721039,0.327144712209702,-0.468911588191986,-0.812887191772461,0.345450848340988,-0.30645626783371,-0.829788386821747,0.466407299041748,-0.305829018354416,-0.840494334697723,0.447255998849869,-0.301727116107941,-0.840694546699524,0.44965922832489,-0.302088677883148,-0.83030116558075,0.468340158462524,-0.228466153144836,-0.830446541309357,0.50809645652771,-0.22064220905304,-0.831059455871582,0.510546088218689,-0.209381371736526,-0.840748012065887,0.499301970005035,-0.217348903417587,-0.840028464794159,0.497103184461594,-0.0258330628275871,-0.816036820411682,0.577422380447388,-0.0241381675004959,-0.815555095672607,0.578175783157349,-0.0236987508833408,-0.823263645172119,0.567164242267609,-0.0254654623568058,-0.823680520057678,0.566481947898865,0.165081575512886,-0.769006490707397,0.617557287216187,0.168171942234039,-0.767854988574982,0.618156015872955,0.16742205619812,-0.777989506721497,0.605559468269348,0.164253100752831,-0.779104948043823,0.604992926120758,0.349507510662079,-0.677559435367584,0.647114932537079,0.353746205568314,-0.675503611564636,0.646960973739624,0.353571504354477,-0.694831013679504,0.626256465911865,0.349083602428436,-0.696990430355072,0.626374661922455,0.530589461326599,-0.58063668012619,0.617524027824402,0.534955382347107,-0.578380346298218,0.61587256193161,0.529980480670929,-0.577968895435333,0.620542228221893,0.525680899620056,-0.580599844455719,0.621742367744446,0.697332203388214,-0.47761607170105,0.534425616264343,0.698679685592651,-0.476400673389435,0.533750116825104,0.696828603744507,-0.475048571825027,0.53736275434494,0.695424914360046,-0.476008266210556,0.538331091403961,0.842873454093933,-0.303261697292328,0.444518506526947,0.843929290771484,-0.300849080085754,0.444154411554337,0.845217227935791,-0.313914507627487,0.432510763406754,0.844021141529083,-0.316034615039825,0.433302074670792, +0.941041350364685,-0.134197697043419,0.310535609722137,0.944956481456757,-0.127426356077194,0.301363170146942,0.939653277397156,-0.127922490239143,0.317313134670258,0.935955286026001,-0.136403679847717,0.324625670909882,0.990233540534973,0.00597062706947327,0.139291331171989,0.990697383880615,0.00761668384075165,0.1358702480793,0.988691627979279,0.0150695387274027,0.149204269051552,0.988024950027466,0.014262281358242,0.153633669018745,0.987740159034729,0.15574049949646,-0.0106880515813828,0.98620080947876,0.164448037743568,-0.0191006567329168,0.987640142440796,0.156421840190887,-0.00996050983667374,0.989007353782654,0.147860214114189,-0.00136479747015983,0.875329256057739,0.452847242355347,-0.169493854045868,0.823394179344177,0.502804040908813,-0.263078451156616,0.756729125976563,0.561541378498077,-0.334712415933609,0.818695902824402,0.519063830375671,-0.245580524206161,0.632048010826111,0.352733552455902,-0.689996004104614,0.632119297981262,0.352818369865417,-0.689887344837189,0.638835430145264,0.344843506813049,-0.687729775905609,0.636282622814178,0.347730785608292,-0.688641965389252,0.673501014709473,-0.575487196445465,0.46390837430954,0.667412400245667,-0.578051209449768,0.46948653459549,0.595791399478912,-0.625453233718872,0.503826379776001,0.621464610099792,-0.61039125919342,0.491125613451004,0.913481831550598,-0.321283370256424,0.249655708670616,0.92649257183075,-0.29296538233757,0.236183762550354,0.955874681472778,-0.221660435199738,0.192795798182487,0.951182782649994,-0.239040642976761,0.195220351219177,0.508754849433899,-0.753181040287018,0.416997462511063,0.503291308879852,-0.733377933502197,0.457006216049194,0.41383421421051,-0.753054678440094,0.511517345905304,0.412371456623077,-0.777116239070892,0.475436866283417,0.990279257297516,0.0205075703561306,0.137573942542076,0.990380764007568,0.0152069143950939,0.137530833482742,0.977011322975159,-0.0816341042518616,0.196938619017601,0.977519035339355,-0.0745480582118034,0.197228789329529,0.663641929626465,-0.679646730422974,0.312505662441254,0.580204427242279,-0.736548006534576,0.347649127244949, +0.601696193218231,-0.723106622695923,0.339232295751572,0.658759772777557,-0.702935099601746,0.268175035715103,0.535172700881958,-0.806085884571075,0.252617746591568,0.581996917724609,-0.765546500682831,0.274259448051453,0.712185204029083,-0.637186825275421,0.29459336400032,0.304532259702682,-0.870139479637146,0.38744992017746,0.386230796575546,-0.850476741790771,0.357092499732971,0.407067656517029,-0.833463966846466,0.373676031827927,0.307254463434219,-0.859555423259735,0.408361732959747,0.426330119371414,-0.807509183883667,0.407641410827637,0.508638918399811,-0.768715858459473,0.387766093015671,0.523404181003571,-0.754362225532532,0.396214485168457,0.441672414541245,-0.794162094593048,0.417411208152771,0.268937975168228,-0.856837630271912,0.439888328313828,0.353217214345932,-0.832006394863129,0.427788496017456,0.377307176589966,-0.81673401594162,0.436560422182083,0.296864628791809,-0.84195864200592,0.450529843568802,0.100322254002094,-0.91727215051651,0.385418564081192,0.203206136822701,-0.890985488891602,0.406019777059555,0.199703350663185,-0.90326988697052,0.379766136407852,0.0853399708867073,-0.928400695323944,0.361647993326187,0.166696950793266,-0.87482351064682,0.454858422279358,0.195422872900963,-0.863974750041962,0.464066505432129,0.0889731273055077,-0.880463719367981,0.465690284967422,0.0620139911770821,-0.888795375823975,0.454089373350143,-0.0422339923679829,-0.889459133148193,0.455058991909027,-0.0168323740363121,-0.884876132011414,0.465522348880768,-0.124833181500435,-0.882512032985687,0.453419387340546,-0.145942479372025,-0.885272443294525,0.441580802202225,-0.121983908116817,-0.891905128955841,0.435459673404694,-0.0136075764894485,-0.895669519901276,0.444512069225311,-0.0270576197654009,-0.89839768409729,0.438348650932312,-0.141586855053902,-0.891818761825562,0.42966565489769,-0.373342424631119,-0.839067399501801,0.395703762769699,-0.261550784111023,-0.86562579870224,0.426946520805359,-0.245674684643745,-0.865900754928589,0.43572923541069,-0.365431308746338,-0.83876234292984,0.403655558824539,-0.365790098905563,-0.837506711483002,0.405931442975998, +-0.247616067528725,-0.859059691429138,0.447998642921448,-0.262940138578415,-0.86862188577652,0.419950813055038,-0.382604151964188,-0.84306013584137,0.377973198890686,-0.559426069259644,-0.758253574371338,0.334804683923721,-0.468431949615479,-0.801325380802155,0.372087508440018,-0.467234313488007,-0.800291180610657,0.375800520181656,-0.562405705451965,-0.755077838897705,0.336982548236847,-0.57363373041153,-0.694043278694153,0.435026913881302,-0.473814010620117,-0.772219359874725,0.423293977975845,-0.48187518119812,-0.746764719486237,0.458409160375595,-0.570860505104065,-0.672336876392365,0.471255302429199,-0.739973723888397,-0.628298163414001,0.240167379379272,-0.655584633350372,-0.696278989315033,0.2922403216362,-0.659307777881622,-0.693040370941162,0.291561990976334,-0.74234813451767,-0.625443279743195,0.240291699767113,-0.749804556369781,-0.586780071258545,0.305748730897903,-0.667671978473663,-0.649449646472931,0.363908350467682,-0.668491125106812,-0.661426723003387,0.340050578117371,-0.749171674251556,-0.59887832403183,0.282995820045471,-0.860971331596375,-0.488128393888474,0.143035233020782,-0.807051420211792,-0.558243155479431,0.192438751459122,-0.806593954563141,-0.558757185935974,0.192864567041397,-0.859932899475098,-0.489563822746277,0.144370719790459,-0.868990778923035,-0.404173105955124,0.285480678081512,-0.81562602519989,-0.500626444816589,0.290047317743301,-0.808274507522583,-0.491163283586502,0.324732303619385,-0.856983125209808,-0.401512205600739,0.323060303926468,-0.941184282302856,-0.335413932800293,0.0408628359436989,-0.906581938266754,-0.412067294120789,0.0911586135625839,-0.906501710414886,-0.412442147731781,0.090256080031395,-0.941903948783875,-0.333646476268768,0.0386906787753105,-0.950793981552124,-0.275617212057114,0.141513422131538,-0.915368378162384,-0.354395836591721,0.191061213612556,-0.909688889980316,-0.359242647886276,0.20835292339325,-0.946222186088562,-0.281836599111557,0.158844754099846,-0.980599462985992,-0.187785774469376,-0.0562258586287498,-0.964725255966187,-0.263099879026413,-0.00914841890335083, +-0.965378761291504,-0.260530859231949,-0.0129492599517107,-0.981001496315002,-0.184334561228752,-0.0604723617434502,-0.990432858467102,-0.097480334341526,0.097675621509552,-0.975101113319397,-0.185444444417953,0.121606677770615,-0.97161078453064,-0.205997839570045,0.116350613534451,-0.988159239292145,-0.1211818754673,0.0941085442900658,-0.609795153141022,-0.756584405899048,-0.236072450876236,-0.589053690433502,-0.790246248245239,-0.16889850795269,-0.602554976940155,-0.784502983093262,-0.146569490432739,-0.620186567306519,-0.755458354949951,-0.211308658123016,-0.986831903457642,-0.0225188173353672,-0.160174176096916,-0.986757636070251,-0.0280282609164715,-0.159761890769005,-0.986603915691376,-0.127518266439438,-0.101744040846825,-0.987061381340027,-0.124439626932144,-0.101117439568043,-0.361602365970612,-0.825680494308472,0.433007538318634,-0.374686539173126,-0.817951858043671,0.436537206172943,-0.446283519268036,-0.799904346466064,0.401228129863739,-0.432011127471924,-0.80895060300827,0.398704648017883,-0.380290567874908,-0.795884668827057,0.471112310886383,-0.420149773359299,-0.725674450397491,0.544858455657959,-0.518617212772369,-0.738039433956146,0.431664139032364,-0.440918773412704,-0.819169998168945,0.366811990737915,0.390288025140762,0.617863595485687,-0.682583212852478,0.368045926094055,0.647808849811554,-0.666997730731964,0.385281920433044,0.62000435590744,-0.683485507965088,0.422277629375458,0.582811892032623,-0.69427078962326,0.654686987400055,0.331218063831329,-0.679470121860504,0.651421546936035,0.334419906139374,-0.681038498878479,0.638202428817749,0.350030153989792,-0.68569415807724,0.640965938568115,0.347404301166534,-0.68445086479187,0.747491538524628,0.375700712203979,-0.547818720340729,0.733019709587097,0.402471125125885,-0.548360347747803,0.732982456684113,0.394019603729248,-0.554513573646545,0.747006237506866,0.367508769035339,-0.554002702236176,0.807434976100922,0.425139576196671,-0.409029453992844,0.808611989021301,0.438712894916534,-0.39201745390892,0.800319194793701,0.463411420583725,-0.380446076393127, +0.798677504062653,0.451168596744537,-0.398197501897812,0.867134034633636,0.475037485361099,-0.149726390838623,0.866230607032776,0.47861447930336,-0.14343236386776,0.834327220916748,0.527311563491821,-0.160750016570091,0.836597979068756,0.521884560585022,-0.166554838418961,0.892355859279633,0.450474917888641,0.0278130061924458,0.871279716491699,0.490595877170563,0.0136870443820953,0.872948050498962,0.487758040428162,0.00733303930610418,0.894173383712769,0.447188854217529,0.0218228865414858,0.864316880702972,0.457255840301514,0.2094596773386,0.851744294166565,0.48334327340126,0.20226463675499,0.854965150356293,0.48023447394371,0.195983529090881,0.867575466632843,0.453844964504242,0.203316569328308,0.827431917190552,0.463312894105911,0.31732901930809,0.818296611309052,0.48109233379364,0.31454873085022,0.822795271873474,0.477616667747498,0.308042794466019,0.832089006900787,0.459101259708405,0.311213761568069,0.846045851707458,0.409855008125305,0.340918391942978,0.839835703372955,0.436824887990952,0.322273194789886,0.8399698138237,0.435547083616257,0.323650181293488,0.846050024032593,0.408897131681442,0.342056453227997,0.479249507188797,0.445633202791214,-0.756128966808319,0.544764280319214,0.479731500148773,-0.687815189361572,0.568930566310883,0.509989976882935,-0.6451575756073,0.481813699007034,0.471234977245331,-0.738778173923492,0.920718431472778,0.26392674446106,0.287437707185745,0.913979172706604,0.29876109957695,0.274561256170273,0.91774320602417,0.293203353881836,0.267916530370712,0.924413919448853,0.257755905389786,0.281106501817703,0.958203673362732,0.145476013422012,0.246338278055191,0.952625393867493,0.186456322669983,0.240289285778999,0.957975149154663,0.175641655921936,0.226789817214012,0.963202953338623,0.134472891688347,0.232716739177704,0.956978917121887,0.0863516479730606,0.277010411024094,0.961166679859161,0.109900325536728,0.253141522407532,0.958651959896088,0.11170656979084,0.261740803718567,0.954267978668213,0.0870082601904869,0.286010950803757,0.956421196460724,0.0047227437607944,0.291952252388,0.960077404975891,0.0432272329926491,0.276374280452728, +0.961064994335175,0.0365837253630161,0.2738898396492,0.95739609003067,-0.000531159283127636,0.288777530193329,0.940499246120453,-0.0658553689718246,0.333353102207184,0.957170605659485,-0.0483576506376266,0.285457730293274,0.948176264762878,-0.0332494266331196,0.316000550985336,0.930188775062561,-0.0507745370268822,0.363553196191788,0.336285829544067,-0.748549997806549,0.571475863456726,0.453548491001129,-0.818468511104584,0.352708369493484,0.537065088748932,-0.6896653175354,0.48571902513504,0.421761155128479,-0.590863347053528,0.687748491764069,0.9059197306633,-0.0964045226573944,0.4123295545578,0.906728506088257,-0.0997693240642548,0.409743189811707,0.914436876773834,-0.0678476691246033,0.399001240730286,0.913063168525696,-0.0662600845098495,0.402399331331253,0.897406458854675,-0.18505647778511,0.400519579648972,0.897932887077332,-0.187966451048851,0.397976338863373,0.909711956977844,-0.15095916390419,0.38682746887207,0.909351706504822,-0.147422730922699,0.389032304286957,0.848130404949188,-0.180738791823387,0.498004466295242,0.848374962806702,-0.181756183505058,0.497216999530792,0.863422989845276,-0.142149612307549,0.484039485454559,0.863504648208618,-0.14020499587059,0.484460830688477,0.74766618013382,-0.220224052667618,0.626495540142059,0.760708093643188,-0.184014976024628,0.622464299201965,0.758321285247803,-0.180672109127045,0.626343786716461,0.745388269424438,-0.216776415705681,0.630400240421295,0.723141372203827,-0.252044856548309,0.643070697784424,0.720592200756073,-0.253742069005966,0.645261108875275,0.740925073623657,-0.214955866336823,0.636257886886597,0.742752313613892,-0.214713007211685,0.634206175804138,0.655190825462341,-0.27439746260643,0.703868567943573,0.643101871013641,-0.272785991430283,0.715547263622284,0.663290023803711,-0.258288562297821,0.702376961708069,0.674893319606781,-0.260721683502197,0.690321147441864,-0.411101371049881,-0.852899253368378,0.321805387735367,-0.446787118911743,-0.841343581676483,0.304174721240997,-0.490569442510605,-0.824761986732483,0.281264066696167,-0.601077198982239,-0.764634788036346,-0.232464611530304, +-0.589947283267975,-0.736228048801422,-0.331557780504227,-0.548326432704926,-0.745913326740265,-0.378089100122452,-0.561428725719452,-0.776436686515808,-0.286258697509766,-0.853093028068542,0.483885169029236,-0.19515997171402,-0.847066402435303,0.492027670145035,-0.200965896248817,-0.839606165885925,0.505834102630615,-0.197973743081093,-0.845802187919617,0.497622817754745,-0.192328453063965,0.428061455488205,0.807165205478668,-0.406507045030594,0.473024129867554,0.818354547023773,-0.326411038637161,0.490363240242004,0.784784853458405,-0.379020780324936,0.441716432571411,0.771686017513275,-0.457588642835617,-0.39528214931488,-0.874524712562561,0.280995845794678,-0.318444132804871,-0.893813490867615,0.315738618373871,-0.330244362354279,-0.891265988349915,0.310778915882111,-0.398541212081909,-0.873476803302765,0.279648512601852,-0.224160894751549,-0.889963269233704,0.39713653922081,-0.127111449837685,-0.893032670021057,0.431665927171707,-0.144947737455368,-0.889704883098602,0.432914972305298,-0.240967780351639,-0.885241568088531,0.397846817970276,0.986836791038513,0.0225039515644312,0.160146608948708,0.972670555114746,-0.0736237689852715,0.220207929611206,0.972206592559814,-0.0655163004994392,0.224771052598953,0.985892415046692,0.0307812504470348,0.164525583386421,-0.0301295854151249,-0.882237195968628,0.469840079545975,0.064637616276741,-0.865788757801056,0.496217370033264,0.0469724535942078,-0.862222075462341,0.50434798002243,-0.0483702383935452,-0.877762198448181,0.476648688316345,0.599409401416779,-0.652827560901642,0.463167905807495,0.55962336063385,-0.70025372505188,0.443245381116867,0.569296956062317,-0.671424627304077,0.474436521530151,0.621734142303467,-0.613625824451447,0.486734002828598,-0.1635602414608,-0.841288387775421,0.515249490737915,-0.182814598083496,-0.836130619049072,0.517169654369354,-0.278771460056305,-0.828981935977936,0.484845727682114,-0.261102378368378,-0.835143327713013,0.484108686447144,0.151937499642372,-0.834422945976257,0.529767394065857,0.245599985122681,-0.805807709693909,0.538845717906952, +0.239417016506195,-0.805367469787598,0.542275547981262,0.140331506729126,-0.834809958934784,0.53235274553299,-0.202690377831459,-0.756603419780731,0.62166553735733,-0.226387172937393,-0.773224353790283,0.592345237731934,-0.326706022024155,-0.738531410694122,0.589774966239929,-0.300651580095291,-0.723156034946442,0.621815145015717,0.0326017215847969,-0.82178658246994,0.568862080574036,0.0175975263118744,-0.820746064186096,0.571022212505341,-0.0827798470854759,-0.830574333667755,0.550721228122711,-0.064754843711853,-0.832419216632843,0.550349950790405,0.344723224639893,-0.763578534126282,0.545997977256775,0.445492297410965,-0.713817059993744,0.540372014045715,0.436355113983154,-0.716643989086151,0.544073224067688,0.338827878236771,-0.764229774475098,0.548770189285278,0.015333941206336,-0.81390506029129,0.580795526504517,-0.00704221427440643,-0.78406423330307,0.620639801025391,-0.106252394616604,-0.826367020606995,0.553017318248749,-0.0756163373589516,-0.852576673030853,0.517102837562561,0.227705508470535,-0.772278547286987,0.593073427677155,0.224024027585983,-0.772401571273804,0.59431391954422,0.120221540331841,-0.800181150436401,0.587585687637329,0.127820387482643,-0.79928731918335,0.587198317050934,0.533544778823853,-0.658131420612335,0.531218588352203,0.60909777879715,-0.604525089263916,0.51337057352066,0.597561180591583,-0.613350749015808,0.516450941562653,0.522333562374115,-0.665759801864624,0.532852292060852,0.207137122750282,-0.723757803440094,0.658231735229492,0.21713425219059,-0.747011780738831,0.628351926803589,0.103384532034397,-0.754077434539795,0.648597598075867,0.0971489176154137,-0.730295658111572,0.676188111305237,0.426544100046158,-0.689615666866302,0.585226714611053,0.416782379150391,-0.69531786441803,0.585513114929199,0.323105782270432,-0.738076448440552,0.592322468757629,0.32840883731842,-0.734995126724243,0.593236744403839,0.733274221420288,-0.494289427995682,0.466890692710876,0.667195439338684,-0.557073891162872,0.494488537311554,0.67606246471405,-0.547006607055664,0.493683367967606,0.740644693374634,-0.484472006559372,0.465545237064362, +0.407467126846313,-0.670933544635773,0.619531035423279,0.405117630958557,-0.698040246963501,0.590440154075623,0.309213668107986,-0.715199530124664,0.626798748970032,0.305761307477951,-0.690347194671631,0.655691087245941,0.588805615901947,-0.590571582317352,0.551845252513885,0.576457858085632,-0.601864159107208,0.552680671215057,0.501225113868713,-0.651927709579468,0.569002449512482,0.513457179069519,-0.641964554786682,0.569423675537109,0.855348348617554,-0.340600103139877,0.390346825122833,0.848364353179932,-0.357269823551178,0.390686750411987,0.795178949832916,-0.426660150289536,0.430873095989227,0.802170157432556,-0.411805033683777,0.432365477085114,0.578761219978333,-0.60746443271637,0.544079422950745,0.570527374744415,-0.626350343227386,0.531209766864777,0.491674095392227,-0.666531562805176,0.560350239276886,0.499767243862152,-0.648243308067322,0.574467957019806,0.725814700126648,-0.475267469882965,0.497306644916534,0.717192709445953,-0.487959951162338,0.497523725032806,0.649689555168152,-0.550379633903503,0.524390816688538,0.659644544124603,-0.537698686122894,0.525118350982666,0.897027015686035,-0.276826769113541,0.344542592763901,0.929198086261749,-0.210450157523155,0.303811967372894,0.928166389465332,-0.218038737773895,0.301606059074402,0.89284884929657,-0.289785385131836,0.344739615917206,0.725270092487335,-0.506834149360657,0.46594250202179,0.719993233680725,-0.521350741386414,0.458042800426483,0.648841321468353,-0.584514319896698,0.487183809280396,0.656856179237366,-0.567638754844666,0.496312737464905,0.841308355331421,-0.338839560747147,0.421174585819244,0.834006309509277,-0.355767160654068,0.421738624572754,0.78058135509491,-0.42553123831749,0.457838416099548,0.788583636283875,-0.409596502780914,0.45865735411644,0.957633495330811,-0.141369611024857,0.250903964042664,0.976651787757874,-0.0712565332651138,0.202666848897934,0.976616978645325,-0.080171637237072,0.199478790163994,0.958333432674408,-0.146223902702332,0.245388865470886,0.848158359527588,-0.391473948955536,0.356897354125977,0.845005989074707,-0.385518044233322,0.370595246553421, +0.795979976654053,-0.471261948347092,0.379905462265015,0.799712002277374,-0.475691437721252,0.36630392074585,0.921921133995056,-0.200503319501877,0.331451058387756,0.921267628669739,-0.20971354842186,0.327545762062073,0.882807970046997,-0.286727905273438,0.372071653604507,0.886462271213531,-0.272364646196365,0.37416860461235,0.92650032043457,-0.297494232654572,0.230422288179398,0.91344428062439,-0.324396729469299,0.245736256241798,0.883713245391846,-0.374471515417099,0.280752569437027,0.889404058456421,-0.363322377204895,0.277411937713623,0.934496164321899,-0.247802898287773,0.25555944442749,0.936371862888336,-0.240260645747185,0.255895704030991,0.901379525661469,-0.328563183546066,0.282066076993942,0.899271070957184,-0.334421664476395,0.281910747289658,0.97100567817688,-0.0619437620043755,0.230891972780228,0.971533536911011,-0.070428341627121,0.226191431283951,0.95375669002533,-0.135191604495049,0.268461614847183,0.952831208705902,-0.129194408655167,0.274629771709442,0.980891108512878,-0.102494090795517,0.165371239185333,0.98559308052063,-0.0899787098169327,0.143213629722595,0.968719005584717,-0.163200810551643,0.186946421861649,0.964059472084045,-0.167957171797752,0.205863416194916,0.457309126853943,-0.868572652339935,0.190918475389481,0.536375224590302,-0.821609020233154,0.193029388785362,0.66531902551651,-0.722096979618073,0.189543277025223,0.508829534053802,-0.838282406330109,0.195895969867706,-0.324869751930237,0.259246647357941,-0.909533262252808,-0.348565459251404,0.232521563768387,-0.907984495162964,-0.375932931900024,0.310684353113174,-0.873011827468872,-0.356744736433029,0.344263166189194,-0.868456184864044,-0.214112490415573,0.303529858589172,-0.928453266620636,-0.211968153715134,0.311890959739685,-0.9261714220047,-0.206047624349594,0.294720441102982,-0.933104634284973,-0.212392970919609,0.291163712739944,-0.932798445224762,-0.281576722860336,0.647223472595215,-0.708389937877655,-0.18434551358223,0.585424065589905,-0.789490699768066,-0.172958374023438,0.581791341304779,-0.794735372066498,-0.273726463317871,0.646253228187561,-0.712341725826263, +-0.538812518119812,0.597647428512573,-0.593715965747833,-0.443960160017014,0.5915886759758,-0.67299497127533,-0.448151350021362,0.59061461687088,-0.671069920063019,-0.552595913410187,0.594600677490234,-0.584027290344238,-0.725416123867035,0.291810423135757,-0.623392403125763,-0.674839973449707,0.328373372554779,-0.660879671573639,-0.681288361549377,0.320475578308105,-0.658134937286377,-0.72786808013916,0.288270831108093,-0.622180104255676,0.611688911914825,0.593125462532043,-0.523487269878387,0.730914354324341,0.605384767055511,-0.315077185630798,0.775138914585114,0.604189515113831,-0.184702023863792,0.657352387905121,0.624019086360931,-0.422478467226028,-0.178509756922722,0.0907023772597313,-0.979748666286469,-0.259221911430359,-0.0321614407002926,-0.965282201766968,-0.291532456874847,-0.0197881385684013,-0.956356287002563,-0.212891966104507,0.0950083211064339,-0.972445607185364,-0.0657865256071091,0.193532884120941,-0.97888571023941,0.0473649948835373,0.170936420559883,-0.984142959117889,-0.100475579500198,0.0663117170333862,-0.992727339267731,-0.210673257708549,0.0943077951669693,-0.972996890544891,0.186385244131088,0.325811803340912,-0.926880419254303,0.203922480344772,0.32334041595459,-0.924049139022827,0.174181044101715,0.249726191163063,-0.952521800994873,0.156202703714371,0.251121133565903,-0.955269038677216,0.187426850199699,0.38994175195694,-0.90156352519989,0.165837660431862,0.393744796514511,-0.904136598110199,0.185549959540367,0.375350415706635,-0.908120810985565,0.20705658197403,0.371473073959351,-0.905060946941376,0.212740197777748,0.365089058876038,-0.906339645385742,0.209736734628677,0.364907085895538,-0.907112658023834,0.21392822265625,0.377061069011688,-0.901143610477448,0.21700593829155,0.377579241991043,-0.900190234184265,0.15996915102005,0.317594408988953,-0.934635579586029,0.151068791747093,0.314605981111526,-0.937124013900757,0.16333232820034,0.351460635662079,-0.921844959259033,0.171919152140617,0.352312594652176,-0.91995632648468,0.0453986451029778,0.401778340339661,-0.914610981941223,0.127494946122169,0.316240340471268,-0.940073013305664, +0.0404110625386238,0.340797692537308,-0.939267814159393,-0.0442256480455399,0.408061176538467,-0.911882817745209,0.345445573329926,0.118064440786839,-0.930982410907745,0.427062332630157,0.331229358911514,-0.84137088060379,0.194944232702255,0.185740008950233,-0.963066756725311,0.0908526107668877,-0.0924244374036789,-0.991566300392151,0.648229837417603,0.228201389312744,-0.726444900035858,0.64995801448822,0.230300575494766,-0.724234938621521,0.630949914455414,0.234844103455544,-0.739425778388977,0.631094872951508,0.233314618468285,-0.739786148071289,0.401046842336655,0.517958760261536,-0.755566239356995,0.575418651103973,0.380977302789688,-0.723705589771271,0.700251400470734,0.190438836812973,-0.688027024269104,0.581388533115387,0.389403939247131,-0.714389264583588,-0.324081838130951,0.364412397146225,-0.873026192188263,-0.262638986110687,0.477169096469879,-0.838648080825806,-0.173123002052307,0.558030128479004,-0.811560750007629,-0.240143284201622,0.456583887338638,-0.856657743453979,-0.549299240112305,-0.507192194461823,0.664098262786865,-0.523069083690643,-0.527054369449615,0.669785439968109,-0.516751766204834,-0.524308979511261,0.676807045936584,-0.553152740001678,-0.498105525970459,0.667767226696014,-0.701843500137329,-0.438358008861542,0.56147837638855,-0.768112301826477,-0.183333501219749,0.613508224487305,-0.748497247695923,-0.297261923551559,0.592779219150543,-0.681413650512695,-0.493255913257599,0.540716350078583,-0.553378582000732,-0.435644447803497,0.709919810295105,-0.527854561805725,-0.392286986112595,0.753313064575195,-0.428296506404877,-0.381625145673752,0.81909966468811,-0.487942755222321,-0.416782706975937,0.766944646835327,-0.870065271854401,0.0663053765892982,0.488456696271896,-0.927800893783569,0.128294289112091,0.350322902202606,-0.854223728179932,0.0192441791296005,0.519549429416656,-0.777367949485779,-0.0636577531695366,0.625817000865936,-0.554811358451843,-0.499198943376541,0.665571093559265,-0.649723887443542,-0.381237804889679,0.657659947872162,-0.600489974021912,-0.451057314872742,0.660272002220154, +-0.549916625022888,-0.508140385150909,0.662861287593842,-0.220960974693298,0.423125714063644,-0.878715515136719,-0.265650510787964,0.392444670200348,-0.880577683448792,-0.31240102648735,0.424980908632278,-0.849586308002472,-0.268133938312531,0.447186201810837,-0.85330456495285,-0.449642211198807,0.744150757789612,0.494025975465775,-0.337507963180542,0.83512806892395,0.434338092803955,-0.220824986696243,0.866075575351715,0.448496848344803,-0.339306831359863,0.788811922073364,0.512490808963776,-0.664295315742493,-0.36732417345047,0.650987446308136,-0.585510671138763,-0.40850755572319,0.700213491916656,-0.628038704395294,-0.371009439229965,0.68404632806778,-0.706444382667542,-0.325331956148148,0.628566205501556,-0.554441511631012,-0.420656114816666,0.718083024024963,-0.546165764331818,-0.428960978984833,0.719510555267334,-0.494174242019653,-0.460614114999771,0.737310290336609,-0.499071478843689,-0.455352306365967,0.737280130386353,-0.555742800235748,-0.528188586235046,0.642002105712891,-0.466575860977173,-0.461486965417862,0.754544138908386,-0.482895791530609,-0.322788596153259,0.814014256000519,-0.576269328594208,-0.397720456123352,0.713955342769623,-0.465230107307434,-0.447021871805191,0.764023780822754,-0.410057365894318,-0.476335406303406,0.777790188789368,-0.35760897397995,-0.503372132778168,0.786595523357391,-0.413980722427368,-0.474247664213181,0.776987314224243,-0.488322913646698,-0.447353720664978,0.749276578426361,-0.409611880779266,-0.484078079462051,0.773231148719788,-0.424289107322693,-0.466424435377121,0.776161849498749,-0.491992831230164,-0.43544590473175,0.753876566886902,-0.546186983585358,-0.283752709627151,0.788139700889587,-0.453011035919189,-0.286339491605759,0.844269394874573,-0.694021463394165,-0.160381436347961,0.701863348484039,-0.763359069824219,-0.170523926615715,0.623060703277588,-0.848540782928467,0.0281639993190765,0.528379917144775,-0.707520604133606,-0.181842744350433,0.682896614074707,-0.647000968456268,-0.265963226556778,0.714600145816803,-0.774349212646484,-0.0611842200160027,0.629793465137482, +-0.363274574279785,-0.513233959674835,0.777574777603149,-0.314026355743408,-0.538290858268738,0.782068073749542,-0.294157296419144,-0.548467338085175,0.782722890377045,-0.359833091497421,-0.515854477882385,0.777441024780273,-0.242442816495895,-0.515445649623871,0.821910858154297,-0.17113296687603,-0.545091390609741,0.820724606513977,-0.145636826753616,-0.554895579814911,0.819073081016541,-0.217263802886009,-0.526266515254974,0.822094976902008,0.31338369846344,-0.547939300537109,0.775598645210266,0.177741304039955,-0.595976769924164,0.783083558082581,0.350846707820892,-0.614733695983887,0.706405818462372,0.424917936325073,-0.568884968757629,0.704141080379486,0.714150726795197,-0.393226206302643,0.579104423522949,0.657630026340485,-0.480694979429245,0.580047607421875,0.76371955871582,-0.473921179771423,0.438327878713608,0.815908193588257,-0.38850000500679,0.428207486867905,0.610237717628479,-0.320765256881714,0.724375307559967,0.544003188610077,-0.41256719827652,0.730649650096893,0.661173641681671,-0.440409302711487,0.607362508773804,0.71586287021637,-0.35859951376915,0.599121630191803,-0.0699571073055267,-0.546063482761383,0.83481776714325,0.175738647580147,-0.620915532112122,0.763923943042755,0.0994541719555855,-0.559330523014069,0.822957038879395,-0.0802165493369102,-0.484835058450699,0.870919346809387,0.21555370092392,-0.539168477058411,0.814146280288696,0.0950838178396225,-0.592730343341827,0.799768686294556,0.173351243138313,-0.64745682477951,0.742124676704407,0.307180732488632,-0.588025271892548,0.748242139816284,0.543126046657562,-0.665992259979248,0.511339843273163,0.497354358434677,-0.441901832818985,0.746566474437714,0.401326656341553,-0.176696762442589,0.898729741573334,0.642019867897034,-0.378483265638351,0.666754007339478,0.350891441106796,-0.412119656801224,0.840852379798889,0.185188785195351,-0.459704488515854,0.86854875087738,0.120540797710419,-0.449664086103439,0.885026752948761,0.293504357337952,-0.402675718069077,0.867010712623596,-0.3321273624897,-0.365087598562241,0.869714021682739,-0.32785627245903,-0.345211148262024,0.879397213459015, +-0.0592035502195358,-0.430278539657593,0.90075272321701,-0.0747185498476028,-0.44647204875946,0.891672551631927,-0.765625357627869,-0.17676617205143,0.618523716926575,-0.755560517311096,-0.184075266122818,0.628684878349304,-0.559591948986053,-0.330056726932526,0.76021009683609,-0.565971314907074,-0.348167985677719,0.747298896312714,-0.887317419052124,-0.0514499545097351,0.458280205726624,-0.953079462051392,0.0591635331511497,0.296882688999176,-0.93392550945282,0.0178539175540209,0.3570217192173,-0.852598965167999,-0.0878725349903107,0.515124678611755,-0.0915041118860245,-0.555735349655151,0.826308250427246,-0.29130032658577,-0.515897035598755,0.805601835250854,-0.267351925373077,-0.506662130355835,0.819644093513489,-0.0924990028142929,-0.541818976402283,0.835389792919159,0.122845157980919,-0.606078922748566,0.785860896110535,0.101768411695957,-0.612998843193054,0.783502161502838,0.277918517589569,-0.591213524341583,0.757118165493011,0.307574540376663,-0.581069707870483,0.753495872020721,-0.487817525863647,-0.418821454048157,0.76591295003891,-0.673727214336395,-0.316182821989059,0.66792231798172,-0.623627841472626,-0.336271554231644,0.705698132514954,-0.445453763008118,-0.423887073993683,0.788600444793701,-0.819219648838043,-0.16386179625988,0.54957115650177,-0.919877648353577,-0.0187105536460876,0.391758888959885,-0.902120292186737,-0.0425038076937199,0.429386287927628,-0.779739856719971,-0.194639503955841,0.595080852508545,-0.896475672721863,-0.0251759998500347,0.442377030849457,-0.877508163452148,-0.0493797063827515,0.477012693881989,-0.746721029281616,-0.2073984593153,0.631976068019867,-0.777440190315247,-0.185864746570587,0.600866913795471,-0.418930113315582,-0.43484303355217,0.797125518321991,-0.587789058685303,-0.344689756631851,0.731910526752472,-0.562433004379272,-0.345407336950302,0.751240909099579,-0.398577272891998,-0.428939968347549,0.810645759105682,-0.268226563930511,-0.520235121250153,0.810808300971985,-0.254971921443939,-0.509644985198975,0.821736812591553,-0.096588246524334,-0.543400883674622,0.83389812707901, +-0.0926769226789474,-0.556325733661652,0.825780153274536,-0.839803218841553,-0.0135383624583483,0.542722284793854,-0.821618676185608,-0.017946183681488,0.569754958152771,-0.690564632415771,-0.18562425673008,0.699045181274414,-0.712801218032837,-0.184334978461266,0.676709055900574,-0.763643860816956,0.0586145296692848,0.642971575260162,-0.745798587799072,0.0685166269540787,0.662638664245605,-0.625581860542297,-0.108467310667038,0.772581577301025,-0.643656969070435,-0.117796346545219,0.756194233894348,-0.375674158334732,-0.393572300672531,0.839029014110565,-0.529689133167267,-0.303731799125671,0.791944682598114,-0.510786652565002,-0.293653726577759,0.808000445365906,-0.360476791858673,-0.380254924297333,0.851741015911102,-0.244998633861542,-0.497980535030365,0.831860065460205,-0.235523104667664,-0.48751100897789,0.840750873088837,-0.0963348373770714,-0.521750867366791,0.847641170024872,-0.0980969220399857,-0.533638000488281,0.840004444122314,-0.65155029296875,0.157067909836769,0.742167115211487,-0.619494616985321,0.15351864695549,0.769843220710754,-0.524515092372894,-0.029076237231493,0.850904583930969,-0.555239737033844,-0.0248474888503551,0.831319093704224,-0.330917865037918,-0.312956720590591,0.890253663063049,-0.470078945159912,-0.218339532613754,0.855192244052887,-0.445279568433762,-0.205798119306564,0.87142026424408,-0.307734698057175,-0.299140363931656,0.903224527835846,-0.4218869805336,-0.157985582947731,0.892777681350708,-0.386865556240082,-0.154780596494675,0.909053444862366,-0.258199781179428,-0.24867607653141,0.93353796005249,-0.291404336690903,-0.253129065036774,0.922501564025879,-0.487193584442139,0.180013328790665,0.854539513587952,-0.445936799049377,0.0940187647938728,0.89011287689209,-0.361682772636414,-0.0604592636227608,0.930338859558105,-0.405825436115265,0.0171684771776199,0.913789391517639,-0.221480891108513,-0.442515909671783,0.868979871273041,-0.210247278213501,-0.430191308259964,0.877913177013397,-0.0810742974281311,-0.468921005725861,0.87951135635376,-0.0894055590033531,-0.482128590345383,0.871526658535004, +-0.247849240899086,0.0561542138457298,0.96716982126236,-0.191014483571053,-0.0583016350865364,0.97985428571701,-0.130749195814133,-0.169914096593857,0.976746559143066,-0.189853966236115,-0.0605976171791553,0.979940593242645,-0.292951256036758,-0.0995657742023468,0.950929164886475,-0.231566280126572,-0.134373053908348,0.963494181632996,-0.132072985172272,-0.218079298734665,0.966953098773956,-0.183342173695564,-0.191970407962799,0.964123010635376,-0.00450310437008739,-0.122747831046581,0.9924276471138,0.043375875800848,-0.214264780282974,0.975812077522278,0.0930692628026009,-0.325966715812683,0.940789043903351,0.0550774484872818,-0.255401492118835,0.965265035629272,-0.130490377545357,-0.169764548540115,0.976807177066803,-0.0896556228399277,-0.216825872659683,0.972084641456604,-0.143627196550369,-0.152978509664536,0.977736592292786,-0.208315536379814,-0.0726566836237907,0.975359320640564,-0.262186080217361,-0.257734268903732,0.929963231086731,-0.141088962554932,-0.325404971837997,0.934989631175995,-0.172028392553329,-0.336077362298965,0.925990462303162,-0.296225309371948,-0.266551226377487,0.917170107364655,-0.0688482820987701,-0.244637325406075,0.967167258262634,-0.0157006736844778,-0.256898164749146,0.966310977935791,0.0859531313180923,-0.304214239120483,0.948717951774597,0.0352529808878899,-0.294001936912537,0.955154478549957,0.237861305475235,-0.284802138805389,0.928606390953064,0.309785455465317,-0.361058056354523,0.879585146903992,0.40072301030159,-0.463123679161072,0.79052996635437,0.321796536445618,-0.376815140247345,0.868595123291016,0.0828869566321373,-0.219214648008347,0.972149610519409,0.13713975250721,-0.271887212991714,0.952507317066193,0.24030402302742,-0.317546993494034,0.917288422584534,0.178887650370598,-0.261538147926331,0.948470950126648,0.429156720638275,-0.443391680717468,0.786910712718964,0.547176837921143,-0.498614251613617,0.672295570373535,0.484870165586472,-0.362010151147842,0.796146750450134,0.37706384062767,-0.31920450925827,0.86944317817688,0.262914478778839,-0.285636961460114,0.921568036079407, +0.363428801298141,-0.321164637804031,0.87451297044754,0.288677126169205,-0.274003028869629,0.91738098859787,0.19113677740097,-0.238424524664879,0.952166259288788,0.0893340334296227,-0.296298295259476,0.950908422470093,0.195951029658318,-0.335315585136414,0.921502470970154,0.14423406124115,-0.333273589611053,0.931732416152954,0.0358577184379101,-0.292144149541855,0.95570182800293,-0.0293247550725937,-0.386599093675613,0.921781599521637,0.0889992862939835,-0.422165513038635,0.902139365673065,0.0660457164049149,-0.437443017959595,0.896817564964294,-0.0559222400188446,-0.40052542090416,0.914577543735504,0.709914147853851,-0.300700068473816,0.636868417263031,0.577483832836151,-0.264338791370392,0.772423028945923,0.503643393516541,-0.232173323631287,0.832129180431366,0.648559331893921,-0.273017436265945,0.710515558719635,0.313313007354736,-0.363292872905731,0.877412855625153,0.44857931137085,-0.372579365968704,0.812380015850067,0.396934449672699,-0.367899775505066,0.840888023376465,0.266978681087494,-0.356603384017944,0.895296812057495,0.889814436435699,-0.224489063024521,0.397284477949142,0.879476189613342,-0.195404887199402,0.433980047702789,0.975915908813477,-0.194481372833252,0.0988189727067947,0.975609958171844,-0.216821044683456,0.0342622958123684,0.214901089668274,-0.472497284412384,0.854730248451233,0.358012855052948,-0.470050603151321,0.806770861148834,0.345066398382187,-0.463855862617493,0.815945506095886,0.198476329445839,-0.465323954820633,0.862601161003113,0.789770007133484,-0.303814291954041,0.532879054546356,0.670576751232147,-0.333177506923676,0.662811934947968,0.574799001216888,-0.331640630960464,0.748077988624573,0.717590928077698,-0.30719119310379,0.625057458877563,0.784907042980194,-0.333232432603836,0.522376418113708,0.907230317592621,-0.269814789295197,0.322696775197983,0.932133853435516,-0.242316275835037,0.269089996814728,0.819383263587952,-0.309404969215393,0.482576221227646,0.505809724330902,-0.47937399148941,0.71718692779541,0.667807936668396,-0.428382575511932,0.608704447746277,0.673271834850311,-0.417268246412277,0.610403418540955, +0.504301846027374,-0.470769464969635,0.723917007446289,0.0613420456647873,-0.472263216972351,0.879320621490479,0.0512182414531708,-0.464987874031067,0.88383424282074,-0.0775518268346786,-0.443921327590942,0.892703473567963,-0.0657307952642441,-0.452195584774017,0.889493584632874,0.185230031609535,-0.54531717300415,0.817507863044739,0.33832710981369,-0.532960891723633,0.775556266307831,0.339183807373047,-0.523553371429443,0.781566560268402,0.184518486261368,-0.535811722278595,0.823928952217102,0.0413947254419327,-0.538433313369751,0.841650784015656,0.0422005839645863,-0.530534982681274,0.846611976623535,-0.0956787467002869,-0.513563215732574,0.852700710296631,-0.0936302617192268,-0.521920502185822,0.847839832305908,0.505310237407684,-0.530273854732513,0.680787265300751,0.678984880447388,-0.457229822874069,0.574387013912201,0.682713508605957,-0.44546189904213,0.579194366931915,0.508922100067139,-0.51895010471344,0.686796307563782,0.353191018104553,-0.572833478450775,0.739674210548401,0.345200181007385,-0.582845211029053,0.735614240169525,0.513802766799927,-0.533255696296692,0.672045409679413,0.518423020839691,-0.523871719837189,0.675866961479187,0.0462747067213058,-0.573223769664764,0.818091213703156,0.0567735582590103,-0.565857291221619,0.822546303272247,-0.096927210688591,-0.554570078849792,0.826472699642181,-0.0996114537119865,-0.561934232711792,0.821162283420563,0.394603073596954,-0.563477635383606,0.725797176361084,0.367769122123718,-0.583257079124451,0.724263191223145,0.526271998882294,-0.527991890907288,0.666530132293701,0.544791519641876,-0.509081125259399,0.666362285614014,0.278061538934708,-0.592915177345276,0.755733668804169,0.440634518861771,-0.540950119495392,0.716389656066895,0.471981823444366,-0.523418605327606,0.709412634372711,0.307639092206955,-0.582571983337402,0.752308547496796,0.696547210216522,-0.447294533252716,0.561025500297546,0.687752485275269,-0.465238928794861,0.55726957321167,0.837651789188385,-0.336146205663681,0.430517494678497,0.84099268913269,-0.32105365395546,0.435494899749756,0.759829461574554,-0.358237087726593,0.542517781257629, +0.723260045051575,-0.405293077230453,0.559135437011719,0.848903238773346,-0.277352929115295,0.449932008981705,0.870964050292969,-0.23615163564682,0.430876016616821,0.767228662967682,-0.411580145359039,0.491896271705627,0.828087568283081,-0.276484549045563,0.487675309181213,0.887998759746552,-0.297764033079147,0.350420862436295,0.808824419975281,-0.449324131011963,0.379355877637863,0.954328715801239,-0.0373164415359497,0.296418875455856,0.953110933303833,-0.0488836094737053,0.298646777868271,0.976986408233643,0.0637517049908638,0.203552037477493,0.972479939460754,0.0393954440951347,0.229632154107094,0.953559517860413,-0.104735501110554,0.282408982515335,0.947130084037781,-0.131635174155235,0.292603641748428,0.990651369094849,0.0645237118005753,0.120194211602211,0.989245474338531,0.0634113475680351,0.13180473446846,0.967254817485809,0.149302810430527,0.205248728394508,0.964448928833008,0.21390888094902,0.155181735754013,0.952438712120056,0.294670611619949,0.0776524022221565,0.963913440704346,0.221505746245384,0.147668808698654,0.687127888202667,-0.468861550092697,0.554999172687531,0.686424493789673,-0.480294793844223,0.546020567417145,0.840862154960632,-0.35871422290802,0.405308455228806,0.838869452476501,-0.349793523550034,0.417064160108566,0.947806835174561,-0.187317386269569,0.258020550012589,0.94809889793396,-0.197537943720818,0.249173045158386,0.999277532100677,0.0197124481201172,0.0324952714145184,0.998067259788513,0.0128134191036224,0.0608085580170155,0.931772232055664,0.340003460645676,0.127272799611092,0.910420417785645,0.412421852350235,-0.0322957038879395,0.862707376480103,0.483324825763702,-0.148771941661835,0.908036172389984,0.417966544628143,0.0278283953666687,0.991763234138489,0.0588609576225281,0.113759547472,0.962026715278625,0.263152331113815,-0.0724950134754181,0.975110769271851,0.220343291759491,-0.0246552601456642,0.990747690200806,0.0564003586769104,0.123443186283112,0.572199046611786,0.583772778511047,-0.576018810272217,0.762486457824707,0.479190587997437,-0.434730887413025,0.711356341838837,0.503231942653656,-0.490642309188843, +0.499399483203888,0.595719397068024,-0.629061639308929,0.679850339889526,0.587929129600525,-0.438341170549393,0.566692769527435,0.515238106250763,-0.642953395843506,0.500515758991241,0.554778039455414,-0.664609134197235,0.57569146156311,0.639590561389923,-0.509414732456207,0.710949003696442,0.471404701471329,-0.521851658821106,0.68715101480484,0.461628347635269,-0.561001539230347,0.557306826114655,0.509048759937286,-0.655956208705902,0.49885630607605,0.562433898448944,-0.659401655197144,0.814504325389862,0.361022353172302,-0.454142779111862,0.938843607902527,0.200803160667419,-0.279733538627625,0.913922488689423,0.24034258723259,-0.32708004117012,0.700890302658081,0.438417851924896,-0.562621235847473,0.998500347137451,-0.0105964662507176,-0.0537116378545761,0.951764285564423,-0.227410882711411,0.205983012914658,0.950477242469788,-0.243737429380417,0.192834705114365,0.997453927993774,-0.0269986819475889,-0.0660065412521362,0.998786687850952,-0.00559730967506766,-0.0489259213209152,0.907308578491211,0.248723343014717,-0.339010119438171,0.91241455078125,0.222337126731873,-0.343607187271118,0.998109757900238,-0.0283052511513233,-0.0545512177050114,0.996806979179382,-0.0423745661973953,-0.067677415907383,0.948217988014221,-0.239321708679199,0.208825036883354,0.942564010620117,-0.264242887496948,0.204325616359711,0.995216190814972,-0.0652227699756622,-0.0727386102080345,0.904899001121521,0.170253559947014,-0.390091776847839,0.904178261756897,0.14246392250061,-0.402698040008545,0.70108687877655,0.304980129003525,-0.644565165042877,0.700643181800842,0.333399772644043,-0.630827844142914,0.992038011550903,-0.0968979448080063,-0.080445371568203,0.938684701919556,-0.25250905752182,0.234755679965019,0.926637053489685,-0.281503319740295,0.249198168516159,0.989928722381592,-0.125155091285706,-0.0661623403429985,0.890467703342438,0.0653357282280922,-0.450331807136536,0.89768773317337,0.084225133061409,-0.432507753372192,0.686448812484741,0.228246003389359,-0.690428733825684,0.683832347393036,0.201407432556152,-0.701290667057037,0.880518198013306,-0.0394932068884373,-0.472364455461502, +0.902729034423828,-0.0377825610339642,-0.428547263145447,0.68959653377533,0.0552998036146164,-0.722079396247864,0.662970006465912,0.0514174476265907,-0.746878266334534,0.917393565177917,-0.116295084357262,-0.380610883235931,0.939805567264557,-0.0619467534124851,-0.336047977209091,0.750190138816833,-0.0208307541906834,-0.66089403629303,0.716610372066498,-0.0798414126038551,-0.692888796329498,0.682789206504822,0.202597677707672,-0.701963782310486,0.473335593938828,0.277762413024902,-0.835943460464478,0.472342759370804,0.268936723470688,-0.839383959770203,0.682488560676575,0.194730162620544,-0.704478323459625,0.690346419811249,0.0626409873366356,-0.720762133598328,0.475190877914429,0.113238111138344,-0.872565627098083,0.458944797515869,0.112734839320183,-0.881283521652222,0.665726840496063,0.0656554996967316,-0.743301510810852,0.497287929058075,0.0304054673761129,-0.867052733898163,0.516172647476196,0.0167147032916546,-0.856321513652802,0.361564576625824,0.0275847241282463,-0.931939005851746,0.358422011137009,0.042186014354229,-0.932606041431427,0.627463459968567,0.26781702041626,-0.731138706207275,0.721925318241119,0.411491066217422,-0.556326270103455,0.68098509311676,0.341361165046692,-0.647867202758789,0.593015491962433,0.220001563429832,-0.774552881717682,0.593929409980774,0.413335859775543,-0.690218329429626,0.527095079421997,0.305261880159378,-0.793086290359497,0.453944087028503,0.201110750436783,-0.868037641048431,0.524571299552917,0.300924509763718,-0.796410322189331,0.504829943180084,0.0752115175127983,-0.859935998916626,0.487802714109421,0.0758437216281891,-0.869653046131134,0.32797634601593,0.0425805151462555,-0.943725824356079,0.346507161855698,0.0404752492904663,-0.937173664569855,0.286134272813797,0.219309091567993,-0.932754456996918,0.322435587644577,0.176329746842384,-0.93002325296402,0.372255593538284,0.257493793964386,-0.891696631908417,0.337954968214035,0.394294321537018,-0.854586780071259,0.0684326663613319,0.0481947548687458,-0.996491014957428,0.0108812162652612,-0.00774782057851553,-0.999910771846771, +-0.0801121145486832,-0.134091019630432,-0.987725555896759,-0.0229722876101732,-0.0692492201924324,-0.997334897518158,0.463922023773193,0.192156508564949,-0.864784479141235,0.383691817522049,0.108282960951328,-0.917090713977814,0.431872218847275,0.13456916809082,-0.891839385032654,0.559663951396942,0.260785162448883,-0.786617755889893,0.275026738643646,0.0671233832836151,-0.959090650081635,0.261253148317337,0.0754998475313187,-0.962313115596771,0.191668227314949,0.0817841812968254,-0.978046357631683,0.217330425977707,0.07418592274189,-0.973274886608124,0.345175921916962,0.131880357861519,-0.929226219654083,0.261282533407211,0.139224573969841,-0.955169141292572,0.246108263731003,0.140201270580292,-0.959048748016357,0.332188934087753,0.132867962121964,-0.933807671070099,0.238576307892799,0.050402045249939,-0.969814956188202,0.214464008808136,0.0530281700193882,-0.97529137134552,0.13695265352726,0.0479602292180061,-0.989415943622589,0.167636975646019,0.0463360212743282,-0.984759330749512,0.176870763301849,0.0608383044600487,-0.982352018356323,0.137247145175934,0.0480262376368046,-0.9893718957901,0.0269572976976633,0.00530540570616722,-0.999622583389282,0.0945420041680336,0.0302385427057743,-0.99506151676178,0.11768402159214,0.0928026363253593,-0.988705337047577,0.0745923444628716,0.0926273092627525,-0.992902874946594,0.0365009419620037,0.092744380235672,-0.995020747184753,0.0889998599886894,0.09410510212183,-0.991576194763184,0.191225558519363,0.0883905366063118,-0.977558135986328,0.153008297085762,0.0987467542290688,-0.983279049396515,0.197612375020981,0.110692299902439,-0.974010646343231,0.216644495725632,0.0999144241213799,-0.971124231815338,0.0167243666946888,0.051249522715807,-0.99854588508606,-0.0856219604611397,0.0173353273421526,-0.996176898479462,-0.158322736620903,-0.00699826329946518,-0.987362623214722,-0.0338957346975803,0.0359292477369308,-0.998779356479645,-0.199928760528564,-0.0723289921879768,-0.97713714838028,-0.286135077476501,-0.188963353633881,-0.939371943473816,-0.350945949554443,-0.277516543865204,-0.894327521324158, +-0.262515664100647,-0.147666245698929,-0.953561902046204,-0.0873627364635468,0.0848939195275307,-0.992552697658539,-0.244091659784317,0.0288019143044949,-0.969324469566345,-0.287357300519943,0.0124625489115715,-0.957742393016815,-0.113995023071766,0.0751964077353477,-0.990631461143494,0.0314605236053467,0.126009374856949,-0.991530060768127,0.00615225080400705,0.1254743039608,-0.992077827453613,0.0678723827004433,0.129406556487083,-0.989266037940979,0.0861941874027252,0.129101648926735,-0.987878203392029,-0.626001954078674,-0.525077641010284,-0.576554536819458,-0.614765584468842,-0.348515778779984,-0.707531034946442,-0.606340706348419,-0.302040636539459,-0.73561030626297,-0.62566339969635,-0.484483271837234,-0.611409306526184,-0.406686782836914,-0.24987468123436,-0.87873113155365,-0.454791158437729,-0.319670230150223,-0.831249594688416,-0.358336627483368,-0.164924591779709,-0.918909549713135,-0.308050572872162,-0.103264853358269,-0.945749044418335,-0.1579320281744,0.151263102889061,-0.97579550743103,-0.360464572906494,0.0743622109293938,-0.929804146289825,-0.390831470489502,0.0599578469991684,-0.91850745677948,-0.17717781662941,0.141709312796593,-0.97392326593399,-0.21228751540184,0.210209310054779,-0.954330205917358,-0.445305705070496,0.118450462818146,-0.887509047985077,-0.463162451982498,0.107261165976524,-0.879758894443512,-0.227485805749893,0.200766175985336,-0.952860534191132,-0.667532503604889,-0.0621970370411873,-0.741978347301483,-0.777892589569092,-0.283710390329361,-0.560706317424774,-0.782168209552765,-0.30077588558197,-0.545661926269531,-0.677849650382996,-0.0823682248592377,-0.730571985244751,-0.256043523550034,0.254692256450653,-0.932509243488312,-0.503206491470337,0.158933460712433,-0.849425375461578,-0.517669200897217,0.149345576763153,-0.842445552349091,-0.307595491409302,0.23377451300621,-0.92235267162323,-0.728623926639557,-0.0300158001482487,-0.684256076812744,-0.841665029525757,-0.243950814008713,-0.48175510764122,-0.844188630580902,-0.255484521389008,-0.47124645113945,-0.733036279678345,-0.0395007580518723,-0.679041624069214, +-0.742547810077667,0.0202295463532209,-0.669487655162811,-0.868748664855957,-0.218952283263206,-0.444224774837494,-0.862671852111816,-0.211371123790741,-0.459477543830872,-0.802582442760468,-0.0761707723140717,-0.591658234596252,-0.82440584897995,-0.270575195550919,-0.497135877609253,-0.831291198730469,-0.271703749895096,-0.484904289245605,-0.832886457443237,-0.291885316371918,-0.470215946435928,-0.75845855474472,-0.158095881342888,-0.632254958152771,-0.740337193012238,0.0146954637020826,-0.672075092792511,-0.500377297401428,0.165325656533241,-0.849876523017883,-0.521696984767914,0.164366289973259,-0.83714747428894,-0.763280868530273,0.0261401273310184,-0.645537793636322,-0.369685441255569,0.27412074804306,-0.887800991535187,-0.182088389992714,0.304177284240723,-0.935050785541534,-0.132592350244522,0.316945910453796,-0.939129710197449,-0.314649194478989,0.282630085945129,-0.906154692173004,-0.763127326965332,-0.367883741855621,-0.531317412853241,-0.751121520996094,-0.320502102375031,-0.577143788337708,-0.754257082939148,-0.345869421958923,-0.558095514774323,-0.759746134281158,-0.37560161948204,-0.530763030052185,-0.53292989730835,-0.402989625930786,-0.744033098220825,-0.333911925554276,-0.373041361570358,-0.865646064281464,-0.218870490789413,-0.578872680664063,-0.785494923591614,-0.431666791439056,-0.634639918804169,-0.641011714935303,-0.131467372179031,0.305024266242981,-0.94322669506073,-0.0981241762638092,0.313643962144852,-0.944457054138184,-0.261340796947479,0.280777484178543,-0.923506915569305,-0.312412559986115,0.266572237014771,-0.911777198314667,-0.212556302547455,0.211372911930084,-0.954013228416443,-0.0642782747745514,0.241449296474457,-0.968282341957092,-0.0526628419756889,0.246565401554108,-0.967694282531738,-0.195499137043953,0.217820450663567,-0.956208348274231,-0.0364736989140511,0.343745172023773,-0.93835437297821,0.0323929451406002,0.349531203508377,-0.936364591121674,0.0529944263398647,0.353574365377426,-0.933904111385345,-0.0143822748214006,0.348206669092178,-0.937307476997375,-0.00342040462419391,0.335542500019073,-0.942018926143646, +0.0633920803666115,0.341336935758591,-0.937800884246826,0.0725757703185081,0.345683217048645,-0.935540378093719,0.00669396668672562,0.340047478675842,-0.94038450717926,0.284646779298782,0.450941979885101,-0.845947742462158,0.187975525856018,0.458369582891464,-0.868655562400818,0.166644379496574,0.455494493246078,-0.87450248003006,0.240042135119438,0.452021926641464,-0.85910177230835,0.0992190465331078,0.407832741737366,-0.90764969587326,0.150288060307503,0.407831430435181,-0.900603771209717,0.164814576506615,0.410691797733307,-0.896754443645477,0.111859112977982,0.411679059267044,-0.904437899589539,-0.15850555896759,0.153567478060722,-0.975342512130737,-0.0314284302294254,0.17760606110096,-0.983599722385406,-0.0182642620056868,0.180969625711441,-0.983319163322449,-0.135662093758583,0.159023031592369,-0.977909803390503,0.0192967094480991,0.289719700813293,-0.95691704750061,0.0821922272443771,0.295110732316971,-0.951921284198761,0.0896190106868744,0.299287706613541,-0.949944913387299,0.0277628637850285,0.294009447097778,-0.955399215221405,0.204387247562408,0.513324022293091,-0.833501219749451,0.282642722129822,0.495956122875214,-0.82106077671051,0.354836642742157,0.476557821035385,-0.804352939128876,0.243546098470688,0.505091428756714,-0.827990353107452,0.358311802148819,0.512774646282196,-0.780176162719727,0.430171310901642,0.47037997841835,-0.770516335964203,0.285985678434372,0.482038170099258,-0.828161478042603,0.243946328759193,0.512073636054993,-0.823571979999542,0.361708551645279,0.597412168979645,-0.71572732925415,0.414200246334076,0.605095863342285,-0.679924488067627,0.574663102626801,0.560951173305511,-0.59589946269989,0.499242067337036,0.57847648859024,-0.645075500011444,0.140371739864349,0.352122187614441,-0.925367951393127,0.21112172305584,0.353049844503403,-0.911473214626312,0.220888555049896,0.358749508857727,-0.906921744346619,0.148340180516243,0.358098983764648,-0.92182445526123,0.461715877056122,0.451781839132309,-0.763355493545532,0.474587976932526,0.417011320590973,-0.775156676769257,0.317071795463562,0.429119646549225,-0.845767080783844, +0.303872615098953,0.4617899954319,-0.833313524723053,0.45252799987793,0.523541331291199,-0.721888422966003,0.387420475482941,0.536186635494232,-0.749939501285553,0.408589780330658,0.621236681938171,-0.668669939041138,0.503114342689514,0.622270107269287,-0.599713206291199,0.667799592018127,0.602547168731689,-0.437013268470764,0.567682504653931,0.609492063522339,-0.553404092788696,0.533389806747437,0.686582148075104,-0.494065016508102,0.633386850357056,0.690701901912689,-0.348929822444916,0.369689494371414,0.542330205440521,-0.754458427429199,0.30879533290863,0.507744908332825,-0.804263949394226,0.311934560537338,0.555654883384705,-0.770677924156189,0.380906403064728,0.601542234420776,-0.7021803855896,0.413190543651581,0.647180616855621,-0.640648722648621,0.338730543851852,0.609831035137177,-0.716496884822845,0.324088424444199,0.657580196857452,-0.680114030838013,0.396027952432632,0.697322905063629,-0.597413241863251,0.182127758860588,0.510679125785828,-0.840259671211243,0.116497255861759,0.486183434724808,-0.866056680679321,0.104170024394989,0.543117702007294,-0.83316969871521,0.170903727412224,0.569353044033051,-0.804132521152496,0.095319539308548,0.547434091567993,-0.831402540206909,0.106012865900993,0.61127632856369,-0.784284770488739,0.155233085155487,0.643509447574615,-0.749532043933868,0.145061045885086,0.582614421844482,-0.799698531627655,-0.0578181892633438,0.498679220676422,-0.864856123924255,-0.0906734764575958,0.470563411712646,-0.877694964408875,-0.0825868472456932,0.508877694606781,-0.856868147850037,-0.0472145527601242,0.539929807186127,-0.840384840965271,0.0951472967863083,0.561898708343506,-0.821715831756592,0.0668703988194466,0.519357681274414,-0.851936519145966,0.0468376167118549,0.490709841251373,-0.870063364505768,0.0688146501779556,0.522264122962952,-0.850002765655518,-0.0144917629659176,0.511314511299133,-0.859271466732025,-0.0236582309007645,0.494438230991364,-0.868890821933746,-0.0482256785035133,0.457988321781158,-0.887649178504944,-0.0406520776450634,0.472499907016754,-0.880392670631409,-0.194320276379585,0.473163485527039,-0.859276413917542, +-0.224545478820801,0.427040308713913,-0.875908672809601,-0.257889270782471,0.361026406288147,-0.896188080310822,-0.229683414101601,0.413280606269836,-0.881161034107208,-0.207575470209122,0.345202773809433,-0.915285468101501,-0.277424246072769,0.24636909365654,-0.928621590137482,-0.220558822154999,0.303152441978455,-0.927066564559937,-0.156732693314552,0.396225690841675,-0.904676914215088,-0.157676234841347,0.291827321052551,-0.943384885787964,-0.124133840203285,0.354586511850357,-0.926746547222137,-0.133785843849182,0.404470801353455,-0.904712498188019,-0.154884532094002,0.395765006542206,-0.905196666717529,-0.15336138010025,0.416190981864929,-0.89625072479248,-0.153578847646713,0.459316909313202,-0.874895215034485,-0.201021403074265,0.421962976455688,-0.884046196937561,-0.190149456262589,0.397199273109436,-0.897817373275757,-0.0410214252769947,0.422367095947266,-0.905496180057526,-0.0564660057425499,0.416852295398712,-0.90721869468689,-0.086756743490696,0.394634187221527,-0.914733409881592,-0.0714321285486221,0.399949729442596,-0.913749217987061,-0.167045205831528,0.443400681018829,-0.880620121955872,-0.147370114922523,0.431912183761597,-0.88979434967041,-0.168433219194412,0.427098840475082,-0.888378798961639,-0.184989184141159,0.455879032611847,-0.870605111122131,-0.125607222318649,0.337251365184784,-0.932997584342957,-0.136685729026794,0.348779320716858,-0.927183926105499,-0.0997562780976295,0.399859756231308,-0.911131739616394,-0.0810665190219879,0.395773023366928,-0.914763331413269,-0.163809046149254,0.105613678693771,-0.980822265148163,-0.1865424066782,0.163235411047935,-0.968791127204895,-0.0761298015713692,0.218412548303604,-0.972882449626923,-0.0343520939350128,0.17268243432045,-0.984378337860107,-0.168647855520248,0.410725235939026,-0.896026015281677,-0.195174694061279,0.41532701253891,-0.888487756252289,-0.218550145626068,0.427635431289673,-0.877133786678314,-0.198508501052856,0.406264185905457,-0.891932606697083,-0.320950418710709,-0.0610538348555565,-0.945126056671143,-0.305248469114304,0.00754617154598236,-0.952242851257324, +-0.212350606918335,0.0503163635730743,-0.975897312164307,-0.215301841497421,-0.011292390525341,-0.976482272148132,-0.123783946037292,0.340402156114578,-0.932096600532532,-0.176195397973061,0.292850136756897,-0.939784049987793,-0.167263671755791,0.340212315320969,-0.925353109836578,-0.127907857298851,0.367154091596603,-0.921323835849762,-0.440061211585999,-0.152370363473892,-0.88494598865509,-0.405581474304199,-0.0820597484707832,-0.910367965698242,-0.351848572492599,-0.0620901510119438,-0.933995366096497,-0.382711917161942,-0.125690951943398,-0.915277719497681,-0.0853154957294464,0.39670467376709,-0.913973033428192,-0.11345836520195,0.359377533197403,-0.92626941204071,-0.13798388838768,0.325808376073837,-0.935312390327454,-0.106350265443325,0.368139863014221,-0.923668026924133,-0.10513736307621,0.382805317640305,-0.917826890945435,-0.108318701386452,0.365262389183044,-0.924581289291382,-0.125880047678947,0.332999914884567,-0.934486627578735,-0.121249817311764,0.351843237876892,-0.928172826766968,-0.166382521390915,0.198188945651054,-0.965938925743103,-0.219052612781525,0.148840188980103,-0.964293837547302,-0.181308627128601,0.21147908270359,-0.960418581962585,-0.135167196393013,0.251062333583832,-0.958487153053284,0.683998763561249,0.661820828914642,-0.306820720434189,0.715207874774933,0.62874573469162,-0.305215656757355,0.769264876842499,0.598877549171448,-0.222659468650818,0.74363511800766,0.631340503692627,-0.220036581158638,-0.139703586697578,0.328744977712631,-0.934028744697571,-0.145645692944527,0.31416979432106,-0.938128352165222,-0.180494800209999,0.270453631877899,-0.945661902427673,-0.166546061635017,0.292992889881134,-0.941497564315796,-0.103487461805344,0.315942943096161,-0.943117439746857,-0.141120538115501,0.270106911659241,-0.95243227481842,-0.171796023845673,0.231442004442215,-0.957559764385223,-0.128230169415474,0.284085303544998,-0.950185537338257,-0.262256264686584,0.0923371389508247,-0.960570514202118,-0.297855168581009,0.0575975775718689,-0.952871918678284,-0.247378021478653,0.122207090258598,-0.961181342601776, +-0.210696637630463,0.155145362019539,-0.965161561965942,-0.142030656337738,0.255290508270264,-0.956375479698181,-0.194010347127914,0.197092026472092,-0.960996747016907,-0.243225052952766,0.144724056124687,-0.959112405776978,-0.190057456493378,0.207073241472244,-0.959686875343323,0.0405974574387074,0.223923340439796,-0.973760902881622,0.0983031615614891,0.228169307112694,-0.968646168708801,0.106020174920559,0.231177806854248,-0.967117726802826,0.0493059754371643,0.227040350437164,-0.972636461257935,0.328583985567093,0.338998854160309,-0.881539762020111,0.227273553609848,0.328641623258591,-0.91670149564743,0.220770910382271,0.355223923921585,-0.90833705663681,0.323858827352524,0.365489661693573,-0.872658431529999,0.0658489689230919,0.157469198107719,-0.985326051712036,0.117741912603378,0.159836307168007,-0.980096518993378,0.131680622696877,0.160821989178658,-0.978159844875336,0.0837262868881226,0.158706158399582,-0.983769476413727,0.477465271949768,0.367375403642654,-0.798161745071411,0.479959726333618,0.340908110141754,-0.80834424495697,0.329651117324829,0.354370802640915,-0.875072360038757,0.324958384037018,0.381319433450699,-0.865446448326111,0.17135839164257,0.191309094429016,-0.96645599603653,0.237358272075653,0.190790474414825,-0.952502012252808,0.247955560684204,0.193599909543991,-0.949229717254639,0.1829804033041,0.194184795022011,-0.963748157024384,0.12232644110918,-0.0788770467042923,-0.98935067653656,0.104531243443489,-0.0808826461434364,-0.991227149963379,0.0867112129926682,-0.082945741713047,-0.992774546146393,0.10454023629427,-0.0809658244252205,-0.991219460964203,0.133346244692802,-0.0776933953166008,-0.988019585609436,0.111651659011841,-0.0802724808454514,-0.990500032901764,0.133342400193214,-0.0776579082012177,-0.988022804260254,0.154971703886986,-0.0750337541103363,-0.985065340995789,0.0860041379928589,-0.0834223106503487,-0.992796123027802,0.101487934589386,-0.0814648643136024,-0.991495668888092,0.141803056001663,-0.0766760855913162,-0.986920833587646,0.109233506023884,-0.0805590897798538,-0.990746319293976, +0.081281952559948,-0.0839497596025467,-0.993149399757385,0.10691025853157,-0.080509178340435,-0.991003751754761,0.177586734294891,-0.0720526054501534,-0.981463968753815,0.106896534562111,-0.0803824365139008,-0.991015613079071,0.0356779210269451,-0.0885104387998581,-0.995436072349548,0.208606690168381,-0.0679808482527733,-0.975634038448334,0.208586528897285,-0.0677940547466278,-0.975651502609253,0.20858559012413,-0.0677854269742966,-0.975652158260345,0.189814388751984,-0.0703365951776505,-0.979297399520874,0.148789450526237,-0.0753164365887642,-0.985996603965759,0.10751174390316,-0.0802382081747055,-0.990960657596588,0.148798301815987,-0.0753978192806244,-0.985988974571228,0.172099024057388,-0.0723690390586853,-0.98241776227951,0.14986415207386,-0.0749977454543114,-0.985858082771301,0.127561956644058,-0.077676884829998,-0.98878425359726,0.149873644113541,-0.0750851929187775,-0.985849976539612,0.0928489938378334,-0.0821482315659523,-0.99228572845459,0.106562785804272,-0.080555647611618,-0.991037428379059,0.0928402170538902,-0.0820671617984772,-0.992293179035187,0.0791086554527283,-0.0836447104811668,-0.993350625038147,0.105077050626278,-0.0785542726516724,-0.991356730461121,0.146484017372131,-0.073598675429821,-0.98647129535675,0.187636345624924,-0.0685464218258858,-0.979843854904175,0.146487697958946,-0.0736323222517967,-0.986468315124512,-0.00554905878379941,-0.0928018093109131,-0.99566912651062,0.0480967685580254,-0.0870480835437775,-0.995042383670807,0.101591430604458,-0.0809390246868134,-0.991528213024139,0.0480860956013203,-0.086949810385704,-0.995051503181458,0.142492577433586,-0.0752534717321396,-0.986931025981903,0.139520734548569,-0.0746095925569534,-0.987404346466064,0.142391681671143,-0.0743290260434151,-0.987015664577484,0.14536027610302,-0.0749559327960014,-0.986535429954529,0.139257371425629,-0.0756445899605751,-0.987362861633301,0.184037670493126,-0.0701943263411522,-0.980409622192383,0.228489845991135,-0.0651043504476547,-0.971367061138153,0.184094488620758,-0.0707188099622726,-0.980361223220825,0.130630299448967,-0.0772293508052826,-0.988418698310852, +0.0826353058218956,-0.0828935354948044,-0.993126392364502,0.130635157227516,-0.0772742331027985,-0.988414466381073,0.178322926163673,-0.0714347213506699,-0.981375694274902,0.0994798168540001,-0.0814725533127785,-0.991698563098907,0.094324417412281,-0.0819827765226364,-0.992160201072693,0.0891753956675529,-0.0825733169913292,-0.992587268352509,0.0943332016468048,-0.0820639729499817,-0.992152631282806,0.571773529052734,0.548166692256927,-0.610400080680847,0.620987117290497,0.651824355125427,-0.435315907001495,0.715002596378326,0.626015901565552,-0.311248064041138,0.650624930858612,0.536544322967529,-0.537408113479614,0.106021068990231,-0.0786585137248039,-0.991247951984406,0.118251338601112,-0.0771718397736549,-0.989980459213257,0.106040105223656,-0.0788300037384033,-0.99123227596283,0.0937945544719696,-0.080314464867115,-0.992346823215485,0.103216625750065,-0.0802212432026863,-0.991418659687042,0.0645720735192299,-0.0848105102777481,-0.994302570819855,0.103175304830074,-0.0798489525914192,-0.991453051567078,0.141661986708641,-0.0751369819045067,-0.987059473991394,0.108999907970428,-0.0803301632404327,-0.990790665149689,0.114057533442974,-0.0797598212957382,-0.990267336368561,0.108999878168106,-0.080329991877079,-0.990790665149689,0.103883855044842,-0.0803894177079201,-0.991335391998291,0.135923832654953,-0.0769121870398521,-0.987729430198669,0.135887637734413,-0.0765804424881935,-0.987760186195374,0.135934472084045,-0.0770098119974136,-0.987720251083374,0.103654704988003,-0.078736923635006,-0.991491973400116,0.104130171239376,-0.0786566436290741,-0.99144846200943,0.103653073310852,-0.0787220001220703,-0.991493344306946,0.103176847100258,-0.0787956193089485,-0.991537153720856,0.153818279504776,-0.076098695397377,-0.98516446352005,-0.00212155538611114,-0.0939594730734825,-0.995573759078979,-0.158011242747307,-0.109473526477814,-0.981350123882294,-0.00212189555168152,-0.0939563289284706,-0.995574116706848,0.184874042868614,-0.0715279057621956,-0.980155825614929,0.184893697500229,-0.0717080384492874,-0.980138897895813, +0.184869080781937,-0.0714825168251991,-0.980160057544708,-0.0283624827861786,-0.379950553178787,-0.924571931362152,-0.0236864648759365,-0.379599809646606,-0.924847543239594,-0.0424334704875946,-0.41638109087944,-0.908199489116669,-0.0470658391714096,-0.416548073291779,-0.907894611358643,-0.000816605985164642,-0.295090585947037,-0.955469012260437,0.0114128291606903,-0.297370761632919,-0.954693853855133,-0.0180069003254175,-0.335207164287567,-0.941972434520721,-0.030278742313385,-0.332853078842163,-0.942492485046387,0.062235951423645,-0.21725095808506,-0.974129736423492,0.0420830361545086,-0.205942571163177,-0.977658808231354,0.0435461960732937,-0.259153097867966,-0.964854180812836,0.063745453953743,-0.269988417625427,-0.960751175880432,0.052095003426075,-0.106206223368645,-0.992978513240814,0.051377534866333,-0.102970987558365,-0.993356645107269,0.0333856455981731,-0.148684054613113,-0.98832106590271,0.0340319760143757,-0.151916906237602,-0.987807273864746,0.0300272013992071,0.00592364836484194,-0.999531507492065,0.0260782800614834,0.0101349223405123,-0.999608516693115,0.0132521176710725,-0.0345644541084766,-0.999314665794373,0.0170792657881975,-0.0389713644981384,-0.999094367027283,0.0490283071994781,0.0910813137888908,-0.994635879993439,0.0464488379657269,0.0941164419054985,-0.994477033615112,0.0352540500462055,0.0539178363978863,-0.997922837734222,0.037715058773756,0.0505963712930679,-0.998006820678711,-0.0520272962749004,0.19863323867321,-0.978692054748535,-0.0610349327325821,0.202452450990677,-0.977388203144073,-0.061204057186842,0.169264599680901,-0.983668506145477,-0.0523346737027168,0.164856493473053,-0.984928131103516,-0.0136375557631254,0.246174275875092,-0.969129681587219,0.000227849930524826,0.244147196412086,-0.969738185405731,-0.0196011662483215,0.221640139818192,-0.974931597709656,-0.0333581268787384,0.223871454596519,-0.974047660827637,0.0195291023701429,0.284237295389175,-0.958555102348328,-0.000255890219705179,0.287377148866653,-0.957817554473877,0.0163182765245438,0.264820873737335,-0.964159607887268, +0.0359843410551548,0.260618090629578,-0.964771151542664,0.0582563057541847,0.312129199504852,-0.948251843452454,0.04029880464077,0.313563734292984,-0.948711693286896,0.0570659562945366,0.297583281993866,-0.952988862991333,0.074977807700634,0.295214623212814,-0.952484548091888,0.099430687725544,0.332055419683456,-0.938004732131958,0.0949444696307182,0.332107722759247,-0.938450932502747,0.0994800478219986,0.322156012058258,-0.941445291042328,0.103997513651848,0.321846574544907,-0.941062867641449,0.0848194286227226,0.34188050031662,-0.93590784072876,0.064075194299221,0.340049564838409,-0.938222169876099,0.0848530232906342,0.341659009456635,-0.935985684394836,0.105453141033649,0.344112396240234,-0.932987928390503,0.110233992338181,0.338224321603775,-0.934587061405182,0.117741838097572,0.343964278697968,-0.931571543216705,0.109235696494579,0.342682123184204,-0.933079123497009,0.101833119988441,0.33648219704628,-0.936167597770691,0.128492444753647,0.334253698587418,-0.933683156967163,0.100361078977585,0.328325688838959,-0.939217746257782,0.0699189752340317,0.330585598945618,-0.941182553768158,0.0983671993017197,0.335833102464676,-0.936771154403687,0.0107416883111,0.273045569658279,-0.961941182613373,0.0217658076435328,0.277669578790665,-0.960430145263672,0.0277251824736595,0.296925127506256,-0.954498171806335,0.0164554938673973,0.292952567338943,-0.955985426902771,0.121680580079556,0.271194785833359,-0.954802215099335,0.107282496988773,0.266909867525101,-0.957731544971466,0.0855007618665695,0.280006349086761,-0.956183075904846,0.100014515221119,0.284076422452927,-0.953571081161499,-0.0157270934432745,0.15277598798275,-0.988135755062103,0.00303880916908383,0.164417341351509,-0.986386239528656,0.0101598054170609,0.199662819504738,-0.979812026023865,-0.0090345898643136,0.188945204019547,-0.981946110725403,0.149013936519623,0.132252857089043,-0.979951024055481,0.129612132906914,0.159565731883049,-0.978641629219055,0.13359734416008,0.158946961164474,-0.97820633649826,0.153085798025131,0.13145524263382,-0.979430615901947,0.139209821820259,0.0392928570508957,-0.989483118057251, +0.117856852710247,0.0716738179326057,-0.990440666675568,0.120439670979977,0.0696203708648682,-0.990276455879211,0.141885951161385,0.0370539389550686,-0.989189326763153,0.212404489517212,-0.0107889696955681,-0.97712230682373,0.1899204403162,0.0241602212190628,-0.981502175331116,0.191774010658264,0.0212233364582062,-0.981209635734558,0.214321970939636,-0.0138655100017786,-0.97666472196579,0.265143483877182,-0.0796023458242416,-0.960917472839355,0.236973881721497,-0.045884732156992,-0.970431923866272,0.243280112743378,-0.0460200794041157,-0.968863725662231,0.271430134773254,-0.0797411799430847,-0.959149122238159,0.241782814264297,-0.203730463981628,-0.948701739311218,0.242304757237434,-0.149705141782761,-0.958580613136292,0.219971626996994,-0.169420093297958,-0.960681676864624,0.219117239117622,-0.223029300570488,-0.949866116046906,0.211935922503471,-0.323745399713516,-0.922101974487305,0.2085882127285,-0.276994198560715,-0.937958061695099,0.192375063896179,-0.290917992591858,-0.937207937240601,0.195363119244576,-0.336954861879349,-0.921029150485992,0.307622879743576,-0.358828872442245,-0.88125479221344,0.253048300743103,-0.345951199531555,-0.903484582901001,0.290679842233658,-0.326901257038116,-0.899244666099548,0.345045328140259,-0.339639246463776,-0.874979436397552,0.262210607528687,-0.459088832139969,-0.848812818527222,0.277975112199783,-0.415910184383392,-0.865880250930786,0.250283449888229,-0.432046502828598,-0.866426050662994,0.233776286244392,-0.47349688410759,-0.849205195903778,0.16643688082695,-0.0739507451653481,-0.983275234699249,0.208168774843216,-0.0686923190951347,-0.975677788257599,0.16644361615181,-0.0740125924348831,-0.983269393444061,0.124374933540821,-0.078835740685463,-0.98909854888916,0.114935681223869,-0.0799630358815193,-0.990149319171906,0.114921286702156,-0.0798307955265045,-0.990161776542664,0.114923760294914,-0.0798534378409386,-0.990159630775452,0.0796158909797668,-0.0837930142879486,-0.993297636508942,0.0732454210519791,-0.0845377817749977,-0.993724584579468,0.0668707489967346,-0.0852683782577515,-0.994111478328705, +0.0732779651880264,-0.0848362371325493,-0.993696689605713,0.126802384853363,-0.0788890197873116,-0.988785982131958,0.170569002628326,-0.0736413225531578,-0.982590138912201,0.213971436023712,-0.0680070891976357,-0.974469780921936,0.170557022094727,-0.0735315829515457,-0.982600331306458,0.254458099603653,-0.0628762319684029,-0.965037643909454,0.254471451044083,-0.0629987046122551,-0.965026199817657,0.254461675882339,-0.0629089027643204,-0.965034663677216,0.309400618076324,-0.49774158000946,-0.810262084007263,0.328972280025482,-0.460638523101807,-0.824372172355652,0.3016617000103,-0.474348098039627,-0.827039361000061,0.281422793865204,-0.509648978710175,-0.813055515289307,0.0806239917874336,-0.0845959857106209,-0.993148148059845,0.080620251595974,-0.0845615789294243,-0.993151485919952,0.0806096419692039,-0.0844642519950867,-0.993160545825958,0.246010720729828,-0.559091866016388,-0.791767060756683,0.225904762744904,-0.548682272434235,-0.804931640625,0.242928802967072,-0.544138193130493,-0.803056180477142,0.263089865446091,-0.554824531078339,-0.789273917675018,0.242762804031372,-0.5799560546875,-0.777635633945465,0.256544530391693,-0.568944931030273,-0.781336426734924,0.2421984821558,-0.572357177734375,-0.783420085906982,0.228324174880981,-0.582506954669952,-0.780098617076874,0.16479903459549,-0.592230558395386,-0.788735866546631,0.17004369199276,-0.591782927513123,-0.787958264350891,0.175277426838875,-0.590459823608398,-0.787804007530212,0.170038789510727,-0.591181218624115,-0.788410782814026,0.173721417784691,-0.0734405517578125,-0.982052683830261,0.21767070889473,-0.0679400861263275,-0.973654866218567,0.173729032278061,-0.0735103264451027,-0.982046127319336,0.129426270723343,-0.078857883810997,-0.988448441028595,0.169617369771004,-0.580593585968018,-0.79632967710495,0.161868125200272,-0.58047491312027,-0.798027336597443,0.168719410896301,-0.588306307792664,-0.790840923786163,0.176518395543098,-0.587964951992035,-0.789391279220581,0.189613521099091,-0.0715548992156982,-0.979248046875,0.238092184066772,-0.0653681010007858,-0.969040334224701, +0.189609915018082,-0.0715218782424927,-0.979251146316528,0.140662401914597,-0.0775654762983322,-0.987014591693878,0.250412225723267,-0.539408624172211,-0.803947865962982,0.225197449326515,-0.555709898471832,-0.800295472145081,0.204533144831657,-0.554883599281311,-0.806393563747406,0.230031579732895,-0.538171589374542,-0.810837149620056,0.192227527499199,-0.0714652016758919,-0.978744804859161,0.254276603460312,-0.0633424147963524,-0.965054988861084,0.192211374640465,-0.0713158920407295,-0.978758871555328,0.12936744093895,-0.0790895745158195,-0.988437652587891,0.464362233877182,0.628631889820099,-0.623850703239441,0.426907509565353,0.603878259658813,-0.67311292886734,0.410853266716003,0.614410996437073,-0.673571646213531,0.448147594928741,0.638737440109253,-0.625442445278168,0.103398844599724,-0.0811214298009872,-0.99132639169693,0.104176968336105,-0.0809342488646507,-0.991260230541229,0.103387460112572,-0.0810171887278557,-0.991336166858673,0.102605521678925,-0.0811701193451881,-0.991404891014099,0.111474022269249,-0.0800660252571106,-0.99053680896759,0.126704677939415,-0.0782178416848183,-0.98885190486908,0.111479952931404,-0.0801204442977905,-0.99053168296814,0.0962130501866341,-0.0818606093525887,-0.991988837718964,-0.0168472900986671,-0.0942362099885941,-0.995407342910767,-0.0168444905430079,-0.09426199644804,-0.995404958724976,-0.0168434679508209,-0.0942714065313339,-0.995404124259949,0.110519059002399,-0.0797946453094482,-0.990665674209595,0.137394309043884,-0.0766063928604126,-0.987549662590027,0.164166837930679,-0.0733544453978539,-0.983701348304749,0.137401297688484,-0.0766706764698029,-0.987543702125549,0.0659605637192726,-0.0854714214801788,-0.994154870510101,0.0945653915405273,-0.0821179300546646,-0.992126047611237,0.123080566525459,-0.0785951837897301,-0.989279627799988,0.0945408046245575,-0.0818908736109734,-0.992147207260132,0.142607346177101,-0.0759684965014458,-0.986859619617462,0.142605394124985,-0.0759504288434982,-0.986861348152161,0.14260832965374,-0.0759776905179024,-0.986858785152435,0.279501140117645,-0.0588947162032127,-0.958337426185608, +0.279506415128708,-0.0589438900351524,-0.95833283662796,0.279507249593735,-0.058951523154974,-0.958332061767578,0.196222454309464,-0.0674106329679489,-0.9782395362854,0.196223944425583,-0.0674243196845055,-0.978238344192505,0.196223571896553,-0.0674208328127861,-0.978238642215729,0.116148561239243,-0.0793522521853447,-0.990056931972504,0.116122968494892,-0.0791153460741043,-0.990078926086426,0.116123825311661,-0.0791234225034714,-0.990078151226044,0.0874033197760582,-0.0808975920081139,-0.992882788181305,0.0874462276697159,-0.0812817737460136,-0.992847681045532,0.0874147713184357,-0.0810000821948051,-0.992873430252075,0.115915313363075,-0.0779216811060905,-0.990197896957397,-0.00262397434562445,-0.0916284993290901,-0.99578982591629,0.115887075662613,-0.0776673331856728,-0.990221261978149,0.232773706316948,-0.062864862382412,-0.970497071743011,-0.0278636366128922,-0.0954526141285896,-0.995043992996216,-0.043752484023571,-0.0971124991774559,-0.994311273097992,-0.0596369616687298,-0.0986845418810844,-0.993330180644989,-0.0437549725174904,-0.0970895290374756,-0.994313418865204,0.0172667615115643,-0.0905673131346703,-0.995740711688995,-0.0687424838542938,-0.0995964407920837,-0.992650508880615,0.0172628816217184,-0.0905316472053528,-0.995744049549103,0.103142596781254,-0.0808220431208611,-0.991377592086792,0.102119944989681,-0.0799414739012718,-0.991554737091064,0.164912134408951,-0.0722759738564491,-0.983656585216522,0.102083720266819,-0.0796149298548698,-0.991584837436676,0.0388764068484306,-0.0869587659835815,-0.995453059673309,0.11087841540575,-0.0803259611129761,-0.990582585334778,0.103089705109596,-0.0811437368392944,-0.99135684967041,0.0953039526939392,-0.08204285800457,-0.992061614990234,0.103098928928375,-0.0812291875481606,-0.991348803043365,-0.109618857502937,-0.106575012207031,-0.988243699073792,-0.109618723392487,-0.106576271355152,-0.988243579864502,-0.109618693590164,-0.106576442718506,-0.988243520259857,0.467694133520126,0.437673568725586,-0.767921805381775,0.460346013307571,0.444136440753937,-0.768651008605957, +0.503996670246124,0.479712039232254,-0.718236565589905,0.511451065540314,0.473442584276199,-0.717126190662384,0.3620865046978,0.755832016468048,-0.545537650585175,0.333395093679428,0.73813784122467,-0.586515307426453,0.312971472740173,0.746512293815613,-0.587169766426086,0.341617852449417,0.763678193092346,-0.547807395458221,0.117363899946213,-0.0793430060148239,-0.989914417266846,0.117364287376404,-0.079346664249897,-0.989914000034332,0.11736936122179,-0.079393595457077,-0.989909708499908,0.257058888673782,0.830967366695404,-0.493369966745377,0.23374417424202,0.818961918354034,-0.524085164070129,0.210295915603638,0.823926746845245,-0.526232302188873,0.233802914619446,0.835371732711792,-0.497483968734741,0.347137272357941,0.147167265415192,-0.92619526386261,0.350556075572968,0.141000777482986,-0.925866723060608,0.407801955938339,0.195093289017677,-0.891984462738037,0.404218167066574,0.201111137866974,-0.892279148101807,0.0904272794723511,0.86650687456131,-0.490906029939651,0.0803982764482498,0.860559940338135,-0.502964019775391,0.0682722106575966,0.86048436164856,-0.504881739616394,0.0785200297832489,0.866031348705292,-0.493785679340363,0.238899111747742,0.0114230290055275,-0.970977246761322,0.247097924351692,-0.00278635323047638,-0.968986511230469,0.307160079479218,0.059847004711628,-0.949774146080017,0.298742592334747,0.073887899518013,-0.95146918296814,-0.119464196264744,0.833952903747559,-0.53874945640564,-0.103626139461994,0.838132739067078,-0.535532593727112,-0.122289851307869,0.839334785938263,-0.529681444168091,-0.138439938426018,0.835636138916016,-0.53155106306076,0.113698780536652,-0.275497108697891,-0.954554319381714,0.169468566775322,-0.20333643257618,-0.964331269264221,0.153870090842247,-0.177144140005112,-0.972082376480103,0.0978216677904129,-0.249694466590881,-0.963370978832245,0.0248523019254208,-0.434343725442886,-0.900404274463654,0.0742016732692719,-0.366148084402084,-0.927593588829041,0.0569031313061714,-0.339875400066376,-0.938747406005859,0.00671254098415375,-0.408947765827179,-0.912533164024353, +-0.217025324702263,0.710896968841553,-0.668973445892334,-0.245517253875732,0.689252316951752,-0.681654274463654,-0.240061149001122,0.728610277175903,-0.64148086309433,-0.209388554096222,0.747904896736145,-0.629916429519653,-0.00274869822897017,-0.616917908191681,-0.787022769451141,0.0284657329320908,-0.55414742231369,-0.831931710243225,0.00455126212909818,-0.525977253913879,-0.850486576557159,-0.0283376947045326,-0.590688228607178,-0.806402146816254,-0.139779075980186,0.626755118370056,-0.766576766967773,-0.163118556141853,0.6647909283638,-0.729003012180328,-0.146168231964111,0.681179761886597,-0.717376470565796,-0.124520048499107,0.64432817697525,-0.754543542861938,-0.108496725559235,-0.678121387958527,-0.726897418498993,-0.086065873503685,-0.623389303684235,-0.777160584926605,-0.110329478979111,-0.599694669246674,-0.792586803436279,-0.134480401873589,-0.656257569789886,-0.742456138134003,-0.131100729107857,0.369723707437515,-0.919846296310425,-0.18265675008297,0.44648551940918,-0.875949382781982,-0.156621590256691,0.4886674284935,-0.858296990394592,-0.108967684209347,0.414397120475769,-0.903549194335938,-0.0050939922221005,-0.795654535293579,-0.605729401111603,0.0294566750526428,-0.812841892242432,-0.581739068031311,0.0289499796926975,-0.77146327495575,-0.635615050792694,-0.00335898995399475,-0.751140296459198,-0.660134136676788,-0.0819355845451355,0.257662147283554,-0.962754905223846,-0.146388113498688,0.339717984199524,-0.929065227508545,-0.123715378344059,0.386616796255112,-0.913904905319214,-0.0626092776656151,0.306539118289948,-0.949796795845032,1.33961457322584e-05,-0.859151244163513,-0.511721909046173,0.0238289646804333,-0.866472840309143,-0.498655200004578,0.0217792857438326,-0.841360926628113,-0.540034830570221,-0.00072324275970459,-0.832365453243256,-0.554226696491241,0.0913451835513115,0.178598701953888,-0.979672789573669,0.0271311476826668,0.246380567550659,-0.968793392181396,0.0410234369337559,0.285668790340424,-0.957450032234192,0.103996828198433,0.218687132000923,-0.970237493515015,0.0223551243543625,-0.899213910102844,-0.436937838792801, +0.0641836002469063,-0.904895007610321,-0.420767813920975,0.0338985212147236,-0.887248575687408,-0.460044503211975,-0.00635220110416412,-0.878118991851807,-0.478400230407715,0.205813050270081,-0.0224020946770906,-0.978334903717041,0.132373794913292,0.0319548211991787,-0.990684628486633,0.139834001660347,0.0582806318998337,-0.988458335399628,0.213119819760323,0.00393711822107434,-0.977018237113953,0.132935002446175,-0.920167624950409,-0.368266195058823,0.108155682682991,-0.921050369739532,-0.374123871326447,0.135533913969994,-0.916004478931427,-0.377579808235168,0.159708619117737,-0.915391147136688,-0.369529753923416,0.280285537242889,-0.0651820302009583,-0.957701086997986,0.274176746606827,-0.0873668193817139,-0.957702577114105,0.200683191418648,-0.0375730022788048,-0.978935420513153,0.206723347306252,-0.0152966789901257,-0.978279888629913,0.266373246908188,-0.895504713058472,-0.35653418302536,0.282754689455032,-0.896002948284149,-0.342386573553085,0.298913836479187,-0.891724228858948,-0.339821249246597,0.282632499933243,-0.890963435173035,-0.355391561985016,0.411598205566406,-0.182611078023911,-0.892883002758026,0.408201187849045,-0.195208787918091,-0.891776502132416,0.337937951087952,-0.156042471528053,-0.928142666816711,0.341120660305023,-0.143305465579033,-0.929031908512115,0.231831148266792,-0.892460405826569,-0.386999875307083,0.253812462091446,-0.893045127391815,-0.371550559997559,0.272493630647659,-0.88739150762558,-0.371864944696426,0.250350505113602,-0.886580884456635,-0.388971835374832,0.48829859495163,-0.363731145858765,-0.793261706829071,0.489793866872787,-0.363468408584595,-0.792460024356842,0.426301091909409,-0.339036375284195,-0.838642835617065,0.424771785736084,-0.339267998933792,-0.839324831962585,0.373534649610519,-0.799332141876221,-0.470680415630341,0.405169188976288,-0.802346050739288,-0.438268005847931,0.42281499505043,-0.792327880859375,-0.439822882413864,0.390872538089752,-0.78912878036499,-0.473808526992798,0.592707097530365,-0.510985672473907,-0.622568905353546,0.542222678661346,-0.499573916196823,-0.675589025020599, +0.533398151397705,-0.510319590568542,-0.674581706523895,0.583674967288971,-0.521631360054016,-0.622273504734039,0.326402395963669,-0.774847209453583,-0.541362583637238,0.310715049505234,-0.785203695297241,-0.535641133785248,0.349419862031937,-0.789033591747284,-0.505303502082825,0.365644723176956,-0.778839886188507,-0.509619891643524,0.387277096509933,0.59037047624588,-0.708151996135712,0.341708928346634,0.548711657524109,-0.762987971305847,0.337452292442322,0.551820337772369,-0.762640357017517,0.382876753807068,0.593332231044769,-0.708069443702698,0.239398404955864,0.446370601654053,-0.862230658531189,0.235284239053726,0.450009793043137,-0.861471176147461,0.298204243183136,0.495120465755463,-0.81604528427124,0.302498608827591,0.491612911224365,-0.81658524274826,0.249462276697159,0.767525136470795,-0.590486109256744,0.228410974144936,0.738955020904541,-0.633856475353241,0.224963456392288,0.740337669849396,-0.633475780487061,0.245926171541214,0.76876163482666,-0.590360701084137,0.165432840585709,0.254983633756638,-0.95268851518631,0.168171763420105,0.250215440988541,-0.953472912311554,0.243256360292435,0.309208750724792,-0.919356465339661,0.240293830633163,0.313807845115662,-0.918576896190643,0.215694814920425,0.830727159976959,-0.51319408416748,0.193698242306709,0.813940405845642,-0.547706127166748,0.176033109426498,0.818289160728455,-0.547188520431519,0.197901219129562,0.834401667118073,-0.51440155506134,0.0470238141715527,0.0578313358128071,-0.997218370437622,0.0570654347538948,0.0402366109192371,-0.997559309005737,0.137181520462036,0.114072673022747,-0.98395562171936,0.126725271344185,0.131391271948814,-0.983197450637817,0.100706949830055,0.871044039726257,-0.480770707130432,0.08865075558424,0.862512290477753,-0.498210340738297,0.074519656598568,0.863100528717041,-0.499503999948502,0.0867617949843407,0.871050536632538,-0.483470112085342,-0.0829309299588203,0.853473842144012,-0.514494776725769,-0.0929736718535423,0.851237773895264,-0.516478598117828,-0.0845184475183487,0.857000827789307,-0.50833660364151,-0.0742165893316269,0.858589172363281,-0.507263779640198, +-0.240673363208771,0.762910306453705,-0.600036859512329,-0.256585687398911,0.754021346569061,-0.604661643505096,-0.290520042181015,0.7642662525177,-0.575756371021271,-0.27389919757843,0.772570490837097,-0.572812378406525,-0.266419529914856,0.658849060535431,-0.703518748283386,-0.280371099710464,0.646508395671844,-0.709520280361176,-0.33240020275116,0.660424530506134,-0.673312366008759,-0.317502319812775,0.672289490699768,-0.668744444847107,-0.230618000030518,0.389606356620789,-0.891640305519104,-0.307253539562225,0.419044345617294,-0.854398787021637,-0.304321855306625,0.423152953386307,-0.853422343730927,-0.227896869182587,0.393793702125549,-0.890499711036682,-0.21714723110199,-0.489775419235229,-0.844373822212219,-0.113833174109459,-0.42632383108139,-0.897379517555237,-0.114674359560013,-0.425173610448837,-0.897818028926849,-0.217680528759956,-0.488436043262482,-0.845012068748474,-0.0997016429901123,0.233238071203232,-0.967294991016388,-0.189132794737816,0.272601038217545,-0.943354368209839,-0.190920695662498,0.267740428447723,-0.944385766983032,-0.101233705878258,0.228268474340439,-0.968320906162262,-0.096401035785675,-0.782649159431458,-0.614952981472015,-0.0741803869605064,-0.732392013072968,-0.676830351352692,-0.100336834788322,-0.712218403816223,-0.694750010967255,-0.124788329005241,-0.764876306056976,-0.631974756717682,0.0579152181744576,0.0501880943775177,-0.997059226036072,-0.0377920940518379,0.103050991892815,-0.993957936763763,-0.0438317842781544,0.0843266174197197,-0.995473623275757,0.0522719398140907,0.0313040390610695,-0.998142123222351,-0.0623610764741898,-0.845756053924561,-0.529913127422333,-0.0289184153079987,-0.859098315238953,-0.510993123054504,-0.026413768529892,-0.820904910564423,-0.570453703403473,-0.0574683099985123,-0.804583847522736,-0.591051816940308,0.13455718755722,-0.0678099170327187,-0.988582909107208,0.14276847243309,-0.0406874045729637,-0.988919496536255,0.0479642823338509,0.0198149513453245,-0.998652517795563,0.0396001785993576,-0.00725841242820024,-0.999189257621765,0.0551418289542198,-0.920975506305695,-0.385698944330215, +0.0757421776652336,-0.923055410385132,-0.377136439085007,0.068782165646553,-0.908849656581879,-0.411413908004761,0.0491952076554298,-0.905384123325348,-0.421733736991882,0.290957987308502,-0.258686482906342,-0.921099841594696,0.304042100906372,-0.222849130630493,-0.926227211952209,0.218186646699905,-0.155230358242989,-0.96348237991333,0.206080481410027,-0.191578567028046,-0.959598124027252,0.133143305778503,-0.936196029186249,-0.325284540653229,0.144093006849289,-0.935425102710724,-0.32282692193985,0.135623753070831,-0.932449698448181,-0.334878742694855,0.124951250851154,-0.932660043239594,-0.338426411151886,0.401600420475006,-0.453526198863983,-0.795632660388947,0.422606736421585,-0.413909435272217,-0.80627703666687,0.358889579772949,-0.344724833965302,-0.867388725280762,0.340338289737701,-0.385771185159683,-0.857525825500488,0.25149142742157,-0.907690644264221,-0.335931360721588,0.234013319015503,-0.918628096580505,-0.31837123632431,0.253254801034927,-0.913824141025543,-0.31747043132782,0.27043953537941,-0.901845812797546,-0.33695188164711,0.460570752620697,-0.610201895236969,-0.644614815711975,0.487132340669632,-0.576777398586273,-0.655766785144806,0.450777798891068,-0.517017960548401,-0.727661907672882,0.427103340625763,-0.552371919155121,-0.715868651866913,0.481991767883301,-0.756919026374817,-0.441313445568085,0.470176786184311,-0.793658316135406,-0.386057317256927,0.500000059604645,-0.774229764938354,-0.388031393289566,0.510163486003876,-0.735520660877228,-0.445805609226227,0.515628576278687,-0.731291353702545,-0.446475267410278,0.548345983028412,-0.704239070415497,-0.450959175825119,0.549649953842163,-0.654554605484009,-0.519079208374023,0.519398212432861,-0.683930099010468,-0.512313485145569,-0.110456481575966,0.11151097714901,-0.987605571746826,-0.0204865969717503,0.0642569214105606,-0.99772310256958,-0.0184918604791164,0.0785759687423706,-0.996736645698547,-0.10815840959549,0.125559657812119,-0.986172676086426,0.12514491379261,-0.142729341983795,-0.981818318367004,0.132084831595421,-0.114127188920975,-0.984646439552307, +0.0442383736371994,-0.053845327347517,-0.997568964958191,0.0375438407063484,-0.0823559835553169,-0.995895564556122,-0.259162157773972,0.247414648532867,-0.933606386184692,-0.175431072711945,0.209868133068085,-0.961862444877625,-0.176618576049805,0.213950783014297,-0.960744976997375,-0.260148376226425,0.251346200704575,-0.932281136512756,0.263702809810638,-0.324666529893875,-0.908324003219604,0.276932865381241,-0.287033021450043,-0.917017042636871,0.200807720422745,-0.219294607639313,-0.95477020740509,0.189091488718987,-0.257466644048691,-0.947605133056641,-0.340587466955185,0.430441498756409,-0.835894882678986,-0.268960177898407,0.405514001846313,-0.873623967170715,-0.275665760040283,0.398758947849274,-0.874642670154572,-0.347556084394455,0.423821002244949,-0.836409389972687,0.394801080226898,-0.440509706735611,-0.806277513504028,0.411116898059845,-0.406237035989761,-0.816060304641724,0.350067555904388,-0.343802034854889,-0.87135124206543,0.335946172475815,-0.378939986228943,-0.862290382385254,-0.390728235244751,0.563449501991272,-0.727912247180939,-0.334519535303116,0.544012069702148,-0.769511342048645,-0.344912797212601,0.534544944763184,-0.771554827690125,-0.401551216840744,0.554296553134918,-0.729048728942871,0.406285405158997,-0.706308484077454,-0.579707384109497,0.393269389867783,-0.656061947345734,-0.644144356250763,0.365613758563995,-0.686568439006805,-0.628450751304626,0.375379920005798,-0.734523594379425,-0.56530088186264,-0.339507311582565,0.671462416648865,-0.658690452575684,-0.32317778468132,0.682530105113983,-0.655521750450134,-0.275920689105988,0.670588374137878,-0.688606560230255,-0.29155644774437,0.659041404724121,-0.693295955657959,0.490001857280731,-0.726712226867676,-0.481443166732788,0.489108920097351,-0.683634459972382,-0.541679263114929,0.463166296482086,-0.708000838756561,-0.533115327358246,0.461719244718552,-0.74926370382309,-0.474783509969711,-0.296409845352173,0.76704329252243,-0.569021821022034,-0.252482146024704,0.787129878997803,-0.562742710113525,-0.19609209895134,0.791918456554413,-0.578284740447998, +-0.238824039697647,0.771478474140167,-0.58973217010498,0.401253014802933,-0.834138035774231,-0.378430783748627,0.411551922559738,-0.809179544448853,-0.419348955154419,0.391302347183228,-0.821116507053375,-0.415511727333069,0.379965633153915,-0.844882190227509,-0.376563638448715,-0.0894339233636856,0.856603562831879,-0.508165299892426,-0.0406285747885704,0.86318027973175,-0.503258526325226,0.00755099952220917,0.869331777095795,-0.494171380996704,-0.0403145588934422,0.862378239631653,-0.504656732082367,0.311333179473877,-0.892221570014954,-0.327127307653427,0.325431793928146,-0.879408061504364,-0.347470581531525,0.310439109802246,-0.884918928146362,-0.347197651863098,0.296074897050858,-0.896914780139923,-0.32845613360405,0.888190627098083,0.349652647972107,0.298094868659973,0.890531003475189,0.346532464027405,0.29473677277565,0.896567583084106,0.317746549844742,0.308551013469696,0.894240379333496,0.321155279874802,0.31175884604454,0.0743780061602592,-0.9327073097229,-0.352881044149399,0.0610120184719563,-0.933133363723755,-0.35431569814682,0.0470529906451702,-0.937022686004639,-0.346084743738174,0.0604664012789726,-0.936317920684814,-0.345908343791962,0.137410521507263,0.807195484638214,-0.574067890644073,0.123056858778,0.831159174442291,-0.542246758937836,0.144724607467651,0.826266944408417,-0.544369220733643,0.158334106206894,0.800662875175476,-0.577814280986786,0.00398529320955276,-0.914265632629395,-0.405095756053925,-0.0169187057763338,-0.911750257015228,-0.410396695137024,-0.0453772768378258,-0.919988453388214,-0.389309883117676,-0.0240516327321529,-0.922156810760498,-0.386067926883698,0.26539146900177,0.683679342269897,-0.679816067218781,0.25284332036972,0.734831511974335,-0.629359066486359,0.289027541875839,0.716368019580841,-0.635043323040009,0.299383789300919,0.662159562110901,-0.686960101127625,-0.155948653817177,-0.824406385421753,-0.544090151786804,-0.174560621380806,-0.816980838775635,-0.549609959125519,-0.218370914459229,-0.832549333572388,-0.509093046188354,-0.199239403009415,-0.839658379554749,-0.505249857902527, +0.24411515891552,0.57166862487793,-0.783328056335449,0.249540612101555,0.6373211145401,-0.72907567024231,0.284487515687943,0.611400663852692,-0.738414585590363,0.276324361562729,0.542851507663727,-0.793068170547485,-0.177925407886505,-0.634721457958221,-0.751978158950806,-0.239391684532166,-0.665369212627411,-0.707089424133301,-0.23057621717453,-0.670261323451996,-0.70539665222168,-0.16934560239315,-0.639725506305695,-0.749715566635132,0.309791952371597,0.413711100816727,-0.856079459190369,0.284118562936783,0.443825155496597,-0.84987998008728,0.308472841978073,0.51780641078949,-0.797948122024536,0.336540788412094,0.489629536867142,-0.804365158081055,-0.0821989998221397,-0.517102718353271,-0.851967215538025,-0.15492682158947,-0.556473791599274,-0.816293299198151,-0.14956559240818,-0.558802962303162,-0.815701842308044,-0.0769259482622147,-0.519399762153625,-0.851061940193176,0.242014616727829,0.228101342916489,-0.943079352378845,0.22040268778801,0.261883914470673,-0.939595460891724,0.266071051359177,0.345317155122757,-0.899979054927826,0.289637714624405,0.312700301408768,-0.904615163803101,-0.0152204409241676,-0.298787713050842,-0.954198241233826,-0.0911896452307701,-0.359374314546585,-0.928727388381958,-0.0960754230618477,-0.347484827041626,-0.932750642299652,-0.0197932571172714,-0.286464691162109,-0.957886397838593,0.127713590860367,0.0492101423442364,-0.990589559078217,0.111412338912487,0.0803731307387352,-0.990518808364868,0.174682959914207,0.164078369736671,-0.970857441425323,0.192016810178757,0.133222222328186,-0.97230726480484,0.0808669775724411,-0.0691989287734032,-0.994319975376129,0.00614736322313547,-0.144447132945061,-0.989493489265442,-0.00436056405305862,-0.121578186750412,-0.99257230758667,0.0702377632260323,-0.0460255220532417,-0.9964679479599,0.074085108935833,-0.515517711639404,-0.853670239448547,0.162271156907082,-0.530354797840118,-0.832100868225098,0.0826791450381279,-0.488550812005997,-0.868609488010406,-0.00505018280819058,-0.465961635112762,-0.884790599346161,0.437500834465027,-0.711123764514923,-0.550359904766083, +0.424819231033325,-0.710121929645538,-0.561476290225983,0.397630393505096,-0.773503541946411,-0.493540614843369,0.411386668682098,-0.771661758422852,-0.485076606273651,0.460243940353394,-0.712571978569031,-0.529543995857239,0.45139741897583,-0.712535560131073,-0.53715318441391,0.422648012638092,-0.771883726119995,-0.474936068058014,0.43164536356926,-0.773173868656158,-0.464633882045746,0.486287862062454,-0.765649557113647,-0.421075761318207,0.475665271282196,-0.706329345703125,-0.524253308773041,0.514823615550995,-0.69707715511322,-0.499039322137833,0.524025738239288,-0.754191935062408,-0.395716458559036,0.414213895797729,-0.76533305644989,-0.492638051509857,0.46164345741272,-0.708487391471863,-0.533789336681366,0.434283167123795,-0.7153480052948,-0.547426223754883,0.381339013576508,-0.782328367233276,-0.492486357688904,0.47882929444313,-0.73052841424942,-0.486878752708435,0.47715175151825,-0.713715434074402,-0.512773334980011,0.489894360303879,-0.703206658363342,-0.515270829200745,0.483135461807251,-0.739521145820618,-0.468709588050842,0.518867433071136,-0.74383944272995,-0.42128324508667,0.523203372955322,-0.73454874753952,-0.432083785533905,0.533038854598999,-0.71378082036972,-0.45429790019989,0.527337253093719,-0.726930916309357,-0.439871490001678,0.77415257692337,0.632028460502625,0.0350407212972641,0.772434532642365,0.634822249412537,0.0185912102460861,0.700608193874359,0.708536744117737,-0.0844028294086456,0.711884617805481,0.700170397758484,-0.0546055510640144,0.600360870361328,0.752030968666077,0.272059708833694,0.571175217628479,0.772917568683624,0.276328504085541,0.551494061946869,0.813477396965027,0.184686273336411,0.576524615287781,0.79800021648407,0.175542429089546,0.444143116474152,0.845506191253662,0.29640531539917,0.494427561759949,0.784944653511047,0.373367518186569,0.495997577905655,0.792129158973694,0.355693429708481,0.452882885932922,0.843263208866119,0.289489656686783,0.309683471918106,0.865930736064911,0.392759501934052,0.351772606372833,0.801582813262939,0.48344698548317,0.351773142814636,0.808486938476563,0.471809834241867, +0.312176585197449,0.869479596614838,0.382820099592209,0.110025689005852,0.858887672424316,0.500206351280212,0.158966809511185,0.79992401599884,0.578663289546967,0.180356234312057,0.806834876537323,0.562573671340942,0.132003009319305,0.865515232086182,0.483175724744797,0.0250877849757671,0.847214639186859,0.530658006668091,0.0879822671413422,0.786422371864319,0.611391127109528,0.134178906679153,0.792883396148682,0.59441727399826,0.0718157887458801,0.853247284889221,0.516538083553314,0.989354431629181,0.0918263494968414,0.112897589802742,0.937943637371063,0.344719171524048,-0.0378211438655853,0.801211297512054,0.572598040103912,-0.173758417367935,0.936035215854645,0.350991636514664,-0.0253586582839489,-0.923009097576141,-0.0770611688494682,0.376982450485229,-0.92399275302887,-0.0994137153029442,0.369261801242828,-0.918415069580078,-0.128418177366257,0.374195992946625,-0.917807281017303,-0.106434933841228,0.382493793964386,-0.937817335128784,-0.0352027155458927,0.345339447259903,-0.926037549972534,-0.0389715060591698,0.375414073467255,-0.927150845527649,-0.0458380542695522,0.37187397480011,-0.938217341899872,-0.0424610711634159,0.343431890010834,-0.95033860206604,0.149264588952065,0.2730872631073,-0.933186233043671,0.120549060404301,0.338572770357132,-0.933045446872711,0.117960505187511,0.339869856834412,-0.950064539909363,0.147759810090065,0.274853736162186,-0.976063966751099,0.122949562966824,0.179395452141762,-0.971073150634766,0.147340029478073,0.187904193997383,-0.964547991752625,0.0891745612025261,0.248385235667229,-0.968353152275085,0.0652737691998482,0.240897282958031,-0.744696080684662,-0.304177194833755,-0.594057321548462,-0.764075994491577,-0.278735905885696,-0.581802487373352,-0.743438482284546,-0.30193892121315,-0.596767961978912,-0.616735696792603,-0.164118990302086,-0.769871473312378,-0.715565085411072,-0.355215460062027,-0.601488769054413,-0.705476105213165,-0.368596166372299,-0.605343222618103,-0.713759422302246,-0.352630227804184,-0.605144143104553,-0.723671019077301,-0.339167773723602,-0.601053655147552, +-0.699915826320648,-0.386874675750732,-0.600371420383453,-0.698432445526123,-0.389296144247055,-0.600533664226532,-0.697157382965088,-0.383262097835541,-0.605872809886932,-0.698733568191528,-0.381026744842529,-0.605466723442078,-0.58381313085556,-0.567445516586304,-0.580661535263062,-0.578248679637909,-0.552420616149902,-0.600383222103119,-0.580716073513031,-0.549687266349792,-0.60051041841507,-0.586674630641937,-0.564925014972687,-0.580235004425049,-0.476978838443756,-0.686946868896484,-0.548265695571899,-0.466234266757965,-0.673773467540741,-0.573284387588501,-0.46196261048317,-0.676227509975433,-0.573852777481079,-0.472406506538391,-0.688550531864166,-0.550209283828735,-0.312057644128799,-0.751948833465576,0.58068323135376,-0.29542464017868,-0.750891506671906,0.590665936470032,-0.29559513926506,-0.750768423080444,0.590737164020538,-0.312178760766983,-0.751867532730103,0.580723285675049,-0.497325211763382,-0.4354367852211,0.750374913215637,-0.497127950191498,-0.434946656227112,0.750789761543274,-0.49730971455574,-0.443362683057785,0.745729684829712,-0.497463166713715,-0.443380355834961,0.745616734027863,-0.649441361427307,-0.352965354919434,0.673529148101807,-0.643457174301147,-0.355993300676346,0.677666366100311,-0.650028586387634,-0.360666215419769,0.668866813182831,-0.655996978282928,-0.358424186706543,0.664228975772858,-0.782652020454407,-0.277613759040833,0.557123422622681,-0.791804075241089,-0.270587146282196,0.547566473484039,-0.781863987445831,-0.271312147378922,0.561318516731262,-0.772505402565002,-0.278193354606628,0.570827305316925,-0.874651730060577,-0.192926019430161,0.444706559181213,-0.876976609230042,-0.18998247385025,0.441382825374603,-0.874509453773499,-0.192077428102493,0.445353358983994,-0.872142314910889,-0.194886416196823,0.448761910200119,-0.977866768836975,-0.0180298741906881,0.208450168371201,-0.977188348770142,-0.021406153216958,0.21129322052002,-0.976346075534821,-0.0099719911813736,0.215983897447586,-0.976993560791016,-0.00664700474590063,0.213165402412415,-0.986531615257263,0.0391856841742992,0.15880811214447, +-0.985520303249359,0.0324019193649292,0.166432946920395,-0.987287998199463,0.0353611744940281,0.154958799481392,-0.988089561462402,0.0426369085907936,0.147855550050735,-0.979318618774414,0.198456466197968,0.0393718630075455,-0.978922069072723,0.200806230306625,0.0372642390429974,-0.980298757553101,0.194431930780411,0.034792672842741,-0.98078465461731,0.191658079624176,0.0364509373903275,-0.898563265800476,0.415215104818344,-0.142057791352272,-0.90586268901825,0.399451404809952,-0.14089472591877,-0.89973247051239,0.410055309534073,-0.149453341960907,-0.892109751701355,0.426207721233368,-0.149957418441772,-0.671528935432434,0.671345889568329,-0.313597917556763,-0.668853342533112,0.672780752182007,-0.31622987985611,-0.671602070331573,0.670870661735535,-0.31445723772049,-0.674308061599731,0.669175148010254,-0.312271326780319,-0.542279124259949,0.752198040485382,-0.374341577291489,-0.54486095905304,0.75417697429657,-0.36652934551239,-0.542118906974792,0.755352377891541,-0.368170917034149,-0.539474964141846,0.753173410892487,-0.376426219940186,-0.432878255844116,0.803106129169464,-0.409435003995895,-0.433304250240326,0.803143560886383,-0.408910512924194,-0.432883888483047,0.803215026855469,-0.409215092658997,-0.432464629411697,0.803318440914154,-0.409455806016922,-0.325164407491684,0.84338915348053,-0.427741676568985,-0.316229701042175,0.848977148532867,-0.423363536596298,-0.306855618953705,0.85200697183609,-0.424174249172211,-0.315834790468216,0.846660315990448,-0.428269565105438,-0.176229760050774,0.869540810585022,-0.461347758769989,-0.171051397919655,0.870571434497833,-0.461353242397308,-0.177992656826973,0.876625597476959,-0.447041660547256,-0.183390364050865,0.875628411769867,-0.446814298629761,-0.196386843919754,0.862151443958282,-0.46704089641571,-0.100031346082687,0.880968034267426,-0.462481409311295,-0.197114497423172,0.864765822887421,-0.461872279644012,-0.291745156049728,0.838184952735901,-0.460793882608414,-0.00677098985761404,0.489835947751999,-0.871788263320923,-0.0129116680473089,0.479304403066635,-0.877553820610046, +-0.00496534211561084,0.480942189693451,-0.87673819065094,0.00122030836064368,0.491388648748398,-0.870939671993256,-0.172101929783821,0.461739540100098,-0.870159566402435,-0.176016137003899,0.45706307888031,-0.871843874454498,-0.171218499541283,0.458456993103027,-0.872067332267761,-0.167309165000916,0.463177263736725,-0.870330095291138,-0.352033734321594,0.397310942411423,-0.847476363182068,-0.342319875955582,0.401790738105774,-0.849341809749603,-0.3520467877388,0.397351413965225,-0.847452044487,-0.3617984354496,0.393068760633469,-0.845339477062225,-0.517341673374176,0.309772819280624,-0.797745943069458,-0.514699757099152,0.308467864990234,-0.799957275390625,-0.516385793685913,0.307398766279221,-0.799282073974609,-0.519069671630859,0.30881541967392,-0.796994209289551,-0.676283717155457,0.198463797569275,-0.709402859210968,-0.686096847057343,0.179716989398003,-0.704963088035583,-0.673272728919983,0.192295849323273,-0.713951170444489,-0.663336396217346,0.211321428418159,-0.717863619327545,-0.786761164665222,0.0432477593421936,-0.615740656852722,-0.794396340847015,0.0550310462713242,-0.604901790618896,-0.793783187866211,0.0559427812695503,-0.605622589588165,-0.785698890686035,0.0435733981430531,-0.617072761058807,-0.834675014019012,-0.137825399637222,-0.533218383789063,-0.842169106006622,-0.106704622507095,-0.528550326824188,-0.845962941646576,-0.121082901954651,-0.519312620162964,-0.838247060775757,-0.151518687605858,-0.523816704750061,-0.872358858585358,-0.280283123254776,-0.400539040565491,-0.866049885749817,-0.27069354057312,-0.420336455106735,-0.868528127670288,-0.285221934318542,-0.405348539352417,-0.874742150306702,-0.294273883104324,-0.385005325078964,-0.867164254188538,-0.420392602682114,-0.267013639211655,-0.871265292167664,-0.412006378173828,-0.266735136508942,-0.870089173316956,-0.416896104812622,-0.262949407100677,-0.86537778377533,-0.425903499126434,-0.264059633016586,-0.823011636734009,-0.558139383792877,-0.105510339140892,-0.816341578960419,-0.564378261566162,-0.122734442353249,-0.814929962158203,-0.567395210266113,-0.118118524551392, +-0.823445200920105,-0.558868706226349,-0.0980003476142883,-0.750541746616364,-0.655130863189697,0.0865483731031418,-0.74435293674469,-0.664494574069977,0.0662254020571709,-0.747183263301849,-0.661496102809906,0.0643433406949043,-0.752871513366699,-0.652883112430573,0.0832362100481987,-0.718609690666199,-0.685698628425598,0.115834400057793,-0.712928891181946,-0.690772831439972,0.120686829090118,-0.720545172691345,-0.682960152626038,0.119916945695877,-0.725610494613647,-0.678610563278198,0.113917782902718,-0.605511903762817,-0.774056375026703,0.184910982847214,-0.599898874759674,-0.777459919452667,0.188885182142258,-0.609786748886108,-0.768265783786774,0.194750919938087,-0.615369558334351,-0.764777183532715,0.190882682800293,-0.472791880369186,-0.842096567153931,0.259502202272415,-0.471742153167725,-0.842495441436768,0.260116666555405,-0.475349187850952,-0.83861768245697,0.266014128923416,-0.476460814476013,-0.838100433349609,0.26565557718277,-0.28083536028862,-0.886712193489075,0.36725053191185,-0.290650427341461,-0.885718286037445,0.361974388360977,-0.296980559825897,-0.890146970748901,0.345602452754974,-0.287021607160568,-0.89142906665802,0.350674748420715,-0.245634108781815,-0.887115120887756,0.390756696462631,-0.236687690019608,-0.888389587402344,0.393373787403107,-0.225104555487633,-0.894563615322113,0.386113911867142,-0.234193339943886,-0.893033504486084,0.384245753288269,-0.117150276899338,-0.89907169342041,0.421836405992508,-0.137661680579185,-0.898696303367615,0.416406452655792,-0.159841924905777,-0.894653797149658,0.417187124490738,-0.13934762775898,-0.895437777042389,0.422816008329391,0.00306344777345657,-0.897757470607758,0.440479516983032,-0.00118182599544525,-0.898064076900482,0.439863115549088,0.00290261209011078,-0.897376716136932,0.441255897283554,0.00711555778980255,-0.896976709365845,0.442020624876022,-0.282317101955414,-0.468155086040497,0.837333798408508,-0.274230927228928,-0.468673408031464,0.839727699756622,-0.266044855117798,-0.470033377408981,0.841598987579346,-0.274168014526367,-0.469358861446381,0.839365422725677, +0.323119133710861,-0.052989661693573,-0.944873631000519,0.323196291923523,-0.0537047348916531,-0.94480687379837,0.323113024234772,-0.0529329776763916,-0.944878935813904,0.184169426560402,-0.0720095857977867,-0.980253219604492,0.114965997636318,-0.0796260461211205,-0.990173041820526,0.184157177805901,-0.0718954503536224,-0.980263888835907,0.252385139465332,-0.0633147954940796,-0.965553224086761,0.146133944392204,-0.0736753717064857,-0.986517548561096,0.281307488679886,-0.0563447177410126,-0.957962095737457,0.146143883466721,-0.0737666860222816,-0.986509323120117,0.00813930481672287,-0.0896895229816437,-0.995936572551727,0.285987704992294,0.813705205917358,-0.506058156490326,0.319249510765076,0.803011059761047,-0.503242492675781,0.346597522497177,0.764814913272858,-0.543073117733002,0.314342826604843,0.778223752975464,-0.54365086555481,0.336997836828232,-0.0505267679691315,-0.940148770809174,0.232044324278831,-0.064687691628933,-0.970551908016205,0.124274760484695,-0.0780723765492439,-0.989171624183655,0.232042551040649,-0.0646713003516197,-0.970553398132324,0.425971955060959,0.393093645572662,-0.814877450466156,0.406229734420776,0.412663668394089,-0.815282821655273,0.468305557966232,0.436387181282043,-0.76828134059906,0.488292336463928,0.417142510414124,-0.766526520252228,0.471720099449158,0.498248100280762,-0.727481305599213,0.499492764472961,0.556384444236755,-0.664035677909851,0.406290888786316,0.583185076713562,-0.703436553478241,0.371300935745239,0.520158708095551,-0.769136309623718,0.521550297737122,0.603533685207367,-0.603102445602417,0.619548261165619,0.582277536392212,-0.526415050029755,0.536021590232849,0.49549201130867,-0.683497309684753,0.460982263088226,0.51254278421402,-0.724427580833435,0.0835453420877457,-0.0833142548799515,-0.993015050888062,0.0793826654553413,-0.0838269665837288,-0.993313372135162,0.0835522413253784,-0.0833774581551552,-0.993009209632874,0.0877189934253693,-0.0829140394926071,-0.992688596248627,0.083215706050396,-0.0832562670111656,-0.993047595024109,0.0831662714481354,-0.0828033462166786,-0.99308967590332, +0.0832260772585869,-0.08335130661726,-0.993038833141327,-0.0415621362626553,-0.0961440429091454,-0.994499385356903,0.149966821074486,-0.0744911953806877,-0.985880851745605,0.335957437753677,-0.0504673942923546,-0.940524220466614,0.149986296892166,-0.0746686905622482,-0.985864520072937,0.426026880741119,-0.765898168087006,-0.481561213731766,0.428913652896881,-0.655218601226807,-0.621869564056396,0.429484784603119,-0.686062276363373,-0.587249100208282,0.159012690186501,-0.0754441320896149,-0.984389781951904,-0.0755220353603363,-0.101586021482944,-0.991955995559692,-0.305852502584457,-0.122010610997677,-0.944228649139404,-0.0755236744880676,-0.101570934057236,-0.991957485675812,0.206041291356087,-0.069024845957756,-0.976105809211731,0.206021413207054,-0.0688427835702896,-0.976122856140137,0.206044420599937,-0.0690533667802811,-0.976103186607361,0.0185109470039606,-0.348749816417694,-0.93703305721283,-0.00177795439958572,-0.387151956558228,-0.922014236450195,-0.0064927414059639,-0.387501984834671,-0.921846032142639,0.013770803809166,-0.34927561879158,-0.936918914318085,0.0539191216230392,-0.263338834047318,-0.963195443153381,0.0239574052393436,-0.302280396223068,-0.95291805267334,0.0119890216737986,-0.300140142440796,-0.953819870948792,0.0420135483145714,-0.261267721652985,-0.964351713657379,0.0373055301606655,-0.150366812944412,-0.987926244735718,0.0359572768211365,-0.203361213207245,-0.978443324565887,0.0535352230072021,-0.213627427816391,-0.975447237491608,0.0549185499548912,-0.160848096013069,-0.985450148582458,0.0670285150408745,-0.0571359097957611,-0.996113777160645,0.049451969563961,-0.102148838341236,-0.993539214134216,0.0498278513550758,-0.105237916111946,-0.993198037147522,0.0674973353743553,-0.0601613000035286,-0.99590402841568,0.0311342775821686,0.0554941408336163,-0.997973442077637,0.01792430318892,0.013429606333375,-0.999749183654785,0.0199350118637085,0.0100125269964337,-0.999751210212708,0.0332603789865971,0.0523071698844433,-0.998077034950256,0.038935974240303,0.137432619929314,-0.989745557308197,0.0246281735599041,0.101888746023178,-0.994490921497345, +0.0221186745911837,0.100704364478588,-0.994670450687408,0.0364840365946293,0.136436730623245,-0.989976763725281,0.00987468659877777,0.214357554912567,-0.976705372333527,0.0116959400475025,0.182091236114502,-0.983212172985077,0.0213717464357615,0.177832409739494,-0.983828723430634,0.0196838844567537,0.210712790489197,-0.977349817752838,0.0319182872772217,0.262040913105011,-0.964528799057007,0.0122661683708429,0.241597190499306,-0.970299065113068,-0.0026707611978054,0.243876993656158,-0.969802558422089,0.0168729554861784,0.26405793428421,-0.964359283447266,0.0820660814642906,0.294715791940689,-0.952054500579834,0.0993062257766724,0.272737920284271,-0.956949472427368,0.118827655911446,0.268967747688293,-0.955790996551514,0.10169667750597,0.291975170373917,-0.951003849506378,0.123100683093071,0.320938020944595,-0.939066112041473,0.140309661626816,0.305265039205551,-0.941873908042908,0.158046200871468,0.303223043680191,-0.939721882343292,0.140873074531555,0.319797486066818,-0.936954855918884,0.178959757089615,0.340120524168015,-0.923196375370026,0.172772794961929,0.330477118492126,-0.927865564823151,0.179446041584015,0.330221265554428,-0.926689326763153,0.185564905405045,0.340163320302963,-0.921875596046448,-0.0248678047209978,0.332631230354309,-0.942729115486145,-0.00456350902095437,0.334012866020203,-0.942557573318481,0.0156929921358824,0.335765719413757,-0.941814780235291,-0.00454265065491199,0.333754181861877,-0.942649185657501,0.0289244614541531,0.335082769393921,-0.94174462556839,0.0199307072907686,0.333824276924133,-0.942424714565277,0.011946776881814,0.327056467533112,-0.944929242134094,0.0208439957350492,0.328777879476547,-0.944177210330963,0.180373042821884,0.337498605251312,-0.923883259296417,0.149277821183205,0.338996917009354,-0.928868770599365,0.178167700767517,0.344686299562454,-0.9216548204422,0.208815723657608,0.343865156173706,-0.915506839752197,0.105256617069244,0.286944270133972,-0.952147126197815,0.110428974032402,0.305934607982635,-0.945626556873322,0.0995133966207504,0.30181610584259,-0.948158323764801, +0.0945962071418762,0.282164633274078,-0.954690992832184,0.164160922169685,0.266721397638321,-0.949689924716949,0.141752734780312,0.280169278383255,-0.949426889419556,0.156063854694366,0.284371435642242,-0.945926547050476,0.178334295749664,0.27112141251564,-0.945880651473999,0.100758865475655,0.179587557911873,-0.978568315505981,0.107287280261517,0.214654833078384,-0.970779418945313,0.0882256999611855,0.203537553548813,-0.975083947181702,0.0821068212389946,0.167509689927101,-0.982445478439331,0.100294776260853,0.179350271821022,-0.978659510612488,0.10526904463768,0.179441154003143,-0.97812032699585,0.124377302825451,0.153904050588608,-0.980226397514343,0.119328945875168,0.153964012861252,-0.980844438076019,0.0771634578704834,0.0906050801277161,-0.992893099784851,0.0788296014070511,0.088241383433342,-0.992975056171417,0.0983360931277275,0.0561197809875011,-0.993569612503052,0.0965516865253448,0.0587059408426285,-0.993595242500305,0.163930743932724,0.0549815222620964,-0.984938502311707,0.165632501244545,0.0521728880703449,-0.984806537628174,0.187102004885674,0.0181354898959398,-0.982173144817352,0.185313105583191,0.021123394370079,-0.982452511787415,0.202843815088272,-0.0172699764370918,-0.979058861732483,0.208342045545578,-0.017930218949914,-0.977891743183136,0.235274702310562,-0.0515869632363319,-0.970559000968933,0.229769021272659,-0.0508783832192421,-0.97191447019577,0.253088116645813,-0.0880814269185066,-0.96342521905899,0.234810411930084,-0.105397023260593,-0.966310262680054,0.238482594490051,-0.156827032566071,-0.95840048789978,0.25691944360733,-0.139604464173317,-0.956296503543854,0.194135755300522,-0.235035419464111,-0.952402114868164,0.178718164563179,-0.24909271299839,-0.951847016811371,0.183785900473595,-0.296161830425262,-0.937289118766785,0.199489966034889,-0.282653123140335,-0.938248872756958,0.177129358053207,-0.344010323286057,-0.922107398509979,0.214773908257484,-0.325584262609482,-0.920796990394592,0.270460337400436,-0.338959842920303,-0.901086747646332,0.232870504260063,-0.357534199953079,-0.904400825500488, +0.246123731136322,-0.393017143011093,-0.885980069637299,0.216830894351006,-0.410978436470032,-0.88548356294632,0.200631573796272,-0.455593824386597,-0.867283821105957,0.230712607502937,-0.43938347697258,-0.868167042732239,0.226023733615875,-0.0664480701088905,-0.971852898597717,0.226017281413078,-0.0663890540599823,-0.971858382225037,0.225998610258102,-0.0662179887294769,-0.971874415874481,0.116563856601715,-0.0800119265913963,-0.989955127239227,0.116537742316723,-0.0797723159193993,-0.989977478981018,0.116525806486607,-0.0796627700328827,-0.989987730979919,0.175328880548477,-0.0730482190847397,-0.981796264648438,0.175317615270615,-0.0729449540376663,-0.981805860996246,0.175333604216576,-0.073091521859169,-0.981792211532593,0.285189270973206,-0.448397517204285,-0.847116768360138,0.255760699510574,-0.463767051696777,-0.848237335681915,0.235154911875725,-0.501891136169434,-0.832350611686707,0.265337765216827,-0.488439172506332,-0.831277966499329,0.0556368455290794,-0.0874641537666321,-0.994612812995911,-0.0485342890024185,-0.0987775921821594,-0.993925273418427,0.0556318983435631,-0.087418720126152,-0.994617104530334,0.159200623631477,-0.0752229318022728,-0.98437637090683,0.143896400928497,-0.554457604885101,-0.819677174091339,0.161407470703125,-0.550099551677704,-0.819352209568024,0.18315514922142,-0.561293959617615,-0.807095527648926,0.165536224842072,-0.565402388572693,-0.808033406734467,0.14560666680336,-0.0770350024104118,-0.98633885383606,0.130239173769951,-0.0788987278938293,-0.988338470458984,0.145607426762581,-0.0770420879125595,-0.986338198184967,0.160932332277298,-0.0750943869352341,-0.984104514122009,0.178337231278419,-0.575607180595398,-0.798042833805084,0.163607850670815,-0.57907909154892,-0.798686444759369,0.149901360273361,-0.589845538139343,-0.793480813503265,0.164757966995239,-0.587282180786133,-0.792435824871063,0.256812572479248,-0.581971287727356,-0.771593630313873,0.251362174749374,-0.582528531551361,-0.772966742515564,0.24589116871357,-0.583290636539459,-0.774150848388672,0.251362502574921,-0.582516014575958,-0.772976100444794, +0.239145532250404,-0.569852948188782,-0.786178767681122,0.245186984539032,-0.578607738018036,-0.777879536151886,0.252794563770294,-0.578291356563568,-0.775676548480988,0.246679201722145,-0.570031940937042,-0.783717513084412,0.162054568529129,-0.0750704258680344,-0.983922123908997,0.20186747610569,-0.0700488612055779,-0.976904630661011,0.24134986102581,-0.0649519041180611,-0.968262135982513,0.201878473162651,-0.0701501592993736,-0.976895093917847,0.109528392553329,-0.0802373141050339,-0.990739941596985,0.10954961180687,-0.0804330408573151,-0.990721702575684,0.109531790018082,-0.0802686288952827,-0.990737020969391,0.146137312054634,-0.567204594612122,-0.810507774353027,0.125234082341194,-0.566193401813507,-0.814703285694122,0.149948850274086,-0.550444722175598,-0.821295261383057,0.170644357800484,-0.55187451839447,-0.816281199455261,0.389282584190369,0.5742307305336,-0.720220923423767,0.430990934371948,0.600616574287415,-0.673428952693939,0.445696264505386,0.59063583612442,-0.67268431186676,0.403766334056854,0.563855767250061,-0.720443964004517,0.0932012870907784,-0.0821088626980782,-0.992255926132202,0.0932206735014915,-0.0822877064347267,-0.99223929643631,0.093205451965332,-0.0821472778916359,-0.992252290248871,0.179524511098862,-0.07240841537714,-0.981085121631622,0.259670525789261,-0.06193508207798,-0.9637091755867,0.30259644985199,-0.0559748113155365,-0.951473712921143,0.220954447984695,-0.0669211894273758,-0.972985446453094,0.142578363418579,-0.0769626349210739,-0.986786842346191,0.216426640748978,-0.0672163665294647,-0.973982334136963,0.224718421697617,-0.0664351508021355,-0.972156465053558,0.194723695516586,-0.0702043175697327,-0.978342533111572,0.212291240692139,-0.0678010284900665,-0.974851548671722,0.25953072309494,-0.0615335889160633,-0.963772594928741,0.249327197670937,-0.0636207163333893,-0.966327250003815,0.28784504532814,-0.0583735480904579,-0.955896317958832,0.253866404294968,-0.0629623308777809,-0.965187966823578,0.173730775713921,-0.0732953399419785,-0.982061803340912,0.258437365293503,-0.0625217854976654,-0.964002668857574, +0.276425838470459,-0.0600381605327129,-0.95915812253952,-0.132262051105499,-0.0911391228437424,-0.987015962600708,-0.215633571147919,-0.238297685980797,-0.946951150894165,-0.20669761300087,-0.235781088471413,-0.949570178985596,-0.126073718070984,-0.0976679548621178,-0.987201333045959,0.305992692708969,0.717190146446228,-0.626104533672333,0.285494029521942,0.726332664489746,-0.625247180461884,0.318654328584671,0.744157671928406,-0.587102055549622,0.339339464902878,0.735550880432129,-0.586356282234192,0.334139227867126,0.289134830236435,-0.897079706192017,0.389934152364731,0.333404093980789,-0.8583664894104,0.391936838626862,0.332062929868698,-0.857974290847778,0.33614781498909,0.287787914276123,-0.896762430667877,0.202346161007881,0.807658553123474,-0.553844451904297,0.178414076566696,0.813204050064087,-0.553956389427185,0.205224633216858,0.824964702129364,-0.526608228683472,0.229149118065834,0.820000290870667,-0.524490475654602,0.310405254364014,0.0549924150109291,-0.949012339115143,0.369574368000031,0.113820590078831,-0.922203779220581,0.363465130329132,0.124012880027294,-0.923316836357117,0.304498136043549,0.065356507897377,-0.950268149375916,0.040346410125494,0.85423070192337,-0.518326342105865,0.0279059205204248,0.854270398616791,-0.519079506397247,0.0393990352749825,0.85990959405899,-0.508923709392548,0.0517163313925266,0.86028641462326,-0.507181227207184,0.204280316829681,-0.0961034148931503,-0.974183559417725,0.264060318470001,-0.0289722755551338,-0.964070916175842,0.252991318702698,-0.0101391226053238,-0.967415452003479,0.193354934453964,-0.0772005990147591,-0.978086948394775,-0.060149684548378,0.843154668807983,-0.534296095371246,-0.0623422339558601,0.848058223724365,-0.526223182678223,-0.0612125247716904,0.848342299461365,-0.525897741317749,-0.0590915605425835,0.843503296375275,-0.533863663673401,0.217509388923645,-0.116906076669693,-0.969031810760498,0.202838718891144,-0.0920106545090675,-0.974879741668701,0.145686015486717,-0.164424747228622,-0.975571632385254,0.160373046994209,-0.189172297716141,-0.968759179115295, +-0.150554552674294,0.780712842941284,-0.606482446193695,-0.122382774949074,0.811689436435699,-0.571124315261841,-0.0798889473080635,0.828110933303833,-0.554842531681061,-0.11049248278141,0.800909996032715,-0.588502049446106,0.126809701323509,-0.295134782791138,-0.947003126144409,0.105635292828083,-0.261459946632385,-0.959416508674622,0.0568341836333275,-0.339777529239655,-0.93878710269928,0.0787100493907928,-0.372462540864944,-0.924703478813171,-0.202438846230507,0.680293500423431,-0.704428434371948,-0.201891884207726,0.721329629421234,-0.66251277923584,-0.172005608677864,0.741993129253387,-0.647966206073761,-0.174933224916458,0.70333731174469,-0.688995540142059,0.0776508301496506,-0.500733017921448,-0.862111806869507,0.0552973225712776,-0.471387267112732,-0.880191087722778,0.0166117697954178,-0.539547204971313,-0.84179151058197,0.0404237695038319,-0.567154109477997,-0.822619199752808,-0.208897516131401,0.674802303314209,-0.707816123962402,-0.191161900758743,0.690182685852051,-0.69792914390564,-0.174494624137878,0.654497981071472,-0.735652089118958,-0.190641477704048,0.637938737869263,-0.746116638183594,-0.0395848304033279,-0.580790519714355,-0.813090026378632,-0.0624329522252083,-0.555892050266266,-0.828906655311584,-0.0929533541202545,-0.615863919258118,-0.782349824905396,-0.0684832707047462,-0.639044165611267,-0.766115248203278,-0.230098888278008,0.516480326652527,-0.824804544448853,-0.205893158912659,0.548918962478638,-0.810120940208435,-0.160567626357079,0.482578068971634,-0.861009001731873,-0.181663945317268,0.448088496923447,-0.875337064266205,-0.00758293271064758,-0.830164313316345,-0.557467222213745,-0.0126991868019104,-0.79245400428772,-0.60979950428009,-0.0454517006874084,-0.774237334728241,-0.631261229515076,-0.042431652545929,-0.814899325370789,-0.578047335147858,-0.0166800171136856,-0.875903785228729,-0.482197523117065,-0.0222557317465544,-0.852489411830902,-0.522270441055298,-0.0450814999639988,-0.844180285930634,-0.534160494804382,-0.0406727343797684,-0.869175016880035,-0.492829203605652,-0.0559876412153244,0.316891610622406,-0.946807861328125, +-0.0397265441715717,0.357346624135971,-0.933126628398895,0.0394467450678349,0.281599760055542,-0.958720743656158,0.0247107408940792,0.240069791674614,-0.970441162586212,0.0705272927880287,-0.914506733417511,-0.398375809192657,0.0162694174796343,-0.898503839969635,-0.438664257526398,-0.0444808304309845,-0.886681199073792,-0.460236847400665,0.00790774822235107,-0.908874869346619,-0.416994005441666,0.0648652538657188,0.103104017674923,-0.992553412914276,0.0741323605179787,0.133364245295525,-0.988290727138519,0.145372748374939,0.0748084187507629,-0.986544787883759,0.136577382683754,0.0443657375872135,-0.989635527133942,0.0769445151090622,-0.92575603723526,-0.370209902524948,0.0964753106236458,-0.921228289604187,-0.376870006322861,0.114109367132187,-0.920831739902496,-0.372891366481781,0.094836637377739,-0.925073623657227,-0.367756456136703,0.338443011045456,-0.154676333069801,-0.928187251091003,0.265999794006348,-0.11070341616869,-0.957595407962799,0.270488530397415,-0.0936766713857651,-0.958154857158661,0.343122661113739,-0.137791931629181,-0.929128766059875,0.319948226213455,-0.890387535095215,-0.323795139789581,0.335272938013077,-0.886190831661224,-0.319777816534042,0.321016699075699,-0.885300159454346,-0.336440175771713,0.305467873811722,-0.889774739742279,-0.339102506637573,0.464251577854156,-0.256565153598785,-0.847729325294495,0.397087723016739,-0.223145738244057,-0.890240013599396,0.398688703775406,-0.21553510427475,-0.891398847103119,0.466034859418869,-0.249068006873131,-0.84898567199707,0.291486293077469,-0.888191640377045,-0.355178236961365,0.309670448303223,-0.88261091709137,-0.353697806596756,0.289715111255646,-0.881724834442139,-0.372325986623764,0.271537840366364,-0.887550294399261,-0.37218502163887,0.534486293792725,-0.410649687051773,-0.738709211349487,0.475462198257446,-0.390262246131897,-0.788435876369476,0.472167193889618,-0.393808245658875,-0.788652896881104,0.531145691871643,-0.414182662963867,-0.739146113395691,0.43653991818428,-0.803390920162201,-0.404964327812195,0.454168915748596,-0.793605148792267,-0.404872417449951, +0.426037549972534,-0.7903773188591,-0.440222412347794,0.408575654029846,-0.800365209579468,-0.438727140426636,0.506231784820557,-0.457200884819031,-0.731229603290558,0.499579817056656,-0.465654611587524,-0.730469584465027,0.554554998874664,-0.480042070150375,-0.679726719856262,0.561380207538605,-0.471660017967224,-0.679992079734802,0.384825110435486,-0.792423725128174,-0.473259329795837,0.401342034339905,-0.782475292682648,-0.476085036993027,0.36604568362236,-0.778569340705872,-0.509745359420776,0.34994238615036,-0.788693487644196,-0.505473017692566,0.270660042762756,0.52028501033783,-0.809967160224915,0.33123591542244,0.556896984577179,-0.761674880981445,0.3428715467453,0.547750055789948,-0.763157367706299,0.281798511743546,0.51073694229126,-0.812242209911346,0.186956763267517,0.378114104270935,-0.906684637069702,0.256308406591415,0.427913516759872,-0.866715669631958,0.25800746679306,0.426752060651779,-0.86678421497345,0.1886156052351,0.376934617757797,-0.906832158565521,0.147031247615814,0.734130084514618,-0.662898898124695,0.116426676511765,0.747675836086273,-0.65377801656723,0.169357717037201,0.763477921485901,-0.623233139514923,0.201115220785141,0.750789523124695,-0.629180252552032,0.111974135041237,0.152834713459015,-0.981887638568878,0.191168069839478,0.218017295002937,-0.957038760185242,0.185219809412956,0.227429926395416,-0.95601749420166,0.10636930167675,0.162491634488106,-0.980959832668304,0.152108088135719,0.800179004669189,-0.580152451992035,0.134482577443123,0.805050432682037,-0.577761471271515,0.160825788974762,0.821859538555145,-0.546518206596375,0.178787276148796,0.817681074142456,-0.547204434871674,-0.0281759388744831,-0.0946710929274559,-0.995109796524048,0.0799956992268562,0.00270675867795944,-0.99679160118103,0.0660537257790565,0.026809087023139,-0.997455835342407,-0.041020080447197,-0.0700223296880722,-0.996701717376709,0.0415310673415661,0.854935169219971,-0.517069578170776,0.0268032811582088,0.855747520923615,-0.516698837280273,0.0415054336190224,0.863829374313354,-0.502071857452393,0.056221067905426,0.863633513450623,-0.500975430011749, +0.0135536771267653,-0.16408933699131,-0.986352443695068,-0.0199459213763475,-0.105355069041252,-0.994234681129456,-0.0978805497288704,-0.228901192545891,-0.968516230583191,-0.0628262981772423,-0.285856574773788,-0.956210732460022,-0.0417804270982742,0.857204973697662,-0.513277888298035,-0.034541018307209,0.862907648086548,-0.504179894924164,-0.0245873853564262,0.864575386047363,-0.501901388168335,-0.0321945548057556,0.859493613243103,-0.510131657123566,-0.206966117024422,0.7505162358284,-0.627606928348541,-0.245572686195374,0.760230302810669,-0.601451516151428,-0.229099720716476,0.769202411174774,-0.596524000167847,-0.191415905952454,0.760045230388641,-0.621040463447571,-0.228634357452393,0.626627087593079,-0.745026707649231,-0.286693930625916,0.64073646068573,-0.712224364280701,-0.27314892411232,0.652869343757629,-0.706506371498108,-0.216132700443268,0.639187037944794,-0.738056063652039,-0.365205198526382,0.464328438043594,-0.806860744953156,-0.360451906919479,0.470435380935669,-0.805459439754486,-0.291139215230942,0.443426102399826,-0.847709536552429,-0.29554671049118,0.437168002128601,-0.849432945251465,-0.0416579097509384,-0.318497151136398,-0.947008013725281,-0.0805400237441063,-0.256550639867783,-0.96316933631897,-0.147289782762527,-0.379939496517181,-0.913209557533264,-0.104942604899406,-0.438304573297501,-0.892679274082184,-0.258915305137634,0.337880581617355,-0.904875516891479,-0.258626133203506,0.337730765342712,-0.905014157295227,-0.174597069621086,0.303118377923965,-0.936821818351746,-0.174933940172195,0.303296208381653,-0.936701416969299,-0.0168264377862215,-0.696036994457245,-0.717808783054352,-0.0416199453175068,-0.673849821090698,-0.737695157527924,-0.0749268382787704,-0.731501817703247,-0.677710115909576,-0.0478342026472092,-0.751249551773071,-0.65828263759613,-0.119225770235062,0.184194728732109,-0.975631952285767,-0.123470388352871,0.172116219997406,-0.977308094501495,-0.0294496677815914,0.125292539596558,-0.991682648658752,-0.0256326384842396,0.137546628713608,-0.990163564682007,-0.0713690146803856,-0.874609649181366,-0.479546189308167, +-0.0756225883960724,-0.840251982212067,-0.536896586418152,-0.107261300086975,-0.825738072395325,-0.55376136302948,-0.10509118437767,-0.862860500812531,-0.49439612030983,0.224909096956253,-0.135404944419861,-0.964925587177277,0.133347243070602,-0.0698536112904549,-0.988604545593262,0.123024173080921,-0.102950856089592,-0.987049221992493,0.214221507310867,-0.168298780918121,-0.962177157402039,0.0295230709016323,-0.929440677165985,-0.367788702249527,0.0189990196377039,-0.916301608085632,-0.400038242340088,-0.000954717397689819,-0.913067042827606,-0.407808512449265,0.00878821406513453,-0.927497863769531,-0.373725354671478,0.376286596059799,-0.304909616708755,-0.874893426895142,0.299183994531631,-0.235841870307922,-0.924590468406677,0.284594744443893,-0.274960249662399,-0.918369591236115,0.360049873590469,-0.343148440122604,-0.867532789707184,0.0962343439459801,-0.940977215766907,-0.324501007795334,0.086387924849987,-0.938166439533234,-0.335232466459274,0.0753709003329277,-0.938311815261841,-0.337476283311844,0.0850670710206032,-0.941664099693298,-0.325626164674759,0.477205276489258,-0.475232899188995,-0.739208281040192,0.425630658864975,-0.408098608255386,-0.807647228240967,0.404402762651443,-0.448482155799866,-0.797071158885956,0.453146904706955,-0.51390129327774,-0.728397846221924,0.277012437582016,-0.912733197212219,-0.300303876399994,0.295594692230225,-0.907928049564362,-0.297137469053268,0.314470946788788,-0.895930230617523,-0.313715159893036,0.295957833528519,-0.901770412921906,-0.314990878105164,0.527869403362274,-0.612346768379211,-0.588545143604279,0.503013014793396,-0.55584853887558,-0.661823570728302,0.477774232625961,-0.589032411575317,-0.651745915412903,0.499853014945984,-0.643550097942352,-0.57964676618576,0.498098611831665,-0.798497915267944,-0.338081300258636,0.526753723621368,-0.780513405799866,-0.336644172668457,0.543010056018829,-0.743696689605713,-0.389942973852158,0.515598654747009,-0.763558566570282,-0.388762891292572,0.511386215686798,-0.630842924118042,-0.583542108535767,0.481547743082047,-0.662652969360352,-0.573587715625763, +0.486774325370789,-0.713153064250946,-0.50444370508194,0.519467234611511,-0.683731496334076,-0.512508690357208,0.0596678182482719,-0.00858116615563631,-0.998181462287903,-0.0306132230907679,0.0442957244813442,-0.998549401760101,-0.0347007885575294,0.0239030420780182,-0.999111890792847,0.0557378195226192,-0.0292227230966091,-0.99801766872406,0.207456097006798,-0.20155756175518,-0.957254767417908,0.123438581824303,-0.138908088207245,-0.982582092285156,0.115184888243675,-0.170791625976563,-0.97855132818222,0.19843778014183,-0.233304500579834,-0.951940894126892,-0.104979157447815,0.125936418771744,-0.986468136310577,-0.104275837540627,0.13571073114872,-0.985245704650879,-0.191617429256439,0.178663954138756,-0.965070962905884,-0.192627727985382,0.169125914573669,-0.96658730506897,0.343148559331894,-0.358500868082047,-0.868174135684967,0.273126393556595,-0.296110481023788,-0.915270864963531,0.261294424533844,-0.33017110824585,-0.907034933567047,0.329530239105225,-0.391922444105148,-0.858956694602966,-0.209776967763901,0.346543401479721,-0.914276421070099,-0.214521244168282,0.342730045318604,-0.914612948894501,-0.292127400636673,0.371053487062454,-0.881465315818787,-0.287267178297043,0.374830901622772,-0.88146436214447,0.463838011026382,-0.463050335645676,-0.755273938179016,0.413327425718307,-0.402078121900558,-0.817002892494202,0.396808832883835,-0.436937540769577,-0.8072350025177,0.44480311870575,-0.496816337108612,-0.745200574398041,-0.28193336725235,0.512052416801453,-0.811366736888885,-0.291049540042877,0.503166675567627,-0.813703596591949,-0.353964686393738,0.523857057094574,-0.774779200553894,-0.344414919614792,0.532484471797943,-0.773200273513794,0.346178740262985,-0.628136038780212,-0.696853995323181,0.319444417953491,-0.661647796630859,-0.678363859653473,0.337626099586487,-0.713537991046906,-0.613899171352386,0.367890924215317,-0.682416260242462,-0.631636321544647,-0.363165706396103,0.696052074432373,-0.619372367858887,-0.321063637733459,0.684116661548615,-0.654906511306763,-0.337565928697586,0.672960221767426,-0.65815943479538, +-0.380216240882874,0.685411334037781,-0.62100487947464,0.449333339929581,-0.665517687797546,-0.595974743366241,0.423611760139465,-0.691980540752411,-0.584564864635468,0.429299205541611,-0.735944032669067,-0.523534655570984,0.457696825265884,-0.711373567581177,-0.5333491563797,-0.356772691011429,0.760164737701416,-0.543012678623199,-0.351692050695419,0.73692798614502,-0.577277958393097,-0.344829797744751,0.74162769317627,-0.575396180152893,-0.349448829889297,0.764385223388672,-0.541849374771118,0.370599687099457,-0.808817803859711,-0.456584751605988,0.34978386759758,-0.821563184261322,-0.450205981731415,0.34217157959938,-0.846258878707886,-0.408368080854416,0.364311903715134,-0.834778368473053,-0.41282194852829,-0.161227136850357,0.847706437110901,-0.505370855331421,-0.181842923164368,0.838054358959198,-0.51439106464386,-0.160300299525261,0.843250930309296,-0.513061344623566,-0.1393061876297,0.851242363452911,-0.505944907665253,0.281920582056046,-0.884816944599152,-0.370971322059631,0.266403585672379,-0.890470623970032,-0.368905395269394,0.253597140312195,-0.902548730373383,-0.347986221313477,0.269571036100388,-0.897736608982086,-0.34842574596405,0.0391358099877834,0.863695561885834,-0.502492189407349,0.0530205890536308,0.863273203372955,-0.501944482326508,0.0667904987931252,0.852975070476532,-0.517660856246948,0.0530087575316429,0.854387104511261,-0.516926229000092,0.109598025679588,-0.927834331989288,-0.3565274477005,0.094574473798275,-0.932006776332855,-0.349884331226349,0.108123958110809,-0.93117755651474,-0.348163187503815,0.122957482933998,-0.927303612232208,-0.353538423776627,0.0293155089020729,-0.904893159866333,-0.424628078937531,-0.00215945416130126,-0.913819372653961,-0.40611532330513,0.0192256849259138,-0.916100323200226,-0.400487929582596,0.0500438138842583,-0.907549798488617,-0.416952162981033,0.279859751462936,0.759778082370758,-0.586869359016418,0.31500032544136,0.743881821632385,-0.589418947696686,0.33121183514595,0.694469451904297,-0.638757407665253,0.297886878252029,0.713270485401154,-0.634435772895813, +-0.132107928395271,-0.796509861946106,-0.590016603469849,-0.18137913942337,-0.813765406608582,-0.552166283130646,-0.162938565015793,-0.821248054504395,-0.54681134223938,-0.114324390888214,-0.804319858551025,-0.583094775676727,0.27839070558548,0.676247835159302,-0.68204665184021,0.313316911458969,0.653591871261597,-0.688948631286621,0.313020378351212,0.590668737888336,-0.743726193904877,0.28057861328125,0.616199433803558,-0.735917091369629,-0.280533730983734,-0.70412003993988,-0.652315676212311,-0.270012021064758,-0.709845900535583,-0.650547802448273,-0.214612439274788,-0.682956218719482,-0.698220908641815,-0.224863603711128,-0.677069485187531,-0.700723350048065,0.239447593688965,0.376361876726151,-0.894995331764221,0.273648619651794,0.454407334327698,-0.847720682621002,0.29980543255806,0.424262762069702,-0.854469358921051,0.263325572013855,0.344553202390671,-0.901078701019287,-0.207803159952164,-0.607213258743286,-0.766883254051208,-0.202252015471458,-0.609627485275269,-0.766451835632324,-0.135961562395096,-0.573063135147095,-0.808154106140137,-0.141436457633972,-0.570652663707733,-0.808919787406921,0.168817475438118,0.172611147165298,-0.970415413379669,0.224178224802017,0.256873250007629,-0.940085291862488,0.244468942284584,0.224747598171234,-0.943251609802246,0.187602460384369,0.139774262905121,-0.972249209880829,-0.1514822691679,-0.432259082794189,-0.888934850692749,-0.151643708348274,-0.427703648805618,-0.891108155250549,-0.0753693580627441,-0.376625955104828,-0.923294365406036,-0.075391061604023,-0.381446480751038,-0.921311497688293,0.0676326900720596,-0.0477947294712067,-0.996564865112305,0.0542367994785309,-0.0202091448009014,-0.998323678970337,0.124235033988953,0.0604134574532509,-0.990411996841431,0.138162672519684,0.0327678583562374,-0.989867329597473,-0.0541157200932503,-0.2394799888134,-0.969392061233521,-0.061791718006134,-0.221935033798218,-0.973101556301117,0.0150909200310707,-0.152907222509384,-0.988125324249268,0.0226164031773806,-0.17086823284626,-0.985034346580505,0.205011665821075,-0.067921482026577,-0.976400077342987, +0.205012679100037,-0.0679309144616127,-0.976399123668671,0.205013200640678,-0.0679358318448067,-0.976398646831512,0.443933099508286,-0.742770314216614,-0.501214265823364,0.444455683231354,-0.758322656154633,-0.476870983839035,0.444460064172745,-0.78476744890213,-0.431966930627823,0.496048092842102,-0.56419712305069,-0.660013616085052,0.495819628238678,-0.735054433345795,-0.462447822093964,0.495687365531921,-0.560165166854858,-0.663708567619324,0.388087809085846,-0.877066791057587,-0.283093422651291,0.382478505373001,-0.889895081520081,-0.248590260744095,0.410544633865356,-0.771961450576782,-0.485312938690186,0.389035940170288,-0.779941558837891,-0.49024698138237,0.38945198059082,-0.700120866298676,-0.598462998867035,0.390137672424316,-0.735397517681122,-0.554060637950897,0.413258165121078,-0.872357904911041,-0.26116931438446,0.379141509532928,-0.78344339132309,-0.492410629987717,0.414221882820129,-0.875182807445526,-0.24995069205761,-0.350266367197037,-0.655637443065643,0.668919324874878,-0.350603342056274,-0.655100405216217,0.669268906116486,-0.341833263635635,-0.651827454566956,0.676957249641418,-0.341484397649765,-0.652362287044525,0.676617980003357,-0.456763088703156,-0.493105530738831,0.740415096282959,-0.461866855621338,-0.486136883497238,0.741855800151825,-0.467664569616318,-0.479606807231903,0.742473781108856,-0.461832851171494,-0.486123144626617,0.741885900497437,-0.553704857826233,-0.390812397003174,0.735307216644287,-0.564157366752625,-0.379288852214813,0.733393788337708,-0.580817103385925,-0.376495152711868,0.721736073493958,-0.569736301898956,-0.386841058731079,0.725089371204376,-0.556250154972076,-0.464553028345108,0.689040124416351,-0.553216218948364,-0.436887055635452,0.709282398223877,-0.552434980869293,-0.43738916516304,0.709581792354584,-0.555140316486359,-0.465041637420654,0.689605355262756,-0.470568388700485,-0.584936201572418,0.660617232322693,-0.449588000774384,-0.538012683391571,0.713030934333801,-0.47921097278595,-0.531035721302032,0.698826193809509,-0.499654173851013,-0.579864263534546,0.643508553504944, +0.0481245666742325,0.625206530094147,-0.778974294662476,0.0266329646110535,0.617246568202972,-0.786318838596344,-0.0109091112390161,0.637130856513977,-0.770678579807281,0.012525680474937,0.643385767936707,-0.765439748764038,0.543314635753632,-0.545871257781982,-0.637835204601288,0.543758809566498,-0.552747011184692,-0.631503939628601,0.538527488708496,-0.713118493556976,-0.448832213878632,0.048776239156723,0.663888812065125,-0.746239006519318,0.0649136528372765,0.656272947788239,-0.751726090908051,0.0528376027941704,0.653597414493561,-0.754995882511139,0.0361319817602634,0.662080407142639,-0.748561382293701,-0.0131349693983793,0.524329543113708,-0.851414084434509,0.00134502351284027,0.535181403160095,-0.844736099243164,-0.00497667491436005,0.567815780639648,-0.823140680789948,-0.0207612067461014,0.558905005455017,-0.828971803188324,-0.0116679817438126,0.396787703037262,-0.917836308479309,-0.0393761359155178,0.449485719203949,-0.892419219017029,-0.0576381087303162,0.430883467197418,-0.900565028190613,-0.0280609577894211,0.37571981549263,-0.926308393478394,0.020786864683032,0.174120128154755,-0.9845050573349,0.0240418873727322,0.181255504488945,-0.983142197132111,-0.0498073250055313,0.209454119205475,-0.97654914855957,-0.053740419447422,0.202873378992081,-0.977729201316833,0.148248851299286,0.018512237817049,-0.988776803016663,0.0751032531261444,0.0919099971652031,-0.992931067943573,0.0597212016582489,0.0499410293996334,-0.996965050697327,0.135759383440018,-0.0261587575078011,-0.990396440029144,0.29926997423172,-0.179402261972427,-0.937151193618774,0.214155793190002,-0.11479814350605,-0.970030307769775,0.20378839969635,-0.159749120473862,-0.965893626213074,0.290283471345901,-0.225757673382759,-0.929929554462433,0.282433688640594,-0.254490971565247,-0.924913823604584,0.277134478092194,-0.281219452619553,-0.918755710124969,0.365310341119766,-0.320793628692627,-0.873864948749542,0.370070993900299,-0.293283820152283,-0.881494224071503,-0.377104550600052,0.428373843431473,-0.821150422096252,-0.390258580446243,0.419162511825562,-0.819756627082825, +-0.389950841665268,0.427352517843246,-0.815664172172546,-0.375377207994461,0.436718583106995,-0.817538380622864,0.359030783176422,-0.790239572525024,-0.496606916189194,0.36543732881546,-0.650463759899139,-0.66584724187851,0.365597307682037,-0.675575315952301,-0.640263020992279,0.395380049943924,-0.859217464923859,-0.324684679508209,0.406323850154877,-0.773567736148834,-0.486306428909302,0.39999458193779,-0.836953639984131,-0.373514503240585,0.394556611776352,-0.771185636520386,-0.499597668647766,0.393013894557953,-0.809287965297699,-0.43656975030899,0.394444972276688,-0.777982592582703,-0.489036172628403,-0.487468481063843,0.0166854318231344,-0.872981190681458,-0.450197905302048,0.0358872003853321,-0.892207443714142,-0.445111989974976,0.0648434460163116,-0.893124103546143,-0.478292047977448,0.0437207855284214,-0.877111911773682,-0.732037246227264,-0.0578663721680641,-0.678802669048309,-0.620878875255585,-0.11915510892868,-0.774797797203064,-0.604537308216095,-0.083730436861515,-0.792164087295532,-0.710697412490845,-0.0293381065130234,-0.702885746955872,-0.78949362039566,-0.16767829656601,-0.590409815311432,-0.789758145809174,-0.176899686455727,-0.587357461452484,-0.861827969551086,-0.0473250970244408,-0.504988014698029,-0.861724495887756,-0.0395983345806599,-0.505829036235809,0.347958534955978,-0.199100509285927,0.91612446308136,0.303870499134064,-0.197315961122513,0.932056427001953,0.298348128795624,-0.181441247463226,0.937052547931671,0.344465345144272,-0.182698577642441,0.920850038528442,0.316308945417404,-0.803290247917175,-0.504651784896851,0.329800337553024,-0.63334858417511,-0.700072407722473,0.329799592494965,-0.633406400680542,-0.700020432472229,0.262899219989777,-0.238510683178902,0.934877932071686,0.206211164593697,-0.273535758256912,0.939497351646423,0.206560730934143,-0.275043219327927,0.938980340957642,0.263582915067673,-0.240584492683411,0.93415379524231,0.153617933392525,-0.323297500610352,0.933745324611664,0.141207978129387,-0.306679844856262,0.941279888153076,0.105648845434189,-0.364607661962509,0.925148487091064, +0.119060337543488,-0.379013895988464,0.917699933052063,0.054828017950058,-0.39412185549736,0.917421281337738,0.035674124956131,-0.377268493175507,0.925416588783264,0.0196518171578646,-0.433298528194427,0.901036262512207,0.039535503834486,-0.447547554969788,0.893385767936707,-0.060367040336132,-0.447278916835785,0.89235508441925,-0.0537185817956924,-0.502790212631226,0.862737655639648,-0.0216793417930603,-0.517162382602692,0.855612754821777,-0.0296508371829987,-0.465488255023956,0.88455730676651,0.027666911482811,-0.567393064498901,0.82298219203949,-0.00189457833766937,-0.558689892292023,0.829374492168427,0.0189250409603119,-0.591515243053436,0.806071698665619,0.0493440851569176,-0.59660667181015,0.801015436649323,0.152872487902641,-0.622011601924896,0.767939805984497,0.130294948816299,-0.622613191604614,0.771606147289276,0.107945054769516,-0.6364905834198,0.763693451881409,0.130354389548302,-0.633295953273773,0.762852668762207,0.308824479579926,-0.794968664646149,-0.52216112613678,0.325429439544678,-0.790334224700928,-0.519102513790131,0.318564414978027,-0.73544830083847,-0.598023891448975,0.301567733287811,-0.740930736064911,-0.600065529346466,0.345917224884033,-0.794443368911743,-0.499200403690338,0.360393106937408,-0.625933229923248,-0.691610038280487,0.360410660505295,-0.624640107154846,-0.6927689909935,0.358444839715958,-0.883171498775482,-0.302531719207764,0.356000989675522,-0.858950197696686,-0.368059515953064,0.345243901014328,-0.794654428958893,-0.499330550432205,0.343613237142563,-0.625914454460144,-0.700115084648132,0.343667060136795,-0.624303162097931,-0.701525807380676,0.32495978474617,-0.800796627998352,-0.503116190433502,0.397736608982086,-0.614219605922699,-0.68157160282135,0.397513568401337,-0.624261438846588,-0.672518134117126,0.381408214569092,-0.782650411128998,-0.491920828819275,0.358701556921005,-0.624070465564728,-0.694168090820313,0.357421219348907,-0.61204981803894,-0.705439627170563,0.365825951099396,-0.787990868091583,-0.495218902826309,-0.193951904773712,0.35891592502594,-0.912996292114258, +-0.2837855219841,0.390556454658508,-0.875746250152588,-0.370837360620499,0.410364627838135,-0.833115041255951,-0.283665716648102,0.38904082775116,-0.876459419727325,0.344219624996185,-0.794974625110626,-0.499527990818024,0.33222097158432,-0.613288402557373,-0.716593682765961,0.33172607421875,-0.60928875207901,-0.720225751399994,0.413479596376419,-0.579010486602783,-0.702695965766907,0.41364061832428,-0.580246925354004,-0.701580345630646,0.423812717199326,-0.76678192615509,-0.48210820555687,0.388138353824615,-0.679852843284607,-0.622212767601013,0.385690152645111,-0.640597641468048,-0.663986325263977,0.388020426034927,-0.780305862426758,-0.490472108125687,0.389090299606323,-0.67953097820282,-0.621969819068909,0.389780044555664,-0.779673993587494,-0.490081608295441,0.390668034553528,-0.722803354263306,-0.570029675960541,0.683160960674286,0.730208456516266,-0.00931809935718775,0.648062288761139,0.758502244949341,-0.0684814527630806,0.669589221477509,0.740158677101135,-0.0617690980434418,0.704516112804413,0.70968109369278,-0.00314939068630338,0.698009252548218,0.654224455356598,-0.291158735752106,0.6567023396492,0.697044909000397,-0.287872225046158,0.625611662864685,0.701566696166992,-0.341195374727249,0.660521745681763,0.664407312870026,-0.349676936864853,0.645059168338776,0.54942113161087,-0.531069874763489,0.68745630979538,0.574872314929962,-0.443763136863708,0.640733778476715,0.651334047317505,-0.406477779150009,0.604784786701202,0.625441253185272,-0.493009746074677,0.637874722480774,0.667263031005859,-0.38454657793045,0.676600575447083,0.634633123874664,-0.373433411121368,0.72051066160202,0.613626718521118,-0.322996646165848,0.6899493932724,0.644462108612061,-0.329603642225266,0.351401507854462,0.864495992660522,0.359393715858459,0.346254050731659,0.863554716110229,0.366580724716187,0.32563191652298,0.890769839286804,0.317006230354309,0.319800138473511,0.900581121444702,0.294417262077332,-0.505394399166107,-0.856235265731812,0.106947869062424,-0.571819424629211,-0.816186845302582,0.0828353315591812,-0.560830235481262,-0.825628697872162,0.0616991966962814, +-0.494710326194763,-0.86487865447998,0.0851272195577621,0.551551580429077,0.654200732707977,-0.517505884170532,0.584368526935577,0.699716746807098,-0.410986572504044,0.642926692962646,0.603164434432983,-0.47205725312233,0.601927578449249,0.553709089756012,-0.575403869152069,0.521957695484161,0.846821904182434,0.102239370346069,0.543173551559448,0.836405634880066,0.073404349386692,0.533634006977081,0.845543503761292,0.0170637834817171,0.512850642204285,0.857327818870544,0.044422809034586,0.620306193828583,0.769985735416412,-0.149473696947098,0.648772656917572,0.754377961158752,-0.100040003657341,0.623017728328705,0.776431262493134,-0.0948861837387085,0.597222208976746,0.789381980895996,-0.142133355140686,0.627849102020264,0.771181643009186,-0.105282410979271,0.650178074836731,0.752806663513184,-0.102716386318207,0.67095959186554,0.738723814487457,-0.0640340894460678,0.647710382938385,0.758859515190125,-0.0678495988249779,0.572803139686584,0.616609513759613,-0.540082693099976,0.548014402389526,0.648652970790863,-0.528137981891632,0.502461194992065,0.652865052223206,-0.566833436489105,0.491230368614197,0.639316082000732,-0.591580748558044,0.496457934379578,0.600874960422516,-0.626481294631958,0.544426739215851,0.590157985687256,-0.596081495285034,0.506394445896149,0.624048411846161,-0.595086872577667,0.45802503824234,0.633108556270599,-0.624008476734161,0.509610831737518,0.844457566738129,-0.164888858795166,0.467174291610718,0.87539404630661,-0.124231770634651,0.480112075805664,0.876441121101379,-0.0366508476436138,0.52478015422821,0.847667336463928,-0.0778845772147179,0.558113157749176,0.811460316181183,-0.173326388001442,0.570557236671448,0.80230188369751,-0.17543151974678,0.613881945610046,0.777689099311829,-0.13545723259449,0.595380485057831,0.791609108448029,-0.137394711375237,0.19373644888401,0.865573227405548,0.461789190769196,0.150325626134872,0.872377932071686,0.465144217014313,0.0872422680258751,0.902567028999329,0.421617805957794,0.126542687416077,0.904850423336029,0.406488418579102,0.319772362709045,0.891328573226929,0.321370422840118, +0.32573601603508,0.903769016265869,0.277664601802826,0.281458348035812,0.921980381011963,0.265957325696945,0.281812936067581,0.904937088489532,0.318857848644257,0.24317093193531,0.924591600894928,0.293254911899567,0.285912603139877,0.906604290008545,0.310358971357346,0.2825967669487,0.921043634414673,0.267988383769989,0.235977649688721,0.940085887908936,0.246075436472893,0.379411488771439,0.908668160438538,0.174267679452896,0.388411998748779,0.894064366817474,0.223125904798508,0.419151484966278,0.881222248077393,0.218539446592331,0.413115620613098,0.894014298915863,0.173418536782265,0.135743528604507,0.973714590072632,0.182903692126274,0.181552842259407,0.970672845840454,0.157584518194199,0.177547946572304,0.981319665908813,0.0740840137004852,0.134333938360214,0.985632538795471,0.102386131882668,0.385386645793915,0.912089347839355,0.139893397688866,0.33794242143631,0.930349230766296,0.142286032438278,0.351043373346329,0.914139807224274,0.202773362398148,0.394141733646393,0.897931337356567,0.195886969566345,0.549660086631775,0.794684767723083,-0.257585018873215,0.540908873081207,0.805806577205658,-0.241025507450104,0.474242925643921,0.828016579151154,-0.299135953187943,0.471255332231522,0.82149064540863,-0.32104766368866,0.501026034355164,0.741580724716187,-0.446128964424133,0.575551688671112,0.727170407772064,-0.374116837978363,0.565403163433075,0.711235165596008,-0.417688697576523,0.492253065109253,0.722545862197876,-0.485401272773743,0.428499072790146,0.613679647445679,-0.663163483142853,0.436335891485214,0.611995339393616,-0.659600377082825,0.398326992988586,0.626781642436981,-0.669686853885651,0.392860442399979,0.627238571643829,-0.672482252120972,0.40089151263237,0.635896980762482,-0.659485518932343,0.438635587692261,0.624910771846771,-0.645821511745453,0.496806174516678,0.603374660015106,-0.623797059059143,0.454456448554993,0.617792129516602,-0.641718208789825,-0.465391278266907,-0.853184580802917,0.235557183623314,-0.392301380634308,-0.878490030765533,0.27268123626709,-0.396584987640381,-0.876372635364532,0.27329695224762, +-0.472260177135468,-0.849671244621277,0.234583348035812,0.30406242609024,0.952401876449585,0.0218358337879181,0.366574227809906,0.930027604103088,0.0259231626987457,0.315546989440918,0.946776747703552,-0.0635913014411926,0.247791469097137,0.966200709342957,-0.0711030140519142,0.375969648361206,0.910997986793518,-0.16949799656868,0.439602196216583,0.894536316394806,-0.0809621810913086,0.47840803861618,0.872413873672485,-0.100098729133606,0.421212553977966,0.888079047203064,-0.184107705950737,0.0704495161771774,0.995312571525574,-0.0662544816732407,0.131243616342545,0.990971505641937,-0.0273975841701031,0.133831188082695,0.990956902503967,-0.0096757747232914,0.0695360824465752,0.996264100074768,-0.0512124486267567,0.188948050141335,0.497071206569672,-0.846887826919556,0.27446648478508,0.500449120998383,-0.821108400821686,0.269243508577347,0.536570072174072,-0.799750208854675,0.189298391342163,0.531002402305603,-0.8259556889534,0.294276535511017,0.620379686355591,-0.727001011371613,0.280061453580856,0.519555330276489,-0.807234644889832,0.3776034116745,0.586863577365875,-0.71624493598938,0.376349359750748,0.683396100997925,-0.625564634799957,0.373034715652466,0.568132221698761,-0.733533143997192,0.294682830572128,0.570827841758728,-0.766366541385651,0.332391440868378,0.584191977977753,-0.740429401397705,0.417680323123932,0.577242732048035,-0.701665222644806,0.270756304264069,0.640466809272766,-0.718674778938293,0.368573874235153,0.637315571308136,-0.676743805408478,0.33921030163765,0.620784103870392,-0.706798017024994,0.245223641395569,0.62067312002182,-0.7447350025177,0.344182968139648,0.64973384141922,-0.677778780460358,0.369418323040009,0.673505544662476,-0.640250325202942,0.451138377189636,0.674713313579559,-0.58415424823761,0.427908778190613,0.65259861946106,-0.625307321548462,0.44562178850174,0.745516538619995,-0.495607197284698,0.368236213922501,0.739314615726471,-0.563751757144928,0.365317612886429,0.769289135932922,-0.5241539478302,0.440489441156387,0.774287462234497,-0.454365640878677,0.0225501619279385,0.449770122766495,-0.892859697341919, +0.0969628468155861,0.445826560258865,-0.889852225780487,0.0861803963780403,0.434693932533264,-0.896445274353027,0.0157705266028643,0.437212914228439,-0.899219870567322,0.096027672290802,0.469364017248154,-0.8777676820755,0.109958194196224,0.493824809789658,-0.862581253051758,0.189236238598824,0.498050808906555,-0.846247673034668,0.171911716461182,0.47524556517601,-0.862895250320435,0.190946385264397,0.503868162631989,-0.842410981655121,0.111602872610092,0.499878942966461,-0.858874797821045,0.141050294041634,0.518065392971039,-0.843630969524384,0.224589824676514,0.519580662250519,-0.824375808238983,0.0951118320226669,0.549983739852905,-0.829742014408112,0.180347248911858,0.561200618743896,-0.807792603969574,0.145736157894135,0.542498588562012,-0.827318668365479,0.0608412809669971,0.529293775558472,-0.846254467964172,0.152624070644379,0.578783512115479,-0.801071524620056,0.182055994868279,0.599441170692444,-0.779439568519592,0.269080698490143,0.605703234672546,-0.748811900615692,0.238620668649673,0.587209165096283,-0.773463487625122,0.272062212228775,0.682921409606934,-0.677938461303711,0.184171661734581,0.668753564357758,-0.720312118530273,0.193784698843956,0.693472743034363,-0.693933069705963,0.281206905841827,0.706114947795868,-0.649864852428436,-0.152283370494843,0.324694663286209,-0.933479130268097,-0.0746592283248901,0.340810060501099,-0.93716299533844,-0.0841801762580872,0.317992866039276,-0.944348692893982,-0.165909081697464,0.302268326282501,-0.938673615455627,-0.0733418762683868,0.378901451826096,-0.922526299953461,-0.0627778917551041,0.407169729471207,-0.911192536354065,0.0164517182856798,0.423398613929749,-0.905794203281403,0.0059882327914238,0.39581224322319,-0.918312013149261,0.0132023859769106,0.409218341112137,-0.912341058254242,-0.0641619637608528,0.399640828371048,-0.914423525333405,-0.0338736586272717,0.416932612657547,-0.908306002616882,0.0440784059464931,0.425462424755096,-0.903902053833008,-0.0662655308842659,0.435556143522263,-0.897719204425812,0.0126236155629158,0.453900635242462,-0.890962958335876, +-0.0317165888845921,0.435488134622574,-0.899635672569275,-0.110240735113621,0.415158569812775,-0.903045058250427,-0.0270758867263794,0.474405944347382,-0.879889726638794,0.0117225963622332,0.494848012924194,-0.8689004778862,0.0943040102720261,0.509954869747162,-0.855016231536865,0.0547069609165192,0.491553604602814,-0.86912727355957,0.0956810563802719,0.58681446313858,-0.804048538208008,0.0101437205448747,0.561550915241241,-0.827380120754242,0.0329676270484924,0.585623800754547,-0.809912264347076,0.118443965911865,0.608840823173523,-0.784400463104248,-0.304544746875763,0.212001904845238,-0.928605198860168,-0.234227031469345,0.227610915899277,-0.945161879062653,-0.249794840812683,0.213032782077789,-0.944573760032654,-0.319328486919403,0.197208479046822,-0.926897048950195,-0.247393593192101,0.247797071933746,-0.936692595481873,-0.232807219028473,0.252868413925171,-0.939073204994202,-0.160386398434639,0.255616813898087,-0.953381538391113,-0.172226071357727,0.250323444604874,-0.952720522880554,-0.155609890818596,0.297355055809021,-0.942000806331635,-0.230826526880264,0.283967971801758,-0.93063497543335,-0.189200893044472,0.298202723264694,-0.935563087463379,-0.116220526397228,0.310605704784393,-0.94340717792511,-0.318415611982346,0.127985164523125,-0.939271688461304,-0.368015199899673,0.108145371079445,-0.923509359359741,-0.430880427360535,0.0844573602080345,-0.89844822883606,-0.38406765460968,0.104577504098415,-0.917363405227661,-0.430265784263611,0.0807895064353943,-0.8990797996521,-0.367286562919617,0.100959300994873,-0.924612283706665,-0.381967395544052,0.0893845334649086,-0.919843137264252,-0.442883431911469,0.0693345665931702,-0.893894374370575,-0.385193109512329,0.13073818385601,-0.913528323173523,-0.370926111936569,0.138998195528984,-0.918201208114624,-0.303625375032425,0.152025029063225,-0.940585017204285,-0.319378137588501,0.143891170620918,-0.936639249324799,-0.209856569766998,0.311125874519348,-0.926909387111664,-0.134573742747307,0.336174845695496,-0.932135403156281,-0.189377814531326,0.314461201429367,-0.930188238620758, +-0.264335691928864,0.287499815225601,-0.920581698417664,-0.189575508236885,0.3527851998806,-0.916298925876617,-0.140005573630333,0.373898267745972,-0.916841566562653,-0.0631237328052521,0.395180821418762,-0.916431963443756,-0.112677544355392,0.376034677028656,-0.919729173183441,-0.0688977241516113,0.47005832195282,-0.879942297935486,-0.148687854409218,0.436508297920227,-0.887328803539276,-0.111834898591042,0.462053656578064,-0.879772424697876,-0.0334625691175461,0.493047118186951,-0.869358837604523,-0.418529510498047,-0.00390590727329254,-0.908194899559021,-0.466875940561295,-0.0307807847857475,-0.883786916732788,-0.515433132648468,-0.058632880449295,-0.854921519756317,-0.472530990839005,-0.0331298112869263,-0.880691170692444,-0.515534579753876,-0.0583443269133568,-0.854880154132843,-0.466315776109695,-0.0327944047749043,-0.884010255336761,-0.477518200874329,-0.0448992066085339,-0.877473890781403,-0.523168981075287,-0.0694536343216896,-0.849394202232361,-0.488657176494598,0.000166811034432612,-0.872475802898407,-0.477713644504547,0.00978153198957443,-0.878461241722107,-0.421350449323654,0.0310638435184956,-0.906365692615509,-0.435100704431534,0.0209379866719246,-0.900138318538666,-0.33386105298996,0.179714754223824,-0.925332129001617,-0.265340089797974,0.213054031133652,-0.940320611000061,-0.327831834554672,0.181829929351807,-0.927072942256927,-0.394576698541641,0.147137597203255,-0.907005906105042,-0.333720535039902,0.218591809272766,-0.916977882385254,-0.275311172008514,0.246252745389938,-0.929281175136566,-0.202120766043663,0.275689601898193,-0.939756691455841,-0.261331528425217,0.249801740050316,-0.932365298271179,-0.216431573033333,0.342045605182648,-0.914419114589691,-0.290829002857208,0.299831509590149,-0.908581078052521,-0.241965875029564,0.332428812980652,-0.911561131477356,-0.16861566901207,0.371672570705414,-0.912922918796539,-0.480572879314423,-0.140488833189011,-0.865628480911255,-0.536428451538086,-0.143243089318275,-0.831700623035431,-0.565012991428375,-0.196916550397873,-0.801239252090454,-0.508156776428223,-0.192999452352524,-0.839361548423767, +-0.551820039749146,-0.219640046358109,-0.80452036857605,-0.520732343196869,-0.175904855132103,-0.835401356220245,-0.538644790649414,-0.161870330572128,-0.826837241649628,-0.570954442024231,-0.205552712082863,-0.79483288526535,-0.546605110168457,-0.143936276435852,-0.824927389621735,-0.539859175682068,-0.135874152183533,-0.830716788768768,-0.496168792247772,-0.111022412776947,-0.86109846830368,-0.50571608543396,-0.120104506611824,-0.854298710823059,-0.428237676620483,0.0447464697062969,-0.902557611465454,-0.371161371469498,0.0845500156283379,-0.924711108207703,-0.434556603431702,0.0411001071333885,-0.899706304073334,-0.487684905529022,0.00145928573329002,-0.873018622398376,-0.445847272872925,0.074613593518734,-0.891993939876556,-0.384791612625122,0.112574592232704,-0.916112661361694,-0.322014033794403,0.149286940693855,-0.934890627861023,-0.385961532592773,0.112035021185875,-0.915686547756195,-0.343521356582642,0.205133154988289,-0.916467905044556,-0.405450463294983,0.156489387154579,-0.900622606277466,-0.350850909948349,0.200707495212555,-0.914669454097748,-0.288397341966629,0.246809393167496,-0.925155282020569,-0.51296603679657,-0.271690011024475,-0.814279079437256,-0.566986918449402,-0.289809465408325,-0.771061897277832,-0.588156521320343,-0.348489135503769,-0.72981321811676,-0.533432483673096,-0.32863587141037,-0.779389679431915,-0.573750376701355,-0.365368753671646,-0.733018517494202,-0.546081304550171,-0.318246364593506,-0.77492880821228,-0.563676655292511,-0.31355819106102,-0.764166295528412,-0.592175900936127,-0.361134111881256,-0.720354080200195,-0.5898157954216,-0.275570541620255,-0.759064078330994,-0.558091104030609,-0.302074015140533,-0.772842645645142,-0.540310621261597,-0.238819465041161,-0.806864142417908,-0.568343102931976,-0.210322976112366,-0.795455992221832,-0.489187568426132,-0.0876143053174019,-0.867766797542572,-0.446967303752899,-0.0452142767608166,-0.893406927585602,-0.503645539283752,-0.100249975919724,-0.858074128627777,-0.54257744550705,-0.142141982913017,-0.827892184257507,-0.51962274312973,-0.0710408911108971,-0.851437211036682, +-0.463164806365967,-0.0224537700414658,-0.885987758636475,-0.413139700889587,0.0193086564540863,-0.910462975502014,-0.473881483078003,-0.030113011598587,-0.880073666572571,-0.439773499965668,0.0646250322461128,-0.895780622959137,-0.487279891967773,0.0125273894518614,-0.873156011104584,-0.434951364994049,0.0689699202775955,-0.897808730602264,-0.385108351707458,0.119892433285713,-0.915050566196442,-0.524580121040344,-0.404825419187546,-0.748954057693481,-0.552723824977875,-0.455120891332626,-0.698112785816193,-0.572842955589294,-0.494371831417084,-0.653794646263123,-0.546711981296539,-0.445036739110947,-0.70925897359848,-0.571718394756317,-0.495304763317108,-0.654072880744934,-0.550982534885406,-0.456736952066422,-0.698433697223663,-0.555152118206024,-0.46986922621727,-0.686315536499023,-0.575690925121307,-0.508629322052002,-0.640215694904327,-0.592629551887512,-0.432987838983536,-0.679199397563934,-0.588572680950165,-0.42056143283844,-0.690442085266113,-0.56062126159668,-0.380310207605362,-0.73557323217392,-0.565269649028778,-0.393002986907959,-0.725271582603455,-0.51055634021759,-0.232319712638855,-0.827864646911621,-0.489348769187927,-0.172973945736885,-0.854761958122253,-0.55334597826004,-0.222554296255112,-0.802669167518616,-0.57478529214859,-0.285533666610718,-0.766871809959412,-0.562827348709106,-0.210450232028961,-0.799334764480591,-0.494116485118866,-0.168211206793785,-0.852967798709869,-0.469412356615067,-0.11107625067234,-0.875964760780334,-0.537383615970612,-0.150057151913643,-0.829880475997925,-0.502685725688934,-0.071200966835022,-0.861532092094421,-0.536648690700531,-0.124225869774818,-0.834611356258392,-0.490925580263138,-0.0557188242673874,-0.869417905807495,-0.454902768135071,-0.0040588672272861,-0.890531897544861,-0.501212418079376,-0.520675301551819,-0.691146492958069,-0.518587112426758,-0.582138538360596,-0.62624454498291,-0.527309596538544,-0.618870198726654,-0.582189381122589,-0.511053144931793,-0.554706752300262,-0.656601309776306,-0.527588784694672,-0.618710279464722,-0.582106292247772,-0.516827583312988,-0.583269834518433,-0.626646280288696, +-0.52129453420639,-0.598380267620087,-0.608434915542603,-0.531940042972565,-0.635133385658264,-0.560040593147278,-0.54778003692627,-0.580430626869202,-0.602525889873505,-0.541825711727142,-0.566800057888031,-0.620614767074585,-0.525418758392334,-0.531932473182678,-0.664065480232239,-0.531287610530853,-0.54461544752121,-0.648943424224854,-0.539465665817261,-0.348730087280273,-0.766396880149841,-0.517664194107056,-0.298660039901733,-0.801764249801636,-0.553516924381256,-0.380221456289291,-0.740979611873627,-0.570985019207001,-0.426921367645264,-0.701223433017731,-0.577947735786438,-0.358410447835922,-0.733156442642212,-0.521478831768036,-0.295913994312286,-0.800309181213379,-0.50539755821228,-0.236703217029572,-0.829786062240601,-0.563558578491211,-0.297565162181854,-0.770621061325073,-0.550861239433289,-0.196886479854584,-0.811041116714478,-0.567113995552063,-0.261745631694794,-0.780942440032959,-0.519912481307983,-0.187827408313751,-0.833313822746277,-0.501819372177124,-0.12570583820343,-0.855789422988892,-0.459305286407471,-0.617053806781769,-0.638970553874969,-0.470572054386139,-0.68802672624588,-0.552432060241699,-0.455716729164124,-0.732344210147858,-0.505958795547485,-0.447584599256516,-0.664422273635864,-0.598507404327393,-0.454380452632904,-0.73283439874649,-0.506450653076172,-0.45372211933136,-0.695198535919189,-0.557526051998138,-0.454827874898911,-0.714341700077057,-0.531834185123444,-0.454601973295212,-0.749829113483429,-0.480721741914749,-0.477005422115326,-0.70448362827301,-0.525517582893372,-0.474971771240234,-0.686100840568542,-0.551060318946838,-0.469645708799362,-0.649789929389954,-0.597667157649994,-0.47237554192543,-0.66810268163681,-0.574891448020935,-0.524334251880646,-0.450721234083176,-0.722443103790283,-0.517676651477814,-0.412643194198608,-0.749490857124329,-0.532428205013275,-0.502492249011993,-0.681191504001617,-0.536547958850861,-0.541927933692932,-0.646861970424652,-0.556726336479187,-0.487523764371872,-0.672589302062988,-0.534728527069092,-0.404336780309677,-0.742008924484253,-0.521294891834259,-0.359687179327011,-0.773871302604675, +-0.546735763549805,-0.445019394159317,-0.709251523017883,-0.558976709842682,-0.33657568693161,-0.757800698280334,-0.567447900772095,-0.387598782777786,-0.726477801799774,-0.553506553173065,-0.310665607452393,-0.772733867168427,-0.539856135845184,-0.2504802942276,-0.803626298904419,-0.550519704818726,-0.409285098314285,-0.727608263492584,-0.546436965465546,-0.485836982727051,-0.682179749011993,-0.537713646888733,-0.538470029830933,-0.648778975009918,-0.545532822608948,-0.455576628446579,-0.703451454639435,-0.493714690208435,-0.5501629114151,-0.673473656177521,-0.501590490341187,-0.500486254692078,-0.705634832382202,-0.500483334064484,-0.601347684860229,-0.622814118862152,-0.488249659538269,-0.65162068605423,-0.580519497394562,-0.51408725976944,-0.595766663551331,-0.617070913314819,-0.512910008430481,-0.496961385011673,-0.699966311454773,-0.510226607322693,-0.456227958202362,-0.729057490825653,-0.514708459377289,-0.552919507026672,-0.655252158641815,-0.346316069364548,-0.831663727760315,-0.434051513671875,-0.373653650283813,-0.792571902275085,-0.481884628534317,-0.382333397865295,-0.805402994155884,-0.452931731939316,-0.354469358921051,-0.842808187007904,-0.405001014471054,-0.400850296020508,-0.80028623342514,-0.445938467979431,-0.397818684577942,-0.786437034606934,-0.472501009702682,-0.411064326763153,-0.747645139694214,-0.521586954593658,-0.414616167545319,-0.764217436313629,-0.494029581546783,-0.430098533630371,-0.741390943527222,-0.515125930309296,-0.413484394550323,-0.782118737697601,-0.466176807880402,-0.41990602016449,-0.717490792274475,-0.555775046348572,-0.434061706066132,-0.668304741382599,-0.604118585586548,-0.539670348167419,-0.506529569625854,-0.672446072101593,-0.513008654117584,-0.601008534431458,-0.612870991230011,-0.489918172359467,-0.665170848369598,-0.563496112823486,-0.523991763591766,-0.566969454288483,-0.635592818260193,-0.454644620418549,-0.67019522190094,-0.586631596088409,-0.473279416561127,-0.609025299549103,-0.6364706158638,-0.442505538463593,-0.712127268314362,-0.545035421848297,-0.42057466506958,-0.762871980667114,-0.491063356399536, +-0.458154201507568,-0.708094954490662,-0.537304639816284,-0.478405296802521,-0.608077228069305,-0.633538126945496,-0.490455150604248,-0.55095762014389,-0.675203323364258,-0.474501401185989,-0.656142473220825,-0.586792528629303,-0.619928956031799,-0.120212562382221,-0.77539473772049,-0.626739740371704,-0.197056695818901,-0.753900647163391,-0.61762523651123,-0.108499646186829,-0.778952479362488,-0.607940316200256,-0.0401149280369282,-0.792968809604645,-0.627160608768463,-0.10642908513546,-0.771584451198578,-0.631175220012665,-0.195511311292648,-0.750595211982727,-0.633662641048431,-0.261631816625595,-0.728025138378143,-0.633308231830597,-0.170202240347862,-0.75495171546936,-0.590025842189789,-0.273787021636963,-0.759546101093292,-0.58547180891037,-0.210806027054787,-0.78280508518219,-0.593393802642822,-0.293907523155212,-0.749334514141083,-0.594383060932159,-0.348620742559433,-0.724687814712524,-0.655589401721954,-0.224743187427521,-0.720897436141968,-0.641453564167023,-0.315135449171066,-0.699447691440582,-0.639644801616669,-0.363500088453293,-0.677290439605713,-0.656888365745544,-0.276599109172821,-0.701420426368713,-0.598592936992645,-0.370269179344177,-0.710343062877655,-0.600458323955536,-0.324504941701889,-0.730853140354156,-0.593265295028687,-0.397172331809998,-0.700207412242889,-0.588300883769989,-0.44596666097641,-0.67454868555069,-0.592804908752441,-0.397311180830002,-0.700518608093262,-0.595426201820374,-0.325569540262222,-0.73448771238327,-0.59475964307785,-0.272531926631927,-0.75629848241806,-0.594757199287415,-0.3484847843647,-0.72444623708725,-0.245867848396301,-0.903754055500031,-0.350396484136581,-0.273883283138275,-0.873382687568665,-0.402728825807571,-0.266748994588852,-0.885735690593719,-0.379891008138657,-0.239359438419342,-0.913361430168152,-0.329359918832779,-0.292785853147507,-0.882767498493195,-0.367420762777328,-0.300150632858276,-0.870673537254333,-0.38966292142868,-0.320883482694626,-0.836012363433838,-0.445103675127029,-0.313783079385757,-0.850478827953339,-0.422168046236038,-0.342251509428024,-0.832406044006348,-0.435848861932755, +-0.313898533582687,-0.868940353393555,-0.38263601064682,-0.339942574501038,-0.816293239593506,-0.467016696929932,-0.366837412118912,-0.771879315376282,-0.519261658191681,-0.50216156244278,-0.62855464220047,-0.593929946422577,-0.442379832267761,-0.72625333070755,-0.526171326637268,-0.407766193151474,-0.776918292045593,-0.479713320732117,-0.473044484853745,-0.684775114059448,-0.554357290267944,-0.380111694335938,-0.776829719543457,-0.502046644687653,-0.411532878875732,-0.728103220462799,-0.548184633255005,-0.355187177658081,-0.814854264259338,-0.458099067211151,-0.320297479629517,-0.855398893356323,-0.407065659761429,-0.373134106397629,-0.812814593315125,-0.447329342365265,-0.419585943222046,-0.727724313735962,-0.542554080486298,-0.445774763822556,-0.671253502368927,-0.592202305793762,-0.402430534362793,-0.76626592874527,-0.500885486602783,-0.676819384098053,-0.326286971569061,-0.6598881483078,-0.646314263343811,-0.409489035606384,-0.64389181137085,-0.634424328804016,-0.465391606092453,-0.617184400558472,-0.670353531837463,-0.378876328468323,-0.638027369976044,-0.597267687320709,-0.465963184833527,-0.65280145406723,-0.607398152351379,-0.413395702838898,-0.678359508514404,-0.580402851104736,-0.499829769134521,-0.642886221408844,-0.561514258384705,-0.563550353050232,-0.605898320674896,-0.579016804695129,-0.500083446502686,-0.643937945365906,-0.599800884723663,-0.414012312889099,-0.68471360206604,-0.604083836078644,-0.369439333677292,-0.706114232540131,-0.588765382766724,-0.445853352546692,-0.67421817779541,-0.0963174551725388,-0.945062518119812,-0.312377840280533,-0.152003675699234,-0.927123725414276,-0.342544108629227,-0.164578333497047,-0.93587452173233,-0.311533212661743,-0.108819551765919,-0.953561902046204,-0.280852377414703,-0.182855978608131,-0.936213612556458,-0.30011311173439,-0.184902310371399,-0.928704261779785,-0.32143360376358,-0.220325455069542,-0.904615700244904,-0.36486604809761,-0.21699121594429,-0.914457499980927,-0.341588050127029,-0.229350388050079,-0.904401063919067,-0.359801679849625,-0.19608810544014,-0.928918659687042,-0.314101338386536, +-0.239494010806084,-0.888894200325012,-0.390525132417679,-0.273711144924164,-0.856436192989349,-0.437720686197281,-0.440292477607727,-0.735776007175446,-0.514564156532288,-0.34937983751297,-0.820463299751282,-0.452519416809082,-0.307683348655701,-0.86087429523468,-0.405248671770096,-0.402483582496643,-0.78410005569458,-0.472434312105179,-0.287114918231964,-0.857743680477142,-0.426428020000458,-0.325653433799744,-0.81828510761261,-0.47366589307785,-0.239128217101097,-0.88887357711792,-0.390796095132828,-0.200392410159111,-0.918139696121216,-0.341851383447647,-0.264959543943405,-0.889876425266266,-0.37137109041214,-0.337332636117935,-0.819457292556763,-0.463353514671326,-0.373113870620728,-0.77665388584137,-0.50753790140152,-0.302790403366089,-0.856104373931885,-0.418811917304993,-0.679753661155701,-0.439588725566864,-0.587108850479126,-0.627099990844727,-0.528163194656372,-0.572528958320618,-0.598770618438721,-0.590692579746246,-0.540884554386139,-0.659251928329468,-0.500019788742065,-0.561575710773468,-0.570395112037659,-0.586696624755859,-0.574836134910583,-0.59538745880127,-0.526392936706543,-0.606979668140411,-0.53428715467453,-0.628071308135986,-0.565741717815399,-0.501978576183319,-0.68649560213089,-0.526062190532684,-0.534075617790222,-0.62807834148407,-0.565933644771576,-0.587331652641296,-0.525775969028473,-0.615305781364441,-0.605330169200897,-0.465944856405258,-0.645345568656921,-0.56128203868866,-0.563575983047485,-0.60608971118927,0.0451054275035858,-0.971949815750122,-0.230822563171387,0.00847104284912348,-0.951014339923859,-0.30903086066246,0.0448338240385056,-0.948206305503845,-0.31447559595108,0.0790204927325249,-0.967836499214172,-0.238848075270653,0.00719668064266443,-0.959022283554077,-0.283239275217056,-0.0179114192724228,-0.958001732826233,-0.28620246052742,-0.0473738461732864,-0.936370491981506,-0.347801834344864,-0.0202455669641495,-0.939175963401794,-0.342839270830154,-0.0773433074355125,-0.942103743553162,-0.326280027627945,-0.0330944731831551,-0.961475431919098,-0.272891461849213,-0.0966068878769875,-0.935405910015106,-0.340121775865555, +-0.140867158770561,-0.909183502197266,-0.391843974590302,-0.36173015832901,-0.832959055900574,-0.418724894523621,-0.240561574697495,-0.896003007888794,-0.373241126537323,-0.183063521981239,-0.931942224502563,-0.313003897666931,-0.306521236896515,-0.879995584487915,-0.36283951997757,-0.16874486207962,-0.927619218826294,-0.333238363265991,-0.22291699051857,-0.891648650169373,-0.394044071435928,-0.107583969831467,-0.938050389289856,-0.329373747110367,-0.0525163114070892,-0.9628826379776,-0.264762550592422,-0.123845130205154,-0.941558539867401,-0.313256859779358,-0.229139596223831,-0.893257021903992,-0.386764705181122,-0.270154356956482,-0.854631125926971,-0.443421214818954,-0.164713308215141,-0.913423776626587,-0.372191458940506,-0.653249859809875,-0.564630925655365,-0.50443696975708,-0.577881157398224,-0.651018679141998,-0.492166697978973,-0.537216484546661,-0.706226050853729,-0.461132526397705,-0.619650065898895,-0.622197806835175,-0.478438973426819,-0.51766711473465,-0.700303256511688,-0.491524308919907,-0.554197728633881,-0.646059095859528,-0.524854898452759,-0.46532878279686,-0.739104151725769,-0.487025916576385,-0.42230561375618,-0.788240790367126,-0.447587430477142,-0.465410351753235,-0.739113450050354,-0.486933946609497,-0.546970009803772,-0.644376158714294,-0.53441858291626,-0.57781195640564,-0.587836623191833,-0.566199123859406,-0.502856612205505,-0.686530709266663,-0.525177001953125,-0.770309448242188,-0.251480489969254,-0.585987150669098,-0.752216815948486,-0.267813354730606,-0.6020348072052,-0.747506976127625,-0.326701730489731,-0.578359186649323,-0.765664458274841,-0.312240183353424,-0.562373518943787,-0.731053471565247,-0.323874056339264,-0.600555181503296,-0.738134145736694,-0.266389399766922,-0.619834363460541,-0.711370587348938,-0.326329052448273,-0.622463822364807,-0.702114999294281,-0.38151741027832,-0.601231217384338,-0.701753318309784,-0.326403200626373,-0.633248269557953,-0.726434946060181,-0.265133649110794,-0.63403195142746,-0.728950202465057,-0.207177728414536,-0.652463853359222,-0.705945253372192,-0.273485213518143,-0.653335511684418, +-0.757347166538239,-0.372576832771301,-0.536294519901276,-0.749367356300354,-0.388856679201126,-0.53594696521759,-0.720737397670746,-0.445417910814285,-0.53116911649704,-0.730362892150879,-0.428023636341095,-0.532321155071259,-0.716135025024414,-0.443763375282288,-0.538725078105927,-0.741195261478424,-0.386836171150208,-0.548623263835907,-0.715571701526642,-0.444876372814178,-0.538555800914764,-0.684052407741547,-0.506168127059937,-0.525229692459106,-0.695752739906311,-0.442103862762451,-0.566102802753448,-0.730540156364441,-0.38413342833519,-0.564581751823425,-0.742770552635193,-0.325903534889221,-0.584875166416168,-0.711983203887939,-0.382175147533417,-0.589085876941681,-0.689446032047272,-0.220548585057259,-0.689943909645081,-0.704065442085266,-0.149848148226738,-0.694145083427429,-0.69885915517807,-0.0926579684019089,-0.709232270717621,-0.687316179275513,-0.160629823803902,-0.708374619483948,-0.71494859457016,-0.0915005505084991,-0.693163931369781,-0.723816692829132,-0.149614080786705,-0.673576354980469,-0.739290535449982,-0.130519405007362,-0.6606165766716,-0.729912161827087,-0.073394663631916,-0.67958927154541,-0.755164206027985,-0.130856394767761,-0.642342269420624,-0.735854268074036,-0.149406135082245,-0.660451591014862,-0.743451774120331,-0.207784384489059,-0.635692715644836,-0.763047873973846,-0.189738616347313,-0.617865025997162,-0.747532665729523,-0.503646552562714,-0.433053225278854,-0.729112267494202,-0.51651656627655,-0.449005544185638,-0.697032630443573,-0.575241804122925,-0.428068399429321,-0.71627402305603,-0.563020408153534,-0.412261545658112,-0.691468894481659,-0.572071552276611,-0.441140472888947,-0.72254091501236,-0.513584196567535,-0.462780594825745,-0.672015607357025,-0.570766806602478,-0.471826523542404,-0.635532021522522,-0.629142582416534,-0.447525024414063,-0.662822663784027,-0.56782478094101,-0.488099664449692,-0.712480127811432,-0.509009778499603,-0.482991993427277,-0.736185669898987,-0.450855404138565,-0.504737615585327,-0.692157983779907,-0.508026719093323,-0.512665867805481,-0.687276244163513,0.0325173884630203,-0.725668013095856, +-0.691906809806824,-0.0323128066956997,-0.721263408660889,-0.691419243812561,-0.0166969988495111,-0.722260773181915,-0.686385095119476,0.0461116805672646,-0.725774943828583,-0.70521605014801,-0.0153908953070641,-0.708825409412384,-0.700361967086792,-0.0312072969973087,-0.713105320930481,-0.704787731170654,-0.0922400876879692,-0.703396141529083,-0.710186839103699,-0.074074774980545,-0.700105488300323,-0.686715245246887,-0.0934838503599167,-0.720890462398529,-0.679309546947479,-0.0339288637042046,-0.733067095279694,-0.675013959407806,-0.0954576730728149,-0.731603741645813,-0.679640650749207,-0.162081554532051,-0.715414702892303,-0.575421452522278,0.0181600451469421,-0.817655384540558,-0.594244003295898,-0.0503507032990456,-0.802707195281982,-0.574527084827423,0.02109594643116,-0.818213641643524,-0.55425614118576,0.0838687717914581,-0.828109979629517,-0.58295464515686,0.0238955803215504,-0.812153279781342,-0.599467039108276,-0.0477772280573845,-0.798972368240356,-0.613201320171356,-0.122998937964439,-0.78029191493988,-0.59839540719986,-0.0427061319351196,-0.800061941146851,-0.561350345611572,-0.143551379442215,-0.815033078193665,-0.545817852020264,-0.0734678506851196,-0.834676802158356,-0.574212610721588,-0.15447536110878,-0.804000914096832,-0.586539268493652,-0.226622357964516,-0.777569353580475,-0.637055456638336,0.157262697815895,-0.754605054855347,-0.651065289974213,0.0929907187819481,-0.753303945064545,-0.648176789283752,0.105365432798862,-0.754165172576904,-0.634364247322083,0.166367813944817,-0.754919707775116,-0.660862445831299,0.107896886765957,-0.742710649967194,-0.666660487651825,0.0966481044888496,-0.739068984985352,-0.679706513881683,0.0311126373708248,-0.7328240275383,-0.674215912818909,0.0442696250975132,-0.737206339836121,-0.64251047372818,0.0243548937141895,-0.765889883041382,-0.630139768123627,0.0881248712539673,-0.771464824676514,-0.639517068862915,0.0432258322834969,-0.76756078004837,-0.650842607021332,-0.0280736424028873,-0.75869357585907,-0.516375303268433,0.145336151123047,-0.843939542770386,-0.545500040054321,0.0805542543530464,-0.834230720996857, +-0.51923668384552,0.139617249369621,-0.84314900636673,-0.490181714296341,0.198498368263245,-0.848716855049133,-0.523660838603973,0.141694188117981,-0.840060770511627,-0.547991216182709,0.0822148770093918,-0.832434058189392,-0.571969747543335,0.0161668378859758,-0.820115506649017,-0.548282563686371,0.081488735973835,-0.832313656806946,-0.521518468856812,-0.012219101190567,-0.853152513504028,-0.493433088064194,0.046594712883234,-0.868534922599792,-0.527680993080139,-0.0247751176357269,-0.849081337451935,-0.554489552974701,-0.0876953229308128,-0.82755720615387,-0.573947250843048,0.274569004774094,-0.771489679813385,-0.5999915599823,0.213260978460312,-0.771057665348053,-0.60079550743103,0.220515549182892,-0.768386423587799,-0.575343310832977,0.280719846487045,-0.768229484558105,-0.608897149562836,0.222939059138298,-0.761276960372925,-0.607146382331848,0.215697407722473,-0.764753639698029,-0.628334581851959,0.154781028628349,-0.762389957904816,-0.629237353801727,0.16510508954525,-0.759474039077759,-0.595051407814026,0.145339995622635,-0.790436685085297,-0.574073851108551,0.204428255558014,-0.792873501777649,-0.583843767642975,0.170314386487007,-0.793800711631775,-0.605422258377075,0.104603931307793,-0.789000630378723,-0.43779182434082,0.277998626232147,-0.85501766204834,-0.480618268251419,0.210373282432556,-0.851322114467621,-0.452879816293716,0.257205337285995,-0.853665888309479,-0.411170721054077,0.319117724895477,-0.853875041007996,-0.452996462583542,0.25727790594101,-0.853582143783569,-0.480071097612381,0.209899723529816,-0.851747632026672,-0.515207588672638,0.144447088241577,-0.844805419445038,-0.487776130437851,0.197189301252365,-0.850406229496002,-0.465806066989899,0.107459552586079,-0.878337740898132,-0.427028894424438,0.164642885327339,-0.889122724533081,-0.467320382595062,0.105393573641777,-0.877783536911011,-0.505261480808258,0.0448086112737656,-0.861802220344543,-0.498450130224228,0.402055740356445,-0.768048763275146,-0.532479584217072,0.334648102521896,-0.777480661869049,-0.53194522857666,0.340729027986526,-0.775201976299286, +-0.497877836227417,0.407297909259796,-0.765654146671295,-0.5355224609375,0.342219769954681,-0.77207612991333,-0.538561224937439,0.337446600198746,-0.772063314914703,-0.568419814109802,0.272352457046509,-0.77635246515274,-0.565830290317535,0.277308821678162,-0.776489436626434,-0.534329056739807,0.25862592458725,-0.80473917722702,-0.503420412540436,0.321187824010849,-0.802126228809357,-0.515723764896393,0.29639858007431,-0.803851366043091,-0.546990990638733,0.229630067944527,-0.80502861738205,-0.338159769773483,0.415747851133347,-0.844275832176208,-0.393500924110413,0.350924134254456,-0.849711358547211,-0.370060116052628,0.384607672691345,-0.845655083656311,-0.318574607372284,0.442675471305847,-0.838181674480438,-0.365909188985825,0.381325662136078,-0.848941326141357,-0.390091866254807,0.347126334905624,-0.852837443351746,-0.439724147319794,0.279897898435593,-0.853404879570007,-0.413110733032227,0.320483982563019,-0.852425754070282,-0.391997992992401,0.233408704400063,-0.889863967895508,-0.338947474956512,0.290504425764084,-0.894830584526062,-0.379733502864838,0.245004713535309,-0.892062366008759,-0.433669567108154,0.183353871107101,-0.882219970226288,-0.411459147930145,0.526361763477325,-0.744073092937469,-0.459494143724442,0.467238187789917,-0.75534999370575,-0.455413728952408,0.468057811260223,-0.757311165332794,-0.40875717997551,0.524698436260223,-0.746732354164124,-0.460284650325775,0.470574408769608,-0.752793252468109,-0.4588882625103,0.46689510345459,-0.755930244922638,-0.496936738491058,0.401276379823685,-0.76943564414978,-0.497459203004837,0.407101929187775,-0.766030251979828,-0.462582290172577,0.383403837680817,-0.799386739730835,-0.422339230775833,0.445893883705139,-0.789182126522064,-0.429224461317062,0.430977344512939,-0.793741106987,-0.472398549318314,0.362121641635895,-0.803559422492981,-0.21768656373024,0.552232384681702,-0.804768264293671,-0.285974413156509,0.491782307624817,-0.822416543960571,-0.274948328733444,0.513099670410156,-0.813100397586823,-0.210251688957214,0.569018185138702,-0.79499214887619, +-0.266710311174393,0.505045771598816,-0.820849895477295,-0.28065487742424,0.484229177236557,-0.828706741333008,-0.342659384012222,0.421414226293564,-0.839639544487,-0.324698239564896,0.448076158761978,-0.832945823669434,-0.29707396030426,0.364041060209274,-0.882735013961792,-0.232805296778679,0.415833741426468,-0.879138231277466,-0.26599383354187,0.384270787239075,-0.884072065353394,-0.333119809627533,0.327620089054108,-0.884135961532593,-0.326265960931778,0.667122304439545,-0.66970020532608,-0.375034689903259,0.598016738891602,-0.708325505256653,-0.391434907913208,0.604401528835297,-0.693885803222656,-0.342644512653351,0.672645509243011,-0.655852794647217,-0.376353740692139,0.595364093780518,-0.709858775138855,-0.363243371248245,0.590152859687805,-0.720953464508057,-0.404713302850723,0.522156476974487,-0.750706315040588,-0.416892141103745,0.52931421995163,-0.738936722278595,-0.384339392185211,0.509283840656281,-0.770008563995361,-0.333540081977844,0.569805085659027,-0.75104820728302,-0.329873204231262,0.5655317902565,-0.755882024765015,-0.384490936994553,0.499964892864227,-0.776016592979431,-0.0851484909653664,0.682933449745178,-0.72550094127655,-0.15990899503231,0.631705403327942,-0.758536398410797,-0.166017666459084,0.646298050880432,-0.744806706905365,-0.096691370010376,0.694186568260193,-0.713271141052246,-0.15382969379425,0.632455766201019,-0.759168028831482,-0.152423202991486,0.618642330169678,-0.770745635032654,-0.224027186632156,0.562302112579346,-0.796007633209229,-0.220772832632065,0.580241680145264,-0.783950865268707,-0.183035150170326,0.496437758207321,-0.848556339740753,-0.109640531241894,0.541550755500793,-0.833487689495087,-0.129737019538879,0.518718421459198,-0.845044076442719,-0.206366270780563,0.469897866249084,-0.858259320259094,-0.211930811405182,0.780228078365326,-0.588497579097748,-0.277656644582748,0.732170701026917,-0.621958911418915,-0.283842414617538,0.730427026748657,-0.621216416358948,-0.219387903809547,0.777732729911804,-0.589067876338959,-0.281656414270401,0.729034006595612,-0.623842239379883, +-0.275772631168365,0.730861663818359,-0.624332308769226,-0.339233040809631,0.675963759422302,-0.654212474822998,-0.345173805952072,0.674204051494598,-0.65291965007782,-0.292040109634399,0.642785131931305,-0.708194851875305,-0.233773648738861,0.70020455121994,-0.674584031105042,-0.215219646692276,0.699540734291077,-0.681412696838379,-0.277900874614716,0.638917922973633,-0.71732497215271,0.0589466392993927,0.797545552253723,-0.600371897220612,-0.0223770439624786,0.758227169513702,-0.651606321334839,-0.0494987368583679,0.769717574119568,-0.636462688446045,0.0278090536594391,0.808607459068298,-0.587690949440002,-0.0357183963060379,0.753255486488342,-0.656757593154907,-0.0144691038876772,0.743052959442139,-0.669076263904572,-0.092985212802887,0.697571337223053,-0.710456192493439,-0.109678983688354,0.709537744522095,-0.696079611778259,-0.0558072626590729,0.625842452049255,-0.777950406074524,0.0242308415472507,0.662643432617188,-0.748542904853821,0.0204790160059929,0.642972052097321,-0.765615880489349,-0.062196958810091,0.604013025760651,-0.794543743133545,-0.106592178344727,0.890909433364868,-0.441495776176453,-0.178414016962051,0.849485874176025,-0.49653035402298,-0.195800468325615,0.849727213382721,-0.489516139030457,-0.122819408774376,0.891956090927124,-0.435120433568954,-0.190461039543152,0.846703052520752,-0.496808469295502,-0.161192938685417,0.838316380977631,-0.520809471607208,-0.21388091146946,0.781607687473297,-0.58595597743988,-0.241810351610184,0.791883826255798,-0.560756504535675,-0.197645083069801,0.769890546798706,-0.606799006462097,-0.132480159401894,0.818076848983765,-0.559642016887665,-0.0964387208223343,0.821071684360504,-0.562619686126709,-0.166563153266907,0.771835207939148,-0.613618075847626,0.197895899415016,0.883184134960175,-0.425232797861099,0.120770610868931,0.860236644744873,-0.495386034250259,0.0730073899030685,0.873396039009094,-0.481507420539856,0.145515099167824,0.89816153049469,-0.414887130260468,0.0878386646509171,0.8580402135849,-0.506015181541443,0.130036547780037,0.845000445842743,-0.518714666366577, +0.0505491495132446,0.813077449798584,-0.579956769943237,0.013043150305748,0.825560986995697,-0.564162254333496,0.0850019007921219,0.745065689086914,-0.661552667617798,0.168258875608444,0.771885812282562,-0.61309152841568,0.18252220749855,0.750130832195282,-0.635601699352264,0.0964297503232956,0.722514867782593,-0.684597373008728,0.00550346076488495,0.958853125572205,-0.283849447965622,-0.0685628801584244,0.939584672451019,-0.335380285978317,-0.0773915275931358,0.93756639957428,-0.339086830615997,-0.00365553796291351,0.957653880119324,-0.287899017333984,-0.0826566219329834,0.939722776412964,-0.331796854734421,-0.0547003671526909,0.933085858821869,-0.355469733476639,-0.113693997263908,0.895065009593964,-0.431198686361313,-0.142496436834335,0.901965260505676,-0.407619208097458,-0.0888546034693718,0.879906356334686,-0.466764986515045,-0.0220096707344055,0.915483117103577,-0.401753962039948,0.0273572690784931,0.914473295211792,-0.403720676898956,-0.0419069044291973,0.880841374397278,-0.471553146839142,0.317686349153519,0.925589442253113,-0.205814838409424,0.259852886199951,0.920211732387543,-0.292723447084427,0.192251294851303,0.939850091934204,-0.282349526882172,0.248669594526291,0.948245227336884,-0.197470247745514,0.210583433508873,0.926728367805481,-0.311173915863037,0.27099472284317,0.908663034439087,-0.317637234926224,0.188070967793465,0.896482706069946,-0.401183247566223,0.131043151021004,0.910964012145996,-0.391116797924042,0.228210836648941,0.835549175739288,-0.499777376651764,0.319501638412476,0.844700396060944,-0.429418325424194,0.349015265703201,0.821049571037292,-0.451736837625504,0.256533831357956,0.812827289104462,-0.52297455072403,0.129486322402954,0.974387586116791,-0.183853685855865,0.0585670918226242,0.980458736419678,-0.187804669141769,0.109269835054874,0.988999605178833,-0.0997000485658646,0.178604140877724,0.979243993759155,-0.0958224609494209,0.0714679732918739,0.99600350856781,-0.0535668656229973,0.00162016972899437,0.993574023246765,-0.113172769546509,-0.0088574355468154,0.992916107177734,-0.118487671017647, +0.0635324418544769,0.996284365653992,-0.0581485666334629,-0.0371346175670624,0.995887100696564,-0.0826442539691925,0.0278704725205898,0.988639652729034,-0.147699296474457,0.00229180627502501,0.96016263961792,-0.279432684183121,-0.0601210370659828,0.97514283657074,-0.213265210390091,0.228040039539337,0.959177136421204,-0.167263329029083,0.257859289646149,0.962480783462524,-0.0844952166080475,0.333549857139587,0.938000977039337,-0.0943324342370033,0.303416609764099,0.936138570308685,-0.177716076374054,-0.763530313968658,0.256351947784424,-0.592710018157959,-0.677054524421692,0.353786408901215,-0.645315706729889,-0.763327121734619,0.256013512611389,-0.593117833137512,-0.83356511592865,0.151306793093681,-0.531296014785767,-0.487142086029053,-0.529320001602173,0.694631516933441,-0.52774965763092,-0.48685947060585,0.696023225784302,-0.476965337991714,-0.496216118335724,0.725447177886963,-0.43075293302536,-0.539663434028625,0.723336338996887,0.054091427475214,0.983429670333862,0.173032313585281,0.126584455370903,0.984432458877563,0.121939294040203,0.128492936491966,0.991703271865845,-0.00378054426982999,0.0582190789282322,0.997067928314209,0.0496595688164234,0.104762002825737,0.951818287372589,0.288213610649109,0.0486882030963898,0.963113784790039,0.264653146266937,0.0561745464801788,0.944885730743408,0.322545081377029,0.109102018177509,0.933438658714294,0.341744273900986,0.0240602791309357,0.938909947872162,0.343321055173874,0.00276505970396101,0.954054594039917,0.299620240926743,-0.0120784789323807,0.955276250839233,0.295468032360077,0.010386542417109,0.940131843090057,0.340652912855148,0.151560559868813,0.922681570053101,0.354525297880173,0.121420994400978,0.936410784721375,0.329229116439819,0.145687058568001,0.927334308624268,0.344712138175964,0.181294962763786,0.907557129859924,0.378777205944061,0.0924868360161781,0.923595726490021,0.372044682502747,0.0745768919587135,0.931338608264923,0.356436192989349,0.0628024637699127,0.93413120508194,0.351361274719238,0.0809370800852776,0.926492393016815,0.367506563663483,0.0041062836535275,0.923636972904205,0.383246779441833, +0.0504285767674446,0.92766147851944,0.370001524686813,0.0690114796161652,0.946881890296936,0.314089596271515,0.0250221230089664,0.943125545978546,0.33149391412735,0.065539188683033,0.900208413600922,0.430499166250229,0.0328220650553703,0.91121643781662,0.410618185997009,0.0559292659163475,0.911744713783264,0.406931906938553,0.0861826315522194,0.903163075447083,0.4205581843853,0.0257804840803146,0.908761143684387,0.416519552469254,0.000187516212463379,0.906072854995728,0.423121750354767,-0.0271284729242325,0.90475070476532,0.425076723098755,-0.000938460230827332,0.907383918762207,0.420301824808121,0.0230888351798058,0.91342294216156,0.406356424093246,0.060293972492218,0.914668440818787,0.399682611227036,0.0227258671075106,0.913756191730499,0.405626893043518,-0.0144269615411758,0.91115939617157,0.411801367998123,0.0328112430870533,0.851352989673615,0.52356630563736,0.0706063359975815,0.857235074043274,0.510061502456665,0.0121091101318598,0.89726310968399,0.441330134868622,-0.0270015224814415,0.893140852451324,0.448965847492218,-0.0427822209894657,0.890170335769653,0.453615069389343,-0.0635827332735062,0.895533502101898,0.440428256988525,-0.0460001528263092,0.896591007709503,0.440464168787003,-0.0263509005308151,0.893212556838989,0.448861956596375,-0.0644043907523155,0.894107580184937,0.443197190761566,-0.0632639974355698,0.895588099956512,0.440363138914108,-0.0619370639324188,0.896693766117096,0.438296973705292,-0.0627115294337273,0.894518613815308,0.44261035323143,-0.0518395006656647,0.898372769355774,0.436164110898972,-0.0289040803909302,0.900897145271301,0.433069199323654,-0.0509409457445145,0.89704829454422,0.438986718654633,-0.0740882605314255,0.894393146038055,0.441102862358093,-0.0985645577311516,0.883934378623962,0.457105040550232,-0.0612421035766602,0.837842702865601,0.542465627193451,-0.0338188372552395,0.843168437480927,0.536584794521332,-0.070934034883976,0.887886583805084,0.454561084508896,-0.099738672375679,0.884027481079102,0.456670224666595,-0.115504764020443,0.884968757629395,0.451097428798676,-0.131135731935501,0.885251104831696,0.446244150400162, +-0.114903934299946,0.881922900676727,0.457175225019455,-0.131072714924812,0.885260105133057,0.446244746446609,-0.132602870464325,0.882091641426086,0.452029705047607,-0.134611204266548,0.881368041038513,0.452846944332123,-0.13325871527195,0.885569095611572,0.444982677698135,-0.134343460202217,0.881415784358978,0.452833533287048,-0.0993078052997589,0.887443602085114,0.450090974569321,-0.134453192353249,0.881727755069733,0.452193200588226,-0.169074803590775,0.873897969722748,0.455758929252625,0.316547721624374,-0.84601616859436,-0.429015457630157,0.309847414493561,-0.846533954143524,-0.432868152856827,0.332330316305161,-0.788953244686127,-0.516826152801514,0.339243233203888,-0.788209319114685,-0.513458907604218,-0.987654507160187,-0.0473644658923149,0.14931583404541,-0.928418636322021,0.0312537625432014,0.370219051837921,-0.986609816551208,-0.0578398182988167,0.152498006820679,-0.989500999450684,-0.119151189923286,-0.0817974731326103,-0.183851554989815,0.883929312229156,0.429962515830994,-0.158505976200104,0.885549247264862,0.436667591333389,-0.183573976159096,0.876462936401367,0.445099204778671,-0.208812803030014,0.872054278850555,0.442627042531967,0.332421839237213,-0.739908456802368,-0.584834337234497,0.389799416065216,-0.772943019866943,-0.500615298748016,0.448622405529022,-0.753941297531128,-0.479906857013702,0.392996460199356,-0.722199022769928,-0.569194495677948,-0.226728141307831,0.864992558956146,0.447640717029572,-0.128017142415047,0.879491567611694,0.458373665809631,-0.0269365422427654,0.895992815494537,0.443250894546509,-0.126875296235085,0.891196668148041,0.435512542724609,0.277470797300339,-0.869108557701111,-0.409463703632355,0.262804061174393,-0.871887028217316,-0.41321536898613,0.247179478406906,-0.878253757953644,-0.409356564283371,0.262319654226303,-0.873759031295776,-0.409553080797195,0.386763274669647,-0.777737677097321,-0.495518088340759,0.357978016138077,-0.835372686386108,-0.41713809967041,0.353202611207962,-0.836464703083038,-0.41901633143425,0.381439864635468,-0.781057000160217,-0.494422554969788, +0.290472656488419,-0.8684161901474,-0.401844710111618,0.310813695192337,-0.862285852432251,-0.399822384119034,0.291179805994034,-0.866921663284302,-0.404550641775131,0.270347774028778,-0.873399019241333,-0.405075639486313,0.30032205581665,-0.865212738513947,-0.401514172554016,0.297702670097351,-0.864850878715515,-0.404235243797302,0.294666439294815,-0.865637242794037,-0.404776483774185,0.296957850456238,-0.866903603076935,-0.400367736816406,0.293357580900192,-0.865912199020386,-0.40513888001442,0.300340443849564,-0.864349484443665,-0.403355419635773,0.313161790370941,-0.845893025398254,-0.431734681129456,0.305891156196594,-0.848355054855347,-0.432116091251373,0.402103960514069,-0.779354274272919,-0.480540722608566,0.385037124156952,-0.83176988363266,-0.399881780147552,0.398319453001022,-0.830047905445099,-0.390335917472839,0.415440618991852,-0.780566394329071,-0.4670390188694,0.333038628101349,-0.868239223957062,-0.367758095264435,0.346402853727341,-0.86251163482666,-0.368888676166534,0.333220273256302,-0.867984473705292,-0.368194699287415,0.319796979427338,-0.873518884181976,-0.367007941007614,0.341956436634064,-0.866389095783234,-0.363917320966721,0.337683886289597,-0.86413711309433,-0.373144209384918,0.334016770124435,-0.860633969306946,-0.384372293949127,0.339147657155991,-0.861672461032867,-0.377490937709808,0.33697634935379,-0.860028743743896,-0.383141756057739,0.329066127538681,-0.865656137466431,-0.37729948759079,0.349247187376022,-0.837171137332916,-0.420916825532913,0.354359269142151,-0.83614718914032,-0.418673455715179,0.561849057674408,-0.723726511001587,-0.400681346654892,0.562051892280579,-0.736599624156952,-0.376189589500427,0.521340250968933,-0.780753016471863,-0.344425976276398,0.531316637992859,-0.755706429481506,-0.382897615432739,0.371370583772659,-0.872217535972595,-0.318309038877487,0.354617118835449,-0.868173182010651,-0.347163021564484,0.325128138065338,-0.876599609851837,-0.354774415493011,0.341349631547928,-0.882018685340881,-0.324843645095825,0.353376030921936,-0.872744143009186,-0.336813122034073, +0.361443519592285,-0.867132425308228,-0.342695325613022,0.360933870077133,-0.863600015640259,-0.352025270462036,0.353808552026749,-0.868160605430603,-0.348018079996109,0.362829715013504,-0.863249361515045,-0.350934833288193,0.365818500518799,-0.86643248796463,-0.339811325073242,0.399149984121323,-0.82990825176239,-0.389784127473831,0.39324215054512,-0.830192565917969,-0.395146578550339,0.567628562450409,-0.722184479236603,-0.395281374454498,0.549913883209229,-0.752137839794159,-0.363157659769058,0.56913822889328,-0.730332314968109,-0.377751708030701,0.577240943908691,-0.71339362859726,-0.397318989038467,0.603547334671021,-0.71778392791748,-0.34715548157692,0.593230843544006,-0.728623926639557,-0.342322081327438,0.59072470664978,-0.729415476322174,-0.344960242509842,0.607637226581573,-0.709537029266357,-0.356839150190353,0.337165027856827,-0.904813885688782,-0.26006093621254,0.359613984823227,-0.884822130203247,-0.296255975961685,0.346143156290054,-0.893296480178833,-0.286716669797897,0.322786420583725,-0.912833213806152,-0.250089108943939,0.361467778682709,-0.891211986541748,-0.274011671543121,0.358817934989929,-0.884922802448273,-0.296919822692871,0.385208040475845,-0.870011270046234,-0.307726174592972,0.390307009220123,-0.874414801597595,-0.288200169801712,0.383931934833527,-0.870226740837097,-0.30870994925499,0.36671906709671,-0.883878946304321,-0.290301948785782,0.398578554391861,-0.856035113334656,-0.329149335622787,0.429940283298492,-0.824443936347961,-0.368026733398438,0.44866481423378,-0.83204984664917,-0.326179355382919,0.459275662899017,-0.817834496498108,-0.346717268228531,0.419249594211578,-0.853139281272888,-0.310456603765488,0.400502681732178,-0.871870756149292,-0.281849533319473,0.42150616645813,-0.852779388427734,-0.308382898569107,0.460073411464691,-0.817731618881226,-0.345900893211365,0.480784118175507,-0.788968086242676,-0.382591038942337,0.448890864849091,-0.821033716201782,-0.352704912424088,0.498266279697418,-0.785770535469055,-0.366463363170624,0.474143385887146,-0.815727472305298,-0.33132591843605, +0.510263204574585,-0.780282855033875,-0.361649513244629,0.526117861270905,-0.756590962409973,-0.388291090726852,-0.708552122116089,-0.389807969331741,0.588220775127411,-0.691049098968506,-0.439646601676941,0.573726534843445,-0.68605637550354,-0.481892466545105,0.545074582099915,-0.703835248947144,-0.439309924840927,0.558231890201569,0.628536283969879,-0.699157953262329,-0.340764403343201,0.623231887817383,-0.70503431558609,-0.338391363620758,0.615126311779022,-0.713732659816742,-0.334970772266388,0.612336337566376,-0.716685593128204,-0.333775490522385,0.610155761241913,-0.713832139968872,-0.343734979629517,0.618062734603882,-0.704669594764709,-0.348481297492981,0.597515940666199,-0.728026509284973,-0.336083680391312,0.607322871685028,-0.717081069946289,-0.341984927654266,0.602570116519928,-0.727260947227478,-0.328634917736053,0.62296849489212,-0.705017805099487,-0.338910341262817,0.640004277229309,-0.685634136199951,-0.346843600273132,0.606463134288788,-0.723208844661713,-0.33041125535965,0.557301759719849,-0.749544024467468,-0.357209384441376,0.564417719841003,-0.742000460624695,-0.361756771802902,0.530251979827881,-0.777904629707336,-0.337190002202988,0.517410635948181,-0.790278673171997,-0.328246802091599,0.526101887226105,-0.778468489646912,-0.342350423336029,0.557943284511566,-0.742316067218781,-0.371034055948257,0.567489266395569,-0.73060554265976,-0.379699379205704,0.549611985683441,-0.752200961112976,-0.363483816385269,0.587978601455688,-0.726814746856689,-0.354995101690292,0.575334548950195,-0.741239547729492,-0.34576603770256,0.598897814750671,-0.713793992996216,-0.363069713115692,0.59433376789093,-0.719357252120972,-0.359572947025299,0.66759991645813,-0.67948579788208,-0.304317951202393,0.637298762798309,-0.709740102291107,-0.300198793411255,0.629838228225708,-0.717099785804749,-0.298448950052261,0.662209451198578,-0.685308873653412,-0.303035408258438,0.628279030323029,-0.715991139411926,-0.304338961839676,0.635795593261719,-0.709150493144989,-0.304745018482208,0.613922595977783,-0.729430675506592,-0.301711738109589, +0.602987110614777,-0.739069581031799,-0.300304591655731,0.60689514875412,-0.727762222290039,-0.319437682628632,0.628599286079407,-0.706187009811401,-0.325826525688171,0.634427726268768,-0.700424075126648,-0.326967239379883,0.617806613445282,-0.717166721820831,-0.322470128536224,0.6693354845047,-0.692211329936981,-0.269876956939697,0.639460265636444,-0.720984399318695,-0.266968548297882,0.640023291110992,-0.718894422054291,-0.271221309900284,0.668060898780823,-0.691909432411194,-0.27378112077713,0.640239179134369,-0.719203412532806,-0.26988959312439,0.638222634792328,-0.719716668128967,-0.273276001214981,0.610521793365479,-0.742618024349213,-0.275284945964813,0.610186040401459,-0.743863940238953,-0.272652804851532,0.607888638973236,-0.740915417671204,-0.28550985455513,0.635924875736237,-0.717355966567993,-0.284605115652084,0.632595658302307,-0.719034075737,-0.287772059440613,0.606888294219971,-0.740788221359253,-0.287957429885864,0.60734623670578,-0.727875590324402,-0.318320065736771,0.564287602901459,-0.765649914741516,-0.308803617954254,0.548823893070221,-0.780187964439392,-0.300165116786957,0.599493443965912,-0.737464368343353,-0.311053097248077,0.543466508388519,-0.778843522071838,-0.313124448060989,0.556714653968811,-0.764867722988129,-0.324108123779297,0.500508964061737,-0.811206519603729,-0.302381724119186,0.475722044706345,-0.831378996372223,-0.287223935127258,0.497633546590805,-0.811204552650452,-0.307096302509308,0.551930129528046,-0.764269590377808,-0.33356449007988,0.563564717769623,-0.749699473381042,-0.346908569335938,0.519420146942139,-0.790117204189301,-0.325449794530869,0.607974588871002,-0.740971684455872,-0.285180360078812,0.552656829357147,-0.784472286701202,-0.281378388404846,0.549795806407928,-0.787974774837494,-0.277164787054062,0.60868114233017,-0.742439806461334,-0.279804289340973,0.54688560962677,-0.786381483078003,-0.287263631820679,0.548724234104156,-0.783051788806915,-0.292799711227417,0.470736384391785,-0.838610053062439,-0.274117916822433,0.460520625114441,-0.846150517463684,-0.268235296010971, +0.469226181507111,-0.83834832906723,-0.277487128973007,0.546286642551422,-0.782128930091858,-0.299742132425308,0.546804845333099,-0.779696404933929,-0.305087178945541,0.477581471204758,-0.83155620098114,-0.283602178096771,0.390152007341385,-0.881742119789124,-0.265164822340012,0.422502428293228,-0.857892036437988,-0.292425841093063,0.355362296104431,-0.902128458023071,-0.244707897305489,0.310650438070297,-0.927330553531647,-0.208697348833084,0.359075516462326,-0.901818454265594,-0.240391939878464,0.421692252159119,-0.857919931411743,-0.293511837720871,0.449411064386368,-0.831980466842651,-0.325328141450882,0.399229466915131,-0.872039079666138,-0.283132195472717,0.461021095514297,-0.830753207206726,-0.311943769454956,0.430303037166595,-0.857541799545288,-0.281889319419861,0.489071220159531,-0.811054706573486,-0.320935815572739,0.507298111915588,-0.790943622589111,-0.34213587641716,0.273376494646072,-0.953001439571381,-0.130589783191681,0.283124297857285,-0.933522820472717,-0.219944909214973,0.22806304693222,-0.941357374191284,-0.248663753271103,0.220929488539696,-0.961799263954163,-0.161655381321907,0.276720881462097,-0.939794659614563,-0.200528472661972,0.296496540307999,-0.932551920413971,-0.206001788377762,0.333401829004288,-0.905214071273804,-0.263497471809387,0.314290463924408,-0.913684666156769,-0.257685601711273,0.345032870769501,-0.903897404670715,-0.252827972173691,0.301029205322266,-0.932141304016113,-0.20123153924942,0.350462347269058,-0.902491450309753,-0.250370711088181,0.387416422367096,-0.873456954956055,-0.294926285743713,0.154677867889404,-0.979085266590118,-0.132162600755692,0.191106051206589,-0.968354821205139,-0.160522669553757,0.168731182813644,-0.975062966346741,-0.144159585237503,0.126979619264603,-0.985550165176392,-0.112103186547756,0.212339356541634,-0.973206520080566,-0.088210828602314,0.195590123534203,-0.968412399291992,-0.154667049646378,0.269662618637085,-0.953418254852295,-0.135187864303589,0.293629080057144,-0.952998161315918,-0.0746759474277496,0.240066930651665,-0.955531358718872,-0.171253651380539, +0.204024985432625,-0.968377709388733,-0.143591403961182,0.277708321809769,-0.939355254173279,-0.201221153140068,0.302290827035904,-0.92750209569931,-0.21990966796875,0.466986864805222,-0.837941229343414,-0.282449513673782,0.378596901893616,-0.892238855361938,-0.246118187904358,0.358757346868515,-0.903219819068909,-0.235557466745377,0.457841068506241,-0.845379054546356,-0.27516496181488,0.3559350669384,-0.902825355529785,-0.241281405091286,0.3747838139534,-0.891950845718384,-0.252904891967773,0.279347121715546,-0.939385175704956,-0.198798507452011,0.250454813241959,-0.950857520103455,-0.182050243020058,0.281787097454071,-0.939414858818054,-0.19518181681633,0.374797701835632,-0.891952037811279,-0.252880245447159,0.390241116285324,-0.881744980812073,-0.265024065971375,0.307377189397812,-0.927419364452362,-0.213102117180824,0.060249749571085,-0.996253311634064,-0.062043309211731,0.0838328301906586,-0.987298548221588,-0.134958580136299,0.0251732915639877,-0.986525416374207,-0.161659866571426,0.0126242060214281,-0.99541711807251,-0.0947919487953186,0.0718314349651337,-0.993446052074432,-0.0889112949371338,0.0980922132730484,-0.988952100276947,-0.111138373613358,0.148270428180695,-0.978799104690552,-0.141309335827827,0.121896229684353,-0.985377669334412,-0.11904751509428,0.153920203447342,-0.979057729244232,-0.133246466517448,0.10158783942461,-0.989241600036621,-0.105266347527504,0.193038135766983,-0.967058002948761,-0.165937259793282,0.243989527225494,-0.950439095497131,-0.192703410983086,0.429312616586685,-0.868642926216125,-0.247285485267639,0.311816960573196,-0.924266815185547,-0.220229491591454,0.255818098783493,-0.944369673728943,-0.206695437431335,0.383229076862335,-0.892708241939545,-0.23708102107048,0.256136387586594,-0.944514811038971,-0.205635577440262,0.310960233211517,-0.92403519153595,-0.222402170300484,0.187872916460037,-0.966254591941833,-0.17622734606266,0.129321396350861,-0.979075789451599,-0.157119750976563,0.193809032440186,-0.96716719865799,-0.164395198225975,0.31128603219986,-0.924123883247375,-0.221576645970345, +0.355808049440384,-0.90280669927597,-0.241538107395172,0.246514186263084,-0.95061981678009,-0.188554495573044,0.596976280212402,-0.766630709171295,-0.236424833536148,0.532238304615021,-0.811267375946045,-0.24200764298439,0.495513260364532,-0.83493435382843,-0.239481270313263,0.56836324930191,-0.788757026195526,-0.23414871096611,0.494820237159729,-0.833706200122833,-0.245126485824585,0.530662417411804,-0.809837579727173,-0.250121027231216,0.430420875549316,-0.869174599647522,-0.243461400270462,0.38330602645874,-0.892774164676666,-0.236708521842957,0.427666246891022,-0.86783367395401,-0.252915918827057,0.526907205581665,-0.80634331703186,-0.26866227388382,0.549984633922577,-0.788076341152191,-0.276500940322876,0.462668716907501,-0.846739768981934,-0.262620270252228,0.631953716278076,-0.725561439990997,-0.272387772798538,0.629155457019806,-0.744468569755554,-0.223450303077698,0.604139566421509,-0.747122883796692,-0.277169525623322,0.610719084739685,-0.722249329090118,-0.32462003827095,0.606332182884216,-0.762803912162781,-0.224703505635262,0.629052639007568,-0.744149804115295,-0.224797636270523,0.597537577152252,-0.767589032649994,-0.231853157281876,0.568482637405396,-0.789244830608368,-0.232207328081131,0.594536364078522,-0.762523531913757,-0.255116432905197,0.626825273036957,-0.737703323364258,-0.250766903162003,0.642857730388641,-0.72298538684845,-0.253033846616745,0.613292634487152,-0.746772646903992,-0.257299184799194,0.149185955524445,-0.970099270343781,-0.191444396972656,0.207731157541275,-0.957643091678619,-0.19941845536232,0.0726533308625221,-0.983551442623138,-0.165372386574745,0.0128201395273209,-0.98778247833252,-0.155311241745949,0.0756399258971214,-0.984801650047302,-0.156346932053566,0.208043679594994,-0.957852780818939,-0.198080733418465,0.255469053983688,-0.944209337234497,-0.207856237888336,0.124974057078362,-0.97784286737442,-0.167943432927132,0.25510510802269,-0.944040894508362,-0.20906500518322,0.207282930612564,-0.957339406013489,-0.201333254575729,0.343038558959961,-0.911925315856934,-0.2252037525177, +0.384561389684677,-0.893836259841919,-0.230584859848022,0.543584883213043,-0.81528651714325,-0.199558258056641,0.463829457759857,-0.85990309715271,-0.213140815496445,0.418089836835861,-0.882058322429657,-0.217195719480515,0.507711946964264,-0.837143301963806,-0.203518256545067,0.418092459440231,-0.881951510906219,-0.217623889446259,0.463674396276474,-0.859271943569183,-0.216004133224487,0.343642771244049,-0.912746489048004,-0.220915645360947,0.290142327547073,-0.931157767772675,-0.220822870731354,0.342728972434998,-0.911501348018646,-0.2273810505867,0.462886095046997,-0.856183469295502,-0.229535117745399,0.496472507715225,-0.836636781692505,-0.231417149305344,0.384560346603394,-0.893835365772247,-0.230590045452118,-0.0806924253702164,-0.990951716899872,-0.107254877686501,-0.0239576194435358,-0.991340577602386,-0.129112049937248,-0.0499521046876907,-0.99162757396698,-0.11907796561718,-0.107728771865368,-0.989482760429382,-0.096532329916954,-0.0199365373700857,-0.998651385307312,-0.0479386709630489,0.00477777002379298,-0.998315572738647,-0.0578216016292572,0.0524460822343826,-0.995554208755493,-0.0782387778162956,0.0264803115278482,-0.997344434261322,-0.0678454339504242,0.0284752883017063,-0.991415500640869,-0.127610936760902,-0.0157867483794689,-0.993929266929626,-0.108882993459702,0.0783452838659286,-0.985858261585236,-0.148140713572502,0.12520894408226,-0.977912783622742,-0.167360305786133,0.590439200401306,-0.786479294300079,-0.181195706129074,0.583677530288696,-0.787831008434296,-0.196578443050385,0.554421424865723,-0.810045778751373,-0.190900072455406,0.562033474445343,-0.8082674741745,-0.175562769174576,0.554781019687653,-0.808923006057739,-0.194581031799316,0.583375513553619,-0.78982675075531,-0.189332544803619,0.543592095375061,-0.815056681632996,-0.200475230813026,0.50791609287262,-0.836221218109131,-0.206773906946182,0.543637096881866,-0.810641288757324,-0.217530354857445,0.584087014198303,-0.784590423107147,-0.207991391420364,0.606669425964355,-0.767751574516296,-0.206178769469261,0.569416642189026,-0.793315291404724,-0.215442702174187, +-0.221846953034401,-0.968038976192474,-0.116981238126755,-0.158220767974854,-0.978589475154877,-0.131639212369919,-0.186533063650131,-0.974349498748779,-0.125891000032425,-0.24830661714077,-0.962262451648712,-0.1113321185112,-0.178393095731735,-0.979388177394867,-0.0947346016764641,-0.15114164352417,-0.983151853084564,-0.102804154157639,-0.0856852531433105,-0.988749623298645,-0.122605890035629,-0.11387687176466,-0.986865401268005,-0.114581033587456,-0.0903218239545822,-0.986459195613861,-0.136895209550858,-0.155116185545921,-0.980710506439209,-0.118936382234097,-0.0574287101626396,-0.987634301185608,-0.145878523588181,0.0107093900442123,-0.986477017402649,-0.163549438118935,0.223771199584007,-0.952528536319733,-0.206436231732368,0.0768492743372917,-0.9755859375,-0.20573353767395,0.00573841854929924,-0.977414608001709,-0.211253196001053,0.152867287397385,-0.964602470397949,-0.21488045156002,0.00584308337420225,-0.980078935623169,-0.198522314429283,0.0776615962386131,-0.977507352828979,-0.196081891655922,-0.062781885266304,-0.982330143451691,-0.176311850547791,-0.131487444043159,-0.975459933280945,-0.176604047417641,-0.0603906735777855,-0.984826505184174,-0.162695616483688,0.0780258774757385,-0.978343605995178,-0.191717877984047,0.148587003350258,-0.969454944133759,-0.195138618350029,0.00949276611208916,-0.985691666603088,-0.168291017413139,-0.200537517666817,-0.960178792476654,-0.194528892636299,-0.292731791734695,-0.940661251544952,-0.171652898192406,-0.355964779853821,-0.917147517204285,-0.179247319698334,-0.269832134246826,-0.941263556480408,-0.203011095523834,-0.356060832738876,-0.916332006454468,-0.183184057474136,-0.29219976067543,-0.94186794757843,-0.165844157338142,-0.314791262149811,-0.939342796802521,-0.136167377233505,-0.378627002239227,-0.912724792957306,-0.153541877865791,-0.314815372228622,-0.939304649829865,-0.136375412344933,-0.289821624755859,-0.946625769138336,-0.141078695654869,-0.227863997220993,-0.961659729480743,-0.15260623395443,-0.255034148693085,-0.955560266971588,-0.147858425974846,0.453567028045654,-0.874650835990906,-0.171063661575317, +0.356730103492737,-0.91318142414093,-0.197087347507477,0.291334122419357,-0.932631075382233,-0.212894141674042,0.398236721754074,-0.898159384727478,-0.186325907707214,0.290524750947952,-0.934021472930908,-0.20784455537796,0.356500238180161,-0.913827478885651,-0.194491550326347,0.223822325468063,-0.950814127922058,-0.214140623807907,0.153683930635452,-0.962188005447388,-0.224890202283859,0.223851919174194,-0.949468970298767,-0.219998151063919,0.357809662818909,-0.909950792789459,-0.209670588374138,0.417946040630341,-0.885695457458496,-0.202149897813797,0.290586918592453,-0.932454109191895,-0.214682370424271,0.526653945446014,-0.832685470581055,-0.171086326241493,0.51298576593399,-0.840308725833893,-0.175290942192078,0.468706339597702,-0.862430155277252,-0.191125005483627,0.485227584838867,-0.854351282119751,-0.186113208532333,0.464035451412201,-0.868876814842224,-0.172407045960426,0.509412169456482,-0.846319139003754,-0.15570256114006,0.454288721084595,-0.873323082923889,-0.175865292549133,0.400017559528351,-0.895650804042816,-0.194411337375641,0.457458883523941,-0.866932809352875,-0.197886124253273,0.513880908489227,-0.838682055473328,-0.180385082960129,0.552251815795898,-0.816116988658905,-0.170209035277367,0.50648832321167,-0.842030823230743,-0.185616910457611,0.33962470293045,-0.926345467567444,-0.16290856897831,0.395356267690659,-0.90843003988266,-0.135825231671333,0.328577727079391,-0.92939293384552,-0.1681237667799,0.266242921352386,-0.943639278411865,-0.196620687842369,0.338091820478439,-0.919759273529053,-0.19934119284153,0.407687872648239,-0.896860063076019,-0.171559736132622,0.458240807056427,-0.876063883304596,-0.150091797113419,0.396008551120758,-0.901148796081543,-0.176375389099121,0.460972040891647,-0.872781217098236,-0.160492599010468,0.41141077876091,-0.892957091331482,-0.182671651244164,0.427946388721466,-0.886682748794556,-0.175087884068489,0.476656585931778,-0.865686476230621,-0.152923360466957,0.0782319232821465,-0.972817957401276,-0.217956781387329,-0.0657598972320557,-0.970300376415253,-0.232793793082237, +-0.139994204044342,-0.958992302417755,-0.246445462107658,0.00166202685795724,-0.971938490867615,-0.235229194164276,-0.142267003655434,-0.962744951248169,-0.2299614995718,-0.066795788705349,-0.973865270614624,-0.217082440853119,-0.200918823480606,-0.956784069538116,-0.210228323936462,-0.269060015678406,-0.937582910060883,-0.220329225063324,-0.200570747256279,-0.959909737110138,-0.195818319916725,-0.0671860724687576,-0.975157380104065,-0.211078837513924,0.00580366281792521,-0.979091942310333,-0.203335359692574,-0.132855907082558,-0.972668945789337,-0.190432772040367,-0.342861413955688,-0.906405568122864,-0.246728777885437,-0.425596535205841,-0.87478369474411,-0.231562122702599,-0.498866438865662,-0.831205368041992,-0.245418265461922,-0.422252029180527,-0.867684364318848,-0.262349039316177,-0.505456745624542,-0.844549477100372,-0.176776260137558,-0.426377177238464,-0.878186225891113,-0.216775491833687,-0.445919811725616,-0.859139204025269,-0.251068890094757,-0.517966389656067,-0.828794658184052,-0.21168477833271,-0.447996020317078,-0.872876465320587,-0.193355426192284,-0.42697075009346,-0.880954802036285,-0.203996673226357,-0.356444716453552,-0.912167370319366,-0.202232167124748,-0.380257546901703,-0.90487802028656,-0.19131101667881,0.140145927667618,-0.966747403144836,-0.213912695646286,0.21424375474453,-0.957301080226898,-0.194099068641663,0.0802803263068199,-0.969635903835297,-0.231000691652298,0.00454565091058612,-0.968837678432465,-0.247654691338539,0.0810801237821579,-0.968338370323181,-0.236107707023621,0.218837529420853,-0.952175796031952,-0.213240325450897,0.288249105215073,-0.937722206115723,-0.193880423903465,0.153259247541428,-0.96346253156662,-0.219662547111511,0.289439857006073,-0.935823261737823,-0.201145380735397,0.220748007297516,-0.949895799160004,-0.221287578344345,0.334394454956055,-0.923677504062653,-0.187083721160889,0.393984735012054,-0.903727650642395,-0.167489051818848,0.182660892605782,-0.971312642097473,-0.152271956205368,0.243549540638924,-0.962646007537842,-0.118305779993534,0.174164950847626,-0.970307469367981,-0.167839512228966, +0.106992483139038,-0.973124980926514,-0.203912854194641,0.183565959334373,-0.965104162693024,-0.186755150556564,0.257571667432785,-0.955585062503815,-0.143227100372314,0.317694932222366,-0.941325187683105,-0.113916516304016,0.250043332576752,-0.955621421337128,-0.155775710940361,0.327400714159012,-0.93513810634613,-0.135371878743172,0.265055775642395,-0.951424598693848,-0.156642019748688,0.275457352399826,-0.95170271396637,-0.135592296719551,0.337799191474915,-0.93426901102066,-0.11416307091713,-0.0809865519404411,-0.965093553066254,-0.249069511890411,-0.216356545686722,-0.9358269572258,-0.278240442276001,-0.297136694192886,-0.906946122646332,-0.298594415187836,-0.163916870951653,-0.947789490222931,-0.273543953895569,-0.300627768039703,-0.909774601459503,-0.286239713430405,-0.219380348920822,-0.939231514930725,-0.264038860797882,-0.340399980545044,-0.901630043983459,-0.26681661605835,-0.417988955974579,-0.862425923347473,-0.285493820905685,-0.342424899339676,-0.905566394329071,-0.250389367341995,-0.221188396215439,-0.941192269325256,-0.255407094955444,-0.141222611069679,-0.961046874523163,-0.237581759691238,-0.268296122550964,-0.934033393859863,-0.235794082283974,-0.487004846334457,-0.813818514347076,-0.317057847976685,-0.558669447898865,-0.771902501583099,-0.30340588092804,-0.620119094848633,-0.714588761329651,-0.323751866817474,-0.553720891475677,-0.760326027870178,-0.339555114507675,-0.619649469852448,-0.714145064353943,-0.325624704360962,-0.558718621730804,-0.771967053413391,-0.303150922060013,-0.576174795627594,-0.767626047134399,-0.280665338039398,-0.638603091239929,-0.707125604152679,-0.303577750921249,-0.585975050926208,-0.782042145729065,-0.212234377861023,-0.562961459159851,-0.777521371841431,-0.280241042375565,-0.502187013626099,-0.837819218635559,-0.214166253805161,-0.522148132324219,-0.84039843082428,-0.1452307254076,-0.0377860702574253,-0.975253582000732,-0.21783672273159,0.0468923859298229,-0.979483604431152,-0.19599249958992,-0.0793395489454269,-0.96383410692215,-0.254419207572937,-0.164134934544563,-0.947914659976959,-0.272979080677032, +-0.0789584293961525,-0.963538408279419,-0.255654752254486,0.0510721802711487,-0.977145552635193,-0.206344842910767,0.1326714605093,-0.972667872905731,-0.190566778182983,0.00348095595836639,-0.970002174377441,-0.243071526288986,0.136172071099281,-0.969980359077454,-0.20148292183876,0.0568108782172203,-0.973721861839294,-0.220541268587112,0.170666500926018,-0.972115814685822,-0.160822212696075,0.244190126657486,-0.959384560585022,-0.141253367066383,0.0526662170886993,-0.969645261764526,-0.238776937127113,0.115721739828587,-0.975711464881897,-0.18599945306778,0.0415472686290741,-0.968136548995972,-0.246952384710312,-0.0233986955136061,-0.954021275043488,-0.29882401227951,0.0418549068272114,-0.968014657497406,-0.247377693653107,0.119163081049919,-0.974469423294067,-0.190288126468658,0.179936975240707,-0.972440004348755,-0.148267701268196,0.107182532548904,-0.973038256168365,-0.204226762056351,0.196162760257721,-0.965339362621307,-0.172162935137749,0.134487047791481,-0.968544244766235,-0.209369048476219,0.145347386598587,-0.97074031829834,-0.19114775955677,0.207954928278923,-0.966038227081299,-0.153378024697304,-0.185371562838554,-0.932586908340454,-0.30970823764801,-0.113660335540771,-0.958992838859558,-0.259642511606216,-0.239676013588905,-0.919491946697235,-0.311592668294907,-0.30954122543335,-0.881100654602051,-0.357555627822876,-0.241239428520203,-0.920202076435089,-0.308272033929825,-0.115329660475254,-0.959558725357056,-0.256800144910812,-0.0364647321403027,-0.974699854850769,-0.22052375972271,-0.163139894604683,-0.947341084480286,-0.275554478168488,-0.027937613427639,-0.97091269493103,-0.237798511981964,-0.10360474139452,-0.955367267131805,-0.276657521724701,0.0141841787844896,-0.977833390235901,-0.208903789520264,0.085959866642952,-0.981834530830383,-0.16915063560009,-0.593857288360596,-0.689895927906036,-0.413977324962616,-0.49949523806572,-0.764647126197815,-0.407209187746048,-0.436423063278198,-0.817978322505951,-0.374761819839478,-0.538018524646759,-0.749175190925598,-0.386358141899109,-0.428999900817871,-0.814194738864899,-0.391211152076721, +-0.486832946538925,-0.759858965873718,-0.430822759866714,-0.372492760419846,-0.835991501808167,-0.402948319911957,-0.309346437454224,-0.881030261516571,-0.357897460460663,-0.370766341686249,-0.83552360534668,-0.405503064393997,-0.480145066976547,-0.757162690162659,-0.44290566444397,-0.524534404277802,-0.702466428279877,-0.481045305728912,-0.420954942703247,-0.787981748580933,-0.449312657117844,-0.238960236310959,-0.919163048267365,-0.313109159469604,-0.365700751543045,-0.86444890499115,-0.344950705766678,-0.434519112110138,-0.817027270793915,-0.379024565219879,-0.312554955482483,-0.882173895835876,-0.352248072624207,-0.441945314407349,-0.820658326148987,-0.362221509218216,-0.37016749382019,-0.867362558841705,-0.332653403282166,-0.480710178613663,-0.807847440242767,-0.341028153896332,-0.545045256614685,-0.754280805587769,-0.36604118347168,-0.485247313976288,-0.812174677848816,-0.323894411325455,-0.373998731374741,-0.869770109653473,-0.321908235549927,-0.297805398702621,-0.907496750354767,-0.296245992183685,-0.414732098579407,-0.85828173160553,-0.302241116762161,-0.687516272068024,-0.634877324104309,-0.352494239807129,-0.670583128929138,-0.647119462490082,-0.362704634666443,-0.613383591175079,-0.708180487155914,-0.349629789590836,-0.63012707233429,-0.69840282201767,-0.339371979236603,-0.613466680049896,-0.708260059356689,-0.349322885274887,-0.66757869720459,-0.644996523857117,-0.371911555528641,-0.605630099773407,-0.696187496185303,-0.385402619838715,-0.546923637390137,-0.755615174770355,-0.360444635152817,-0.597544193267822,-0.691905796527863,-0.405225157737732,-0.658951759338379,-0.63881242275238,-0.397116303443909,-0.700683236122131,-0.577300727367401,-0.419245690107346,-0.644124150276184,-0.632705628871918,-0.429869592189789,-0.848362565040588,0.104340180754662,-0.519031882286072,-0.868388295173645,0.0701274052262306,-0.490901231765747,-0.890379667282104,0.0442380718886852,-0.45306396484375,-0.872584700584412,0.0791671350598335,-0.482004880905151,-0.917530238628387,-0.049458310008049,-0.394578456878662,-0.920520544052124,-0.0794336646795273,-0.382534176111221, +-0.914041519165039,-0.0567914545536041,-0.401625275611877,-0.910538077354431,-0.0261351652443409,-0.412598431110382,-0.950528502464294,-0.238915488123894,-0.198532402515411,-0.944617748260498,-0.248926371335983,-0.213853180408478,-0.944732546806335,-0.25051748752594,-0.211474716663361,-0.950980424880981,-0.239845603704453,-0.195218801498413,-0.937562108039856,-0.328714102506638,-0.113686010241508,-0.938006281852722,-0.327984154224396,-0.112119637429714,-0.943917989730835,-0.31563138961792,-0.0969308763742447,-0.943298101425171,-0.316784620285034,-0.099177323281765,-0.908451199531555,-0.417161405086517,0.0263209939002991,-0.906296253204346,-0.421225965023041,0.0345793478190899,-0.907685935497284,-0.416213274002075,0.0535989850759506,-0.910132765769958,-0.411798000335693,0.0456169247627258,-0.835252165794373,-0.521061897277832,0.175636887550354,-0.832351684570313,-0.524512231349945,0.179102599620819,-0.82468855381012,-0.539850652217865,0.168671622872353,-0.828579425811768,-0.534133911132813,0.167801067233086,-0.708583533763885,-0.660041511058807,0.249508813023567,-0.709323346614838,-0.661258816719055,0.244125604629517,-0.693697452545166,-0.69219708442688,0.199115857481956,-0.693110287189484,-0.692128598690033,0.201385691761971,-0.546230256557465,-0.791347146034241,0.274594664573669,-0.544007480144501,-0.792393743991852,0.275985389947891,-0.541679739952087,-0.79359644651413,0.277106046676636,-0.543799161911011,-0.792728662490845,0.275433897972107,-0.388054221868515,-0.836858451366425,0.386111080646515,-0.386753112077713,-0.836697220802307,0.387762606143951,-0.392104804515839,-0.822956800460815,0.411091178655624,-0.393693506717682,-0.822995781898499,0.409491717815399,-0.118650801479816,-0.827043116092682,0.549474060535431,-0.122347839176655,-0.835186660289764,0.536184847354889,-0.12867134809494,-0.835266590118408,0.534577906131744,-0.1248714402318,-0.827309608459473,0.547691583633423,0.0766163095831871,-0.79579496383667,0.600699961185455,0.0715632140636444,-0.804385185241699,0.589782416820526,0.0644808262586594,-0.80581670999527,0.588643968105316, +0.069589301943779,-0.797276377677917,0.599589645862579,0.263079255819321,-0.726789653301239,0.634481072425842,0.261503547430038,-0.74245673418045,0.616744577884674,0.256416320800781,-0.744466185569763,0.616458356380463,0.258142411708832,-0.728714644908905,0.634300768375397,0.440270274877548,-0.625534951686859,0.644102573394775,0.441611737012863,-0.637024283409119,0.631806373596191,0.440401196479797,-0.63800060749054,0.631666123867035,0.439095318317413,-0.626237452030182,0.64422196149826,0.616278111934662,-0.536328494548798,0.576674103736877,0.613883316516876,-0.528040766716003,0.5867879986763,0.613219738006592,-0.528202414512634,0.587336242198944,0.615687072277069,-0.53653872013092,0.577109754085541,0.787183940410614,-0.38339227437973,0.483065009117126,0.782437026500702,-0.397631019353867,0.479251384735107,0.776088118553162,-0.404379069805145,0.483906030654907,0.781015276908875,-0.390504777431488,0.487361550331116,0.895348489284515,-0.216411650180817,0.389252066612244,0.896787643432617,-0.221015319228172,0.383306920528412,0.897215843200684,-0.22131934762001,0.382127732038498,0.895603895187378,-0.215911865234375,0.38894185423851,0.974635243415833,-0.0595750510692596,0.215724319219589,0.970972537994385,-0.0494574308395386,0.234022155404091,0.969559073448181,-0.0514835119247437,0.239384055137634,0.973315954208374,-0.0614571198821068,0.221086278557777,0.994844257831573,0.0807653516530991,0.0613340698182583,0.994264245033264,0.0840022936463356,0.0661982372403145,0.994123697280884,0.0843104124069214,0.0678953006863594,0.994837403297424,0.0802501738071442,0.062117014080286,0.973012447357178,0.219137221574783,-0.0722894966602325,0.972797453403473,0.219742655754089,-0.0733366832137108,0.9725421667099,0.220612406730652,-0.0741067007184029,0.972774624824524,0.219897881150246,-0.0731740370392799,0.953062355518341,0.274332225322723,-0.128117471933365,0.949360191822052,0.282820165157318,-0.136850342154503,0.952176928520203,0.280067294836044,-0.122153528034687,0.955563127994537,0.27253931760788,-0.112345345318317,0.892354547977448,0.398928284645081,-0.211091935634613, +0.871223211288452,0.426165342330933,-0.243625208735466,0.885820925235748,0.427619338035583,-0.180174872279167,0.905397295951843,0.398323565721512,-0.146949931979179,0.830029845237732,-0.467778652906418,0.303700178861618,0.846570909023285,-0.435779362916946,0.305637300014496,0.889382898807526,-0.364070862531662,0.276496797800064,0.883019804954529,-0.38773775100708,0.264453053474426,0.970095157623291,-0.172195836901665,0.171067237854004,0.976330637931824,-0.14186891913414,0.163253515958786,0.987392604351044,-0.0777980759739876,0.1378523260355,0.986750781536102,-0.0934073328971863,0.132657468318939,0.995337605476379,-0.0923729762434959,-0.0277567580342293,0.989841759204865,-0.0983158051967621,-0.102700307965279,0.981085300445557,-0.0621341392397881,-0.183333531022072,0.991149663925171,-0.010396215133369,-0.132341995835304,0.737383723258972,-0.575468778610229,0.353696227073669,0.792998313903809,-0.509368777275085,0.334211528301239,0.785555243492126,-0.530853986740112,0.317957788705826,0.721565544605255,-0.602481007575989,0.341115564107895,0.96417236328125,-0.0534252263605595,-0.259841352701187,0.964461326599121,-0.0856831222772598,-0.249945774674416,0.961704671382904,-0.00524509698152542,-0.274037599563599,0.558241188526154,-0.69056224822998,0.459881007671356,0.505410075187683,-0.745630383491516,0.434276551008224,0.506144225597382,-0.719644606113434,0.47532057762146,0.568046808242798,-0.657255887985229,0.495315611362457,0.573809325695038,-0.728233575820923,0.374724984169006,0.571861326694489,-0.7298344373703,0.374588280916214,0.695041537284851,-0.611325085163116,0.378416299819946,0.574760913848877,-0.731724202632904,0.366373747587204,0.559870719909668,-0.795298218727112,0.232476994395256,0.572122931480408,-0.815769374370575,0.0848275199532509,0.577893972396851,-0.783479928970337,0.22846807539463,0.322780340909958,-0.802455604076385,0.501874446868896,0.343327820301056,-0.794595241546631,0.500743865966797,0.259319424629211,-0.823395192623138,0.504751324653625,0.23057895898819,-0.831640183925629,0.505181312561035,0.4067143201828,-0.746147572994232,0.527112185955048, +0.414343565702438,-0.755038917064667,0.508168995380402,0.343758970499039,-0.796161592006683,0.497952222824097,0.320509791374207,-0.792709171772003,0.518541693687439,0.453457206487656,-0.840899050235748,0.29540690779686,0.508226573467255,-0.827200353145599,0.239677488803864,0.408850371837616,-0.861431002616882,0.301293939352036,0.386441171169281,-0.851339161396027,0.354802578687668,0.563499569892883,-0.7575563788414,0.329509943723679,0.576194047927856,-0.737220942974091,0.352853834629059,0.524474322795868,-0.758026838302612,0.387713879346848,0.509718716144562,-0.779269635677338,0.364589989185333,0.258976131677628,-0.822208881378174,0.50685703754425,0.158492892980576,-0.848105728626251,0.505565702915192,0.127160415053368,-0.854201436042786,0.504152953624725,0.230328321456909,-0.830684125423431,0.506865501403809,0.126867845654488,-0.853170335292816,0.5059694647789,0.158010020852089,-0.846499741077423,0.508400440216064,0.0540800355374813,-0.864249885082245,0.500147640705109,0.0215752311050892,-0.867948114871979,0.496186047792435,0.426215440034866,-0.806922674179077,0.408921033143997,0.441584944725037,-0.79386168718338,0.418074637651443,0.377632558345795,-0.817894220352173,0.434099793434143,0.35363695025444,-0.833682000637054,0.424164116382599,0.302521347999573,-0.862626791000366,0.405408293008804,0.30750173330307,-0.864387989044189,0.3978391289711,0.199535399675369,-0.893183350563049,0.403000235557556,0.202980741858482,-0.890214741230011,0.407819509506226,0.268306463956833,-0.854628086090088,0.444547683000565,0.296538263559341,-0.840783476829529,0.452933073043823,0.195800855755806,-0.865303575992584,0.461423456668854,0.167367681860924,-0.876956582069397,0.450483471155167,0.0886288434267044,-0.879276096820831,0.467994123697281,-0.0164260938763618,-0.886265337467194,0.462886482477188,-0.0415071211755276,-0.89156037569046,0.450995832681656,0.0613243989646435,-0.886739790439606,0.458183467388153,0.102363958954811,-0.923371016979218,0.370010226964951,0.0853598341345787,-0.90834105014801,0.409426748752594,-0.0270331688225269,-0.892132163047791,0.450965195894241, +-0.00853854417800903,-0.911559700965881,0.411079287528992,0.021665258333087,-0.868248164653778,0.495656758546829,0.054251991212368,-0.864802241325378,0.499173134565353,-0.0478078536689281,-0.872617483139038,0.486058920621872,-0.0811172425746918,-0.872923851013184,0.481065630912781,-0.0839889198541641,-0.863414585590363,0.497454583644867,-0.0483255684375763,-0.870986819267273,0.488923966884613,-0.148789525032043,-0.876923501491547,0.457019448280334,-0.182892441749573,-0.867283701896667,0.463000506162643,-0.289258241653442,-0.858991086483002,0.42245015501976,-0.266255706548691,-0.85107034444809,0.452534347772598,-0.381521195173264,-0.811873555183411,0.441931128501892,-0.394788593053818,-0.820785224437714,0.412860542535782,-0.149356812238693,-0.875209867954254,0.460109084844589,-0.264925718307495,-0.855337381362915,0.445210486650467,-0.289731025695801,-0.85751211643219,0.425122410058975,-0.179155841469765,-0.879001200199127,0.441882610321045,-0.477619975805283,-0.793517708778381,0.377105891704559,-0.469673424959183,-0.79731822013855,0.379065185785294,-0.56010502576828,-0.756046414375305,0.3386390209198,-0.562687873840332,-0.75419670343399,0.338481485843658,-0.379560619592667,-0.818970561027527,0.430373221635818,-0.469692796468735,-0.79725456237793,0.379175186157227,-0.480275094509125,-0.783991456031799,0.393310576677322,-0.399469345808029,-0.803172945976257,0.441969960927963,-0.125230222940445,-0.881159663200378,0.455933213233948,-0.245246276259422,-0.867364227771759,0.433051526546478,-0.260719150304794,-0.868048787117004,0.422512620687485,-0.146738260984421,-0.882980406284332,0.445885002613068,-0.121566355228424,-0.893236815929413,0.432839304208755,-0.141527533531189,-0.884832739830017,0.443893045186996,-0.262634932994843,-0.855127096176147,0.446968138217926,-0.245598077774048,-0.866163671016693,0.435249656438828,-0.6548952460289,-0.697718739509583,0.29034611582756,-0.654743015766144,-0.699048459529877,0.287476688623428,-0.738198041915894,-0.634061992168427,0.230280488729477,-0.738665163516998,-0.632503688335419,0.233051300048828, +-0.560201406478882,-0.755728781223297,0.339188128709793,-0.655000388622284,-0.698210895061493,0.288922309875488,-0.654715478420258,-0.698304533958435,0.289341330528259,-0.562630772590637,-0.754387855529785,0.338150262832642,-0.374074697494507,-0.83686900138855,0.399647802114487,-0.365894943475723,-0.837137043476105,0.406598806381226,-0.466836631298065,-0.801741600036621,0.373194247484207,-0.467721879482269,-0.803550064563751,0.368162244558334,-0.806943774223328,-0.563038468360901,0.178408727049828,-0.803667068481445,-0.569163620471954,0.17370131611824,-0.856100380420685,-0.503533601760864,0.116387963294983,-0.859773814678192,-0.496377885341644,0.119991958141327,-0.738260328769684,-0.633866429328918,0.230618819594383,-0.804503798484802,-0.566601514816284,0.178147599101067,-0.80657297372818,-0.564177811145782,0.176475569605827,-0.738264203071594,-0.633750855922699,0.230923756957054,-0.36233451962471,-0.849029302597046,0.3845294713974,-0.382238745689392,-0.827637195587158,0.410986721515656,-0.483898222446442,-0.766792058944702,0.421749234199524,-0.469994127750397,-0.789546072483063,0.394617140293121,-0.559992611408234,-0.756415009498596,0.338000863790512,-0.562686920166016,-0.75402307510376,0.338869661092758,-0.659120082855225,-0.693755209445953,0.290283530950546,-0.655182659626007,-0.697612941265106,0.289951652288437,-0.903442323207855,-0.423350512981415,0.0675745457410812,-0.902249097824097,-0.425969421863556,0.0670584812760353,-0.936350703239441,-0.350780934095383,0.0141492336988449,-0.936307430267334,-0.350798636674881,0.0163945835083723,-0.856514394283295,-0.502337217330933,0.118492148816586,-0.90245532989502,-0.425362914800644,0.0681232661008835,-0.902793049812317,-0.425235629081726,0.0643380433320999,-0.85846483707428,-0.500156044960022,0.113499365746975,-0.575915157794952,-0.667799890041351,0.471556067466736,-0.574127316474915,-0.694319248199463,0.433933913707733,-0.667698800563812,-0.649686396121979,0.363436251878738,-0.670168220996857,-0.624272704124451,0.401445150375366,-0.740251421928406,-0.627358496189117,0.241762697696686, +-0.742443382740021,-0.625077486038208,0.240948081016541,-0.806584358215332,-0.558793783187866,0.192798465490341,-0.806901931762695,-0.558759570121765,0.191565066576004,-0.958272576332092,-0.283266007900238,-0.0383955575525761,-0.958945691585541,-0.280764222145081,-0.0399333909153938,-0.974662065505981,-0.205827564001083,-0.087573230266571,-0.974103450775146,-0.209435775876045,-0.0852009281516075,-0.936154425144196,-0.351241409778595,0.0156368762254715,-0.935800433158875,-0.352346241474152,0.0113936215639114,-0.958894968032837,-0.280902832746506,-0.040177259594202,-0.95899498462677,-0.281257271766663,-0.0349712111055851,-0.747906267642975,-0.599457502365112,0.285108715295792,-0.74877542257309,-0.588742673397064,0.304495722055435,-0.810518860816956,-0.507315754890442,0.292728364467621,-0.814637780189514,-0.513019740581512,0.270510733127594,-0.861008524894714,-0.487997382879257,0.143257722258568,-0.85986316204071,-0.489826679229736,0.143892616033554,-0.9066441655159,-0.411916345357895,0.0912209153175354,-0.906649827957153,-0.411826312541962,0.0915707349777222,-0.975283145904541,-0.064943328499794,-0.211199775338173,-0.976794600486755,-0.154952526092529,-0.147858411073685,-0.978598892688751,-0.150034084916115,-0.140833243727684,-0.976705372333527,-0.0555708296597004,-0.207264646887779,-0.973363816738129,-0.209281951189041,-0.0936169847846031,-0.978664636611938,-0.149871185421944,-0.140549525618553,-0.980301856994629,-0.146052896976471,-0.132954671978951,-0.974324226379395,-0.208824306726456,-0.0841711834073067,-0.867668807506561,-0.382350981235504,0.317739844322205,-0.860845923423767,-0.420357674360275,0.286781877279282,-0.909593224525452,-0.358233600854874,0.210496827960014,-0.915066182613373,-0.322410464286804,0.242292270064354,-0.941014766693115,-0.336012721061707,0.0398331582546234,-0.941677868366241,-0.334453761577606,0.0371952652931213,-0.965720415115356,-0.259361416101456,-0.0107671925798059,-0.965008497238159,-0.262113124132156,-0.00744568556547165,-0.950844824314117,-0.274136155843735,0.144026055932045,-0.946557343006134,-0.287540584802628,0.146115273237228, +-0.971650898456573,-0.206668376922607,0.114816710352898,-0.975178241729736,-0.191056162118912,0.111915543675423,-0.570477664470673,-0.819078385829926,-0.0605471953749657,-0.575977861881256,-0.797893643379211,-0.177807107567787,-0.533047139644623,-0.813946843147278,-0.230979219079018,-0.528604567050934,-0.840470254421234,-0.119109213352203,-0.980201661586761,-0.189141511917114,-0.0585688874125481,-0.98054963350296,-0.185806676745415,-0.0632331296801567,-0.987051486968994,-0.124470829963684,-0.101175665855408,-0.987265229225159,-0.125336602330208,-0.0979697704315186,-0.519138932228088,-0.770852863788605,0.369162231683731,-0.60142970085144,-0.708151578903198,0.36986979842186,-0.461476862430573,-0.782759606838226,0.417524307966232,-0.446395635604858,-0.799458384513855,0.401991754770279,-0.991009771823883,-0.108065344393253,0.0788765177130699,-0.987489342689514,-0.115378804504871,0.107483580708504,-0.997474253177643,-0.0472021140158176,0.0530778616666794,-0.998122811317444,-0.0534090027213097,0.0299743041396141,0.762603461742401,0.405017137527466,-0.504377841949463,0.759951531887054,0.392508387565613,-0.518083810806274,0.767745614051819,0.366317242383957,-0.52571713924408,0.770877957344055,0.378836184740067,-0.512084364891052,0.681621670722961,0.365722298622131,-0.633750140666962,0.693460285663605,0.33436194062233,-0.638212263584137,0.69631439447403,0.347203254699707,-0.628169000148773,0.6850865483284,0.377430021762848,-0.623059511184692,-0.370358973741531,-0.466264337301254,0.803387761116028,-0.370872259140015,-0.466184794902802,0.803197085857391,-0.37190318107605,-0.458834767341614,0.806944072246552,-0.371348977088928,-0.45896965265274,0.807122588157654,0.819538772106171,0.507448136806488,-0.266181528568268,0.840475976467133,0.474338293075562,-0.26192232966423,0.838860034942627,0.482029646635056,-0.252905935049057,0.8180330991745,0.514725089073181,-0.256671160459518,0.858296513557434,0.50687700510025,-0.0800170302391052,0.887129127979279,0.457161575555801,-0.0632873550057411,0.885648965835571,0.461065202951431,-0.0551800653338432, +0.856592178344727,0.51097846031189,-0.0717697665095329,0.846973657608032,0.504961907863617,0.166280642151833,0.850880086421967,0.501204550266266,0.157471492886543,0.868050932884216,0.468207120895386,0.165135383605957,0.86413300037384,0.472343981266022,0.173681482672691,0.852701306343079,0.467293202877045,0.233532890677452,0.855752468109131,0.464337468147278,0.228207379579544,0.864881753921509,0.444480538368225,0.233273953199387,0.861759006977081,0.44777649641037,0.238469183444977,0.848896741867065,0.446831881999969,0.282339364290237,0.848066926002502,0.446687966585159,0.285048186779022,0.853369235992432,0.424704313278198,0.302303075790405,0.854150414466858,0.425216138362885,0.299363315105438,0.943112015724182,0.232589289546013,0.237575098872185,0.946000337600708,0.226657763123512,0.231753304600716,0.950470447540283,0.18865230679512,0.247014969587326,0.947712779045105,0.194583728909492,0.252938032150269,0.966081976890564,0.130421981215477,0.222880467772484,0.965038061141968,0.130871444940567,0.227099910378456,0.963078141212463,0.10340778529644,0.248570919036865,0.964197635650635,0.104074589908123,0.243908882141113,0.956414043903351,0.0873636826872826,0.278639048337936,0.959940850734711,0.0767601802945137,0.26948407292366,0.960285365581512,0.0381231009960175,0.276403218507767,0.957082152366638,0.0489280596375465,0.285656988620758,0.967002868652344,-0.0182256028056145,0.254113048315048,0.963849604129791,-0.0143213886767626,0.266062170267105,0.953815698623657,-0.0447199009358883,0.297045022249222,0.957292973995209,-0.0486317873001099,0.2850002348423,0.925042867660522,-0.0389164946973324,0.377863883972168,0.924151360988617,-0.040839422494173,0.37983763217926,0.915747821331024,-0.0703452676534653,0.395547032356262,0.916106581687927,-0.0704064518213272,0.394704669713974,0.936423420906067,-0.201653644442558,0.28713583946228,0.945255219936371,-0.171131983399391,0.277860552072525,0.945034861564636,-0.168134748935699,0.280428171157837,0.93639075756073,-0.198257923126221,0.289596557617188,0.853633165359497,-0.236323088407516,0.464178800582886, +0.868367552757263,-0.205640435218811,0.451275765895844,0.869633734226227,-0.206498205661774,0.448436975479126,0.855025112628937,-0.236908569931984,0.461309492588043,0.808064699172974,-0.187808036804199,0.558354377746582,0.807060599327087,-0.185765504837036,0.56048595905304,0.796214163303375,-0.214073106646538,0.565876245498657,0.797143399715424,-0.216220587491989,0.563747465610504,0.650113940238953,-0.250163227319717,0.71747487783432,0.657557904720306,-0.211273118853569,0.723174393177032,0.650072872638702,-0.202664434909821,0.732347190380096,0.643052220344543,-0.240929991006851,0.726936459541321,0.608919084072113,-0.260434061288834,0.749260783195496,0.611616313457489,-0.254256337881088,0.749185740947723,0.61359316110611,-0.249698147177696,0.749102413654327,0.608559370040894,-0.260225504636765,0.749625384807587,-0.514810621738434,-0.857242822647095,-0.0102430740371346,-0.56588739156723,-0.821770071983337,-0.0668255910277367,-0.565966486930847,-0.82142972946167,-0.0702509433031082,-0.513099849224091,-0.858200192451477,-0.014871733263135,-0.541472911834717,-0.702816188335419,-0.461363762617111,-0.564951717853546,-0.740854918956757,-0.36326801776886,-0.613917112350464,-0.726753294467926,-0.308116048574448,-0.589363694190979,-0.698991715908051,-0.40504452586174,-0.630552351474762,-0.537823259830475,-0.559597969055176,-0.606819212436676,-0.628801286220551,-0.48618870973587,-0.609755456447601,-0.640100836753845,-0.467406868934631,-0.62609738111496,-0.573239684104919,-0.528581500053406,-0.588319540023804,-0.699331402778625,-0.405974984169006,-0.608875334262848,-0.64038473367691,-0.468164712190628,-0.610850751399994,-0.627546966075897,-0.482748597860336,-0.586920738220215,-0.690084457397461,-0.42344731092453,-0.445301413536072,-0.844215452671051,0.298340409994125,-0.529194355010986,-0.819847524166107,0.218639731407166,-0.541206240653992,-0.821716845035553,0.178542047739029,-0.478739857673645,-0.841384172439575,0.250760406255722,0.191642045974731,-0.0710524022579193,-0.978889644145966,0.194467753171921,-0.0707810446619987,-0.978351831436157, +0.19726750254631,-0.0702854469418526,-0.977826952934265,0.194457456469536,-0.0706863328814507,-0.978360772132874,-0.432485163211823,-0.890410900115967,0.141862854361534,-0.512779653072357,-0.849926710128784,0.121167615056038,-0.500221788883209,-0.860637545585632,0.0952958166599274,-0.414244711399078,-0.902287125587463,0.119496151804924,-0.632972240447998,-0.477927684783936,-0.609041392803192,-0.650987148284912,-0.401763051748276,-0.644051373004913,-0.656979143619537,-0.394058704376221,-0.642725646495819,-0.640056550502777,-0.459472417831421,-0.615802526473999,-0.59712165594101,-0.581390917301178,-0.552657604217529,-0.608354806900024,-0.484003216028214,-0.629003465175629,-0.601545989513397,-0.468527972698212,-0.647011518478394,-0.592820167541504,-0.54783308506012,-0.590290784835815,-0.679679334163666,-0.394546270370483,-0.618360161781311,-0.794348359107971,-0.294173181056976,-0.531481862068176,-0.880719184875488,-0.253422111272812,-0.400138944387436,-0.786547780036926,-0.352683842182159,-0.506909132003784,0.735024809837341,-0.596492052078247,0.322390824556351,0.723613262176514,-0.575877547264099,0.380458861589432,0.667901754379272,-0.585697114467621,0.459201693534851,0.674300253391266,-0.614801406860352,0.409070312976837,-0.729667365550995,0.62308394908905,-0.281694799661636,-0.727004170417786,0.625628590583801,-0.28293788433075,-0.729624271392822,0.623307704925537,-0.281311184167862,-0.732284367084503,0.620708048343658,-0.280144870281219,-0.540179252624512,-0.804909110069275,0.245617210865021,-0.62298595905304,-0.761547386646271,0.178700879216194,-0.56368362903595,-0.794036448001862,0.22752334177494,-0.431586444377899,-0.809997320175171,0.397035956382751,-0.448118269443512,-0.792330801486969,0.41400745511055,-0.463538110256195,-0.773831248283386,0.431645184755325,-0.469886422157288,-0.783968687057495,0.40570929646492,-0.214398205280304,-0.907099723815918,0.362220495939255,-0.240196079015732,-0.886874675750732,0.394663244485855,-0.332245886325836,-0.88795417547226,0.318040907382965,-0.308250159025192,-0.907792687416077,0.284419178962708, +-0.0288430601358414,-0.885156989097595,0.464397788047791,-0.0474472753703594,-0.88008588552475,0.472438007593155,-0.145948573946953,-0.887396931648254,0.43729367852211,-0.126843020319939,-0.89358514547348,0.430600106716156,-0.278009802103043,-0.831676661968231,0.480650335550308,-0.375599533319473,-0.814614832401276,0.441959053277969,-0.363143444061279,-0.82151073217392,0.439598679542542,-0.259852319955826,-0.838729441165924,0.478549748659134,0.153792694211006,-0.839206337928772,0.521613538265228,0.140879690647125,-0.83632105588913,0.529830276966095,0.0460211932659149,-0.859682083129883,0.508752226829529,0.0633102878928185,-0.862549602985382,0.501996040344238,-0.297971844673157,-0.740324735641479,0.602604508399963,-0.328665465116501,-0.719825565814972,0.611416459083557,-0.420355081558228,-0.707172095775604,0.568514943122864,-0.392388701438904,-0.727733731269836,0.56252533197403,-0.0822530910372734,-0.832254350185394,0.548258483409882,-0.183519929647446,-0.833748519420624,0.520753264427185,-0.16465337574482,-0.838053524494171,0.52014946937561,-0.0637897178530693,-0.835310637950897,0.546065032482147,0.345191419124603,-0.764903664588928,0.543842971324921,0.339268505573273,-0.765478909015656,0.546753227710724,0.238957241177559,-0.804078102111816,0.544387519359589,0.244931548833847,-0.804000437259674,0.541841387748718,-0.0860060378909111,-0.820064127445221,0.5657719373703,-0.0942566245794296,-0.856621563434601,0.507262587547302,-0.215866014361382,-0.816741645336151,0.535102844238281,-0.198190361261368,-0.77715539932251,0.597285747528076,0.120449379086494,-0.800841450691223,0.586638748645782,0.0171857532113791,-0.819509983062744,0.572807192802429,0.0317732878029346,-0.819323003292084,0.572451233863831,0.128457993268967,-0.801143407821655,0.584523558616638,0.533867001533508,-0.659064590930939,0.529735684394836,0.522347569465637,-0.665798425674438,0.532790303230286,0.436217933893204,-0.716257154941559,0.544692277908325,0.444884538650513,-0.71205061674118,0.543195962905884,0.0945129096508026,-0.732797026634216,0.673851549625397, +-0.012900099158287,-0.769891023635864,0.638045012950897,0.00485003739595413,-0.780751645565033,0.624822676181793,0.101903155446053,-0.745161771774292,0.659052193164825,0.322791516780853,-0.737202167510986,0.593581199645996,0.224078059196472,-0.772555708885193,0.594093084335327,0.227379634976387,-0.771351099014282,0.594403922557831,0.328394591808319,-0.734955370426178,0.593294024467468,0.66697084903717,-0.55647349357605,0.495466589927673,0.597593605518341,-0.613438487052917,0.516309201717377,0.608907163143158,-0.603984534740448,0.514232218265533,0.676281690597534,-0.547620117664337,0.492702007293701,0.310329496860504,-0.702824056148529,0.640104651451111,0.301663488149643,-0.69423121213913,0.653484642505646,0.213651031255722,-0.738021373748779,0.640060782432556,0.216085404157639,-0.749640762805939,0.625576436519623,0.500522494316101,-0.650148391723633,0.571650564670563,0.417301625013351,-0.696699500083923,0.58349734544754,0.426770687103271,-0.690226852893829,0.584340453147888,0.513056099414825,-0.640921771526337,0.570957779884338,0.794474720954895,-0.424747467041016,0.434050142765045,0.733387649059296,-0.494594067335129,0.466389715671539,0.740853548049927,-0.485063821077347,0.46459573507309,0.802566170692444,-0.412939667701721,0.430544465780258,0.48757392168045,-0.655719220638275,0.576458215713501,0.405978679656982,-0.700466871261597,0.586964666843414,0.41663384437561,-0.694923043251038,0.586087226867676,0.499802142381668,-0.648331165313721,0.574338376522064,0.648705661296844,-0.548094749450684,0.527989685535431,0.577331066131592,-0.603976905345917,0.549455046653748,0.589342653751373,-0.591921269893646,0.549822270870209,0.659007251262665,-0.536131203174591,0.527515649795532,0.896545946598053,-0.275357514619827,0.346963614225388,0.892444491386414,-0.28859931230545,0.346775650978088,0.848899841308594,-0.358778685331345,0.388132572174072,0.855928421020508,-0.342305362224579,0.387574017047882,0.645678341388702,-0.577771186828613,0.499279499053955,0.572799444198608,-0.631853938102722,0.522169947624207,0.582910895347595,-0.617792248725891,0.52777624130249, +0.655212640762329,-0.563575744628906,0.503069460391998,0.779481291770935,-0.423089623451233,0.461956948041916,0.718218564987183,-0.490267783403397,0.493760764598846,0.726471662521362,-0.476872354745865,0.494804739952087,0.787896335124969,-0.407914280891418,0.461330056190491,0.956982254981995,-0.139105170965195,0.254626601934433,0.957739949226379,-0.14421372115612,0.248870968818665,0.92875212430954,-0.219853490591049,0.298469454050064,0.929468035697937,-0.211316391825676,0.302381575107574,0.799630761146545,-0.478818655014038,0.362385898828506,0.729243874549866,-0.539703726768494,0.420622527599335,0.727578639984131,-0.512573182582855,0.455958545207977,0.794096887111664,-0.458898335695267,0.398525178432465,0.88166218996048,-0.284091144800186,0.37678137421608,0.835107326507568,-0.358233630657196,0.417449921369553,0.842110991477966,-0.340819656848907,0.417960584163666,0.885553121566772,-0.270075410604477,0.377961754798889,0.902155816555023,-0.330433815717697,0.277359753847122,0.852380394935608,-0.400029569864273,0.336784720420837,0.845784664154053,-0.38470733165741,0.36965999007225,0.894975304603577,-0.319314926862717,0.311540216207504,0.952572703361511,-0.132163271307945,0.274113237857819,0.92243367433548,-0.212513566017151,0.322419106960297,0.922945201396942,-0.20318803191185,0.326935410499573,0.951728940010071,-0.126132309436798,0.279826104640961,0.962668538093567,-0.162498816847801,0.216479659080505,0.966659188270569,-0.15749491751194,0.20190441608429,0.938279688358307,-0.244774788618088,0.244369775056839,0.93415641784668,-0.246555477380753,0.257996708154678,0.989386916160583,0.0166644621640444,0.144346460700035,0.98294472694397,-0.0810016542673111,0.165101304650307,0.982424557209015,-0.110063746571541,0.150758028030396,0.991707921028137,0.00543224439024925,0.128397330641747,-0.998659908771515,0.0282984003424644,-0.0433323346078396,-0.99637895822525,0.0188868511468172,-0.0828995630145073,-0.997613430023193,-0.0690321624279022,0.00138639996293932,-0.997866213321686,-0.0554223135113716,0.0345172099769115,-0.210988163948059,0.290203154087067,-0.933416426181793, +-0.278562277555466,0.303945988416672,-0.911054253578186,-0.306853979825974,0.277653068304062,-0.910356760025024,-0.240182280540466,0.265212893486023,-0.933795809745789,-0.234406590461731,0.395911544561386,-0.887866854667664,-0.182359576225281,0.3371661901474,-0.923614621162415,-0.178960710763931,0.333698093891144,-0.92553699016571,-0.22943127155304,0.389886558055878,-0.891823887825012,-0.234240859746933,0.39605501294136,-0.887846708297729,-0.229251354932785,0.390041351318359,-0.891802549362183,-0.303438395261765,0.464428305625916,-0.832004427909851,-0.309219539165497,0.471002042293549,-0.82616001367569,-0.43600395321846,0.458306223154068,-0.774503588676453,-0.426322877407074,0.46428981423378,-0.776327192783356,-0.506866753101349,0.483341872692108,-0.713769495487213,-0.507525861263275,0.476284205913544,-0.718032658100128,-0.539620935916901,0.595829129219055,-0.594808280467987,-0.607493340969086,0.42867311835289,-0.668723702430725,-0.676708817481995,0.239432126283646,-0.696230947971344,-0.670890390872955,0.414484590291977,-0.61490535736084,-0.621533989906311,0.0335988104343414,-0.782666385173798,-0.61316978931427,0.0235184133052826,-0.789601027965546,-0.571611762046814,0.0506432503461838,-0.818959951400757,-0.583780229091644,0.0590942203998566,-0.809758305549622,0.152335986495018,0.254419505596161,-0.955020666122437,0.0843965038657188,0.162006407976151,-0.983174085617065,0.036811251193285,0.170166686177254,-0.984727501869202,0.104983933269978,0.261675119400024,-0.959429323673248,0.18563324213028,0.375334799289703,-0.90811014175415,0.140707045793533,0.335433632135391,-0.931496620178223,0.101948574185371,0.341092735528946,-0.934485018253326,0.147081881761551,0.382460236549377,-0.91219025850296,0.134842649102211,0.38996696472168,-0.910902500152588,0.151091784238815,0.396230638027191,-0.905633747577667,0.166344925761223,0.3936707675457,-0.904075682163239,0.150215521454811,0.388821482658386,-0.908984661102295,0.179544344544411,0.349039345979691,-0.919747531414032,0.183797180652618,0.369111210107803,-0.911029934883118,0.186079546809196,0.369446933269501,-0.910430371761322, +0.182015061378479,0.350782096385956,-0.918598115444183,0.104277223348618,0.279855489730835,-0.954362213611603,0.110839262604713,0.319114506244659,-0.941212356090546,0.115541711449623,0.322833806276321,-0.939376711845398,0.108593828976154,0.280824065208435,-0.95359593629837,0.269103735685349,0.266287237405777,-0.925567090511322,0.281085044145584,0.265845030546188,-0.922126710414886,0.291735798120499,0.315847128629684,-0.902845919132233,0.280849546194077,0.301030486822128,-0.911320090293884,0.620330393314362,0.106820367276669,-0.777032613754272,0.380464792251587,0.148025751113892,-0.912871837615967,0.339142829179764,0.0981762781739235,-0.935598015785217,0.614445447921753,0.0624002143740654,-0.786487817764282,0.624728381633759,0.321280837059021,-0.71168327331543,0.632333040237427,0.357939213514328,-0.687047719955444,0.636275589466095,0.320945858955383,-0.701532065868378,0.638206422328949,0.283625423908234,-0.715715885162354,0.627945065498352,0.309825122356415,-0.713928163051605,0.626709580421448,0.321197599172592,-0.709977030754089,0.626071870326996,0.332647234201431,-0.705251693725586,0.632090032100677,0.322942465543747,-0.704393684864044,-0.506159007549286,-0.504360675811768,0.699588000774384,-0.577713131904602,-0.475292086601257,0.663585066795349,-0.593255519866943,-0.524190604686737,0.610959947109222,-0.536283433437347,-0.537099301815033,0.651094913482666,-0.711080849170685,-0.285337269306183,0.642609357833862,-0.752253472805023,-0.180547893047333,0.633653879165649,-0.812452435493469,0.11628170311451,0.571313977241516,-0.78305184841156,-0.0683644488453865,0.618187844753265,-0.774379432201385,0.144550576806068,0.615988373756409,-0.709429442882538,-0.172879368066788,0.683244228363037,-0.741179168224335,-0.0851168781518936,0.665889322757721,-0.779863297939301,0.29281085729599,0.553240537643433,-0.800034701824188,-0.0869465544819832,0.59362006187439,-0.797255873680115,-0.188361555337906,0.573500573635101,-0.743339538574219,-0.431990057229996,0.510716140270233,-0.757572174072266,-0.375575035810471,0.533879935741425,-0.622114956378937,-0.412837386131287,0.665235638618469, +-0.554158508777618,-0.477816164493561,0.681615889072418,-0.558331727981567,-0.449937492609024,0.697009384632111,-0.606762886047363,-0.387999206781387,0.693754553794861,-0.862938284873962,0.00503289699554443,0.505284309387207,-0.921007513999939,0.141331106424332,0.363002270460129,-0.937767207622528,0.153615146875381,0.311440467834473,-0.877552509307861,0.0305261760950089,0.478507936000824,-0.925665080547333,0.183346301317215,0.330950647592545,-0.916092038154602,0.150341764092445,0.37171596288681,-0.938052594661713,0.27555638551712,0.210062235593796,-0.94248366355896,0.295015841722488,0.15713170170784,-0.974385738372803,0.189521849155426,0.121053591370583,-0.924810886383057,0.134121179580688,0.356000542640686,-0.847838759422302,0.0868465676903725,0.523093819618225,-0.932157576084137,0.180850118398666,0.313648819923401,-0.606371164321899,-0.459012389183044,0.6493239402771,-0.67171448469162,-0.395874947309494,0.626165151596069,-0.705132126808167,-0.325732797384262,0.629830896854401,-0.580061316490173,-0.469433963298798,0.665703117847443,-0.699363529682159,-0.319530844688416,0.639367461204529,-0.665081560611725,-0.391450792551041,0.635950267314911,-0.722946047782898,-0.289143979549408,0.627490878105164,-0.795309364795685,-0.0787466764450073,0.601067364215851,-0.720494747161865,-0.288359314203262,0.630663394927979,-0.676783323287964,-0.399261593818665,0.618509948253632,-0.603228509426117,-0.530551433563232,0.595508694648743,-0.627659738063812,-0.485170662403107,0.608812630176544,-0.60784500837326,-0.337966561317444,0.718542397022247,-0.601884961128235,-0.367624133825302,0.708933711051941,-0.66214245557785,-0.355261743068695,0.659815549850464,-0.685520589351654,-0.319840282201767,0.654036700725555,-0.118156604468822,0.40361562371254,-0.907267093658447,-0.138330280780792,0.431465625762939,-0.891460657119751,-0.159927383065224,0.443179488182068,-0.882051765918732,-0.143920794129372,0.408142179250717,-0.90150249004364,-0.636309087276459,-0.417317897081375,0.6488116979599,-0.581979393959045,-0.395037591457367,0.710806131362915, +-0.543295860290527,-0.474060773849487,0.69288957118988,-0.595310807228088,-0.49720960855484,0.631179571151733,-0.537876188755035,-0.453227907419205,0.71082603931427,-0.585616409778595,-0.408919662237167,0.699884474277496,-0.55277544260025,-0.415659159421921,0.722265124320984,-0.500856995582581,-0.460485845804214,0.732867777347565,-0.554706275463104,-0.421455562114716,0.717409312725067,-0.583369493484497,-0.400273859500885,0.706725537776947,-0.661334574222565,-0.350921511650085,0.662941038608551,-0.607774555683136,-0.392415702342987,0.690376818180084,-0.519493341445923,-0.521156787872314,0.677142739295959,-0.567032516002655,-0.477114021778107,0.671443521976471,-0.594624757766724,-0.443199664354324,0.670817077159882,-0.57894766330719,-0.467550039291382,0.667994499206543,-0.579264461994171,-0.422947734594345,0.696827113628387,-0.553817272186279,-0.446137756109238,0.703027427196503,-0.555914103984833,-0.442903846502304,0.703417122364044,-0.523046970367432,-0.467663049697876,0.712539911270142,-0.550227999687195,-0.426780611276627,0.717709958553314,-0.545963823795319,-0.428514301776886,0.719929873943329,-0.554704248905182,-0.421449482440948,0.717414498329163,-0.606286525726318,-0.38594377040863,0.695315837860107,-0.395014375448227,-0.576639294624329,0.715157866477966,-0.433209359645844,-0.547603607177734,0.715863108634949,-0.486365884542465,-0.530028820037842,0.694634974002838,-0.455368041992188,-0.557592749595642,0.69406795501709,-0.449973374605179,-0.540800809860229,0.710674703121185,-0.436893880367279,-0.551344990730286,0.710733830928802,-0.351115554571152,-0.590875923633575,0.726349472999573,-0.392160296440125,-0.568074345588684,0.723534286022186,-0.42973804473877,-0.481567919254303,0.76381778717041,-0.464484214782715,-0.454763859510422,0.759897649288177,-0.53019243478775,-0.425589323043823,0.733327925205231,-0.498374223709106,-0.453360497951508,0.738977253437042,-0.355300694704056,-0.497093558311462,0.791618347167969,-0.408498764038086,-0.471781462430954,0.781377613544464,-0.365626007318497,-0.492150396108627,0.790003597736359, +-0.303373456001282,-0.520575881004333,0.79810106754303,-0.479160308837891,-0.344195604324341,0.807424783706665,-0.339051008224487,-0.579496681690216,0.741099178791046,-0.385111749172211,-0.684098958969116,0.619433224201202,-0.429265111684799,-0.532033324241638,0.72984391450882,-0.416060864925385,-0.499558568000793,0.759825527667999,-0.529924511909485,-0.548061013221741,0.647154688835144,-0.544816911220551,-0.411969304084778,0.730380654335022,-0.470880687236786,-0.325451552867889,0.819971144199371,-0.18334598839283,-0.640714764595032,0.745566129684448,-0.215494707226753,-0.498137056827545,0.839893698692322,-0.344021856784821,-0.572288691997528,0.744402229785919,-0.368162781000137,-0.680874168872833,0.633140206336975,-0.361872345209122,-0.481854259967804,0.798038125038147,-0.318292647600174,-0.506622850894928,0.801263391971588,-0.232272103428841,-0.539924263954163,0.809031248092651,-0.298845440149307,-0.508534967899323,0.807517051696777,-0.516095161437988,-0.367762595415115,0.77356094121933,-0.628383636474609,-0.247879683971405,0.737353146076202,-0.691805362701416,-0.156945660710335,0.704821586608887,-0.494144797325134,-0.379298806190491,0.782274484634399,0.620899021625519,0.618078410625458,-0.482144713401794,0.589021503925323,0.658405363559723,-0.468568176031113,0.54818719625473,0.658218026161194,-0.515984416007996,0.572746872901917,0.622698724269867,-0.533111095428467,-0.752462983131409,-0.142080381512642,0.64312732219696,-0.708940505981445,-0.184156879782677,0.680800795555115,-0.856963038444519,0.0148496180772781,0.515163958072662,-0.884685337543488,0.0127451438456774,0.466014623641968,-0.2865931391716,-0.529999494552612,0.79810094833374,-0.306477397680283,-0.518947899341583,0.797975301742554,-0.254148006439209,-0.544417560100555,0.799386203289032,-0.230133935809135,-0.556577801704407,0.79828542470932,-0.25301256775856,-0.541601538658142,0.801656186580658,-0.306086629629135,-0.517951428890228,0.79877233505249,-0.354489028453827,-0.494893431663513,0.793358683586121,-0.302920013666153,-0.51936674118042,0.799060523509979, +-0.359054625034332,-0.507321298122406,0.783393263816833,-0.311285674571991,-0.531247138977051,0.787957966327667,-0.360995531082153,-0.506365895271301,0.783119320869446,-0.414956390857697,-0.47731214761734,0.77458667755127,-0.144271358847618,-0.551857769489288,0.821363985538483,-0.162163063883781,-0.524584591388702,0.835771679878235,-0.0644496381282806,-0.539972364902496,0.839211702346802,-0.0444256700575352,-0.568795561790466,0.82127833366394,-0.229497700929642,-0.533006072044373,0.814392626285553,-0.175727739930153,-0.555551886558533,0.812700390815735,-0.247513875365257,-0.527981758117676,0.812386810779572,-0.297469288110733,-0.504889786243439,0.810307621955872,0.185731172561646,-0.545806586742401,0.817067444324493,0.104448035359383,-0.532007873058319,0.840272665023804,0.213584676384926,-0.549401938915253,0.807798981666565,0.302614778280258,-0.557473182678223,0.773077070713043,-0.0550537109375,-0.5190669298172,0.852958858013153,0.0486980974674225,-0.533764481544495,0.844229876995087,0.0337176471948624,-0.549459397792816,0.834839820861816,-0.0333325862884521,-0.545079469680786,0.837721467018127,0.434634298086166,-0.471808165311813,0.767131209373474,0.53561007976532,-0.478914141654968,0.695530831813812,0.431022673845291,-0.51519113779068,0.7408087849617,0.319449007511139,-0.501412034034729,0.804076075553894,0.435976773500443,-0.493647992610931,0.75248658657074,0.534870803356171,-0.483694612979889,0.692786276340485,0.59195202589035,-0.473123848438263,0.652492702007294,0.485061436891556,-0.48850405216217,0.725313127040863,0.562280237674713,0.728197336196899,-0.39187952876091,0.58359694480896,0.698132753372192,-0.414759337902069,0.62859034538269,0.691974699497223,-0.355028510093689,0.600246489048004,0.72606372833252,-0.335463225841522,0.102297775447369,-0.536359250545502,0.837767362594604,0.0417807027697563,-0.515185415744781,0.856059849262238,-0.120609097182751,-0.484888434410095,0.866219878196716,-0.0828019678592682,-0.502926588058472,0.860353887081146,-0.144001930952072,-0.596070289611816,0.789913713932037,0.0250256918370724,-0.610928297042847,0.791290402412415, +0.0853032842278481,-0.597662389278412,0.797196984291077,-0.0741336345672607,-0.594204306602478,0.800890386104584,0.293486326932907,-0.402512162923813,0.867092728614807,0.400270491838455,-0.173004537820816,0.8999183177948,0.399439990520477,0.0453204065561295,0.915638506412506,0.331384003162384,-0.194366693496704,0.923258483409882,-0.108605541288853,-0.688783466815948,0.716786026954651,-0.19461464881897,-0.668934106826782,0.717392802238464,-0.350414603948593,-0.617487132549286,0.704215407371521,-0.161101207137108,-0.678566038608551,0.716655194759369,0.121927827596664,-0.512175858020782,0.850182116031647,0.18520575761795,-0.459225028753281,0.868798732757568,-0.0668369680643082,-0.512077391147614,0.856334924697876,-0.0828504636883736,-0.55353319644928,0.828695893287659,-0.506723821163177,-0.175138935446739,0.844131231307983,-0.326804339885712,-0.342967957258224,0.88066565990448,-0.293860673904419,-0.440257012844086,0.848421812057495,-0.453114449977875,-0.286561012268066,0.844138622283936,-0.0697106942534447,-0.543366432189941,0.836596250534058,-0.352847814559937,-0.486682713031769,0.799148499965668,-0.322507560253143,-0.494749575853348,0.806976914405823,-0.0822561979293823,-0.538177788257599,0.838807940483093,-0.320428162813187,-0.471367985010147,0.821667850017548,-0.353428661823273,-0.490579426288605,0.796504855155945,-0.57000857591629,-0.380381375551224,0.728285908699036,-0.534277498722076,-0.37330886721611,0.758411467075348,-0.561855316162109,-0.340292513370514,0.754002451896667,-0.335284620523453,-0.383290201425552,0.860623478889465,-0.323362350463867,-0.328994661569595,0.887242555618286,-0.547559022903442,-0.287941038608551,0.785664856433868,-0.567727982997894,-0.368577480316162,0.736094892024994,-0.767805695533752,-0.237453952431679,0.595054626464844,-0.726338088512421,-0.266349136829376,0.633633375167847,-0.534262835979462,-0.373200267553329,0.758475244045258,-0.721027374267578,-0.235291004180908,0.651734411716461,-0.764688730239868,-0.222569406032562,0.604743003845215,-0.893818736076355,-0.0794612914323807,0.441332042217255, +-0.8576340675354,-0.110050678253174,0.5023472905159,-0.886412501335144,-0.0478551387786865,0.460415780544281,-0.751244187355042,-0.167787477374077,0.638341307640076,-0.756770431995392,-0.153037801384926,0.635513961315155,-0.89177531003952,-0.00620584283024073,0.452436178922653,-0.93175482749939,0.0260565616190434,0.362152069807053,-0.949796557426453,0.0721377208828926,0.30443862080574,-0.976320624351501,0.202996894717216,0.0747691839933395,-0.979704022407532,0.160816252231598,0.119658701121807,-0.977688431739807,0.197660803794861,0.0711024925112724,-0.943526983261108,0.0947482958436012,0.317458003759384,-0.94269859790802,0.140393942594528,0.302669644355774,-0.968664646148682,0.22483092546463,0.105545610189438,-0.949848413467407,0.11976283043623,0.288868308067322,-0.946208596229553,0.0853829607367516,0.312088340520859,-0.877701759338379,-0.0160183180123568,0.478939682245255,-0.888607203960419,0.0024370402097702,0.458662450313568,-0.266636282205582,-0.496202319860458,0.826249659061432,-0.290574789047241,-0.503509104251862,0.813661396503448,-0.48931697010994,-0.433147102594376,0.756936311721802,-0.44710510969162,-0.43696865439415,0.780484139919281,-0.490817904472351,-0.448920577764511,0.746704876422882,-0.290814578533173,-0.507497012615204,0.811094105243683,-0.323426157236099,-0.505942344665527,0.79963606595993,-0.54092812538147,-0.431138783693314,0.722160816192627,-0.324131786823273,-0.514997661113739,0.793546438217163,-0.291377782821655,-0.517279982566833,0.804686486721039,-0.0914183259010315,-0.549955487251282,0.830175757408142,-0.0830242484807968,-0.558129370212555,0.825589835643768,0.274910271167755,-0.557971894741058,0.783001780509949,0.100582927465439,-0.578758776187897,0.809272170066833,0.0763037204742432,-0.589449644088745,0.804193317890167,0.237010151147842,-0.572924911975861,0.784591197967529,0.0756019353866577,-0.572812736034393,0.816192448139191,0.100046396255493,-0.564489722251892,0.819354712963104,-0.0915708988904953,-0.560437321662903,0.82311886548996,-0.0927975028753281,-0.567655086517334,0.818019866943359, +-0.0918997302651405,-0.587326526641846,0.804115772247314,0.101467534899712,-0.603887915611267,0.790584444999695,0.122779823839664,-0.586054384708405,0.800915420055389,-0.0834934338927269,-0.570801973342896,0.816831648349762,-0.621749937534332,-0.326202183961868,0.712052822113037,-0.671736359596252,-0.303474992513657,0.675776064395905,-0.822053611278534,-0.177080854773521,0.541174948215485,-0.783150017261505,-0.208294630050659,0.585909187793732,-0.820607364177704,-0.170219242572784,0.545553803443909,-0.669953107833862,-0.292788088321686,0.682230174541473,-0.727347314357758,-0.272932082414627,0.629661858081818,-0.863584637641907,-0.140313908457756,0.484286725521088,-0.73132449388504,-0.302162826061249,0.611442685127258,-0.67285168170929,-0.310482561588287,0.671469449996948,-0.488348454236984,-0.423755943775177,0.762854337692261,-0.541214108467102,-0.434195905923843,0.720111906528473,-0.901970148086548,-0.0420247912406921,0.429748475551605,-0.918440461158752,-0.0136441756039858,0.395324110984802,-0.96761691570282,0.179494827985764,0.177480354905128,-0.963905811309814,0.140583023428917,0.226101845502853,-0.967826128005981,0.178881123661995,0.176958486437798,-0.918130457401276,-0.0125685036182404,0.396078914403915,-0.935050845146179,0.0134580004960299,0.354258269071579,-0.971638917922974,0.18927164375782,0.141753673553467,-0.937459349632263,0.00367853092029691,0.348075538873672,-0.919728636741638,-0.0181791484355927,0.392133593559265,-0.816844820976257,-0.153435200452805,0.556077420711517,-0.859698057174683,-0.119950540363789,0.496519058942795,-0.744113087654114,-0.198635265231133,0.637840032577515,-0.870767951011658,-0.0315918475389481,0.490678429603577,-0.853326678276062,-0.043805968016386,0.519532978534698,-0.720406472682953,-0.20667627453804,0.662041962146759,-0.85734224319458,-0.053434856235981,0.511965751647949,-0.868496656417847,-0.0258626043796539,0.495019853115082,-0.937740921974182,0.151084333658218,0.312754571437836,-0.936445832252502,0.126836210489273,0.327080875635147,-0.938335716724396,0.149814665317535,0.311579316854477, +-0.874282836914063,-0.0407126098871231,0.483706533908844,-0.896421790122986,-0.0250166207551956,0.442495465278625,-0.949964046478271,0.176630839705467,0.257623583078384,-0.560685455799103,-0.338013797998428,0.755895972251892,-0.586037337779999,-0.336445510387421,0.737132787704468,-0.747086524963379,-0.208648875355721,0.631131947040558,-0.72353595495224,-0.216328620910645,0.655513286590576,-0.749468505382538,-0.21694079041481,0.62548691034317,-0.586446285247803,-0.338349223136902,0.735935151576996,-0.622107744216919,-0.328087896108627,0.710872888565063,-0.780783653259277,-0.198732644319534,0.592353045940399,-0.623973667621613,-0.338175088167191,0.704481780529022,-0.588163077831268,-0.346481412649155,0.730763256549835,-0.418471246957779,-0.431702077388763,0.799071431159973,-0.446662425994873,-0.433387905359268,0.782730877399445,-0.0967971682548523,-0.550228476524353,0.829384684562683,-0.255387008190155,-0.514693021774292,0.81845498085022,-0.245617866516113,-0.503880798816681,0.828115999698639,-0.098321795463562,-0.537747085094452,0.837353467941284,-0.244687035679817,-0.495045155286789,0.83370167016983,-0.254603832960129,-0.505244970321655,0.824563145637512,-0.420526444911957,-0.446046143770218,0.790063500404358,-0.400503128767014,-0.44062677025795,0.803396105766296,-0.420131921768188,-0.443235546350479,0.791853129863739,-0.254152923822403,-0.499947100877762,0.827924728393555,-0.267575055360794,-0.510035991668701,0.817475914955139,-0.448202937841415,-0.44611182808876,0.774660229682922,-0.677703678607941,-0.153753697872162,0.719081044197083,-0.801570117473602,0.0188343562185764,0.597604155540466,-0.785566449165344,0.0254603214561939,0.618253409862518,-0.658176481723785,-0.148230120539665,0.738127052783966,-0.792925953865051,0.0136919189244509,0.609164178371429,-0.798224806785583,0.0246276259422302,0.601855993270874,-0.872654557228088,0.217779383063316,0.437088191509247,-0.869356751441956,0.205933332443237,0.449233055114746,-0.872523605823517,0.217955023050308,0.437262415885925,-0.814606666564941,-0.00464682327583432,0.579995334148407, +-0.842605590820313,-0.0195669531822205,0.538175702095032,-0.896220982074738,0.199033290147781,0.396451413631439,-0.604329407215118,-0.0709244310855865,0.793571591377258,-0.71294230222702,0.109296724200249,0.692652523517609,-0.688616573810577,0.120381072163582,0.715063393115997,-0.580929160118103,-0.0619347840547562,0.811594367027283,-0.711741268634796,0.0959793776273727,0.69585382938385,-0.711232364177704,0.111324056982994,0.694086134433746,-0.777079820632935,0.29496967792511,0.556003510951996,-0.777394771575928,0.285119354724884,0.560682058334351,-0.777031004428864,0.295011520385742,0.556049644947052,-0.739523530006409,0.0765921398997307,0.668758988380432,-0.769399106502533,0.0501635298132896,0.636795699596405,-0.811169505119324,0.271786600351334,0.517818570137024,-0.508288562297821,-0.285996615886688,0.812310695648193,-0.527344286441803,-0.295674949884415,0.796545386314392,-0.6822350025177,-0.164710581302643,0.712338328361511,-0.662660419940948,-0.158013746142387,0.732060670852661,-0.694680452346802,-0.196372345089912,0.691994905471802,-0.534336268901825,-0.320130944252014,0.782305002212524,-0.556959509849548,-0.322756737470627,0.765260875225067,-0.716324746608734,-0.194502949714661,0.670110046863556,-0.558906078338623,-0.33064603805542,0.760458469390869,-0.536415338516235,-0.327670931816101,0.777746975421906,-0.379128992557526,-0.410795897245407,0.829160928726196,-0.396877557039261,-0.418927371501923,0.816693365573883,-0.0955327749252319,-0.511750102043152,0.853806376457214,-0.233685314655304,-0.473541021347046,0.849205553531647,-0.224468767642975,-0.461007237434387,0.858537197113037,-0.0911201760172844,-0.498184889554977,0.862269699573517,-0.222862035036087,-0.451010465621948,0.864246666431427,-0.23236557841301,-0.463717579841614,0.854969143867493,-0.378068685531616,-0.405445098876953,0.832273066043854,-0.363874703645706,-0.394974499940872,0.843558251857758,-0.381524443626404,-0.423110365867615,0.821837484836578,-0.234238162636757,-0.477706789970398,0.846716463565826,-0.244033068418503,-0.488953649997711,0.837479710578918, +-0.398888468742371,-0.430802762508392,0.809504091739655,-0.486618459224701,0.0142938960343599,0.873497784137726,-0.581394016742706,0.182563543319702,0.792875528335571,-0.558936357498169,0.137772798538208,0.817685067653656,-0.458265095949173,-0.030806303024292,0.888281583786011,-0.577807784080505,0.125985518097878,0.806390583515167,-0.590970933437347,0.175427481532097,0.787387251853943,-0.625512301921844,0.357126832008362,0.693682074546814,-0.62086033821106,0.319700837135315,0.715767979621887,-0.624580860137939,0.357550352811813,0.694302976131439,-0.624941110610962,0.149217814207077,0.766278505325317,-0.67475026845932,0.134432390332222,0.725699603557587,-0.680340886116028,0.351813644170761,0.642933487892151,-0.442087829113007,-0.19913475215435,0.874587774276733,-0.468262851238251,-0.213870793581009,0.857315123081207,-0.606193482875824,-0.0741281136870384,0.791855037212372,-0.579281806945801,-0.059498593211174,0.812952995300293,-0.627886235713959,-0.1126818805933,0.770104885101318,-0.48143482208252,-0.246904045343399,0.840986847877502,-0.500461339950562,-0.262652456760406,0.824955821037292,-0.648191690444946,-0.1271101385355,0.750793278217316,-0.502716183662415,-0.269281625747681,0.82144021987915,-0.484318912029266,-0.254341393709183,0.837105572223663,-0.340125471353531,-0.345252364873886,0.874708771705627,-0.356141299009323,-0.361953765153885,0.861483037471771,-0.241859897971153,-0.211925595998764,0.946885168552399,-0.36514151096344,-0.119386427104473,0.923265218734741,-0.319555163383484,-0.134688645601273,0.937946438789368,-0.200894817709923,-0.223930150270462,0.953675270080566,-0.328136056661606,-0.146149292588234,0.933256149291992,-0.368306130170822,-0.124486081302166,0.921332716941833,-0.489483118057251,0.0110902786254883,0.871942281723022,-0.443773120641708,-0.0173241645097733,0.895971715450287,-0.518966555595398,-0.0225871056318283,0.85449606180191,-0.388668239116669,-0.157759681344032,0.907771468162537,-0.420365691184998,-0.154953747987747,0.894025802612305,-0.551576554775238,-0.0197074729949236,0.83389151096344, +-0.295128762722015,-0.00995840132236481,0.955405592918396,-0.364032298326492,0.131262198090553,0.922090470790863,-0.31573212146759,0.0310290642082691,0.948340952396393,-0.247273534536362,-0.0982111766934395,0.963955640792847,-0.331271111965179,0.02515909075737,0.94320011138916,-0.350103974342346,0.137333631515503,0.926588773727417,-0.372814387083054,0.297549337148666,0.878904938697815,-0.359945327043533,0.194863885641098,0.912396609783173,-0.476519644260406,0.281124144792557,0.833005607128143,-0.444138616323471,0.0948662161827087,0.890921652317047,-0.461251854896545,0.194378703832626,0.865715801715851,-0.482913821935654,0.361083835363388,0.79775482416153,-0.0774260237812996,-0.443030089139938,0.893157064914703,-0.204047054052353,-0.399334728717804,0.893810212612152,-0.185268491506577,-0.387402713298798,0.903102874755859,-0.061490785330534,-0.429904013872147,0.900778234004974,-0.182880491018295,-0.378062874078751,0.907536864280701,-0.202383995056152,-0.391184657812119,0.897783577442169,-0.334983050823212,-0.327072560787201,0.883634507656097,-0.313332617282867,-0.315289378166199,0.895776331424713,-0.344848126173019,-0.362291902303696,0.865923941135406,-0.208346247673035,-0.4206483066082,0.882976233959198,-0.220042809844017,-0.433763235807419,0.873745203018188,-0.359060615301132,-0.374220222234726,0.85500580072403,-0.0766763836145401,-0.138486012816429,0.987391710281372,-0.129504144191742,-0.0376122035086155,0.990865349769592,-0.0726649165153503,-0.146386206150055,0.986555099487305,0.00570116890594363,-0.286667197942734,0.958013296127319,-0.0622718036174774,-0.14282301068306,0.987787365913391,-0.0935070961713791,-0.0255161784589291,0.995291590690613,-0.117427133023739,0.077978253364563,0.990015268325806,-0.0883543193340302,-0.0505298785865307,0.99480664730072,-0.198264598846436,0.0764742791652679,0.977160573005676,-0.168690770864487,-0.0507899038493633,0.984359681606293,-0.197832182049751,0.0741505771875381,0.977427303791046,-0.2233497351408,0.203095704317093,0.953345239162445,-0.113278247416019,-0.189930632710457,0.975240647792816, +-0.205012336373329,-0.104931212961674,0.973118424415588,-0.142860189080238,-0.15223902463913,0.977964401245117,-0.0565847903490067,-0.231082439422607,0.971287310123444,-0.172820240259171,-0.181111082434654,0.968159079551697,-0.223129570484161,-0.124996699392796,0.966741442680359,-0.309672176837921,-0.0208560824394226,0.95061469078064,-0.246188059449196,-0.0974971503019333,0.964305877685547,-0.351593822240829,-0.05269755423069,0.934668362140656,-0.252601474523544,-0.157843351364136,0.954608798027039,-0.300077736377716,-0.108915157616138,0.947676539421082,-0.409846305847168,0.0135669261217117,0.91205370426178,0.128941014409065,-0.310751378536224,0.94170469045639,0.074032373726368,-0.204661548137665,0.97602915763855,0.0486986748874187,-0.2140122205019,0.975616335868835,0.114395596086979,-0.387363225221634,0.914802372455597,0.0252531003206968,-0.215187638998032,0.976246178150177,0.042617242783308,-0.214499473571777,0.975794017314911,0.00609357189387083,-0.119015924632549,0.992873668670654,-0.0248835645616055,-0.0494930520653725,0.998464465141296,-0.116797536611557,-0.127101451158524,0.984989166259766,-0.0544860810041428,-0.187851384282112,0.980685114860535,0.020069370046258,-0.258243411779404,0.965871453285217,-0.0361194871366024,-0.205586299300194,0.977972269058228,0.0218156669288874,-0.256576180458069,0.966277837753296,-0.0584586560726166,-0.191139578819275,0.979820549488068,-0.108641922473907,-0.157110691070557,0.981587052345276,0.013402072712779,-0.281857132911682,0.959362745285034,-0.173975497484207,-0.343557208776474,0.922876477241516,-0.142970949411392,-0.331104606389999,0.932699978351593,-0.0278318822383881,-0.380723416805267,0.92427009344101,-0.0548639185726643,-0.394929081201553,0.917072057723999,-0.0188773535192013,-0.34523668885231,0.938325762748718,-0.129499584436417,-0.290397167205811,0.948103129863739,-0.0855323746800423,-0.284425467252731,0.954875111579895,0.0210659075528383,-0.337113350629807,0.94122838973999,-0.0870726183056831,-0.288090437650681,0.953636348247528,-0.128528639674187,-0.287471175193787,0.949126362800598, +-0.244691163301468,-0.218251138925552,0.944718360900879,-0.199425488710403,-0.221246942877769,0.954609513282776,0.102728955447674,-0.264539867639542,0.958887577056885,0.003226637840271,-0.220870167016983,0.975297927856445,0.0599318146705627,-0.254119485616684,0.965314269065857,0.159768104553223,-0.296797275543213,0.94148051738739,0.0486139357089996,-0.271102458238602,0.96132218837738,-0.00533228414133191,-0.237210869789124,0.971443653106689,-0.102762311697006,-0.174170389771461,0.979338884353638,-0.0422315038740635,-0.213219523429871,0.976091206073761,-0.124474734067917,-0.206702426075935,0.97045361995697,-0.0222014039754868,-0.269181191921234,0.962833642959595,-0.07198416441679,-0.252128094434738,0.965012848377228,-0.179965883493423,-0.185846015810966,0.965957403182983,0.357883930206299,-0.491212964057922,0.794121503829956,0.288010656833649,-0.373294293880463,0.881873667240143,0.351885050535202,-0.472872525453568,0.807817101478577,0.414782017469406,-0.589887320995331,0.692812263965607,0.257915407419205,-0.494474411010742,0.83004492521286,0.212976977229118,-0.412958651781082,0.885497510433197,0.156322911381721,-0.298761010169983,0.941437840461731,0.202631801366806,-0.376289218664169,0.904072344303131,0.170251920819283,-0.292535006999969,0.940976977348328,0.245678812265396,-0.39613801240921,0.884712755680084,0.190451562404633,-0.32446163892746,0.926527380943298,0.113128259778023,-0.217346727848053,0.969516634941101,0.265132933855057,-0.282450675964355,0.921914339065552,0.170961260795593,-0.232451722025871,0.957464694976807,0.217535853385925,-0.302031904459,0.928145885467529,0.331004649400711,-0.367527991533279,0.86911404132843,0.17382550239563,-0.337937295436859,0.924977421760559,0.160058125853539,-0.245293453335762,0.956144690513611,0.0615165531635284,-0.218223258852959,0.973958134651184,0.036507286131382,-0.267278581857681,0.962927579879761,0.0599296316504478,-0.219772845506668,0.97370857000351,0.129513710737228,-0.280617892742157,0.951041460037231,0.0694362744688988,-0.239742368459702,0.968350291252136,-0.00867757201194763,-0.171118795871735,0.985212206840515, +0.518034815788269,-0.315931886434555,0.794875383377075,0.617943644523621,-0.428853064775467,0.658961892127991,0.708050489425659,-0.463173717260361,0.533042848110199,0.609363913536072,-0.349607735872269,0.711653113365173,0.765784382820129,-0.375595510005951,0.522017598152161,0.631179869174957,-0.41457211971283,0.655547022819519,0.590114414691925,-0.622082591056824,0.51456618309021,0.730087876319885,-0.607733964920044,0.312459915876389,0.556342363357544,-0.642974615097046,0.526371359825134,0.578889131546021,-0.468639224767685,0.66728150844574,0.470284700393677,-0.41320276260376,0.779804944992065,0.451185196638107,-0.57624614238739,0.681448638439178,0.297638565301895,-0.252645522356033,0.920642018318176,0.379841417074203,-0.292126566171646,0.877714395523071,0.469512403011322,-0.31287682056427,0.825630784034729,0.395078092813492,-0.277675688266754,0.87567663192749,0.48815256357193,-0.270171463489532,0.829888343811035,0.403263479471207,-0.248711735010147,0.880636751651764,0.512221217155457,-0.324254721403122,0.795291304588318,0.60887223482132,-0.350500047206879,0.711634933948517,0.475431710481644,-0.37453493475914,0.796045422554016,0.38764163851738,-0.277936667203903,0.878911375999451,0.287540107965469,-0.249692142009735,0.924648284912109,0.360217809677124,-0.337250232696533,0.869773268699646,0.144676044583321,-0.331527143716812,0.932286739349365,0.197781786322594,-0.330011129379272,0.923024952411652,0.31442654132843,-0.359292536973953,0.878660917282104,0.265589445829391,-0.363867193460464,0.892783880233765,0.325606942176819,-0.317480742931366,0.890609979629517,0.21353417634964,-0.283064782619476,0.93502813577652,0.279787749052048,-0.294682115316391,0.913718402385712,0.379385471343994,-0.323951900005341,0.866672873497009,0.272064000368118,-0.312259197235107,0.910206317901611,0.210510224103928,-0.292264074087143,0.932881116867065,0.107456974685192,-0.253176987171173,0.961433529853821,0.171304643154144,-0.275639802217484,0.945873975753784,0.0661162659525871,-0.436909675598145,0.89707225561142,0.0844048410654068,-0.445405751466751,0.891341507434845, +0.217104494571686,-0.457927584648132,0.862071931362152,0.199673160910606,-0.450701236724854,0.870056986808777,0.224475920200348,-0.405011206865311,0.886327564716339,0.095817431807518,-0.386557757854462,0.917274296283722,0.127944305539131,-0.395490109920502,0.909515142440796,0.255808770656586,-0.412218272686005,0.874435901641846,0.132497161626816,-0.378510057926178,0.916064739227295,0.095471166074276,-0.388399541378021,0.916532099246979,-0.0195264127105474,-0.347822844982147,0.937356948852539,0.0201820135116577,-0.339769452810287,0.940292239189148,0.485335350036621,-0.276824742555618,0.829347848892212,0.568336069583893,-0.293383866548538,0.768713235855103,0.529188632965088,-0.283191204071045,0.799851298332214,0.402069836854935,-0.255838364362717,0.879139721393585,0.531334698200226,-0.274170219898224,0.801569819450378,0.562683284282684,-0.310405045747757,0.766182839870453,0.712624192237854,-0.292576879262924,0.637624979019165,0.726676285266876,-0.26398029923439,0.634236514568329,0.395280390977859,-0.379902631044388,0.836317896842957,0.450556308031082,-0.363663613796234,0.815320730209351,0.568366527557373,-0.368789315223694,0.735495686531067,0.521914541721344,-0.388138681650162,0.75957453250885,0.575280666351318,-0.328606247901917,0.749046146869659,0.458099037408829,-0.327413976192474,0.826405107975006,0.517841815948486,-0.32758691906929,0.790270090103149,0.713975250720978,-0.322543412446976,0.621454119682312,0.516646146774292,-0.331981748342514,0.789218008518219,0.456365466117859,-0.336087912321091,0.823878288269043,0.328210771083832,-0.307278901338577,0.893228650093079,0.385620474815369,-0.305989325046539,0.87044095993042,0.948053300380707,-0.296766996383667,0.114561326801777,0.833399713039398,-0.33718279004097,0.437895745038986,0.855597972869873,-0.187700346112251,0.482411295175552,0.976830542087555,-0.162096366286278,0.139739006757736,0.804363667964935,-0.305459588766098,0.509601473808289,0.831484079360962,-0.341928780078888,0.437857240438461,0.706313610076904,-0.311224043369293,0.635814964771271,0.654026925563812,-0.261349618434906,0.709891021251678, +0.731573879718781,-0.229857295751572,0.641845166683197,0.875564157962799,-0.210471913218498,0.434843719005585,0.886675417423248,-0.240178942680359,0.395121514797211,0.726579666137695,-0.264483362436295,0.634137749671936,0.344441920518875,-0.479044914245605,0.807388186454773,0.356267035007477,-0.485594570636749,0.798292934894562,0.507132530212402,-0.463675439357758,0.72651344537735,0.504483699798584,-0.45617139339447,0.733078420162201,0.50978034734726,-0.422042638063431,0.749669253826141,0.361463934183121,-0.435227155685425,0.824573278427124,0.386024594306946,-0.438901007175446,0.811388313770294,0.517415642738342,-0.426809579133987,0.741697192192078,0.388137996196747,-0.42644989490509,0.817000269889832,0.362655699253082,-0.421501874923706,0.831154048442841,0.223006680607796,-0.416130036115646,0.881534993648529,0.253545969724655,-0.422776013612747,0.870043158531189,0.567002534866333,-0.375991970300674,0.732897102832794,0.666501641273499,-0.363450884819031,0.650906264781952,0.668782770633698,-0.369859457015991,0.644929170608521,0.521589875221252,-0.391258597373962,0.758195698261261,0.668752253055573,-0.370260328054428,0.644730865955353,0.666333258152008,-0.364589989185333,0.650441527366638,0.787851870059967,-0.316034585237503,0.528594076633453,0.819568634033203,-0.307104468345642,0.483729362487793,0.93176656961441,-0.245425462722778,0.267539709806442,0.904964506626129,-0.281896084547043,0.318706512451172,0.985058486461639,-0.169676646590233,-0.0294925440102816,0.988163411617279,-0.135913491249084,-0.071137398481369,0.98280942440033,-0.181685298681259,-0.0328031778335571,0.911243259906769,-0.245930016040802,0.330384999513626,0.883709073066711,-0.25399112701416,0.393124371767044,0.980119824409485,-0.195151701569557,0.0357910618185997,0.884723365306854,-0.249367401003838,0.393802672624588,0.907723903656006,-0.267064213752747,0.323595702648163,0.786717534065247,-0.322860866785049,0.526152491569519,0.717231273651123,-0.308758407831192,0.624697983264923,0.673245191574097,-0.428413569927216,0.602663099765778,0.666881322860718,-0.441327542066574,0.600416004657745, +0.823159873485565,-0.35252457857132,0.445122838020325,0.830361247062683,-0.338238000869751,0.442826688289642,0.82445627450943,-0.330841660499573,0.459146618843079,0.66905003786087,-0.405444860458374,0.622885704040527,0.664723217487335,-0.41258916258812,0.622826814651489,0.816314697265625,-0.340527713298798,0.46655261516571,0.665655136108398,-0.404157191514969,0.627343714237213,0.669416189193726,-0.396017402410507,0.628531754016876,0.509098291397095,-0.434800237417221,0.742810726165771,0.515580654144287,-0.440417289733887,0.734989285469055,-0.0841459259390831,-0.490793198347092,0.867203235626221,0.0473529882729053,-0.508050799369812,0.860024571418762,0.0435821637511253,-0.50121283531189,0.8642258644104,-0.0895349979400635,-0.483336508274078,0.870844066143036,0.0427163019776344,-0.516229331493378,0.855384469032288,0.0458150207996368,-0.524501860141754,0.850175738334656,0.186109006404877,-0.529108643531799,0.827893435955048,0.184731706976891,-0.521148025989532,0.833234071731567,0.18795183300972,-0.489026665687561,0.851778745651245,0.049860667437315,-0.480401486158371,0.875630259513855,0.0590982660651207,-0.488380372524261,0.870627462863922,0.195731595158577,-0.496224641799927,0.845842957496643,0.339498996734619,-0.539752304553986,0.770329713821411,0.337865233421326,-0.552043974399567,0.762295722961426,0.505408465862274,-0.516200423240662,0.691447377204895,0.508329093456268,-0.503594756126404,0.698565661907196,0.505003392696381,-0.481853246688843,0.716092884540558,0.338618904352188,-0.512224018573761,0.789280533790588,0.342036128044128,-0.522295415401459,0.781165063381195,0.503740429878235,-0.492637068033218,0.709615707397461,0.343167006969452,-0.504056572914124,0.792567670345306,0.338700801134109,-0.496099948883057,0.799478888511658,0.187337785959244,-0.503530442714691,0.843422591686249,0.194221422076225,-0.511915147304535,0.836792051792145,-0.0982371121644974,-0.545865476131439,0.832094073295593,0.0411869175732136,-0.560841739177704,0.826898038387299,0.0464241914451122,-0.552470922470093,0.832238435745239,-0.0982890054583549,-0.537145853042603,0.837743163108826, +0.0463137477636337,-0.568210065364838,0.821579158306122,0.0406360924243927,-0.576377987861633,0.816172242164612,0.187249541282654,-0.574503242969513,0.796795845031738,0.194900363683701,-0.566041529178619,0.801006138324738,0.187072515487671,-0.54935359954834,0.814379870891571,0.0416681468486786,-0.546745598316193,0.836261332035065,0.040313184261322,-0.555994093418121,0.83020806312561,0.184070616960526,-0.558540225028992,0.808795928955078,0.683181881904602,-0.456973165273666,0.569594621658325,0.678898990154266,-0.473193377256393,0.561412811279297,0.836131870746613,-0.364389061927795,0.410005241632462,0.839831471443176,-0.347871333360672,0.416735619306564,0.836236834526062,-0.344393670558929,0.426732957363129,0.678878366947174,-0.446210741996765,0.583112597465515,0.672375679016113,-0.462436199188232,0.577982544898987,0.82972925901413,-0.361702769994736,0.425112277269363,0.672916114330292,-0.447152644395828,0.589269459247589,0.678592205047607,-0.433506518602371,0.592945754528046,0.505303204059601,-0.497862964868546,0.704841315746307,0.503048658370972,-0.509778082370758,0.697902858257294,0.512986242771149,-0.519207358360291,0.683570623397827,0.344538807868958,-0.561738610267639,0.752158761024475,0.339730948209763,-0.57325941324234,0.745624959468842,0.509248852729797,-0.530642926692963,0.677557170391083,0.339691638946533,-0.557069718837738,0.757814705371857,0.343945473432541,-0.547110915184021,0.763132572174072,0.187196180224419,-0.563931882381439,0.804324865341187,0.183688372373581,-0.573732554912567,0.798178970813751,0.187270268797874,-0.590310871601105,0.785151541233063,0.344831734895706,-0.570188283920288,0.745638251304626,0.352240145206451,-0.558782458305359,0.750792264938354,0.195359826087952,-0.579129874706268,0.791481614112854,-0.0973184257745743,-0.568108022212982,0.817179620265961,0.0569744110107422,-0.575758874416351,0.815632164478302,0.0754072815179825,-0.568286240100861,0.819368481636047,-0.0927300304174423,-0.561128735542297,0.822517931461334,0.0760237872600555,-0.582751750946045,0.809086382389069,0.0573133900761604,-0.593284666538239,0.802949905395508, +0.210067436099052,-0.58357447385788,0.78441858291626,0.236778795719147,-0.570543766021729,0.786394059658051,0.209439739584923,-0.574060261249542,0.79157429933548,0.057064563035965,-0.580313324928284,0.812391698360443,0.0461367331445217,-0.589280366897583,0.80661016702652,0.195515722036362,-0.583898663520813,0.787931501865387,0.52570503950119,-0.523472309112549,0.670530438423157,0.366964727640152,-0.574842929840088,0.731363475322723,0.354076474905014,-0.587555706501007,0.727604448795319,0.519374907016754,-0.53465461730957,0.666629016399384,0.353263378143311,-0.573968768119812,0.738758981227875,0.365668267011642,-0.562031924724579,0.74189418554306,0.210363134741783,-0.588190853595734,0.780883431434631,0.19598388671875,-0.59959214925766,0.775937855243683,0.211052805185318,-0.599339425563812,0.77217161655426,0.366303503513336,-0.568203568458557,0.736862599849701,0.392924189567566,-0.551524877548218,0.735819935798645,0.238138318061829,-0.584790349006653,0.775442183017731,0.472119331359863,-0.524707138538361,0.708368420600891,0.440349072217941,-0.538937330245972,0.718080282211304,0.588027238845825,-0.467024445533752,0.660387992858887,0.649082779884338,-0.426440298557281,0.629952669143677,0.590494275093079,-0.480103701353073,0.648703992366791,0.441397309303284,-0.546419560909271,0.711754381656647,0.393191874027252,-0.553394258022308,0.734271705150604,0.542713820934296,-0.497361302375793,0.676826000213623,0.391755998134613,-0.543512940406799,0.742375254631042,0.440053641796112,-0.536872506141663,0.71980607509613,0.276847422122955,-0.578858971595764,0.766992747783661,0.237133577466011,-0.574202358722687,0.783619463443756,0.838062286376953,-0.339680671691895,0.426929295063019,0.68762195110321,-0.464109063148499,0.558371603488922,0.687524855136871,-0.474153131246567,0.549989402294159,0.838829159736633,-0.34922668337822,0.417620003223419,0.686475276947021,-0.461006581783295,0.562338709831238,0.68616133928299,-0.452281534671783,0.569757878780365,0.527169764041901,-0.535446584224701,0.659840106964111,0.520392894744873,-0.547650814056396,0.655186891555786, +0.527755618095398,-0.540535390377045,0.655206501483917,0.686180770397186,-0.452430099248886,0.569616556167603,0.694762289524078,-0.436872839927673,0.571355879306793,0.546785473823547,-0.521000504493713,0.655426681041718,0.850745797157288,-0.285719484090805,0.441130399703979,0.723774313926697,-0.407795995473862,0.556644558906555,0.695998728275299,-0.44400680065155,0.564308106899261,0.839474439620972,-0.311918646097183,0.444960117340088,0.694136083126068,-0.433391779661179,0.574757933616638,0.721743226051331,-0.398129135370255,0.566197752952576,0.59055095911026,-0.48041433095932,0.648422479629517,0.546689331531525,-0.520408570766449,0.655977010726929,0.590701758861542,-0.481243163347244,0.647670090198517,0.721263408660889,-0.395925045013428,0.568350732326508,0.758633136749268,-0.352489650249481,0.547929704189301,0.649398386478424,-0.429007232189178,0.627880990505219,0.88209068775177,-0.223271861672401,0.414808005094528,0.823902130126953,-0.254301816225052,0.506474196910858,0.889407336711884,-0.118659883737564,0.441445887088776,0.918318808078766,-0.121307007968426,0.376796126365662,0.905884861946106,-0.17418771982193,0.386045604944229,0.828727722167969,-0.280229687690735,0.484439641237259,0.759936094284058,-0.358760207891464,0.542022407054901,0.870014786720276,-0.232479229569435,0.434773325920105,0.758743405342102,-0.353010773658752,0.547441244125366,0.822345376014709,-0.246842101216316,0.512657046318054,0.755398273468018,-0.256987005472183,0.602769672870636,0.643287897109985,-0.386116325855255,0.66113156080246,0.977399706840515,0.0624355301260948,0.20196932554245,0.955105781555176,-0.0554574206471443,0.291028261184692,0.94724428653717,-0.0806746855378151,0.31019338965416,0.979986429214478,0.0981794819235802,0.173169076442719,0.9471794962883,-0.0804508551955223,0.310449242591858,0.95509284734726,-0.0554137974977493,0.291078925132751,0.905637621879578,-0.17318968474865,0.387073367834091,0.871139049530029,-0.236839205026627,0.430144011974335,0.89844799041748,-0.146811977028847,0.413808524608612,0.950958669185638,-0.0421293824911118,0.306435525417328, +0.949563264846802,-0.0226111281663179,0.312759399414063,0.911589026451111,-0.0973916500806808,0.399400234222412,0.995382487773895,0.0367976278066635,0.0886553898453712,0.950287342071533,-0.149037852883339,0.273389399051666,0.946077942848206,-0.172389149665833,0.274259775876999,0.996320724487305,0.0304186269640923,0.0801239088177681,0.944839715957642,-0.16353414952755,0.283786296844482,0.948785841464996,-0.140327751636505,0.283043533563614,0.852387607097626,-0.293678760528564,0.432652652263641,0.840905904769897,-0.320508182048798,0.436063885688782,0.850836098194122,-0.286144107580185,0.440680682659149,0.94581139087677,-0.125235736370087,0.299594402313232,0.951617479324341,-0.0967934057116508,0.291642248630524,0.872490048408508,-0.242261320352554,0.424347132444382,0.963994443416595,0.261915862560272,0.0459885783493519,0.976994752883911,0.178980305790901,0.115962564945221,0.96159839630127,0.272136747837067,0.0356390699744225,0.923616886138916,0.375826358795166,-0.0754089802503586,0.962764739990234,0.268515378236771,0.0313630029559135,0.977746069431305,0.176581084728241,0.11327762901783,0.977703750133514,0.0614583492279053,0.200793921947479,0.979086756706238,0.101047955453396,0.176574155688286,0.969889163970947,0.0844943001866341,0.228420570492744,0.967653751373291,0.205746814608574,0.145994767546654,0.973126292228699,0.133507296442986,0.187619611620903,0.970632255077362,0.0450449213385582,0.236313417553902,0.840645670890808,-0.352592945098877,0.411087870597839,0.685916006565094,-0.468123644590378,0.557117164134979,0.683669865131378,-0.481585264205933,0.548335015773773,0.840038776397705,-0.364972501993179,0.401410162448883,0.68346893787384,-0.467100709676743,0.560969889163971,0.685178279876709,-0.45515576004982,0.568651080131531,0.513726532459259,-0.53181666135788,0.673243045806885,0.50949501991272,-0.544815123081207,0.666026651859283,0.514482259750366,-0.547943592071533,0.659595191478729,0.685835540294647,-0.466519117355347,0.558560311794281,0.685942232608795,-0.455171853303909,0.567716479301453,0.519339263439178,-0.534230768680573,0.666996419429779, +0.999827980995178,0.00563412252813578,0.0176737066358328,0.948613524436951,-0.205743670463562,0.240420490503311,0.950599253177643,-0.212361797690392,0.226414814591408,0.99982738494873,0.0144260805100203,-0.0117076113820076,0.95028167963028,-0.20173367857933,0.237209394574165,0.947949051856995,-0.195483043789864,0.251354604959488,0.839206278324127,-0.35065883398056,0.415657639503479,0.839557647705078,-0.360937356948853,0.40603843331337,0.839072346687317,-0.349266320466995,0.417098134756088,0.947366952896118,-0.188388079404831,0.258855015039444,0.946684539318085,-0.177198886871338,0.26905232667923,0.842528820037842,-0.331293106079102,0.42472368478775,0.883445024490356,0.434032082557678,-0.176468521356583,0.925713539123535,0.372885018587112,-0.0633337646722794,0.828682661056519,0.487129807472229,-0.27566209435463,0.706836938858032,0.531370341777802,-0.466933757066727,0.82315468788147,0.505358755588531,-0.258899688720703,0.92690110206604,0.369461297988892,-0.0659759938716888,0.962285280227661,0.267205744981766,0.051071472465992,0.923435568809509,0.376394033432007,-0.0747944191098213,0.945516645908356,0.311637043952942,0.0942373797297478,0.910747289657593,0.411650776863098,-0.0329105854034424,0.946685552597046,0.305665522813797,0.101760655641556,0.957830667495728,0.23702797293663,0.16241355240345,0.976405560970306,0.213484555482864,-0.0325050503015518,0.962974905967712,0.25784507393837,-0.0787103101611137,0.89011687040329,0.398130297660828,-0.22177529335022,0.937995553016663,0.319329142570496,-0.134882166981697,0.895156264305115,0.355687141418457,-0.268666982650757,0.968098640441895,0.216287612915039,-0.126510068774223,0.959514737129211,0.234350800514221,-0.156241491436958,0.862116396427155,0.391953021287918,-0.321135699748993,0.958899617195129,0.242540910840034,-0.147260323166847,0.967165112495422,0.226951897144318,-0.114387765526772,0.996349155902863,0.0293491277843714,0.0801683887839317,0.99729585647583,0.0214524790644646,0.0702908113598824,0.710749924182892,0.526091456413269,-0.466971397399902,0.762474298477173,0.479328870773315,-0.434599667787552, +0.896133244037628,0.339027404785156,-0.28636622428894,0.862290978431702,0.388195753097534,-0.325205147266388,0.89067143201828,0.394668877124786,-0.225700855255127,0.755826652050018,0.530711233615875,-0.383499294519424,0.837091088294983,0.454394072294235,-0.304638504981995,0.938487648963928,0.31674587726593,-0.137525081634521,0.826430559158325,0.494808793067932,-0.268657594919205,0.757246851921082,0.5221266746521,-0.392378836870193,0.560300171375275,0.655337750911713,-0.506553173065186,0.665332794189453,0.638291120529175,-0.387190878391266,0.72989410161972,0.492527425289154,-0.473995238542557,0.781005263328552,0.59556519985199,-0.187970757484436,0.879143953323364,0.445046126842499,-0.170411095023155,0.738602995872498,0.388037443161011,-0.551264464855194,0.860454320907593,0.488173127174377,-0.145963698625565,0.817592442035675,0.536485552787781,-0.209107458591461,0.836569845676422,0.544384896755219,-0.0616130754351616,0.882909774780273,0.466522455215454,0.0531720146536827,0.556444525718689,0.495005548000336,-0.66733729839325,0.682669579982758,0.414113700389862,-0.602056562900543,0.811659216880798,0.329220354557037,-0.482517629861832,0.700188398361206,0.427119344472885,-0.572106003761292,0.81562614440918,0.383319437503815,-0.433382242918015,0.688517987728119,0.488801330327988,-0.535739004611969,0.710952579975128,0.471509248018265,-0.52175235748291,0.861844420433044,0.332423806190491,-0.383038729429245,0.914251744747162,0.245445758104324,-0.322335720062256,0.940069675445557,0.223782122135162,-0.257275283336639,0.99996542930603,-0.00451202364638448,0.0069888704456389,0.999528706073761,-0.00421347049996257,-0.0304079353809357,0.99979555606842,0.00690084043890238,0.0190075002610683,0.940341472625732,0.244383126497269,-0.236716791987419,0.960417509078979,0.214281097054482,-0.177993983030319,0.998813629150391,0.00175972282886505,0.0486647412180901,0.960527420043945,0.197482779622078,-0.195927664637566,0.940294027328491,0.233310893177986,-0.247816786170006,0.815829157829285,0.39056196808815,-0.426478713750839,0.8626309633255,0.352053701877594,-0.363216370344162, +0.951201915740967,-0.23022985458374,0.205448508262634,0.95193874835968,-0.216341316699982,0.216816052794456,0.841007709503174,-0.364273965358734,0.400013267993927,0.839882373809814,-0.378657221794128,0.388865441083908,0.841119766235352,-0.37118735909462,0.39336696267128,0.951937913894653,-0.21648171544075,0.216679289937019,0.950494289398193,-0.20796999335289,0.230887711048126,0.839573979377747,-0.361247450113297,0.405728936195374,0.950684070587158,-0.218585476279259,0.220046311616898,0.951728761196136,-0.228712722659111,0.204702258110046,0.998895406723022,-0.00344309955835342,-0.0468630567193031,0.999672114849091,0.000581186264753342,-0.025599392130971,0.909750461578369,0.199569314718246,-0.364041596651077,0.905675768852234,0.228183940052986,-0.357328176498413,0.700618863105774,0.408727318048477,-0.58487206697464,0.696732461452484,0.388666778802872,-0.602911353111267,0.696908116340637,0.372090995311737,-0.613080322742462,0.902415990829468,0.200441882014275,-0.381403535604477,0.905156016349792,0.171915531158447,-0.388764321804047,0.702127695083618,0.344823867082596,-0.622987389564514,0.90992134809494,0.20993560552597,-0.357729375362396,0.902702331542969,0.202527418732643,-0.379619717597961,0.99534285068512,-0.0440926179289818,-0.0857236012816429,0.997116267681122,-0.0307396799325943,-0.0693844184279442,0.943953573703766,-0.249840170145035,0.215711697936058,0.948888540267944,-0.225853845477104,0.220455586910248,0.836252927780151,-0.354846030473709,0.418049335479736,0.828789472579956,-0.37902107834816,0.41164442896843,0.835805237293243,-0.376019567251205,0.400048911571503,0.948586344718933,-0.232686027884483,0.214571878314018,0.951606869697571,-0.216318354010582,0.218290567398071,0.840024948120117,-0.360146880149841,0.405773639678955,0.951402544975281,-0.22475029528141,0.210524767637253,0.947493195533752,-0.249684780836105,0.199785321950912,0.996615171432495,-0.0442716851830482,-0.0692703276872635,0.99801242351532,-0.0200611725449562,-0.0597396157681942,0.694829761981964,0.26522833108902,-0.668480098247528,0.897716522216797,0.108864478766918,-0.426911890506744, +0.902520596981049,0.125370189547539,-0.411993891000748,0.697680830955505,0.286436915397644,-0.656654715538025,0.902624130249023,0.126009374856949,-0.411571860313416,0.905961632728577,0.153493672609329,-0.394554555416107,0.994902431964874,-0.0590970441699028,-0.08171147108078,0.991548240184784,-0.0911829397082329,-0.0922919362783432,0.993959665298462,-0.0661150142550468,-0.087596595287323,0.907077550888062,0.16099251806736,-0.388962388038635,0.90732729434967,0.187181204557419,-0.376457750797272,0.996318578720093,-0.0386489182710648,-0.0765224471688271,0.928664028644562,-0.268551498651505,0.255857944488525,0.939687371253967,-0.242108672857285,0.241601020097733,0.824220418930054,-0.335591733455658,0.456112802028656,0.814168930053711,-0.357676804065704,0.457379728555679,0.821726083755493,-0.369705080986023,0.433686912059784,0.938413083553314,-0.255084723234177,0.233050674200058,0.945324778556824,-0.23021125793457,0.231006264686584,0.830227613449097,-0.346218913793564,0.43686917424202,0.944568514823914,-0.242060855031013,0.221803769469261,0.935984492301941,-0.275095194578171,0.219672188162804,0.99210262298584,-0.0964621603488922,-0.0801723822951317,0.994988858699799,-0.0670844241976738,-0.0741416662931442,0.669643878936768,0.130039304494858,-0.7312091588974,0.880812227725983,0.00521615194156766,-0.47343721985817,0.890969216823578,0.0105753401294351,-0.453940808773041,0.678008615970612,0.142020985484123,-0.721203446388245,0.890314817428589,0.00702568981796503,-0.455291539430618,0.891014039516449,0.0487940832972527,-0.451346158981323,0.989462852478027,-0.112997405230999,-0.0905265957117081,0.98380184173584,-0.159406378865242,-0.0819971784949303,0.988390207290649,-0.119096539914608,-0.0943438783288002,0.898127019405365,0.0868688225746155,-0.431070327758789,0.900368571281433,0.112751342356205,-0.420266211032867,0.991825819015503,-0.0894546657800674,-0.0909909829497337,0.681144118309021,-0.0106316218152642,-0.732072174549103,0.897493004798889,-0.0702578201889992,-0.435396641492844,0.922293722629547,-0.0728387832641602,-0.379564136266708, +0.721624433994293,-0.00676402915269136,-0.692251741886139,0.922076880931854,-0.0751606225967407,-0.379638314247131,0.894176363945007,-0.0881110057234764,-0.438959360122681,0.98171591758728,-0.187230423092842,-0.0343328304588795,0.984285712242126,-0.172586411237717,0.0373572781682014,0.982635259628296,-0.182580813765526,-0.0330501720309258,0.902483582496643,-0.0394605286419392,-0.428912788629532,0.885852456092834,-0.0155088305473328,-0.463707864284515,0.984524846076965,-0.155759111046791,-0.0803115740418434,0.749855041503906,-0.0157610327005386,-0.661414444446564,0.935791909694672,0.0358882285654545,-0.350721776485443,0.93010950088501,0.0710139647126198,-0.360351651906967,0.752169191837311,0.0283815152943134,-0.658358752727509,0.942008078098297,0.00139633566141129,-0.335587233304977,0.935308158397675,-0.15199913084507,-0.319523185491562,0.977823138237,-0.185413092374802,0.0973856151103973,0.995953917503357,-0.0300821475684643,0.0846807733178139,0.987015843391418,-0.133651033043861,0.089090570807457,0.938793182373047,-0.101807966828346,-0.329093843698502,0.91077595949173,-0.159311026334763,-0.380929559469223,0.979869663715363,-0.196420446038246,0.0357022248208523,0.468976736068726,0.244228035211563,-0.848771750926971,0.470681607723236,0.251399517059326,-0.845728754997253,0.334408164024353,0.274656057357788,-0.90151834487915,0.328065633773804,0.268115073442459,-0.905807614326477,0.328842461109161,0.199524819850922,-0.923066973686218,0.461499452590942,0.178246036171913,-0.869049310684204,0.466628819704056,0.181463807821274,-0.865637600421906,0.33695387840271,0.202646508812904,-0.919454455375671,0.468461602926254,0.201728284358978,-0.860144972801208,0.463781416416168,0.194615691900253,-0.864309966564178,0.670447587966919,0.13391125202179,-0.729772508144379,0.677553176879883,0.138626292347908,-0.722291171550751,0.458390533924103,0.108440771698952,-0.882110357284546,0.474760591983795,0.106516070663929,-0.873645663261414,0.344923377037048,0.125193282961845,-0.930244386196136,0.331647485494614,0.126194804906845,-0.934925138950348, +0.342904537916183,0.0817365571856499,-0.935807466506958,0.47176992893219,0.0667324811220169,-0.879192769527435,0.497564911842346,0.0596578940749168,-0.865372836589813,0.358413904905319,0.0752561315894127,-0.93052464723587,0.497521460056305,0.0501164272427559,-0.866002798080444,0.470943868160248,0.0572308450937271,-0.88030481338501,0.686206340789795,0.0258804298937321,-0.726946473121643,0.72245991230011,0.0186129733920097,-0.691162288188934,0.362607151269913,0.0117154074832797,-0.931868553161621,0.515730023384094,0.0221451427787542,-0.856464982032776,0.514170229434967,0.0312236919999123,-0.857119679450989,0.34967428445816,0.0201170668005943,-0.936655342578888,0.517654776573181,0.013397328555584,-0.855484664440155,0.517733991146088,-0.00420431746169925,-0.855531334877014,0.745680630207062,0.0325664356350899,-0.665507256984711,0.747847974300385,0.0467876493930817,-0.662219285964966,0.748646855354309,0.000520773231983185,-0.662968873977661,0.51615035533905,0.0169930458068848,-0.856329500675201,0.496282637119293,-0.00785090774297714,-0.86812549829483,0.720937490463257,-0.0212690625339746,-0.692673683166504,0.672811567783356,0.348705798387527,-0.65247905254364,0.698892593383789,0.437017798423767,-0.566184341907501,0.71616393327713,0.596476197242737,-0.362388402223587,0.711369574069977,0.506721913814545,-0.487017691135406,0.840147018432617,0.475300431251526,-0.261232614517212,0.815603017807007,0.287736415863037,-0.501995503902435,0.814961075782776,0.371677309274673,-0.444628596305847,0.813784003257751,0.553285479545593,-0.177850782871246,0.849469184875488,0.30626454949379,-0.429656088352203,0.826772212982178,0.270092844963074,-0.493454813957214,0.695226788520813,0.144179806113243,-0.704181790351868,0.713364541530609,0.16479480266571,-0.681141555309296,0.407074391841888,0.241686806082726,-0.880839347839355,0.462081104516983,0.341783404350281,-0.818330705165863,0.407403469085693,0.242339611053467,-0.88050788640976,0.311722606420517,0.0790239498019218,-0.946881413459778,0.421390682458878,0.236120909452438,-0.875600814819336, +0.472464352846146,0.336197078227997,-0.814707934856415,0.449954271316528,0.497994899749756,-0.741311192512512,0.405360817909241,0.387660622596741,-0.82789009809494,0.54788738489151,0.473854154348373,-0.68940681219101,0.502781093120575,0.319359660148621,-0.803256273269653,0.544404566287994,0.448966443538666,-0.708556950092316,0.571850836277008,0.579128563404083,-0.5810307264328,0.323927700519562,0.0580085590481758,-0.944301784038544,0.474179446697235,0.113754525780678,-0.873048603534698,0.446271300315857,0.106522038578987,-0.88853532075882,0.295187920331955,0.0524753220379353,-0.953997075557709,0.451999753713608,0.0950834602117538,-0.886936068534851,0.474925518035889,0.111737474799156,-0.872903525829315,0.649892926216125,0.230015769600868,-0.72438383102417,0.609710395336151,0.198492139577866,-0.76736843585968,0.695554852485657,0.143501788377762,-0.703996181488037,0.493946373462677,0.0579353123903275,-0.867560148239136,0.507458984851837,0.0633217990398407,-0.859346151351929,0.716210722923279,0.156399786472321,-0.680133283138275,0.334281742572784,0.273138642311096,-0.902026176452637,0.309937089681625,0.179851487278938,-0.933591187000275,0.247941330075264,0.0533269867300987,-0.967306315898895,0.260854154825211,0.118403524160385,-0.958089590072632,0.251824289560318,0.0519168898463249,-0.966379463672638,0.288412243127823,0.185804173350334,-0.93930572271347,0.265779286623001,0.219718560576439,-0.938661396503448,0.225059121847153,0.0520769208669662,-0.972952485084534,-0.0167915560305119,-0.156269818544388,-0.987571716308594,0.0481691211462021,-0.020418731495738,-0.998630583286285,-0.00462688878178596,-0.0792492926120758,-0.996844172477722,-0.0652247071266174,-0.206969797611237,-0.976170659065247,0.102604731917381,-0.0781961381435394,-0.991643905639648,0.1435806453228,-0.0528119616210461,-0.988228559494019,0.199786216020584,0.0706038251519203,-0.977292537689209,0.157907769083977,0.051436074078083,-0.986113369464874,0.159867957234383,0.0846367478370667,-0.983503401279449,0.0817019119858742,-0.0318082310259342,-0.996149182319641, +0.11920128762722,0.00719805061817169,-0.992844045162201,0.214934200048447,0.152814030647278,-0.964599013328552,0.42590543627739,0.145911991596222,-0.892924606800079,0.374022006988525,0.121978014707565,-0.919363379478455,0.262028306722641,0.0643718913197517,-0.962911009788513,0.287146210670471,0.0727331042289734,-0.955121457576752,0.272910565137863,0.0481786578893661,-0.960832297801971,0.377863973379135,0.116559132933617,-0.918494939804077,0.439235627651215,0.214102417230606,-0.872486233711243,0.287645846605301,0.0978334024548531,-0.95272696018219,0.19369700551033,0.0496634766459465,-0.979803621768951,0.263323843479156,0.0469672046601772,-0.963563501834869,0.238215237855911,0.0531177632510662,-0.969758749008179,0.16665843129158,0.0553191155195236,-0.984461724758148,0.241173908114433,0.0304396394640207,-0.970004498958588,0.264851182699203,0.0236942134797573,-0.963998198509216,0.361832976341248,0.0236296914517879,-0.931943476200104,0.347914725542068,0.0315461158752441,-0.936995327472687,0.359583377838135,0.0545319020748138,-0.931518197059631,0.26208159327507,0.0644422620534897,-0.962891697883606,0.275172770023346,0.05257573351264,-0.959956109523773,0.358421564102173,0.0421020090579987,-0.932610034942627,0.246090143918991,0.139762818813324,-0.959117293357849,0.261298954486847,0.140354722738266,-0.954999208450317,0.197302177548409,0.141941085457802,-0.970012664794922,0.182980075478554,0.141181543469429,-0.972926557064056,0.197648078203201,0.104929201304913,-0.974641025066376,0.260602444410324,0.104039140045643,-0.959824085235596,0.274391680955887,0.104075014591217,-0.955969452857971,0.216496214270592,0.104849018156528,-0.970637023448944,0.274535119533539,0.0973726958036423,-0.956634223461151,0.260534703731537,0.101252846419811,-0.960140466690063,0.343561947345734,0.0944361314177513,-0.934369921684265,0.358277797698975,0.0904600694775581,-0.929222345352173,0.136877402663231,0.0483663305640221,-0.989406526088715,0.212507531046867,0.0619202442467213,-0.975195705890656,0.177787035703659,0.0582772791385651,-0.982341945171356, +0.0907736718654633,0.0420414060354233,-0.994983851909637,0.184276908636093,0.0400188937783241,-0.982059359550476,0.216233462095261,0.044911727309227,-0.975308239459991,0.320156246423721,0.0720925256609917,-0.944617807865143,0.289532870054245,0.0667603686451912,-0.954837143421173,0.326032817363739,0.0500278025865555,-0.944033801555634,0.218415319919586,0.0348038710653782,-0.975235164165497,0.240632057189941,0.0346674546599388,-0.96999716758728,0.345006912946701,0.0497971028089523,-0.937278270721436,0.03189617395401,-0.00313384877517819,-0.999486327171326,0.127003401517868,0.0640986785292625,-0.989829003810883,0.08221235871315,0.0371110215783119,-0.995923697948456,-0.0399250723421574,-0.0548576526343822,-0.997695684432983,0.114034816622734,0.0113903665915132,-0.993411540985107,0.154448747634888,0.0208192504942417,-0.987781405448914,0.251358598470688,0.0800813287496567,-0.964575529098511,0.262561440467834,0.117103807628155,-0.957783043384552,0.250106275081635,0.0819144621491432,-0.964747071266174,0.146353557705879,0.0336573570966721,-0.988659620285034,0.181151136755943,0.0488389991223812,-0.982241868972778,0.27842304110527,0.0942898690700531,-0.955819010734558,0.0382055565714836,0.0814075246453285,-0.995948374271393,0.0759665742516518,0.0843492820858955,-0.993536293506622,0.00944362208247185,0.0759133994579315,-0.997069716453552,-0.0433056056499481,0.0695890337228775,-0.996635317802429,0.0161692779511213,0.0531324297189713,-0.998456597328186,0.0796547755599022,0.0619402006268501,-0.994896233081818,0.133148983120918,0.0683254301548004,-0.988738059997559,0.0840866416692734,0.0628635287284851,-0.99447363615036,0.132975354790688,0.0692471265792847,-0.988697409629822,0.0786169916391373,0.0682743117213249,-0.994564294815063,0.120002172887325,0.0677061378955841,-0.990462243556976,0.165316417813301,0.0674332529306412,-0.983932554721832,0.197391837835312,0.134683653712273,-0.971028745174408,0.151266172528267,0.134523212909698,-0.979296684265137,0.132625982165337,0.134191989898682,-0.982040226459503,0.18294233083725,0.134451046586037,-0.973886549472809, +0.133172750473022,0.117346987128258,-0.984121322631836,0.152217134833336,0.115518286824226,-0.981572985649109,0.115414179861546,0.116569049656391,-0.986453890800476,0.0871091261506081,0.117852970957756,-0.989203095436096,0.118335351347923,0.0858388319611549,-0.98925656080246,0.153755262494087,0.0819618329405785,-0.984703898429871,0.191913738846779,0.0780630931258202,-0.978302240371704,0.16360504925251,0.0825557336211205,-0.983065664768219,-0.142234668135643,-0.036894578486681,-0.98914510011673,-0.0783052444458008,0.00411934405565262,-0.996921002864838,-0.195019721984863,-0.0768663808703423,-0.977782726287842,-0.276542842388153,-0.134164124727249,-0.951590299606323,-0.165284708142281,-0.104104995727539,-0.980736017227173,-0.0599398128688335,-0.0289162024855614,-0.997783124446869,0.0172432959079742,0.0218897983431816,-0.999611735343933,-0.0654016733169556,-0.0331472903490067,-0.997308373451233,0.0149861630052328,0.0257406160235405,-0.999556422233582,-0.0732664316892624,-0.00496388925239444,-0.997300028800964,0.0233054924756289,0.0288938898593187,-0.999310791492462,0.088238924741745,0.0499523878097534,-0.994846045970917,-0.310497373342514,-0.296447545289993,-0.903166890144348,-0.260996431112289,-0.200032025575638,-0.94438773393631,-0.31268721818924,-0.309061616659164,-0.898169040679932,-0.356859892606735,-0.401533871889114,-0.843458116054535,-0.220796719193459,-0.316701352596283,-0.922469079494476,-0.189706042408943,-0.230119675397873,-0.954492807388306,-0.149076223373413,-0.109097421169281,-0.982788920402527,-0.185050666332245,-0.203440457582474,-0.961440801620483,-0.144244506955147,-0.110877357423306,-0.983310580253601,-0.22068090736866,-0.217278957366943,-0.950836360454559,-0.148851171135902,-0.118981346487999,-0.981675505638123,-0.0749354064464569,-0.0249972622841597,-0.996875047683716,-0.273244053125381,-0.0152454972267151,-0.9618239402771,-0.235613122582436,0.0122152734547853,-0.971770226955414,-0.404994964599609,-0.117134556174278,-0.90678483247757,-0.451540648937225,-0.154272839426994,-0.878812193870544,-0.371693551540375,-0.151492282748222,-0.915911555290222, +-0.212117820978165,-0.0329464003443718,-0.97668868303299,-0.161975264549255,-0.000161893665790558,-0.986794829368591,-0.306768298149109,-0.104538232088089,-0.946025907993317,-0.17131008207798,0.0173938125371933,-0.985063672065735,-0.228190541267395,-0.0021772759500891,-0.973614156246185,-0.0780828148126602,0.0504779554903507,-0.995668172836304,-0.041210550814867,0.0620858035981655,-0.997219681739807,0.0650147423148155,0.168793216347694,-0.983504951000214,0.000878086313605309,0.162641420960426,-0.986684918403625,-0.0155235677957535,0.160539269447327,-0.986907422542572,0.0533818565309048,0.167259469628334,-0.984466731548309,-0.0131051931530237,0.142495378851891,-0.989708721637726,0.00337724573910236,0.145060077309608,-0.98941707611084,-0.0986345261335373,0.127117544412613,-0.986971378326416,-0.126229360699654,0.1221833974123,-0.984447777271271,-0.0895762518048286,0.0931487083435059,-0.991614520549774,0.00850109290331602,0.108843699097633,-0.9940225481987,0.0337774716317654,0.110765732824802,-0.993272423744202,-0.0512009561061859,0.0979125872254372,-0.993877053260803,-0.599795997142792,-0.306366354227066,-0.739178240299225,-0.618439614772797,-0.346062868833542,-0.705530226230621,-0.517621338367462,-0.149356961250305,-0.842473030090332,-0.492508590221405,-0.109487563371658,-0.863393247127533,-0.568884193897247,-0.0894670262932777,-0.817536771297455,-0.677061498165131,-0.304336667060852,-0.670049965381622,-0.687778234481812,-0.335607022047043,-0.643683969974518,-0.587693750858307,-0.124909967184067,-0.799383223056793,-0.664353966712952,-0.353344261646271,-0.658621072769165,-0.658886909484863,-0.317822337150574,-0.681804239749908,-0.672233700752258,-0.505565166473389,-0.540838122367859,-0.6710284948349,-0.535176455974579,-0.513134360313416,-0.408262133598328,-0.113694235682487,-0.905757069587708,-0.513041138648987,-0.287290513515472,-0.80885910987854,-0.544664263725281,-0.340848863124847,-0.766265511512756,-0.444152623414993,-0.162086650729179,-0.881167650222778,-0.51348465681076,-0.358927339315414,-0.779425919055939,-0.486624777317047,-0.302326291799545,-0.819631099700928, +-0.524887681007385,-0.45288074016571,-0.72068852186203,-0.543362140655518,-0.511333703994751,-0.665804386138916,-0.458363324403763,-0.468289017677307,-0.755386233329773,-0.428636997938156,-0.333320766687393,-0.839742541313171,-0.399444818496704,-0.253572165966034,-0.880990862846375,-0.437338352203369,-0.388297259807587,-0.811147511005402,-0.380068302154541,0.037346363067627,-0.924204170703888,-0.353650391101837,0.0600081235170364,-0.933450818061829,-0.555384159088135,-0.105748370289803,-0.824842929840088,-0.582181930541992,-0.131586909294128,-0.802339732646942,-0.520227253437042,-0.146433055400848,-0.84138035774231,-0.328796595335007,0.00911472737789154,-0.944356799125671,-0.298188507556915,0.0341048054397106,-0.953897476196289,-0.486468136310577,-0.116253301501274,-0.86592960357666,-0.306310534477234,0.0505595579743385,-0.95058810710907,-0.341837644577026,0.0355430692434311,-0.939086616039276,-0.147075623273849,0.108159460127354,-0.983193933963776,-0.125036343932152,0.117562912404537,-0.985162377357483,-0.453065901994705,0.0833984836935997,-0.887567579746246,-0.437003940343857,0.0993349403142929,-0.893957555294037,-0.653163552284241,-0.0824908837676048,-0.752710282802582,-0.666540503501892,-0.0988253802061081,-0.738889336585999,-0.624968409538269,-0.120328933000565,-0.771320581436157,-0.41792893409729,0.0569429844617844,-0.906693458557129,-0.398237943649292,0.0758177265524864,-0.914143443107605,-0.607344627380371,-0.100513279438019,-0.788054347038269,-0.406720489263535,0.0943017154932022,-0.908672451972961,-0.429266810417175,0.0818946212530136,-0.899457275867462,-0.203001171350479,0.170647695660591,-0.964193880558014,-0.186510697007179,0.180001124739647,-0.965822637081146,-0.771621465682983,-0.311546325683594,-0.554562091827393,-0.77232837677002,-0.28922912478447,-0.565557658672333,-0.777481436729431,-0.488394618034363,-0.396223872900009,-0.772276759147644,-0.50510048866272,-0.385307759046555,-0.747759878635406,-0.509024024009705,-0.426321089267731,-0.743134200572968,-0.316806763410568,-0.589393794536591,-0.739405512809753,-0.29290771484375,-0.60620504617691, +-0.749075770378113,-0.492606908082962,-0.442971855401993,-0.732995986938477,-0.298508167266846,-0.611236274242401,-0.73913311958313,-0.320419102907181,-0.592464327812195,-0.637352526187897,-0.104012310504913,-0.763520359992981,-0.624481797218323,-0.0784247517585754,-0.777092099189758,-0.511098146438599,0.125802278518677,-0.85026615858078,-0.496105253696442,0.139879941940308,-0.856920778751373,-0.721074640750885,-0.0430534221231937,-0.691518545150757,-0.726786136627197,-0.0519008785486221,-0.684900164604187,-0.701413869857788,-0.0754431933164597,-0.708750247955322,-0.48358952999115,0.107567727565765,-0.868660151958466,-0.469074964523315,0.121583506464958,-0.87474924325943,-0.691099464893341,-0.0624191537499428,-0.720059394836426,-0.476816833019257,0.140760406851768,-0.867659091949463,-0.492559939622879,0.13057005405426,-0.860427975654602,-0.250127464532852,0.226444825530052,-0.941360235214233,-0.23522287607193,0.235499754548073,-0.942979395389557,-0.835128545761108,-0.268174707889557,-0.480252742767334,-0.835074722766876,-0.252496898174286,-0.48876941204071,-0.845049023628235,-0.442456722259521,-0.300207018852234,-0.843102216720581,-0.436805039644241,-0.313655972480774,-0.831838667392731,-0.456123977899551,-0.31622040271759,-0.823765277862549,-0.266669631004333,-0.500297963619232,-0.820358633995056,-0.258653163909912,-0.510009944438934,-0.830742657184601,-0.455449521541595,-0.320050895214081,-0.814749896526337,-0.265179365873337,-0.515618681907654,-0.816858112812042,-0.275041073560715,-0.507045567035675,-0.710630178451538,-0.0605249777436256,-0.700957536697388,-0.702256321907043,-0.0450063049793243,-0.710500240325928,-0.857002079486847,-0.220799326896667,-0.465612590312958,-0.859872817993164,-0.233471751213074,-0.453993201255798,-0.8870689868927,-0.360617905855179,-0.288206994533539,-0.887644648551941,-0.361806988716125,-0.284925669431686,-0.888611257076263,-0.358376562595367,-0.286245316267014,-0.86465847492218,-0.225721627473831,-0.448793232440948,-0.863618969917297,-0.226557046175003,-0.450371414422989,-0.890655994415283,-0.376988649368286,-0.254187971353531, +-0.862092137336731,-0.228923410177231,-0.45209676027298,-0.862058997154236,-0.229953482747078,-0.451636672019958,-0.72944164276123,-0.0115266731008887,-0.683946013450623,-0.743672668933868,-0.0175688397139311,-0.668313086032867,-0.778128445148468,-0.366057753562927,-0.510409593582153,-0.78092223405838,-0.343441933393478,-0.521735787391663,-0.789642572402954,-0.334718227386475,-0.514225959777832,-0.78267902135849,-0.347420573234558,-0.516442239284515,-0.812069654464722,-0.304300934076309,-0.497939467430115,-0.801832437515259,-0.315239310264587,-0.50763076543808,-0.850238561630249,-0.410791605710983,-0.329157561063766,-0.859412789344788,-0.391826748847961,-0.328453212976456,-0.869114756584167,-0.383671253919601,-0.312147378921509,-0.829674184322357,-0.274226546287537,-0.486251652240753,-0.824891984462738,-0.269881069660187,-0.496706604957581,-0.867126703262329,-0.391545206308365,-0.307869583368301,-0.532330691814423,0.20662784576416,-0.820931792259216,-0.507855653762817,0.199506729841232,-0.838021337985992,-0.365776836872101,0.241858333349228,-0.898727893829346,-0.312514573335648,0.267292261123657,-0.911531388759613,-0.375629812479019,0.33142951130867,-0.865480601787567,-0.517931938171387,0.251145660877228,-0.817723870277405,-0.497162073850632,0.237046718597412,-0.834648907184601,-0.403194725513458,0.29789936542511,-0.865268707275391,-0.484019041061401,0.183823674917221,-0.855531692504883,-0.505476295948029,0.188312023878098,-0.842040657997131,-0.750936806201935,0.0419842712581158,-0.659038066864014,-0.826559007167816,-0.0231457352638245,-0.562373995780945,-0.132831498980522,0.319503128528595,-0.938228964805603,-0.18253256380558,0.311495363712311,-0.932551681995392,-0.0362518727779388,0.328264027833939,-0.94389021396637,-0.0134991426020861,0.332339346408844,-0.943063318729401,-0.0368054062128067,0.368115603923798,-0.929051280021667,-0.184788912534714,0.35158708691597,-0.917736172676086,-0.219170540571213,0.337123990058899,-0.91559362411499,-0.0658482238650322,0.353873819112778,-0.932972371578217,-0.218904227018356,0.332420468330383,-0.917375326156616, +-0.183246925473213,0.323623329401016,-0.92827183008194,-0.372649103403091,0.301127851009369,-0.877755463123322,-0.403817176818848,0.30141294002533,-0.86376029253006,-0.650573909282684,-0.453497797250748,-0.609174311161041,-0.645050287246704,-0.423152506351471,-0.636279940605164,-0.599307894706726,-0.355735301971436,-0.717134892940521,-0.651369035243988,-0.477948546409607,-0.58930778503418,-0.731258034706116,-0.240977749228477,-0.638115584850311,-0.642752170562744,-0.425105214118958,-0.637303173542023,-0.782915353775024,-0.41018995642662,-0.467747569084167,-0.856310963630676,-0.204751536250114,-0.474139779806137,-0.816286265850067,-0.377471297979355,-0.43725523352623,-0.772947490215302,-0.295614391565323,-0.561395049095154,-0.774500548839569,-0.353995978832245,-0.524247825145721,-0.812752604484558,-0.451401889324188,-0.368333637714386,-0.18292036652565,-0.171536833047867,-0.968047142028809,-0.479023039340973,-0.306722283363342,-0.822470963001251,-0.327033817768097,-0.518881559371948,-0.789816975593567,-0.0547378659248352,-0.435519218444824,-0.898513734340668,-0.230670809745789,0.257431477308273,-0.938360333442688,-0.224162563681602,0.13191631436348,-0.965582370758057,-0.234228521585464,0.398011893033981,-0.886974394321442,-0.247602179646492,0.420622587203979,-0.872794330120087,-0.234405696392059,0.397981822490692,-0.886941075325012,-0.241663724184036,0.131462886929512,-0.961413681507111,-0.272618800401688,0.0162305943667889,-0.961985290050507,-0.261623203754425,0.341580480337143,-0.902704954147339,-0.11893156170845,0.0296418033540249,-0.992459952831268,-0.293081134557724,0.129868537187576,-0.947226285934448,-0.141489863395691,-0.17859123647213,-0.973696947097778,-0.03102689050138,-0.436545729637146,-0.899146974086761,-0.257220417261124,0.260419428348541,-0.930601716041565,-0.0959350019693375,0.293634325265884,-0.951091647148132,-0.0837242901325226,0.299012541770935,-0.950569212436676,-0.241985440254211,0.266831040382385,-0.932868897914886,-0.0847084224224091,0.307681173086166,-0.947711408138275,-0.0969680547714233,0.303044050931931,-0.948030352592468, +-0.00221030879765749,0.314610779285431,-0.949218273162842,0.00796536169946194,0.318863719701767,-0.94776713848114,-0.00317883351817727,0.331374764442444,-0.943493843078613,-0.0987988412380219,0.319864213466644,-0.942298173904419,-0.132218867540359,0.312968790531158,-0.940515160560608,-0.0132089601829648,0.327120035886765,-0.94489049911499,-0.0544191636145115,0.260922759771347,-0.963824570178986,-0.0660819113254547,0.256584852933884,-0.964260041713715,0.0206601899117231,0.267049580812454,-0.963461339473724,0.029216468334198,0.270971328020096,-0.962143957614899,0.0187343861907721,0.298970609903336,-0.954078435897827,-0.0698522180318832,0.288468897342682,-0.954937875270844,-0.0820208191871643,0.284093737602234,-0.955281794071198,0.00938027258962393,0.295019239187241,-0.955445289611816,-0.080592468380928,0.271665930747986,-0.959011256694794,-0.0685395151376724,0.277329385280609,-0.958327114582062,-0.220462769269943,0.246101677417755,-0.943837940692902,-0.236071974039078,0.239381402730942,-0.941789031028748,0.0523939542472363,0.377135545015335,-0.924674868583679,0.0325462594628334,0.372681021690369,-0.927388668060303,0.0981826782226563,0.376353144645691,-0.921259224414825,0.111582800745964,0.380659073591232,-0.917958557605743,0.0993668809533119,0.412592321634293,-0.905479967594147,0.0327427685260773,0.407812476158142,-0.912478446960449,0.0104635041207075,0.399780929088593,-0.916550993919373,0.0779933631420135,0.404877036809921,-0.911038815975189,0.00898681301623583,0.366937398910522,-0.930202186107635,0.0324927382171154,0.364275097846985,-0.930724382400513,-0.0368081517517567,0.368324279785156,-0.928968548774719,-0.065266989171505,0.370907008647919,-0.926373660564423,0.0719239115715027,0.369927644729614,-0.926272392272949,0.0627865269780159,0.365177899599075,-0.928818047046661,0.120363101363182,0.368742406368256,-0.921705961227417,0.131015732884407,0.373324185609818,-0.918402969837189,0.120357185602188,0.381977617740631,-0.91630083322525,0.0624244548380375,0.378612369298935,-0.923447906970978,0.0524729862809181,0.374121993780136,-0.925893843173981, +0.111548505723476,0.377565532922745,-0.919239521026611,0.053045429289341,0.35149872303009,-0.934684336185455,0.0630325227975845,0.355713903903961,-0.932466924190521,-0.00426640780642629,0.350095510482788,-0.936704277992249,-0.0142456106841564,0.345752835273743,-0.938217520713806,0.164618372917175,0.406362384557724,-0.898760557174683,0.187122836709023,0.409628361463547,-0.892854750156403,0.120266243815422,0.409227967262268,-0.904471457004547,0.111808575689793,0.404800981283188,-0.907543420791626,0.120322644710541,0.396338075399399,-0.910186052322388,0.186813965439796,0.396896600723267,-0.89865106344223,0.200776666402817,0.401091367006302,-0.89376425743103,0.130956038832664,0.400958091020584,-0.90668797492981,0.201255619525909,0.421510845422745,-0.884208559989929,0.187846839427948,0.44853886961937,-0.873800039291382,0.285127460956573,0.461231917142868,-0.840218722820282,0.302401006221771,0.432450771331787,-0.849435091018677,0.166731864213943,0.457897007465363,-0.87323009967804,0.152962490916252,0.457949042320251,-0.875719904899597,0.200177788734436,0.4526447057724,-0.868931412696838,0.239724159240723,0.447725057601929,-0.861437559127808,0.205685555934906,0.535084843635559,-0.819376409053802,0.155997335910797,0.528338670730591,-0.834579586982727,0.150585830211639,0.517500817775726,-0.842328250408173,0.209292635321617,0.523371756076813,-0.826001644134521,0.147059231996536,0.404937505722046,-0.90244072675705,0.149978294968605,0.402467668056488,-0.903064906597137,0.0992748290300369,0.409619837999344,-0.906838536262512,0.0784815549850464,0.414175540208817,-0.90680718421936,-0.020226189866662,0.195582643151283,-0.980478703975677,-0.0333719328045845,0.192776396870613,-0.980675160884857,0.0420638024806976,0.200827270746231,-0.978723227977753,0.0509648993611336,0.203135013580322,-0.977823495864868,0.0397867038846016,0.236488938331604,-0.970819234848022,-0.0378547348082066,0.227831080555916,-0.972964584827423,-0.049943633377552,0.224416956305504,-0.973212540149689,0.0315223820507526,0.233532309532166,-0.971837937831879,-0.0483071394264698,0.211133360862732,-0.976262927055359, +-0.0362319052219391,0.215130552649498,-0.975912988185883,-0.167451322078705,0.189886689186096,-0.967420935630798,-0.187495440244675,0.184097796678543,-0.964859366416931,0.0889434143900871,0.32530689239502,-0.941416263580322,0.081606037914753,0.320202082395554,-0.943827986717224,0.140233233571053,0.323823928833008,-0.935667037963867,0.148275539278984,0.328811317682266,-0.932683050632477,0.140379533171654,0.355366706848145,-0.924125611782074,0.0807763487100601,0.351870357990265,-0.932556927204132,0.0725447759032249,0.346884489059448,-0.935098171234131,0.130976960062981,0.350513756275177,-0.927353918552399,0.0731607228517532,0.321969091892242,-0.94391918182373,0.0814514979720116,0.326405555009842,-0.941713988780975,0.0173941943794489,0.320790499448776,-0.946990430355072,0.0081235533580184,0.316211938858032,-0.948653817176819,0.360132068395615,0.534854352474213,-0.764353215694427,0.287140876054764,0.554893314838409,-0.780796766281128,0.360801458358765,0.534652173519135,-0.764178991317749,0.493947803974152,0.48357492685318,-0.722613930702209,0.360050857067108,0.514301598072052,-0.778368413448334,0.283481597900391,0.50582081079483,-0.81472909450531,0.285447776317596,0.482047587633133,-0.828341603279114,0.340062439441681,0.497070997953415,-0.798296868801117,0.284660488367081,0.431272655725479,-0.856138050556183,0.28106227517128,0.478329420089722,-0.831988573074341,0.199351236224174,0.441949218511581,-0.874608516693115,0.207687437534332,0.391768306493759,-0.896316766738892,0.286367446184158,0.492774933576584,-0.821685194969177,0.431244254112244,0.485468059778214,-0.760492622852325,0.46143040060997,0.448420464992523,-0.765507161617279,0.303899705410004,0.462396949529648,-0.832967042922974,0.463798701763153,0.479378402233124,-0.74504166841507,0.43220853805542,0.500972509384155,-0.749814927577972,0.554324567317963,0.46810457110405,-0.688187837600708,0.69586968421936,0.381135582923889,-0.608687996864319,0.55483865737915,0.473980575799942,-0.68373715877533,0.431862652301788,0.495141953229904,-0.753876090049744,0.360820025205612,0.544051468372345,-0.757507145404816, +0.497182548046112,0.526021420955658,-0.690008044242859,0.567529380321503,0.616897225379944,-0.545296430587769,0.415469467639923,0.593240082263947,-0.689529776573181,0.457260251045227,0.647692680358887,-0.609431982040405,0.670550584793091,0.627103805541992,-0.396361857652664,0.475375473499298,0.581177771091461,-0.660492718219757,0.417887985706329,0.567044019699097,-0.709810376167297,0.373084634542465,0.546890437602997,-0.749479055404663,0.407542556524277,0.568860828876495,-0.714357376098633,0.370716542005539,0.572275340557098,-0.731484949588776,0.417255520820618,0.57446163892746,-0.70419579744339,0.361630767583847,0.573891401290894,-0.73475968837738,0.33754625916481,0.565036654472351,-0.752858579158783,0.221215307712555,0.369062185287476,-0.902694284915924,0.212457120418549,0.395227462053299,-0.893676340579987,0.315664350986481,0.405079782009125,-0.858059763908386,0.324748069047928,0.378187835216522,-0.86689829826355,0.31585219502449,0.408089727163315,-0.856563091278076,0.212591215968132,0.400382369756699,-0.891346752643585,0.201327979564667,0.425014525651932,-0.882513403892517,0.302493274211884,0.434122860431671,-0.848548889160156,0.200174242258072,0.379769802093506,-0.903164029121399,0.212165012955666,0.384759247303009,-0.898301959037781,0.140373349189758,0.384390324354172,-0.912436068058014,0.131013110280037,0.379019379615784,-0.916067659854889,0.316817373037338,0.424489468336105,-0.848195433616638,0.473895490169525,0.410178750753403,-0.779215276241302,0.47902724146843,0.381464511156082,-0.790580630302429,0.325889497995377,0.395890444517136,-0.858525931835175,0.481925785541534,0.41096830368042,-0.773855626583099,0.476404190063477,0.436434954404831,-0.763258516788483,0.69491446018219,0.356552541255951,-0.624471187591553,0.700105845928192,0.329488724470139,-0.633473873138428,0.695686042308807,0.36234438419342,-0.620264112949371,0.477535784244537,0.450000196695328,-0.75462532043457,0.463470667600632,0.474580585956573,-0.748310327529907,0.696015238761902,0.382370710372925,-0.607746303081512,0.450882643461227,0.556866407394409,-0.697570621967316, +0.547615826129913,0.55739164352417,-0.62404453754425,0.481464713811874,0.554208636283875,-0.679002702236176,0.410065561532974,0.555117309093475,-0.723664939403534,0.4649977684021,0.621347010135651,-0.630638539791107,0.566623628139496,0.515399217605591,-0.642885208129883,0.759047865867615,0.42274022102356,-0.4951131939888,0.717056035995483,0.495549023151398,-0.490165084600449,0.888916611671448,0.370712518692017,0.269071668386459,0.890579283237457,0.36803212761879,0.267247021198273,0.897092223167419,0.339560270309448,0.282709240913391,0.895527780056,0.341953933238983,0.284776389598846,0.698609948158264,0.624403834342957,-0.349376767873764,0.745165765285492,0.634747505187988,-0.204508304595947,0.732769846916199,0.602907419204712,-0.31551730632782,0.677664399147034,0.591355264186859,-0.437115579843521,0.74311625957489,0.637259662151337,-0.204152747988701,0.810586392879486,0.583598494529724,-0.048605665564537,0.810860455036163,0.5481196641922,-0.205110058188438,0.739579200744629,0.593681216239929,-0.317120403051376,0.430201977491379,0.604408323764801,-0.670534789562225,0.364666372537613,0.558971881866455,-0.744693875312805,0.36998775601387,0.542069017887115,-0.754500031471252,0.418001711368561,0.575387060642242,-0.702996730804443,0.376635611057281,0.536210417747498,-0.755396664142609,0.407161861658096,0.5156010389328,-0.75390636920929,0.384888678789139,0.463970422744751,-0.797867178916931,0.36364072561264,0.487891644239426,-0.793553531169891,0.387477070093155,0.460495382547379,-0.798627316951752,0.428760677576065,0.492160141468048,-0.757589936256409,0.470604926347733,0.499749958515167,-0.727173328399658,0.409369975328445,0.462019771337509,-0.786736369132996,0.534400224685669,0.68581485748291,-0.494038879871368,0.534455001354218,0.637356817722321,-0.555098414421082,0.479168713092804,0.601762056350708,-0.63896781206131,0.479787111282349,0.642722606658936,-0.597253739833832,0.368683487176895,0.674593389034271,-0.639528155326843,0.48995652794838,0.671637535095215,-0.555738925933838,0.513381958007813,0.53254634141922,-0.672929048538208, +0.421410351991653,0.572892427444458,-0.702998995780945,0.492532700300217,0.551688551902771,-0.673090815544128,0.523950576782227,0.645750761032104,-0.555411398410797,0.603682279586792,0.668589770793915,-0.434229791164398,0.555076479911804,0.567319869995117,-0.608307719230652,0.252701044082642,0.591483950614929,-0.765695035457611,0.271142095327377,0.535737156867981,-0.799667298793793,0.190051704645157,0.505638062953949,-0.841552436351776,0.176101267337799,0.566617012023926,-0.804943203926086,0.140054613351822,0.536512732505798,-0.83218914270401,0.204687833786011,0.581278562545776,-0.787539303302765,0.209155380725861,0.559329509735107,-0.802124917507172,0.142111957073212,0.514803767204285,-0.845447361469269,0.265558153390884,0.514352023601532,-0.815426826477051,0.232934087514877,0.562506139278412,-0.793302297592163,0.333999186754227,0.572619497776031,-0.748699963092804,0.347842633724213,0.504831075668335,-0.790032386779785,0.321212887763977,0.659194588661194,-0.679915308952332,0.299948364496231,0.632342636585236,-0.714264571666718,0.271876573562622,0.583681464195251,-0.765113890171051,0.294469267129898,0.610736191272736,-0.73504376411438,0.189516454935074,0.627228677272797,-0.755425572395325,0.203900679945946,0.68139237165451,-0.70294314622879,0.155649498105049,0.642753005027771,-0.750094592571259,0.14025966823101,0.585016012191772,-0.798801243305206,0.252953171730042,0.591338992118835,-0.765723824501038,0.243164122104645,0.662456750869751,-0.708535313606262,0.322405457496643,0.700570404529572,-0.636596977710724,0.333568215370178,0.632408559322357,-0.699136435985565,0.0791104361414909,0.555185496807098,-0.827955722808838,0.0928899720311165,0.499498724937439,-0.8613201379776,0.0189065057784319,0.460283279418945,-0.887570858001709,0.00576193677261472,0.516725838184357,-0.856131553649902,-0.0908279418945313,0.514054358005524,-0.852935194969177,-0.00808335747569799,0.551789820194244,-0.833944022655487,0.0268732011318207,0.519430637359619,-0.854089975357056,-0.0550059452652931,0.485720038414001,-0.872382044792175,0.0582832396030426,0.501698970794678,-0.863076686859131, +0.0191925913095474,0.538403987884521,-0.842468321323395,0.102802291512489,0.558100819587708,-0.823380351066589,0.140288695693016,0.516019523143768,-0.845010638237,0.225760787725449,0.608851194381714,-0.760481715202332,0.196668982505798,0.566714584827423,-0.800097525119781,0.218757182359695,0.598104476928711,-0.770983934402466,0.244621634483337,0.638090014457703,-0.730069577693939,0.160241588950157,0.627811014652252,-0.761692881584167,0.146295711398125,0.592332422733307,-0.792300462722778,0.123115390539169,0.545666694641113,-0.828909277915955,0.143043339252472,0.587319850921631,-0.796614170074463,0.0389046855270863,0.585220336914063,-0.809940576553345,0.0810970216989517,0.622320652008057,-0.778550088405609,0.0606475919485092,0.563773572444916,-0.823699712753296,0.012445168569684,0.513666093349457,-0.857900023460388,-0.000593438802752644,0.472906887531281,-0.881112337112427,-0.0194548945873976,0.436306953430176,-0.899587512016296,-0.0283181965351105,0.416502416133881,-0.908693552017212,-0.00420327438041568,0.462647944688797,-0.886532127857208,-0.169133588671684,0.475935876369476,-0.86306369304657,-0.15454575419426,0.498814761638641,-0.852818667888641,-0.161277160048485,0.487904995679855,-0.857868492603302,-0.196466669440269,0.431876212358475,-0.880274891853333,-0.180024847388268,0.496518909931183,-0.849152505397797,-0.143348678946495,0.494033962488174,-0.8575439453125,-0.150075346231461,0.539896011352539,-0.828244924545288,-0.183441549539566,0.546428620815277,-0.817168951034546,-0.000282540946500376,0.51382702589035,-0.857893824577332,-0.00534290075302124,0.552943229675293,-0.833201885223389,-0.0196311343461275,0.481621503829956,-0.876159489154816,-0.00271131121553481,0.461986660957336,-0.886882841587067,-0.0621513426303864,0.500294089317322,-0.863622009754181,-0.0147115886211395,0.557030439376831,-0.830361843109131,0.0198175180703402,0.593431770801544,-0.804640412330627,-0.0298383831977844,0.532524764537811,-0.845888316631317,0.128964051604271,0.542715966701508,-0.829956531524658,0.0897922068834305,0.507923066616058,-0.856709718704224, +0.129876211285591,0.544107735157013,-0.828902304172516,0.165511250495911,0.575887262821198,-0.800599694252014,-0.0563023462891579,0.462965369224548,-0.884586453437805,-0.025865662842989,0.495580792427063,-0.868176698684692,-0.0492727681994438,0.472312033176422,-0.880053162574768,-0.0835921466350555,0.433811724185944,-0.897117555141449,-0.143077298998833,0.51350325345993,-0.846075296401978,-0.00994482636451721,0.487268090248108,-0.873195886611938,-0.112436175346375,0.562836647033691,-0.818885326385498,-0.256768345832825,0.555685520172119,-0.790748775005341,0.0122354328632355,0.507831156253815,-0.861369729042053,-0.00121922791004181,0.482641041278839,-0.87581741809845,0.006453737616539,0.499728083610535,-0.866158366203308,0.0313363932073116,0.541696429252625,-0.839989900588989,-0.26808762550354,0.364125221967697,-0.891931533813477,-0.218926340341568,0.425111293792725,-0.878266274929047,-0.260795801877975,0.376485198736191,-0.888957023620605,-0.318969756364822,0.295121341943741,-0.90064525604248,-0.247586518526077,0.370293110609055,-0.895312249660492,-0.218481659889221,0.424958050251007,-0.878451228141785,-0.185179606080055,0.482043027877808,-0.856354594230652,-0.210154235363007,0.438240230083466,-0.873945534229279,-0.141402825713158,0.465054392814636,-0.873916268348694,-0.211258292198181,0.422455996274948,-0.881419897079468,-0.144831284880638,0.457615971565247,-0.877275109291077,-0.0712326318025589,0.491032242774963,-0.868224263191223,-0.175588920712471,0.0105072632431984,-0.984407544136047,-0.143386244773865,0.204120829701424,-0.96838790178299,-0.15579392015934,0.0624350272119045,-0.985814452171326,-0.163331896066666,-0.112759843468666,-0.980106115341187,-0.178001001477242,0.0720534846186638,-0.981388866901398,-0.218778178095818,0.228303819894791,-0.948690474033356,-0.259765833616257,0.361599445343018,-0.89541482925415,-0.210763052105904,0.244003981351852,-0.946594476699829,-0.115641422569752,0.401016384363174,-0.908742487430573,-0.126783639192581,0.354860365390778,-0.926282942295074,-0.11629194021225,0.430226862430573,-0.895198941230774, +-0.118176721036434,0.403619647026062,-0.907262682914734,-0.14653767645359,0.431872576475143,-0.88995099067688,-0.141938865184784,0.356378585100174,-0.923497498035431,-0.152247607707977,0.255704551935196,-0.954691529273987,-0.156755402684212,0.427811861038208,-0.890171229839325,-0.160525619983673,0.0822592824697495,-0.983597993850708,-0.125963047146797,0.285686016082764,-0.950008869171143,-0.122199639678001,0.197137400507927,-0.972730278968811,-0.167892932891846,0.00827678013592958,-0.985770583152771,-0.201662987470627,0.422173053026199,-0.883799850940704,-0.17162498831749,0.466120660305023,-0.867914915084839,-0.180360779166222,0.468904107809067,-0.864638090133667,-0.214423775672913,0.409897565841675,-0.88657009601593,-0.164965957403183,0.464091360569,-0.870290517807007,-0.211643487215042,0.480599403381348,-0.851017773151398,-0.231470137834549,0.547386586666107,-0.80423229932785,-0.184057801961899,0.532857954502106,-0.825945019721985,-0.0664047002792358,0.480226337909698,-0.874627411365509,-0.115586996078491,0.4444460272789,-0.888317227363586,-0.157361924648285,0.418230772018433,-0.894606232643127,-0.111838340759277,0.450031638145447,-0.885981917381287,-0.0939369946718216,0.400052398443222,-0.911665439605713,-0.0695768594741821,0.425957411527634,-0.902063965797424,-0.0926058441400528,0.401572376489639,-0.911133289337158,-0.116635635495186,0.375802934169769,-0.919330298900604,-0.10297042131424,0.408442914485931,-0.906957268714905,-0.0793391466140747,0.432667911052704,-0.898055553436279,-0.0523483082652092,0.46053409576416,-0.886097073554993,-0.0800796672701836,0.431762874126434,-0.898425459861755,-0.0499015748500824,0.459024548530579,-0.887021124362946,-0.0758804231882095,0.430297166109085,-0.899492383003235,-0.0660902932286263,0.439668923616409,-0.895725131034851,-0.0380899012088776,0.470923572778702,-0.881351351737976,-0.447953999042511,-0.143896088004112,-0.882400870323181,-0.426510542631149,-0.0598613619804382,-0.902499556541443,-0.499872922897339,-0.0849560797214508,-0.861922025680542,-0.563889145851135,-0.224754795432091,-0.794678807258606, +-0.158228486776352,0.265999525785446,-0.95089852809906,-0.121167995035648,0.343041777610779,-0.931472301483154,-0.12646596133709,0.337563395500183,-0.932768702507019,-0.173798978328705,0.254276275634766,-0.951387166976929,-0.240063101053238,0.0754420682787895,-0.967821359634399,-0.180940553545952,0.158956184983253,-0.970563530921936,-0.207181349396706,0.139831975102425,-0.968257784843445,-0.279734045267105,0.0500326231122017,-0.958773016929626,-0.182749420404434,0.415903866291046,-0.89085727930069,-0.168577179312706,0.4073326587677,-0.897586643695831,-0.202545344829559,0.377972900867462,-0.903389096260071,-0.207147508859634,0.405118048191071,-0.890488266944885,-0.18678791821003,0.370647639036179,-0.909797072410583,-0.134651660919189,0.396697968244553,-0.908019721508026,-0.1227872595191,0.343644559383392,-0.931038022041321,-0.190675735473633,0.284343689680099,-0.939569890499115,-0.162422999739647,0.358102291822433,-0.919446408748627,-0.167901396751404,0.40712559223175,-0.89780730009079,-0.146485611796379,0.406807780265808,-0.901692569255829,-0.125417277216911,0.405059248209,-0.905647695064545,-0.362412393093109,-0.0508523806929588,-0.930629551410675,-0.319396942853928,0.0219393819570541,-0.947367072105408,-0.373726546764374,-0.00401830673217773,-0.927530288696289,-0.422517418861389,-0.0808624997735023,-0.90274041891098,-0.113199293613434,0.306742399930954,-0.945037126541138,-0.128749668598175,0.262269347906113,-0.956367254257202,-0.184699878096581,0.21237076818943,-0.959575176239014,-0.160362422466278,0.269599169492722,-0.949526369571686,-0.177369147539139,0.206699907779694,-0.962193012237549,-0.119075439870358,0.25595822930336,-0.959326028823853,-0.178602069616318,0.157169535756111,-0.971287369728088,-0.250101238489151,0.0845951437950134,-0.964516997337341,-0.20358707010746,0.176248952746391,-0.963062107563019,-0.163639381527901,0.284817844629288,-0.94451105594635,-0.103352501988411,0.330272108316422,-0.938210368156433,-0.12832997739315,0.248861581087112,-0.959999740123749,-0.707742094993591,-0.334503352642059,0.622260868549347, +-0.799080729484558,-0.28498449921608,0.529390215873718,-0.69367390871048,-0.379758566617966,0.612045705318451,-0.666392266750336,-0.379896134138107,0.641560912132263,-0.135969564318657,0.324350446462631,-0.936113834381104,-0.102279782295227,0.35230940580368,-0.9302778840065,-0.121581770479679,0.312000274658203,-0.942270576953888,-0.163550496101379,0.271933197975159,-0.948316216468811,-0.163915708661079,0.338170319795609,-0.926699876785278,-0.135906592011452,0.373404622077942,-0.917659282684326,-0.122458323836327,0.400175511837006,-0.908219993114471,-0.144181370735168,0.375166416168213,-0.915675640106201,-0.115381747484207,0.396444201469421,-0.910779476165771,-0.138888567686081,0.375251114368439,-0.916458785533905,-0.105436369776726,0.410068988800049,-0.905939698219299,-0.0804325714707375,0.431969046592712,-0.898294806480408,-0.114754259586334,0.323158085346222,-0.939361691474915,-0.091180682182312,0.351125329732895,-0.931878328323364,-0.113604120910168,0.324341624975204,-0.93909353017807,-0.139423117041588,0.294114232063293,-0.945546388626099,-0.124196998775005,0.333088874816895,-0.934680163860321,-0.101228982210159,0.359432399272919,-0.927664399147034,-0.0769284516572952,0.387169718742371,-0.918793618679047,-0.0985677987337112,0.362306475639343,-0.926832437515259,-0.0831128656864166,0.391873210668564,-0.916257500648499,-0.103240728378296,0.36108934879303,-0.926798760890961,-0.0973005741834641,0.376516997814178,-0.92128586769104,-0.0789379701018333,0.405569493770599,-0.910649418830872,-0.168330937623978,0.200796157121658,-0.96506255865097,-0.211730405688286,0.142467066645622,-0.966888546943665,-0.262313425540924,0.0923911482095718,-0.960549592971802,-0.214357912540436,0.15841706097126,-0.963822960853577,-0.26169016957283,0.0918025150895119,-0.960776090621948,-0.209274962544441,0.140330836176872,-0.967735171318054,-0.315502434968948,0.0179644245654345,-0.948754787445068,-0.369930177927017,-0.0427880249917507,-0.928073704242706,-0.311129361391068,0.0135129541158676,-0.950271487236023,-0.21600653231144,0.146188408136368,-0.965386092662811, +-0.161166355013847,0.194143146276474,-0.96764349937439,-0.246558994054794,0.0813619866967201,-0.965706467628479,0.466297775506973,-0.79454094171524,-0.388935923576355,0.445810198783875,-0.755017578601837,-0.480834543704987,0.422348082065582,-0.761279582977295,-0.492011517286301,0.44286173582077,-0.80077588558197,-0.403275907039642,-0.168511241674423,0.258126974105835,-0.951301395893097,-0.132938265800476,0.30250284075737,-0.943832337856293,-0.157342046499252,0.26949280500412,-0.950061619281769,-0.199708998203278,0.217063844203949,-0.955510139465332,-0.154856756329536,0.267191559076309,-0.951119422912598,-0.128709509968758,0.298607170581818,-0.945657312870026,-0.112075924873352,0.320780754089355,-0.940499246120453,-0.136168092489243,0.291202038526535,-0.946921110153198,-0.116744883358479,0.324922949075699,-0.93850713968277,-0.136859744787216,0.306109577417374,-0.942107439041138,-0.125573247671127,0.316017031669617,-0.940406680107117,-0.10381006449461,0.336791068315506,-0.935839414596558,-0.169706374406815,0.229600071907043,-0.958375513553619,-0.129847764968872,0.260939121246338,-0.95658266544342,-0.170155495405197,0.202299222350121,-0.964428424835205,-0.216885715723038,0.160676434636116,-0.962882995605469,-0.183879598975182,0.213593184947968,-0.959461450576782,-0.147030279040337,0.274898916482925,-0.950164616107941,-0.108968302607536,0.304658740758896,-0.946207761764526,-0.138747230172157,0.253706008195877,-0.957278728485107,-0.121021762490273,0.313483059406281,-0.941850423812866,-0.148825451731682,0.276352614164352,-0.949463129043579,-0.112414881587029,0.323356598615646,-0.939576268196106,-0.0889362841844559,0.35504537820816,-0.930608987808228,-0.245450735092163,0.12043485045433,-0.961898922920227,-0.298543125391006,0.0582601726055145,-0.952616333961487,-0.343174070119858,0.0045354668982327,-0.939260959625244,-0.293715387582779,0.0655041933059692,-0.953646004199982,-0.344508588314056,0.00589188933372498,-0.938764691352844,-0.301527500152588,0.0611371845006943,-0.951495409011841,-0.418657124042511,-0.0682508274912834,-0.905576050281525, +-0.461241364479065,-0.129612967371941,-0.877756714820862,-0.411107152700424,-0.0762481689453125,-0.908392667770386,-0.297982960939407,0.0577206388115883,-0.952824473381042,-0.261048913002014,0.0911969915032387,-0.961008191108704,-0.376808345317841,-0.0353599600493908,-0.925616085529327,-0.241672441363335,0.143151432275772,-0.95974063873291,-0.189843788743019,0.193283393979073,-0.962601125240326,-0.247302055358887,0.12213721871376,-0.961209833621979,-0.298277676105499,0.0700430572032928,-0.951905727386475,-0.249547347426414,0.12420280277729,-0.960364460945129,-0.193832486867905,0.196929469704628,-0.961066007614136,-0.161321699619293,0.222202628850937,-0.961561918258667,-0.212819531559944,0.157042250037193,-0.964388787746429,-0.165604531764984,0.225982546806335,-0.959951639175415,-0.198813140392303,0.201481401920319,-0.959103107452393,-0.150936558842659,0.263558477163315,-0.952761828899384,-0.123664312064648,0.279982268810272,-0.952006936073303,0.105389624834061,0.254120886325836,-0.961413383483887,0.0978369042277336,0.249726593494415,-0.963361084461212,0.154897153377533,0.252795100212097,-0.955040097236633,0.162663206458092,0.257101356983185,-0.952596306800842,0.155293643474579,0.29167976975441,-0.943825721740723,0.0968716442584991,0.288384258747101,-0.952601969242096,0.0899930968880653,0.283525228500366,-0.954732835292816,0.147937923669815,0.286914378404617,-0.94646430015564,0.0905004143714905,0.260128051042557,-0.9613236784935,0.0975093171000481,0.263618171215057,-0.959686100482941,0.0383082218468189,0.259043097496033,-0.965105772018433,0.0301813334226608,0.255441665649414,-0.966353297233582,0.220122784376144,0.337203919887543,-0.915335714817047,0.226734891533852,0.313843637704849,-0.922005176544189,0.15532810986042,0.296967715024948,-0.942169487476349,0.148229256272316,0.320181518793106,-0.935687959194183,0.155212461948395,0.28132152557373,-0.946978032588959,0.226110279560089,0.298253536224365,-0.927318215370178,0.232321679592133,0.275315821170807,-0.93286007642746,0.162672027945518,0.258422940969467,-0.952237129211426, +0.232780560851097,0.287571132183075,-0.929040372371674,0.22663351893425,0.311211317777634,-0.92292195558548,0.327112138271332,0.319538027048111,-0.889321744441986,0.330259740352631,0.296300679445267,-0.896177709102631,0.13090144097805,0.180904343724251,-0.974750459194183,0.117244802415371,0.1785649061203,-0.976917743682861,0.171244710683823,0.180293411016464,-0.968591570854187,0.183025822043419,0.182554811239243,-0.966009974479675,0.17157207429409,0.224832981824875,-0.959173202514648,0.115913435816765,0.222216114401817,-0.968082785606384,0.106342352926731,0.218477189540863,-0.970030426979065,0.16230908036232,0.221178904175758,-0.961631774902344,0.106816805899143,0.198234707117081,-0.974316775798798,0.116596251726151,0.200827106833458,-0.972663342952728,0.0628884732723236,0.197045877575874,-0.978375136852264,0.0515670627355576,0.194316253066063,-0.979582667350769,0.32801952958107,0.331324189901352,-0.884662389755249,0.477077782154083,0.316999018192291,-0.819700241088867,0.475552290678024,0.294985413551331,-0.828754365444183,0.331061720848083,0.307598978281021,-0.892065644264221,0.47804394364357,0.317546874284744,-0.818924903869629,0.479808866977692,0.339588969945908,-0.808988749980927,0.694943487644196,0.265878230333328,-0.668103575706482,0.691923499107361,0.246387138962746,-0.678627610206604,0.699111044406891,0.291402101516724,-0.652938425540924,0.482776314020157,0.367326200008392,-0.794983446598053,0.480244815349579,0.393234491348267,-0.784048199653625,0.698231518268585,0.316603988409042,-0.642055034637451,0.24822224676609,0.203617736697197,-0.947061538696289,0.237811833620071,0.200611412525177,-0.950368762016296,0.328372895717621,0.194171190261841,-0.92437481880188,0.336640417575836,0.197179421782494,-0.920757114887238,0.332794457674026,0.249989598989487,-0.909259676933289,0.239550292491913,0.244424924254417,-0.939612746238708,0.23184423148632,0.263487279415131,-0.936388194561005,0.328120082616806,0.26877436041832,-0.905592441558838,0.231503397226334,0.255513787269592,-0.938679337501526,0.239276975393295,0.236674025654793,-0.941664457321167, +0.171567261219025,0.22345919907093,-0.959495067596436,0.162543147802353,0.242215767502785,-0.956510007381439,0.515864014625549,-0.755081832408905,-0.404642760753632,0.526536762714386,-0.733549654483795,-0.429725527763367,0.521158874034882,-0.743520677089691,-0.419011265039444,0.522027671337128,-0.742589712142944,-0.419580399990082,0.376613318920135,-0.726386904716492,-0.57491260766983,0.361508250236511,-0.783299326896667,-0.5057213306427,0.361229211091995,-0.784885108470917,-0.503456950187683,0.375082910060883,-0.730319142341614,-0.57091748714447,0.380298227071762,-0.729678690433502,-0.568280160427094,0.36358106136322,-0.785945534706116,-0.500098466873169,0.358351826667786,-0.788621962070465,-0.499659329652786,0.376184970140457,-0.727695047855377,-0.573537170886993,0.514599084854126,-0.696808516979218,-0.499645709991455,0.511353433132172,-0.696224689483643,-0.503774762153625,0.482594132423401,-0.755858659744263,-0.4424709379673,0.49454328417778,-0.737792611122131,-0.459444314241409,0.546449422836304,-0.709613561630249,-0.444793939590454,0.551477134227753,-0.693461418151855,-0.463663876056671,0.537376284599304,-0.722121298313141,-0.435623377561569,0.537676870822906,-0.725314438343048,-0.429910004138947,0.682339251041412,0.716236412525177,0.146351024508476,0.654148995876312,0.755653977394104,0.0328064896166325,0.686915099620819,0.726406753063202,0.0219289530068636,0.714675605297089,0.686657428741455,0.13319319486618,0.730955541133881,0.655322194099426,-0.190412387251854,0.748995125293732,0.638640224933624,-0.176479503512383,0.818884134292603,0.571881413459778,-0.0487899780273438,0.810493469238281,0.583604753017426,-0.0500580668449402,0.371148228645325,0.805659353733063,0.461694926023483,0.381727397441864,0.81045788526535,0.444344699382782,0.333496183156967,0.86492657661438,0.375076651573181,0.315781146287918,0.869101107120514,0.380717098712921,0.24147655069828,0.805051922798157,0.541830837726593,0.282137036323547,0.8094322681427,0.514993369579315,0.207380712032318,0.87316507101059,0.441107869148254,0.166526436805725,0.866003513336182,0.471494257450104, +0.0872347354888916,0.792389929294586,0.60374528169632,0.104009389877319,0.798943340778351,0.592344224452972,0.0664835572242737,0.856980860233307,0.511041939258575,0.0488516353070736,0.852293968200684,0.520776867866516,-0.0130443125963211,0.780777454376221,0.624673128128052,0.0158673729747534,0.784168899059296,0.620344698429108,-0.022685531526804,0.844161570072174,0.53560870885849,-0.0509949773550034,0.838690638542175,0.542215347290039,0.0413583442568779,0.782574951648712,0.621181130409241,-0.0279285702854395,0.840273678302765,0.541442692279816,-0.0908528938889503,0.833036184310913,0.545707404613495,-0.0233475007116795,0.782786071300507,0.62185275554657,-0.800737917423248,-0.308176517486572,0.513659358024597,-0.917270481586456,-0.223267406225204,0.329797744750977,-0.920412361621857,-0.237133681774139,0.310819357633591,-0.920499444007874,-0.219402000308037,0.323332160711288,-0.922999978065491,-0.246798500418663,0.295231372117996,-0.925806164741516,-0.247275426983833,0.285898417234421,-0.926082491874695,-0.243585467338562,0.288162291049957,-0.922985196113586,-0.243340700864792,0.298133462667465,-0.941500782966614,-0.0918689221143723,0.324247509241104,-0.941715896129608,-0.110594488680363,0.317710697650909,-0.960017502307892,-0.070691391825676,0.270867437124252,-0.959864616394043,-0.0530937798321247,0.275392591953278,-0.919229626655579,0.337882041931152,0.202120333909988,-0.939228653907776,0.247496902942657,0.237897157669067,-0.957869052886963,0.191740155220032,0.213828414678574,-0.942861974239349,0.283718347549438,0.174686521291733,-0.693651497364044,-0.377451807260513,-0.613496363162994,-0.679090738296509,-0.384705036878586,-0.625170230865479,-0.667137503623962,-0.396139204502106,-0.630873560905457,-0.68236368894577,-0.389889270067215,-0.61835765838623,-0.654251575469971,-0.434986978769302,-0.618660867214203,-0.651627600193024,-0.432956218719482,-0.622840642929077,-0.650850415229797,-0.433403551578522,-0.623341858386993,-0.653555393218994,-0.435536086559296,-0.619010210037231,-0.604703068733215,-0.509331881999969,-0.612303197383881, +-0.601728796958923,-0.498827159404755,-0.623773992061615,-0.604216575622559,-0.495841860771179,-0.623749375343323,-0.607208549976349,-0.50606894493103,-0.612529277801514,-0.649425208568573,-0.462307661771774,-0.603753805160522,-0.652584314346313,-0.457991927862167,-0.603636622428894,-0.657322824001312,-0.473029851913452,-0.586659610271454,-0.653839826583862,-0.477386057376862,-0.587023138999939,-0.571807742118835,-0.577747344970703,-0.58244663476944,-0.556985974311829,-0.59007716178894,-0.584444761276245,-0.580460965633392,-0.593264400959015,-0.557765662670135,-0.595413386821747,-0.581463754177094,-0.554421246051788,-0.467901289463043,-0.692087531089783,-0.549621105194092,-0.449571073055267,-0.701214194297791,-0.553339421749115,-0.473763972520828,-0.713832676410675,-0.515742897987366,-0.492271065711975,-0.706308841705322,-0.508721113204956,-0.332921892404556,-0.806171476840973,-0.489132434129715,-0.347060471773148,-0.80396044254303,-0.482904344797134,-0.330117464065552,-0.777113914489746,-0.535832464694977,-0.315764427185059,-0.780503392219543,-0.539543688297272,-0.442297130823135,-0.457219183444977,0.771572351455688,-0.446516811847687,-0.456216990947723,0.769733071327209,-0.442438036203384,-0.453530997037888,0.773665428161621,-0.438203871250153,-0.454372614622116,0.77557909488678,-0.559859097003937,-0.400073081254959,0.725602805614471,-0.566389560699463,-0.411769539117813,0.713896930217743,-0.57225227355957,-0.410270631313324,0.710074186325073,-0.565864145755768,-0.398241430521011,0.721942901611328,-0.724499762058258,-0.311968266963959,0.614634811878204,-0.725989937782288,-0.311332851648331,0.613197028636932,-0.72432667016983,-0.310314685106277,0.61567497253418,-0.722876787185669,-0.31138014793396,0.616840004920959,-0.838505744934082,-0.232698425650597,0.492706507444382,-0.829552292823792,-0.236693441867828,0.505785822868347,-0.820933222770691,-0.244343370199203,0.516105651855469,-0.830179810523987,-0.241027012467384,0.50270026922226,-0.91953718662262,-0.133277907967567,0.369714140892029,-0.919153451919556,-0.134138897061348,0.370356291532516, +-0.918704867362976,-0.128819018602371,0.373345732688904,-0.919131517410278,-0.128201827406883,0.372507154941559,-0.954863429069519,-0.0602353662252426,0.290873944759369,-0.956803262233734,-0.0721692740917206,0.281636387109756,-0.956626415252686,-0.0732680931687355,0.281953394412994,-0.954653024673462,-0.0609195306897163,0.291421562433243,-0.987543106079102,0.109274834394455,0.113215290009975,-0.989668071269989,0.104623526334763,0.0980357900261879,-0.989757120609283,0.108760543167591,0.092477098107338,-0.987572073936462,0.114045366644859,0.108144387602806,-0.960506319999695,0.275954931974411,-0.0357304513454437,-0.958929896354675,0.281432062387466,-0.0353504307568073,-0.959887862205505,0.278476536273956,-0.0326537787914276,-0.961487650871277,0.272828906774521,-0.0332562029361725,-0.935844659805298,0.340415447950363,-0.0911705568432808,-0.933605194091797,0.345325469970703,-0.0955593883991241,-0.931424736976624,0.349771201610565,-0.100539185106754,-0.933769226074219,0.344623297452927,-0.096487358212471,-0.785517454147339,0.568146109580994,-0.245300695300102,-0.783899247646332,0.570021510124207,-0.246125429868698,-0.782017707824707,0.573090314865112,-0.244981229305267,-0.783557713031769,0.571594715118408,-0.243550300598145,-0.605893671512604,0.717605173587799,-0.343417704105377,-0.604646325111389,0.718583285808563,-0.343570739030838,-0.603537678718567,0.718103647232056,-0.346510589122772,-0.604726850986481,0.717790544033051,-0.345082938671112,-0.48787048459053,0.780990600585938,-0.389918118715286,-0.488592177629471,0.780091762542725,-0.390812784433365,-0.489273011684418,0.7767054438591,-0.396661847829819,-0.488602012395859,0.777219951152802,-0.396481066942215,-0.383441060781479,0.823807597160339,-0.417509347200394,-0.377060323953629,0.826321303844452,-0.418352514505386,-0.370733737945557,0.829472303390503,-0.417770594358444,-0.377133071422577,0.826965391635895,-0.417011946439743,-0.250155329704285,0.866503477096558,-0.431965202093124,-0.24641053378582,0.867574214935303,-0.431968718767166,-0.2486961632967,0.859632611274719,-0.446298092603683, +-0.252596020698547,0.858393609523773,-0.446492820978165,0.0793889462947845,0.478215366601944,-0.874647080898285,0.0775042250752449,0.491138219833374,-0.867626845836639,0.0773725956678391,0.490535289049149,-0.867979645729065,0.0793453529477119,0.477520436048508,-0.875030696392059,-0.0951334461569786,0.472751706838608,-0.876045346260071,-0.0861232429742813,0.474825978279114,-0.875855624675751,-0.0783909857273102,0.482295244932175,-0.872494161128998,-0.0873889848589897,0.480128735303879,-0.872834205627441,-0.261301875114441,0.432342112064362,-0.863018870353699,-0.26393261551857,0.431398302316666,-0.86269074678421,-0.261809140443802,0.434055089950562,-0.862004816532135,-0.259204149246216,0.435081839561462,-0.862274348735809,-0.448214471340179,0.349334120750427,-0.822842359542847,-0.437185436487198,0.354787081480026,-0.826435208320618,-0.426327049732208,0.360854744911194,-0.829475283622742,-0.437288224697113,0.355072408914566,-0.826258182525635,-0.604426443576813,0.246054843068123,-0.757710933685303,-0.594156980514526,0.254172146320343,-0.763134360313416,-0.586643397808075,0.268688887357712,-0.763973832130432,-0.59682822227478,0.260133683681488,-0.759030103683472,-0.742804408073425,0.125594928860664,-0.657622694969177,-0.735554814338684,0.134080573916435,-0.664064466953278,-0.742430329322815,0.124876990914345,-0.658181548118591,-0.749422609806061,0.116115555167198,-0.651830494403839,-0.823030114173889,-0.0160957276821136,-0.567769646644592,-0.826139688491821,-0.0231565851718187,-0.56298953294754,-0.814682602882385,-0.0533671528100967,-0.577446341514587,-0.81277722120285,-0.0452970266342163,-0.580811023712158,-0.853955507278442,-0.194845020771027,-0.48248878121376,-0.857443332672119,-0.213047668337822,-0.468403458595276,-0.859736204147339,-0.232098340988159,-0.454955041408539,-0.855342209339142,-0.21589320898056,-0.470935136079788,-0.875337362289429,-0.339258104562759,-0.344512164592743,-0.87610399723053,-0.347300171852112,-0.334401518106461,-0.87721860408783,-0.354669660329819,-0.32356932759285,-0.877837300300598,-0.345133394002914,-0.332091450691223, +-0.849854171276093,-0.488317996263504,-0.198226064443588,-0.847564697265625,-0.492917478084564,-0.196637496352196,-0.846534252166748,-0.49603271484375,-0.193213611841202,-0.846869111061096,-0.493711829185486,-0.197639688849449,-0.777285695075989,-0.62856650352478,-0.0270416587591171,-0.778676509857178,-0.627017974853516,-0.0226123034954071,-0.792976498603821,-0.609238624572754,0.00407266616821289,-0.792794406414032,-0.609484076499939,0.00252000987529755,-0.672315061092377,-0.726535618305206,0.141910284757614,-0.666076958179474,-0.731267392635345,0.146933987736702,-0.678231835365295,-0.718357920646667,0.154801741242409,-0.684357702732086,-0.71355265378952,0.149990558624268,-0.527416229248047,-0.816902160644531,0.23345884680748,-0.534598052501678,-0.811542510986328,0.235804587602615,-0.539586782455444,-0.809102118015289,0.232808709144592,-0.532425045967102,-0.814500153064728,0.230462908744812,-0.413630783557892,-0.86425256729126,0.286316454410553,-0.425590038299561,-0.858393728733063,0.286414802074432,-0.415748506784439,-0.861391127109528,0.291819423437119,-0.403667449951172,-0.867254137992859,0.291415452957153,-0.36896875500679,-0.876441299915314,0.309374958276749,-0.349842727184296,-0.880953848361969,0.318638563156128,-0.331814050674438,-0.883292496204376,0.331200540065765,-0.350897520780563,-0.87948352098465,0.321527391672134,-0.192346602678299,-0.892650127410889,0.407650083303452,-0.188339784741402,-0.892925024032593,0.408917039632797,-0.184237584471703,-0.893367886543274,0.409817725419998,-0.188328772783279,-0.892947018146515,0.408873975276947,-0.0713930726051331,-0.901720345020294,0.426384299993515,-0.0990927889943123,-0.899051308631897,0.426482766866684,-0.0730106011033058,-0.898493826389313,0.432872235774994,-0.0451693013310432,-0.900779247283936,0.43192195892334,-0.181228294968605,-0.47180363535881,0.862877547740936,-0.172413900494576,-0.472010552883148,0.864568948745728,-0.162324219942093,-0.482731521129608,0.860593557357788,-0.171144247055054,-0.482185572385788,0.859189629554749,0.069255642592907,-0.484388530254364,-0.87210750579834, +0.164079025387764,-0.504783093929291,-0.847509384155273,0.0800948813557625,-0.453896701335907,-0.88744729757309,-0.014243483543396,-0.425309479236603,-0.904935896396637,-0.230637490749359,0.506638705730438,-0.830736756324768,-0.420219123363495,0.30900502204895,-0.85318922996521,-0.556252300739288,0.0726015344262123,-0.827835917472839,-0.408750593662262,0.300884485244751,-0.861621379852295,-0.798051357269287,0.200329348444939,-0.568315446376801,-0.830803632736206,0.154181733727455,-0.534783601760864,-0.859958171844482,0.107308253645897,-0.498955845832825,-0.832103252410889,0.156996756792068,-0.531936347484589,-0.278177440166473,-0.746975421905518,0.603858530521393,-0.29596871137619,-0.750253438949585,0.591204106807709,-0.295813053846359,-0.750356912612915,0.591150760650635,-0.277958005666733,-0.747101008892059,0.603804230690002,-0.163387447595596,0.794185519218445,-0.585298180580139,-0.188848719000816,0.782090306282043,-0.593860983848572,-0.173554286360741,0.805395126342773,-0.56676059961319,-0.146799713373184,0.815612494945526,-0.559666156768799,0.169013440608978,-0.0713102295994759,-0.983030736446381,0.154115363955498,-0.0730590149760246,-0.985348165035248,0.139174580574036,-0.0747222825884819,-0.987444698810577,0.154088959097862,-0.0728189945220947,-0.985369980335236,-0.00901523232460022,-0.0918305218219757,-0.995733857154846,0.114250883460045,-0.0775611475110054,-0.990419685840607,0.235767617821693,-0.0622137039899826,-0.969816088676453,0.114261150360107,-0.077653780579567,-0.990411162376404,0.0774945765733719,-0.0819258764386177,-0.993621110916138,0.0926246419548988,-0.0801041796803474,-0.992473661899567,0.107737697660923,-0.078305222094059,-0.991090774536133,0.0926282778382301,-0.0801369622349739,-0.992470681667328,0.120906345546246,-0.0767223462462425,-0.989694595336914,0.159781575202942,-0.0721589773893356,-0.984511494636536,0.19838285446167,-0.0672595947980881,-0.977814137935638,0.159758880734444,-0.0719537287950516,-0.984530210494995,0.196803390979767,-0.0674677938222885,-0.978118896484375,0.196832269430161,-0.0677267760038376,-0.978095233440399, +0.196802794933319,-0.0674620568752289,-0.978119492530823,0.135311707854271,-0.0748664811253548,-0.987970530986786,0.15901954472065,-0.0724634006619453,-0.984612584114075,0.13537110388279,-0.0754127204418182,-0.987920939922333,0.111633062362671,-0.0782150775194168,-0.990666747093201,0.512543439865112,-0.773405790328979,-0.373018592596054,0.500555694103241,-0.774571657180786,-0.386629909276962,0.511878609657288,-0.780043601989746,-0.35987800359726,0.523356020450592,-0.780455648899078,-0.34203428030014,-0.727867007255554,0.523355603218079,0.443067252635956,-0.667986989021301,0.617561817169189,0.415223777294159,-0.602934956550598,0.672878861427307,0.428606569766998,-0.66876095533371,0.584459006786346,0.459528625011444,-0.0988996103405952,-0.650139033794403,0.753351211547852,-0.310229986906052,-0.675924360752106,0.668493568897247,-0.0945940613746643,-0.669525682926178,0.736741006374359,0.126956358551979,-0.633794963359833,0.76301121711731,0.384919852018356,-0.798177480697632,0.463410794734955,0.839345097541809,-0.420227646827698,0.34483140707016,0.988440692424774,0.111364305019379,0.102873481810093,0.836823582649231,-0.412988305091858,0.359398007392883,0.571305334568024,-0.756519079208374,-0.318259805440903,0.517134368419647,-0.783630073070526,-0.344232559204102,0.572701573371887,-0.74603682756424,-0.33976748585701,0.624732315540314,-0.714728713035583,-0.314439803361893,0.991594612598419,0.0415010526776314,-0.122547447681427,0.994919180870056,0.0996638536453247,0.0142531283199787,0.990507006645203,0.0541970208287239,-0.126327574253082,0.967531621456146,-0.0493616536259651,-0.247883170843124,0.0432867631316185,-0.0877237170934677,-0.995203971862793,0.0862506181001663,-0.0811709016561508,-0.992961287498474,0.129233121871948,-0.0761465728282928,-0.988686263561249,0.0864378809928894,-0.0829113498330116,-0.992801249027252,0.428895115852356,0.288528174161911,-0.856037795543671,0.429474502801895,0.286819726228714,-0.856321334838867,0.478647440671921,0.334468305110931,-0.811805129051208,0.477978438138962,0.336107492446899,-0.811522245407104, +0.226009249687195,-0.0636949688196182,-0.972040593624115,0.252361714839935,-0.0601780563592911,-0.965759873390198,0.226001814007759,-0.0636267140507698,-0.972046792507172,0.199481427669525,-0.0671027451753616,-0.977601408958435,0.0636376217007637,-0.0839990451931953,-0.994431793689728,0.184973448514938,-0.0694886669516563,-0.980283796787262,0.303528130054474,-0.0540914572775364,-0.951285898685455,0.184991464018822,-0.0696545764803886,-0.980268537998199,0.159182652831078,-0.0724958255887032,-0.984583854675293,0.184670686721802,-0.0693403780460358,-0.980351388454437,0.210052594542503,-0.0663105919957161,-0.975438833236694,0.184689059853554,-0.0695090815424919,-0.98033595085144,0.208066821098328,-0.0662532076239586,-0.975868284702301,0.244466036558151,-0.061467207968235,-0.967707693576813,0.280548334121704,-0.0568583309650421,-0.958154380321503,0.244486093521118,-0.0616512559354305,-0.967691004276276,0.170742556452751,-0.0707811713218689,-0.982770085334778,0.157341182231903,-0.0723563060164452,-0.984890103340149,0.170734837651253,-0.0707102045416832,-0.982776582241058,0.184114322066307,-0.0692123919725418,-0.980464994907379,0.30119651556015,-0.0537817887961864,-0.952044308185577,0.301203995943069,-0.0538509637117386,-0.952037930488586,0.301213979721069,-0.0539432242512703,-0.952029645442963,0.126040577888489,-0.0780747011303902,-0.988948047161102,0.127868592739105,-0.0779452547430992,-0.988723516464233,0.129687264561653,-0.0777329429984093,-0.988503396511078,0.127859532833099,-0.0778614655137062,-0.988731265068054,0.111639648675919,-0.079685389995575,-0.99054878950119,0.123506888747215,-0.0783759653568268,-0.989243805408478,0.135346710681915,-0.0769663006067276,-0.987804412841797,0.123497195541859,-0.0782860666513443,-0.989252150058746,0.087118998169899,-0.0809417143464088,-0.992904245853424,0.0858944654464722,-0.082682803273201,-0.992867469787598,0.0872901454567909,-0.0825242847204208,-0.992758870124817,0.0885148942470551,-0.080786257982254,-0.992793381214142,0.0781506970524788,-0.0818606466054916,-0.993575036525726, +0.0701179057359695,-0.0827656909823418,-0.994099259376526,0.0749322921037674,-0.0822178646922112,-0.993793487548828,0.07773407548666,-0.0820167139172554,-0.993594825267792,0.0869539529085159,-0.0809658318758011,-0.992916762828827,0.080541655421257,-0.0815888345241547,-0.993406414985657,0.0909784883260727,-0.080561563372612,-0.992588996887207,0.0827068164944649,-0.0813398510217667,-0.993248879909515,0.0909603983163834,-0.0803928151726723,-0.992604315280914,0.0992258414626122,-0.0796106904745102,-0.991875171661377,0.0763984471559525,-0.0821817442774773,-0.993684828281403,0.0202490277588367,-0.0884501188993454,-0.995874762535095,0.0764029696583748,-0.0822239518165588,-0.993680953979492,0.132308781147003,-0.0756983757019043,-0.988313794136047,0.134999126195908,-0.0753667950630188,-0.987975299358368,0.061058834195137,-0.0839097574353218,-0.994601011276245,0.135000422596931,-0.0753788948059082,-0.987974166870117,0.208187386393547,-0.0664194896817207,-0.975831210613251,0.140001058578491,-0.0747917294502258,-0.987322628498077,0.0166147463023663,-0.0887750014662743,-0.995913147926331,0.139998942613602,-0.074771836400032,-0.987324476242065,0.261216312646866,-0.0596312992274761,-0.963436663150787,0.0851958617568016,-0.0812436640262604,-0.993046462535858,0.058306597173214,-0.0842195674777031,-0.994739949703217,0.0313806533813477,-0.0871912837028503,-0.995697259902954,0.0583127327263355,-0.0842768549919128,-0.994734704494476,0.0425281263887882,-0.086125873029232,-0.995376229286194,0.0614569783210754,-0.0839268788695335,-0.994574964046478,0.0803735330700874,-0.0817914679646492,-0.993403375148773,0.061466746032238,-0.0840179920196533,-0.994566679000854,0.0483509376645088,-0.0856102630496025,-0.995154857635498,0.104106470942497,-0.0791613459587097,-0.991410791873932,0.15954577922821,-0.0725854337215424,-0.98451840877533,0.104118898510933,-0.0792771652340889,-0.991400241851807,0.0312659293413162,-0.0876402631402016,-0.995661377906799,0.129178449511528,-0.0763444229960442,-0.988678216934204,0.225844994187355,-0.064445935189724,-0.972029268741608, +0.129192277789116,-0.0764733627438545,-0.988666415214539,0.232296079397202,-0.0644846707582474,-0.970505237579346,0.186578944325447,-0.0695200115442276,-0.979977250099182,0.14052751660347,-0.0751236155629158,-0.987222611904144,0.186656549572945,-0.0702414959669113,-0.979910969734192,0.130502074956894,-0.0773735046386719,-0.988424360752106,0.0970005691051483,-0.0809966176748276,-0.99198317527771,0.0634295120835304,-0.0849101990461349,-0.994367659091949,0.0970434844493866,-0.0813836604356766,-0.99194723367691,0.194335624575615,-0.0695807933807373,-0.978464245796204,0.19154204428196,-0.0696452036499977,-0.979010403156281,0.207215636968613,-0.0676687583327293,-0.9759521484375,0.200153008103371,-0.0686486139893532,-0.977356791496277,0.182310491800308,-0.0708812326192856,-0.980682790279388,0.182950764894485,-0.0709610730409622,-0.980557799339294,0.110847912728786,-0.0794773250818253,-0.990654468536377,0.0786040425300598,-0.0843515992164612,-0.993330895900726,0.0461620315909386,-0.0880925804376602,-0.995042085647583,0.0784789025783539,-0.0832246318459511,-0.993435800075531,0.235547125339508,-0.0647309869527817,-0.969704866409302,0.0993040651082993,-0.0815427005290985,-0.991710484027863,-0.0388232171535492,-0.0971019864082336,-0.994517028331757,0.0993413552641869,-0.0818792954087257,-0.991678953170776,0.0213429126888514,-0.0905586630105972,-0.995662450790405,0.0887749791145325,-0.0823945999145508,-0.992638051509857,0.155836433172226,-0.0742143169045448,-0.984991014003754,0.0888161808252335,-0.082766018807888,-0.992603480815887,0.221935898065567,-0.0681725591421127,-0.972675204277039,0.20499823987484,-0.0682437717914581,-0.976380348205566,0.188214436173439,-0.0703083425760269,-0.979608118534088,0.205217152833939,-0.0702896788716316,-0.976189136505127,0.234090924263,-0.0665747970342636,-0.969932675361633,0.217243328690529,-0.0687690749764442,-0.973692119121552,0.200325772166252,-0.0709031522274017,-0.977160394191742,0.217238649725914,-0.0687249973416328,-0.973696231842041,0.183566853404045,-0.0728569552302361,-0.980303585529327, +0.20092661678791,-0.0707732066512108,-0.977046430110931,0.218215867877007,-0.0686012580990791,-0.973486423492432,0.200920253992081,-0.0707130506634712,-0.977052092552185,0.165855675935745,-0.0749306231737137,-0.983299195766449,0.184243053197861,-0.0727738216519356,-0.980182945728302,0.202556744217873,-0.0705088973045349,-0.976728916168213,0.184234797954559,-0.0726959779858589,-0.980190217494965,0.154687941074371,-0.0761691406369209,-0.985022783279419,0.165926650166512,-0.074922040104866,-0.983287930488586,0.177133142948151,-0.0735656470060349,-0.981433689594269,0.165916383266449,-0.0748249962925911,-0.983296990394592,0.141747623682022,-0.0775864869356155,-0.98685759305954,0.149457052350044,-0.0767944529652596,-0.98578155040741,0.157145038247108,-0.0758817121386528,-0.984655976295471,0.14944489300251,-0.0766795873641968,-0.985792338848114,0.13261841237545,-0.0785193964838982,-0.988052248954773,0.136304378509521,-0.0782302692532539,-0.987573385238647,0.139974102377892,-0.0778049230575562,-0.987093567848206,0.136290162801743,-0.0780961290001869,-0.98758602142334,0.119325079023838,-0.079912431538105,-0.989634096622467,0.122327335178852,-0.0797257870435715,-0.989282488822937,0.125312373042107,-0.0793864876031876,-0.988936126232147,0.122311241924763,-0.0795741230249405,-0.989296734333038,0.109210729598999,-0.0815003886818886,-0.990671873092651,0.108894474804401,-0.0811231583356857,-0.990737676620483,0.108622655272484,-0.081164687871933,-0.990764081478119,0.108938120305538,-0.0815343037247658,-0.990699052810669,-0.0427475236356258,-0.0980768799781799,-0.994260370731354,0.148232400417328,-0.0767880007624626,-0.985966920852661,-0.0427319295704365,-0.0982224345207214,-0.9942467212677,-0.232161402702332,-0.115594401955605,-0.965784132480621,0.137847065925598,-0.0779859945178032,-0.987378597259521,0.107946552336216,-0.0816511884331703,-0.990798056125641,0.0996954366564751,-0.0826016813516617,-0.991583585739136,0.0929503738880157,-0.0833780393004417,-0.992173612117767,0.112057261168957,-0.0810493528842926,-0.99039089679718,0.148138493299484,-0.0760722607374191,-0.986036539077759, +0.137924149632454,-0.0779768079519272,-0.987368524074554,0.148214042186737,-0.0767692252993584,-0.985971212387085,0.158408030867577,-0.0748207569122314,-0.984534859657288,0.115353815257549,-0.0800223648548126,-0.990095913410187,0.0571431741118431,-0.086712934076786,-0.994593262672424,0.11535107344389,-0.0799970179796219,-0.990098297595978,0.173162892460823,-0.0730255469679832,-0.982182264328003,0.201229199767113,-0.0695575028657913,-0.977071464061737,0.134540140628815,-0.0777364894747734,-0.987854242324829,0.201224222779274,-0.0695115849375725,-0.977075755596161,0.266981065273285,-0.0610065422952175,-0.961768805980682,0.201221853494644,-0.0696492418646812,-0.977066397666931,0.145558208227158,-0.0764572620391846,-0.986390948295593,0.201212093234062,-0.0695594698190689,-0.977074801921844,0.256225675344467,-0.0625272020697594,-0.964592576026917,0.243798419833183,-0.0642732828855515,-0.96769380569458,0.11826304346323,-0.0798206701874733,-0.989768981933594,0.243786662817001,-0.0641652569174767,-0.967703998088837,0.365302503108978,-0.0475591905415058,-0.929673254489899,0.13931605219841,-0.0775283128023148,-0.987208425998688,0.147671833634377,-0.0764006674289703,-0.986081182956696,0.139303416013718,-0.0774126201868057,-0.987219274044037,0.130937933921814,-0.0785362645983696,-0.988274931907654,0.231462806463242,-0.0661190003156662,-0.97059428691864,0.213712483644485,-0.0682791918516159,-0.974507570266724,0.231449022889137,-0.0659926310181618,-0.970606207847595,0.249121874570847,-0.0638089552521706,-0.966367840766907,0.120776936411858,-0.0799810886383057,-0.989452362060547,0.148264080286026,-0.0765836909413338,-0.985978066921234,0.120767332613468,-0.079893134534359,-0.989460647106171,0.0931854248046875,-0.0832208022475243,-0.992164731025696,0.107985138893127,-0.0814106613397598,-0.990813612937927,0.139699772000313,-0.0782633721828461,-0.987096130847931,0.171264216303825,-0.0749665796756744,-0.982368886470795,0.13974916934967,-0.078721709549427,-0.987052798271179,0.169036209583282,-0.0742474719882011,-0.982809245586395,0.129335552453995,-0.0789613574743271,-0.988452076911926, +0.169024556875229,-0.0741405338048935,-0.982819378376007,0.208451583981514,-0.069321483373642,-0.975572884082794,0.138723120093346,-0.0781445875763893,-0.987243354320526,0.128310158848763,-0.0791803076863289,-0.988568186759949,0.138701006770134,-0.0779415592551231,-0.987262487411499,0.149099096655846,-0.0768986865878105,-0.985827624797821,0.187417984008789,-0.0723809003829956,-0.979609906673431,0.125258162617683,-0.0797538235783577,-0.988913476467133,0.187396645545959,-0.0721848607063293,-0.979628503322601,0.248805642127991,-0.064516581594944,-0.966402292251587,0.10787395387888,-0.0819695219397545,-0.990779638290405,0.0966328531503677,-0.0833235159516335,-0.991826295852661,0.107878766953945,-0.0820139274001122,-0.990775465965271,0.119105443358421,-0.0806456655263901,-0.989601016044617,0.170040801167488,-0.0741884931921959,-0.982640445232391,0.1446692943573,-0.0776042863726616,-0.986432194709778,0.170075342059135,-0.0745080858469009,-0.982610285282135,0.19538651406765,-0.0715352594852448,-0.978113949298859,0.0556384064257145,-0.0879480466246605,-0.994570076465607,0.0555951744318008,-0.0875423103570938,-0.994608223438263,0.0556520558893681,-0.0880761668086052,-0.994557976722717,0.121070116758347,-0.0804686546325684,-0.989377081394196,0.121080957353115,-0.0805683732032776,-0.989367544651031,0.121127486228943,-0.0809961035847664,-0.989326953887939,0.167233243584633,-0.0738200321793556,-0.983149945735931,0.18514646589756,-0.0715303122997284,-0.980104207992554,0.167259216308594,-0.0740658491849899,-0.983126997947693,0.149253010749817,-0.075982004404068,-0.985875368118286,0.239861205220222,-0.0646712556481361,-0.968650817871094,0.239860221743584,-0.0646620020270348,-0.968651592731476,0.239899307489395,-0.0650302171707153,-0.968617260456085,0.188749179244041,-0.0710878819227219,-0.979449033737183,0.210663884878159,-0.0690083801746368,-0.975119769573212,0.188763424754143,-0.0712223276495934,-0.979436457157135,0.166806116700172,-0.0737606883049011,-0.983226954936981,0.00470483954995871,-0.0928606018424034,-0.995667994022369, +0.00482319295406342,-0.0939632505178452,-0.995564043521881,0.00501094851642847,-0.095712386071682,-0.995396435260773,-0.0105259865522385,-0.0944636911153793,-0.99547266960144,-0.0102190859615803,-0.0973270833492279,-0.995199978351593,-0.0105890138074756,-0.093875452876091,-0.995527684688568,0.164994612336159,-0.0743199810385704,-0.983490407466888,0.174007475376129,-0.0732434839010239,-0.982016682624817,0.151896178722382,-0.0752840489149094,-0.985525250434875,0.120702505111694,-0.0789676904678345,-0.989542841911316,0.156324550509453,-0.0755071043968201,-0.984815359115601,0.16231732070446,-0.0741279870271683,-0.983950316905975,0.152033686637878,-0.0753696486353874,-0.98549747467041,0.16237236559391,-0.0746476352214813,-0.983901917934418,0.172637909650803,-0.07339708507061,-0.982246935367584,0.118899635970592,-0.0789674147963524,-0.989761173725128,0.112165555357933,-0.0797480493783951,-0.990484356880188,0.118930883705616,-0.0792625024914742,-0.989733815193176,0.125658452510834,-0.0784691572189331,-0.988965392112732,0.127246379852295,-0.078027106821537,-0.98879736661911,0.107443183660507,-0.0803232714533806,-0.990961194038391,0.127243146300316,-0.0779966711997986,-0.988800168037415,0.146995067596436,-0.0756683647632599,-0.986238718032837,0.148326694965363,-0.0757829770445824,-0.986030578613281,0.139599278569221,-0.0768194571137428,-0.987223863601685,0.148301601409912,-0.0755457282066345,-0.986052513122559,0.157017529010773,-0.0745053365826607,-0.984781384468079,0.153938680887222,-0.0754164606332779,-0.985198140144348,0.149176925420761,-0.0759910717606544,-0.98588627576828,0.153907418251038,-0.0751208588480949,-0.98522561788559,0.158666044473648,-0.0745487958192825,-0.984513938426971,0.109004855155945,-0.0792588517069817,-0.990876436233521,0.0875945761799812,-0.0810727030038834,-0.992851734161377,0.108937717974186,-0.0786449611186981,-0.990932703018188,0.130464404821396,-0.0783186033368111,-0.988354861736298,0.185758396983147,-0.0705561414361,-0.980059027671814,0.18587052822113,-0.0715982839465141,-0.979962229728699,0.185609430074692,-0.0691743046045303,-0.980185806751251, +0.165374234318733,-0.074987031519413,-0.983376026153564,0.165098011493683,-0.0724519118666649,-0.983612418174744,0.165278688073158,-0.0741091966629028,-0.983458638191223,0.149800360202789,-0.0766753256320953,-0.985738694667816,0.129703521728516,-0.0792715400457382,-0.988379001617432,0.149728193879128,-0.0760039985179901,-0.985801696777344,0.169933766126633,-0.0749764293432236,-0.982599198818207,0.182013288140297,-0.0733243152499199,-0.980558454990387,0.181951627135277,-0.0727542713284492,-0.980612277984619,0.182031974196434,-0.0734973922371864,-0.980541944503784,0.101287804543972,-0.0817190036177635,-0.991495311260223,0.133216470479965,-0.0788827016949654,-0.987942755222321,0.164948642253876,-0.0754060298204422,-0.983415424823761,0.133268535137177,-0.0793701112270355,-0.987896740436554,0.129478693008423,-0.0784228220582008,-0.988476157188416,0.129352658987045,-0.0772528052330017,-0.988584876060486,0.129574418067932,-0.0793122798204422,-0.988392651081085,0.124358646571636,-0.0780061855912209,-0.98916631937027,0.124341569840908,-0.0778476819396019,-0.98918092250824,0.124467149376869,-0.079014353454113,-0.989072620868683,0.205274701118469,-0.06625035405159,-0.976459562778473,0.205472573637962,-0.068086177110672,-0.976291656494141,0.205322340130806,-0.0666917338967323,-0.976419508457184,-0.032991211861372,-0.0938357040286064,-0.995040953159332,0.0668243169784546,-0.0829391553997993,-0.994311630725861,0.16600938141346,-0.0716053619980812,-0.983521044254303,0.0668199360370636,-0.0828994140028954,-0.994315266609192,0.0520387105643749,-0.0858377888798714,-0.994949162006378,0.143006578087807,-0.0751965939998627,-0.986861050128937,0.232778832316399,-0.0640401393175125,-0.970418989658356,0.14301997423172,-0.0753197818994522,-0.986849665641785,0.120838791131973,-0.0776853337883949,-0.989627778530121,0.259435653686523,-0.0602304041385651,-0.963880479335785,0.392812460660934,-0.0416921079158783,-0.918673038482666,0.259450674057007,-0.0603686347603798,-0.963867723941803,0.209007486701012,-0.0666119381785393,-0.975642740726471,0.251673430204391,-0.0610835812985897,-0.965882658958435, +0.293866515159607,-0.0555902719497681,-0.954228639602661,0.251690179109573,-0.0612377598881721,-0.965868532657623,0.0665005445480347,-0.0847418531775475,-0.994181394577026,0.0664977431297302,-0.0847161486744881,-0.994183778762817,0.0665368661284447,-0.0850749388337135,-0.994150519371033,0.154385432600975,-0.0743672698736191,-0.985207974910736,0.16345702111721,-0.073043055832386,-0.983842790126801,0.154360294342041,-0.0741355493664742,-0.985229313373566,0.145274519920349,-0.0754446908831596,-0.986510813236237,0.156822115182877,-0.0740691050887108,-0.984845459461212,0.156908303499222,-0.0748645439743996,-0.984771609306335,0.156799405813217,-0.0738595128059387,-0.984864830970764,0.153590872883797,-0.0744643658399582,-0.985324800014496,0.153650879859924,-0.0750181451439857,-0.985273420810699,0.153676971793175,-0.0752591043710709,-0.985251009464264,0.126612603664398,-0.0782110393047333,-0.988864183425903,0.135265842080116,-0.0772061422467232,-0.987796723842621,0.143909364938736,-0.0762020498514175,-0.986652612686157,0.135210275650024,-0.0766936019062996,-0.987844288349152,0.226631224155426,-0.0636374428868294,-0.971899569034576,0.226641714572906,-0.0637330040335655,-0.971890807151794,0.226636335253716,-0.0636844113469124,-0.971895158290863,0.172517940402031,-0.070660762488842,-0.982468724250793,0.247653841972351,-0.0609417110681534,-0.966930031776428,0.321324855089188,-0.0510084256529808,-0.945594310760498,0.247675597667694,-0.061140101402998,-0.966912031173706,0.215286046266556,-0.067186065018177,-0.974237203598022,0.215259402990341,-0.0669394955039024,-0.974260032176971,0.215279713273048,-0.06712756305933,-0.974242568016052,0.13572758436203,-0.0767971277236938,-0.987765252590179,0.135726630687714,-0.0767881572246552,-0.987766146659851,0.135725632309914,-0.0767788589000702,-0.987767040729523,0.0119096944108605,-0.091192215681076,-0.99576210975647,0.0406704843044281,-0.0877755507826805,-0.995309770107269,0.0694247633218765,-0.0845403149724007,-0.993998646736145,0.0406715981662273,-0.0877858400344849,-0.995308816432953, +0.0260090790688992,-0.0894259884953499,-0.995653808116913,0.026021383702755,-0.0895395427942276,-0.995643317699432,0.0260164402425289,-0.0894939824938774,-0.995647490024567,-0.0186747796833515,-0.0943116843700409,-0.995367586612701,0.0301949642598629,-0.089079923927784,-0.995566725730896,-0.0186687465757132,-0.0943673700094223,-0.995362460613251,-0.0674814432859421,-0.0994814038276672,-0.992748558521271,-0.0643115341663361,-0.0991601049900055,-0.992991089820862,-0.0643182620406151,-0.0990980491042137,-0.992996871471405,-0.064316488802433,-0.0991144403815269,-0.992995381355286,-0.0202485285699368,-0.0945500284433365,-0.995314180850983,-0.0202407855540514,-0.0946214199066162,-0.995307624340057,-0.020243588835001,-0.0945955514907837,-0.995309948921204,-0.0277400501072407,-0.0954629331827164,-0.995046377182007,-0.0277420617640018,-0.095444418489933,-0.99504816532135,-0.0277425535023212,-0.0954399183392525,-0.995048642158508,-0.0193584766238928,-0.094580166041851,-0.995329022407532,0.0107676535844803,-0.091373935341835,-0.995758533477783,0.0408855862915516,-0.0880993828177452,-0.995272278785706,0.0107633573934436,-0.0913343280553818,-0.995762228965759,0.109592892229557,-0.0803717449307442,-0.990721940994263,0.109598904848099,-0.0804272294044495,-0.990716695785522,0.109577670693398,-0.0802315026521683,-0.990734875202179,0.108697257936001,-0.080376110970974,-0.990820229053497,0.0894871205091476,-0.0830197483301163,-0.992522001266479,0.0701982527971268,-0.085218109190464,-0.993886411190033,0.0894443541765213,-0.0826247408986092,-0.992558717727661,0.0223273169249296,-0.090092159807682,-0.995683193206787,0.0835553407669067,-0.0833014994859695,-0.99301540851593,0.121440768241882,-0.0788734182715416,-0.989460051059723,0.114045843482018,-0.0797389596700668,-0.990270376205444,0.064547210931778,-0.0854508876800537,-0.994249403476715,0.0595151260495186,-0.0841427892446518,-0.994674801826477,0.0999404713511467,-0.079517588019371,-0.991810917854309,0.140146687626839,-0.0742852389812469,-0.987340271472931,0.0998916327953339,-0.079075038433075,-0.991851210594177, +0.976773619651794,-0.14678005874157,0.156105279922485,0.970174789428711,-0.173342108726501,0.169450312852859,0.950950622558594,-0.231327787041664,0.20537868142128,0.955628037452698,-0.216179698705673,0.200103759765625,0.996403574943542,-0.0731784552335739,-0.0427190363407135,0.997337698936462,-0.0643884837627411,0.0342289954423904,0.986626386642456,-0.0924188047647476,0.13426573574543,0.990682184696198,-0.121115729212761,0.0622893273830414,0.79348611831665,-0.502864003181458,0.342794090509415,0.846233069896698,-0.44053041934967,0.299704104661942,0.830437779426575,-0.463211387395859,0.309529095888138,0.78715717792511,-0.513888418674469,0.341031134128571,0.462731778621674,-0.750414609909058,-0.471971690654755,0.458873122930527,-0.857447981834412,-0.232848793268204,0.460198014974594,-0.851742088794708,-0.250505745410919,0.397436290979385,-0.888543605804443,-0.229204654693604,0.431011736392975,-0.763887822628021,-0.480316877365112,0.394408166408539,-0.893784642219543,-0.213521182537079,0.266789674758911,-0.92373913526535,-0.274826169013977,0.293242067098618,-0.809578061103821,-0.508519887924194,0.265223324298859,-0.92727792263031,-0.264220327138901,0.3738933801651,-0.785258114337921,-0.493531584739685,0.387466758489609,-0.617187023162842,-0.684799075126648,0.387457370758057,-0.618809580802917,-0.683338522911072,0.0459530875086784,-0.673726737499237,-0.737550437450409,0.0458865575492382,-0.671108722686768,-0.739937603473663,0.0492755621671677,-0.84614896774292,-0.530663669109344,0.363702595233917,-0.61565762758255,-0.69906085729599,0.366814345121384,-0.787659764289856,-0.495014518499374,0.363514930009842,-0.613409578800201,-0.701131701469421,0.367228955030441,-0.901814758777618,-0.227756693959236,0.364454925060272,-0.906060516834259,-0.215004846453667,0.409198343753815,-0.772476017475128,-0.485631197690964,0.287863284349442,-0.927319407463074,-0.239193141460419,0.287546753883362,-0.927772223949432,-0.23781418800354,0.33762127161026,-0.79701155424118,-0.500783860683441,0.431106418371201,-0.866144299507141,-0.252865999937057, +0.402732163667679,-0.774918973445892,-0.48714205622673,0.43077751994133,-0.864727020263672,-0.258220791816711,0.59616231918335,-0.763032138347626,0.249744832515717,0.579833149909973,-0.774340212345123,0.253358989953995,0.577858150005341,-0.775675714015961,0.253785699605942,0.714041113853455,-0.645817279815674,0.270305931568146,0.580568313598633,-0.743618607521057,0.331620216369629,0.662017345428467,-0.688360214233398,0.296468079090118,0.0705449879169464,-0.0851501747965813,-0.993867635726929,0.0705123841762543,-0.084851086139679,-0.993895590305328,0.0705304071307182,-0.0850164219737053,-0.993880212306976,0.643087148666382,-0.384886115789413,0.662043631076813,0.766261577606201,-0.358963698148727,0.532905459403992,0.659576177597046,-0.460939645767212,0.593712091445923,0.566575348377228,-0.458458065986633,0.684696078300476,0.566110789775848,-0.480793356895447,0.66959422826767,0.661497235298157,-0.435437649488449,0.610586166381836,0.538248956203461,-0.460753202438354,0.705687344074249,0.432476669549942,-0.499965906143188,0.750332057476044,0.265066385269165,-0.519019603729248,0.812624514102936,0.198867976665497,-0.508614122867584,0.837713122367859,0.312761902809143,-0.525026321411133,0.791534781455994,0.368321627378464,-0.530267000198364,0.763646602630615,0.424979716539383,0.595857739448547,-0.681429207324982,0.380635946989059,0.599677443504333,-0.703920006752014,0.420831978321075,0.597650945186615,-0.682432353496552,0.486223846673965,0.58286714553833,-0.65103942155838,0.427077651023865,-0.531347453594208,0.731624662876129,0.473101407289505,-0.531141459941864,0.70289671421051,0.368450939655304,-0.52988737821579,0.763847649097443,0.312197118997574,-0.526893675327301,0.790516376495361,0.0446825437247753,-0.52554839849472,0.84958952665329,0.0512366518378258,-0.527566730976105,0.847967147827148,0.171546444296837,-0.560048580169678,0.81050443649292,0.170900106430054,-0.561643242835999,0.809536933898926,0.0490511208772659,-0.532904922962189,0.844752311706543,0.17933389544487,-0.56317001581192,0.806646764278412,0.243247658014297,-0.576986193656921,0.779690623283386, +0.0471983924508095,-0.53740793466568,0.842000663280487,-0.0461093857884407,-0.51259046792984,0.857394278049469,0.0995700508356094,-0.549293518066406,0.82967609167099,0.179312393069267,-0.563227593898773,0.80661141872406,0.747219204902649,0.654200792312622,-0.116981819272041,0.707499027252197,0.700107455253601,-0.0964088588953018,0.673862397670746,0.713273465633392,-0.192744642496109,0.716276347637177,0.665740251541138,-0.209136813879013,0.510660529136658,0.653055787086487,-0.559235274791718,0.544714570045471,0.593242704868317,-0.592747211456299,0.590709745883942,0.610862672328949,-0.527170717716217,0.552168905735016,0.671520292758942,-0.494135797023773,-0.135506391525269,0.255127966403961,-0.957365036010742,-0.147983103990555,0.356961160898209,-0.922322988510132,-0.129723891615868,0.286429136991501,-0.949278771877289,-0.170887246727943,0.0839836448431015,-0.981704771518707,-0.245744436979294,0.131350725889206,-0.960394084453583,-0.233307406306267,0.257461100816727,-0.937700152397156,-0.24884831905365,0.0967514663934708,-0.963697969913483,-0.269826084375381,-0.15552893280983,-0.950265526771545,-0.176999539136887,0.0109163820743561,-0.984150409698486,-0.184135422110558,-0.427734017372131,-0.884950697422028,-0.19965124130249,-0.168584033846855,-0.965255796909332,-0.244344010949135,0.0960238873958588,-0.964922547340393,-0.212351858615875,-0.580988764762878,-0.785721838474274,-0.178705811500549,-0.429480940103531,-0.885217726230621,-0.0135642616078258,-0.0359010212123394,-0.999263286590576,0.0153103936463594,-0.179087400436401,-0.98371410369873,-0.165374860167503,-0.531940162181854,0.8304762840271,-0.213617995381355,-0.493469685316086,0.843122243881226,-0.132409334182739,-0.509715735912323,0.850092768669128,-0.0695567727088928,-0.551216006278992,0.831458270549774,-0.060824878513813,-0.531941056251526,0.844594120979309,-0.130892157554626,-0.505737483501434,0.852699756622314,-0.0534640848636627,-0.534397482872009,0.843540668487549,0.0373306423425674,-0.561049222946167,0.8269402384758,0.311950087547302,-0.557769417762756,0.769142746925354, +0.421799004077911,-0.55176305770874,0.719474256038666,0.30245903134346,-0.557953715324402,0.7727912068367,0.211929321289063,-0.557817935943604,0.802449464797974,0.216744318604469,-0.53285825252533,0.817975521087646,0.107601337134838,-0.520622849464417,0.846979260444641,0.0429948978126049,-0.507839620113373,0.86037814617157,0.104196026921272,-0.520433187484741,0.847521483898163,-0.111377224326134,-0.441430270671844,0.890356421470642,-0.28683015704155,-0.41980367898941,0.861100196838379,-0.337261259555817,-0.387072920799255,0.858154654502869,-0.0721550062298775,-0.428632885217667,0.900592923164368,0.110546432435513,-0.0771944373846054,-0.990868628025055,0.110546790063381,-0.0771974623203278,-0.990868330001831,0.110546827316284,-0.0771977677941322,-0.990868330001831,0.318977653980255,-0.0491345301270485,-0.946487843990326,0.31897759437561,-0.0491342768073082,-0.946487843990326,0.318977236747742,-0.0491313338279724,-0.946488082408905,0.257615178823471,-0.0578433275222778,-0.964514791965485,0.257615506649017,-0.0578464157879353,-0.964514493942261,0.257615864276886,-0.0578494369983673,-0.964514136314392,0.180555671453476,-0.0682496353983879,-0.981194019317627,0.180555298924446,-0.0682464838027954,-0.981194317340851,0.18055485188961,-0.0682424530386925,-0.981194734573364,0.102378413081169,-0.0782075673341751,-0.991666436195374,0.102378897368908,-0.0782117322087288,-0.99166601896286,0.102379724383354,-0.0782190039753914,-0.991665363311768,0.193832278251648,-0.0665033981204033,-0.978778064250946,0.193831443786621,-0.066496305167675,-0.978778660297394,0.193832248449326,-0.066503144800663,-0.978778064250946,0.0992203876376152,-0.0786094889044762,-0.991955637931824,0.0992195606231689,-0.0786023810505867,-0.991956293582916,0.0992195606231689,-0.0786024257540703,-0.991956233978271,0.158107861876488,-0.0711671337485313,-0.98485392332077,0.158107861876488,-0.0711671411991119,-0.984853863716125,0.158106327056885,-0.0711539834737778,-0.984855115413666,0.0670295059680939,-0.0825163722038269,-0.99433296918869,0.0670310482382774,-0.0825297459959984,-0.994331777095795, +0.0670314058661461,-0.0825328305363655,-0.994331538677216,0.99247270822525,0.117558777332306,0.0343206748366356,0.992472648620605,0.117559522390366,0.0343206040561199,0.992472290992737,0.117562010884285,0.034320380538702,-0.982342004776001,-0.125843524932861,-0.138447090983391,-0.982342123985291,-0.125843301415443,-0.138447105884552,-0.982341945171356,-0.125844210386276,-0.138447016477585,-0.0127449296414852,-0.0918454900383949,-0.995691776275635,-0.0127441566437483,-0.0918521881103516,-0.995691120624542,-0.0127443410456181,-0.091850608587265,-0.995691359043121,-0.230353727936745,-0.11428239941597,-0.966373026371002,-0.230353564023972,-0.114283859729767,-0.966372907161713,-0.230352625250816,-0.114291906356812,-0.966372072696686,0.220992028713226,-0.0628718882799149,-0.973247051239014,0.220990940928459,-0.0628624334931374,-0.973247826099396,0.220989286899567,-0.0628479793667793,-0.973249197006226,0.159493669867516,-0.0709737315773964,-0.984644412994385,0.159495294094086,-0.0709880143404007,-0.9846431016922,0.159496158361435,-0.0709954276680946,-0.984642446041107,0.124897584319115,-0.0754077658057213,-0.989299952983856,0.124896720051765,-0.0754004269838333,-0.989300549030304,0.124896541237831,-0.0753988549113274,-0.989300727844238,0.0450325682759285,-0.0851571708917618,-0.995349407196045,0.0450327508151531,-0.0851587727665901,-0.995349168777466,0.0450324416160583,-0.085156038403511,-0.995349526405334,0.304190456867218,-0.0512666702270508,-0.951230823993683,0.304190784692764,-0.0512698851525784,-0.951230525970459,0.304191470146179,-0.0512757487595081,-0.951229989528656,0.259724348783493,-0.0575593486428261,-0.963965952396393,0.259723663330078,-0.0575535744428635,-0.963966429233551,0.259723693132401,-0.0575535856187344,-0.963966369628906,0.202241063117981,-0.0653788521885872,-0.977151036262512,0.202241063117981,-0.0653788298368454,-0.977151095867157,0.202240973711014,-0.0653781741857529,-0.977151095867157,0.157251968979836,-0.071276880800724,-0.984982967376709,0.157252058386803,-0.0712775364518166,-0.984982967376709,0.15725189447403,-0.0712762027978897,-0.984983026981354, +0.29160949587822,-0.0530671887099743,-0.955064356327057,0.291609644889832,-0.053068645298481,-0.955064237117767,0.291609585285187,-0.0530683808028698,-0.955064237117767,0.25979146361351,-0.0575438961386681,-0.963948786258698,0.259791493415833,-0.0575441457331181,-0.963948667049408,0.259791553020477,-0.0575451105833054,-0.963948607444763,0.195337668061256,-0.0662975609302521,-0.978492677211761,0.195337578654289,-0.0662966817617416,-0.978492736816406,0.195337519049644,-0.0662961602210999,-0.978492796421051,0.180693298578262,-0.0682278722524643,-0.981170177459717,0.180693358182907,-0.0682283714413643,-0.981170117855072,0.180693507194519,-0.0682296752929688,-0.981169998645782,0.243543431162834,-0.0597910024225712,-0.968045294284821,0.243543267250061,-0.0597896352410316,-0.968045473098755,0.243543207645416,-0.0597890093922615,-0.968045473098755,0.240820437669754,-0.0601626969873905,-0.968703329563141,0.24082051217556,-0.0601633116602898,-0.968703210353851,0.240820422768593,-0.0601624846458435,-0.968703329563141,0.363559424877167,-0.0425502248108387,-0.930598795413971,0.363559544086456,-0.0425511263310909,-0.930598676204681,0.363559722900391,-0.0425529032945633,-0.930598556995392,0.366362273693085,-0.0421316549181938,-0.929517984390259,0.36636209487915,-0.0421298667788506,-0.929518163204193,0.366361975669861,-0.0421292632818222,-0.929518103599548,0.209272012114525,-0.0644387900829315,-0.975732028484344,0.209272056818008,-0.0644392520189285,-0.9757319688797,0.209272027015686,-0.0644388720393181,-0.975732028484344,0.241958305239677,-0.0600068494677544,-0.968429327011108,0.241958349943161,-0.0600072406232357,-0.968429327011108,0.241958245635033,-0.0600063800811768,-0.968429386615753,0.277435392141342,-0.0550743825733662,-0.959164440631866,0.277435511350632,-0.0550752840936184,-0.959164381027222,0.277435570955276,-0.055075716227293,-0.959164381027222,0.31739205121994,-0.0493648611009121,-0.947008728981018,0.317391991615295,-0.0493643991649151,-0.947008728981018,0.317391961812973,-0.0493640303611755,-0.947008788585663,0.0735499486327171,-0.0817418545484543,-0.993936002254486, +0.0735499784350395,-0.081742100417614,-0.993936002254486,0.0735499784350395,-0.0817421302199364,-0.993935942649841,0.149039775133133,-0.0723334848880768,-0.986182153224945,0.149039775133133,-0.0723333656787872,-0.9861820936203,0.149039775133133,-0.0723334848880768,-0.9861820936203,0.171747237443924,-0.0693983882665634,-0.982693672180176,0.17174719274044,-0.0693982616066933,-0.982693612575531,0.171747252345085,-0.0693986713886261,-0.982693672180176,0.249247163534164,-0.0590048991143703,-0.966640830039978,0.249247089028358,-0.0590044148266315,-0.966640770435333,0.24924710392952,-0.0590045005083084,-0.966640830039978,0.115407921373844,-0.076590932905674,-0.990360975265503,0.115407928824425,-0.0765908658504486,-0.990361034870148,0.115407891571522,-0.0765906050801277,-0.990361034870148,0.205073013901711,-0.0650006383657455,-0.976585865020752,0.205073058605194,-0.0650009661912918,-0.976585865020752,0.205073043704033,-0.0650010257959366,-0.976585805416107,0.091908797621727,-0.0795027762651443,-0.992588639259338,0.0919088050723076,-0.0795028060674667,-0.992588579654694,0.091908797621727,-0.0795028582215309,-0.992588579654694,0.187375739216805,-0.0673495233058929,-0.979976713657379,0.187375739216805,-0.06734948605299,-0.979976773262024,0.187375724315643,-0.0673495158553123,-0.979976713657379,0.126126319169998,-0.0752456411719322,-0.989156424999237,0.126126304268837,-0.0752455517649651,-0.989156365394592,0.126126304268837,-0.0752455964684486,-0.989156424999237,0.222206100821495,-0.0626981854438782,-0.972981750965118,0.222206100821495,-0.0626981556415558,-0.972981750965118,0.222206056118011,-0.062698058784008,-0.972981691360474,0.151683643460274,-0.0719940438866615,-0.985803782939911,0.151683658361435,-0.0719941481947899,-0.985803723335266,0.151683628559113,-0.0719939991831779,-0.985803723335266,0.245993033051491,-0.0594526901841164,-0.967446565628052,0.245993047952652,-0.0594527870416641,-0.967446565628052,0.245993062853813,-0.0594528540968895,-0.967446625232697,0.104112006723881,-0.0779972076416016,-0.991502463817596,0.104111976921558,-0.0779970288276672,-0.991502463817596, +0.104112006723881,-0.0779971331357956,-0.991502463817596,0.191529124975204,-0.0668010711669922,-0.979211032390594,0.191529124975204,-0.0668010413646698,-0.979211091995239,0.191529080271721,-0.0668006911873817,-0.979211032390594,0.114160314202309,-0.0767463073134422,-0.990493595600128,0.114160366356373,-0.0767467468976974,-0.990493535995483,0.114160344004631,-0.0767465308308601,-0.990493535995483,0.191494047641754,-0.0668054968118668,-0.97921758890152,0.191494062542915,-0.0668056756258011,-0.97921758890152,0.191494047641754,-0.0668054521083832,-0.97921758890152,-0.0391678288578987,-0.0948110222816467,-0.99472451210022,-0.0391677841544151,-0.0948113948106766,-0.994724452495575,-0.0391677916049957,-0.0948113575577736,-0.994724452495575,0.00883079692721367,-0.0893885046243668,-0.995957672595978,0.00883080065250397,-0.0893885269761086,-0.995957732200623,0.00883093010634184,-0.0893896594643593,-0.995957612991333,-0.0982068479061127,-0.101192519068718,-0.990007817745209,-0.0982070118188858,-0.101191207766533,-0.990007996559143,-0.0982070416212082,-0.10119092464447,-0.990008056163788,-0.0746951922774315,-0.0986887812614441,-0.992311060428619,-0.0746951550245285,-0.0986890569329262,-0.992311000823975,-0.0746951922774315,-0.0986887067556381,-0.992311060428619,-0.0168914888054132,-0.0923205465078354,-0.995586037635803,-0.0168914515525103,-0.0923208817839622,-0.995586037635803,-0.0168915316462517,-0.0923201516270638,-0.995586097240448,-0.00199685525149107,-0.090629555284977,-0.99588268995285,-0.0019967732951045,-0.0906302630901337,-0.995882630348206,-0.00199673627503216,-0.0906305760145187,-0.995882630348206,-0.113329567015171,-0.102773770689964,-0.988227784633636,-0.113329596817493,-0.102773420512676,-0.988227725028992,-0.113329544663429,-0.102773934602737,-0.988227725028992,-0.12357971072197,-0.103834234178066,-0.986887335777283,-0.123579770326614,-0.103833720088005,-0.986887335777283,-0.123579822480679,-0.103833355009556,-0.986887454986572,0.149049952626228,-0.0723317712545395,-0.986180663108826,0.149049982428551,-0.0723320543766022,-0.986180663108826, +0.14905010163784,-0.0723331645131111,-0.986180484294891,0.14208796620369,-0.0732232704758644,-0.987142026424408,0.142087817192078,-0.0732221528887749,-0.987142086029053,0.142087742686272,-0.0732213482260704,-0.987142264842987,0.0898875966668129,-0.0797500088810921,-0.992753863334656,0.0898876935243607,-0.0797508507966995,-0.992753803730011,0.0898880138993263,-0.0797536373138428,-0.992753505706787,0.0594513043761253,-0.0834435299038887,-0.994737565517426,0.0594509840011597,-0.0834406763315201,-0.994737863540649,0.0594509094953537,-0.0834400579333305,-0.994737863540649,0.155966386198997,-0.0714426562190056,-0.985175371170044,0.155966430902481,-0.0714432448148727,-0.985175311565399,0.155966103076935,-0.0714403167366982,-0.985175609588623,0.179930165410042,-0.071696400642395,-0.981063067913055,0.179930150508881,-0.0716960579156876,-0.981063187122345,0.179930076003075,-0.0716954544186592,-0.98106324672699,0.118141449987888,-0.0791792199015617,-0.98983496427536,0.118141539394855,-0.0791799202561378,-0.98983496427536,0.118141792714596,-0.0791822820901871,-0.989834725856781,0.300717025995255,-0.0559684261679649,-0.952069818973541,0.300716757774353,-0.0559661760926247,-0.952069997787476,0.300716549158096,-0.0559646710753441,-0.952070116996765,0.26017689704895,-0.0614117085933685,-0.963606059551239,0.260177046060562,-0.0614132359623909,-0.963605880737305,0.260177403688431,-0.0614162907004356,-0.963605642318726,0.169687852263451,-0.0729652568697929,-0.982793033123016,0.169687524437904,-0.072962298989296,-0.98279333114624,0.169687196612358,-0.072959192097187,-0.982793569564819,0.131109312176704,-0.0776367634534836,-0.988323271274567,0.131109640002251,-0.0776397809386253,-0.988323032855988,0.131109401583672,-0.077637568116188,-0.988323211669922,0.299779534339905,-0.0560916550457478,-0.95235812664032,0.299779832363129,-0.0560940355062485,-0.952357888221741,0.299779683351517,-0.0560928508639336,-0.95235800743103,0.25002121925354,-0.0627496242523193,-0.966204881668091,0.25002133846283,-0.0627507716417313,-0.966204822063446,0.250021785497665,-0.0627549067139626,-0.966204464435577, +0.272923469543457,-0.0597235560417175,-0.960180163383484,0.272923022508621,-0.0597193688154221,-0.960180580615997,0.272922992706299,-0.0597189143300056,-0.960180580615997,0.250332862138748,-0.0627094507217407,-0.966126799583435,0.250332921743393,-0.0627098977565765,-0.96612685918808,0.250332832336426,-0.0627089887857437,-0.966126799583435,-0.00877151824533939,-0.0934120267629623,-0.995588898658752,-0.008771444670856,-0.0934126898646355,-0.995588839054108,-0.00877136271446943,-0.0934134721755981,-0.995588839054108,0.0201079957187176,-0.090307779610157,-0.995710909366608,0.0201079063117504,-0.0903069451451302,-0.995711028575897,0.0201078914105892,-0.0903068110346794,-0.995710968971252,0.28290992975235,-0.0583801195025444,-0.957368195056915,0.282909959554672,-0.0583802238106728,-0.957368195056915,0.282910019159317,-0.0583811104297638,-0.957368075847626,0.297751873731613,-0.0563713759183884,-0.952977538108826,0.297751814126968,-0.0563704967498779,-0.95297759771347,0.297751575708389,-0.0563682839274406,-0.952977776527405,0.112265460193157,-0.0798707753419876,-0.990463078022003,0.112265653908253,-0.0798724591732025,-0.990463018417358,0.112265549600124,-0.0798716023564339,-0.990463018417358,0.355429410934448,-0.0483305566012859,-0.933452785015106,0.355429530143738,-0.0483316369354725,-0.933452665805817,0.355429708957672,-0.0483333170413971,-0.933452546596527,0.0840157121419907,-0.0831572264432907,-0.992988586425781,0.0840156003832817,-0.0831562131643295,-0.992988705635071,0.0840157121419907,-0.0831572264432907,-0.992988526821136,0.353365570306778,-0.0486272908747196,-0.934220612049103,0.353365421295166,-0.0486257635056973,-0.934220731258392,0.353365510702133,-0.048626434057951,-0.934220731258392,0.241931810975075,-0.0638091787695885,-0.968192875385284,0.241931766271591,-0.0638085678219795,-0.968192994594574,0.241931691765785,-0.0638080462813377,-0.968192934989929,0.304299563169479,-0.0554756857454777,-0.9509596824646,0.304299682378769,-0.0554763190448284,-0.950959622859955,0.304299533367157,-0.0554752536118031,-0.9509596824646, +0.187437385320663,-0.0707606226205826,-0.979724645614624,0.187437459826469,-0.0707614347338676,-0.979724526405334,0.187437415122986,-0.0707610920071602,-0.97972446680069,0.266626864671707,-0.0605579167604446,-0.961895525455475,0.26662689447403,-0.0605582222342491,-0.961895525455475,0.266626924276352,-0.0605584159493446,-0.961895406246185,0.177931398153305,-0.0719440802931786,-0.981409430503845,0.177931383252144,-0.071943961083889,-0.98140949010849,0.177931398153305,-0.0719441026449203,-0.981409430503845,0.265509694814682,-0.0607068687677383,-0.962195038795471,0.265509635210037,-0.0607066303491592,-0.962195098400116,0.265509694814682,-0.0607071295380592,-0.962195038795471,0.144610494375229,-0.0760195255279541,-0.986564218997955,0.144610479474068,-0.076019212603569,-0.9865642786026,0.144610479474068,-0.0760193169116974,-0.986564218997955,0.239277273416519,-0.0641541257500648,-0.96882951259613,0.239277303218842,-0.064154215157032,-0.968829572200775,0.239277258515358,-0.0641538947820663,-0.968829572200775,0.0845588222146034,-0.083093672990799,-0.992947816848755,0.0845588371157646,-0.0830937847495079,-0.992947816848755,0.0845588222146034,-0.0830936133861542,-0.992947816848755,0.215176001191139,-0.0672596991062164,-0.97425639629364,0.215176001191139,-0.0672596096992493,-0.97425639629364,0.2151760160923,-0.0672598257660866,-0.97425639629364,0.166569709777832,-0.0733459293842316,-0.983298063278198,0.166569650173187,-0.0733456909656525,-0.983298003673553,0.166569694876671,-0.0733460038900375,-0.983298003673553,0.292522817850113,-0.0570813417434692,-0.954553365707397,0.292522817850113,-0.0570812374353409,-0.954553425312042,0.292522758245468,-0.0570810437202454,-0.954553365707397,0.177013501524925,-0.0720573961734772,-0.981567144393921,0.177013516426086,-0.0720576643943787,-0.981567084789276,0.177013516426086,-0.0720576345920563,-0.981567084789276,0.264805138111115,-0.0608001388609409,-0.962383270263672,0.264805167913437,-0.0608001574873924,-0.962383329868317,0.264805167913437,-0.0608003661036491,-0.962383329868317,0.260257363319397,-0.0614028349518776,-0.963584959506989, +0.260257363319397,-0.0614026263356209,-0.963584959506989,0.260257333517075,-0.0614026412367821,-0.963584899902344,0.343286275863647,-0.0500549823045731,-0.937896072864532,0.343286275863647,-0.0500550121068954,-0.937896072864532,0.343286275863647,-0.0500550828874111,-0.937896072864532,0.181041926145554,-0.0715582296252251,-0.980868577957153,0.18104188144207,-0.0715580061078072,-0.980868697166443,0.181041896343231,-0.0715580135583878,-0.980868697166443,0.215271323919296,-0.0672474354505539,-0.974236249923706,0.215271323919296,-0.0672474503517151,-0.974236249923706,0.21527124941349,-0.067247100174427,-0.974236249923706,0.18692934513092,-0.0708245038986206,-0.979817032814026,0.186929360032082,-0.0708248689770699,-0.979817032814026,0.186929315328598,-0.0708241611719131,-0.979817092418671,0.395216673612595,-0.0425645485520363,-0.91760128736496,0.395216673612595,-0.0425649844110012,-0.91760116815567,0.395216673612595,-0.0425645485520363,-0.917601227760315,0.450693994760513,-0.0342010818421841,-0.892023146152496,0.450694024562836,-0.0342014469206333,-0.892023146152496,0.450693935155869,-0.0342007800936699,-0.892023146152496,0.113012313842773,-0.0797833502292633,-0.990385174751282,0.113012455403805,-0.0797846242785454,-0.990385174751282,0.113012552261353,-0.0797854885458946,-0.990385055541992,0.115126967430115,-0.0795365050435066,-0.99016147851944,0.115126870572567,-0.0795356333255768,-0.990161538124084,0.115127071738243,-0.0795373991131783,-0.990161418914795,0.242903709411621,-0.0636833906173706,-0.96795779466629,0.24290357530117,-0.0636818557977676,-0.967957973480225,0.242903426289558,-0.0636806562542915,-0.967958033084869,0.238892644643784,-0.0642030090093613,-0.968921184539795,0.238892793655396,-0.064204216003418,-0.96892112493515,0.238892808556557,-0.0642041489481926,-0.968921184539795,0.0134187154471874,-0.0910331681370735,-0.995757520198822,0.0134187247604132,-0.0910332575440407,-0.995757460594177,0.0134189976379275,-0.0910357981920242,-0.995757222175598,-0.025635126978159,-0.0951928049325943,-0.995128810405731,-0.0256354101002216,-0.095190204679966,-0.99512904882431, +-0.0256356708705425,-0.0951877236366272,-0.9951291680336,0.0768394768238068,-0.0839759036898613,-0.993500828742981,0.0768397226929665,-0.0839782729744911,-0.993500530719757,0.0768394768238068,-0.0839758217334747,-0.993500828742981,0.0239710565656424,-0.0898829847574234,-0.995663821697235,0.0239713359624147,-0.0898855403065681,-0.995663642883301,0.0239718202501535,-0.0898900553584099,-0.995663166046143,0.00576483178883791,-0.0918637961149216,-0.995754957199097,0.00576434005051851,-0.0918592363595963,-0.99575537443161,0.00576511118561029,-0.0918663814663887,-0.995754718780518,-0.0498082786798477,-0.0976989716291428,-0.993968904018402,-0.0498090647161007,-0.0976917147636414,-0.993969559669495,-0.0498090758919716,-0.0976916551589966,-0.993969619274139,0.38732436299324,-0.0437236987054348,-0.920906126499176,0.387324422597885,-0.0437237918376923,-0.920906186103821,0.387323647737503,-0.0437170006334782,-0.920906722545624,0.276981145143509,-0.059169240295887,-0.959051847457886,0.276981920003891,-0.0591763854026794,-0.959051251411438,0.276980608701706,-0.0591641254723072,-0.959052324295044,0.190982669591904,-0.0703052058815956,-0.979072451591492,0.190984070301056,-0.0703179538249969,-0.979071259498596,0.190985143184662,-0.0703278630971909,-0.979070365428925,0.0818202719092369,-0.0834184736013412,-0.993149936199188,0.0818191841244698,-0.08340834826231,-0.993150949478149,0.0818201750516891,-0.0834175571799278,-0.993150055408478,0.714336633682251,0.0121109634637833,-0.699697434902191,0.714336037635803,0.0121171344071627,-0.699697971343994,0.714336693286896,0.0121104940772057,-0.699697375297546,0.343588322401047,-0.0500234924256802,-0.937787175178528,0.343587189912796,-0.0500125177204609,-0.937788248062134,0.3435919880867,-0.0500572063028812,-0.937784075737,0.190164566040039,-0.0704035833477974,-0.979224681854248,0.190166383981705,-0.0704203173518181,-0.979223132133484,0.190168857574463,-0.0704433247447014,-0.979220986366272,0.197554230690002,-0.0695164576172829,-0.977823972702026,0.197551727294922,-0.0694934278726578,-0.977826118469238, +0.197550594806671,-0.0694824531674385,-0.977827250957489,0.196258023381233,-0.0696450620889664,-0.978075921535492,0.19625923037529,-0.0696560367941856,-0.978074908256531,0.19625897705555,-0.0696539878845215,-0.97807502746582,0.174109160900116,-0.0724148228764534,-0.982060134410858,0.174109384417534,-0.0724169015884399,-0.982059955596924,0.174110695719719,-0.0724286809563637,-0.982058942317963,0.208045199513435,-0.0681791305541992,-0.975740134716034,0.208043932914734,-0.0681673213839531,-0.975741326808929,0.208043694496155,-0.0681651681661606,-0.975741505622864,0.149015337228775,-0.075484462082386,-0.985949635505676,0.149015560746193,-0.0754866451025009,-0.985949456691742,0.149015590548515,-0.0754870250821114,-0.985949337482452,0.0900831148028374,-0.0819917321205139,-0.992553532123566,0.0900825411081314,-0.0819865465164185,-0.992554008960724,0.090082935988903,-0.0819901674985886,-0.99255359172821,0.314751178026199,-0.0532836988568306,-0.947677552700043,0.314750760793686,-0.0532800666987896,-0.947677791118622,0.314749747514725,-0.0532706938683987,-0.947678685188293,0.127890139818192,-0.0774930045008659,-0.98875629901886,0.127891227602959,-0.0775028988718987,-0.988755404949188,0.127891674637794,-0.0775070413947105,-0.988754987716675,0.993409276008606,0.104140177369118,-0.0478851571679115,0.993409097194672,0.104141503572464,-0.0478852763772011,0.993409216403961,0.104140728712082,-0.0478852093219757,-0.980292558670044,-0.121548071503639,-0.155732795596123,-0.980292677879333,-0.121546879410744,-0.155732899904251,-0.980292618274689,-0.121547006070614,-0.15573288500309,0.103862270712852,-0.0803437009453773,-0.991341352462769,0.103864893317223,-0.0803678333759308,-0.991339027881622,0.103865221142769,-0.0803707465529442,-0.991338789463043,-0.0168269611895084,-0.0939405336976051,-0.995435655117035,-0.0168272815644741,-0.0939375907182693,-0.995435893535614,-0.0168271847069263,-0.0939384698867798,-0.995435774326324,0.172486498951912,-0.0720395594835281,-0.98237407207489,0.172486394643784,-0.0720385909080505,-0.982374131679535, +0.172487065196037,-0.0720447152853012,-0.982373595237732,0.0962295159697533,-0.0812729299068451,-0.992035567760468,0.0962288528680801,-0.0812668800354004,-0.992036163806915,0.0962283909320831,-0.0812624767422676,-0.992036640644073,0.181511461734772,-0.0709045901894569,-0.980829358100891,0.181511968374252,-0.0709092020988464,-0.980828881263733,0.181511864066124,-0.0709082931280136,-0.980829000473022,0.113160587847233,-0.0792649835348129,-0.990409970283508,0.113160684704781,-0.0792658999562263,-0.990409851074219,0.113160237669945,-0.0792617425322533,-0.990410208702087,0.0856018364429474,-0.0825047567486763,-0.992907524108887,0.0856022909283638,-0.0825088694691658,-0.992907166481018,0.0856023207306862,-0.0825091302394867,-0.992907106876373,-0.0262766852974892,-0.0949428901076317,-0.995135903358459,-0.0262767188251019,-0.0949425846338272,-0.995135903358459,-0.0262765530496836,-0.0949440822005272,-0.995135724544525,0.132656946778297,-0.0769298151135445,-0.988171994686127,0.132656767964363,-0.0769281014800072,-0.988172173500061,0.132656946778297,-0.0769297778606415,-0.988172113895416,0.0521189533174038,-0.0863543525338173,-0.994900345802307,0.0521187856793404,-0.0863527879118919,-0.994900524616241,0.0521185472607613,-0.086350716650486,-0.994900584220886,0.168961971998215,-0.0724751129746437,-0.982954382896423,0.168962240219116,-0.0724774152040482,-0.982954144477844,0.168962076306343,-0.0724760219454765,-0.982954263687134,0.151182249188423,-0.074671559035778,-0.985681593418121,0.151182398200035,-0.0746729522943497,-0.985681414604187,0.151182577013969,-0.0746746733784676,-0.985681235790253,0.0247592031955719,-0.0894173160195351,-0.99568647146225,0.0247590262442827,-0.0894157215952873,-0.995686590671539,0.0247591733932495,-0.0894170552492142,-0.99568647146225,0.0451509281992912,-0.0871408581733704,-0.995172381401062,0.0451507791876793,-0.0871394872665405,-0.995172441005707,0.0451507829129696,-0.0871395096182823,-0.995172500610352,0.0963187366724014,-0.0812563300132751,-0.992028295993805,0.0963187292218208,-0.0812563374638557,-0.992028295993805, +0.0963185951113701,-0.0812550559639931,-0.992028474807739,0.131025061011314,-0.0771238133311272,-0.988374710083008,0.131025224924088,-0.077125146985054,-0.988374590873718,0.131025210022926,-0.0771252140402794,-0.988374531269073,0.0664195790886879,-0.0847239717841148,-0.99418830871582,0.0664195716381073,-0.0847239270806313,-0.99418830871582,0.0664196461439133,-0.0847246125340462,-0.994188189506531,0.126893699169159,-0.077623650431633,-0.98887437582016,0.126893639564514,-0.0776229426264763,-0.988874495029449,0.126893669366837,-0.0776232853531837,-0.988874495029449,0.01499511487782,-0.0904921814799309,-0.995784282684326,0.0149950813502073,-0.0904918760061264,-0.995784282684326,0.0149950813502073,-0.0904918760061264,-0.995784342288971,0.10006295144558,-0.0808161720633507,-0.991693615913391,0.100062936544418,-0.0808161571621895,-0.991693615913391,0.100062906742096,-0.0808158591389656,-0.991693615913391,0.109019249677658,-0.0797575265169144,-0.990834772586823,0.10901927947998,-0.0797578394412994,-0.990834772586823,0.109019286930561,-0.079757958650589,-0.990834712982178,0.199488520622253,-0.0686360225081444,-0.977493464946747,0.199488505721092,-0.0686359107494354,-0.977493524551392,0.199488505721092,-0.0686360895633698,-0.977493464946747,0.0690821185708046,-0.0844187438488007,-0.994032859802246,0.0690820887684822,-0.0844185501337051,-0.994032800197601,0.0690820962190628,-0.0844186097383499,-0.994032800197601,0.316957473754883,-0.0529726073145866,-0.946959316730499,0.316957473754883,-0.0529724210500717,-0.946959316730499,0.316957473754883,-0.0529725328087807,-0.946959316730499,0.114102654159069,-0.0791538655757904,-0.990310788154602,0.114102639257908,-0.0791537836194038,-0.990310668945313,0.114102654159069,-0.0791538432240486,-0.990310728549957,-0.0507839620113373,-0.0975102633237839,-0.993937969207764,-0.0507839731872082,-0.0975102037191391,-0.993938028812408,-0.0507839806377888,-0.0975101813673973,-0.993938088417053,0.208713948726654,-0.0674569457769394,-0.975647509098053,0.208713963627815,-0.0674568563699722,-0.975647568702698, +0.208713933825493,-0.0674568936228752,-0.975647509098053,-0.123792506754398,-0.104825079441071,-0.986755907535553,-0.123792514204979,-0.104824975132942,-0.986755907535553,-0.123792454600334,-0.104825414717197,-0.986755788326263,0.123623229563236,-0.0780160874128342,-0.98925769329071,0.123623207211494,-0.0780158340930939,-0.989257752895355,0.123623237013817,-0.0780161023139954,-0.98925769329071,0.0215735733509064,-0.0897681713104248,-0.995729029178619,0.0215735360980034,-0.0897678062319756,-0.995729029178619,0.021573493257165,-0.0897674188017845,-0.995729148387909,0.12002307921648,-0.0784468427300453,-0.989666879177094,0.120023109018803,-0.0784471556544304,-0.989666879177094,0.120023116469383,-0.0784471109509468,-0.989666938781738,0.035222515463829,-0.0882525220513344,-0.995475232601166,0.0352225229144096,-0.0882525891065598,-0.995475232601166,0.0352226123213768,-0.0882534384727478,-0.995475113391876,0.119720220565796,-0.0784841105341911,-0.989700615406036,0.119720138609409,-0.0784833952784538,-0.989700675010681,0.119720093905926,-0.0784830302000046,-0.989700734615326,0.0958917662501335,-0.081306055188179,-0.99206554889679,0.0958918184041977,-0.0813064351677895,-0.992065608501434,0.0958917513489723,-0.0813059434294701,-0.992065608501434,0.167554780840874,-0.0726518929004669,-0.983182191848755,0.167554840445518,-0.0726523324847221,-0.98318213224411,0.167554795742035,-0.0726519674062729,-0.983182191848755,0.0912806689739227,-0.0818460360169411,-0.992456078529358,0.0912807211279869,-0.0818465277552605,-0.992456078529358,0.0912808552384377,-0.0818477943539619,-0.992455899715424,0.138809904456139,-0.0761839300394058,-0.98738431930542,0.138809770345688,-0.0761827453970909,-0.987384498119354,0.138809829950333,-0.0761833488941193,-0.987384378910065,0.284256398677826,-0.0574779659509659,-0.957023799419403,0.284256339073181,-0.0574775822460651,-0.957023918628693,0.284256309270859,-0.0574773922562599,-0.957023918628693,0.332363426685333,-0.0508094765245914,-0.94178181886673,0.332363456487656,-0.0508096404373646,-0.94178181886673, +0.332363337278366,-0.0508085452020168,-0.941781938076019,0.173864498734474,-0.0718651711940765,-0.982143878936768,0.173864647746086,-0.0718666464090347,-0.982143759727478,0.173864737153053,-0.0718672722578049,-0.982143700122833,0.169137194752693,-0.0724563002586365,-0.982925593852997,0.169137135148048,-0.0724556669592857,-0.982925713062286,0.169137045741081,-0.0724549368023872,-0.982925713062286,0.17987747490406,-0.0711135864257813,-0.981115162372589,0.179877549409866,-0.0711143165826797,-0.981115102767944,0.179877504706383,-0.0711138397455215,-0.981115221977234,0.131570801138878,-0.0770587846636772,-0.988307178020477,0.131570860743523,-0.077059268951416,-0.988307178020477,0.131570756435394,-0.0770583003759384,-0.988307237625122,0.0282690599560738,-0.0890255942940712,-0.995628178119659,0.028269175440073,-0.0890266671776772,-0.995627999305725,0.0282693114131689,-0.0890278965234756,-0.995627880096436,-0.029030280187726,-0.0952351093292236,-0.995031476020813,-0.0290304142981768,-0.0952338874340057,-0.995031535625458,-0.0290301293134689,-0.0952364951372147,-0.995031356811523,0.450539141893387,-0.0333021022379398,-0.892135322093964,0.450538963079453,-0.0333006642758846,-0.892135500907898,0.450539082288742,-0.0333016589283943,-0.892135441303253,0.375974744558334,-0.0445433408021927,-0.925558745861053,0.3759745657444,-0.0445423200726509,-0.925558805465698,0.375973641872406,-0.0445340164005756,-0.925559520721436,-0.0257749035954475,-0.0979085266590118,-0.994861602783203,-0.0257749278098345,-0.0979083105921745,-0.994861662387848,-0.0257749445736408,-0.0979081764817238,-0.994861721992493,0.0402739159762859,-0.0906019061803818,-0.995072543621063,0.0402739346027374,-0.0906020849943161,-0.995072543621063,0.040273904800415,-0.0906018018722534,-0.995072543621063,0.211287617683411,-0.0697085782885551,-0.974935114383698,0.211287617683411,-0.0697086825966835,-0.974935054779053,0.211287677288055,-0.0697093829512596,-0.974934935569763,-0.0925507545471191,-0.104867190122604,-0.990170359611511,-0.0925507470965385,-0.104867100715637,-0.990170300006866, +-0.0925507321953773,-0.104867368936539,-0.990170359611511,0.115214191377163,-0.0818018168210983,-0.989966809749603,0.11521415412426,-0.0818016305565834,-0.989966750144958,0.115214139223099,-0.0818014293909073,-0.989966809749603,0.0604447871446609,-0.0882868096232414,-0.994259536266327,0.0604448020458221,-0.0882869735360146,-0.994259476661682,0.0604447945952415,-0.0882869511842728,-0.994259476661682,0.172278225421906,-0.0747308507561684,-0.982209503650665,0.172278225421906,-0.0747307538986206,-0.98220956325531,0.172278225421906,-0.0747306868433952,-0.982209503650665,0.0938226580619812,-0.0843693912029266,-0.992007613182068,0.0938226655125618,-0.0843694433569908,-0.992007672786713,0.0938226580619812,-0.0843693017959595,-0.992007672786713,0.211462929844856,-0.0696853995323181,-0.97489869594574,0.211462989449501,-0.0696857571601868,-0.974898636341095,0.21146297454834,-0.0696857199072838,-0.97489869594574,0.134184136986732,-0.0794869139790535,-0.987763464450836,0.134184136986732,-0.0794869065284729,-0.987763464450836,0.13418410718441,-0.0794866308569908,-0.987763404846191,0.251813441514969,-0.064324863255024,-0.965635716915131,0.251813471317291,-0.0643249526619911,-0.965635776519775,0.251813441514969,-0.0643247961997986,-0.965635776519775,0.0722508728504181,-0.0869133621454239,-0.993592441082001,0.0722509101033211,-0.0869136676192284,-0.993592441082001,0.0722509399056435,-0.086913987994194,-0.993592441082001,0.183378979563713,-0.0733175873756409,-0.980304419994354,0.183378949761391,-0.0733174085617065,-0.980304419994354,0.183378964662552,-0.0733173713088036,-0.980304479598999,0.116454519331455,-0.0816513001918793,-0.989834070205688,0.116454526782036,-0.0816513672471046,-0.989834070205688,0.116454496979713,-0.0816511735320091,-0.989834070205688,0.217070579528809,-0.0689507946372032,-0.97371768951416,0.21707059442997,-0.0689509138464928,-0.973717749118805,0.217070639133453,-0.0689513832330704,-0.973717629909515,0.020129008218646,-0.0928759649395943,-0.995474219322205,0.0201289039105177,-0.0928750261664391,-0.995474338531494, +0.0201289262622595,-0.0928752273321152,-0.995474338531494,0.0895145088434219,-0.0848813131451607,-0.992362082004547,0.0895144864916801,-0.0848811790347099,-0.992362082004547,0.0895143821835518,-0.0848802924156189,-0.992362082004547,0.0988600105047226,-0.0837679132819176,-0.991569340229034,0.0988600999116898,-0.0837687849998474,-0.99156928062439,0.0988601446151733,-0.0837691947817802,-0.9915691614151,0.153740599751472,-0.0770636722445488,-0.985101521015167,0.153740555047989,-0.0770633220672607,-0.985101580619812,0.153740391135216,-0.0770618915557861,-0.985101699829102,0.151634499430656,-0.0773246958851814,-0.985407531261444,0.151634648442268,-0.0773261338472366,-0.985407412052155,0.151634678244591,-0.0773263797163963,-0.985407292842865,0.18494388461113,-0.0731174051761627,-0.980025351047516,0.184943839907646,-0.073117159307003,-0.980025351047516,0.184943854808807,-0.0731172934174538,-0.980025410652161,0.232464641332626,-0.0669169500470161,-0.970300197601318,0.232464596629143,-0.0669168382883072,-0.970300137996674,0.232464581727982,-0.0669166669249535,-0.970300197601318,0.244361579418182,-0.0653276666998863,-0.967481136322021,0.244361579418182,-0.0653278529644012,-0.967481076717377,0.244361519813538,-0.0653273686766624,-0.967481136322021,0.212563544511795,-0.0695412755012512,-0.974669635295868,0.212563574314117,-0.0695417821407318,-0.974669516086578,0.212563827633858,-0.0695439428091049,-0.974669337272644,0.189220920205116,-0.0725708454847336,-0.979249179363251,0.189220696687698,-0.0725686252117157,-0.97924941778183,0.189220622181892,-0.0725680217146873,-0.97924941778183,0.305393755435944,-0.0569370612502098,-0.950522363185883,0.305393844842911,-0.0569376945495605,-0.950522363185883,0.305393904447556,-0.0569381564855576,-0.950522363185883,0.258884757757187,-0.0633683130145073,-0.963827431201935,0.258884727954865,-0.0633678212761879,-0.96382749080658,0.258884370326996,-0.0633648931980133,-0.963827669620514,0.368067592382431,-0.0478851310908794,-0.928565144538879,0.368067890405655,-0.0478878393769264,-0.9285649061203, +0.368067711591721,-0.0478863790631294,-0.928565144538879,0.286225974559784,-0.0596147701144218,-0.956305861473083,0.286226153373718,-0.0596163719892502,-0.956305623054504,0.286226570606232,-0.0596200972795486,-0.956305325031281,0.32731905579567,-0.0538269206881523,-0.943379521369934,0.327318638563156,-0.0538233257830143,-0.943379938602448,0.327319025993347,-0.0538269691169262,-0.943379580974579,0.203862100839615,-0.0706806182861328,-0.976444900035858,0.203861653804779,-0.0706766918301582,-0.976445317268372,0.20386153459549,-0.070675440132618,-0.976445376873016,0.210083216428757,-0.0698648020625114,-0.975184142589569,0.210083335638046,-0.0698660612106323,-0.97518402338028,0.210083603858948,-0.0698684528470039,-0.9751837849617,0.0874815359711647,-0.0851245746016502,-0.992522478103638,0.0874812602996826,-0.0851220637559891,-0.992522716522217,0.0874833464622498,-0.0851408317685127,-0.992520987987518,0.99393904209137,0.108660407364368,-0.0166813619434834,0.993939340114594,0.108657613396645,-0.0166810937225819,0.993938982486725,0.108660370111465,-0.0166813563555479,-0.955812156200409,-0.131155610084534,-0.263099730014801,-0.95581179857254,-0.131158649921417,-0.263099431991577,-0.955811977386475,-0.131156772375107,-0.263099640607834,0.163020640611649,-0.0759156048297882,-0.983697712421417,0.163018926978111,-0.0759001523256302,-0.983699202537537,0.163019001483917,-0.0759007185697556,-0.983699083328247,0.0330745652318001,-0.0914193168282509,-0.99526309967041,0.0330745168030262,-0.0914188772439957,-0.995263159275055,0.033074077218771,-0.0914149284362793,-0.995263576507568,0.214609935879707,-0.0692693814635277,-0.974240481853485,0.214610427618027,-0.0692737028002739,-0.974240064620972,0.214610978960991,-0.0692788437008858,-0.974239468574524,0.12754975259304,-0.0803055092692375,-0.988575875759125,0.127549216151237,-0.0803005397319794,-0.988576352596283,0.127549052238464,-0.0802992135286331,-0.988576412200928,0.212151452898979,-0.0695943310856819,-0.974755525588989,0.212151631712914,-0.0695956870913506,-0.974755465984344,0.212151631712914,-0.0695958882570267,-0.9747554063797, +0.138357490301132,-0.0789730474352837,-0.987228751182556,0.138357475399971,-0.0789729058742523,-0.987228751182556,0.138357475399971,-0.0789727941155434,-0.987228810787201,0.4165398478508,-0.0405666418373585,-0.908211946487427,0.416539877653122,-0.0405666343867779,-0.908212006092072,0.416539788246155,-0.0405659750103951,-0.908212006092072,0.360444188117981,-0.0490125119686127,-0.931492269039154,0.360444247722626,-0.049013152718544,-0.931492149829865,0.360444366931915,-0.0490143895149231,-0.93149209022522,0.284937560558319,-0.0597961917519569,-0.956679224967957,0.28493744134903,-0.0597950257360935,-0.956679344177246,0.284937590360641,-0.0597964748740196,-0.956679105758667,-0.240143850445747,-0.118687011301517,-0.963454365730286,-0.240143939852715,-0.118686243891716,-0.963454484939575,-0.240144014358521,-0.118685625493526,-0.96345454454422,-0.188561335206032,-0.114106029272079,-0.975409924983978,-0.188561245799065,-0.114106714725494,-0.975409805774689,-0.188561171293259,-0.11410741508007,-0.975409805774689,-0.128128811717033,-0.108398348093033,-0.985815823078156,-0.128128901124001,-0.108397550880909,-0.985815942287445,-0.128128901124001,-0.108397535979748,-0.985815942287445,-0.0651033893227577,-0.102059066295624,-0.992645800113678,-0.0651033893227577,-0.102059051394463,-0.992645800113678,-0.0651035383343697,-0.102057658135891,-0.992645919322968,0.125724285840988,-0.123369932174683,0.98436439037323,0.125237420201302,-0.251053273677826,0.959837436676025,0.125544100999832,-0.231856673955917,0.964614629745483,0.125599130988121,-0.112998940050602,0.985624730587006,0.115173146128654,-0.112991169095039,0.986898243427277,0.103410877287388,-0.230896189808846,0.967467486858368,0.108907923102379,-0.17702029645443,0.978163063526154,0.115955151617527,-0.104868471622467,0.987702906131744,0.0997901260852814,-0.230728298425674,0.967887580394745,0.0911896750330925,-0.265112161636353,0.959895849227905,0.0980315878987312,-0.199449509382248,0.974992156028748,0.104672446846962,-0.176377594470978,0.978741407394409,0.121386170387268,-0.251286119222641,0.960271179676056, +0.119005940854549,-0.296628654003143,0.947548985481262,0.120735369622707,-0.267064243555069,0.956085681915283,0.122557811439037,-0.231733694672585,0.96502810716629,0.176681905984879,-0.235962927341461,0.955565333366394,0.184780701994896,-0.280907988548279,0.941778600215912,0.175113692879677,-0.244304895401001,0.953755915164948,0.169218197464943,-0.210143715143204,0.962914824485779,0.166535094380379,-0.210938274860382,0.963208734989166,0.172285124659538,-0.244810849428177,0.954141318798065,0.149037033319473,-0.123802870512009,0.981050908565521,0.150807783007622,-0.130675315856934,0.979888319969177,0.14966157078743,-0.24877455830574,0.956928789615631,0.149067863821983,-0.249525621533394,0.956825911998749,0.138085559010506,-0.12243390083313,0.982823610305786,0.139242276549339,-0.125311091542244,0.982297718524933,0.15318800508976,-0.286932647228241,0.945623219013214,0.153805062174797,-0.294564455747604,0.943173289299011,0.149805277585983,-0.249475941061974,0.956723690032959,0.149785935878754,-0.248753190040588,0.956914901733398,0.114309467375278,-0.104724183678627,0.987910032272339,0.0959161147475243,-0.175039365887642,0.97987824678421,0.105057150125504,-0.0781922191381454,0.99138742685318,0.120373755693436,-0.0209996178746223,0.992506504058838,0.116244710981846,-0.020553357899189,0.993007957935333,0.0978124067187309,-0.0765584707260132,0.992255806922913,0.109650656580925,0.0238396860659122,0.9936842918396,0.122424006462097,0.0518457591533661,0.991122782230377,0.0961376950144768,-0.0761803835630417,0.992448568344116,0.0805045142769814,-0.0987557470798492,0.991849958896637,0.105164773762226,0.014110179618001,0.994354724884033,0.116267509758472,0.0221111550927162,0.992971777915955,0.0815273225307465,-0.172812610864639,0.981574833393097,0.0780946910381317,-0.195938676595688,0.977501630783081,0.0982979983091354,-0.103405006229877,0.989770174026489,0.102103233337402,-0.0775264576077461,0.991748332977295,0.160465657711029,-0.0467032790184021,0.985935866832733,0.197119861841202,-0.145387157797813,0.969539284706116,0.177379325032234,-0.12028680741787,0.976763963699341, +0.145714849233627,-0.0331552401185036,0.988770961761475,0.148914843797684,-0.0316875167191029,0.988342225551605,0.173487886786461,-0.121834829449654,0.977270841598511,0.140927359461784,-0.0517893843352795,0.988664448261261,0.124367795884609,0.0142309125512838,0.992134153842926,0.16457225382328,-0.125368714332581,0.978365302085876,0.18118841946125,-0.206573486328125,0.961508274078369,0.153446853160858,-0.130030244588852,0.979564309120178,0.137192755937576,-0.05284234136343,0.989133954048157,0.177214473485947,-0.153963297605515,0.972054719924927,0.202038913965225,-0.227893680334091,0.952494025230408,0.194302350282669,-0.202614739537239,0.95978844165802,0.1675895601511,-0.124174728989601,0.978005290031433,0.108766727149487,0.0536051094532013,0.992621004581451,0.108476735651493,0.0241460986435413,0.993805766105652,0.123807892203331,0.12787926197052,0.984031796455383,0.118013978004456,0.127004742622375,0.984856605529785,0.110758349299431,0.128031387925148,0.985566139221191,0.117517724633217,0.129606157541275,0.984577000141144,0.133664160966873,0.244041368365288,0.960509181022644,0.119939640164375,0.210308030247688,0.970249950885773,0.122492894530296,0.128240868449211,0.984149277210236,0.118129655718803,0.138627842068672,0.983274042606354,0.144313156604767,0.253140896558762,0.956605195999146,0.148078382015228,0.240373685956001,0.959319233894348,0.099019855260849,0.0266116000711918,0.994729578495026,0.103520259261131,0.014621265232563,0.994519948959351,0.132808342576027,0.133939370512962,0.982050001621246,0.122696042060852,0.128185018897057,0.984131276607513,0.113297507166862,0.104251943528652,0.988076567649841,0.117809481918812,-0.00604283344000578,0.993017911911011,0.118295773863792,-0.00118450936861336,0.992977797985077,0.114391691982746,0.0795167610049248,0.990248322486877,0.116778858006001,0.079487219452858,0.989971935749054,0.115210272371769,-0.00119488849304616,0.993340492248535,0.11129342764616,-0.0200180504471064,0.99358606338501,0.11297232657671,0.0530647188425064,0.992180109024048,0.117494016885757,-0.00118720775935799,0.993072926998138, +0.113781131803989,-0.112989194691181,0.987059950828552,0.111843146383762,-0.104507453739643,0.988215208053589,0.113782115280628,-0.0202871412038803,0.993298590183258,0.119408935308456,-0.005904839374125,0.992827594280243,0.124944448471069,-0.123428292572498,0.984456419944763,0.123194508254528,-0.112998247146606,0.985928237438202,0.118356145918369,-0.00118430610746145,0.992970585823059,0.154533907771111,-0.129764154553413,0.979428648948669,0.150105237960815,-0.123637512326241,0.980908930301666,0.131504833698273,-0.0145127288997173,0.991209387779236,0.142588302493095,-0.0513206385076046,0.988450706005096,0.145008400082588,-0.0506371632218361,0.988133907318115,0.133362054824829,-0.0141963437199593,0.990965723991394,0.118476293981075,0.061188280582428,0.991069853305817,0.132217884063721,0.0167349334806204,0.991079449653625,0.130885988473892,-0.014618119224906,0.991289675235748,0.130104273557663,-0.00498101953417063,0.991487860679626,0.113846153020859,0.104304768145084,0.98800790309906,0.120433963835239,0.0615823939442635,0.990809440612793,0.141455933451653,-0.124971508979797,0.982024610042572,0.139052867889404,-0.122359782457352,0.982696533203125,0.128347560763359,-0.00513288751244545,0.991715967655182,0.13095885515213,-0.0146057084202766,0.991280198097229,0.113290093839169,0.104251220822334,0.988077461719513,0.113800667226315,0.0795239955186844,0.990315854549408,0.111186943948269,0.158513560891151,0.98107647895813,0.110449396073818,0.198099285364151,0.973939299583435,0.110358789563179,0.198095813393593,0.973950266838074,0.110053420066833,0.158550679683685,0.981198310852051,0.110182799398899,0.255406409502029,0.960534989833832,0.109746567904949,0.296099454164505,0.94883131980896,0.114323996007442,0.158409774303436,0.980732679367065,0.112102657556534,0.127841755747795,0.985438764095306,0.118807382881641,0.210489049553871,0.970350027084351,0.122039020061493,0.254396349191666,0.959369122982025,0.113048404455185,0.0795331671833992,0.990401208400726,0.112222373485565,0.0531611703336239,0.992260158061981,0.116093158721924,0.127277284860611,0.985049664974213, +0.11657776683569,0.158334195613861,0.980479419231415,0.118923045694828,0.210470572113991,0.970339894294739,0.123148947954178,0.246677964925766,0.961241126060486,0.135831773281097,0.337245136499405,0.931566178798676,0.124322444200516,0.25419744849205,0.959128558635712,0.110187634825706,0.255405992269516,0.960534512996674,0.116283625364304,0.340651333332062,0.932970941066742,0.120063319802284,0.399497091770172,0.908838212490082,0.113214872777462,0.296019643545151,0.948448657989502,0.127141922712326,0.33877694606781,0.932236611843109,0.128672987222672,0.360251277685165,0.923938453197479,0.137223973870277,0.433903455734253,0.890447914600372,0.133917391300201,0.398209452629089,0.907466471195221,0.127548769116402,0.245578706264496,0.960948705673218,0.139079481363297,0.254631012678146,0.95698481798172,0.152928188443184,0.355084866285324,0.922240555286407,0.139321133494377,0.336622089147568,0.931276202201843,0.072915218770504,0.183633014559746,0.98028689622879,0.127349808812141,0.0721795260906219,0.989228129386902,0.120821885764599,0.0668828785419464,0.990418553352356,0.0689238905906677,0.174077257514,0.982316970825195,0.0791624337434769,0.179229408502579,0.980617225170135,0.124214485287666,0.0685792490839958,0.989882707595825,0.121063813567162,0.0880371406674385,0.988733112812042,0.0934147238731384,0.162636369466782,0.982254147529602,0.117416426539421,0.0651799961924553,0.99094146490097,0.152258202433586,-0.0301526971161366,0.987880706787109,0.137007743120193,0.018263665959239,0.990401566028595,0.113285161554813,0.0853252410888672,0.98989200592041,0.114153705537319,0.0648566484451294,0.991343855857849,0.165209665894508,-0.0442650243639946,0.985264718532562,0.162722200155258,-0.0253401324152946,0.986346483230591,0.120654366910458,0.0667991191148758,0.990444600582123,0.0984008014202118,0.296335309743881,0.95000147819519,0.10151681303978,0.401095628738403,0.910393714904785,0.0951484814286232,0.443274945020676,0.8913214802742,0.0925318077206612,0.3303402364254,0.939315319061279,0.0863586589694023,0.330049812793732,0.940004944801331, +0.0751392915844917,0.443043321371078,0.893345832824707,0.0694231986999512,0.459246456623077,0.885592043399811,0.0783814191818237,0.371193170547485,0.925241649150848,0.0756605193018913,0.443051606416702,0.893297672271729,0.071817435324192,0.480422288179398,0.874091923236847,0.0716678947210312,0.48838809132576,0.869678556919098,0.0744492784142494,0.459866315126419,0.884861707687378,0.105342380702496,0.400777608156204,0.91009908914566,0.110509373247623,0.436944097280502,0.892674446105957,0.10617059469223,0.480583280324936,0.870498478412628,0.101188965141773,0.443309724330902,0.890638768672943,0.00756987929344177,0.381434351205826,0.924364924430847,0.0462897233664989,0.298019528388977,0.953436851501465,0.0505724176764488,0.282159090042114,0.958033800125122,0.0197088923305273,0.350861310958862,0.936220049858093,0.0349860489368439,0.356218278408051,0.933747589588165,0.0613915249705315,0.286833614110947,0.956011295318604,0.0859203040599823,0.219921827316284,0.971726417541504,0.0685130804777145,0.268540352582932,0.960828840732574,0.0460554622113705,0.280196487903595,0.958837330341339,0.0877310484647751,0.183526828885078,0.979092061519623,0.0938722267746925,0.162813439965248,0.982181191444397,0.0731768533587456,0.215930342674255,0.973662793636322,0.0268968790769577,0.288658529520035,0.957054257392883,0.0744945704936981,0.18449105322361,0.98000705242157,0.0863851979374886,0.182852730154991,0.979337871074677,0.0434952564537525,0.27908119559288,0.959281921386719,0.113560706377029,0.104277297854424,0.98804372549057,0.102091670036316,0.197772651910782,0.974917113780975,0.0964800417423248,0.241111904382706,0.965689718723297,0.103501111268997,0.186720654368401,0.976945757865906,0.103450208902359,0.186712011694908,0.976952791213989,0.0956739857792854,0.241024166345596,0.965791821479797,0.0757608860731125,0.316816478967667,0.945456385612488,0.0819027051329613,0.271920382976532,0.958828091621399,0.096270926296711,0.241089165210724,0.965716302394867,0.0877139493823051,0.330114632844925,0.939856767654419,0.0760732218623161,0.370915323495865,0.925545573234558, +0.0796111598610878,0.317539423704147,0.944897294044495,0.102631904184818,0.197794139385223,0.974855959415436,0.0990009903907776,0.29632380604744,0.949942648410797,0.0928587689995766,0.330355256795883,0.939277768135071,0.0966759920120239,0.241133213043213,0.965664803981781,0.0954513400793076,0.163424342870712,0.981927514076233,0.120654918253422,0.0878946632146835,0.988795697689056,0.105258278548717,0.13453534245491,0.985302448272705,0.0768534392118454,0.217085540294647,0.973122537136078,0.0872864574193954,0.220347627997398,0.971508145332336,0.109626822173595,0.135573789477348,0.984683632850647,0.0965423434972763,0.185533374547958,0.97788393497467,0.0737409368157387,0.269865900278091,0.960070192813873,0.107962489128113,0.135178431868553,0.984921753406525,0.122111812233925,0.061920054256916,0.990582942962646,0.113844633102417,0.104304619133472,0.988008081912994,0.0972408652305603,0.185652941465378,0.977792024612427,0.115902408957481,0.0862380564212799,0.98950982093811,0.134333997964859,0.0174102280288935,0.990783154964447,0.122640185058117,0.0620263665914536,0.990511059761047,0.103158168494701,0.134035348892212,0.985592722892761,0.0836503803730011,0.272357940673828,0.958552956581116,0.0770870596170425,0.317066013813019,0.945265471935272,0.0369490273296833,0.417855829000473,0.907761752605438,0.0485608801245689,0.36090087890625,0.931339025497437,0.0452648438513279,0.359770625829697,0.931942164897919,0.0301482789218426,0.416142672300339,0.908799469470978,0.00954015552997589,0.4490085542202,0.893476605415344,0.0266741737723351,0.388769149780273,0.920949041843414,0.0520738884806633,0.421592175960541,0.905289173126221,0.0417413488030434,0.455621063709259,0.889194667339325,0.0329473502933979,0.48326364159584,0.874854624271393,0.0412738174200058,0.457320958375931,0.888343513011932,0.0820860639214516,0.318001627922058,0.944530069828033,0.0749818906188011,0.370783299207687,0.925687670707703,0.0505881570279598,0.456818491220474,0.888120412826538,0.0538605526089668,0.422026842832565,0.904982089996338,0.609730780124664,-0.536800861358643,-0.583157956600189, +0.38581907749176,-0.592666447162628,-0.707029104232788,0.379961401224136,-0.618109822273254,-0.688163995742798,0.599395394325256,-0.56361985206604,-0.56838184595108,-0.494961708784103,-0.0618996694684029,-0.866707265377045,-0.196958303451538,-0.138000845909119,-0.970651030540466,-0.204080387949944,-0.0495701916515827,-0.977698385715485,-0.497835010290146,0.0269280970096588,-0.866853654384613,-0.184782907366753,-0.260904312133789,-0.947514832019806,0.129739910364151,-0.365335524082184,-0.921790421009064,0.12277926504612,-0.237570703029633,-0.963579475879669,-0.19809578359127,-0.12899948656559,-0.971656918525696,0.624787151813507,-0.732506215572357,-0.270325303077698,0.477000534534454,-0.785187244415283,-0.394907116889954,0.452243447303772,-0.814486145973206,-0.363439440727234,0.593569755554199,-0.765154421329498,-0.249426662921906,0.373676538467407,-0.927556335926056,-0.00228000432252884,0.321574181318283,-0.944151759147644,-0.0718850344419479,0.300744563341141,-0.951853632926941,-0.059392012655735,0.350297331809998,-0.936633884906769,0.0029432768933475,-0.722880423069,0.182522252202034,-0.666430413722992,-0.49325367808342,0.155941382050514,-0.855793952941895,-0.49219223856926,0.181054875254631,-0.851449429988861,-0.719464242458344,0.207486093044281,-0.662812769412994,-0.788582921028137,0.46888142824173,-0.397853374481201,-0.631604194641113,0.497557789087296,-0.594569206237793,-0.649312317371368,0.456827223300934,-0.608031570911407,-0.809359490871429,0.42746314406395,-0.402756303548813,-0.470164120197296,-0.858077108860016,-0.206517800688744,-0.443392813205719,-0.896298825740814,-0.00716885644942522,-0.362819939851761,-0.931851387023926,0.00384046882390976,-0.399009317159653,-0.90032172203064,-0.173817440867424,-0.0921898782253265,-0.995115220546722,0.0353118628263474,-0.0744571089744568,-0.992577075958252,0.0961613059043884,-0.0595760941505432,-0.993842601776123,0.0934213176369667,-0.0771158710122108,-0.996325075626373,0.0372769273817539,-0.623154103755951,0.765266060829163,-0.161390423774719,-0.502983808517456,0.812448263168335,-0.294847548007965, +-0.578370630741119,0.748943328857422,-0.323374956846237,-0.699371159076691,0.69630366563797,-0.161373257637024,-0.27536928653717,0.956990301609039,-0.0913308933377266,-0.223475515842438,0.964887201786041,-0.138027176260948,-0.277304857969284,0.950179219245911,-0.142343387007713,-0.327672570943832,0.94155752658844,-0.0781043842434883,-0.43958380818367,-0.374384373426437,-0.816457331180573,-0.611320734024048,-0.54068398475647,-0.57788223028183,-0.532976746559143,-0.672076880931854,-0.514051079750061,-0.39129513502121,-0.52174323797226,-0.75807124376297,-0.573303818702698,-0.609305441379547,-0.547786176204681,-0.628700315952301,-0.726412415504456,-0.277598530054092,-0.521816849708557,-0.821854114532471,-0.228611513972282,-0.495186179876328,-0.722048401832581,-0.48315304517746,0.322992771863937,0.759285092353821,-0.564944207668304,0.281638503074646,0.897429049015045,-0.33955979347229,0.444782465696335,0.79501336812973,-0.412458866834641,0.439379781484604,0.614901840686798,-0.654859721660614,0.138170078396797,0.953086376190186,-0.269323945045471,0.0512356907129288,0.98553591966629,-0.161535874009132,0.170692980289459,0.968110978603363,-0.183371797204018,0.242525935173035,0.915313839912415,-0.321530669927597,0.0885736495256424,0.0644749701023102,-0.993980824947357,-0.204476952552795,-0.0752752721309662,-0.975972771644592,-0.190394625067711,-0.170166283845901,-0.966847121715546,0.103931672871113,-0.0305389482527971,-0.994115471839905,-0.193427592515945,-0.148991748690605,-0.969735682010651,-0.452634394168854,-0.325332492589951,-0.830229461193085,-0.413418561220169,-0.460923403501511,-0.785261034965515,-0.168715491890907,-0.292455732822418,-0.941278338432312,0.270177811384201,0.492240309715271,-0.82746809720993,0.396054118871689,0.675050675868988,-0.622452974319458,0.4871846139431,0.539243876934052,-0.686925888061523,0.325581699609756,0.335148274898529,-0.884122371673584,0.0855523273348808,0.0826073884963989,-0.992903232574463,0.0595380999147892,0.231380447745323,-0.971039891242981,0.296850055456161,0.42205822467804,-0.856590211391449, +0.341623336076736,0.281617283821106,-0.896652281284332,-0.800937473773956,-0.445042729377747,-0.400544792413712,-0.879074394702911,-0.461355298757553,-0.119915068149567,-0.878876864910126,-0.461736738681793,-0.119895085692406,-0.800753474235535,-0.44542995095253,-0.400482565164566,0.00239508366212249,-0.0835544168949127,-0.996500372886658,0.0157410390675068,-0.163807734847069,-0.986366748809814,0.0114547340199351,-0.136439874768257,-0.99058210849762,0.00500589609146118,-0.0983899384737015,-0.995135366916656,0.00134560267906636,-0.0836563408374786,-0.996493756771088,0.0158142820000648,-0.199144765734673,-0.979842483997345,0.0162663217633963,-0.192549630999565,-0.981152415275574,0.0133643504232168,-0.164248988032341,-0.986328423023224,0.0018350426107645,-0.0836088210344315,-0.99649703502655,0.0101782707497478,-0.19040147960186,-0.98165363073349,0.0126939648762345,-0.207230240106583,-0.978209912776947,0.0131530147045851,-0.199462696909904,-0.979817152023315,0.00220341142266989,-0.083573043346405,-0.996499240398407,0.00427424488589168,-0.14060352742672,-0.990056812763214,0.00611263979226351,-0.174709737300873,-0.984601080417633,0.00760385766625404,-0.190520331263542,-0.981653869152069,0.00231802463531494,-0.0835619121789932,-0.996499955654144,0.00494227791205049,-0.0984038561582565,-0.995134353637695,-0.00177821982651949,-0.0604419782757759,-0.998170137405396,-0.0075192442163825,-0.0269948877394199,-0.99960732460022,-0.000100703873613384,-0.00178565038368106,-0.999998390674591,0.000991929788142443,-0.0297554805874825,-0.999556720256805,0.00202090782113373,-0.068498857319355,-0.997649192810059,0.00235671969130635,-0.0835581496357918,-0.996500134468079,0.00235556275583804,-0.0835582613945007,-0.996500134468079,-0.00668443785980344,-0.0268242303282022,-0.999617874622345,-0.011525759473443,0.00743947317823768,-0.999905943870544,-0.0131447492167354,0.0234763193875551,-0.999638080596924,-0.000613838958088309,-0.106859616935253,-0.994274020195007,0.000755476183257997,-0.0684716254472733,-0.99765282869339,0.00396996131166816,-0.0595631673932076,-0.99821662902832, +0.000418554060161114,-0.118728414177895,-0.992926716804504,0.00186378881335258,-0.0836060345172882,-0.99649715423584,-0.0108321718871593,0.023820711299777,-0.999657571315765,-0.011521571315825,0.0411150343716145,-0.999088048934937,-0.00942318141460419,0.033369667828083,-0.999398648738861,0.00224558915942907,-0.0835689455270767,-0.996499538421631,-0.00592664070427418,0.0336304754018784,-0.999416768550873,-0.0042676068842411,0.0270301438868046,-0.999625623226166,-0.00167141889687628,-0.00180095294490457,-0.999997019767761,0.00351777579635382,-0.140597879886627,-0.99006062746048,0.00229775905609131,-0.0835638791322708,-0.996499836444855,0.00204356387257576,-0.0684993416070938,-0.997649073600769,0.00274689472280443,-0.106950543820858,-0.994260609149933,0.00414330884814262,-0.140602558851242,-0.990057528018951,0.00437188614159822,-0.106994070112705,-0.994250059127808,0.000849422183819115,-0.118767358362675,-0.992921829223633,-0.0013757748529315,-0.174515336751938,-0.98465359210968,0.00300144497305155,-0.174742430448532,-0.984609663486481,0.00484257377684116,-0.140607714653015,-0.990053534507751,0.00299664889462292,-0.174823358654976,-0.984595239162445,0.000415806192904711,-0.2206060141325,-0.97536301612854,0.00888713635504246,-0.190461218357086,-0.981654465198517,0.00666893692687154,-0.17470371723175,-0.984598517417908,0.00365608651190996,-0.22071447968483,-0.975331664085388,0.0058373361825943,-0.254195272922516,-0.967135369777679,0.0097049605101347,-0.20747184753418,-0.978192865848541,0.0110557256266475,-0.190360650420189,-0.981652021408081,0.0115573350340128,-0.254106760025024,-0.967107117176056,0.0103701092302799,-0.269897609949112,-0.962833225727081,0.0120432833209634,-0.19959482550621,-0.979804515838623,0.0110692828893661,-0.207361802458763,-0.978201746940613,0.0156882982701063,-0.269515365362167,-0.962868392467499,0.017680186778307,-0.268645644187927,-0.963076770305634,0.0154430530965328,-0.213950380682945,-0.976722478866577,0.00414134003221989,-0.165952086448669,-0.986125111579895,0.0108222952112556,-0.193409472703934,-0.981058537960052, +0.0234977714717388,-0.247645437717438,-0.968565762042999,0.00267806090414524,-0.108553387224674,-0.994087040424347,0.0030309078283608,-0.0988215580582619,-0.995100617408752,0.0109060630202293,-0.136557281017303,-0.990572214126587,0.0158169139176607,-0.163592979311943,-0.986401200294495,0.0176587104797363,-0.248745486140251,-0.968407869338989,0.0100860856473446,-0.193525269627571,-0.981043457984924,0.0127552831545472,-0.199510097503662,-0.979812860488892,0.0222820062190294,-0.268038928508759,-0.963150441646576,-0.0184058137238026,0.00607943534851074,-0.999812126159668,-0.00621579820290208,-0.0267284214496613,-0.999623477458954,0.000453125743661076,-0.0599406398832798,-0.998201906681061,-0.00542258471250534,-0.0489294528961182,-0.998787522315979,0.0150157790631056,-0.163813412189484,-0.986377120018005,0.00293277204036713,-0.138258531689644,-0.990391910076141,0.00485054031014442,-0.165821641683578,-0.986143827438354,0.0225015934556723,-0.212266281247139,-0.976952731609344,-0.0218553692102432,0.0534570328891277,-0.998331010341644,-0.026687977835536,0.087408147752285,-0.99581503868103,-0.0116123417392373,0.0237045418471098,-0.999651551246643,-0.0102881975471973,0.00766911683604121,-0.999917685985565,-0.0061006136238575,-0.0491278022527695,-0.998773872852325,-0.0053325486369431,-0.0612399317324162,-0.998108863830566,0.00292126275599003,-0.0988455042243004,-0.995098531246185,0.00837264955043793,-0.106874577701092,-0.994237303733826,-0.0254951044917107,0.0526123344898224,-0.998289585113525,-0.0139441676437855,0.00699066556990147,-0.999878346920013,-0.00549897737801075,-0.0265818573534489,-0.999631524085999,-0.0140164596959949,0.00727179273962975,-0.999875426292419,-0.0163693986833096,0.103995896875858,-0.994442999362946,-0.00994715187698603,0.0333305522799492,-0.99939489364624,-0.0108700823038816,0.0411887913942337,-0.99909234046936,-0.0169616136699915,0.104993626475334,-0.994328200817108,-0.00717271072790027,0.026925552636385,-0.999611794948578,-0.00737354252487421,0.0335225984454155,-0.999410808086395,-0.00980149861425161,0.104396983981133,-0.994487464427948, +-0.00888469535857439,0.083604171872139,-0.996459543704987,-0.0239025186747313,0.104149349033833,-0.994274437427521,-0.0133755523711443,0.0409050434827805,-0.999073505401611,-0.00978311151266098,0.02397689409554,-0.999664664268494,-0.0207365844398737,0.0884837880730629,-0.995861828327179,-0.00573133351281285,-0.0018404854927212,-0.999981939792633,-0.00463085807859898,0.0270170774310827,-0.999624311923981,-0.00293220044113696,0.0836328715085983,-0.996492326259613,-0.00412881514057517,0.0478071942925453,-0.998848080635071,-0.00328231719322503,-0.0296810083091259,-0.999554038047791,-0.0048889028839767,-0.00183228484820575,-0.999986410140991,0.00144823989830911,0.0475676618516445,-0.998867034912109,0.00170707749202847,-0.002237907378003,-0.999996066093445,0.000760999624617398,-0.0684717446565628,-0.99765282869339,0.00226918654516339,-0.0297776311635971,-0.999553978443146,0.00290827290154994,-0.00232921447604895,-0.999993085861206,-0.000367209780961275,-0.0591584965586662,-0.998248636722565,0.318820804357529,-0.947812378406525,0.00222446373663843,0.316705465316772,-0.945956885814667,-0.06973697245121,0.317183554172516,-0.945789694786072,-0.0698330029845238,0.319304913282394,-0.947649300098419,0.00228459388017654,0.853324353694916,-0.225980833172798,-0.469862133264542,0.955794334411621,-0.224309325218201,-0.190112173557281,0.955780267715454,-0.22438108921051,-0.190097987651825,0.853313148021698,-0.226053163409233,-0.469847500324249,0.680644631385803,-0.116539902985096,-0.72328519821167,0.869862139225006,-0.111144073307514,-0.480610996484756,0.869846999645233,-0.111343055963516,-0.480592221021652,0.680630266666412,-0.11673703789711,-0.723266899585724,-0.462963610887527,-0.184098035097122,-0.867048263549805,-0.702896118164063,-0.225223928689957,-0.674693405628204,-0.702800512313843,-0.225592061877251,-0.674670100212097,-0.462865203619003,-0.184467181563377,-0.867022275924683,-0.693062126636505,-0.262398481369019,-0.671425402164459,-0.861754775047302,-0.290647774934769,-0.415815502405167,-0.861656010150909,-0.290981024503708,-0.41578733921051, +-0.692965447902679,-0.262729793787003,-0.671395599842072,0.426074534654617,-0.0902332663536072,-0.900177001953125,0.682408571243286,-0.0842149332165718,-0.726103603839874,0.682389855384827,-0.0846144482493401,-0.726074695587158,0.426053255796432,-0.090632475912571,-0.900146901607513,0.128066137433052,-0.0854087024927139,-0.988081276416779,0.426247656345367,-0.0827605202794075,-0.900812745094299,0.4262435734272,-0.0824253782629967,-0.900845468044281,0.128050327301025,-0.0850700885057449,-0.988112509250641,0.125364899635315,-0.0570463612675667,-0.990469336509705,-0.179015070199966,-0.119427405297756,-0.976570963859558,-0.178916618227959,-0.119795829057693,-0.97654390335083,0.125461012125015,-0.0574115961790085,-0.990436017513275,-0.178632080554962,-0.121243834495544,-0.976417183876038,-0.465299099683762,-0.173740863800049,-0.867934882640839,-0.465333491563797,-0.173523172736168,-0.867960035800934,-0.178657934069633,-0.121022567152977,-0.976439893245697,-0.182806715369225,-0.079995796084404,-0.979889035224915,0.128081351518631,-0.084169514477253,-0.988185584545135,0.128057092428207,-0.0845193788409233,-0.988158881664276,-0.182830110192299,-0.0803454220294952,-0.979856073856354,-0.475922882556915,-0.0650682598352432,-0.877076685428619,-0.182790547609329,-0.0787761583924294,-0.979990780353546,-0.182806104421616,-0.0785331875085831,-0.980007350444794,-0.475924611091614,-0.0648251101374626,-0.87709379196167,0.664868712425232,0.0936583429574966,-0.741065323352814,0.415039777755737,0.0212893169373274,-0.909554183483124,0.415175527334213,0.0207222942262888,-0.909505367279053,0.665003597736359,0.0930941179394722,-0.741015315055847,0.416920363903046,0.0127966981381178,-0.908852934837341,0.125262320041656,-0.0565576069056988,-0.990510284900665,0.125165209174156,-0.056002214550972,-0.990554094314575,0.416807591915131,0.0133517980575562,-0.908896744251251,-0.722069203853607,-0.0285630486905575,-0.69123101234436,-0.475620359182358,-0.0539546720683575,-0.877994418144226,-0.475635141134262,-0.054193090647459,-0.877971649169922,-0.722079157829285,-0.0288005396723747,-0.691210806369781, +-0.894721686840057,0.0467528365552425,-0.444170445203781,-0.719631731510162,0.00949870422482491,-0.694290935993195,-0.719659447669983,0.00911735650151968,-0.694267332553864,-0.894754648208618,0.0463741943240166,-0.44414359331131,0.895760536193848,0.373786896467209,-0.240616977214813,0.799476087093353,0.30974867939949,-0.514678359031677,0.799417853355408,0.309866726398468,-0.514697790145874,0.89570164680481,0.37390324473381,-0.240655303001404,0.839372873306274,0.197117164731026,-0.506554901599884,0.656634092330933,0.125886037945747,-0.743629217147827,0.656681180000305,0.125700622797012,-0.743618965148926,0.839419364929199,0.196929782629013,-0.506550908088684,-0.94983845949173,0.255691140890121,-0.180080786347389,-0.865645051002502,0.207664459943771,-0.45555916428566,-0.865950226783752,0.206449061632156,-0.455531418323517,-0.950187265872955,0.254493325948715,-0.179936975240707,0.0922180190682411,0.970038950443268,-0.224767297506332,0.0948000848293304,0.969698548316956,-0.22516180574894,0.0982861667871475,0.981408357620239,-0.164856284856796,0.0956925377249718,0.981598317623138,-0.165250614285469,0.50295215845108,0.473501950502396,-0.723073422908783,0.689161419868469,0.503019154071808,-0.521563351154327,0.706579148769379,0.485096514225006,-0.515196442604065,0.520587503910065,0.456012487411499,-0.721831977367401,-0.099653035402298,0.767577111721039,-0.633162498474121,0.029336579144001,0.219726353883743,-0.975120425224304,0.0222690086811781,0.260932832956314,-0.965100169181824,-0.106795869767666,0.805978417396545,-0.582231462001801,-0.159781470894814,0.739479422569275,-0.653941929340363,-0.171800687909126,0.783332943916321,-0.597389280796051,0.00155127071775496,0.256139039993286,-0.966638803482056,0.0211174096912146,0.189831748604774,-0.981589555740356,0.0563354641199112,0.0801077112555504,-0.995193064212799,0.0289878882467747,0.192100882530212,-0.980947077274323,0.0161000266671181,0.259517550468445,-0.965604186058044,0.028225015848875,0.219551891088486,-0.975192427635193,-0.159917503595352,0.574773073196411,-0.802534937858582, +-0.181294620037079,0.625344812870026,-0.758996725082397,0.0210262145847082,0.134350255131721,-0.99071079492569,0.0331735014915466,0.105566136538982,-0.993858814239502,0.0426690950989723,0.108890675008297,-0.99313759803772,0.0334106720983982,0.138336911797523,-0.989821493625641,0.0741581469774246,0.00521420734003186,-0.997232854366302,0.085027351975441,-0.0304111577570438,-0.995914459228516,0.037186536937952,0.139548078179359,-0.989516854286194,0.0240746662020683,0.190685778856277,-0.981355845928192,0.0583825968205929,0.080485962331295,-0.995044529438019,0.0766996741294861,0.0057313316501677,-0.997037768363953,-0.160310760140419,0.640016853809357,-0.751451134681702,-0.191648051142693,0.722882628440857,-0.663861274719238,0.0124463401734829,0.187317430973053,-0.982220649719238,0.0304528884589672,0.13738676905632,-0.990049302577972,0.0636909976601601,0.0425434708595276,-0.997062504291534,0.064042940735817,0.0397277697920799,-0.997156143188477,0.0452068187296391,0.212058797478676,-0.976210713386536,0.0457300990819931,0.219763517379761,-0.974480748176575,0.0491739325225353,0.21997544169426,-0.974265277385712,0.0464454740285873,0.212195590138435,-0.976122915744781,-0.011454451829195,0.774166166782379,-0.632878839969635,0.00269768782891333,0.804396688938141,-0.594086527824402,0.0409057959914207,0.211581379175186,-0.976503968238831,0.0383674092590809,0.221133410930634,-0.97448855638504,-0.0539038553833961,0.776125848293304,-0.628269970417023,-0.0463223792612553,0.772382080554962,-0.633466899394989,0.0642418637871742,0.0397516526281834,-0.997142374515533,0.0580414235591888,0.0804229378700256,-0.99506950378418,0.0374464839696884,0.220990762114525,-0.974556803703308,0.0396705269813538,0.211443573236465,-0.976584792137146,0.0997882783412933,0.688272476196289,-0.718556463718414,0.0699450150132179,0.169851675629616,-0.982984244823456,0.0743146985769272,0.236984848976135,-0.968666970729828,0.104374647140503,0.783244848251343,-0.612889349460602,0.048663854598999,0.800921022891998,-0.596789300441742,0.0657491683959961,0.792149484157562,-0.606775283813477, +0.062474898993969,0.237226605415344,-0.969443440437317,0.0590442568063736,0.220568433403969,-0.973582804203033,0.062817245721817,0.0424761809408665,-0.99712073802948,0.0586992278695107,0.220548048615456,-0.973608255386353,0.0594882741570473,0.237282291054726,-0.969617664813995,0.0620093941688538,0.170194640755653,-0.983457505702972,0.07306008040905,-0.0331689678132534,-0.99677586555481,0.069117084145546,0.00418869871646166,-0.997599840164185,0.0797365009784698,-0.0496487207710743,-0.995578765869141,0.0816798880696297,-0.0755449160933495,-0.993791460990906,0.0763244181871414,-0.0762773603200912,-0.994161188602448,0.0735109150409698,-0.0504633486270905,-0.996016919612885,0.0745089128613472,-0.059465765953064,-0.995445787906647,0.0773022472858429,-0.0852417424321175,-0.993357121944427,0.0718235149979591,-0.0506837330758572,-0.996128857135773,0.0632146671414375,0.0396283008158207,-0.997212886810303,0.0635571852326393,0.0425331629812717,-0.997071385383606,0.073515959084034,-0.05957205966115,-0.995513200759888,0.0687074512243271,0.00410538073629141,-0.997628450393677,0.0580366998910904,0.0804220661520958,-0.995069921016693,0.0653674378991127,0.0398867763578892,-0.997063755989075,0.0780691727995872,-0.0498671270906925,-0.995700061321259,-0.194014206528664,0.542664885520935,-0.817235231399536,0.0181954726576805,0.100302711129189,-0.994790554046631,0.0236685685813427,0.08970557898283,-0.995687127113342,-0.171455234289169,0.499721944332123,-0.849047183990479,-0.117007128894329,0.317534685134888,-0.9410001039505,-0.20208203792572,0.457200944423676,-0.866100549697876,0.0111032566055655,0.0842635408043861,-0.996381640434265,0.0507387518882751,0.00860321056097746,-0.998674988746643,0.0756764635443687,-0.0325666815042496,-0.99660050868988,0.0594123490154743,0.012238304130733,-0.998158514499664,0.0304540637880564,0.0926381722092628,-0.99523401260376,0.0266282018274069,0.103268980979919,-0.994297027587891,0.0436709187924862,-0.0150927025824785,-0.998932063579559,-0.0350315012037754,0.135901555418968,-0.990102887153625,0.0610870085656643,-0.0490058250725269,-0.996928751468658, +0.0837873443961143,-0.0985263139009476,-0.991600871086121,0.0841917991638184,-0.0983529388904572,-0.99158388376236,0.0680504888296127,-0.0461246967315674,-0.996615171432495,0.075402095913887,-0.0735312774777412,-0.994438409805298,0.0894979238510132,-0.119236953556538,-0.988823890686035,0.0760959908366203,-0.0427906215190887,-0.996181905269623,0.0597003698348999,0.012359032407403,-0.99813985824585,0.0727757588028908,-0.0332343950867653,-0.996794521808624,0.0820933133363724,-0.0719861015677452,-0.994021475315094,-0.029296699911356,0.146208614110947,-0.988819897174835,-0.121504917740822,0.309699058532715,-0.943039357662201,0.0454282462596893,0.00637814123183489,-0.998947262763977,0.0691039487719536,-0.0456884652376175,-0.996562778949738,0.0654759928584099,0.0114687057211995,-0.997788310050964,0.0640638396143913,0.0192675162106752,-0.997759819030762,0.0740264505147934,0.148932501673698,-0.986072719097137,0.0761011615395546,0.128487095236778,-0.988787055015564,0.0828094407916069,0.127572685480118,-0.98836624622345,0.0776723697781563,0.148642763495445,-0.985835909843445,0.149306297302246,0.587348580360413,-0.795442819595337,0.16143499314785,0.522052228450775,-0.837496399879456,0.0741192400455475,0.148925140500069,-0.986066818237305,0.0711161568760872,0.169800162315369,-0.982909142971039,0.121159642934799,0.680419623851776,-0.722737491130829,0.125517427921295,0.599757850170135,-0.790275871753693,0.0627120658755302,0.0192186925560236,-0.997846603393555,0.0598126724362373,0.0422445833683014,-0.997315406799316,0.0653174296021461,0.170053020119667,-0.983267903327942,0.069510892033577,0.149288430809975,-0.986347436904907,0.123192220926285,0.195830494165421,-0.972869098186493,0.0724491700530052,0.00865225121378899,-0.997334599494934,0.090657465159893,0.0849912092089653,-0.992248892784119,0.168572440743446,0.386123538017273,-0.90691351890564,0.181844308972359,0.506577491760254,-0.84280002117157,0.16864125430584,0.386051893234253,-0.906931221485138,0.0868868976831436,0.0858105942606926,-0.992515683174133,0.0915494114160538,0.126371756196022,-0.987749457359314, +0.0716506540775299,0.0112349633127451,-0.997366607189178,0.089136578142643,0.126704394817352,-0.987927496433258,0.0833389610052109,0.0865801721811295,-0.992753088474274,0.0713145583868027,0.00886144023388624,-0.997414588928223,0.0744889006018639,-0.0972549617290497,-0.992468059062958,0.0752622336149216,-0.0612028911709785,-0.995283782482147,0.0798933357000351,-0.048745833337307,-0.995610892772675,0.0763807520270348,-0.11031960695982,-0.990956902503967,0.0683712288737297,-0.108991406857967,-0.991688668727875,0.0772395953536034,-0.0482868514955044,-0.995842635631561,0.0987151712179184,0.00627913326025009,-0.99509596824646,0.0596451684832573,-0.163095578551292,-0.984805822372437,0.0692614689469337,-0.046905443072319,-0.996495246887207,0.0783700570464134,0.00756014417856932,-0.996895730495453,0.128052398562431,0.190461531281471,-0.973307251930237,0.0901751890778542,0.015783067792654,-0.995800852775574,0.0699640586972237,-0.0611594095826149,-0.995672941207886,0.0776079967617989,0.0110089387744665,-0.996923208236694,0.0788426399230957,0.00747294165194035,-0.996859133243561,0.0733849331736565,-0.0476197116076946,-0.996166229248047,0.0819417759776115,-0.0972616598010063,-0.991879999637604,0.0765411704778671,-0.110346145927906,-0.990941643714905,0.0749909579753876,-0.166955143213272,-0.983108520507813,0.0835912451148033,-0.123139157891273,-0.988862693309784,0.0866503566503525,-0.123107396066189,-0.988603234291077,0.0790041163563728,-0.167545303702354,-0.982693791389465,0.0776775181293488,-0.211239069700241,-0.974343061447144,0.0848449096083641,-0.173248097300529,-0.981216907501221,0.0819413363933563,-0.167975589632988,-0.982379674911499,0.0307402424514294,-0.336858481168747,-0.941053330898285,-0.0085557708516717,-0.494830667972565,-0.868947386741638,0.0762281194329262,-0.211038380861282,-0.974500894546509,0.0821753963828087,-0.111276485025883,-0.990386247634888,0.0599210299551487,-0.163397699594498,-0.984738886356354,0.0223458092659712,-0.328268855810165,-0.9443199634552,0.0757534056901932,-0.167067468166351,-0.98303097486496, +0.0819697827100754,-0.121319778263569,-0.989223182201385,0.0760289579629898,-0.0733866989612579,-0.994401335716248,0.0757697001099586,-0.0825216546654701,-0.993704795837402,0.0753346234560013,-0.0903060734272003,-0.993060708045959,0.0778027698397636,-0.089949257671833,-0.992902755737305,0.0770124197006226,-0.0823487862944603,-0.993623554706573,0.0772961676120758,-0.0852430686354637,-0.993357479572296,0.0772681161761284,-0.0852477848529816,-0.993359208106995,0.0770324543118477,-0.082345999777317,-0.993622243404388,0.0763575956225395,-0.0762728303670883,-0.994158983230591,0.0773095563054085,-0.0852409079670906,-0.993356585502625,0.0773270353674889,-0.0852395445108414,-0.993355274200439,0.078509695827961,-0.0728141888976097,-0.994250595569611,0.073210097849369,-0.0331344455480576,-0.996766030788422,0.0789865776896477,-0.0759135782718658,-0.993981003761292,0.0790438950061798,-0.0820658802986145,-0.993487417697906,0.191534087061882,-0.396827936172485,-0.897687196731567,0.105224654078484,-0.180115386843681,-0.978001236915588,0.0988907292485237,-0.166678234934807,-0.981039822101593,0.23237007856369,-0.515974879264832,-0.82448410987854,0.248099878430367,-0.49504229426384,-0.832694113254547,0.0970439836382866,-0.167506396770477,-0.981083154678345,0.120144113898277,-0.217296555638313,-0.968683481216431,0.276345878839493,-0.565823078155518,-0.776838064193726,0.0990051552653313,-0.166626885533333,-0.981036961078644,0.0710640177130699,-0.103967413306236,-0.992038667201996,0.0792269110679626,-0.122076459228992,-0.989353537559509,0.121110014617443,-0.216888234019279,-0.968654632568359,0.110067382454872,-0.170329496264458,-0.979220628738403,0.0369928404688835,-0.0275634601712227,-0.998935401439667,0.0755366161465645,-0.10205765068531,-0.991906523704529,0.105612464249134,-0.163656577467918,-0.980847895145416,-0.0598755031824112,-0.735515117645264,-0.674857378005981,0.0635920017957687,-0.321426838636398,-0.944796681404114,0.0656322166323662,-0.291693031787872,-0.954257667064667,-0.0500748232007027,-0.658457577228546,-0.750950276851654, +-0.00358659075573087,-0.499451518058777,-0.866334438323975,-0.0546304807066917,-0.654836416244507,-0.753793716430664,0.0609586238861084,-0.290921032428741,-0.954803168773651,0.0802516117691994,-0.211594387888908,-0.97405731678009,0.0885987132787704,-0.173207595944405,-0.980892181396484,0.0835922434926033,-0.212053447961807,-0.973676443099976,0.0727149620652199,-0.292850822210312,-0.953389227390289,0.0686888545751572,-0.321927815675735,-0.944269180297852,0.0926245301961899,-0.173161387443542,-0.98052841424942,0.0798816680908203,-0.32299867272377,-0.943022131919861,0.0817739218473434,-0.347345232963562,-0.934165060520172,0.0934620797634125,-0.214549526572227,-0.972231209278107,0.0929220840334892,-0.214570000767708,-0.972278416156769,0.0859639644622803,-0.347549617290497,-0.933712780475616,0.0864626914262772,-0.382674813270569,-0.919828414916992,0.0919664055109024,-0.300617188215256,-0.949300527572632,0.0800401046872139,-0.347258865833282,-0.934347331523895,0.00757038500159979,-0.790926933288574,-0.611863851547241,0.00688938889652491,-0.839797854423523,-0.542855739593506,0.0811866223812103,-0.382578253746033,-0.92034924030304,0.0725014582276344,-0.322297126054764,-0.943858206272125,-0.0332772731781006,-0.749732434749603,-0.660903930664063,-0.0193551052361727,-0.781999707221985,-0.622978389263153,0.0764359012246132,-0.347075998783112,-0.934716999530792,0.25941675901413,-0.583217322826385,-0.76977950334549,0.108877830207348,-0.222037047147751,-0.968940317630768,0.130949392914772,-0.273956477642059,-0.952785551548004,0.28929403424263,-0.659336090087891,-0.693963229656219,0.267903685569763,-0.676231920719147,-0.686249315738678,0.118991568684578,-0.278552651405334,-0.953021228313446,0.143895536661148,-0.343804180622101,-0.927950799465179,0.292067736387253,-0.744248688220978,-0.600658357143402,0.112432107329369,-0.281051337718964,-0.953084051609039,0.0782208517193794,-0.174843296408653,-0.981484234333038,0.105083763599396,-0.258548468351364,-0.960265636444092,0.133651331067085,-0.34721976518631,-0.928211033344269,0.102265685796738,-0.224800616502762,-0.969023466110229, +0.0673494786024094,-0.125339671969414,-0.989825248718262,0.0833735764026642,-0.173513323068619,-0.981296062469482,0.120708480477333,-0.277896016836166,-0.952996969223022,0.0982974022626877,-0.260360151529312,-0.960494756698608,0.0823670476675034,-0.173773556947708,-0.981335043907166,0.0702566131949425,-0.121807985007763,-0.990064144134521,0.0952081829309464,-0.245474606752396,-0.96471631526947,0.0937016680836678,-0.245757207274437,-0.96479195356369,0.0778895616531372,-0.120653964579105,-0.989634156227112,0.0776911526918411,-0.11644422262907,-0.990153968334198,0.0940085127949715,-0.245075836777687,-0.964935421943665,0.0809512212872505,-0.120188869535923,-0.989445090293884,0.0777290984988213,-0.089959904551506,-0.992907524108887,0.0772272944450378,-0.0852524489164352,-0.993362009525299,0.0805244818329811,-0.116097800433636,-0.989968299865723,0.0851805880665779,-0.173045605421066,-0.981223464012146,0.079412505030632,-0.122025296092033,-0.989344954490662,0.0708378329873085,-0.0909545570611954,-0.99333244562149,0.0730836465954781,-0.121381506323814,-0.98991185426712,0.225792974233627,-0.850117385387421,-0.475728869438171,0.218784108757973,-0.831256747245789,-0.511024415493011,0.126184821128845,-0.383675128221512,-0.914806365966797,0.12953607738018,-0.391973048448563,-0.910811543464661,0.122145101428032,-0.393454283475876,-0.911193907260895,0.119113996624947,-0.385438352823257,-0.915013134479523,0.0935608521103859,-0.245783567428589,-0.964798927307129,0.0944816395640373,-0.245001837611198,-0.964908003807068,0.132124066352844,-0.382177025079727,-0.914594948291779,0.123670257627964,-0.350503742694855,-0.928360283374786,0.0993157923221588,-0.260089188814163,-0.960463464260101,0.0963136404752731,-0.245266914367676,-0.964659512042999,0.268184393644333,-0.810379326343536,-0.52092456817627,0.25547268986702,-0.766015529632568,-0.589876115322113,0.13072107732296,-0.34818834066391,-0.928265511989594,0.14115571975708,-0.37986895442009,-0.91420716047287,0.0756192803382874,-0.912992179393768,-0.400907784700394,0.0971335470676422,-0.429392755031586,-0.897879183292389, +0.095227062702179,-0.443867772817612,-0.891018092632294,0.0676604807376862,-0.909258544445038,-0.410695761442184,0.0345665067434311,-0.845117509365082,-0.53346186876297,0.0189618989825249,-0.905890464782715,-0.423087537288666,0.0794326663017273,-0.444197565317154,-0.892400801181793,0.0837901085615158,-0.382627218961716,-0.920095443725586,0.0923329293727875,-0.300593376159668,-0.949272513389587,0.0895211175084114,-0.382725894451141,-0.91951459646225,0.0918052271008492,-0.443948745727539,-0.891336917877197,0.0955220684409142,-0.429541736841202,-0.897980868816376,0.0772307068109512,-0.0852499082684517,-0.99336189031601,0.0744304731488228,-0.059474166482687,-0.995451152324677,0.0747795328497887,-0.0626776069402695,-0.995228409767151,0.0775511860847473,-0.0882407426834106,-0.993075728416443,0.0770755335688591,-0.0882845893502235,-0.993108928203583,0.0750194191932678,-0.0626576989889145,-0.995211601257324,0.0754880607128143,-0.0612047053873539,-0.995266616344452,0.0782139524817467,-0.097258985042572,-0.992181122303009,0.0716318339109421,-0.0629384145140648,-0.995443522930145,0.0690343677997589,0.0194467641413212,-0.997424781322479,0.0693266913294792,0.0113229984417558,-0.997529745101929,0.0718316435813904,-0.0611749328672886,-0.995539009571075,0.0724872276186943,-0.0596821345388889,-0.995582103729248,0.0635275021195412,0.0425308793783188,-0.997073471546173,0.0652914643287659,0.01931182295084,-0.997679352760315,0.0724955424666405,-0.0628669187426567,-0.995385408401489,0.0773036554455757,-0.0852437242865562,-0.993356823921204,0.0772950127720833,-0.0852432027459145,-0.993357539176941,0.0782294273376465,-0.0940153226256371,-0.992492496967316,0.0791463553905487,-0.102512426674366,-0.991578042507172,0.0834616348147392,-0.102117665112019,-0.991264998912811,0.0810360535979271,-0.0937554910778999,-0.992291808128357,0.0810215920209885,-0.123164921998978,-0.98907333612442,0.0858198627829552,-0.173237785696983,-0.981133818626404,0.0800109952688217,-0.0938504859805107,-0.992366075515747,0.0786519572138786,-0.0881392136216164,-0.99299818277359, +0.0782277658581734,-0.0972590073943138,-0.992180049419403,0.0808260291814804,-0.123166844248772,-0.989089071750641,0.0772510319948196,-0.0852482244372368,-0.99336051940918,0.077241063117981,-0.0852487236261368,-0.993361234664917,0.0775731131434441,-0.0882387161254883,-0.993074178695679,0.0782037824392319,-0.0940176919102669,-0.992494344711304,0.0934683009982109,-0.245160281658173,-0.964966475963593,0.0773531273007393,-0.116485491394997,-0.990175604820251,0.0794728770852089,-0.136341959238052,-0.987468957901001,0.094512552022934,-0.256684601306915,-0.961863100528717,0.0942639634013176,-0.256717085838318,-0.961878716945648,0.0853398889303207,-0.135758951306343,-0.987059652805328,0.0900158882141113,-0.21467912197113,-0.972527682781219,0.0963376238942146,-0.300330370664597,-0.948957800865173,0.0885431841015816,-0.135438501834869,-0.986821472644806,0.0843459963798523,-0.102036491036415,-0.991198420524597,0.0864079818129539,-0.173231527209282,-0.981083393096924,0.090542234480381,-0.21465952694416,-0.972483217716217,0.0805228352546692,-0.116097994148731,-0.989968359470367,0.0772456303238869,-0.0852503478527069,-0.993360757827759,0.0791119039058685,-0.102515585720539,-0.991580486297607,0.0826300010085106,-0.136028856039047,-0.987252950668335,0.183483049273491,-0.862371981143951,-0.471856415271759,0.119120307266712,-0.394053608179092,-0.911335349082947,0.121103174984455,-0.407217353582382,-0.905266880989075,0.181296676397324,-0.879474699497223,-0.440063267946243,0.139751002192497,-0.886734843254089,-0.440648436546326,0.111754342913628,-0.408682465553284,-0.905808806419373,0.111624866724014,-0.428001344203949,-0.896858334541321,0.128880769014359,-0.909974455833435,-0.3941271007061,0.109759673476219,-0.408990174531937,-0.905913949012756,0.0935353636741638,-0.256812363862991,-0.961924374103546,0.097299300134182,-0.300266474485397,-0.948879778385162,0.110742904245853,-0.428088665008545,-0.896925926208496,0.11638393253088,-0.394592374563217,-0.911455810070038,0.0928675606846809,-0.245254054665565,-0.965000629425049,0.0936856344342232,-0.25679275393486,-0.961915075778961, +0.11828576028347,-0.407662898302078,-0.905438780784607,0.116739697754383,-0.992732286453247,0.0292310267686844,0.0932948812842369,-0.993374288082123,0.0671088695526123,0.152214765548706,-0.986155033111572,-0.0657943487167358,0.182585120201111,-0.977448105812073,-0.106103837490082,0.249165892601013,-0.660727083683014,-0.708065092563629,0.174491733312607,-0.978308022022247,-0.111652068793774,0.14166122674942,-0.987535774707794,-0.0685949474573135,0.131757870316505,-0.989982187747955,-0.0507448427379131,0.0575640276074409,-0.994133472442627,0.0915708392858505,0.0706142038106918,-0.995745778083801,-0.0591955706477165,0.0881364569067955,-0.992677628993988,-0.0826024115085602,0.060874305665493,-0.996169328689575,0.0627774521708488,0.132766038179398,-0.980478525161743,0.145035058259964,0.158345490694046,-0.979892492294312,0.121398083865643,0.318678975105286,-0.947441637516022,0.0282537378370762,0.324846804141998,-0.94521152973175,0.032399620860815,0.32184836268425,-0.946483671665192,0.0241320133209229,0.314840048551559,-0.948851644992828,0.0235895104706287,0.746304631233215,-0.599487066268921,-0.289213895797729,0.756705284118652,-0.582813918590546,-0.296184301376343,0.261167138814926,-0.964454650878906,-0.0402358509600163,0.292714953422546,-0.955781042575836,-0.0282947421073914,0.620856702327728,-0.61251437664032,-0.489247620105743,0.609071910381317,-0.640443742275238,-0.467828184366226,0.150279074907303,-0.982334017753601,0.111517533659935,0.175774723291397,-0.982219099998474,0.0659455507993698,0.277249276638031,-0.959986090660095,-0.0394912138581276,0.27846360206604,-0.960239827632904,-0.0199419353157282,0.123045101761818,-0.985312819480896,0.118400298058987,0.341705650091171,-0.936376571655273,0.0802257433533669,0.329701632261276,-0.939883887767792,0.0889681875705719,0.114004381000996,-0.985421299934387,0.126285538077354,0.114005722105503,-0.986904442310333,0.11411589384079,0.329092055559158,-0.932098507881165,0.151297301054001,0.324814409017563,-0.934616446495056,0.144871726632118,0.109057769179344,-0.988227248191833,0.107301235198975, +0.329189598560333,-0.932864665985107,0.146279811859131,0.800101697444916,-0.565988004207611,0.198733434081078,0.825847566127777,-0.526341617107391,0.202337220311165,0.322795778512955,-0.934404850006104,0.150633960962296,0.341222316026688,-0.936672151088715,0.0788208693265915,0.838336765766144,-0.544576466083527,-0.0250594168901443,0.809993028640747,-0.586344718933105,0.0105500929057598,0.329699099063873,-0.940108358860016,0.0865723118185997,0.758546888828278,-0.58257007598877,-0.291922479867935,0.753575921058655,-0.59588885307312,-0.277560591697693,0.859941184520721,-0.337151259183884,-0.383184343576431,0.85310435295105,-0.335017383098602,-0.399970501661301,0.86365419626236,-0.332252413034439,-0.379091024398804,0.849090397357941,-0.341490864753723,-0.403025597333908,0.795143127441406,-0.520777881145477,-0.31070539355278,0.780651390552521,-0.563824951648712,-0.269601225852966,0.807453036308289,-0.35528302192688,-0.470949679613113,0.796808362007141,-0.354397624731064,-0.489386320114136,0.748771607875824,-0.531531870365143,-0.39599871635437,0.756383061408997,-0.533607065677643,-0.378349334001541,0.659748017787933,-0.630204141139984,-0.409359633922577,0.635327935218811,-0.607461452484131,-0.476811438798904,0.751183450222015,-0.369573891162872,-0.546935617923737,0.796292304992676,-0.358348995447159,-0.487344413995743,0.107904225587845,-0.988001942634583,0.110494554042816,0.296134799718857,-0.928687036037445,0.22325898706913,0.284927934408188,-0.935163497924805,0.210441201925278,0.106372982263565,-0.988994419574738,0.102834641933441,0.103047020733356,-0.988921046257019,0.106847979128361,0.234898269176483,-0.933651447296143,0.270403057336807,0.227704897522926,-0.940568566322327,0.25195500254631,0.1050830706954,-0.98953104019165,0.098923347890377,0.237266644835472,-0.933848857879639,0.267639487981796,0.538795053958893,-0.550258696079254,0.637899219989777,0.531826376914978,-0.552549839019775,0.641755044460297,0.220447272062302,-0.941115379333496,0.256329536437988,0.297515004873276,-0.929107189178467,0.219646990299225,0.711759865283966,-0.511905610561371,0.480989247560501, +0.671258747577667,-0.553496718406677,0.493004351854324,0.277990609407425,-0.935295701026917,0.218959420919418,0.593690156936646,-0.686127007007599,-0.420430392026901,0.625251829624176,-0.588650822639465,-0.512396693229675,0.66672158241272,-0.40394851565361,-0.626344919204712,0.6474729180336,-0.552708566188812,-0.524682879447937,0.625688314437866,-0.562308609485626,-0.540669322013855,0.649358987808228,-0.4090476334095,-0.641102910041809,0.648246347904205,-0.379030972719193,-0.660387933254242,0.617441475391388,-0.58334755897522,-0.527704060077667,0.731850385665894,-0.381609112024307,-0.564596712589264,0.730084300041199,-0.375509560108185,-0.570937395095825,0.680314123630524,-0.589550375938416,-0.435434311628342,0.736355066299438,-0.346867799758911,-0.580916523933411,0.686547756195068,-0.570582211017609,-0.45065301656723,0.701698124408722,-0.545576989650726,-0.458220034837723,0.747997403144836,-0.370510101318359,-0.550656199455261,0.741215348243713,-0.377922505140305,-0.554774165153503,0.231299340724945,-0.939412236213684,0.252992957830429,0.434503704309464,-0.885917067527771,-0.16235026717186,0.465560495853424,-0.857907116413116,-0.217368096113205,0.249176815152168,-0.937421441078186,0.243211805820465,0.27598774433136,-0.927391588687897,0.252538323402405,0.466791868209839,-0.857393324375153,-0.216753512620926,0.447321712970734,-0.862939596176147,-0.235028922557831,0.255377233028412,-0.935779571533203,0.243103116750717,0.48867654800415,-0.847877681255341,-0.20566663146019,0.572092354297638,-0.583181142807007,-0.576723694801331,0.568454921245575,-0.604110538959503,-0.558488547801971,0.477605640888214,-0.850243985652924,-0.221309542655945,0.461710512638092,-0.875208497047424,-0.144338339567184,0.579226851463318,-0.691554546356201,-0.431565284729004,0.59712415933609,-0.573894500732422,-0.560435473918915,0.479549288749695,-0.851935684680939,-0.210328727960587,0.179585605859756,-0.959202289581299,0.218357652425766,0.245287522673607,-0.939216613769531,0.240221410989761,0.031512264162302,-0.779684066772461,0.625379741191864, +0.003157630097121,-0.83355438709259,0.552428305149078,0.111189514398575,-0.973568260669708,0.199503928422928,0.16686899960041,-0.961531758308411,0.218200862407684,-0.135957881808281,-0.841150045394897,0.523432970046997,-0.217950373888016,-0.816651463508606,0.534395158290863,0.0729073509573936,-0.981887459754944,0.174876093864441,0.108103573322296,-0.974427163600922,0.196991071105003,-0.271088004112244,-0.827755093574524,0.491256505250931,-0.288121342658997,-0.843104481697083,0.454049617052078,0.0359705574810505,-0.991686105728149,0.123550817370415,0.0425549410283566,-0.989592790603638,0.137460306286812,-0.32462003827095,-0.903045892715454,0.281300514936447,-0.361123979091644,-0.889548361301422,0.279809504747391,0.595064699649811,-0.685593903064728,-0.419355511665344,0.44348993897438,-0.882517516613007,-0.156459584832191,0.449495792388916,-0.876743733882904,-0.171096712350845,0.629505038261414,-0.587587475776672,-0.508393883705139,0.689519941806793,-0.569543063640594,-0.447418123483658,0.455846577882767,-0.874606370925903,-0.165129169821739,0.473463654518127,-0.861744463443756,-0.182287499308586,0.695538401603699,-0.54708331823349,-0.46575340628624,0.457794606685638,-0.873934149742126,-0.163289144635201,0.108191132545471,-0.974402904510498,0.197062402963638,0.0940996259450912,-0.975348114967346,0.199603170156479,0.468259960412979,-0.863196074962616,-0.188746243715286,0.438364237546921,-0.884472966194153,-0.159826561808586,0.171456754207611,-0.960152506828308,0.220702826976776,0.150958448648453,-0.960997104644775,0.231724202632904,0.439042866230011,-0.880083560943604,-0.18081596493721,0.0501488894224167,-0.987347483634949,0.15043306350708,0.0694460496306419,-0.98285049200058,0.170828089118004,-0.334770351648331,-0.853280305862427,0.399802178144455,-0.289865016937256,-0.894268095493317,0.340973436832428,0.0297777280211449,-0.994735896587372,0.0980503782629967,0.0283839665353298,-0.994280934333801,0.102954745292664,-0.389254242181778,-0.899162948131561,0.199968218803406,-0.448782742023468,-0.869058191776276,0.208163291215897, +0.756520748138428,-0.528732478618622,-0.384861558675766,0.50144898891449,-0.852680325508118,-0.146578639745712,0.501715302467346,-0.85250997543335,-0.146657526493073,0.754552364349365,-0.534099459648132,-0.381298303604126,0.80456817150116,-0.516839861869812,-0.292483806610107,0.528101444244385,-0.843306422233582,-0.0997152775526047,0.508073508739471,-0.856500327587128,-0.0909321904182434,0.781542241573334,-0.563545703887939,-0.267596662044525,0.527408182621002,-0.843588709831238,-0.100989550352097,0.0445519462227821,-0.989024698734283,0.140873238444328,0.0405934788286686,-0.989863872528076,0.136094883084297,0.506150186061859,-0.857102453708649,-0.0958519577980042,0.502089858055115,-0.852446734905243,-0.145740747451782,0.0701587572693825,-0.982654631137848,0.171661823987961,0.0611272715032101,-0.983691096305847,0.169160917401314,0.498448431491852,-0.853443503379822,-0.152261033654213,0.0301784407347441,-0.995916068553925,0.0850915014743805,0.028075460344553,-0.995674729347229,0.0885641947388649,-0.463572233915329,-0.87812215089798,0.118331417441368,-0.473568320274353,-0.873153865337372,0.115479610860348,0.0451388508081436,-0.993917465209961,0.100452154874802,0.0416133999824524,-0.995460867881775,0.0855918675661087,-0.423499882221222,-0.90578019618988,-0.0144924409687519,-0.35041156411171,-0.936587631702423,-0.00391227705404162,0.822432041168213,-0.545308113098145,-0.162001848220825,0.530511260032654,-0.847135066986084,-0.0303329974412918,0.514945328235626,-0.856525123119354,-0.0345835909247398,0.799301147460938,-0.582689046859741,-0.146939128637314,0.824175953865051,-0.566297113895416,-0.00645556300878525,0.527091324329376,-0.849185049533844,0.0325529538094997,0.545963406562805,-0.837119042873383,0.0339954979717731,0.860602200031281,-0.508865714073181,-0.0204883068799973,0.527754545211792,-0.848605513572693,0.0366597957909107,0.0290533415973186,-0.995146989822388,0.0940128341317177,0.0301954355090857,-0.995440721511841,0.0904772058129311,0.545892775058746,-0.837306678295135,0.0303091481328011,0.527454257011414,-0.848689198493958,-0.0389702171087265, +0.0305935926735401,-0.993575870990753,0.10895474255085,0.0309082567691803,-0.994059801101685,0.104353986680508,0.51405280828476,-0.856869876384735,-0.0390367582440376,0.817517757415771,-0.548204004764557,-0.176456943154335,0.798964381217957,-0.582793772220612,-0.148348927497864,0.914876401424408,-0.31890681385994,-0.247587755322456,0.908303618431091,-0.316078454256058,-0.27400529384613,0.823559284210205,-0.558960258960724,-0.0965069159865379,0.944314241409302,-0.292648404836655,-0.150425180792809,0.940438628196716,-0.307669818401337,-0.144619107246399,0.942229211330414,-0.299943089485168,-0.149125382304192,0.860743403434753,-0.508734822273254,-0.0176022201776505,0.957081854343414,-0.289280742406845,-0.017633493989706,0.958551704883575,-0.284744918346405,0.00995032768696547,0.825322389602661,-0.564649224281311,0.00376828014850616,0.824500143527985,-0.526499927043915,0.207358032464981,0.798260509967804,-0.563713192939758,0.212150096893311,0.937937140464783,-0.274146348237991,0.212409421801567,0.943223655223846,-0.268700271844864,0.195267871022224,0.936499357223511,-0.267183423042297,0.227116823196411,0.941436767578125,-0.276221603155136,0.193386867642403,0.852794229984283,-0.470234125852585,0.2272047996521,0.822026491165161,-0.51003509759903,0.253252148628235,0.952737092971802,-0.284235179424286,0.107249192893505,0.956425905227661,-0.276154607534409,0.0948054417967796,0.859256565570831,-0.49781808257103,0.117708824574947,0.868615627288818,-0.478548437356949,0.128445625305176,0.810257196426392,-0.583243548870087,0.0575349070131779,0.841298878192902,-0.540522158145905,-0.00722768250852823,0.958238661289215,-0.285219609737396,0.0207033511251211,0.953415989875793,-0.28486704826355,0.0992415100336075,0.0395302809774876,-0.994330883026123,0.0987095311284065,0.0301798153668642,-0.995879530906677,0.0855171233415604,-0.472838163375854,-0.88088858127594,0.0214363969862461,-0.431638211011887,-0.901227951049805,0.0384277552366257,0.0450105592608452,-0.996688306331635,0.0677247047424316,0.0488806366920471,-0.994734466075897,0.0900784432888031, +-0.309894561767578,-0.943480670452118,-0.117514625191689,-0.35818675160408,-0.914843916893005,-0.186448112130165,0.858400821685791,-0.496468216180801,0.129102393984795,0.545173585414886,-0.828194618225098,0.129921033978462,0.555132567882538,-0.821166098117828,0.132341012358665,0.868532717227936,-0.478505700826645,0.129164069890976,0.846761167049408,-0.467023372650146,0.254724562168121,0.540028870105743,-0.813571035861969,0.215571731328964,0.520894289016724,-0.826314270496368,0.214181989431381,0.819582402706146,-0.50954794883728,0.262003183364868,0.539687514305115,-0.813359618186951,0.217218056321144,0.0401657372713089,-0.994693875312805,0.0947145223617554,0.0457387156784534,-0.994056582450867,0.0987909510731697,0.52034193277359,-0.826237082481384,0.215815842151642,0.545191287994385,-0.828262865543365,0.129410728812218,0.0302117709070444,-0.994928896427155,0.09593665599823,0.0392938144505024,-0.994191646575928,0.100194677710533,0.55499142408371,-0.821115911006927,0.133241027593613,0.0208530016243458,-0.996945023536682,0.0752720609307289,0.0447765961289406,-0.996671676635742,0.0681221485137939,-0.337687313556671,-0.915049910545349,-0.220569714903831,-0.383446753025055,-0.894508719444275,-0.229832142591476,0.00320573756471276,-0.998036503791809,0.0625545158982277,0.0300970692187548,-0.997986197471619,0.0558379217982292,-0.249541491270065,-0.893776714801788,-0.37268254160881,-0.258613497018814,-0.902782797813416,-0.343660205602646,0.785832941532135,-0.500674605369568,0.363031297922134,0.754696488380432,-0.538982510566711,0.374073684215546,0.886218786239624,-0.263054937124252,0.381337523460388,0.899020731449127,-0.258118689060211,0.353746384382248,0.741073966026306,-0.518809616565704,0.426199585199356,0.845416188240051,-0.244434386491776,0.474892884492874,0.839755713939667,-0.260217010974884,0.476547479629517,0.843506634235382,-0.252293705940247,0.474177747964859,0.70489764213562,-0.475802570581436,0.526052534580231,0.76354056596756,-0.252808660268784,0.594216883182526,0.749892354011536,-0.250141084194183,0.612446665763855, +0.672677397727966,-0.532690405845642,0.513562083244324,0.778267502784729,-0.498297870159149,0.382098317146301,0.494231343269348,-0.820321917533875,0.287762582302094,0.480949997901917,-0.831541895866394,0.277894198894501,0.750910818576813,-0.539003849029541,0.381586045026779,0.67646998167038,-0.533234775066376,0.507985234260559,0.444654941558838,-0.828558683395386,0.340253531932831,0.450579315423965,-0.818524241447449,0.356365412473679,0.704238414764404,-0.475838899612427,0.52690190076828,0.438261836767197,-0.827623128890991,0.350665837526321,0.0389770604670048,-0.996194005012512,0.0779643282294273,0.0260565243661404,-0.997276425361633,0.0689990147948265,0.449246019124985,-0.818552613258362,0.357980221509933,0.495386242866516,-0.820667564868927,0.284775972366333,0.0502231195569038,-0.994998216629028,0.0863497853279114,0.0372161604464054,-0.996023297309875,0.0809489488601685,0.480321794748306,-0.831526696681976,0.27902427315712,0.516610980033875,-0.554385364055634,0.652510643005371,0.530810117721558,-0.549455344676971,0.64524382352829,0.59367436170578,-0.268328607082367,0.758650422096252,0.578305065631866,-0.27271032333374,0.76889032125473,0.559637904167175,-0.274246722459793,0.782044947147369,0.576940178871155,-0.267907798290253,0.771599352359772,0.523257613182068,-0.447632670402527,0.725138902664185,0.508342683315277,-0.446756184101105,0.736204266548157,0.677668690681458,-0.268552035093307,0.684576511383057,0.693872690200806,-0.249790370464325,0.675385415554047,0.619167327880859,-0.476183593273163,0.624404549598694,0.617352306842804,-0.446633577346802,0.64760684967041,0.637914896011353,-0.554734110832214,0.534167349338531,0.701861202716827,-0.509292542934418,0.498008072376251,0.748519718647003,-0.252378553152084,0.613207399845123,0.687414109706879,-0.268346965312958,0.674871742725372,0.00480568083003163,-0.996991395950317,0.0773646309971809,0.0307626873254776,-0.997519075870514,0.0633197948336601,-0.31465744972229,-0.895621240139008,-0.314409762620926,-0.335105419158936,-0.894094407558441,-0.297152251005173,0.0262676104903221,-0.998946726322174,0.0376236215233803, +0.0390318930149078,-0.998377799987793,0.0414539314806461,-0.166958495974541,-0.901063144207001,-0.400262653827667,-0.171183258295059,-0.905928492546082,-0.387285262346268,0.60768324136734,-0.475660145282745,0.63597846031189,0.390965491533279,-0.816446900367737,0.424924314022064,0.393822640180588,-0.808008432388306,0.438207924365997,0.614047825336456,-0.446788251399994,0.650634706020355,0.510473966598511,-0.447274684906006,0.734412550926208,0.334244102239609,-0.80712902545929,0.486645340919495,0.328030109405518,-0.808950543403625,0.487847834825516,0.503943920135498,-0.44708177447319,0.739025354385376,0.326632767915726,-0.806682944297791,0.492517828941345,0.0256858188658953,-0.997891902923584,0.0595990195870399,0.020202374085784,-0.998413622379303,0.0525578781962395,0.324232935905457,-0.809129357337952,0.4900843501091,0.383986592292786,-0.815784215927124,0.432493388652802,0.0232075694948435,-0.997103214263916,0.0724343731999397,0.016748484224081,-0.99759829044342,0.0672107487916946,0.39096337556839,-0.80807626247406,0.440636515617371,0.0442024245858192,-0.998786568641663,0.0217163600027561,0.0530299507081509,-0.998212695121765,0.0275536961853504,-0.0746314898133278,-0.901981472969055,-0.425275892019272,-0.0825505927205086,-0.90003490447998,-0.42792820930481,0.0854123532772064,-0.996335685253143,0.00449034338817,0.0964495688676834,-0.995284259319305,0.0103316130116582,0.12848861515522,-0.888424932956696,-0.440672010183334,0.116485998034477,-0.910914123058319,-0.395811319351196,0.38036584854126,-0.451218128204346,0.807294309139252,0.268965512514114,-0.8099604845047,0.521173238754272,0.264951169490814,-0.815371930599213,0.514751851558685,0.375900477170944,-0.458204597234726,0.805448472499847,0.250870764255524,-0.465538799762726,0.84872704744339,0.194111183285713,-0.818693876266479,0.540426850318909,0.186151340603828,-0.833038628101349,0.520955324172974,0.245938897132874,-0.498912185430527,0.831023931503296,0.190957263112068,-0.818733274936676,0.541489899158478,0.0591645687818527,-0.997929155826569,0.0252399351447821,0.0583311766386032,-0.998115658760071,0.0190424732863903, +0.18698088824749,-0.832959771156311,0.520784080028534,0.265378624200821,-0.809902608394623,0.523098528385162,0.0437755808234215,-0.998293519020081,0.0386516787111759,0.0419426411390305,-0.998616099357605,0.0317302644252777,0.263381481170654,-0.815497159957886,0.515358865261078,0.0540320947766304,-0.998479545116425,0.0109165254980326,0.0725043639540672,-0.997233986854553,0.0163539033383131,0.0329469628632069,-0.89187878370285,-0.451072931289673,0.0176061931997538,-0.89885687828064,-0.43788868188858,0.136584877967834,-0.990544080734253,0.0129228364676237,0.123925596475601,-0.992233395576477,0.01074593141675,0.199477165937424,-0.901832044124603,-0.38328543305397,0.209317028522491,-0.905804455280304,-0.368381470441818,0.319176346063614,-0.561051607131958,0.763771951198578,0.363916128873825,-0.281608015298843,0.887841284275055,0.350590825080872,-0.284100115299225,0.892397463321686,0.307438015937805,-0.567293643951416,0.763976275920868,0.154452204704285,-0.581548571586609,0.798715114593506,0.228676646947861,-0.293202877044678,0.928299069404602,0.145381808280945,-0.286815106868744,0.946890354156494,0.0910489559173584,-0.551063656806946,0.829481184482574,0.235926613211632,-0.292800605297089,0.926610231399536,0.245117783546448,-0.465677171945572,0.850330591201782,0.228583425283432,-0.500488221645355,0.835021734237671,0.221029654145241,-0.279132574796677,0.9344682097435,0.37812352180481,-0.281547874212265,0.881903231143951,0.37512743473053,-0.451195597648621,0.809754252433777,0.359633505344391,-0.459645807743073,0.812028050422668,0.362061083316803,-0.282977104187012,0.888164222240448,0.111157886683941,-0.506890416145325,0.854813456535339,0.10616809874773,-0.837778329849243,0.535589218139648,0.0971267819404602,-0.853049874305725,0.512710869312286,0.113708421587944,-0.569069862365723,0.814389228820801,-0.0201142132282257,-0.58143937587738,0.813341021537781,0.0403928384184837,-0.85762083530426,0.512693822383881,0.0429884120821953,-0.851229608058929,0.523029923439026,-0.0348973162472248,-0.547974050045013,0.835767090320587,0.0399086587131023,-0.857647836208344,0.512686550617218, +0.0950372666120529,-0.995419919490814,0.0103514278307557,0.0933929532766342,-0.995612561702728,0.00578542286530137,0.0365270860493183,-0.852173805236816,0.521982252597809,0.104288659989834,-0.837822735309601,0.535889089107513,0.0701922699809074,-0.997392177581787,0.0167929232120514,0.067948505282402,-0.997631251811981,0.0107269529253244,0.101391039788723,-0.852593243122101,0.512644827365875,0.164471939206123,-0.986042976379395,0.02585319429636,0.14511302113533,-0.989287197589874,0.0159136094152927,0.271247535943985,-0.89784836769104,-0.346832931041718,0.316973209381104,-0.855638921260834,-0.409157693386078,0.18858528137207,-0.980628132820129,0.0529540479183197,0.17658668756485,-0.983590245246887,0.0369781702756882,0.470618546009064,-0.820639073848724,-0.324144601821899,0.452596247196198,-0.849296808242798,-0.271756649017334,0.0984897688031197,-0.989812254905701,0.102817669510841,0.157580584287643,-0.94301575422287,0.293069511651993,0.166968300938606,-0.940649211406708,0.295466721057892,0.104597933590412,-0.989923715591431,0.0954484641551971,0.0925974920392036,-0.990897417068481,0.0977149158716202,0.0875979214906693,-0.946633160114288,0.310181140899658,0.0923263430595398,-0.945503652095795,0.312247723340988,0.0974068269133568,-0.991079330444336,0.090960219502449,0.0927711054682732,-0.946432888507843,0.309287071228027,0.112717494368553,-0.582921624183655,0.804672122001648,0.0866724029183388,-0.551886260509491,0.829403042793274,0.0912839695811272,-0.945658385753632,0.312085747718811,0.158025413751602,-0.943019866943359,0.292816698551178,0.311132162809372,-0.560727000236511,0.767321407794952,0.31035703420639,-0.566874086856842,0.763107061386108,0.162947058677673,-0.941103637218475,0.29626402258873,0.10084281116724,-0.991821706295013,0.0782338678836823,0.0992235317826271,-0.99139803647995,0.0853503495454788,-0.0368485897779465,-0.966939449310303,0.252329885959625,-0.0356192067265511,-0.968595743179321,0.246076256036758,-0.0325613841414452,-0.967793881893158,0.249629318714142,-0.0325303860008717,-0.966434121131897,0.254846900701523, +-0.38396754860878,-0.648965239524841,0.656820476055145,-0.429025650024414,-0.596415996551514,0.678398787975311,0.0189060345292091,-0.958549737930298,0.284297347068787,0.0177821852266788,-0.953831791877747,0.299814641475677,-0.206893622875214,-0.581447541713715,0.786837935447693,-0.194929361343384,-0.619011521339417,0.760807037353516,0.0864335373044014,-0.993189454078674,0.0781288221478462,0.0857883989810944,-0.992325961589813,0.0890491679310799,0.00974382366985083,-0.954400062561035,0.298371523618698,0.0132562294602394,-0.959583938121796,0.281110316514969,0.10798567533493,-0.506962954998016,0.855177044868469,0.119607627391815,-0.568281769752502,0.814094603061676,0.148870602250099,-0.287537306547165,0.946128904819489,0.124055378139019,-0.288660436868668,0.949360609054565,0.0159793253988028,-0.563620984554291,0.825878977775574,-0.0222355723381042,-0.297627121210098,0.954423248767853,-0.0252431537955999,-0.309497892856598,0.950565040111542,-0.0221974104642868,-0.297922879457474,0.954331874847412,-0.0554938763380051,-0.551447629928589,0.832361698150635,-0.138707086443901,-0.317019730806351,0.938221156597137,-0.107453674077988,-0.31657811999321,0.942460596561432,-0.0279051270335913,-0.581836640834808,0.812826812267303,-0.141129299998283,-0.56326812505722,0.814132332801819,-0.012565441429615,-0.858125269412994,0.513286709785461,-0.0239134579896927,-0.847721755504608,0.529901921749115,-0.167730867862701,-0.519241869449615,0.838006138801575,-0.278028249740601,-0.536188364028931,0.796995878219604,-0.0839951932430267,-0.856696903705597,0.508935570716858,-0.0932889804244041,-0.861903429031372,0.498417139053345,-0.291503995656967,-0.536416113376617,0.792012095451355,-0.0820770189166069,-0.856464326381683,0.509639382362366,0.158177495002747,-0.987197816371918,0.0205009169876575,0.157316744327545,-0.987307190895081,0.0218156818300486,-0.0799864754080772,-0.859186053276062,0.505372583866119,-0.0116700595244765,-0.858036041259766,0.51345694065094,0.133632346987724,-0.990954399108887,0.0123248593881726,0.133488953113556,-0.990979671478271,0.0118378307670355, +-0.0181217920035124,-0.846672475337982,0.531805634498596,-0.203071668744087,-0.5813929438591,0.787873208522797,-0.289003610610962,-0.335278898477554,0.896696805953979,-0.272751212120056,-0.34082293510437,0.899692416191101,-0.185115292668343,-0.616714954376221,0.765111148357391,-0.350545078516006,-0.645770072937012,0.67830616235733,-0.416950136423111,-0.362940669059753,0.833322644233704,-0.48220956325531,-0.365862160921097,0.796001791954041,-0.430067867040634,-0.596756041049957,0.677439272403717,-0.392266064882278,-0.359713643789291,0.846601128578186,-0.291922003030777,-0.537817299365997,0.790907204151154,-0.326443076133728,-0.542796432971954,0.773826241493225,-0.431556940078735,-0.355575531721115,0.829050481319427,-0.253292083740234,-0.331620126962662,0.908774614334106,-0.153015896677971,-0.564570665359497,0.811077177524567,-0.198059409856796,-0.52459442615509,0.827993512153625,-0.287251353263855,-0.343387931585312,0.894187569618225,0.173844829201698,-0.984161138534546,0.0347127988934517,0.160809740424156,-0.986698806285858,0.023786123842001,0.385979533195496,-0.84497743844986,-0.370179861783981,0.40781170129776,-0.83231508731842,-0.37542137503624,0.203744485974312,-0.97553825378418,0.0825435519218445,0.190999537706375,-0.980002403259277,0.0558075904846191,0.496634900569916,-0.839442491531372,-0.220658272504807,0.488257884979248,-0.854726314544678,-0.176201999187469,-0.409267276525497,-0.554704546928406,0.72443300485611,-0.15514825284481,-0.871938347816467,0.464384078979492,-0.153473868966103,-0.893785715103149,0.421417951583862,-0.407581716775894,-0.589243412017822,0.697616934776306,-0.499790459871292,-0.604382932186127,0.620427906513214,-0.184953570365906,-0.899317741394043,0.396257311105728,-0.173951581120491,-0.919562935829163,0.35234209895134,-0.43015456199646,-0.725659251213074,0.537015616893768,-0.181942701339722,-0.898850917816162,0.398702889680862,0.185315907001495,-0.981684505939484,0.0441998019814491,0.181611716747284,-0.982352793216705,0.0447252206504345,-0.15631790459156,-0.914780735969543,0.372479498386383, +-0.152220979332924,-0.871561050415039,0.466057986021042,0.169656917452812,-0.985082864761353,0.0287818424403667,0.166971385478973,-0.985534071922302,0.0290400460362434,-0.132348954677582,-0.889276683330536,0.437802284955978,0.204100161790848,-0.974043130874634,0.0978937298059464,0.197356075048447,-0.977722346782684,0.0714819580316544,0.516085505485535,-0.846920669078827,-0.127989649772644,0.58330100774765,-0.80058878660202,-0.137177780270576,0.196319624781609,-0.97504186630249,0.103691533207893,0.197471305727959,-0.976130664348602,0.0904099121689796,0.658667147159576,-0.752341985702515,0.0117931123822927,0.667310774326324,-0.744425475597382,0.0229590851813555,-0.526381134986877,-0.623591005802155,0.577976763248444,-0.570428907871246,-0.381151139736176,0.727553963661194,-0.646625816822052,-0.412489116191864,0.641660273075104,-0.724432229995728,-0.413948535919189,0.551221072673798,-0.736990690231323,-0.417951732873917,0.531188428401947,-0.702327907085419,-0.42383399605751,0.571926832199097,-0.600175619125366,-0.629495561122894,0.493482172489166,-0.651385188102722,-0.603586912155151,0.459761112928391,-0.642416059970856,-0.41154408454895,0.646477580070496,-0.51570588350296,-0.606175780296326,0.605473637580872,-0.436505526304245,-0.727184891700745,0.529778361320496,-0.547139883041382,-0.610505521297455,0.572643876075745,-0.546135246753693,-0.377305656671524,0.747914969921112,-0.42638099193573,-0.556561708450317,0.7130486369133,-0.448462069034576,-0.596900701522827,0.665275394916534,-0.581104636192322,-0.396620124578476,0.710640490055084,-0.441164791584015,-0.72826623916626,0.524406313896179,-0.177751883864403,-0.920508623123169,0.347948640584946,-0.226883739233017,-0.905647099018097,0.358227759599686,-0.555591404438019,-0.6137855052948,0.560879409313202,-0.625466346740723,-0.637009561061859,0.450567156076431,-0.253845721483231,-0.915444791316986,0.312287360429764,-0.301283538341522,-0.901093780994415,0.311862677335739,-0.65720123052597,-0.606321692466736,0.447728246450424,-0.261033773422241,-0.917640209197998,0.299662739038467, +0.206137418746948,-0.974674701690674,0.0866986662149429,0.200650051236153,-0.975669682025909,0.0883641839027405,-0.300359576940536,-0.900588989257813,0.314203292131424,-0.187004581093788,-0.922683656215668,0.337171077728271,0.202596366405487,-0.976789534091949,0.0695488080382347,0.197693020105362,-0.977611541748047,0.072064220905304,-0.225781351327896,-0.905195772647858,0.360060274600983,0.198621720075607,-0.975271224975586,0.0969306528568268,0.198449328541756,-0.97664874792099,0.0823110640048981,0.608448266983032,-0.790771245956421,-0.0668704062700272,0.644854009151459,-0.761443138122559,-0.0660888031125069,0.197024196386337,-0.975649952888489,0.0963782668113708,0.196305751800537,-0.973321557044983,0.118782415986061,0.667483925819397,-0.735487163066864,0.116292223334312,0.663021683692932,-0.742534458637238,0.0951045155525208,-0.714143395423889,-0.629266262054443,0.306632250547409,-0.332132786512375,-0.914933264255524,0.229314461350441,-0.343060374259949,-0.912038922309875,0.224709957838058,-0.71602064371109,-0.630739092826843,0.299136698246002,-0.744947612285614,-0.646566867828369,0.16433048248291,-0.358683705329895,-0.922600448131561,0.14196614921093,-0.339233428239822,-0.930084705352783,0.140936598181725,-0.708662271499634,-0.68794983625412,0.156597852706909,-0.358228981494904,-0.922368109226227,0.14459989964962,0.199229896068573,-0.974796414375305,0.100396558642387,0.196314960718155,-0.975516021251678,0.0991409495472908,-0.339199125766754,-0.929931461811066,0.142026364803314,-0.333116739988327,-0.915269553661346,0.22652804851532,0.201557278633118,-0.975252866744995,0.0908652991056442,0.19734001159668,-0.976225733757019,0.0896683186292648,-0.342779487371445,-0.911807656288147,0.226073205471039,0.197419196367264,-0.97469961643219,0.104815751314163,0.192538738250732,-0.973645210266113,0.122245281934738,0.644913256168365,-0.735560834407806,0.207453787326813,0.617450714111328,-0.76479160785675,0.183979839086533,0.198601201176643,-0.972783327102661,0.119374364614487,0.191966652870178,-0.973738789558411,0.122399359941483, +0.495390981435776,-0.807289361953735,0.320736110210419,0.52674275636673,-0.781372845172882,0.334661900997162,-0.69117271900177,-0.690133690834045,0.214466482400894,-0.660199642181396,-0.721981704235077,0.207072496414185,-0.856442213058472,-0.468911856412888,0.215936630964279,-0.857221007347107,-0.459933489561081,0.231589168310165,-0.863223016262054,-0.465307384729385,0.195793986320496,-0.853356182575226,-0.467657923698425,0.230389535427094,-0.739850640296936,-0.644171595573425,0.194072484970093,-0.707951188087463,-0.686974406242371,0.163924783468246,-0.817428171634674,-0.451874256134033,0.357240825891495,-0.808018207550049,-0.438030898571014,0.393999576568604,-0.701828360557556,-0.62505042552948,0.341685652732849,-0.713649809360504,-0.629281640052795,0.307747572660446,-0.596796691417694,-0.700035274028778,0.392153650522232,-0.618969023227692,-0.638665914535522,0.457146823406219,-0.78454601764679,-0.431984901428223,0.444833248853683,-0.810000777244568,-0.448451429605484,0.377875804901123,0.122557282447815,-0.987020313739777,0.10378210246563,-0.0688906311988831,-0.975913643836975,0.206994354724884,-0.070409394800663,-0.974582552909851,0.212676733732224,0.12007063627243,-0.986618101596832,0.110307857394218,0.128150999546051,-0.982872545719147,0.13243493437767,-0.0889358893036842,-0.982485413551331,0.163746505975723,-0.108692362904549,-0.978620231151581,0.174609616398811,0.113957285881042,-0.983121991157532,0.143125832080841,-0.0912686437368393,-0.983291387557983,0.157505676150322,-0.655809462070465,-0.721205949783325,0.223105236887932,-0.690759420394897,-0.689101457595825,0.219067871570587,-0.108961097896099,-0.982471168041229,0.151254653930664,-0.0705793872475624,-0.976215958595276,0.2049899995327,-0.622078537940979,-0.638933837413788,0.452528238296509,-0.5826615691185,-0.693069994449615,0.424451947212219,-0.0734393149614334,-0.976055324077606,0.204750567674637,-0.714755296707153,-0.69887387752533,0.0264616850763559,-0.340619504451752,-0.938137829303741,0.0622551999986172,-0.328572481870651,-0.941746056079865,0.0717958733439445, +-0.683094918727875,-0.729851186275482,0.0264322236180305,-0.661298096179962,-0.741949856281281,-0.110432431101799,-0.317280858755112,-0.948323130607605,0.00403275014832616,-0.336452931165695,-0.941593289375305,-0.0142003539949656,-0.710284292697906,-0.691801428794861,-0.130027145147324,-0.315259993076324,-0.948978006839752,-0.00721923727542162,0.192178249359131,-0.973457872867584,0.124287731945515,0.191621199250221,-0.973969757556915,0.121096760034561,-0.335702449083328,-0.941826522350311,-0.0163353309035301,-0.340566694736481,-0.937491178512573,0.0715862214565277,0.196308091282845,-0.973444104194641,0.117769666016102,0.193669363856316,-0.974208056926727,0.115804947912693,-0.328466504812241,-0.941834688186646,0.0711148306727409,0.195808216929436,-0.973808288574219,0.115570865571499,0.193351939320564,-0.974217295646667,0.116257391870022,0.583198666572571,-0.760723829269409,0.284918963909149,0.528815567493439,-0.808014631271362,0.259743511676788,0.207742989063263,-0.970686018466949,0.120878711342812,0.183010518550873,-0.973306775093079,0.138495996594429,0.480551451444626,-0.783942222595215,0.393071174621582,0.53593772649765,-0.738211095333099,0.409652560949326,-0.714610755443573,-0.697960913181305,0.0467130541801453,-0.68371456861496,-0.729042828083038,0.0321082398295403,-0.8731449842453,-0.486404865980148,0.0320668108761311,-0.875319421291351,-0.479795873165131,0.0601008981466293,-0.69219309091568,-0.721513032913208,-0.0169641114771366,-0.872718870639801,-0.485028713941574,-0.055757537484169,-0.866947412490845,-0.495791345834732,-0.0509238801896572,-0.872025907039642,-0.486295312643051,-0.0555666014552116,-0.710594058036804,-0.69167149066925,-0.129022151231766,-0.842195749282837,-0.502118945121765,-0.196424901485443,-0.837234497070313,-0.504062950611115,-0.212035596370697,-0.66063791513443,-0.742060542106628,-0.113594353199005,-0.661441802978516,-0.702159345149994,-0.263566225767136,-0.306043058633804,-0.947061777114868,-0.0970134139060974,-0.319256275892258,-0.940711975097656,-0.114614933729172,-0.68005508184433,-0.676309585571289,-0.283073306083679, +-0.619521856307983,-0.680358231067657,-0.391542375087738,-0.28414124250412,-0.942507207393646,-0.175909385085106,-0.279951184988022,-0.941436648368835,-0.187948152422905,-0.614255011081696,-0.676868140697479,-0.405635893344879,-0.277400881052017,-0.942319929599762,-0.187301561236382,0.188309669494629,-0.973617553710938,0.128873407840729,0.192845925688744,-0.973046064376831,0.126458838582039,-0.276426702737808,-0.94159984588623,-0.19229719042778,-0.302159875631332,-0.947223007678986,-0.107089534401894,0.192110523581505,-0.974042236804962,0.119730234146118,0.194233581423759,-0.973786950111389,0.118373237550259,-0.317947655916214,-0.940866470336914,-0.116960734128952,0.187841027975082,-0.971380293369293,0.145382314920425,0.167816191911697,-0.973465323448181,0.155573010444641,0.433796018362045,-0.747291266918182,0.503365635871887,0.445447444915771,-0.754270195960999,0.482341319322586,0.0929943472146988,-0.978994309902191,0.18144503235817,0.113186165690422,-0.976768851280212,0.181966170668602,0.183392003178596,-0.818533062934875,0.544399738311768,0.170566767454147,-0.801997482776642,0.572457015514374,-0.590530514717102,-0.758447170257568,-0.275738626718521,-0.593582510948181,-0.76473605632782,-0.250676184892654,-0.76015317440033,-0.525664985179901,-0.381894767284393,-0.748540163040161,-0.524341762065887,-0.40589827299118,-0.733124494552612,-0.526718258857727,-0.430228263139725,-0.749998688697815,-0.526015996932983,-0.401010185480118,-0.635852873325348,-0.680325627326965,-0.364483386278152,-0.622819483280182,-0.675990879535675,-0.393868386745453,-0.796257078647614,-0.521954119205475,-0.305840820074081,-0.812931716442108,-0.506791651248932,-0.286887317895889,-0.670626997947693,-0.701413512229919,-0.241409614682198,-0.684085190296173,-0.675600826740265,-0.274938076734543,-0.638593435287476,-0.757906079292297,-0.133329600095749,-0.686839878559113,-0.723202109336853,-0.072317898273468,-0.838959991931915,-0.50295078754425,-0.207813829183578,-0.800923943519592,-0.521126985549927,-0.294868797063828,0.113836959004402,-0.978833496570587,0.170076861977577, +-0.109223820269108,-0.986738324165344,0.120073556900024,-0.118076421320438,-0.986969590187073,0.109311833977699,0.0908968895673752,-0.983397781848907,0.157056525349617,0.093945175409317,-0.984398126602173,0.14877738058567,-0.0965263396501541,-0.994156897068024,0.0483200177550316,-0.108168728649616,-0.99291718006134,0.0491422452032566,0.0718997716903687,-0.986932158470154,0.144206523895264,-0.0941982343792915,-0.994676113128662,0.0417872667312622,-0.591993927955627,-0.76475465297699,-0.254349738359451,-0.598758041858673,-0.756438195705414,-0.263230323791504,-0.0991206169128418,-0.994346976280212,0.0380688682198524,-0.109327055513859,-0.98877477645874,0.101843990385532,-0.687956035137177,-0.723063945770264,-0.0624103024601936,-0.652639746665955,-0.75236040353775,-0.0895274505019188,-0.11055813729763,-0.989972770214081,0.0879247039556503,-0.527295827865601,-0.678048133850098,-0.512064278125763,-0.236327022314072,-0.94140625,-0.240632101893425,-0.242257103323936,-0.942172288894653,-0.231566041707993,-0.531975924968719,-0.679661214351654,-0.505036890506744,-0.426290154457092,-0.678885519504547,-0.597822070121765,-0.179587408900261,-0.941304326057434,-0.285822689533234,-0.176407590508461,-0.947376132011414,-0.267131090164185,-0.420162230730057,-0.703330814838409,-0.573401689529419,-0.180111810564995,-0.941338121891022,-0.28538116812706,0.15788346529007,-0.973731338977814,0.164073884487152,0.167190611362457,-0.973209619522095,0.157830685377121,-0.159948229789734,-0.947329044342041,-0.277460664510727,-0.236412987112999,-0.941410660743713,-0.240530744194984,0.174563646316528,-0.973343133926392,0.148764282464981,0.182880312204361,-0.97274112701416,0.142582297325134,-0.226438641548157,-0.942566275596619,-0.245549127459526,0.131635621190071,-0.975722908973694,0.175033792853355,0.14604064822197,-0.974488496780396,0.170424550771713,0.30763566493988,-0.763844788074493,0.567363798618317,0.268342703580856,-0.814873933792114,0.513782739639282,0.0806082263588905,-0.978801012039185,0.188283920288086,0.0676578879356384,-0.980205476284027,0.18606373667717, +0.104122087359428,-0.805839061737061,0.58290821313858,0.118013769388199,-0.765731573104858,0.632240533828735,0.0486882068216801,-0.979309260845184,0.196425527334213,0.0715053156018257,-0.979444086551666,0.188616618514061,0.038065891712904,-0.772889912128448,0.633397340774536,0.0366453975439072,-0.778904557228088,0.626070976257324,-0.298501908779144,-0.697773277759552,-0.651159822940826,-0.104680210351944,-0.944589376449585,-0.311115711927414,-0.0980636030435562,-0.950332999229431,-0.295382589101791,-0.28492346405983,-0.743981063365936,-0.604409456253052,-0.17142279446125,-0.739543914794922,-0.650914013385773,-0.0486087463796139,-0.947977185249329,-0.314605414867401,-0.075537845492363,-0.940564274787903,-0.331108838319778,-0.191871255636215,-0.701445758342743,-0.686410486698151,-0.0507311150431633,-0.948132991790771,-0.313799738883972,0.105623342096806,-0.977087080478668,0.184782683849335,0.114879012107849,-0.977420210838318,0.177349060773849,-0.0461166799068451,-0.940290570259094,-0.337234318256378,-0.105506904423237,-0.944659352302551,-0.310623854398727,0.138921171426773,-0.974785029888153,0.174628809094429,0.14538249373436,-0.974693894386292,0.169811382889748,-0.0903042703866959,-0.950140118598938,-0.298460900783539,-0.471753776073456,-0.768691778182983,-0.431927591562271,-0.619326829910278,-0.53141462802887,-0.577955722808838,-0.618769288063049,-0.523915469646454,-0.585352301597595,-0.480141997337341,-0.755711555480957,-0.445380419492722,-0.368970662355423,-0.763641476631165,-0.529823064804077,-0.516614079475403,-0.526447236537933,-0.675250470638275,-0.484599947929382,-0.507422387599945,-0.7125204205513,-0.386489003896713,-0.682604134082794,-0.620223999023438,-0.511754930019379,-0.526331007480621,-0.679030656814575,-0.434829711914063,-0.67942863702774,-0.591016054153442,-0.425271332263947,-0.7032390832901,-0.569736123085022,-0.523743212223053,-0.506334662437439,-0.685068070888519,-0.618334472179413,-0.531377792358398,-0.579051077365875,-0.53405487537384,-0.67839902639389,-0.504539549350739,-0.53784716129303,-0.679289519786835,-0.499285727739334, +-0.625396609306335,-0.523382842540741,-0.578748285770416,-0.0891893431544304,-0.70013415813446,-0.708418965339661,-0.0154632925987244,-0.939104378223419,-0.343283832073212,-0.0398445203900337,-0.92556756734848,-0.376479864120483,-0.108226202428341,-0.648029029369354,-0.753886938095093,-0.0441148392856121,-0.646690428256989,-0.761475801467896,0.00589693151414394,-0.924805343151093,-0.380395174026489,-0.0143440701067448,-0.918473303318024,-0.395222693681717,-0.0614796876907349,-0.608314692974091,-0.791311383247375,-6.94952832418494e-05,-0.925015270709991,-0.379929840564728,0.0399026796221733,-0.981041014194489,0.189648151397705,0.0630069747567177,-0.978426098823547,0.19675475358963,0.0231392588466406,-0.917581796646118,-0.396873146295547,-0.021609278395772,-0.939415872097015,-0.34209805727005,0.0588047206401825,-0.980474829673767,0.187646567821503,0.0788705870509148,-0.978930234909058,0.188348695635796,-0.00541221536695957,-0.925175249576569,-0.379501700401306,-0.308857679367065,-0.698791205883026,-0.645211517810822,-0.300883054733276,-0.743698060512543,-0.596977889537811,-0.444032579660416,-0.50317108631134,-0.741386592388153,-0.414659976959229,-0.506576120853424,-0.75593501329422,-0.269642442464828,-0.69225811958313,-0.669381618499756,-0.341161876916885,-0.502236008644104,-0.794586420059204,-0.350891798734665,-0.504579186439514,-0.788844048976898,-0.348091691732407,-0.475287586450577,-0.808043241500854,-0.19107411801815,-0.701465547084808,-0.686612546443939,-0.225961551070213,-0.478300005197525,-0.848628580570221,-0.234641298651695,-0.499031484127045,-0.834212839603424,-0.181409105658531,-0.740373313426971,-0.647254288196564,-0.15074922144413,-0.69085568189621,-0.707102000713348,-0.166387110948563,-0.476947665214539,-0.863039016723633,-0.184000968933105,-0.47488597035408,-0.860596895217896,-0.168153241276741,-0.6764155626297,-0.717068016529083,-0.0906850174069405,-0.679756700992584,-0.72780978679657,-0.111463248729706,-0.474355280399323,-0.873248636722565,-0.113262712955475,-0.479812651872635,-0.87002956867218,-0.0969473049044609,-0.63005542755127,-0.77047473192215, +-0.102611526846886,-0.474115610122681,-0.874462783336639,-0.0804724842309952,-0.647780418395996,-0.757564961910248,-0.0886745378375053,-0.608682870864868,-0.788442850112915,-0.103237368166447,-0.479639291763306,-0.871371448040009,-0.143185794353485,-0.475944370031357,-0.867741227149963,-0.111560471355915,-0.701075494289398,-0.704306364059448,-0.120130531489849,-0.64797979593277,-0.75212424993515,-0.137696281075478,-0.474843442440033,-0.869231581687927,0.114422723650932,-0.989062428474426,0.0930750966072083,-0.0418639294803143,-0.998623132705688,-0.0316105335950851,-0.0879812240600586,-0.995760440826416,-0.0268426276743412,0.0700963586568832,-0.992343664169312,0.101688362658024,0.0823441967368126,-0.992132842540741,0.0942978858947754,-0.096498154103756,-0.995099246501923,-0.0215763915330172,-0.00553676625713706,-0.992596566677094,-0.121332600712776,0.183809876441956,-0.982566118240356,0.0278893895447254,-0.0852838233113289,-0.995948791503906,-0.0285087935626507,-0.345161229372025,-0.763421535491943,-0.54594087600708,-0.359555512666702,-0.685869753360748,-0.632694721221924,-0.110522270202637,-0.98929238319397,-0.0953178629279137,-0.0657494217157364,-0.997832775115967,-0.00262460298836231,-0.463425576686859,-0.768332242965698,-0.441477686166763,-0.458831995725632,-0.75846129655838,-0.462827891111374,-0.0737065225839615,-0.996642589569092,-0.0356507189571857,-0.177283316850662,-0.692093968391418,-0.699697554111481,-0.156492337584496,-0.67718768119812,-0.718976438045502,-0.181436777114868,-0.965362429618835,-0.187499895691872,-0.210661888122559,-0.975110948085785,-0.069140650331974,-0.350554972887039,-0.923109948635101,0.158048212528229,-0.29371052980423,-0.954769015312195,-0.0463705584406853,-0.241907685995102,-0.952525854110718,-0.18486575782299,-0.291465699672699,-0.946041524410248,-0.141609683632851,-0.080139733850956,-0.630192279815674,-0.772292375564575,-0.0682390034198761,-0.986958980560303,-0.145792379975319,0.0111992284655571,-0.98151159286499,-0.191075026988983,-0.0879786461591721,-0.679798007011414,-0.728103339672089, +0.37256795167923,-0.429126024246216,-0.822826862335205,0.213824883103371,-0.256137520074844,-0.942694365978241,0.17089432477951,-0.299136966466904,-0.938782334327698,0.31681963801384,-0.464389979839325,-0.827023148536682,0.0295284874737263,-0.045084685087204,-0.998546779155731,0.235502958297729,-0.208993002772331,-0.949136674404144,0.221682339906693,-0.244152545928955,-0.944058537483215,0.00795106962323189,-0.0759116411209106,-0.997082829475403,-0.177847996354103,0.116169214248657,-0.977177023887634,0.0295240134000778,-0.0450914725661278,-0.998546600341797,0.0420755818486214,-0.0192127916961908,-0.998929738998413,-0.17205685377121,0.146183043718338,-0.974180221557617,0.158658504486084,-0.833395540714264,-0.529414176940918,0.145897135138512,-0.826307535171509,-0.54399448633194,0.131319403648376,-0.806237518787384,-0.576833069324493,0.143923550844193,-0.812189161777496,-0.565362513065338,0.347026318311691,-0.75848799943924,-0.551605701446533,0.285064995288849,-0.703994333744049,-0.650484383106232,0.25424125790596,-0.694907367229462,-0.672655344009399,0.314502894878387,-0.748409152030945,-0.583927869796753,-0.131511986255646,-0.606652617454529,-0.784013509750366,-0.17604561150074,-0.737355709075928,-0.652161419391632,-0.121218331158161,-0.732329487800598,-0.67007440328598,-0.0834852978587151,-0.608928799629211,-0.788819253444672,0.342915385961533,-0.639633417129517,-0.687952220439911,0.254545539617538,-0.526337265968323,-0.811280369758606,0.193162500858307,-0.441961765289307,-0.87598979473114,0.270363569259644,-0.546271145343781,-0.792774558067322,0.246388256549835,-0.559110522270203,-0.791636526584625,0.178339049220085,-0.45261949300766,-0.873688101768494,0.158667966723442,-0.420915961265564,-0.893114864826202,0.222013086080551,-0.521237313747406,-0.82402777671814,0.228477001190186,-0.415768504142761,-0.880303859710693,0.136756792664528,-0.254466325044632,-0.957363307476044,0.101894304156303,-0.258808225393295,-0.9605393409729,0.181668698787689,-0.405896216630936,-0.895681142807007,0.316529244184494,-0.464693516492844,-0.826963841915131, +0.182661011815071,-0.283211648464203,-0.941502094268799,0.119542926549911,-0.270397782325745,-0.955298185348511,0.22038397192955,-0.421872496604919,-0.879462718963623,0.147438988089561,-0.221468150615692,-0.9639573097229,0.143032103776932,-0.248605832457542,-0.957985997200012,0.0168209951370955,-0.0743951424956322,-0.997087061405182,0.034274023026228,-0.061741016805172,-0.997503578662872,0.0341751426458359,-0.061827514320612,-0.997501611709595,0.0448451600968838,-0.0462951064109802,-0.99792069196701,-0.0812150165438652,0.127130419015884,-0.988555550575256,-0.0792725086212158,0.0971236377954483,-0.992110311985016,0.0343588851392269,-0.056826613843441,-0.997792720794678,0.0403185039758682,-0.0286979097872972,-0.998774766921997,-0.137652516365051,0.170230627059937,-0.975742518901825,-0.104367665946484,0.105954110622406,-0.988878726959229,0.173151239752769,-0.220079407095909,-0.959991574287415,0.190123379230499,-0.273001313209534,-0.94303947687149,0.0106510771438479,-0.0736706703901291,-0.997225761413574,0.034435797482729,-0.0567494444549084,-0.997794389724731,-0.149101182818413,0.393259346485138,-0.907257378101349,-0.0906286388635635,0.292897939682007,-0.951838970184326,-0.11356595903635,0.330492854118347,-0.936951160430908,-0.176729157567024,0.438253045082092,-0.881306529045105,-0.190070316195488,0.431850373744965,-0.881690680980682,-0.119240179657936,0.326596140861511,-0.937612235546112,-0.18947172164917,0.430975645780563,-0.882247447967529,-0.271411240100861,0.548775792121887,-0.79068398475647,-0.148123621940613,0.306456476449966,-0.940289318561554,-0.0529555231332779,0.152710437774658,-0.986851215362549,-0.126578003168106,0.184845328330994,-0.974582076072693,-0.253340929746628,0.37117138504982,-0.893336653709412,-0.112546660006046,0.279227405786514,-0.953606486320496,-0.036642599850893,0.131178766489029,-0.990681290626526,-0.0732469111680984,0.134372606873512,-0.98822009563446,-0.160726398229599,0.297507762908936,-0.94109308719635,0.130894258618355,-0.81320983171463,-0.567059695720673,0.125636354088783,-0.807537615299225,-0.576279819011688, +0.104978695511818,-0.679779052734375,-0.725865006446838,0.1102604418993,-0.68490993976593,-0.720236837863922,0.105927512049675,-0.685164213180542,-0.720645129680634,0.100429803133011,-0.680763125419617,-0.725586295127869,0.0894599407911301,-0.631769716739655,-0.769976675510406,0.0948443114757538,-0.635121524333954,-0.766567170619965,0.195725694298744,-0.656916081905365,-0.728115916252136,0.166020274162292,-0.598514974117279,-0.783720076084137,0.143093168735504,-0.556881964206696,-0.818172931671143,0.171417593955994,-0.612516224384308,-0.771647572517395,0.268942981958389,-0.765773952007294,-0.584174692630768,0.23401215672493,-0.706214606761932,-0.668206095695496,0.176062270998955,-0.593889713287354,-0.785045981407166,0.209120839834213,-0.653010785579681,-0.727904856204987,-0.0484804138541222,-0.777240097522736,-0.627333760261536,-0.0519707128405571,-0.834926545619965,-0.547902286052704,-0.0264968480914831,-0.814418375492096,-0.579672873020172,-0.0245365686714649,-0.758652031421661,-0.651033937931061,0.0443563684821129,-0.142840504646301,-0.988751351833344,-0.110129415988922,-0.359963178634644,-0.926443815231323,-0.0605786740779877,-0.384891927242279,-0.920971512794495,0.0842408761382103,-0.176596149802208,-0.980671882629395,-0.081114299595356,-0.610177874565125,-0.788101136684418,-0.119223348796368,-0.732953608036041,-0.669749855995178,-0.0432748012244701,-0.623642146587372,-0.780511140823364,-0.0163260120898485,-0.513579845428467,-0.857886552810669,-0.0292829722166061,-0.508707761764526,-0.860441148281097,-0.0512044876813889,-0.6219722032547,-0.781363368034363,-0.0184761229902506,-0.580499470233917,-0.81405109167099,-0.000583037734031677,-0.475815981626511,-0.879544675350189,0.0135385971516371,-0.634380638599396,-0.772902250289917,0.0108831245452166,-0.687465310096741,-0.726135671138763,0.0235241577029228,-0.637358367443085,-0.770208418369293,0.0252617970108986,-0.587431073188782,-0.808879852294922,-0.0152611713856459,-0.76075941324234,-0.648854494094849,-0.021405253559351,-0.814697742462158,-0.579490721225739,0.0140371304005384,-0.687488973140717,-0.726059138774872, +0.0175291374325752,-0.635054051876068,-0.772268772125244,-0.0868603587150574,-0.380752861499786,-0.920588135719299,-0.193482756614685,-0.567946016788483,-0.80000102519989,-0.131660342216492,-0.582454979419708,-0.802129507064819,-0.0354158729314804,-0.404980540275574,-0.913639187812805,0.299769431352615,0.32567822933197,-0.89670068025589,0.152071759104729,0.134786039590836,-0.979135870933533,0.156499236822128,0.117134407162666,-0.980707764625549,0.300817877054214,0.304001718759537,-0.903931140899658,0.0417738743126392,-0.136584803462029,-0.989747166633606,-0.0813175439834595,-0.367978751659393,-0.926271617412567,-0.0124091655015945,-0.33123642206192,-0.943466186523438,0.0773934572935104,-0.144477024674416,-0.986476898193359,0.0423904545605183,-0.122632145881653,-0.991546511650085,-0.0345374569296837,-0.319021075963974,-0.947118163108826,0.00202704221010208,-0.310809850692749,-0.95047003030777,0.0686254128813744,-0.13251993060112,-0.988801896572113,0.00297470390796661,-0.339598834514618,-0.940565705299377,-0.066243052482605,-0.494243204593658,-0.866796135902405,-0.0548722967505455,-0.457485139369965,-0.887522637844086,0.00796587858349085,-0.313595294952393,-0.949523389339447,-0.0344136692583561,-0.405770897865295,-0.913326740264893,-0.136416465044022,-0.579727113246918,-0.803310036659241,-0.085714615881443,-0.486283928155899,-0.869586706161499,-0.00380966020748019,-0.335924118757248,-0.941881418228149,0.206215918064117,0.0821302384138107,-0.975053668022156,0.0440002530813217,-0.14247539639473,-0.98881995677948,0.0114506334066391,-0.107808493077755,-0.994105815887451,0.165467232465744,0.109120577573776,-0.980159878730774,0.174645021557808,0.699989676475525,-0.692469239234924,0.188818424940109,0.594571590423584,-0.781557500362396,0.13969250023365,0.585181474685669,-0.798779547214508,0.122377678751945,0.680962562561035,-0.722020626068115,0.222694247961044,0.359407335519791,-0.906219482421875,0.119610205292702,0.149711132049561,-0.981468319892883,0.105129905045033,0.0912095457315445,-0.990266978740692,0.187705874443054,0.265403389930725,-0.945688903331757, +0.148114874958992,0.284048348665237,-0.947300672531128,0.0792673602700233,0.106458723545074,-0.99115252494812,0.0813064277172089,0.0827489569783211,-0.993248224258423,0.14383552968502,0.246373385190964,-0.958442211151123,0.121119782328606,0.081712082028389,-0.989269018173218,0.0424160398542881,-0.122648179531097,-0.991543412208557,0.0195494201034307,-0.106218583881855,-0.994150698184967,0.0880767107009888,0.0793200582265854,-0.992950558662415,0.167704194784164,0.107115797698498,-0.980000853538513,0.0416454337537289,-0.136463284492493,-0.989769458770752,0.0198020171374083,-0.108447000384331,-0.993905067443848,0.11270934343338,0.0867142602801323,-0.989837050437927,0.293045490980148,0.547741770744324,-0.783647477626801,0.251170068979263,0.36265042424202,-0.89743983745575,0.189628899097443,0.381461501121521,-0.904725313186646,0.222665295004845,0.553068995475769,-0.802829384803772,-0.188957616686821,0.628225266933441,-0.754737198352814,-0.231299415230751,0.686062157154083,-0.689796626567841,-0.207168102264404,0.664060175418854,-0.71840488910675,-0.166133657097816,0.607723534107208,-0.776576995849609,0.116624794900417,0.681721389293671,-0.722256600856781,0.0958519130945206,0.600130200386047,-0.794138729572296,0.0644979402422905,0.459854513406754,-0.885648846626282,0.0838620364665985,0.534765899181366,-0.840828537940979,0.0683416947722435,0.535756170749664,-0.841602623462677,0.0523176416754723,0.462736338376999,-0.884950876235962,0.0392340123653412,0.412322968244553,-0.910192608833313,0.0545471683144569,0.479981750249863,-0.875581085681915,0.130368545651436,0.442968428134918,-0.88700795173645,0.114422485232353,0.29938617348671,-0.947246253490448,0.0767540857195854,0.272597342729568,-0.959061861038208,0.0882057324051857,0.401993364095688,-0.911384224891663,0.211031004786491,0.557879865169525,-0.802643179893494,0.177185818552971,0.389554560184479,-0.903798937797546,0.106562040746212,0.302895426750183,-0.947047412395477,0.12864838540554,0.443437516689301,-0.887024700641632,-0.0306088477373123,0.733958959579468,-0.678503751754761, +-0.0178145058453083,0.721089065074921,-0.692613482475281,-0.0267086699604988,0.693130433559418,-0.720317184925079,-0.0392260849475861,0.70346063375473,-0.709650933742523,-0.122826032340527,0.189769864082336,-0.974115610122681,-0.132688447833061,0.202742829918861,-0.970200657844543,-0.312423080205917,0.342365205287933,-0.886102676391602,-0.297990471124649,0.32644522190094,-0.897014617919922,-0.165051445364952,0.608276426792145,-0.776374816894531,-0.182361707091331,0.671237468719482,-0.718459784984589,-0.118491761386395,0.529495418071747,-0.839996576309204,-0.104173921048641,0.471097886562347,-0.875907897949219,-0.106982566416264,0.469887673854828,-0.876219391822815,-0.120123758912086,0.529121220111847,-0.840000629425049,-0.0955371707677841,0.475852876901627,-0.874320805072784,-0.0839050263166428,0.420433878898621,-0.903435230255127,-0.0352670513093472,0.546525716781616,-0.836699366569519,-0.0302349459379911,0.539003670215607,-0.841760635375977,-0.0285921674221754,0.481435149908066,-0.876015305519104,-0.0335199572145939,0.488013476133347,-0.872192203998566,-0.0434904769062996,0.702722430229187,-0.710133612155914,-0.0381789430975914,0.693424820899963,-0.719516813755035,-0.0267365965992212,0.538978099822998,-0.841895341873169,-0.0318988524377346,0.547130882740021,-0.83643901348114,-0.229692697525024,0.427804887294769,-0.874199211597443,-0.34655037522316,0.531421065330505,-0.772977709770203,-0.317548215389252,0.519565165042877,-0.793230891227722,-0.203776329755783,0.417990326881409,-0.885301887989044,0.161045223474503,-0.963239908218384,0.215019434690475,0.230137288570404,-0.943982541561127,0.23650336265564,-0.00990913808345795,-0.836297810077667,0.54818594455719,-0.0918501541018486,-0.831913709640503,0.547250688076019,0.381984680891037,-0.128709584474564,0.915162146091461,0.38921132683754,-0.214578360319138,0.895807266235352,0.389813512563705,-0.236651241779327,0.889967322349548,0.379800617694855,-0.112577170133591,0.918192744255066,0.369578659534454,-0.113708592951298,0.92221587896347,0.367636561393738,-0.239269718527794,0.898662030696869, +0.367611467838287,-0.228659719228745,0.901430249214172,0.368823111057281,-0.102507278323174,0.923830032348633,0.366863012313843,-0.239358127117157,0.898954510688782,0.365510493516922,-0.279070466756821,0.887987494468689,0.366239607334137,-0.273584276437759,0.889393210411072,0.367680549621582,-0.228659451007843,0.901402235031128,0.392128050327301,-0.213859051465988,0.894706606864929,0.396635174751282,-0.241524636745453,0.885633289813995,0.396855771541595,-0.275010287761688,0.875713884830475,0.391871631145477,-0.236399918794632,0.88912969827652,0.4051853120327,-0.0684513002634048,0.911668479442596,0.430370628833771,-0.161207556724548,0.888140380382538,0.415015190839767,-0.132068172097206,0.900178074836731,0.392308473587036,-0.0494531020522118,0.918503403663635,0.392507553100586,-0.0493659526109695,0.918423056602478,0.408733606338501,-0.134353160858154,0.902710497379303,0.381235927343369,-0.0528904795646667,0.922963619232178,0.369061976671219,0.0097992792725563,0.929353177547455,0.398656040430069,-0.137988924980164,0.90666002035141,0.40482360124588,-0.210690915584564,0.8897904753685,0.385404586791992,-0.128011494874954,0.913825213909149,0.376473695039749,-0.0540953874588013,0.924846649169922,0.40968519449234,-0.169332578778267,0.896372973918915,0.422957628965378,-0.234487563371658,0.875284194946289,0.417836785316467,-0.207379743456841,0.884537160396576,0.402494311332703,-0.136608511209488,0.905172109603882,0.358189880847931,-0.102815344929695,0.927970349788666,0.346169739961624,-0.228694900870323,0.90987104177475,0.349833190441132,-0.198475122451782,0.915546000003815,0.359569430351257,-0.0843876451253891,0.929294645786285,0.351902931928635,-0.0840022638440132,0.932259619235992,0.332263648509979,-0.196545407176018,0.922480881214142,0.344091027975082,-0.132006585597992,0.92961049079895,0.354489743709564,-0.0669421330094337,0.932660639286041,0.329166322946548,-0.196199223399162,0.923664093017578,0.317787945270538,-0.227854892611504,0.920376598834991,0.33303090929985,-0.151823863387108,0.930612742900848,0.340996086597443,-0.131325587630272,0.930846512317657, +0.341194212436676,-0.228685736656189,0.911750674247742,0.333507478237152,-0.273289442062378,0.902266979217529,0.340828388929367,-0.231041923165321,0.91129344701767,0.346125334501266,-0.198072671890259,0.917041122913361,0.330694019794464,0.161973640322685,0.929734349250793,0.382091224193573,0.0487460047006607,0.922838151454926,0.373840928077698,0.047596849501133,0.92627078294754,0.325366735458374,0.155392542481422,0.932732403278351,0.33260640501976,0.159153550863266,0.929539263248444,0.375794738531113,0.0485695153474808,0.925429284572601,0.366966634988785,0.0801472291350365,0.926775097846985,0.341134339570999,0.151288047432899,0.927760362625122,0.368631422519684,0.045007161796093,0.928485512733459,0.397459775209427,-0.0471931993961334,0.916405260562897,0.380106717348099,0.0131207089871168,0.924849569797516,0.359458029270172,0.0775821283459663,0.929930686950684,0.369914144277573,0.0419841706752777,0.928116858005524,0.412536293268204,-0.0648247599601746,0.90863174200058,0.408322095870972,-0.0424013994634151,0.911852657794952,0.372967302799225,0.0471622049808502,0.926645159721375,0.354950934648514,-0.0670075640082359,0.932480454444885,0.33694389462471,-0.130432978272438,0.932446241378784,0.354558706283569,-0.0279557406902313,0.934615731239319,0.366715550422668,0.0177431162446737,0.93016391992569,0.365465402603149,0.0179357435554266,0.930652141571045,0.357010394334793,-0.0286579951643944,0.933660686016083,0.378713518381119,0.0713007897138596,0.922763347625732,0.380775630474091,0.0902386382222176,0.920253753662109,0.358689337968826,-0.0291392095386982,0.933002114295959,0.354907184839249,-0.0519743673503399,0.933455765247345,0.392732441425323,0.0588075071573257,0.917770624160767,0.391504764556885,0.0672591328620911,0.917714655399323,0.328387290239334,-0.128544539213181,0.935755431652069,0.32327127456665,-0.149408996105194,0.934437036514282,0.351173639297485,-0.050749771296978,0.934934020042419,0.355905145406723,-0.0283413417637348,0.934092342853546,0.384967178106308,-0.128100946545601,0.913997054100037,0.380237966775894,-0.112528346478939,0.918017745018005, +0.369174867868423,-0.00491602718830109,0.929347038269043,0.379359304904938,-0.0533657893538475,0.923709154129028,0.3824602663517,-0.0525800511240959,0.92247474193573,0.370611637830734,-0.00471325218677521,0.92877596616745,0.359625607728958,0.0675434321165085,0.930648982524872,0.374320507049561,0.011378706432879,0.927229642868042,0.368055880069733,-0.00507386075332761,0.929789900779724,0.36678758263588,0.0134957041591406,0.930206835269928,0.353158712387085,0.121426083147526,0.927650034427643,0.360416740179062,0.0676881968975067,0.930332243442535,0.371543437242508,-0.113492555916309,0.921452581882477,0.368813186883926,-0.102507576346397,0.923833966255188,0.364872425794601,0.0133922137320042,0.930961191654205,0.368030875921249,-0.00507738115265965,0.929799795150757,0.352792590856552,0.121397718787193,0.927793085575104,0.355982840061188,0.0129121951758862,0.934403300285339,0.356496304273605,0.0266997329890728,0.933915197849274,0.353398889303207,0.10858827829361,0.929149091243744,0.36053654551506,0.10830095410347,0.926436305046082,0.356199532747269,0.0267094802111387,0.934028148651123,0.355140894651413,0.0195213723927736,0.934608936309814,0.359695345163345,0.0937862694263458,0.928344488143921,0.358348548412323,0.0266388226300478,0.933207809925079,0.349692612886429,-0.0838903188705444,0.933101058006287,0.349953889846802,-0.0662983730435371,0.934417903423309,0.355845361948013,0.0194134712219238,0.934343218803406,0.357608616352081,0.0129999415948987,0.933781147003174,0.357125520706177,-0.102845385670662,0.928377270698547,0.356563776731491,-0.0842370986938477,0.930465757846832,0.356853991746902,0.0266879834234715,0.933778941631317,0.398072987794876,0.0872666537761688,0.913193583488464,0.382456481456757,0.070122204720974,0.921308875083923,0.412147730588913,0.16828465461731,0.895440936088562,0.42274534702301,0.157551378011703,0.892448306083679,0.435222715139389,0.155176237225533,0.886849224567413,0.427181422710419,0.163339227437973,0.889289915561676,0.450754553079605,0.271355807781219,0.850403785705566,0.454988926649094,0.233824014663696,0.859250545501709, +0.454167366027832,0.154237940907478,0.87746387720108,0.467102706432343,0.158253267407417,0.869925796985626,0.502029836177826,0.265198200941086,0.823186457157135,0.489212214946747,0.259018182754517,0.832815110683441,0.415646195411682,0.0595226064324379,0.907576739788055,0.39974656701088,0.0561844184994698,0.914902210235596,0.445662796497345,0.166641488671303,0.879554033279419,0.456775337457657,0.153342738747597,0.876266241073608,0.343225449323654,0.152111023664474,0.926854133605957,0.366505116224289,0.0799894630908966,0.926971316337585,0.348268806934357,0.137074917554855,0.927318334579468,0.321899354457855,0.212515473365784,0.922614753246307,0.330610781908035,0.215321987867355,0.918875992298126,0.352109551429749,0.137961402535439,0.925735175609589,0.336656749248505,0.19449944794178,0.921320915222168,0.313704460859299,0.270439475774765,0.91019344329834,0.350302070379257,0.137544333934784,0.926482617855072,0.363430917263031,0.068239726126194,0.929118633270264,0.353500068187714,0.121452510356903,0.927516579627991,0.337860494852066,0.194699823856354,0.920837879180908,0.361507683992386,0.0782819986343384,0.92907702922821,0.377156674861908,0.0122320409864187,0.926068663597107,0.364008128643036,0.0683453381061554,0.928884863853455,0.34645739197731,0.13665646314621,0.928058385848999,0.246532961726189,0.370034217834473,0.895709872245789,0.294363290071487,0.27889084815979,0.914095342159271,0.296810537576675,0.266508519649506,0.916993319988251,0.258657783269882,0.342214733362198,0.903319120407104,0.273558259010315,0.347924441099167,0.896724283695221,0.306554824113846,0.271021634340286,0.912453472614288,0.328411042690277,0.214614301919937,0.919829845428467,0.307521432638168,0.268798381090164,0.912785887718201,0.294606864452362,0.265485465526581,0.918000221252441,0.339810937643051,0.162897318601608,0.926279127597809,0.34129387140274,0.15135084092617,0.927691519260406,0.31781268119812,0.21119524538517,0.924333095550537,0.278660744428635,0.270734518766403,0.921439707279205,0.331065446138382,0.162183299660683,0.929565608501434,0.340389311313629,0.163197934627533,0.926013827323914, +0.292505204677582,0.264508962631226,0.918953716754913,0.352786302566528,0.121397241950035,0.927795588970184,0.353141695261002,0.108598485589027,0.92924553155899,0.348662376403809,0.189142316579819,0.917965114116669,0.347187578678131,0.220604807138443,0.91147917509079,0.360301345586777,0.220939606428146,0.906293988227844,0.359713762998581,0.188553497195244,0.913812756538391,0.355998575687408,0.289049118757248,0.888659536838531,0.354743093252182,0.323450446128845,0.877232730388641,0.388241469860077,0.18689751625061,0.902406752109528,0.381444662809372,0.165093809366226,0.909529626369476,0.390236735343933,0.247041791677475,0.886953055858612,0.3966064453125,0.284742832183838,0.872711300849915,0.364337086677551,0.108145043253899,0.92496657371521,0.360293239355087,0.0936867520213127,0.928122639656067,0.366874873638153,0.16764135658741,0.915040612220764,0.370258361101151,0.187964454293251,0.909713208675385,0.442939162254333,0.236412242054939,0.864820301532745,0.445976316928864,0.272833108901978,0.852447807788849,0.450860559940338,0.361073434352875,0.816303133964539,0.446385145187378,0.278578132390976,0.850373268127441,0.41113093495369,0.283047586679459,0.866519212722778,0.409646660089493,0.370132684707642,0.833781361579895,0.407063096761703,0.425302803516388,0.808342218399048,0.411393344402313,0.321045756340027,0.853044629096985,0.473839670419693,0.355595201253891,0.805622816085815,0.470484912395477,0.376614063978195,0.798001170158386,0.466026663780212,0.451379776000977,0.760970115661621,0.470503151416779,0.416364073753357,0.777989566326141,0.491950392723083,0.258108556270599,0.831483602523804,0.49430912733078,0.268053472042084,0.82692551612854,0.50477123260498,0.366623997688293,0.781532466411591,0.50219190120697,0.348391234874725,0.791471362113953,0.258498132228851,0.494649857282639,0.829759180545807,0.272895306348801,0.458451211452484,0.84578400850296,0.286005586385727,0.423492908477783,0.859566569328308,0.269181907176971,0.467374116182327,0.842082262039185,0.272027611732483,0.467824101448059,0.84091705083847,0.28800305724144,0.424037426710129,0.858630657196045, +0.320053398609161,0.325090408325195,0.889877676963806,0.301357746124268,0.383091181516647,0.873169302940369,0.262669622898102,0.417000323534012,0.870123863220215,0.283384889364243,0.351650029420853,0.892208099365234,0.320880025625229,0.272332817316055,0.907122373580933,0.308809876441956,0.322841048240662,0.894656419754028,0.231589823961258,0.446100533008575,0.864500164985657,0.260828673839569,0.376129299402237,0.88909786939621,0.280212312936783,0.350450694561005,0.89368087053299,0.255035758018494,0.414824604988098,0.873428523540497,0.312096685171127,0.384529888629913,0.868753492832184,0.318444520235062,0.324771016836166,0.890571177005768,0.341954380273819,0.256965070962906,0.903900504112244,0.329057842493057,0.351200580596924,0.876572370529175,0.334601789712906,0.351459801197052,0.874366998672485,0.340170711278915,0.256778180599213,0.904626369476318,0.353119671344757,0.220761448144913,0.909159421920776,0.348141878843307,0.32364821434021,0.879800617694855,0.333108246326447,0.256030052900314,0.907462179660797,0.343043118715286,0.195559829473495,0.9187371134758,0.353598177433014,0.121460124850273,0.9274782538414,0.33901783823967,0.220375075936317,0.914604783058167,0.309168368577957,0.322913408279419,0.894506514072418,0.319184839725494,0.271886646747589,0.907853901386261,0.342576622962952,0.195482581853867,0.918927550315857,0.331697583198547,0.255879074335098,0.908021211624146,0.321190595626831,0.385711252689362,0.86490672826767,0.343970209360123,0.351870596408844,0.870558261871338,0.331051915884018,0.466244220733643,0.820378661155701,0.313341617584229,0.473888039588928,0.822950303554535,0.328313738107681,0.475864350795746,0.815943121910095,0.346363604068756,0.466350555419922,0.813971519470215,0.351268976926804,0.503374397754669,0.789445519447327,0.335227876901627,0.505743741989136,0.794887185096741,0.385063260793686,0.466038346290588,0.796576917171478,0.417161881923676,0.42404043674469,0.803844213485718,0.439115792512894,0.456135034561157,0.774027228355408,0.405939698219299,0.502075374126434,0.763631582260132,0.354009866714478,0.352272242307663,0.8663609623909, +0.379520148038864,0.32255682349205,0.867134094238281,0.387627899646759,0.427568227052689,0.816657900810242,0.359389185905457,0.466339498758316,0.80831116437912,0.354550987482071,0.125041931867599,-0.926638066768646,0.603344976902008,0.216439828276634,-0.767547130584717,0.602069795131683,0.251831352710724,-0.757689237594604,0.358301967382431,0.163120239973068,-0.91924512386322,0.300542235374451,0.95020467042923,-0.08237474411726,0.20652674138546,0.958891630172729,-0.19461116194725,0.11699004471302,0.976560950279236,-0.180671259760857,0.212777003645897,0.972211480140686,-0.0976260229945183,0.63322240114212,0.731531381607056,-0.252767294645309,0.484383642673492,0.756477534770966,-0.43944776058197,0.410282015800476,0.811608493328094,-0.415884912014008,0.558319211006165,0.789941430091858,-0.253519982099533,0.103662550449371,-0.222325295209885,-0.969446063041687,0.388810455799103,-0.0699904933571815,-0.918655395507813,0.385364502668381,0.0302955657243729,-0.922267019748688,0.101869620382786,-0.120607145130634,-0.987459599971771,-0.146555602550507,-0.510042071342468,-0.847572088241577,0.118830747902393,-0.333890736103058,-0.935091614723206,0.112152434885502,-0.19185109436512,-0.974994897842407,-0.166205763816833,-0.375113397836685,-0.911957085132599,-0.296710938215256,0.932399272918701,-0.206383764743805,-0.246583938598633,0.959244787693024,-0.138007014989853,-0.1772331148386,0.975257575511932,-0.132140532135963,-0.235292851924896,0.95518970489502,-0.179582640528679,-0.556598424911499,0.649809718132019,-0.517634630203247,-0.552348256111145,0.775730192661285,-0.305211633443832,-0.422296166419983,0.870800077915192,-0.251740247011185,-0.46914666891098,0.767647624015808,-0.43659895658493,-0.376602917909622,-0.853456735610962,-0.360252499580383,-0.289661973714828,-0.758526027202606,-0.583724558353424,-0.339075177907944,-0.661806762218475,-0.668610394001007,-0.459224164485931,-0.771870136260986,-0.439692705869675,-0.31988400220871,-0.712215662002563,-0.624838531017303,-0.13207782804966,-0.562108218669891,-0.816449582576752,-0.15491957962513,-0.42529708147049,-0.891696453094482, +-0.374354481697083,-0.590371966362,-0.715066313743591,-0.228042319417,0.19678521156311,-0.953557729721069,-0.486380338668823,0.330606609582901,-0.808785259723663,-0.464878916740417,0.4704549908638,-0.750039875507355,-0.237711995840073,0.339611202478409,-0.91003143787384,-0.472846120595932,0.40258914232254,-0.78379762172699,-0.619902431964874,0.540061116218567,-0.569258391857147,-0.550805866718292,0.666137516498566,-0.502865493297577,-0.444820016622543,0.53897887468338,-0.715287983417511,-0.00416591018438339,-0.998798429965973,0.0488297641277313,0.00765134114772081,-0.999906420707703,0.0113454014062881,0.0111570982262492,-0.999877691268921,0.0109662357717752,-0.00133534055203199,-0.998877465724945,0.0473517589271069,-0.27858304977417,-0.954449772834778,-0.106851197779179,-0.261640131473541,-0.927525281906128,-0.266911089420319,-0.307208240032196,-0.898201704025269,-0.314415335655212,-0.340071618556976,-0.929986536502838,-0.139557614922523,0.0881367623806,0.0164427068084478,-0.995972692966461,-0.227035135030746,0.136995270848274,-0.964203000068665,-0.239118814468384,0.279432326555252,-0.929913878440857,0.0630272552371025,0.157631069421768,-0.985484719276428,0.403366476297379,-0.127587959170341,-0.906099796295166,0.0948333218693733,-0.0622678324580193,-0.993543863296509,0.074454665184021,0.0358353964984417,-0.996580421924591,0.385098189115524,-0.0333063863217831,-0.92227441072464,0.389967679977417,-0.920710802078247,-0.0147247463464737,0.432459801435471,-0.898241639137268,0.0783606991171837,0.46605521440506,-0.880639970302582,0.0852401033043861,0.425240248441696,-0.904862582683563,-0.0198643151670694,0.611553549766541,-0.738909184932709,-0.282870262861252,0.721550941467285,-0.682952404022217,-0.113755717873573,0.757233500480652,-0.642751634120941,-0.116051629185677,0.647204458713531,-0.701477825641632,-0.298421412706375,0.658389866352081,-0.264343202114105,-0.704730749130249,0.405860304832458,-0.26823890209198,-0.873685002326965,0.394372850656509,-0.238356754183769,-0.887500047683716,0.651732087135315,-0.236321032047272,-0.72069251537323, +0.787021458148956,-0.446424067020416,-0.425796747207642,0.801788091659546,-0.421468526124954,-0.423674881458282,0.619541227817535,-0.475814402103424,-0.624315202236176,0.604915857315063,-0.49927031993866,-0.620327293872833,-0.772988438606262,-0.449764370918274,-0.447438299655914,-0.798195123672485,-0.485590159893036,-0.35649248957634,-0.775967717170715,-0.426457613706589,-0.464766621589661,-0.714963495731354,-0.384743690490723,-0.583780467510223,-0.762066006660461,-0.519820153713226,-0.386060178279877,-0.810070753097534,-0.482295274734497,-0.333431482315063,-0.757267951965332,-0.451781690120697,-0.471633911132813,-0.700477719306946,-0.497557878494263,-0.511631846427917,-0.544275224208832,-0.677596569061279,-0.494598299264908,-0.419748961925507,-0.723104238510132,-0.548571884632111,-0.277479112148285,-0.698832333087921,-0.659271359443665,-0.413407504558563,-0.67092365026474,-0.61559385061264,-0.605946183204651,-0.649992167949677,-0.458627939224243,-0.676557600498199,-0.58879417181015,-0.442257165908813,-0.591873407363892,-0.557581424713135,-0.582055687904358,-0.519573986530304,-0.631587266921997,-0.575447976589203,-0.741242825984955,-0.391536474227905,0.545214056968689,-0.836192071437836,-0.252500355243683,0.486853659152985,-0.760800063610077,-0.262238085269928,0.59364515542984,-0.670178532600403,-0.295823276042938,0.680697679519653,-0.763768672943115,-0.350327879190445,-0.542151153087616,-0.637427628040314,0.0556090250611305,-0.768500983715057,-0.775971233844757,-0.0790877863764763,-0.625790655612946,-0.732591450214386,-0.474083989858627,-0.488420218229294,-0.458995640277863,-0.610049664974213,-0.645881116390228,-0.473700344562531,-0.559813261032104,-0.679865479469299,-0.50263899564743,-0.666236698627472,-0.550892770290375,-0.488173574209213,-0.679957747459412,-0.547123372554779,-0.591658353805542,-0.580865085124969,-0.559049367904663,-0.545207142829895,-0.591516971588135,-0.594017624855042,-0.172996088862419,-0.421244859695435,-0.890294969081879,-0.260194927453995,-0.408081144094467,-0.875082015991211,-0.414702355861664,-0.670247673988342,-0.615459263324738, +-0.41743877530098,-0.634160578250885,-0.650834321975708,-0.109470963478088,-0.402475893497467,-0.908861637115479,-0.146637961268425,-0.457677900791168,-0.87694251537323,-0.455824941396713,-0.707718670368195,-0.539775848388672,-0.349963039159775,-0.728384852409363,-0.589051306247711,-0.227861225605011,-0.679382979869843,-0.697508454322815,-0.344640344381332,-0.670267283916473,-0.657240331172943,-0.712377190589905,-0.576367676258087,-0.400398701429367,-0.763404607772827,-0.520770967006683,-0.382114171981812,-0.698828756809235,-0.488269746303558,-0.522715151309967,-0.644883513450623,-0.552615225315094,-0.527960002422333,-0.723097562789917,-0.487494587898254,-0.489365965127945,-0.728237211704254,-0.474011182785034,-0.494958639144897,-0.401708364486694,-0.271308869123459,-0.874655365943909,-0.436646997928619,-0.268856883049011,-0.858519375324249,-0.698830962181091,-0.503662347793579,-0.507897138595581,-0.679594337940216,-0.506688714027405,-0.530488610267639,-0.312501192092896,-0.323875546455383,-0.892999291419983,-0.380195707082748,-0.31115710735321,-0.870995163917542,-0.200406208634377,-0.234454825520515,-0.951245665550232,-0.276355683803558,-0.250653237104416,-0.927793443202972,-0.256301611661911,-0.247938826680183,-0.934256851673126,-0.188111215829849,-0.232161447405815,-0.954313993453979,-0.205962032079697,-0.140860065817833,-0.968368887901306,-0.278784155845642,-0.176596596837044,-0.943977355957031,-0.225921288132668,-0.185457333922386,-0.956328988075256,-0.160600632429123,-0.150458708405495,-0.975484311580658,-0.256785780191422,-0.246464222669601,-0.934514105319977,-0.358357548713684,-0.349575728178024,-0.86566549539566,-0.341038167476654,-0.274156779050827,-0.899183571338654,-0.230019360780716,-0.173250168561935,-0.957640588283539,-0.275153815746307,-0.254113912582397,-0.927209079265594,-0.419223040342331,-0.300425231456757,-0.856736063957214,-0.390554636716843,-0.292230576276779,-0.872965335845947,-0.253965198993683,-0.25501948595047,-0.932988107204437,-0.141690373420715,-0.231142565608025,-0.962547183036804,-0.190878450870514,-0.284401476383209,-0.939511239528656, +-0.145064204931259,-0.231964215636253,-0.961846649646759,-0.0959937572479248,-0.181053787469864,-0.978777170181274,-0.0432243570685387,-0.35466679930687,-0.933993101119995,-0.0752392560243607,-0.394294112920761,-0.915899157524109,-0.0249340534210205,-0.348240554332733,-0.937073588371277,0.0049198349006474,-0.310836285352707,-0.950450837612152,-0.0963515937328339,-0.347205430269241,-0.932826280593872,-0.206658124923706,-0.37254673242569,-0.904710650444031,-0.137010052800179,-0.3652203977108,-0.920783638954163,-0.0275423415005207,-0.342899709939957,-0.938968241214752,-0.186455473303795,-0.296253204345703,-0.936732888221741,-0.26523032784462,-0.400332570075989,-0.877146899700165,-0.242711663246155,-0.31752011179924,-0.916663587093353,-0.153124094009399,-0.211951464414597,-0.965209662914276,-0.13568015396595,-0.255605936050415,-0.957212924957275,-0.0814075991511345,-0.230808719992638,-0.969587624073029,0.0136751774698496,-0.226871982216835,-0.973828673362732,-0.0452106483280659,-0.254128754138947,-0.966113209724426,0.0334265343844891,-0.33450785279274,-0.941799998283386,0.0923652946949005,-0.366454750299454,-0.925839960575104,0.12781548500061,-0.316995233297348,-0.939775168895721,0.0746875330805779,-0.284093827009201,-0.955883145332336,-0.123838521540165,-0.246827334165573,-0.961114168167114,-0.104722790420055,-0.224608883261681,-0.968805491924286,-0.066142775118351,-0.20611084997654,-0.976290702819824,-0.0929564833641052,-0.225231856107712,-0.969860732555389,-0.0293204672634602,-0.397588133811951,-0.917095422744751,0.031373854726553,-0.383996725082397,-0.922801375389099,0.0935546457767487,-0.371371477842331,-0.92375910282135,0.042125403881073,-0.381271660327911,-0.923502862453461,-0.201223134994507,-0.230687439441681,-0.951994061470032,-0.189803570508957,-0.223942682147026,-0.955941557884216,-0.104906298220158,-0.221260085701942,-0.969555914402008,-0.124949775636196,-0.229548722505569,-0.965243458747864,-0.106223672628403,-0.196440100669861,-0.974745094776154,-0.0551636666059494,-0.159532710909843,-0.985650241374969, +-0.00281740515492857,-0.197424709796906,-0.980314016342163,-0.0670873448252678,-0.233994677662849,-0.969920516014099,0.030345369130373,-0.252600610256195,-0.967094719409943,0.0218889061361551,-0.31036838889122,-0.950364351272583,-0.11828288435936,-0.259612709283829,-0.95844167470932,-0.0937677919864655,-0.195375859737396,-0.976235628128052,-0.205402657389641,-0.143889546394348,-0.968042194843292,-0.164525911211967,-0.132941648364067,-0.977372884750366,-0.058507289737463,-0.126241460442543,-0.990272700786591,-0.108967013657093,-0.13946670293808,-0.9842129945755,0.0432283990085125,-0.0662043392658234,-0.996869325637817,-0.0149973044171929,-0.102503336966038,-0.994619607925415,0.0437942780554295,-0.0660183280706406,-0.996856868267059,0.0913544893264771,-0.031407967209816,-0.995323002338409,-0.386107832193375,0.0194615162909031,-0.922248303890228,-0.845717430114746,-0.170495554804802,-0.505661368370056,-0.927727341651917,-0.246896967291832,-0.279935359954834,-0.862497687339783,-0.175282970070839,-0.4747354388237,-0.613988697528839,-0.48256117105484,-0.62462192773819,-0.556098878383636,-0.643153309822083,-0.526410341262817,-0.693066298961639,-0.72078800201416,-0.011130035854876,-0.753562152385712,-0.645738482475281,0.123150140047073,-0.874468684196472,-0.485075891017914,-0.00244767963886261,-0.893649220466614,-0.42328354716301,0.149071574211121,-0.926962077617645,-0.370554774999619,0.0585699826478958,-0.906272411346436,-0.414040386676788,-0.0850945562124252,-0.899782538414001,-0.43449467420578,-0.0400726422667503,-0.925017952919006,-0.373980164527893,0.0669374912977219,-0.940867304801941,-0.33871728181839,0.00628688279539347,-0.912000954151154,-0.397651612758636,-0.100635699927807,-0.914034485816956,-0.382544308900833,-0.134910300374031,-0.950458765029907,-0.295133411884308,-0.0975939631462097,-0.94989275932312,-0.29682332277298,-0.0979788154363632,-0.914922058582306,-0.380988329648972,-0.133287653326988,-0.913159251213074,-0.348683446645737,-0.211092919111252,-0.944428741931915,-0.247852101922035,-0.215925365686417,-0.942950129508972,-0.276727020740509,-0.185114443302155, +-0.912815511226654,-0.368679910898209,-0.175621867179871,-0.867843568325043,-0.317807137966156,-0.381898105144501,-0.875015377998352,-0.263602256774902,-0.406032055616379,-0.834072411060333,-0.347519516944885,-0.428431451320648,-0.836315095424652,-0.372109800577164,-0.402630746364594,-0.902812838554382,-0.335962951183319,-0.268436133861542,-0.925716996192932,-0.238235980272293,-0.293754518032074,-0.896412789821625,-0.276810675859451,-0.346150159835815,-0.888751149177551,-0.334242045879364,-0.313693970441818,-0.86908483505249,-0.435142546892166,-0.235250055789948,-0.882340669631958,-0.404080867767334,-0.24123340845108,-0.867700934410095,-0.454107463359833,-0.202191710472107,-0.84934413433075,-0.492336750030518,-0.190313532948494,-0.846335768699646,-0.373197644948959,-0.380051642656326,-0.857664048671722,-0.348402261734009,-0.37819105386734,-0.829825878143311,-0.433252155780792,-0.351684182882309,-0.815908193588257,-0.460106194019318,-0.350137501955032,-0.951900720596313,-0.286204755306244,0.109416373074055,-0.963370084762573,-0.257947027683258,0.0733581855893135,-0.966109037399292,-0.251657664775848,0.0574627965688705,-0.955815494060516,-0.279454469680786,0.0912247151136398,-0.91633129119873,-0.399233222007751,-0.0308200158178806,-0.924853682518005,-0.373663395643234,-0.0708620175719261,-0.914052128791809,-0.400765210390091,-0.0624185875058174,-0.904791355133057,-0.425221979618073,-0.0232144445180893,-0.979916334152222,-0.0400608144700527,0.195343494415283,-0.98443615436554,-0.000509955047164112,0.175742164254189,-0.997031569480896,-0.00978682655841112,0.0763696357607841,-0.99269437789917,-0.0491839796304703,0.110176503658295,-0.987153172492981,0.100212149322033,0.12444369494915,-0.988220274448395,0.121235594153404,0.0933949425816536,-0.995015859603882,0.0994952321052551,-0.00663926592096686,-0.995800375938416,0.0832805037498474,0.0380251631140709,-0.991081416606903,0.129778936505318,0.0302506126463413,-0.99358344078064,0.1127914711833,-0.00838062632828951,-0.990330040454865,0.0889742374420166,-0.106442868709564,-0.991106748580933,0.111936680972576,-0.0719568803906441, +-0.995747685432434,0.0749827399849892,-0.0535191148519516,-0.996212124824524,0.0332146883010864,-0.0803639367222786,-0.988685369491577,0.0108419358730316,-0.149612367153168,-0.989833235740662,0.0514785759150982,-0.132590621709824,-0.996930658817291,-0.0718418955802917,-0.031114436686039,-0.990119218826294,-0.125135377049446,-0.0632852241396904,-0.988776624202728,-0.135668322443962,-0.062569223344326,-0.998277902603149,-0.0561467707157135,-0.0169966686517,-0.997098445892334,-0.0178721100091934,-0.0739960893988609,-0.993907392024994,-0.0512098148465157,-0.0975997596979141,-0.988861680030823,-0.0726986527442932,-0.129874929785728,-0.995720267295837,-0.0261495932936668,-0.0886425599455833,-0.993164777755737,-0.096875973045826,0.0651072189211845,-0.981496751308441,-0.188769742846489,0.0320989601314068,-0.97984790802002,-0.195422798395157,0.041328739374876,-0.992384552955627,-0.0957831516861916,0.0774500370025635,-0.997788310050964,-0.0664661675691605,0.000831741839647293,-0.987269937992096,-0.157011732459068,-0.0254077911376953,-0.985628962516785,-0.168714940547943,-0.00841585919260979,-0.997086524963379,-0.074003741145134,0.0184964258223772,-0.921184420585632,-0.19767951965332,0.335174798965454,-0.913968503475189,-0.298339277505875,0.275055050849915,-0.91818368434906,-0.299163520336151,0.259691923856735,-0.927045464515686,-0.18935689330101,0.323621392250061,-0.966324746608734,-0.15285724401474,0.207005023956299,-0.959322571754456,-0.24252413213253,0.144507616758347,-0.963382303714752,-0.236103594303131,0.12708106637001,-0.971151411533356,-0.140993669629097,0.192316576838493,-0.135171428322792,-0.367747157812119,-0.92004930973053,-0.447901874780655,-0.617332756519318,-0.646748960018158,-0.395574867725372,-0.604462563991547,-0.691480696201324,-0.0933636128902435,-0.355779498815536,-0.929894804954529,-0.864620923995972,-0.500097274780273,-0.0483067780733109,-0.844043374061584,-0.523785948753357,-0.115061365067959,-0.927720963954926,-0.371190845966339,0.0393852181732655,-0.873766124248505,-0.486346423625946,0.000141024574986659, +-0.613476157188416,-0.460511684417725,-0.64154189825058,-0.62355774641037,-0.473240882158279,-0.622269153594971,-0.296358346939087,-0.190627917647362,-0.935859441757202,-0.245920240879059,-0.139872536063194,-0.959144949913025,-0.474279135465622,-0.233957260847092,-0.848718762397766,-0.434838116168976,-0.192471221089363,-0.879699170589447,-0.676174640655518,-0.409038662910461,-0.612760424613953,-0.740853250026703,-0.461405515670776,-0.488099932670593,-0.163742497563362,-0.327830404043198,-0.930438458919525,-0.129888251423836,-0.307211011648178,-0.94273567199707,-0.018694756552577,-0.254481464624405,-0.966896891593933,-0.0577029436826706,-0.280005514621735,-0.95826268196106,-0.0514894388616085,-0.293134570121765,-0.954683661460876,-0.00121165066957474,-0.289135456085205,-0.957287490367889,0.0442656837403774,-0.289036393165588,-0.956294119358063,-0.00261078053154051,-0.289639860391617,-0.957132160663605,-0.10407180339098,-0.0784402415156364,-0.991471827030182,-0.147186875343323,-0.148719772696495,-0.97786420583725,-0.0767738744616508,-0.171500012278557,-0.982188105583191,-0.0269144773483276,-0.0983438566327095,-0.994788527488708,-0.248642176389694,-0.135687306523323,-0.959044337272644,-0.308527827262878,-0.164697155356407,-0.936848640441895,-0.164516851305962,-0.0905949249863625,-0.982205092906952,-0.108823485672474,-0.0682990103960037,-0.991712093353271,-0.719130277633667,-0.491426527500153,-0.491275578737259,-0.421734154224396,-0.295959830284119,-0.857057750225067,-0.452822685241699,-0.272226214408875,-0.84902560710907,-0.714468359947205,-0.485471189022064,-0.503838062286377,-0.41233503818512,-0.222258567810059,-0.883504986763,-0.452230960130692,-0.273252844810486,-0.849011301994324,-0.282238811254501,-0.237797379493713,-0.929404973983765,-0.220753580331802,-0.172381967306137,-0.959975123405457,-0.186304122209549,-0.232578039169312,-0.954567015171051,-0.286954373121262,-0.225359201431274,-0.931058824062347,-0.191642016172409,-0.234031617641449,-0.95315408706665,-0.0735178291797638,-0.236932545900345,-0.968740463256836, +-0.247362226247787,-0.324723720550537,-0.912889063358307,-0.258802831172943,-0.299823701381683,-0.91821950674057,-0.183519423007965,-0.308617621660233,-0.933314383029938,-0.165598511695862,-0.332722127437592,-0.92837131023407,-0.427991598844528,-0.314080744981766,-0.847452938556671,-0.402999550104141,-0.328629672527313,-0.854162693023682,-0.257366567850113,-0.303722202777863,-0.917341411113739,-0.266877859830856,-0.277137964963913,-0.92302268743515,-0.0558653697371483,-0.277251273393631,-0.959172010421753,-0.170685052871704,-0.314262330532074,-0.933866143226624,-0.11536867916584,-0.28737872838974,-0.950843691825867,0.00443391920998693,-0.248075589537621,-0.968730628490448,-0.0924918726086617,-0.210377499461174,-0.973235189914703,-0.0930877402424812,-0.282100945711136,-0.954858064651489,-0.107997886836529,-0.352885156869888,-0.929413080215454,-0.121464371681213,-0.281627744436264,-0.95180469751358,0.101663768291473,-0.274876147508621,-0.956089854240417,0.134068369865417,-0.223733335733414,-0.965385556221008,0.105249971151352,-0.187630712985992,-0.976584434509277,0.0621534436941147,-0.241706192493439,-0.968356907367706,-0.164742276072502,-0.335793435573578,-0.92741733789444,-0.17430354654789,-0.346405833959579,-0.921748995780945,-0.117847554385662,-0.330076038837433,-0.936569213867188,-0.111795678734779,-0.319922029972076,-0.940825045108795,0.0590667054057121,-0.122340977191925,-0.990728974342346,0.000526417046785355,-0.172731325030327,-0.984968900680542,-0.0780521035194397,-0.16521055996418,-0.983164966106415,-0.0135924303904176,-0.113575629889965,-0.993436396121979,0.0807657912373543,-0.318526357412338,-0.944466948509216,0.0243645831942558,-0.36480987071991,-0.930763185024261,0.0581279620528221,-0.325308084487915,-0.943819761276245,0.10419037938118,-0.283999890089035,-0.953146696090698,0.0781945437192917,-0.0414481647312641,-0.996076166629791,0.093268595635891,-0.0397155024111271,-0.994848549365997,0.174810960888863,-0.0258265025913715,-0.984263241291046,0.158091112971306,-0.0279381815344095,-0.987029254436493,0.153313383460045,0.0213313437998295,-0.987947344779968, +0.168210476636887,0.0241737682372332,-0.985454738140106,0.282094329595566,0.027478376403451,-0.958993077278137,0.279437750577927,0.0252854451537132,-0.959830820560455,0.162505373358727,0.0649418756365776,-0.984568297863007,0.137269735336304,0.066239595413208,-0.988316476345062,0.258398830890656,0.0705467611551285,-0.963459074497223,0.286176919937134,0.0691925510764122,-0.95567524433136,0.0734699219465256,0.044968631118536,-0.996283054351807,0.0315728411078453,0.0602338835597038,-0.997684895992279,0.136947765946388,0.0558843873441219,-0.989000618457794,0.166181549429893,0.0389121398329735,-0.985327184200287,-0.00474223541095853,-0.125599607825279,-0.992069721221924,0.0585327856242657,-0.141616389155388,-0.988189697265625,0.114316530525684,-0.120979636907578,-0.986050605773926,0.0442259386181831,-0.105554968118668,-0.993429601192474,0.0468558967113495,-0.0473342277109623,-0.997779548168182,0.111736290156841,-0.0478185974061489,-0.99258679151535,0.249962121248245,-0.0514098666608334,-0.966889917850494,0.231805101037025,-0.0521060563623905,-0.971365749835968,0.110013976693153,-0.00642062071710825,-0.993909358978271,0.155616089701653,-0.00192513014189899,-0.987815797328949,0.276586204767227,-0.00340181961655617,-0.960983157157898,0.255378156900406,-0.00718439556658268,-0.966814577579498,0.0525492765009403,-0.0907666832208633,-0.994484782218933,0.0894221216440201,-0.101074427366257,-0.990851998329163,0.162535056471825,-0.0777690783143044,-0.983633279800415,0.112558409571648,-0.0693780854344368,-0.991220116615295,-0.00400067586451769,-0.153461262583733,-0.988146603107452,0.0447859577834606,-0.0934628769755363,-0.994615018367767,-0.015536792576313,-0.152583912014961,-0.988168478012085,-0.0663658007979393,-0.212567612528801,-0.974890112876892,-0.0646061673760414,-0.163481801748276,-0.984428644180298,-0.0113558154553175,-0.116479724645615,-0.99312824010849,-0.0373917110264301,-0.167040333151817,-0.985240817070007,-0.0926104187965393,-0.214107513427734,-0.972410142421722,-0.0102023910731077,-0.106515154242516,-0.994258761405945, +0.213041260838509,-0.117702916264534,-0.969927549362183,0.223809450864792,-0.139950945973396,-0.964532554149628,-0.0322610959410667,-0.124366253614426,-0.991711795330048,0.0451717190444469,-0.0850409641861916,-0.995353043079376,0.229747205972672,-0.0651353076100349,-0.971068382263184,0.215661570429802,-0.103474378585815,-0.970970273017883,-0.0115455323830247,-0.118118532001972,-0.992932438850403,-0.0915650576353073,-0.182459190487862,-0.978940546512604,-0.0326051563024521,-0.127219557762146,-0.991338551044464,-0.0401787497103214,-0.187052518129349,-0.981527924537659,-0.093487337231636,-0.243166834115982,-0.96546882390976,-0.0938049554824829,-0.182381421327591,-0.978742897510529,-0.0386829040944576,-0.166775688529015,-0.985235750675201,0.139102503657341,-0.18844947218895,-0.972181797027588,0.021594800055027,-0.203064054250717,-0.978927373886108,-0.0364733636379242,-0.137097880244255,-0.989885807037354,0.250820994377136,-0.123251065611839,-0.960155189037323,0.318370848894119,-0.152743384242058,-0.935579776763916,0.137615337967873,-0.176112413406372,-0.974703311920166,-0.0301410481333733,-0.106811240315437,-0.993822336196899,0.227563843131065,-0.115696720778942,-0.966865539550781,0.2499178647995,-0.13661427795887,-0.958581030368805,-0.0358864180743694,-0.129267379641533,-0.990960299968719,-0.211565300822258,0.0808421894907951,-0.974014699459076,-0.396892547607422,0.0483323484659195,-0.916591763496399,-0.777780652046204,-0.0298789888620377,-0.627825319766998,-0.718176603317261,0.00326603697612882,-0.695853292942047,-0.0298225004225969,0.0160651374608278,-0.999426126480103,-0.106752902269363,-0.0174689088016748,-0.994132101535797,-0.632822036743164,0.054087907075882,-0.772405922412872,-0.523532152175903,0.093638077378273,-0.846844792366028,-0.208989858627319,0.0708537399768829,-0.975347697734833,-0.705051124095917,0.0168221462517977,-0.708956956863403,-0.696444094181061,-0.00269065797328949,-0.717606067657471,-0.115960113704205,0.0328648090362549,-0.992709994316101,0.13864654302597,0.117439582943916,-0.983353972434998, +0.0216682162135839,0.158227667212486,-0.987164914608002,-0.169105693697929,0.213127791881561,-0.962278485298157,0.0776839926838875,0.144203901290894,-0.986494123935699,-0.0397202596068382,0.0970566421747208,-0.994486033916473,-0.501598536968231,0.108675464987755,-0.858247399330139,-0.328126043081284,0.131514087319374,-0.935434401035309,0.0256592258810997,0.119181133806705,-0.992541015148163,0.287841379642487,0.0878353342413902,-0.953641653060913,0.263554841279984,0.102559193968773,-0.959177017211914,0.40460878610611,0.0437063947319984,-0.913444876670837,0.636487364768982,-0.057000920176506,-0.769177973270416,0.139489218592644,0.158488094806671,-0.977458119392395,0.115126103162766,0.159107074141502,-0.98052591085434,0.416807115077972,0.0491222888231277,-0.907666683197021,0.265457779169083,0.114809319376945,-0.957262337207794,0.259592711925507,0.0305073857307434,-0.965236246585846,0.28045254945755,0.0360961630940437,-0.959188938140869,0.793312251567841,-0.125023886561394,-0.595839560031891,0.87539279460907,-0.163440719246864,-0.454944670200348,0.28617787361145,0.0692026391625404,-0.955674290657043,0.645151674747467,-0.0508775115013123,-0.762358725070953,0.800960779190063,-0.115551054477692,-0.587460517883301,0.282732486724854,0.0617879033088684,-0.957206666469574,0.216951742768288,-0.0963682904839516,-0.971414029598236,0.229010567069054,-0.0697359964251518,-0.970922887325287,0.936542212963104,-0.202474221587181,-0.286169558763504,0.962233185768127,-0.236316099762917,-0.135137692093849,0.255498349666595,-0.00615339819341898,-0.966789901256561,0.867096662521362,-0.179022178053856,-0.464859783649445,0.934614062309265,-0.20840972661972,-0.288204938173294,0.238098829984665,-0.0104906158521771,-0.971184253692627,0.251254767179489,-0.116572171449661,-0.960875689983368,0.228294879198074,-0.110858991742134,-0.967259883880615,0.994863152503967,-0.0945545136928558,-0.0361508540809155,0.993691921234131,-0.0930787697434425,0.0625514090061188,0.213620960712433,-0.114577949047089,-0.970174193382263,0.970066964626312,-0.203337863087654,-0.132754698395729, +0.976748645305634,-0.21379753947258,-0.0159023404121399,0.2254498898983,-0.129471451044083,-0.965613484382629,0.137669071555138,-0.176555499434471,-0.974615514278412,0.318852514028549,-0.160839676856995,-0.934057712554932,0.973055601119995,0.210942283272743,-0.0930924043059349,0.968067824840546,0.206407442688942,-0.142269864678383,0.251111447811127,-0.118798941373825,-0.960640370845795,0.996487975120544,0.0801660269498825,-0.0241910628974438,0.996556103229523,0.0803233161568642,0.0205966904759407,0.315878838300705,-0.115406326949596,-0.941754698753357,-0.013560613617301,-0.182759582996368,-0.983064115047455,0.0107972854748368,-0.141645595431328,-0.989858567714691,0.832732558250427,0.31816953420639,-0.453127861022949,0.826891005039215,0.29217603802681,-0.480504244565964,0.135925233364105,-0.162275791168213,-0.97733873128891,0.906695485115051,0.31232824921608,-0.283468574285507,0.851733982563019,0.304086536169052,-0.426709234714508,0.0169842969626188,-0.176877945661545,-0.984086275100708,-0.257619559764862,-0.104816049337387,-0.960544586181641,-0.141545951366425,-0.0735273733735085,-0.98719733953476,0.539716064929962,0.374455064535141,-0.753982722759247,0.459612339735031,0.367132246494293,-0.808684408664703,-0.0230781566351652,-0.147761777043343,-0.988753736019135,0.722980558872223,0.344219624996185,-0.599009156227112,0.70805025100708,0.326794654130936,-0.625995397567749,-0.0914963036775589,-0.19501405954361,-0.976523458957672,-0.663251638412476,-0.416612356901169,-0.621716558933258,-0.470787584781647,-0.142502173781395,-0.870661914348602,-0.232637986540794,0.309396207332611,-0.922037720680237,-0.48629155755043,0.103614933788776,-0.867631614208221,-0.283305615186691,-0.0556136220693588,-0.957415878772736,0.309190630912781,0.383526563644409,-0.870234787464142,0.173196002840996,0.342394381761551,-0.923455059528351,-0.454659938812256,-0.165302067995071,-0.875191211700439,-0.0668458715081215,0.992530882358551,0.102049969136715,-0.0486465878784657,0.985215127468109,0.16427019238472,-0.0557272955775261,0.989113092422485,0.136197671294212, +-0.0713036954402924,0.994255602359772,0.0798221230506897,-0.0558577142655849,0.9955153465271,0.076348751783371,-0.0460324063897133,0.989929974079132,0.13386482000351,-0.0487559624016285,0.991763174533844,0.118443317711353,-0.0559123270213604,0.995459020137787,0.0770405381917953,-0.0458794757723808,0.989942014217377,0.133827909827232,-0.0291152410209179,0.97162139415741,0.234742775559425,-0.0316111221909523,0.975313544273376,0.218550264835358,-0.0489368103444576,0.991753041744232,0.118453800678253,-0.0521441996097565,0.984804689884186,0.165652632713318,-0.0220338720828295,0.964731872081757,0.262311190366745,-0.0282855108380318,0.97169417142868,0.234542965888977,-0.0578109845519066,0.988924503326416,0.136697456240654,-0.0312020406126976,0.975330591201782,0.218532845377922,-0.0291279852390289,0.971620261669159,0.234745815396309,-0.0125169083476067,0.941140174865723,0.337784856557846,-0.015155210159719,0.944912254810333,0.326972901821136,-0.0158719662576914,0.944893062114716,0.326994091272354,-0.0134914815425873,0.941054403781891,0.337986022233963,-0.00507273199036717,0.911372303962708,0.411551952362061,-0.00889764167368412,0.91630083322525,0.400391787290573,-0.0120797455310822,0.941178321838379,0.337694525718689,-0.00346552580595016,0.936161458492279,0.351553559303284,0.0145049747079611,0.904406130313873,0.426425933837891,0.00344929518178105,0.911983668804169,0.410212218761444,-0.0355955511331558,0.971028566360474,0.236297607421875,-0.0220170989632607,0.964733958244324,0.262304544448853,0.00268235057592392,0.93693470954895,0.349494308233261,-0.00849076360464096,0.941484212875366,0.336950182914734,-0.0250164400786161,0.975568830966949,0.218264922499657,-0.0301711931824684,0.944410026073456,0.327382773160934,-0.0275928694754839,0.947742283344269,0.317841351032257,-0.0230682045221329,0.975169241428375,0.220256388187408,-0.0171800237149,0.975111424922943,0.221049055457115,-0.0334272943437099,0.947812259197235,0.317071676254272,-0.0357816740870476,0.950287282466888,0.309311807155609,-0.0234677568078041,0.971960246562958,0.233971506357193, +-0.0298881605267525,0.94777375459671,0.317539900541306,-0.0409579053521156,0.919224321842194,0.391598343849182,-0.0434127897024155,0.922491550445557,0.383568495512009,-0.0321093946695328,0.950134754180908,0.310182303190231,-0.02578379586339,0.94457882642746,0.32727062702179,-0.0283562280237675,0.915820896625519,0.400584816932678,-0.030292846262455,0.919076263904572,0.392913699150085,-0.0276433881372213,0.947743058204651,0.317834764719009,-0.0273808091878891,0.975482225418091,0.218368321657181,-0.0253778323531151,0.97518253326416,0.219943299889565,-0.0227774195373058,0.991130650043488,0.130924880504608,-0.0248329937458038,0.992818534374237,0.117024533450603,-0.0298961848020554,0.992642879486084,0.117330364882946,-0.0265349689871073,0.991097927093506,0.130463838577271,-0.0292078591883183,0.99500846862793,0.0954208970069885,-0.0328310690820217,0.996608555316925,0.0754563733935356,-0.0149797834455967,0.991153180599213,0.131875514984131,-0.0177776534110308,0.98607462644577,0.165351212024689,-0.0144613217562437,0.991498351097107,0.129313439130783,-0.0119459396228194,0.995185673236847,0.0972770750522614,-0.0239704493433237,0.975175082683563,0.220134228467941,-0.0233914274722338,0.971957564353943,0.233990281820297,-0.0128173846751451,0.98594856262207,0.166556879878044,-0.00896492134779692,0.99112868309021,0.132603153586388,-0.0288537554442883,0.87902706861496,0.47589784860611,-0.0107663869857788,0.903382897377014,0.428699672222137,-0.0880699008703232,0.969105958938599,0.230385333299637,-0.197304606437683,0.976284503936768,0.0891047939658165,-0.0562398992478848,0.892175912857056,-0.448173373937607,-0.077482134103775,0.891836285591125,-0.445673316717148,-0.0437201522290707,0.915950059890747,0.398903578519821,-0.00976763293147087,0.910285294055939,0.413866341114044,-0.271022289991379,0.962205648422241,0.0265967659652233,-0.137338325381279,0.990440607070923,-0.0128709562122822,-0.0341461971402168,0.993933200836182,0.104550965130329,-0.109148569405079,0.980885088443756,0.161093816161156,-0.836102426052094,0.444183081388474,-0.32192274928093, +-0.836375832557678,0.329202175140381,-0.438293814659119,-0.821919858455658,0.47931295633316,-0.307744950056076,-0.797022879123688,0.573497951030731,-0.189353927969933,-0.71737939119339,-0.691135466098785,-0.0877424255013466,-0.645519554615021,-0.749019503593445,-0.149245858192444,-0.726180553436279,-0.68291050195694,-0.0793422535061836,-0.809605479240417,-0.586934149265289,0.00689414236694574,-0.532829105854034,0.845863938331604,0.0246467739343643,-0.478658020496368,0.87577098608017,0.0625440031290054,-0.355850785970688,0.924290478229523,0.138048723340034,-0.439433097839355,0.894285559654236,0.0845687985420227,-0.0752213001251221,0.991598308086395,0.105236381292343,-0.0863212570548058,0.993297517299652,0.0768679529428482,-0.0732451379299164,0.991317927837372,0.109197214245796,-0.0546183474361897,0.987148344516754,0.15018305182457,0.00195958465337753,0.96980881690979,0.243858799338341,-0.066155880689621,0.985472917556763,0.15641824901104,-0.0975669473409653,0.987723469734192,0.121996358036995,0.00964170694351196,0.962433338165283,0.271346747875214,-0.0152622014284134,0.974433600902557,0.224157065153122,0.0129509437829256,0.963013291358948,0.269142657518387,-0.0756882354617119,0.990991592407227,0.110485330224037,-0.0889890864491463,0.992987990379333,0.0778184980154037,-0.0768704190850258,0.991405069828033,0.105863034725189,-0.0576534233987331,0.986724495887756,0.151825338602066,-0.0383729785680771,0.97972959280014,0.196615159511566,-0.0508497729897499,0.984958231449127,0.165141239762306,-0.0528662763535976,0.984718143939972,0.165937766432762,-0.042331300675869,0.979138135910034,0.198737591505051,-0.0224734898656607,0.969441592693329,0.244290858507156,-0.0106895780190825,0.966138422489166,0.257802814245224,-0.0420894101262093,0.979174852371216,0.198607981204987,-0.0134832635521889,0.967687845230103,0.251790523529053,-0.00338228093460202,0.961197674274445,0.275840193033218,-0.0192439630627632,0.969936370849609,0.242596641182899,-0.0638009905815125,0.985828995704651,0.155147314071655,-0.00570830702781677,0.968429207801819,0.249223351478577, +-0.00819811876863241,0.968657374382019,0.248265415430069,-0.0393130928277969,0.979590892791748,0.197119578719139,-0.041210051625967,0.97709321975708,0.20878392457962,-0.0430287197232246,0.981159389019012,0.188347727060318,-0.0614762008190155,0.996087670326233,0.0634835064411163,-0.0587953813374043,0.994690656661987,0.0844617113471031,-0.0554880201816559,0.994898319244385,0.0842516049742699,-0.0585010424256325,0.996307134628296,0.0628476738929749,-0.0559304878115654,0.99550998210907,0.0763651505112648,-0.0562128983438015,0.995440542697906,0.0770609080791473,-0.0726930946111679,0.995176434516907,0.0658764839172363,-0.0721715167164803,0.994803071022034,0.0718201771378517,-0.0642725005745888,0.992801070213318,0.101069673895836,-0.0698833465576172,0.99438202381134,0.0795034021139145,-0.0424913167953491,0.981206893920898,0.188222512602806,-0.0290387012064457,0.972740590572357,0.230070650577545,-0.0756420865654945,0.994454979896545,0.0730592459440231,-0.0784569755196571,0.994656562805176,0.0671035349369049,-0.00662437081336975,0.884121000766754,0.467211157083511,-0.0654047206044197,0.876924932003021,0.476156562566757,-0.0398466102778912,0.916218280792236,0.398693382740021,0.0284833796322346,0.911481857299805,0.410353094339371,0.0375731140375137,0.913106322288513,0.405986726284027,0.00652866158634424,0.924879908561707,0.380203485488892,-0.000364393024938181,0.941778421401978,0.33623418211937,0.0325814075767994,0.929992973804474,0.366130620241165,0.0212286431342363,0.927130341529846,0.374137371778488,-0.00601524859666824,0.935828983783722,0.35240313410759,-0.0313904695212841,0.963461637496948,0.266000777482986,0.0148103684186935,0.944144129753113,0.329199850559235,0.0267425365746021,0.894487738609314,0.446292251348495,0.0092694079503417,0.90379387140274,0.427867591381073,-0.012006001546979,0.935020983219147,0.354389369487762,0.00689705554395914,0.924939215183258,0.38005268573761,-0.0223377346992493,0.964692115783691,0.262431412935257,-0.02610994130373,0.968868613243103,0.246194779872894,0.0104129537940025,0.955059885978699,0.296230018138885, +0.019962752237916,0.944886326789856,0.326789647340775,0.0327523201704025,0.930023610591888,0.366037517786026,0.00850868318229914,0.943194329738617,0.332132667303085,-0.00311496062204242,0.952935099601746,0.303158432245255,0.0148185044527054,0.945093393325806,0.326464176177979,-0.00812375545501709,0.960298776626587,0.278855562210083,0.0161296278238297,0.945346236228943,0.325669288635254,0.0040518562309444,0.954088687896729,0.299496740102768,-0.0248778089880943,0.969064593315125,0.245550125837326,-0.0446158871054649,0.969870924949646,0.239499419927597,-0.0461208745837212,0.969451069831848,0.240909993648529,-0.020625676959753,0.993159055709839,0.114934168756008,-0.021536385640502,0.99142861366272,0.128862574696541,-0.0225252248346806,0.991436362266541,0.128633797168732,-0.0224538240581751,0.993142008781433,0.114737950265408,-0.0162027236074209,0.995169937610626,0.0968221202492714,-0.0197675563395023,0.991570174694061,0.128054514527321,-0.0367121323943138,0.992894411087036,0.113194063305855,-0.0382711887359619,0.995802402496338,0.0831435397267342,-0.0357958786189556,0.996490836143494,0.0756620615720749,-0.0339712798595428,0.994906723499298,0.0949034541845322,-0.042880941182375,0.969500601291656,0.241308435797691,-0.0436956286430359,0.976954996585846,0.208925127983093,-0.0378791652619839,0.995819628238678,0.0831180363893509,-0.0376620814204216,0.992870688438416,0.113090358674526,0.00861921068280935,0.903715968132019,0.428045779466629,0.0179232452064753,0.893180310726166,0.449341595172882,0.0339681282639503,0.866011440753937,0.498869210481644,0.0235010385513306,0.878349423408508,0.477441132068634,0.026919350028038,0.878652274608612,0.476702868938446,0.032757043838501,0.865858256816864,0.49921590089798,0.0267539545893669,0.878992855548859,0.476083815097809,0.020046291872859,0.896329581737518,0.442935168743134,0.0532317906618118,0.868260443210602,0.493244677782059,0.0472688004374504,0.873996734619141,0.483627319335938,0.046996995806694,0.878370225429535,0.475664973258972,0.0479327291250229,0.881021618843079,0.470641702413559, +-0.0107912421226501,0.888375997543335,0.45898973941803,-0.0444887764751911,0.875128209590912,0.481841802597046,0.00545498728752136,0.866760015487671,0.49869579076767,0.046222947537899,0.867482841014862,0.495315074920654,-0.0101453699171543,0.916280508041382,0.400408715009689,-0.00763088557869196,0.911175429821014,0.41194811463356,-0.00548390252515674,0.8912553191185,0.453468710184097,-0.0087963305413723,0.897940456867218,0.440028995275497,-0.00970474258065224,0.897933661937714,0.440023869276047,-0.00785888731479645,0.891108155250549,0.453722953796387,-0.0110677918419242,0.910224080085754,0.413968086242676,-0.0121778612956405,0.916468560695648,0.399921625852585,0.00773637369275093,0.891981184482574,0.452006340026855,0.013915965333581,0.87744277715683,0.479479610919952,0.00657747685909271,0.895380258560181,0.445253908634186,0.00141573324799538,0.910747230052948,0.412961810827255,0.0013425387442112,0.911838829517365,0.410546272993088,0.00810298230499029,0.903653740882874,0.428187042474747,0.0177477151155472,0.877815365791321,0.47867026925087,0.00791800394654274,0.891990065574646,0.451985657215118,-0.0390836074948311,0.922287225723267,0.384524017572403,-0.0384001024067402,0.919198453426361,0.391918003559113,-0.0445474348962307,0.899244546890259,0.435172319412231,-0.0467273071408272,0.899242341518402,0.434948265552521,-0.0453652925789356,0.899176418781281,0.43522834777832,-0.044824730604887,0.899247288703918,0.435138136148453,-0.0372055545449257,0.9173224568367,0.39640286564827,-0.0376703850924969,0.917388260364532,0.396206796169281,-0.0295751169323921,0.898991167545319,0.43696716427803,-0.0300911478698254,0.897585213184357,0.439812809228897,-0.0269718877971172,0.916339099407196,0.399493843317032,-0.0267364513128996,0.917078375816345,0.397809386253357,-0.0276384353637695,0.919022917747498,0.393233925104141,-0.0271745715290308,0.915859937667847,0.400577396154404,-0.0292222276329994,0.897607743740082,0.439825534820557,-0.0297759044915438,0.898995935916901,0.436943739652634,-0.0449836626648903,0.922561228275299,0.38321989774704, +-0.0569503866136074,0.899680733680725,0.432817965745926,-0.057224053889513,0.903145730495453,0.425503373146057,-0.0436777472496033,0.927783012390137,0.370554894208908,-0.0472321957349777,0.928021311759949,0.369520843029022,-0.0642904788255692,0.903590679168701,0.423545151948929,-0.0508698895573616,0.923640966415405,0.379868030548096,-0.039635743945837,0.939065873622894,0.3414446413517,-0.0674502179026604,0.90377402305603,0.422661870718002,-0.056201659142971,0.919291496276855,0.389544159173965,-0.0485059916973114,0.928555250167847,0.368011355400085,-0.0521759018301964,0.923770368099213,0.379375696182251,-0.0562388636171818,0.899653434753418,0.432967841625214,-0.0445153340697289,0.917743265628815,0.394671589136124,-0.045277189463377,0.91847825050354,0.392870903015137,-0.0556241683661938,0.903038322925568,0.425943464040756,-0.0157443154603243,0.971658825874329,0.235863015055656,-0.03291404992342,0.950169265270233,0.309991925954819,-0.0358761213719845,0.95212996006012,0.303580939769745,-0.0236167497932911,0.968812823295593,0.246665522456169,-0.0180604346096516,0.96849137544632,0.248391464352608,-0.0330203138291836,0.951955914497375,0.304449856281281,-0.0351663492619991,0.954657196998596,0.295623272657394,-0.0272906310856342,0.965289890766144,0.259751588106155,-0.0299014337360859,0.951756060123444,0.305395603179932,-0.0491990521550179,0.928147673606873,0.368946343660355,-0.0424188561737537,0.939332246780396,0.340375810861588,-0.0304500609636307,0.954237103462219,0.297496795654297,-0.0296643972396851,0.950025677680969,0.310759335756302,-0.0476483516395092,0.92267382144928,0.38262614607811,-0.0471464768052101,0.92801570892334,0.369545817375183,-0.0313287191092968,0.951848745346069,0.304963201284409,-0.0242819376289845,0.971988379955292,0.233771204948425,-0.0234394446015358,0.968803107738495,0.246720746159554,-0.0131006054580212,0.980535984039307,0.195902124047279,-0.00910635013133287,0.985837578773499,0.167456030845642,-0.0141937378793955,0.985986113548279,0.166222780942917,-0.0190643928945065,0.980804145336151,0.194061532616615, +-0.0115286149084568,0.987521171569824,0.157064080238342,-0.00713519286364317,0.991350710391998,0.131045088171959,-0.0173613801598549,0.98073148727417,0.194587931036949,-0.0264615789055824,0.973293244838715,0.228035360574722,-0.0223092492669821,0.97767961025238,0.208914071321487,-0.00750826299190521,0.987367212772369,0.158270746469498,-0.0269457586109638,0.968989849090576,0.245627358555794,-0.0271070450544357,0.965274810791016,0.25982654094696,-0.0213716290891171,0.972931563854218,0.230103299021721,-0.0140324700623751,0.98058032989502,0.195615023374557,-0.0103634307160974,0.991422712802887,0.1302829682827,-0.0157194267958403,0.98766303062439,0.155803203582764,-0.0128040481358767,0.990211009979248,0.13898991048336,-0.0124504901468754,0.991309762001038,0.13095834851265,-0.00925736501812935,0.991247475147247,0.131692126393318,-0.0102377384901047,0.9901362657547,0.139733508229256,-0.0359291173517704,0.972207069396973,0.231349468231201,-0.0391534268856049,0.969772338867188,0.240849778056145,0.00794304441660643,0.9894038438797,0.144972234964371,-0.0145311951637268,0.977941989898682,0.208370864391327,-0.0288647413253784,0.965832829475403,0.257553696632385,-0.0200511571019888,0.971451163291931,0.236390873789787,-0.00698168948292732,0.987345814704895,0.158428594470024,-0.0233806408941746,0.977745592594147,0.208487287163734,-0.0223877504467964,0.978439211845398,0.205318331718445,-0.00192241370677948,0.989845335483551,0.142135888338089,-0.827654421329498,0.452274143695831,-0.332319468259811,-0.790135324001312,0.581337451934814,-0.194249868392944,-0.730006039142609,0.676250874996185,-0.0988733917474747,-0.784078478813171,0.576839745044708,-0.229078382253647,-0.887735486030579,-0.449770927429199,0.0981420576572418,-0.829904139041901,-0.557880878448486,-0.00529059767723083,-0.898513674736023,-0.419849008321762,0.128062590956688,-0.928560733795166,-0.296493709087372,0.223307996988297,-0.0958091765642166,0.902173817157745,-0.420598536729813,-0.0941362679004669,0.891587793827057,-0.442955493927002,0.0185883231461048,0.911233127117157,0.411471486091614, +0.0239344164729118,0.896572411060333,0.442250221967697,-0.0431547313928604,0.917415618896484,0.395583659410477,-0.0205702632665634,0.916419744491577,0.399689674377441,0.084841676056385,0.896917819976807,-0.433982044458389,0.0646122619509697,0.909154653549194,-0.411416053771973,-0.0696337074041367,0.918658792972565,0.388866662979126,-0.0704764723777771,0.917417705059052,0.391634851694107,0.111468322575092,0.911016285419464,-0.397019326686859,0.110432364046574,0.911325216293335,-0.396599382162094,-0.0914015173912048,0.921093285083771,0.378461271524429,-0.093167707324028,0.918961763381958,0.383182674646378,0.169199571013451,0.915727853775024,-0.364436656236649,0.175448030233383,0.906843900680542,-0.383212894201279,-0.819503664970398,-0.573049306869507,0.00531727075576782,-0.881327152252197,-0.459337651729584,0.110776111483574,-0.814015746116638,-0.580836415290833,-0.00272785127162933,-0.740281224250793,-0.665337443351746,-0.096487894654274,-0.440888643264771,-0.873932659626007,-0.204594433307648,-0.388835877180099,-0.893335163593292,-0.225297331809998,-0.535079121589661,-0.828973650932312,-0.162766724824905,-0.593916356563568,-0.793201088905334,-0.13451923429966,-0.101788148283958,0.932479977607727,0.346583664417267,-0.116009712219238,0.9216068983078,0.370381712913513,0.2221649736166,0.91260302066803,-0.343217670917511,0.2274329662323,0.910482287406921,-0.345392793416977,-0.118050090968609,0.927947700023651,0.353521406650543,-0.126536726951599,0.933254361152649,0.336191594600677,0.246706515550613,0.914591670036316,-0.320402830839157,0.195834666490555,0.958061099052429,-0.209207877516747,-0.631797969341278,-0.764647960662842,-0.127061799168587,-0.710950195789337,-0.69962477684021,-0.0712391287088394,-0.598392724990845,-0.787210881710052,-0.149081259965897,-0.543470859527588,-0.819449186325073,-0.182051122188568,-0.0411117635667324,-0.96132755279541,-0.272322237491608,-0.0421290174126625,-0.961384832859039,-0.271964222192764,-0.210311979055405,-0.9446080327034,-0.251961678266525,-0.23515485227108,-0.939766049385071,-0.248076677322388, +-0.0793666243553162,0.942073047161102,0.325882375240326,-0.107031784951687,0.927572071552277,0.357986271381378,0.196199357509613,0.958137810230255,-0.208513244986534,0.120477400720119,0.991712152957916,-0.0446365065872669,-0.0532691292464733,0.956040024757385,0.288357257843018,-0.0737334117293358,0.94175112247467,0.328128695487976,0.119805015623569,0.991698324680328,-0.0467027649283409,0.0185017678886652,0.987922370433807,0.15384130179882,-0.385649979114532,-0.8968705534935,-0.216558277606964,-0.439951300621033,-0.87544184923172,-0.200111150741577,-0.235946640372276,-0.937774121761322,-0.254772573709488,-0.212286174297333,-0.942250430583954,-0.259034335613251,0.340699136257172,-0.904492020606995,-0.256550967693329,0.327277511358261,-0.908058404922485,-0.26137962937355,0.137478038668633,-0.951650559902191,-0.274701625108719,0.15159173309803,-0.950485050678253,-0.27128991484642,-0.0349606871604919,0.965882956981659,0.256608784198761,-0.0536893010139465,0.956067740917206,0.288187175989151,0.0182236190885305,0.988143920898438,0.152445197105408,-0.118390701711178,0.907740950584412,0.402480095624924,0.00031328946352005,0.971060812473297,0.238832265138626,-0.0242155455052853,0.965033411979675,0.261006325483322,-0.118288412690163,0.907475471496582,0.403108149766922,-0.258126467466354,0.71402108669281,0.650803029537201,-0.041926983743906,-0.961677670478821,-0.2709581553936,-0.0409342907369137,-0.962141156196594,-0.269460499286652,0.151540964841843,-0.949896216392517,-0.27337259054184,0.137457937002182,-0.951611042022705,-0.27484866976738,0.514355838298798,-0.828881204128265,-0.219986513257027,0.52030611038208,-0.824618816375732,-0.222003325819969,0.683998644351959,-0.706569015979767,-0.181400299072266,0.686212062835693,-0.705118775367737,-0.178663179278374,0.0380356200039387,0.971857011318207,0.232480615377426,0.0145440101623535,0.969542980194092,0.244489341974258,-0.254045993089676,0.702615797519684,0.66467410326004,-0.348599880933762,0.461427867412567,0.815820097923279,0.0764976069331169,0.967099189758301,0.24262572824955, +0.0545233562588692,0.969547033309937,0.23875917494297,-0.342188954353333,0.449261873960495,0.825269937515259,-0.397465974092484,0.245915830135345,0.884051024913788,0.327925831079483,-0.909895479679108,-0.254076451063156,0.340696394443512,-0.904758155345917,-0.255614370107651,0.52039498090744,-0.823237597942352,-0.226867333054543,0.514095366001129,-0.827682912349701,-0.225048795342445,0.819816887378693,-0.557423174381256,-0.131071582436562,0.826901495456696,-0.547842741012573,-0.126895010471344,0.68628317117691,-0.705908477306366,-0.175239011645317,0.683923721313477,-0.707418501377106,-0.178346425294876,0.0767684951424599,0.951577186584473,0.297669976949692,0.082943968474865,0.965975344181061,0.244973570108414,-0.390961825847626,0.237817957997322,0.8891521692276,-0.42177626490593,0.0855570286512375,0.90265429019928,0.049164779484272,0.965005457401276,0.25757959485054,0.0371463000774384,0.958390891551971,0.283032029867172,-0.374149084091187,0.0468675345182419,0.926183581352234,-0.382798999547958,-0.0152584612369537,0.923705697059631,0.826895475387573,-0.548725724220276,-0.123060993850231,0.819780588150024,-0.55782812833786,-0.129567235708237,0.914671182632446,-0.396025419235229,-0.0808728784322739,0.916010975837708,-0.393599539995193,-0.077481247484684,0.971819341182709,-0.233136251568794,-0.0348510257899761,0.970631778240204,-0.238242477178574,-0.0333845876157284,0.916001677513123,-0.39419424533844,-0.0745114162564278,0.914642810821533,-0.396358966827393,-0.0795503258705139,0.0113311400637031,0.967411637306213,0.252955138683319,0.0143276881426573,0.968890368938446,0.247075349092484,-0.303443074226379,-0.0562523677945137,0.951187670230865,-0.30499279499054,-0.0808546841144562,0.948916256427765,-0.0174995362758636,0.969532012939453,0.24433907866478,-0.0153244808316231,0.968984007835388,0.246647819876671,-0.213816687464714,-0.107410565018654,0.970950841903687,-0.213035523891449,-0.11597453802824,0.970137000083923,0.970618844032288,-0.238550812005997,-0.0315067656338215,0.971797823905945,-0.233393952250481,-0.0337109826505184, +0.998299241065979,-0.0578644201159477,0.0071013355627656,0.997791290283203,-0.065984919667244,0.00765842851251364,0.994245886802673,0.0990279614925385,0.0408481694757938,0.994726300239563,0.0948571115732193,0.0390091612935066,0.997792661190033,-0.0659735575318336,0.00757289305329323,0.998239696025848,-0.058452807366848,0.0100453710183501,-0.0417942628264427,0.977061212062836,0.208817198872566,-0.0405259504914284,0.96953022480011,0.241596430540085,-0.0482095777988434,-0.129419654607773,0.990417301654816,-0.0537650100886822,-0.114313237369061,0.991988837718964,-0.068977065384388,0.978508293628693,0.194329172372818,-0.066898413002491,0.97537088394165,0.21018148958683,0.152648121118546,-0.0928531587123871,0.983909010887146,0.153958693146706,-0.0566955246031284,0.986449420452118,0.968704164028168,0.238474309444427,0.0688652992248535,0.969245493412018,0.236666902899742,0.0674687102437019,0.994645535945892,0.0945514887571335,0.0417184606194496,0.994182884693146,0.0985483974218369,0.04345927760005,0.844476938247681,0.518693506717682,0.133475616574287,0.851992189884186,0.508184134960175,0.125929936766624,0.92313426733017,0.371707886457443,0.0982667505741119,0.922655940055847,0.37194150686264,0.101810798048973,-0.0642430409789085,0.967403292655945,0.244956821203232,-0.0819463729858398,0.97691822052002,0.197270780801773,0.341691434383392,-0.00508474558591843,0.939798414707184,0.330360323190689,0.0427137613296509,0.942887902259827,-0.0134382992982864,0.957957744598389,0.286594331264496,-0.0584826990962029,0.968376278877258,0.242543280124664,0.519874513149261,0.130852580070496,0.844161212444305,0.529009282588959,0.227453410625458,0.81756603717804,0.969119846820831,0.23636394739151,0.0702776461839676,0.96862256526947,0.237975180149078,0.0716814026236534,0.922848463058472,0.373037427663803,0.0958840623497963,0.923370063304901,0.372232705354691,0.0939708650112152,0.516575574874878,0.82746297121048,0.220124214887619,0.513961553573608,0.829929769039154,0.21693342924118,0.707905292510986,0.680648863315582,0.188645750284195,0.695798575878143,0.691730737686157,0.193321108818054, +-0.0320583432912827,0.963027000427246,0.267490923404694,-0.0435816720128059,0.950975716114044,0.306179583072662,0.577243328094482,0.262348383665085,0.77328097820282,0.512337267398834,0.440018504858017,0.737491965293884,-0.0242408886551857,0.965590596199036,0.258934706449509,-0.0277669318020344,0.963976740837097,0.264533549547195,0.503299474716187,0.430068224668503,0.749487221240997,0.381458222866058,0.634545862674713,0.672191381454468,0.85134881734848,0.506529331207275,0.136504232883453,0.844070732593536,0.51638662815094,0.144532144069672,0.696027994155884,0.692900657653809,0.188238561153412,0.708954453468323,0.682710945606232,0.176888182759285,0.357914417982101,0.906769990921021,0.222857907414436,0.361304402351379,0.905332267284393,0.223232075572014,0.210787311196327,0.952673971652985,0.219045847654343,0.213499262928963,0.952161073684692,0.218649327754974,-0.014579564332962,0.959024786949158,0.282946974039078,-0.0253060795366764,0.965373992919922,0.259639859199524,0.372901052236557,0.621470093727112,0.688999116420746,0.257984817028046,0.757076144218445,0.600233018398285,0.01321642100811,0.944781541824341,0.327434360980988,-0.0231876913458109,0.957236289978027,0.288376867771149,0.257048904895782,0.755425095558167,0.602709591388702,0.147272810339928,0.866266548633575,0.477381467819214,0.513785779476166,0.829696118831635,0.218239739537239,0.516763091087341,0.828199505805969,0.216890215873718,0.361396431922913,0.905577182769775,0.222087204456329,0.357819020748138,0.90667200088501,0.223409026861191,0.0801857709884644,0.975557804107666,0.204590678215027,0.213615342974663,0.952258110046387,0.218112394213676,0.210812628269196,0.952720820903778,0.218817859888077,0.0613042861223221,0.977223932743073,0.203163295984268,0.0421964675188065,0.931660056114197,0.360872715711594,0.0152498632669449,0.945176839828491,0.326202750205994,0.14458866417408,0.861761868000031,0.486272305250168,0.0341375842690468,0.935308814048767,0.352181851863861,0.153092071413994,0.884396433830261,0.44091472029686,0.156462371349335,0.905271947383881,0.394971370697021, +-0.0894967392086983,0.991745471954346,-0.0918215736746788,-0.143955513834953,0.976978540420532,-0.157447904348373,-0.24024572968483,0.956688165664673,0.164407268166542,-0.296106606721878,0.950170695781708,0.0974510982632637,-0.433280467987061,0.898511290550232,0.0703242123126984,-0.361741125583649,0.920608758926392,0.147047191858292,-0.781139492988586,0.579263508319855,-0.232969716191292,-0.71552312374115,0.68980610370636,-0.110427886247635,-0.622501611709595,0.782615005970001,-0.00235280394554138,-0.675374805927277,0.732987701892853,-0.0812277719378471,0.149738907814026,0.886935949325562,0.436947256326675,0.154980033636093,0.884477257728577,0.440092116594315,-0.148997113108635,0.977247357368469,-0.150955617427826,-0.201635986566544,0.94436502456665,-0.259841471910477,0.109829351305962,0.884516835212708,0.453395396471024,0.110095679759979,0.884891986846924,0.452598124742508,-0.180923372507095,0.942637920379639,-0.280536293983459,-0.200324222445488,0.922351837158203,-0.330359548330307,-0.490048706531525,0.868182897567749,0.0781710743904114,-0.536683738231659,0.843174517154694,0.0320543088018894,-0.671481966972351,0.735861361026764,-0.0872928202152252,-0.607004225254059,0.794501185417175,-0.0177147705107927,-0.142938360571861,0.902871251106262,-0.405452966690063,0.0520241893827915,0.897910058498383,0.437094032764435,0.0604944638907909,0.882024824619293,0.467303514480591,-0.139106646180153,0.919865190982819,-0.366739064455032,0.0171216111630201,0.909318387508392,0.415748566389084,0.0226992517709732,0.928161263465881,0.371485382318497,0.0370846763253212,0.938571631908417,0.343086153268814,-0.0819287672638893,0.972932398319244,0.216079220175743,0.413276761770248,-0.3935227394104,-0.821183502674103,0.131591826677322,-0.405903220176697,-0.904392719268799,0.130828008055687,-0.389316827058792,-0.911765575408936,0.414086490869522,-0.376927375793457,-0.828527748584747,0.429381966590881,-0.602368950843811,-0.672891438007355,0.301865607500076,-0.508267164230347,-0.806561589241028,0.28028666973114,-0.501482605934143,-0.818507611751556, +0.405125468969345,-0.594864249229431,-0.694269418716431,-0.0430508069694042,-0.273830592632294,-0.96081405878067,0.0209671221673489,-0.266840517520905,-0.963512599468231,0.072305366396904,-0.26255664229393,-0.962203800678253,-0.000794045743532479,-0.271217823028564,-0.962517738342285,-0.0517687872052193,0.98796945810318,0.145727336406708,0.0845044776797295,0.978115737438202,0.190128147602081,0.0610998421907425,0.976955056190491,0.20451332628727,-0.107778638601303,0.982010424137115,0.155046537518501,-0.752184927463531,-0.542501747608185,-0.374044984579086,-0.799499094486237,-0.490108549594879,-0.347267746925354,-0.742172300815582,-0.459114223718643,-0.488256633281708,-0.689881563186646,-0.519179940223694,-0.504495561122894 + } + BinormalsW: *11977 { + 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 + } + + } + LayerElementTangent: 0 { + Version: 102 + Name: "DiffuseUV" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Tangents: *35931 { + a: 0.899776875972748,0.411352932453156,0.145569175481796,0.900684475898743,0.386942565441132,0.197592914104462,0.901887595653534,0.367286801338196,0.227374464273453,0.923804044723511,0.325713127851486,0.201238751411438,0.918098330497742,0.265323728322983,0.294446647167206,0.92130845785141,0.270263522863388,0.279550194740295,0.907764673233032,0.356712281703949,0.220725730061531,0.906738460063934,0.3178551197052,0.277116388082504,0.903645277023315,0.312337905168533,0.293036609888077,0.922974109649658,0.383638560771942,0.0306640882045031,0.921980559825897,0.38681173324585,0.0181252937763929,0.939193248748779,0.292288094758987,0.180232957005501,0.924198269844055,0.315157055854797,0.215716555714607,0.924305975437164,0.324685841798782,0.200593069195747,0.924262285232544,0.309708744287491,0.223203361034393,0.658442258834839,-0.689505875110626,-0.301720798015594,0.580638408660889,-0.72342449426651,-0.373518466949463,0.580642938613892,-0.724051058292389,-0.372295528650284,0.65831732749939,-0.690144956111908,-0.300529927015305,0.751501441001892,-0.659731090068817,0.000690488785039634,0.675873756408691,-0.73218035697937,-0.084300309419632,0.672637581825256,-0.735694587230682,-0.0794501900672913,0.748252630233765,-0.663391172885895,0.0055012097582221,0.779081702232361,-0.565964996814728,0.269657820463181,0.748584628105164,-0.587643086910248,0.307077586650848,0.672983288764954,-0.691241204738617,0.263209223747253,0.704837143421173,-0.672497808933258,0.225723966956139,0.759751796722412,-0.499207049608231,0.416617095470428,0.760759115219116,-0.498797595500946,0.415267050266266,0.730035603046417,-0.599203050136566,0.328639179468155,0.728890836238861,-0.599544167518616,0.330552607774734,0.817477762699127,-0.281291961669922,0.502598226070404,0.778468012809753,-0.31405958533287,0.543464839458466,0.737139046192169,-0.425932377576828,0.524602353572845,0.779554724693298,-0.398536115884781,0.483180642127991,0.86310225725174,0.493545114994049,0.107087507843971,0.872169256210327,0.415735870599747,0.257845908403397,0.863381087779999,0.474659621715546,0.171089380979538, +0.994839251041412,-0.101320862770081,0.0053795138373971,0.998640358448029,-0.0402410924434662,0.0331376194953918,0.996030569076538,-0.0835622251033783,-0.0306648556143045,0.987790286540985,-0.144487425684929,-0.0582560859620571,-0.827894449234009,-0.461936235427856,-0.318128436803818,-0.826868891716003,-0.432893335819244,-0.359014242887497,-0.893970310688019,-0.370757251977921,-0.251706421375275,-0.89179790019989,-0.399932265281677,-0.211543560028076,-0.674205243587494,-0.696277260780334,-0.246262893080711,-0.676587164402008,-0.685644567012787,-0.268554121255875,-0.750692665576935,-0.610687613487244,-0.252033978700638,-0.748120188713074,-0.622169256210327,-0.230698257684708,-0.49849259853363,-0.849042236804962,-0.175021305680275,-0.49873873591423,-0.847148358821869,-0.183301776647568,-0.58122181892395,-0.79875385761261,-0.155478253960609,-0.580039262771606,-0.801094174385071,-0.147656783461571,-0.36012601852417,-0.931167006492615,-0.056897334754467,-0.358205050230026,-0.928657412528992,-0.0963569357991219,-0.424139201641083,-0.895666837692261,-0.133741870522499,-0.4239741563797,-0.900606870651245,-0.0956730097532272,-0.263759881258011,-0.955311119556427,0.133459210395813,-0.256481200456619,-0.961891949176788,0.0947689339518547,-0.30708909034729,-0.950565874576569,0.0460526831448078,-0.310564696788788,-0.946844100952148,0.0838797986507416,-0.182985469698906,-0.919111847877502,0.348926603794098,-0.169276267290115,-0.930934965610504,0.323582410812378,-0.204121917486191,-0.939679205417633,0.274476289749146,-0.214628353714943,-0.929165899753571,0.300973862409592,-0.0532548129558563,-0.870020091533661,-0.490131825208664,-0.0489828214049339,-0.874145805835724,-0.483187198638916,0.0962137654423714,-0.845059752464294,-0.525943875312805,0.0924388468265533,-0.840971410274506,-0.533124923706055,0.916476249694824,0.340295493602753,0.210404962301254,0.916413247585297,0.319524049758911,0.241021454334259,0.914366364479065,0.313299477100372,0.256471484899521,0.888954222202301,0.288478761911392,0.355725228786469,0.898354947566986,0.373466372489929,0.23126021027565, +0.889117896556854,0.295549064874649,0.349456906318665,-0.158636152744293,-0.986612498760223,0.0378188490867615,-0.144017890095711,-0.98707526922226,0.0702945068478584,-0.0227703861892223,-0.999328136444092,-0.0287189651280642,-0.0377313755452633,-0.997400760650635,-0.0613848343491554,-0.327397972345352,-0.835540533065796,0.441228538751602,-0.293174117803574,-0.825051307678223,0.48305207490921,-0.17774423956871,-0.920547604560852,0.347849398851395,-0.206882908940315,-0.931323289871216,0.299727201461792,-0.39507383108139,-0.59394371509552,0.700819253921509,-0.339478880167007,-0.597476422786713,0.726482033729553,-0.376045644283295,-0.645712435245514,0.664563834667206,-0.426087617874146,-0.648503363132477,0.630787372589111,0.389057904481888,-0.851731419563293,-0.350980758666992,0.394665032625198,-0.856359541416168,-0.332998663187027,0.292423278093338,-0.896662294864655,-0.332393169403076,0.286105275154114,-0.892089247703552,-0.349743545055389,0.916413009166718,0.3404181599617,0.210482075810432,0.916373133659363,0.331253200769424,0.224792271852493,0.915939688682556,0.328043520450592,0.231175556778908,0.898283541202545,0.373589932918549,0.231337904930115,0.890590131282806,0.298465698957443,0.343172669410706,0.890587568283081,0.29822900891304,0.343385308980942,0.604047477245331,-0.731879949569702,-0.315402150154114,0.504023253917694,-0.802109122276306,-0.320283710956573,0.503100335597992,-0.802343785762787,-0.321145951747894,0.602437078952789,-0.732346653938293,-0.317392379045486,0.743248045444489,-0.604821562767029,-0.28596043586731,0.685793936252594,-0.669436097145081,-0.285555452108383,0.685744524002075,-0.677448451519012,-0.266116619110107,0.742990255355835,-0.613316833972931,-0.267970025539398,0.851233184337616,-0.465732991695404,-0.241857066750526,0.851862013339996,-0.453756153583527,-0.261604130268097,0.797372877597809,-0.535810112953186,-0.277676075696945,0.796785891056061,-0.547177374362946,-0.256377041339874,0.940175592899323,-0.303240746259689,-0.155290424823761,0.898342370986938,-0.400224685668945,-0.181111171841621, +0.895937502384186,-0.416497021913528,-0.15435753762722,0.93836522102356,-0.320454031229019,-0.129536509513855,0.992839753627777,-0.00774022191762924,-0.119203649461269,0.973983824253082,-0.165138512849808,-0.155192494392395,0.973583102226257,-0.204810380935669,-0.100938878953457,0.996543824672699,-0.0492221191525459,-0.066913977265358,-0.947345674037933,-0.190852284431458,-0.25712177157402,-0.941936850547791,-0.208908438682556,-0.262891858816147,-0.936673879623413,-0.24870653450489,-0.246550872921944,-0.944975435733795,-0.236036539077759,-0.226513177156448,0.928237557411194,0.370833694934845,0.0292813368141651,0.930698990821838,0.359541714191437,0.0672990381717682,0.940986454486847,0.288100779056549,0.177601888775826,0.898016452789307,0.374051839113235,0.231628358364105,0.891720294952393,0.298725754022598,0.339996784925461,0.891859591007233,0.315718024969101,0.323895961046219,0.912652194499969,0.256473958492279,0.318256258964539,0.921344459056854,0.330692917108536,0.204368814826012,0.912515819072723,0.252060532569885,0.322149932384491,0.910807371139526,0.351083874702454,0.217187136411667,0.910503506660461,0.3312126994133,0.247551053762436,0.91023862361908,0.333493202924728,0.245454967021942,0.936535537242889,0.298370510339737,0.184054970741272,0.936629712581635,0.292603403329849,0.192634508013725,0.936448097229004,0.294021159410477,0.191354498267174,0.9011110663414,0.368656188249588,0.228235527873039,0.900374710559845,0.349020063877106,0.259827673435211,0.900979816913605,0.343991369009018,0.264396101236343,0.919896841049194,0.333582788705826,0.206185311079025,0.919464766979218,0.312908411026001,0.238060757517815,0.919226109981537,0.315532952547073,0.235504388809204,0.928543090820313,0.313586562871933,0.198673710227013,0.928749978542328,0.302301466464996,0.214563116431236,0.928669333457947,0.315589338541031,0.194875866174698,0.943455755710602,0.275771915912628,0.183959379792213,0.944360733032227,0.267234951257706,0.191751107573509,0.944023072719574,0.280848652124405,0.17304527759552,0.598424792289734,-0.36212831735611,-0.714668452739716, +0.630273103713989,-0.373308598995209,-0.680732250213623,0.622483313083649,-0.340402245521545,-0.704727530479431,0.576739132404327,-0.323644638061523,-0.750083982944489,0.294353812932968,-0.564296960830688,-0.771313667297363,0.224009186029434,-0.53852778673172,-0.812285423278809,0.24205781519413,-0.570751905441284,-0.784633874893188,0.294211030006409,-0.588975191116333,-0.752693831920624,0.730433285236359,-0.231796205043793,-0.64244669675827,0.753933608531952,-0.243877485394478,-0.610006511211395,0.739080011844635,-0.211304917931557,-0.63961786031723,0.70288223028183,-0.193923234939575,-0.684361338615417,0.154460921883583,-0.544817864894867,-0.824205875396729,0.111047364771366,-0.526984572410583,-0.842588782310486,0.145783931016922,-0.551576018333435,-0.821286141872406,0.186016544699669,-0.572061121463776,-0.798839092254639,0.576102197170258,-0.324559658765793,-0.750178217887878,0.522866189479828,-0.317763477563858,-0.790972530841827,0.579778969287872,-0.32718414068222,-0.746195018291473,0.622139573097229,-0.32833406329155,-0.710731387138367,0.394584327936172,-0.452010691165924,-0.799993455410004,0.297244012355804,-0.463844180107117,-0.834562480449677,0.223442733287811,-0.489801824092865,-0.842714369297028,0.330223679542542,-0.480497777462006,-0.81244957447052,0.501355230808258,-0.262459218502045,-0.824474394321442,0.43203341960907,-0.259665280580521,-0.863667249679565,0.509650111198425,-0.267251312732697,-0.817822277545929,0.569998502731323,-0.26801335811615,-0.776705086231232,0.89434027671814,-0.0551217794418335,-0.443978756666183,0.876746118068695,-0.138252794742584,-0.460654377937317,0.877983510494232,-0.0364008359611034,-0.477304816246033,0.875445485115051,0.055364366620779,-0.480135321617126,0.661159873008728,-0.188964039087296,-0.726058006286621,0.714287281036377,-0.196087568998337,-0.671820938587189,0.750158667564392,-0.1930201202631,-0.632459700107574,0.705330312252045,-0.189237847924232,-0.683153092861176,0.747127830982208,0.00810500141233206,-0.664631068706512,0.687622845172882,-0.000813011080026627,-0.72606760263443, +0.743159294128418,0.0101257245987654,-0.669038057327271,0.793935477733612,0.0220201537013054,-0.607603132724762,0.677415609359741,-0.219743549823761,-0.702012002468109,0.596005022525787,-0.250065982341766,-0.763049781322479,0.532163619995117,-0.290707558393478,-0.79516726732254,0.625076353549957,-0.261766731739044,-0.735362350940704,-0.096320778131485,-0.680634319782257,-0.72626405954361,-0.125801995396614,-0.685791015625,-0.71684342622757,-0.121051698923111,-0.669427156448364,-0.732948780059814,-0.0555874034762383,-0.680489540100098,-0.730646312236786,0.0226451605558395,-0.663715660572052,-0.747642159461975,0.0631393864750862,-0.636221408843994,-0.768918514251709,0.0254503190517426,-0.569799780845642,-0.821389377117157,-0.0296662487089634,-0.59787517786026,-0.801040053367615,0.653783559799194,-0.177973732352257,-0.735453963279724,0.709624946117401,-0.141625106334686,-0.690199136734009,0.751916289329529,-0.101104430854321,-0.651459753513336,0.705489873886108,-0.139023050665855,-0.694950699806213,0.566924571990967,-0.158938989043236,-0.808291375637054,0.628965437412262,-0.122171424329281,-0.767773866653442,0.669597268104553,-0.0832561552524567,-0.738043308258057,0.609233856201172,-0.117836736142635,-0.784186542034149,-0.169844642281532,-0.787695467472076,-0.59218966960907,-0.206868439912796,-0.74253636598587,-0.637059807777405,-0.222622632980347,-0.768758177757263,-0.599541366100311,-0.173740893602371,-0.812186300754547,-0.556927025318146,0.145064935088158,-0.645608305931091,-0.749764084815979,0.0160700306296349,-0.643719613552094,-0.765092730522156,-0.00308238435536623,-0.673152148723602,-0.739497661590576,0.135870203375816,-0.667701482772827,-0.731924951076508,-0.166542664170265,-0.854190468788147,-0.492566913366318,-0.230451807379723,-0.852299630641937,-0.46955019235611,-0.202919363975525,-0.871389865875244,-0.446658343076706,-0.140243902802467,-0.8701052069664,-0.472491860389709,0.120681948959827,-0.749076008796692,-0.651399254798889,-0.0223606713116169,-0.757616579532623,-0.652316749095917,-0.00678269471973181,-0.783572316169739,-0.621263742446899, +0.140345901250839,-0.765447556972504,-0.628007233142853,-0.10251159965992,-0.925622820854187,-0.364299088716507,-0.162992790341377,-0.926140606403351,-0.340142637491226,-0.120653435587883,-0.93696928024292,-0.327919751405716,-0.0527515299618244,-0.933255314826965,-0.355319440364838,0.167247205972672,-0.825324237346649,-0.539322018623352,0.0201119985431433,-0.847781717777252,-0.529963731765747,0.0638672336935997,-0.860827624797821,-0.504873037338257,0.211281269788742,-0.826993823051453,-0.521000444889069,0.021045183762908,-0.965250372886658,-0.260477989912033,-0.053980678319931,-0.971302449703217,-0.231641262769699,0.00282424339093268,-0.97243195772171,-0.233169734477997,0.0846710875630379,-0.960236549377441,-0.266039043664932,0.0172408241778612,-0.981816291809082,-0.189048990607262,0.0808405950665474,-0.976884782314301,-0.197891250252724,0.162373468279839,-0.958504796028137,-0.234315097332001,0.096634529531002,-0.970159530639648,-0.222379192709923,0.267797917127609,-0.855091571807861,-0.443962454795837,0.124163739383221,-0.896679043769836,-0.424912005662918,0.183099493384361,-0.893149197101593,-0.410803258419037,0.323556005954742,-0.839970707893372,-0.435615301132202,0.181895330548286,-0.975036382675171,-0.127351477742195,0.244301930069923,-0.958396255970001,-0.147625848650932,0.322131842374802,-0.927001297473907,-0.192093268036842,0.258688718080521,-0.951110661029816,-0.16872663795948,0.393325686454773,-0.837391078472137,-0.379566967487335,0.260456711053848,-0.900172114372253,-0.349073946475983,0.323689371347427,-0.880163252353668,-0.347185611724854,0.450521767139435,-0.806881725788116,-0.382063031196594,0.351581990718842,-0.931286036968231,-0.095376156270504,0.413401663303375,-0.90139639377594,-0.128777474164963,0.480314016342163,-0.858606338500977,-0.17914704978466,0.421932071447372,-0.89495575428009,-0.145009487867355,0.520066976547241,-0.780538082122803,-0.346829444169998,0.405281960964203,-0.861946821212769,-0.304621368646622,0.465783447027206,-0.827148377895355,-0.314438104629517,0.571603238582611,-0.737954616546631,-0.358737826347351, +0.502538502216339,-0.856507480144501,-0.117686025798321,0.565923452377319,-0.812496781349182,-0.139927208423615,0.633405268192291,-0.755792856216431,-0.166056901216507,0.574834644794464,-0.80539482831955,-0.144583001732826,0.633735179901123,-0.694555878639221,-0.340546637773514,0.543255925178528,-0.788162469863892,-0.289262652397156,0.593744218349457,-0.743238389492035,-0.308325320482254,0.674704790115356,-0.644772231578827,-0.359224766492844,0.650062799453735,-0.748085856437683,-0.133363738656044,0.699096083641052,-0.695214033126831,-0.167159423232079,0.748049855232239,-0.63213711977005,-0.202049687504768,0.702944219112396,-0.691006243228912,-0.168463200330734,0.725580513477325,-0.590837478637695,-0.352766364812851,0.650920748710632,-0.692434251308441,-0.311186403036118,0.697019398212433,-0.637364864349365,-0.328526973724365,0.762298822402954,-0.532480835914612,-0.367919653654099,0.779973804950714,-0.605344474315643,-0.158741667866707,0.802613854408264,-0.556076884269714,-0.215845972299576,0.823882460594177,-0.494111716747284,-0.277617305517197,0.803711414337158,-0.553680419921875,-0.217912688851357,0.790654897689819,-0.469971388578415,-0.392417728900909,0.751366138458252,-0.570798575878143,-0.331116437911987,0.780029594898224,-0.504241526126862,-0.370532512664795,0.810020923614502,-0.401974678039551,-0.42694553732872,0.86189067363739,-0.454388678073883,-0.225112408399582,0.868590354919434,-0.402868002653122,-0.28852766752243,0.873144388198853,-0.339764088392258,-0.349541783332825,0.870871245861053,-0.396422266960144,-0.290573060512543,0.828062951564789,-0.33131355047226,-0.452264338731766,0.816106736660004,-0.422320038080215,-0.39448156952858,0.826724708080292,-0.355493783950806,-0.436062455177307,0.831820964813232,-0.274399518966675,-0.482471734285355,0.829560220241547,-0.35326936841011,-0.432470321655273,0.834416449069977,-0.293295919895172,-0.466612070798874,0.834513902664185,-0.220728248357773,-0.504842162132263,0.83390885591507,-0.273027807474136,-0.479637295007706,0.895743608474731,-0.18794459104538,-0.402890026569366, +0.905970811843872,-0.232657343149185,-0.353677004575729,0.89295756816864,-0.186002656817436,-0.409914553165436,0.879988193511963,-0.138737767934799,-0.45428255200386,0.838375568389893,-0.237277954816818,-0.49073988199234,0.831831216812134,-0.189117670059204,-0.521815419197083,0.817686855792999,-0.117762051522732,-0.563489377498627,0.828360497951508,-0.171787053346634,-0.533205568790436,0.796831429004669,-0.347910344600677,-0.493981897830963,0.807797968387604,-0.257105588912964,-0.530432939529419,0.801739692687988,-0.309782058000565,-0.511124789714813,0.781665027141571,-0.413899093866348,-0.466569781303406,0.77056896686554,-0.228782653808594,-0.594879806041718,0.767926752567291,-0.185164213180542,-0.613190650939941,0.758542001247406,-0.0830435454845428,-0.646310925483704,0.766339421272278,-0.128978982567787,-0.629355490207672,0.870072603225708,-0.0574135705828667,-0.489568531513214,0.8913853764534,-0.0924722999334335,-0.443712741136551,0.863457500934601,-0.0524883195757866,-0.501683235168457,0.837416887283325,-0.0122052067890763,-0.546428382396698,0.825538396835327,-0.124962545931339,-0.550336956977844,0.800080418586731,-0.0701668784022331,-0.595775246620178,0.763040065765381,0.00276925531215966,-0.646345317363739,0.79459822177887,-0.0580779723823071,-0.604351460933685,0.751883268356323,-0.139330819249153,-0.644405484199524,0.735642850399017,-0.0819767042994499,-0.672390937805176,0.706411182880402,0.014293828047812,-0.707657396793365,0.727259933948517,-0.0396248698234558,-0.685217499732971,0.809869289398193,0.0730112567543983,-0.582049012184143,0.842335224151611,0.0482487380504608,-0.536789953708649,0.795326113700867,0.0798994451761246,-0.600893199443817,0.759510695934296,0.108043387532234,-0.641459345817566,0.774697482585907,-0.00393001968041062,-0.632319867610931,0.73356682062149,0.0420433692634106,-0.67831563949585,0.678566157817841,0.103165201842785,-0.727258503437042,0.723184585571289,0.0551157593727112,-0.688452184200287,0.699548423290253,-0.0276243761181831,-0.714051127433777,0.668810367584229,0.0309493765234947,-0.74278861284256, +0.625009059906006,0.108966134488583,-0.772974789142609,0.657504856586456,0.0570603124797344,-0.751286625862122,0.706952452659607,0.198125958442688,-0.678943634033203,0.741445899009705,0.191471561789513,-0.643114864826202,0.674261391162872,0.205132216215134,-0.709431111812592,0.638133347034454,0.215380877256393,-0.739186644554138,0.695600628852844,0.113622203469276,-0.709386885166168,0.633136034011841,0.136598616838455,-0.761892020702362,0.561263382434845,0.167571634054184,-0.810495615005493,0.625614166259766,0.143090948462486,-0.766897559165955,0.619144976139069,0.0705621093511581,-0.782100081443787,0.577252268791199,0.116143941879272,-0.808263778686523,0.517334282398224,0.182628139853477,-0.836069524288177,0.560554385185242,0.140144526958466,-0.816172957420349,0.631496965885162,0.0211299490183592,-0.775090396404266,0.621311008930206,0.0633541941642761,-0.780998706817627,0.613544166088104,0.0850336700677872,-0.785068690776825,0.624103009700775,0.047325324267149,-0.779907584190369,0.560304522514343,0.087828628718853,-0.823617041110992,0.541123569011688,0.134908214211464,-0.830051362514496,0.535644114017487,0.152914568781853,-0.830483317375183,0.554956912994385,0.107731819152832,-0.824873745441437,0.674178540706635,0.0331499502062798,-0.737824082374573,0.690796434879303,-0.00858708750456572,-0.722998321056366,0.71118438243866,-0.0987339988350868,-0.696037650108337,0.698432445526123,-0.0512521900236607,-0.713838458061218,0.493419259786606,0.172778457403183,-0.852458357810974,0.43716561794281,0.198877289891243,-0.877116858959198,0.398055166006088,0.191637217998505,-0.897121787071228,0.453603446483612,0.169699281454086,-0.87489777803421,0.742121696472168,-0.175341457128525,-0.646924138069153,0.743194103240967,-0.0923622399568558,-0.662670195102692,0.744298756122589,-0.134703278541565,-0.654121220111847,0.738489151000977,-0.215340167284012,-0.638954102993011,0.75516539812088,-0.481005609035492,-0.445375114679337,0.797487497329712,-0.367322117090225,-0.478631794452667,0.775948405265808,-0.425679951906204,-0.465511322021484, +0.723566293716431,-0.540282070636749,-0.429589658975601,0.743486642837524,-0.25831937789917,-0.616845786571503,0.761907398700714,-0.175493597984314,-0.623457551002502,0.75480979681015,-0.213818281888962,-0.620116055011749,0.729244947433472,-0.301896631717682,-0.614052355289459,0.687629818916321,-0.594087302684784,-0.417403340339661,0.750112354755402,-0.480144500732422,-0.454744786024094,0.722362041473389,-0.53122478723526,-0.44271132349968,0.649412870407104,-0.643574297428131,-0.405061900615692,0.723171710968018,-0.34745180606842,-0.596908628940582,0.756986081600189,-0.258233934640884,-0.60023957490921,0.742384433746338,-0.299576789140701,-0.599265456199646,0.701657176017761,-0.3878353536129,-0.597713053226471,0.597552061080933,-0.687740504741669,-0.412243276834488,0.684703052043915,-0.577788352966309,-0.44423234462738,0.647544026374817,-0.623670756816864,-0.437860190868378,0.549032092094421,-0.729483902454376,-0.40794250369072,0.684585809707642,-0.427935838699341,-0.590095937252045,0.731789231300354,-0.341161906719208,-0.589994132518768,0.712720990180969,-0.374111741781235,-0.593354165554047,0.657205760478973,-0.460147231817245,-0.596946597099304,0.486134260892868,-0.760007798671722,-0.431348651647568,0.598231732845306,-0.659680664539337,-0.454906970262527,0.553972125053406,-0.696647107601166,-0.455848306417465,0.431573152542114,-0.789271235466003,-0.436801671981812,0.628227710723877,-0.487944185733795,-0.606003642082214,0.691230893135071,-0.402110815048218,-0.600422143936157,0.668066740036011,-0.427751302719116,-0.60886424779892,0.596668422222137,-0.510337650775909,-0.619308054447174,0.365673243999481,-0.798513293266296,-0.478183597326279,0.497941374778748,-0.714177489280701,-0.49193999171257,0.450769692659378,-0.738577306270599,-0.501308500766754,0.311019718647003,-0.811799943447113,-0.494214296340942,0.560581266880035,-0.521657943725586,-0.643134236335754,0.637582957744598,-0.441324055194855,-0.631443619728088,0.613925516605377,-0.455894857645035,-0.644403100013733,0.530062556266785,-0.529431760311127,-0.662371397018433, +0.252479046583176,-0.792754292488098,-0.554792702198029,0.398665815591812,-0.727415859699249,-0.558508396148682,0.358171314001083,-0.734720766544342,-0.576106488704681,0.207789018750191,-0.787540197372437,-0.580175817012787,0.497617930173874,-0.508533477783203,-0.702687799930573,0.584980845451355,-0.435856521129608,-0.683978497982025,0.56869512796402,-0.432654023170471,-0.699568688869476,0.476164102554321,-0.497442692518234,-0.72513347864151,0.17124904692173,-0.736980736255646,-0.653860211372375,0.323652476072311,-0.69002902507782,-0.647386372089386,0.300797611474991,-0.679497480392456,-0.66918158531189,0.148577734827995,-0.71379142999649,-0.684416770935059,0.456436663866043,-0.449370592832565,-0.767939865589142,0.548766255378723,-0.389008015394211,-0.739951550960541,0.544772684574127,-0.372118979692459,-0.751498639583588,0.453033864498138,-0.422444313764572,-0.785048544406891,0.151132002472878,-0.633133888244629,-0.75914466381073,0.301194131374359,-0.602770447731018,-0.738884150981903,0.3053839802742,-0.578924119472504,-0.756034076213837,0.160214349627495,-0.598584413528442,-0.784874558448792,0.463034868240356,-0.349242925643921,-0.814633727073669,0.55110627412796,-0.300751000642776,-0.778351247310638,0.571359753608704,-0.268526971340179,-0.775526463985443,0.485308229923248,-0.309908747673035,-0.817577242851257,0.207852765917778,-0.507252216339111,-0.836356639862061,0.345102459192276,-0.486203521490097,-0.802814185619354,0.378755480051041,-0.451550036668777,-0.807865619659424,0.253829151391983,-0.467431932687759,-0.846804678440094,0.571799397468567,-0.245405167341232,-0.782829344272614,0.596912682056427,-0.210958704352379,-0.774074733257294,0.52112340927124,-0.246704801917076,-0.817047774791718,0.487027138471603,-0.288690030574799,-0.824295222759247,0.270112723112106,-0.433077931404114,-0.859931766986847,0.396943032741547,-0.406964242458344,-0.822688460350037,0.443229109048843,-0.362233340740204,-0.819960355758667,0.326815098524094,-0.386919856071472,-0.862255692481995,0.6707883477211,-0.0734856873750687,-0.737999320030212, +0.727206707000732,-0.0512157753109932,-0.68450516462326,0.681951522827148,-0.0734425857663155,-0.727700710296631,0.613524734973907,-0.0950401499867439,-0.78393542766571,0.823727309703827,0.0788934677839279,-0.561470568180084,0.860933423042297,0.0929221138358116,-0.50015914440155,0.840874075889587,0.0691546052694321,-0.536794722080231,0.800398707389832,0.0567011497914791,-0.596780598163605,0.890369772911072,0.0848087817430496,-0.447268605232239,0.921882331371307,0.100114941596985,-0.374312937259674,0.916540563106537,0.0598162747919559,-0.395443111658096,0.875293433666229,0.0544920340180397,-0.480512291193008,0.965907871723175,0.0475315153598785,-0.254485100507736,0.964024901390076,0.000268876348854974,-0.265811830759048,0.954562604427338,0.066766582429409,-0.290434926748276,0.949155867099762,0.115971922874451,-0.292666435241699,0.949424028396606,0.15235909819603,-0.274555563926697,0.968314588069916,0.1068085283041,-0.225740477442741,0.967997133731842,0.0879800692200661,-0.235034227371216,0.949493408203125,0.134915590286255,-0.283302009105682,0.990220785140991,0.112381339073181,-0.0826645568013191,0.992665469646454,0.0672060549259186,-0.100492790341377,0.983600318431854,0.0582758374512196,-0.170688390731812,0.981874346733093,0.101112499833107,-0.160308584570885,0.978600084781647,0.156537115573883,-0.133559569716454,0.987627267837524,0.142480447888374,-0.0655113011598587,0.988981962203979,0.127751752734184,-0.0747940316796303,0.980032205581665,0.141154333949089,-0.140044867992401,0.991542518138885,0.113291516900063,0.0633128061890602,0.994271337985992,0.0967140346765518,0.0455057732760906,0.99416708946228,0.107549659907818,-0.00806573405861855,0.992217719554901,0.124476440250874,-0.00307499687187374,0.987955391407013,0.153929486870766,0.0158076342195272,0.987270414829254,0.138069733977318,0.0789547637104988,0.989517986774445,0.126268610358238,0.0700756460428238,0.989642679691315,0.143394231796265,0.00673908367753029,-0.946762561798096,-0.185765281319618,-0.26292958855629,-0.947480976581573,-0.190496042370796,-0.256887376308441, +-0.950760960578918,-0.221332877874374,-0.216945588588715,-0.952832520008087,-0.219118788838387,-0.209993228316307,-0.905416250228882,-0.206310421228409,-0.371022254228592,-0.900022387504578,-0.25618115067482,-0.352605909109116,-0.912532329559326,-0.225495964288712,-0.341227531433105,-0.912000596523285,-0.17193192243576,-0.372417122125626,-0.954775750637054,-0.213384792208672,-0.207051292061806,-0.957708716392517,-0.209036350250244,-0.197731643915176,-0.94841593503952,-0.1868586987257,-0.256107568740845,-0.945576429367065,-0.189242675900459,-0.264712065458298,-0.862114131450653,-0.188142150640488,-0.470490962266922,-0.865279614925385,-0.235454589128494,-0.442552119493484,-0.870062470436096,-0.202999144792557,-0.449202477931976,-0.859906196594238,-0.152173817157745,-0.487241685390472,-0.923176229000092,-0.19979901611805,-0.328368723392487,-0.926592171192169,-0.196892693638802,-0.320406317710876,-0.915367126464844,-0.164176881313324,-0.367626160383224,-0.913697898387909,-0.167615994811058,-0.370217800140381,-0.780549764633179,-0.118601210415363,-0.613739252090454,-0.772837162017822,-0.206141084432602,-0.600190460681915,-0.754683613777161,-0.29243877530098,-0.587309300899506,-0.781895637512207,-0.219280540943146,-0.583571076393127,-0.878866612911224,-0.184174224734306,-0.44008332490921,-0.881338179111481,-0.177566334605217,-0.437850594520569,-0.862240016460419,-0.142813876271248,-0.485948890447617,-0.861950695514679,-0.147621184587479,-0.485024929046631,-0.747611224651337,-0.101358748972416,-0.656356394290924,-0.792460083961487,-0.125740230083466,-0.596821963787079,-0.79588794708252,-0.170608341693878,-0.580909013748169,-0.76110315322876,-0.155154764652252,-0.629800736904144,-0.818903505802155,-0.150952488183975,-0.55372416973114,-0.824593245983124,-0.139417290687561,-0.548278033733368,-0.790836691856384,-0.119120895862579,-0.600322961807251,-0.780549466609955,-0.118601828813553,-0.613739490509033,-0.600563108921051,-0.0918620675802231,-0.794282972812653,-0.664005100727081,-0.177728831768036,-0.726298630237579,-0.676698207855225,-0.199709355831146,-0.708657801151276, +-0.626312792301178,-0.126888915896416,-0.769175827503204,-0.528713881969452,-0.0528576225042343,-0.847152709960938,-0.620443880558014,-0.159620851278305,-0.767835021018982,-0.637208759784698,-0.189208880066872,-0.747104465961456,-0.554710209369659,-0.0904738008975983,-0.827110052108765,-0.739815294742584,-0.0989830791950226,-0.665489017963409,-0.759372174739838,-0.108827725052834,-0.641490757465363,-0.73066508769989,-0.0928680226206779,-0.676390528678894,-0.707691669464111,-0.0789282023906708,-0.702098965644836,-0.63828843832016,-0.0640650019049644,-0.767126858234406,-0.687433779239655,-0.104922823607922,-0.718627870082855,-0.650045692920685,-0.0757239982485771,-0.75611275434494,-0.594081282615662,-0.0294779073446989,-0.803864717483521,-0.590440332889557,-0.0428732223808765,-0.805941700935364,-0.646022260189056,0.12307196110487,-0.75333160161972,-0.646423637866974,0.0866153314709663,-0.758046388626099,-0.593933582305908,-0.0758277326822281,-0.800932645797729,-0.408296525478363,0.0723620727658272,-0.909976720809937,-0.449854820966721,0.0255144853144884,-0.892737209796906,-0.392747968435287,0.0856842026114464,-0.915645837783813,-0.356667071580887,0.129059746861458,-0.925274074077606,-0.502412378787994,0.000799250439740717,-0.86462789773941,-0.552805006504059,-0.0529232546687126,-0.831628501415253,-0.507404744625092,-0.00309597700834274,-0.8617023229599,-0.451295793056488,0.057155542075634,-0.890542268753052,-0.379636317491531,0.0712123960256577,-0.922391057014465,-0.321220725774765,0.132982477545738,-0.937620878219604,-0.276632249355316,0.178694173693657,-0.944215595722198,-0.338598489761353,0.110607303678989,-0.934407353401184,-0.236274242401123,0.161384508013725,-0.95819079875946,-0.194734275341034,0.200069695711136,-0.960234701633453,-0.151049718260765,0.240116268396378,-0.958920359611511,-0.187242701649666,0.204159200191498,-0.960863769054413,-0.501868903636932,-0.0103285629302263,-0.864882051944733,-0.444395691156387,0.0476283989846706,-0.894563615322113,-0.383823782205582,0.107214584946632,-0.917161107063293,-0.442698687314987,0.047006718814373,-0.895437479019165, +-0.371842890977859,0.0834209248423576,-0.924539804458618,-0.324129462242126,0.11792379617691,-0.938634157180786,-0.255389273166656,0.170392274856567,-0.95170521736145,-0.302254647016525,0.135972335934639,-0.943479597568512,-0.527042627334595,0.0107408808544278,-0.849771022796631,-0.591825842857361,-0.0326708443462849,-0.805403530597687,-0.530888259410858,0.00832738447934389,-0.847401022911072,-0.462866246700287,0.0550108626484871,-0.884719550609589,-0.656517744064331,-0.04080580919981,-0.753206133842468,-0.689119517803192,-0.0571610443294048,-0.722389698028564,-0.637228488922119,-0.0318258441984653,-0.770017504692078,-0.598358333110809,-0.0102148735895753,-0.801163554191589,-0.561813712120056,0.015452804043889,-0.827119469642639,-0.605961859226227,-0.00206064060330391,-0.79549103975296,-0.571034967899323,0.00979251880198717,-0.820867359638214,-0.518323719501495,0.032773844897747,-0.854556262493134,-0.531133353710175,0.00887411739677191,-0.847241878509521,-0.487922757863998,0.0332578085362911,-0.872253060340881,-0.413172036409378,0.0799587592482567,-0.907135844230652,-0.46067088842392,0.0511407814919949,-0.88609653711319,-0.448854357004166,0.0763998627662659,-0.89033305644989,-0.512779772281647,0.0601143501698971,-0.856413006782532,-0.435604006052017,0.0772755593061447,-0.896815299987793,-0.369733333587646,0.0981649830937386,-0.923937737941742,-0.440426677465439,0.0592732578516006,-0.895829796791077,-0.364256352186203,0.0963733494281769,-0.926298856735229,-0.281158119440079,0.143022537231445,-0.948943972587585,-0.357734888792038,0.101457081735134,-0.928295433521271,-0.264327794313431,0.13636389374733,-0.954743802547455,-0.195677578449249,0.182365000247955,-0.963562846183777,-0.135060742497444,0.223910599946976,-0.965206027030945,-0.195162773132324,0.182784214615822,-0.963587880134583,-0.145588412880898,0.211638629436493,-0.966443538665771,-0.0892896726727486,0.247559145092964,-0.964749693870544,-0.0679397359490395,0.253635406494141,-0.964911043643951,-0.107420668005943,0.231884062290192,-0.966794013977051,-0.135492339730263,0.182061761617661,-0.973907232284546, +-0.22574046254158,0.154870420694351,-0.961798548698425,-0.158363834023476,0.173866972327232,-0.971952319145203,-0.0701188147068024,0.204288199543953,-0.976396381855011,-0.110951535403728,0.197329506278038,-0.974038422107697,-0.0584358163177967,0.225372120738029,-0.972518742084503,-0.00186838395893574,0.25723460316658,-0.966347277164459,-0.0499977208673954,0.229949429631233,-0.971917510032654,-0.311665445566177,0.132954552769661,-0.940844178199768,-0.37164506316185,0.12976935505867,-0.919260621070862,-0.306891739368439,0.129949137568474,-0.942831218242645,-0.245102375745773,0.135795816779137,-0.95993983745575,-0.0375032238662243,0.283004999160767,-0.958384931087494,0.0281555317342281,0.281488597393036,-0.959151387214661,0.0614047795534134,0.256235033273697,-0.964662134647369,-0.0015912929084152,0.26010400056839,-0.965579271316528,-0.170377478003502,0.175091445446014,-0.969698131084442,-0.230755552649498,0.182178899645805,-0.955804824829102,-0.164295956492424,0.172624737024307,-0.971188724040985,-0.100522473454475,0.167213901877403,-0.980782747268677,-0.158935353159904,0.177610337734222,-0.971181809902191,-0.082293801009655,0.194962456822395,-0.977352321147919,0.00598036870360374,0.21932378411293,-0.975633800029755,-0.0682544261217117,0.198305815458298,-0.977760851383209,-0.157337561249733,0.202106222510338,-0.966642618179321,-0.0937514081597328,0.188266023993492,-0.9776331782341,-0.030801672488451,0.17733146250248,-0.98366904258728,-0.0974597409367561,0.1901835501194,-0.976899087429047,0.0126374214887619,0.227873280644417,-0.973608791828156,0.0796176716685295,0.255954951047897,-0.963404417037964,0.134364724159241,0.281005084514618,-0.950253784656525,0.0723158791661263,0.251992374658585,-0.965023517608643,0.10806106030941,0.268412619829178,-0.957223832607269,0.161492794752121,0.305889666080475,-0.938270568847656,0.166230201721191,0.315145879983902,-0.934371769428253,0.115192092955112,0.278623282909393,-0.95346736907959,0.313516557216644,0.299445033073425,-0.901132762432098,0.309560894966125,0.297968745231628,-0.902987658977509, +0.375362247228622,0.318409085273743,-0.870470464229584,0.380319327116013,0.321281641721725,-0.867257356643677,-0.00811309833079576,0.216132372617722,-0.976330459117889,0.0642792209982872,0.222474575042725,-0.972817182540894,0.150930419564247,0.232933923602104,-0.960709035396576,0.0806975364685059,0.223432049155235,-0.971373319625854,-0.0173982568085194,0.219418063759804,-0.975475907325745,0.0451729595661163,0.211160391569138,-0.976407110691071,0.109040968120098,0.204998850822449,-0.972669303417206,0.0453277193009853,0.213825330138206,-0.975819706916809,0.288662135601044,0.257587254047394,-0.92212963104248,0.226217493414879,0.250292301177979,-0.941371023654938,0.2929667532444,0.258429676294327,-0.92053496837616,0.354074835777283,0.268984109163284,-0.895700037479401,0.482552409172058,0.250299632549286,-0.839341044425964,0.475855827331543,0.240529343485832,-0.845994591712952,0.541480898857117,0.258893609046936,-0.799857914447784,0.547433972358704,0.269155353307724,-0.792383432388306,0.135578453540802,0.236006319522858,-0.962247133255005,0.202460259199142,0.22701807320118,-0.952613651752472,0.286911070346832,0.217702016234398,-0.932892322540283,0.219689145684242,0.22503773868084,-0.949260115623474,0.122061170637608,0.237039342522621,-0.963801562786102,0.171978831291199,0.224768236279488,-0.959115445613861,0.231269210577011,0.208091825246811,-0.950374841690063,0.179409146308899,0.22346805036068,-0.958057582378387,0.438980907201767,0.200104087591171,-0.875930428504944,0.365932762622833,0.214723363518715,-0.905531406402588,0.434541374444962,0.200042247772217,-0.878155469894409,0.508191227912903,0.187748789787292,-0.840530812740326,0.619712889194489,0.21062459051609,-0.756037831306458,0.607834279537201,0.240992188453674,-0.756611049175262,0.674225568771362,0.205841153860092,-0.709259688854218,0.68497622013092,0.175325244665146,-0.707155346870422,0.572234570980072,0.180284053087234,-0.800028264522552,0.501749694347382,0.192415252327919,-0.843340754508972,0.570611894130707,0.180177003145218,-0.801210522651672,0.636371672153473,0.171338871121407,-0.752113103866577, +0.517690658569336,0.140425279736519,-0.843965113162994,0.465233713388443,0.175958082079887,-0.867523193359375,0.395658671855927,0.225511461496353,-0.890280187129974,0.446536242961884,0.194379702210426,-0.873396754264832,0.270403236150742,0.229967698454857,-0.934878051280975,0.331715613603592,0.213780105113983,-0.918837785720825,0.417935341596603,0.188926249742508,-0.888615190982819,0.35338032245636,0.206359848380089,-0.912435173988342,0.360278576612473,0.199708208441734,-0.911216735839844,0.317227214574814,0.227849945425987,-0.920571208000183,0.295823991298676,0.227981567382813,-0.927638173103333,0.338242202997208,0.20216178894043,-0.919088125228882,-0.354399234056473,0.646064519882202,-0.676019072532654,-0.373796880245209,0.638937473297119,-0.672335267066956,-0.392840772867203,0.631933867931366,-0.668083608150482,-0.373771011829376,0.638546228408813,-0.672721326351166,-0.116646781563759,-0.735403180122375,0.667514562606812,-0.154093965888023,-0.740052998065948,0.654657661914825,-0.197702214121819,-0.73064911365509,0.653502643108368,-0.160474359989166,-0.727256119251251,0.667342960834503,-0.0883520096540451,-0.751162886619568,0.654177665710449,-0.0729451403021812,-0.747794210910797,0.659911215305328,-0.0667395293712616,-0.725962817668915,0.684487998485565,-0.0822113677859306,-0.729549825191498,0.678968548774719,0.255021661520004,-0.687404215335846,0.680029034614563,0.246523827314377,-0.684462666511536,0.686102628707886,0.253017246723175,-0.68290513753891,0.685290336608887,0.261433333158493,-0.685415029525757,0.679601967334747,0.418595373630524,-0.616345047950745,0.667005836963654,0.415166884660721,-0.616210520267487,0.669269025325775,0.418059885501862,-0.614954650402069,0.668623030185699,0.421505570411682,-0.615072131156921,0.666347742080688,0.572229206562042,-0.537202417850494,0.619650959968567,0.564546763896942,-0.530032694339752,0.632734000682831,0.568147957324982,-0.528312504291534,0.630946695804596,0.576639533042908,-0.535097539424896,0.617379665374756,0.723748028278351,-0.425587296485901,0.54319816827774,0.717917323112488,-0.414845108985901,0.559015572071075, +0.717687427997589,-0.415609091520309,0.558743178844452,0.72374814748764,-0.42567104101181,0.543132364749908,0.841096222400665,-0.285245418548584,0.459556818008423,0.837947428226471,-0.273344039916992,0.472363322973251,0.836203277111053,-0.276815861463547,0.47343122959137,0.839495480060577,-0.288613945245743,0.460379809141159,0.927171111106873,-0.149285510182381,0.343609601259232,0.919686496257782,-0.139288455247879,0.367117822170258,0.921337068080902,-0.135839074850082,0.364260733127594,0.928737342357635,-0.145580947399139,0.340959429740906,0.954966187477112,-0.0896714329719543,0.282840251922607,0.956848561763763,-0.0829494222998619,0.278496444225311,0.953793048858643,-0.063070572912693,0.29377019405365,0.952139616012573,-0.0703270509839058,0.297462999820709,0.98602169752121,0.0743086114525795,0.149129167199135,0.986118733882904,0.0756131112575531,0.147826597094536,0.984628319740295,0.0789806023240089,0.155786141753197,0.984518647193909,0.077639065682888,0.157147124409676,0.974579632282257,0.223349064588547,0.0176044330000877,0.974081695079803,0.225677162408829,0.0153264533728361,0.973250865936279,0.22844409942627,0.024412902072072,0.973737359046936,0.226092204451561,0.0267940033227205,0.924683094024658,0.360770702362061,-0.121678687632084,0.923053860664368,0.363867878913879,-0.12478768825531,0.923524022102356,0.365678638219833,-0.115682519972324,0.925230085849762,0.36237046122551,-0.112415060400963,0.835099279880524,0.482889473438263,-0.263490229845047,0.8323734998703,0.485754370689392,-0.266827791929245,0.834141194820404,0.487107157707214,-0.258718460798264,0.836850762367249,0.484209477901459,-0.255386412143707,0.705486953258514,0.589030683040619,-0.394120782613754,0.704138517379761,0.589949071407318,-0.395157039165497,0.705083549022675,0.591051876544952,-0.391809850931168,0.706413745880127,0.590218782424927,-0.390667915344238,0.51661628484726,0.687187612056732,-0.510764896869659,0.514634847640991,0.687762200832367,-0.511990427970886,0.51657909154892,0.687278151512146,-0.510680854320526,0.518686652183533,0.686431348323822,-0.509682416915894, +0.306429743766785,0.727056086063385,-0.61440235376358,0.295459747314453,0.728026807308197,-0.618611752986908,0.305218547582626,0.732468903064728,-0.60854834318161,0.316066950559616,0.731814026832581,-0.603779733181,0.0893183946609497,0.739964127540588,-0.666689872741699,0.0858379304409027,0.739774107933044,-0.667357563972473,0.0894186720252037,0.739479780197144,-0.667213559150696,0.0930496826767921,0.739198505878448,-0.667028725147247,-0.119920127093792,0.713160991668701,-0.690666735172272,-0.131857708096504,0.710464417934418,-0.691269755363464,-0.120756797492504,0.71886020898819,-0.684585928916931,-0.10880845785141,0.721486032009125,-0.683826446533203,-0.439690262079239,0.599622964859009,-0.668673872947693,-0.539536654949188,0.549992203712463,-0.637502133846283,-0.629934549331665,0.489478915929794,-0.602986633777618,-0.537834405899048,0.543314874172211,-0.644626438617706,-0.459478706121445,-0.546413242816925,-0.700222730636597,-0.459380596876144,-0.546358585357666,-0.700329780578613,-0.457290470600128,-0.548666477203369,-0.699893236160278,-0.45815521478653,-0.547857165336609,-0.69996166229248,-0.0345873571932316,0.602370977401733,0.797466576099396,-0.0424377173185349,0.599899232387543,0.798949360847473,-0.0882835686206818,0.5725177526474,0.815125405788422,-0.0510679967701435,0.593986868858337,0.80285233259201,0.00521189533174038,0.622775495052338,0.782383263111115,-0.00444493908435106,0.61906236410141,0.785329341888428,-0.0226303450763226,0.598762273788452,0.800607025623322,-0.0121298506855965,0.603098571300507,0.797574460506439,-0.021659791469574,0.473016023635864,0.880787670612335,-0.0883041620254517,0.482452213764191,0.871459782123566,-0.13057741522789,0.506976962089539,0.852011799812317,-0.0810522958636284,0.488509982824326,0.868785560131073,0.128689557313919,-0.510419189929962,-0.850241959095001,0.126970037817955,-0.494930565357208,-0.85960590839386,0.131881073117256,-0.494373828172684,-0.859186828136444,0.132043734192848,-0.512821912765503,-0.848279535770416,0.0825812071561813,0.481770277023315,0.872397720813751, +-0.0258475914597511,0.409974038600922,0.911730885505676,0.0268892627209425,0.442815005779266,0.896209716796875,-0.107614770531654,0.264744937419891,0.958294987678528,-0.0360214412212372,0.276998519897461,0.960194945335388,-0.0449633747339249,0.306452661752701,0.950823366641998,-0.160134732723236,0.261126786470413,0.951929569244385,-0.0997815951704979,0.375389128923416,0.921480655670166,-0.0861328691244125,0.352188140153885,0.931957423686981,-0.0387947112321854,0.392959892749786,0.91873687505722,-0.0231292527168989,0.422247290611267,0.906185567378998,-0.0809433162212372,0.414784103631973,0.906312525272369,-0.0488493070006371,0.423886030912399,0.904397249221802,-0.117283917963505,0.396787524223328,0.910386800765991,-0.119062580168247,0.40925133228302,0.904620051383972,-0.120856449007988,0.423084020614624,0.89799427986145,-0.105256788432598,0.419017672538757,0.901856541633606,-0.119299724698067,0.42460909485817,0.897482514381409,-0.120696611702442,0.434931457042694,0.892337918281555,-0.123124144971371,0.37294989824295,0.919646024703979,-0.114187724888325,0.390277475118637,0.913589000701904,-0.00410060631111264,0.386799365282059,0.922154724597931,0.00259540439583361,0.363178074359894,0.93171614408493,-0.136925563216209,0.436304599046707,0.889319777488708,-0.127049148082733,0.446899771690369,0.885516285896301,-0.131559461355209,0.453059911727905,0.88171923160553,-0.148707628250122,0.441658675670624,0.884773313999176,-0.156835198402405,0.45572093129158,0.876197099685669,-0.135079115629196,0.463332414627075,0.875829219818115,-0.137942522764206,0.46799311041832,0.872899949550629,-0.161421865224838,0.461687296628952,0.872231602668762,-0.140468463301659,0.449833691120148,0.881996870040894,-0.135441973805428,0.442107081413269,0.886677384376526,0.00154536159243435,0.438471108675003,0.89874404668808,0.00262028747238219,0.433699071407318,0.901054084300995,-0.160938948392868,0.478658854961395,0.86312472820282,-0.161737665534019,0.475397080183029,0.864776611328125,-0.138644456863403,0.476272284984589,0.868298649787903,-0.137228310108185,0.477453470230103,0.86787474155426, +-0.136268988251686,0.479652643203735,0.866812527179718,-0.135146632790565,0.488503605127335,0.862032234668732,0.00613546092063189,0.433752685785294,0.901011049747467,0.00305596506223083,0.407943695783615,0.913001954555511,-0.152937069535255,0.491413712501526,0.857393026351929,-0.154395401477814,0.488917887210846,0.85855770111084,-0.131453514099121,0.483206242322922,0.865581810474396,-0.129611775279045,0.483010679483414,0.865968525409698,-0.0635907351970673,0.567226529121399,0.821103155612946,-0.105300940573215,0.526907622814178,0.843374192714691,0.0584621131420135,0.494589298963547,0.867158234119415,0.0876269862055779,0.52079975605011,0.849169671535492,-0.149040505290031,0.501332104206085,0.852322220802307,-0.149161621928215,0.49879378080368,0.85378897190094,-0.126639530062675,0.484599858522415,0.865520358085632,-0.126058384776115,0.482608318328857,0.866717100143433,-0.069025807082653,0.528941512107849,0.845846474170685,-0.0702737122774124,0.541624486446381,0.837678074836731,0.021516352891922,0.439837872982025,0.897819399833679,0.00776759581640363,0.41927096247673,0.907828032970428,-0.142909124493599,0.502010881900787,0.852972447872162,-0.145338371396065,0.5036740899086,0.851580381393433,-0.125524491071701,0.480746686458588,0.867828488349915,-0.126290440559387,0.478143513202667,0.869154512882233,0.0169940367341042,0.552211880683899,0.83353054523468,-0.0332324057817459,0.541017651557922,0.840354382991791,0.0770135968923569,0.458584368228912,0.885307490825653,0.111688077449799,0.467278242111206,0.877027273178101,-0.140283972024918,0.497903943061829,0.855810821056366,-0.141128689050674,0.499573349952698,0.854698419570923,-0.129100203514099,0.474316000938416,0.870837271213531,-0.131074726581573,0.471179842948914,0.872243642807007,-0.0188285950571299,0.507312119007111,0.861556649208069,-0.0226488430052996,0.519122064113617,0.854399919509888,0.0392544083297253,0.425076186656952,0.904305994510651,0.0306178387254477,0.410775601863861,0.911222338676453,-0.144044995307922,0.495761573314667,0.856429517269135,-0.143397703766823,0.496027708053589,0.856384038925171, +-0.137907445430756,0.467609822750092,0.873110890388489,-0.141399741172791,0.465974360704422,0.873426616191864,0.0374257005751133,0.491537302732468,0.870051980018616,0.0123410308733582,0.502141058444977,0.864697754383087,0.0247497614473104,0.400591552257538,0.915922403335571,0.0386901460587978,0.396731793880463,0.917118906974792,0.645715057849884,-0.301547229290009,-0.701513588428497,0.619447290897369,-0.307347267866135,-0.722372949123383,0.603145360946655,-0.327366530895233,-0.72735607624054,0.628844499588013,-0.317751318216324,-0.70963978767395,-0.151919797062874,0.468984693288803,0.870042443275452,-0.15259376168251,0.494370251893997,0.855753004550934,-0.152164295315742,0.494502454996109,0.855753242969513,-0.148186951875687,0.467099219560623,0.87169885635376,0.195281773805618,-0.521208167076111,-0.830787062644958,0.143154814839363,-0.516229450702667,-0.844401478767395,0.125918656587601,-0.500023603439331,-0.856808483600616,0.210321173071861,-0.520265698432922,-0.827700793743134,0.127524167299271,-0.549641489982605,-0.825610041618347,0.0131469275802374,-0.605229556560516,-0.795942425727844,-0.0257115419954062,-0.491175949573517,-0.870680809020996,0.143579572439194,-0.467793881893158,-0.872097373008728,-0.186235547065735,-0.673074424266815,-0.715742290019989,-0.160527944564819,-0.662307977676392,-0.731832563877106,-0.153529167175293,-0.687275409698486,-0.709986925125122,-0.149939566850662,-0.710448741912842,-0.687590599060059,-0.446480929851532,-0.555888652801514,-0.701172292232513,-0.448940962553024,-0.553719341754913,-0.701318025588989,-0.455477118492126,-0.546390891075134,-0.702849626541138,-0.454299509525299,-0.547048568725586,-0.703100144863129,-0.297561168670654,-0.547942101955414,-0.781803667545319,-0.316056370735168,-0.512330532073975,-0.798514723777771,-0.319025218486786,-0.520844340324402,-0.791797995567322,-0.300782471895218,-0.556324422359467,-0.774618029594421,-0.140438050031662,-0.534879803657532,-0.833175122737885,-0.123830430209637,-0.524475157260895,-0.84237265586853,-0.121594376862049,-0.49589529633522,-0.859827101230621, +-0.13596323132515,-0.509314000606537,-0.849772453308105,0.0811706706881523,-0.431370913982391,-0.898515701293945,0.0874228179454803,-0.427825450897217,-0.899623572826385,0.0870925337076187,-0.414020746946335,-0.906091570854187,0.0810882672667503,-0.418655872344971,-0.904517531394958,0.222982093691826,-0.386454820632935,-0.89494788646698,0.221732258796692,-0.368602305650711,-0.902755320072174,0.215529412031174,-0.372163474559784,-0.902796506881714,0.216822475194931,-0.38987073302269,-0.894979774951935,0.394531935453415,-0.358115643262863,-0.846225619316101,0.389116078615189,-0.324995368719101,-0.861955165863037,0.382838726043701,-0.329332023859024,-0.863119304180145,0.388222187757492,-0.362576127052307,-0.847243845462799,0.503682732582092,-0.362428694963455,-0.784186959266663,0.502558887004852,-0.333227425813675,-0.797743082046509,0.495942741632462,-0.338661581277847,-0.799593150615692,0.496895968914032,-0.367755144834518,-0.7860347032547,0.50373774766922,-0.405267000198364,-0.762893855571747,0.499244958162308,-0.38843634724617,-0.774513840675354,0.499934613704681,-0.389242976903915,-0.773663580417633,0.504278957843781,-0.405717670917511,-0.762296497821808,0.405832171440125,-0.876395642757416,-0.259289294481277,0.466705560684204,-0.854886114597321,-0.226618006825447,0.364139974117279,-0.859620928764343,-0.358405023813248,0.28578507900238,-0.881496548652649,-0.375886619091034,0.384616434574127,-0.489298641681671,-0.78272420167923,0.392174541950226,-0.476792305707932,-0.786681771278381,0.383655995130539,-0.479946941137314,-0.788960754871368,0.37598180770874,-0.492194086313248,-0.78510057926178,0.285904675722122,-0.517682254314423,-0.806389272212982,0.303063690662384,-0.515329420566559,-0.801616013050079,0.285854995250702,-0.518705546855927,-0.80574905872345,0.268508553504944,-0.51997846364975,-0.810879528522491,0.281613945960999,-0.506377518177032,-0.815030932426453,0.272964805364609,-0.513575434684753,-0.813468217849731,0.281265735626221,-0.511904060840607,-0.81169193983078,0.289722859859467,-0.505050182342529,-0.813009858131409, +0.254378288984299,-0.50436395406723,-0.825172007083893,0.259706288576126,-0.504849374294281,-0.823213040828705,0.254284888505936,-0.504984736442566,-0.824820995330811,0.249104365706444,-0.504340648651123,-0.826793670654297,0.259348601102829,-0.494732260704041,-0.829444646835327,0.223993182182312,-0.501017510890961,-0.835947692394257,0.257526636123657,-0.50213211774826,-0.825556337833405,0.292453020811081,-0.496063321828842,-0.81755268573761,-0.108940698206425,-0.633663237094879,-0.765900075435638,-0.212182804942131,-0.483538508415222,-0.849216818809509,-0.180722698569298,-0.656512796878815,-0.732345759868622,-0.120209127664566,-0.788254976272583,-0.60349303483963,0.323356300592422,-0.471211224794388,-0.820610046386719,0.319995552301407,-0.47006618976593,-0.822581708431244,0.319110572338104,-0.485521972179413,-0.813902318477631,0.322791427373886,-0.485617876052856,-0.812392115592957,0.290598571300507,-0.435148000717163,-0.852173030376434,0.287616729736328,-0.433850765228271,-0.853844463825226,0.285074979066849,-0.45029804110527,-0.846146583557129,0.288039773702621,-0.451632529497147,-0.844429492950439,0.384800523519516,-0.43595290184021,-0.81355619430542,0.383890390396118,-0.435523211956024,-0.814216017723083,0.378823906183243,-0.450944930315018,-0.808171510696411,0.379664927721024,-0.451599597930908,-0.807410895824432,0.514476478099823,-0.404425621032715,-0.756144106388092,0.507274925708771,-0.429755926132202,-0.746982038021088,0.511207044124603,-0.431378424167633,-0.743357300758362,0.51816201210022,-0.406551659107208,-0.75247859954834,0.537952363491058,-0.378432482481003,-0.753257095813751,0.540699779987335,-0.376924067735672,-0.752045214176178,0.524138212203979,-0.407250195741653,-0.747948229312897,0.521933376789093,-0.407645165920258,-0.749273657798767,0.606707990169525,-0.364040791988373,-0.706667959690094,0.618228495121002,-0.366461604833603,-0.695341229438782,0.602203369140625,-0.372991502285004,-0.705853044986725,0.590119123458862,-0.37096643447876,-0.717037975788116,0.248725339770317,-0.444567680358887,-0.860520362854004, +0.221242383122444,-0.433343380689621,-0.873650550842285,0.313403993844986,-0.468165934085846,-0.826195240020752,0.647134482860565,-0.294986039400101,-0.702993750572205,0.698376357555389,-0.259162127971649,-0.667162179946899,0.734219312667847,-0.212973013520241,-0.644642889499664,0.688182950019836,-0.245960667729378,-0.682574152946472,0.506414890289307,0.677857756614685,-0.532966196537018,0.516452729701996,0.672695755958557,-0.529865205287933,0.529910743236542,0.682622730731964,-0.503210544586182,0.519837439060211,0.687674343585968,-0.50682657957077,0.222106724977493,-0.529963254928589,-0.818417727947235,0.272282272577286,-0.488126486539841,-0.829213440418243,0.152286127209663,-0.505363464355469,-0.849362552165985,0.0945677012205124,-0.547251880168915,-0.831608295440674,0.305959612131119,-0.41379189491272,-0.85741776227951,0.279250472784042,-0.406750380992889,-0.869812250137329,0.244601547718048,-0.398812055587769,-0.883809506893158,0.268390595912933,-0.402636021375656,-0.875128984451294,0.239005565643311,-0.445264726877213,-0.86291116476059,0.218119844794273,-0.449709594249725,-0.866132318973541,0.198554471135139,-0.454790592193604,-0.868182957172394,0.210385456681252,-0.447823613882065,-0.869017779827118,0.151888504624367,-0.46898540854454,-0.870047450065613,0.161979138851166,-0.464341908693314,-0.870717704296112,0.163578987121582,-0.496766746044159,-0.852329015731812,0.158087208867073,-0.494206488132477,-0.854849934577942,0.203836917877197,-0.465598791837692,-0.861201643943787,0.196242988109589,-0.476518958806992,-0.856982171535492,0.183787614107132,-0.488825500011444,-0.852802276611328,0.188353687524796,-0.476661443710327,-0.858671545982361,-0.0589036382734776,0.541095554828644,0.838895559310913,-0.0662083774805069,0.49535208940506,0.866165578365326,-0.0422950908541679,0.552397549152374,0.832507133483887,-0.0476735197007656,0.590644776821136,0.805522322654724,0.183525994420052,-0.539113402366638,-0.821994602680206,0.162151277065277,-0.544473707675934,-0.822955250740051,0.150302663445473,-0.536299407482147,-0.830537259578705, +0.184805452823639,-0.535475611686707,-0.824083030223846,0.193306118249893,-0.500552833080292,-0.8438481092453,0.187240108847618,-0.505968511104584,-0.841984033584595,0.182370379567146,-0.511275291442871,-0.839844405651093,0.183481782674789,-0.506433546543121,-0.842531681060791,0.136494800448418,-0.650474727153778,-0.747162520885468,0.136641621589661,-0.627331376075745,-0.766671121120453,0.0730304792523384,-0.641878128051758,-0.763321101665497,0.0995643734931946,-0.672215402126312,-0.733630299568176,0.186872765421867,-0.55411559343338,-0.811193346977234,0.186315104365349,-0.558415591716766,-0.808367967605591,0.173871546983719,-0.556179106235504,-0.812670707702637,0.183367371559143,-0.552042305469513,-0.813403785228729,0.182431668043137,-0.51606422662735,-0.836896896362305,0.17874938249588,-0.520505905151367,-0.834938585758209,0.184529885649681,-0.520548462867737,-0.833653390407562,0.183019772171974,-0.518591642379761,-0.835204541683197,0.186515063047409,-0.568340182304382,-0.801374912261963,0.252617657184601,-0.601918816566467,-0.757547378540039,0.210740968585014,-0.562246024608612,-0.799667239189148,0.177104443311691,-0.521825551986694,-0.834465146064758,0.196798548102379,-0.560004532337189,-0.804776549339294,0.196713283658028,-0.561424732208252,-0.803807258605957,0.193713515996933,-0.561592876911163,-0.80441814661026,0.192406952381134,-0.560823023319244,-0.805268347263336,0.181374132633209,-0.524441778659821,-0.831903994083405,0.18385311961174,-0.522040188312531,-0.83286988735199,0.190855085849762,-0.516781330108643,-0.834572613239288,0.187777295708656,-0.519732117652893,-0.833437561988831,0.214422702789307,-0.622877657413483,-0.752360343933105,0.228007778525352,-0.587089836597443,-0.776748299598694,0.257709681987762,-0.60951554775238,-0.749717652797699,0.206252828240395,-0.649880528450012,-0.73151558637619,0.206197038292885,-0.555859208106995,-0.805297076702118,0.20835854113102,-0.553899705410004,-0.806090474128723,0.200630754232407,-0.558243572711945,-0.805053651332855,0.201117306947708,-0.559255301952362,-0.80422967672348, +0.190177500247955,-0.510165750980377,-0.838786900043488,0.191642850637436,-0.513124883174896,-0.836645722389221,0.18647138774395,-0.521176874637604,-0.832828342914581,0.183907404541969,-0.520246803760529,-0.833979249000549,0.226034015417099,-0.583198010921478,-0.780249118804932,0.199946776032448,-0.562531173229218,-0.802234351634979,0.211815237998962,-0.590747773647308,-0.778557181358337,0.226185858249664,-0.616290092468262,-0.754338443279266,0.216363102197647,-0.542666852474213,-0.811603307723999,0.222010761499405,-0.535566031932831,-0.814788460731506,0.214274168014526,-0.543577551841736,-0.811548054218292,0.210842251777649,-0.548852503299713,-0.808892130851746,0.176828622817993,-0.516283869743347,-0.837963461875916,0.17891126871109,-0.50106942653656,-0.846711397171021,0.185057207942009,-0.505918800830841,-0.842496275901794,0.182399392127991,-0.520498275756836,-0.834153473377228,0.21593476831913,-0.529205441474915,-0.820556938648224,0.212991461157799,-0.511835098266602,-0.832261681556702,0.201912149786949,-0.538700103759766,-0.817944824695587,0.217652827501297,-0.547966003417969,-0.807688355445862,0.216913715004921,-0.527931809425354,-0.821119070053101,0.227987244725227,-0.510353922843933,-0.829192817211151,0.223466143012047,-0.521061182022095,-0.8237464427948,0.216207906603813,-0.533393442630768,-0.817768692970276,0.166187644004822,-0.511084675788879,-0.843311429023743,0.160150989890099,-0.511573612689972,-0.844182550907135,0.161253690719604,-0.494774609804153,-0.853929340839386,0.16806960105896,-0.495775729417801,-0.85203230381012,0.200815305113792,-0.491614818572998,-0.847341775894165,0.232099592685699,-0.441114872694016,-0.866918385028839,0.218064025044441,-0.470563620328903,-0.854995906352997,0.201429024338722,-0.50220388174057,-0.840962290763855,0.209598794579506,-0.513712048530579,-0.831966578960419,0.219367295503616,-0.487546771764755,-0.845089435577393,0.222008869051933,-0.495968997478485,-0.83948016166687,0.211403623223305,-0.519830226898193,-0.827698647975922,0.145701467990875,-0.513669669628143,-0.845526218414307, +0.13831228017807,-0.513289630413055,-0.846996784210205,0.134770020842552,-0.494613111019135,-0.858600676059723,0.144088357686996,-0.49430188536644,-0.857265651226044,0.155935436487198,-0.459369480609894,-0.874450623989105,0.21241407096386,-0.394020944833755,-0.894219100475311,0.195673614740372,-0.393593668937683,-0.898218214511871,0.138043433427811,-0.448084443807602,-0.883269131183624,0.193796306848526,-0.502136707305908,-0.842794060707092,0.1985033005476,-0.470688372850418,-0.859679520130157,0.205222964286804,-0.477068185806274,-0.854569852352142,0.19902528822422,-0.505555748939514,-0.839525043964386,0.00234483974054456,0.616898775100708,0.787039041519165,0.00978436041623354,0.621159434318542,0.783623158931732,0.0236868411302567,0.634877383708954,0.772249758243561,0.0173319708555937,0.633232414722443,0.773767590522766,0.121878951787949,-0.451797604560852,-0.88375598192215,0.15819425880909,-0.36193373799324,-0.918683171272278,0.15382394194603,-0.365946143865585,-0.917835295200348,0.11303897947073,-0.444937169551849,-0.888399302959442,0.1705631762743,-0.49722483754158,-0.850691258907318,0.168665245175362,-0.464837282896042,-0.869182586669922,0.178457602858543,-0.46401047706604,-0.867667675018311,0.176853165030479,-0.499023616313934,-0.848350405693054,0.100885763764381,-0.458834201097488,-0.882775902748108,0.0995289832353592,-0.376065850257874,-0.921232163906097,0.119798794388771,-0.352190732955933,-0.928229510784149,0.109945863485336,-0.453180819749832,-0.884612381458282,-0.0108979558572173,0.209192633628845,0.977813839912415,-0.00300807482562959,0.22685082256794,0.973924934864044,-0.0538139678537846,0.206842139363289,0.976893246173859,-0.00185803312342614,0.226486578583717,0.974012613296509,-0.694998145103455,-0.717683553695679,0.0436782464385033,-0.683053076267242,-0.726382791996002,0.0762006863951683,-0.680866360664368,-0.731672465801239,0.0328069925308228,-0.691625475883484,-0.722253084182739,-0.00220089149661362,-0.752583861351013,-0.657200396060944,-0.0412969961762428,-0.75494384765625,-0.654068410396576,-0.047479297965765, +-0.737904489040375,-0.673076748847961,-0.0496471710503101,-0.734790444374084,-0.676867544651031,-0.0439697802066803,-0.651682555675507,-0.67086660861969,-0.353903919458389,-0.739347338676453,-0.611855506896973,-0.281066715717316,-0.745793342590332,-0.604406237602234,-0.280152529478073,-0.65910542011261,-0.665422856807709,-0.350417643785477,-0.35674449801445,-0.800330758094788,-0.481875568628311,-0.48887225985527,-0.789356350898743,-0.37137645483017,-0.48333266377449,-0.79157555103302,-0.373895317316055,-0.337921947240829,-0.800396144390106,-0.495151221752167,0.210357457399368,-0.768363773822784,-0.604455888271332,-0.00747154979035258,-0.898538827896118,-0.438830435276031,0.0205482002347708,-0.890345931053162,-0.454820692539215,0.225591704249382,-0.756167709827423,-0.614262819290161,0.577380418777466,-0.787077724933624,-0.217118248343468,0.594649195671082,-0.791476845741272,-0.141268327832222,0.54093599319458,-0.78571754693985,-0.300060242414474,0.510706007480621,-0.781144618988037,-0.359155178070068,0.936072409152985,-0.291136384010315,-0.197504550218582,0.880034267902374,-0.419644296169281,-0.22234719991684,0.868891537189484,-0.423600852489471,-0.256105184555054,0.927657008171082,-0.292861372232437,-0.231699332594872,0.971417009830475,-0.211814448237419,-0.107161849737167,0.972898602485657,-0.231135696172714,0.00667771836742759,0.947629570960999,-0.297640830278397,-0.115792825818062,0.928163468837738,-0.293087691068649,-0.22937348484993,0.973048865795135,-0.19159884750843,0.128319457173347,0.969581663608551,-0.197227716445923,0.144957453012466,0.969735682010651,-0.211572274565697,0.121860139071941,0.972575962543488,-0.207840070128441,0.104395687580109,0.976040661334991,-0.177204698324203,0.126265898346901,0.979961693286896,-0.168374136090279,0.106419883668423,0.975406885147095,-0.182241857051849,0.123972661793232,0.971076726913452,-0.190470159053802,0.143982887268066,0.972963750362396,-0.164500862360001,0.162114769220352,0.973630607128143,-0.163099527359009,0.159506037831306,0.971863627433777,-0.175239309668541,0.157392367720604, +0.971074342727661,-0.177602499723434,0.159599468111992,0.984238028526306,-0.123641364276409,0.126444920897484,0.985879778862,-0.117233864963055,0.11957136541605,0.982414901256561,-0.143619298934937,0.119308114051819,0.980969965457916,-0.146763563156128,0.127115681767464,0.996058464050293,-0.0880438536405563,0.010764786042273,0.991279780864716,-0.072457455098629,0.110065072774887,0.998233437538147,-0.0547453500330448,0.0230845622718334,0.996111214160919,-0.0516105704009533,-0.0714060291647911,-0.291294515132904,-0.929561674594879,-0.225970506668091,-0.188366785645485,-0.877487897872925,-0.441058903932571,-0.323407918214798,-0.914818167686462,-0.241898968815804,-0.36652660369873,-0.928896903991699,0.0529998652637005,0.0922707617282867,-0.970546066761017,-0.222545847296715,0.0880392044782639,-0.969379305839539,-0.22924442589283,-0.0371920727193356,-0.942833304405212,-0.331182897090912,-0.0375509448349476,-0.943387448787689,-0.329560488462448,0.828514039516449,-0.556960940361023,0.0579566583037376,0.718447983264923,-0.658288061618805,0.2246984988451,0.403350979089737,-0.900733947753906,0.161203488707542,0.635277450084686,-0.765840113162994,0.0995562002062798,-0.707018852233887,-0.706451058387756,-0.0324246361851692,-0.717536211013794,-0.677687764167786,-0.160876378417015,-0.731112062931061,-0.624932169914246,-0.273742496967316,-0.740232288837433,-0.657037138938904,-0.142683297395706,-0.368726134300232,-0.566060125827789,-0.737303853034973,-0.356372207403183,-0.578616440296173,-0.733622431755066,-0.571440815925598,-0.377436280250549,-0.728695571422577,-0.56090235710144,-0.36998176574707,-0.740609347820282,-0.653408825397491,0.0822765827178955,-0.752520740032196,-0.605074763298035,-0.10565672069788,-0.789126932621002,-0.566290140151978,-0.178613871335983,-0.804619491100311,-0.587797880172729,-0.071371853351593,-0.805853426456451,-0.254575997591019,-0.723069190979004,-0.642154216766357,-0.260092586278915,-0.769673407077789,-0.583056271076202,-0.466009080410004,-0.683334112167358,-0.562040984630585,-0.44676661491394,-0.635578572750092,-0.629634380340576, +-0.463334143161774,-0.448223888874054,-0.764471650123596,-0.34094300866127,-0.672818958759308,-0.656561136245728,-0.406582951545715,-0.647538065910339,-0.644503533840179,-0.539628922939301,-0.44377264380455,-0.715448439121246,-0.559261798858643,-0.36850506067276,-0.742583513259888,-0.548433899879456,-0.363989293575287,-0.752816200256348,-0.403013348579407,-0.542460978031158,-0.737099945545197,-0.367804765701294,-0.565209090709686,-0.738416254520416,0.975218772888184,0.0855464562773705,-0.204034611582756,0.961263060569763,0.177466183900833,-0.210900604724884,0.945976555347443,0.220893740653992,-0.237348943948746,0.963374376296997,0.121024593710899,-0.239296555519104,0.893085062503815,0.383762925863266,0.234787836670876,0.941315293312073,0.297590136528015,0.159266546368599,0.974400818347931,0.176019698381424,0.139857590198517,0.940400004386902,0.271254807710648,0.205106392502785,-0.137544199824333,-0.795977890491486,-0.589491963386536,-0.196717888116837,-0.766338169574738,-0.611578285694122,-0.159238651394844,-0.799159169197083,-0.579644441604614,-0.119778491556644,-0.820331513881683,-0.55920422077179,-0.245853647589684,-0.741548418998718,-0.62422913312912,-0.312844932079315,-0.692333459854126,-0.6502326130867,-0.306686013936996,-0.701213955879211,-0.643616914749146,-0.256793320178986,-0.734883010387421,-0.6276975274086,-0.144407704472542,-0.699166059494019,-0.700223684310913,-0.234418585896492,-0.758064270019531,-0.608593761920929,-0.26809686422348,-0.830446422100067,-0.488347053527832,-0.183646619319916,-0.788236498832703,-0.587330400943756,-0.22535440325737,-0.774867534637451,-0.590589463710785,-0.258397161960602,-0.757170438766479,-0.599936544895172,-0.274441510438919,-0.748456180095673,-0.603734374046326,-0.24394017457962,-0.764546096324921,-0.596625924110413,-0.315919667482376,-0.709747135639191,-0.629645764827728,-0.304787218570709,-0.726275742053986,-0.616139948368073,-0.272966235876083,-0.751388072967529,-0.600754022598267,-0.270107805728912,-0.746850490570068,-0.607664525508881,-0.272814899682999,-0.829322993755341,-0.487642705440521, +-0.373100250959396,-0.799199998378754,-0.471248954534531,-0.437380760908127,-0.680427193641663,-0.58797699213028,-0.284852713346481,-0.776827692985535,-0.561602771282196,-0.418313652276993,-0.64721143245697,-0.637284100055695,-0.415189415216446,-0.675008535385132,-0.609902620315552,-0.528302550315857,-0.519413590431213,-0.671644330024719,-0.543951749801636,-0.44412037730217,-0.711950480937958,-0.248343870043755,-0.75105494260788,-0.611753225326538,-0.284519791603088,-0.732522308826447,-0.618433117866516,-0.296549320220947,-0.726161360740662,-0.620280742645264,-0.239851132035255,-0.754108011722565,-0.611385762691498,-0.30860561132431,-0.762208342552185,-0.569035172462463,-0.330306112766266,-0.753064036369324,-0.569027662277222,-0.337490409612656,-0.750375509262085,-0.568363308906555,-0.321196168661118,-0.756765723228455,-0.569331765174866,-0.119151547551155,-0.832974374294281,-0.540330052375793,-0.0607575811445713,-0.800881922245026,-0.595731973648071,-0.043160691857338,-0.76417201757431,-0.643567025661469,-0.108524039387703,-0.804260671138763,-0.584283471107483,-0.0570749193429947,-0.857257723808289,-0.511714398860931,-0.088685929775238,-0.814012229442596,-0.574037492275238,-0.0741329342126846,-0.738895177841187,-0.669729948043823,-0.0585180260241032,-0.792295038700104,-0.607325434684753,-0.0564090013504028,-0.929635524749756,-0.364137023687363,-0.0906325206160545,-0.89456832408905,-0.437644958496094,-0.056496437638998,-0.836494565010071,-0.545055031776428,-0.0284454822540283,-0.872309565544128,-0.488125801086426,-0.0759391412138939,-0.831524431705475,-0.550272941589355,-0.0663278177380562,-0.781705975532532,-0.620110154151917,-0.104857943952084,-0.828343689441681,-0.55031955242157,-0.123329617083073,-0.862193644046783,-0.491336911916733,-0.160057082772255,-0.841977894306183,-0.515223205089569,-0.108836516737938,-0.804782330989838,-0.58350658416748,-0.0723380744457245,-0.759868323802948,-0.646039724349976,-0.134336933493614,-0.805177092552185,-0.577618896961212,-0.161597117781639,-0.680515646934509,-0.714692115783691, +0.0580207258462906,-0.841678559780121,-0.536852657794952,0.261916369199753,-0.918103933334351,-0.297464311122894,0.135648190975189,-0.799859821796417,-0.584656953811646,0.0427954085171223,-0.889951467514038,-0.454042881727219,-0.0314415283501148,-0.886155724525452,-0.462319672107697,0.0237065013498068,-0.889969229698181,-0.455404072999954,0.0980462655425072,-0.889492034912109,-0.446308046579361,-0.206637531518936,-0.871494174003601,-0.44474583864212,-0.179456576704979,-0.891142129898071,-0.416726529598236,-0.084591306746006,-0.896927297115326,-0.434011071920395,-0.126736089587212,-0.882669687271118,-0.45258417725563,-0.278704047203064,-0.775431096553802,-0.566595673561096,-0.214926481246948,-0.836927115917206,-0.503348410129547,-0.189189478754997,-0.842183887958527,-0.504909574985504,-0.228964313864708,-0.8044074177742,-0.548182487487793,-0.209612548351288,-0.840171992778778,-0.500173628330231,-0.206294566392899,-0.84467077255249,-0.493937164545059,-0.214292466640472,-0.827358424663544,-0.519188582897186,-0.204154521226883,-0.851408660411835,-0.483140051364899,-0.0120155606418848,-0.829112827777863,-0.558952212333679,-0.0468819476664066,-0.833412766456604,-0.550659000873566,-0.0560955256223679,-0.840981066226959,-0.538148820400238,-0.0110288141295314,-0.838377773761749,-0.544978082180023,0.00106979277916253,-0.79177725315094,-0.610809028148651,0.0254773981869221,-0.785727024078369,-0.618048667907715,0.0653675422072411,-0.774701833724976,-0.628938913345337,0.0339968949556351,-0.78466671705246,-0.618984997272491,-0.092488668859005,-0.847653567790985,-0.522426307201385,-0.127024054527283,-0.840840518474579,-0.526167333126068,-0.152033492922783,-0.833337604999542,-0.531445384025574,-0.110103920102119,-0.84819495677948,-0.51811420917511,-0.184596836566925,-0.831958830356598,-0.523229122161865,-0.223078012466431,-0.796594262123108,-0.561848640441895,-0.242129400372505,-0.773819327354431,-0.585300743579865,-0.209547102451324,-0.814511001110077,-0.540982365608215,-0.262257158756256,-0.774576783180237,-0.575545072555542,-0.277517855167389,-0.758924305438995,-0.58908212184906, +-0.236046209931374,-0.805669188499451,-0.543304145336151,-0.217924401164055,-0.816558063030243,-0.53454852104187,-0.122468717396259,-0.842793464660645,-0.524119079113007,-0.173766598105431,-0.829789042472839,-0.530335187911987,-0.193639859557152,-0.828274786472321,-0.525798916816711,-0.141449481248856,-0.84456342458725,-0.516434669494629,-0.0517520569264889,-0.832653045654297,-0.551371574401855,-0.0695453733205795,-0.837958514690399,-0.541284561157227,-0.0259124767035246,-0.836158633232117,-0.547875285148621,-0.00941755343228579,-0.828822553157806,-0.559432327747345,-0.351332068443298,-0.74857234954834,-0.562321186065674,-0.378016322851181,-0.730968594551086,-0.568144857883453,-0.309614419937134,-0.79760468006134,-0.517654001712799,-0.283631682395935,-0.806669533252716,-0.518495261669159,-0.48637655377388,-0.707156419754028,-0.513193488121033,-0.522063732147217,-0.677986741065979,-0.517478108406067,-0.428096443414688,-0.780153751373291,-0.45617264509201,-0.391927003860474,-0.797947466373444,-0.457900702953339,-0.175261482596397,-0.858835697174072,-0.481336355209351,-0.242510229349136,-0.840477526187897,-0.48454749584198,-0.271125584840775,-0.836870133876801,-0.475541055202484,-0.20088118314743,-0.860057771205902,-0.468985557556152,-0.0891272723674774,-0.842807710170746,-0.530783832073212,-0.109909869730473,-0.846175909042358,-0.521446228027344,-0.067546010017395,-0.846212089061737,-0.528547823429108,-0.0461824201047421,-0.840725123882294,-0.539489090442657,-0.650080978870392,-0.619847655296326,-0.439526706933975,-0.700527250766754,-0.550665080547333,-0.453904777765274,-0.596606433391571,-0.700453579425812,-0.391695648431778,-0.535561978816986,-0.75404942035675,-0.380240857601166,-0.254982471466064,-0.878659248352051,-0.403660863637924,-0.343359678983688,-0.84735894203186,-0.405076324939728,-0.395262032747269,-0.828089714050293,-0.39753657579422,-0.303134202957153,-0.869000375270844,-0.391085505485535,-0.420139729976654,-0.83852618932724,-0.346924602985382,-0.486550718545914,-0.80315774679184,-0.343811422586441,-0.380206137895584,-0.862169802188873,-0.334823161363602, +-0.318864434957504,-0.883500158786774,-0.343151777982712,-0.810995757579803,-0.456220716238022,-0.366262912750244,-0.837409377098083,-0.394971430301666,-0.377813816070557,-0.747957170009613,-0.576887786388397,-0.3282690346241,-0.710278451442719,-0.635126650333405,-0.303510755300522,-0.141708210110664,-0.867046713829041,-0.477649301290512,-0.172162085771561,-0.86765992641449,-0.466397345066071,-0.122516140341759,-0.871035754680634,-0.475695818662643,-0.092956617474556,-0.867172360420227,-0.489255726337433,-0.917528986930847,-0.334066212177277,-0.215732157230377,-0.928681254386902,-0.312564224004745,-0.199636399745941,-0.848595857620239,-0.490238100290298,-0.198876142501831,-0.821904242038727,-0.536152422428131,-0.192390576004982,-0.586059153079987,-0.767126500606537,-0.260867297649384,-0.646258175373077,-0.719039618968964,-0.255602121353149,-0.537139415740967,-0.804113805294037,-0.254719883203506,-0.466326862573624,-0.846394300460815,-0.257207870483398,-0.942463636398315,-0.331233143806458,-0.0452447682619095,-0.955073416233063,-0.295519024133682,-0.0224348232150078,-0.922344744205475,-0.384096145629883,-0.0418378747999668,-0.837176322937012,-0.538662195205688,-0.0947569757699966,-0.848635673522949,-0.490289896726608,-0.198578223586082,-0.756542384624481,-0.61996328830719,-0.208060443401337,-0.703920125961304,-0.678652822971344,-0.209587499499321,-0.817420244216919,-0.534651756286621,-0.214410588145256,-0.377468228340149,-0.859505474567413,-0.344627499580383,-0.29340723156929,-0.888261497020721,-0.353417009115219,-0.234385520219803,-0.899044454097748,-0.36984121799469,-0.314390778541565,-0.879543721675873,-0.35715726017952,-0.373540729284286,-0.892622828483582,-0.252372592687607,-0.453907489776611,-0.859277665615082,-0.235817983746529,-0.381028681993484,-0.889888644218445,-0.250829219818115,-0.298084408044815,-0.915337741374969,-0.270744383335114,-0.759589791297913,-0.650384128093719,-0.00490386271849275,-0.864328145980835,-0.492418050765991,0.102280914783478,-0.824196100234985,-0.559064149856567,0.0902666598558426, +-0.705647587776184,-0.707111418247223,-0.0453321896493435,-0.540629982948303,-0.829373002052307,-0.140924334526062,-0.651866555213928,-0.748797476291656,-0.119885303080082,-0.579553842544556,-0.805001199245453,-0.126848429441452,-0.466061174869537,-0.87152487039566,-0.15241838991642,-0.80975466966629,-0.574839174747467,0.117716982960701,-0.734176397323608,-0.67164158821106,0.0994120314717293,-0.59803181886673,-0.801472306251526,-0.000217705077375285,-0.677727282047272,-0.734918057918549,0.0241042599081993,-0.569653034210205,-0.816868722438812,-0.0906692668795586,-0.49596044421196,-0.86132276058197,-0.110210038721561,-0.386535733938217,-0.909968852996826,-0.150155961513519,-0.46117302775383,-0.878129661083221,-0.127310246229172,-0.380250215530396,-0.892555594444275,-0.242392852902412,-0.315442234277725,-0.911326944828033,-0.2645363509655,-0.234632343053818,-0.926244616508484,-0.294989079236984,-0.298012316226959,-0.915932476520538,-0.268805861473083,-0.22771218419075,-0.895346224308014,-0.38275620341301,-0.175329551100731,-0.898230791091919,-0.403039574623108,-0.118559308350086,-0.895853221416473,-0.428241401910782,-0.170034915208817,-0.898809432983398,-0.404016852378845,-0.318300127983093,-0.943637788295746,-0.0907348915934563,-0.289375782012939,-0.950977981090546,-0.109098941087723,-0.366677403450012,-0.929594695568085,-0.0374370105564594,-0.428018838167191,-0.902706444263458,0.0438287630677223,-0.257492065429688,-0.921820461750031,-0.289732694625854,-0.208215534687042,-0.927518367767334,-0.310412645339966,-0.125172600150108,-0.929291248321533,-0.347490638494492,-0.176824018359184,-0.931372344493866,-0.318243384361267,-0.187238276004791,-0.973572552204132,-0.130760386586189,-0.244072929024696,-0.967973828315735,0.0587803684175014,-0.207974553108215,-0.966188967227936,0.152399003505707,-0.214107513427734,-0.97434937953949,-0.0692898035049438,-0.135612800717354,-0.881136655807495,-0.452998280525208,-0.0949450060725212,-0.877890586853027,-0.469354391098022,-0.0327884778380394,-0.874768853187561,-0.483429878950119,-0.0743569880723953,-0.884722769260406,-0.460148453712463, +-0.141365468502045,-0.935490131378174,-0.323842793703079,-0.113320767879486,-0.928990006446838,-0.352329641580582,-0.150447860360146,-0.941437721252441,-0.301762282848358,-0.217688739299774,-0.951434791088104,-0.217677444219589,-0.166258692741394,-0.925419330596924,-0.340524762868881,-0.169464290142059,-0.936603426933289,-0.306685239076614,-0.103494875133038,-0.890385508537292,-0.443286031484604,-0.0729387700557709,-0.891260087490082,-0.447588384151459,-0.0768858194351196,-0.853124499320984,-0.516010701656342,-0.0550309233367443,-0.843961715698242,-0.533573269844055,0.00260406825691462,-0.824201047420502,-0.566291332244873,-0.0148952743038535,-0.842943012714386,-0.53779661655426,-0.121059887111187,-0.877995908260345,-0.463106542825699,-0.077069453895092,-0.884196937084198,-0.460712522268295,-0.124775648117065,-0.88403844833374,-0.45045205950737,-0.166489154100418,-0.873955607414246,-0.456599503755569,-0.047400239855051,-0.835893452167511,-0.546841382980347,-0.015941733494401,-0.827285826206207,-0.561555027961731,0.0193319264799356,-0.826762557029724,-0.56221878528595,-0.013880580663681,-0.83966076374054,-0.542933821678162,-0.0511004105210304,-0.842411279678345,-0.536406517028809,-0.027267524972558,-0.847662806510925,-0.529834270477295,-0.0684722140431404,-0.851206004619598,-0.520345985889435,-0.0886998400092125,-0.843821585178375,-0.529242336750031,-0.01002555526793,-0.792472422122955,-0.609825491905212,0.00280838645994663,-0.780757963657379,-0.624827265739441,0.0363568142056465,-0.77098023891449,-0.63582044839859,0.0257132668048143,-0.788325786590576,-0.614720523357391,0.049827441573143,-0.777989268302917,-0.626298606395721,0.0200263783335686,-0.77904200553894,-0.62665182352066,0.0402202233672142,-0.767519533634186,-0.6397625207901,0.0705804154276848,-0.761461794376373,-0.644355833530426,-0.00653320550918579,-0.819124639034271,-0.573578357696533,0.0169719606637955,-0.82320910692215,-0.567484676837921,-0.0246142894029617,-0.828792989253998,-0.559013724327087,-0.0428180024027824,-0.822081625461578,-0.567757427692413, +0.103915810585022,-0.757461130619049,-0.644557297229767,0.0708353295922279,-0.759013116359711,-0.647210597991943,0.0919243916869164,-0.743940412998199,-0.661893129348755,0.126785576343536,-0.735500693321228,-0.665555655956268,0.064756415784359,-0.773400366306305,-0.63060188293457,0.10737931728363,-0.760547995567322,-0.640340864658356,0.0830451101064682,-0.774706125259399,-0.626844465732574,0.0334075540304184,-0.78355199098587,-0.620427489280701,0.115604624152184,-0.701727509498596,-0.703003585338593,0.0818635746836662,-0.713046193122864,-0.696321427822113,0.0833600759506226,-0.700289249420166,-0.708975374698639,0.109094232320786,-0.687755584716797,-0.717698156833649,0.146792992949486,-0.718398213386536,-0.6799675822258,0.145417287945747,-0.702127754688263,-0.69704407453537,0.155234172940254,-0.682887017726898,-0.713840126991272,0.172187075018883,-0.674623429775238,-0.717798590660095,-0.011104361154139,-0.775350987911224,-0.631432950496674,0.130329668521881,-0.751135230064392,-0.647155344486237,0.016119547188282,-0.741415083408356,-0.670853078365326,-0.122202888131142,-0.759454727172852,-0.638979613780975,0.201139092445374,-0.653373062610626,-0.72982656955719,0.199347108602524,-0.641075491905212,-0.741136372089386,0.197914212942123,-0.626820147037506,-0.753609001636505,0.202264174818993,-0.631933152675629,-0.748164296150208,0.151585787534714,-0.643339216709137,-0.750424146652222,0.133276030421257,-0.668154716491699,-0.731988191604614,0.132916539907455,-0.654883027076721,-0.743949949741364,0.141826793551445,-0.636166095733643,-0.758404910564423,0.252572298049927,-0.645911753177643,-0.720420181751251,0.258481383323669,-0.641334295272827,-0.722411036491394,0.268322885036469,-0.690174639225006,-0.672057926654816,0.262594491243362,-0.699935913085938,-0.664179086685181,0.0569010190665722,-0.726822197437286,-0.684464573860168,0.0252031870186329,-0.734688520431519,-0.677936255931854,0.0221754610538483,-0.725377559661865,-0.687993943691254,0.0504399612545967,-0.712945103645325,-0.699403464794159,0.0676511600613594,-0.672664642333984,-0.736848413944244, +0.0485439859330654,-0.684518456459045,-0.727377474308014,0.0371371582150459,-0.688278794288635,-0.724495112895966,0.053612694144249,-0.672357857227325,-0.738282144069672,0.350386142730713,-0.750450670719147,-0.560404658317566,0.315105438232422,-0.741937577724457,-0.591808378696442,0.370487302541733,-0.804301917552948,-0.464583307504654,0.389781564474106,-0.818733870983124,-0.421598434448242,0.12434908747673,-0.655416190624237,-0.744960963726044,0.119202226400375,-0.643965423107147,-0.755711197853088,0.128387778997421,-0.651804089546204,-0.747440993785858,0.130921989679337,-0.636825859546661,-0.75981068611145,0.0898419916629791,-0.742755532264709,-0.663507759571075,0.063503697514534,-0.724096655845642,-0.686768770217896,0.00671935128048062,-0.70293128490448,-0.711226105690002,-0.000813257589470595,-0.725764691829681,-0.687942564487457,0.480350255966187,-0.808656871318817,-0.339613765478134,0.367612838745117,-0.856485545635223,-0.362344205379486,0.51387357711792,-0.808204114437103,-0.287645876407623,0.613278865814209,-0.749808847904205,-0.248346298933029,-0.0249900184571743,-0.724660158157349,-0.688653230667114,-0.0495811440050602,-0.740584850311279,-0.670131325721741,-0.0426088646054268,-0.771441996097565,-0.634871423244476,-0.023300439119339,-0.751853823661804,-0.658918082714081,-0.0492207854986191,-0.736968219280243,-0.674132823944092,-0.0532325990498066,-0.717964470386505,-0.694041311740875,-0.0503910705447197,-0.732415735721588,-0.678990423679352,-0.0423498414456844,-0.761821746826172,-0.64640086889267,-0.0448157452046871,-0.721709609031677,-0.690743565559387,-0.0186291262507439,-0.712916433811188,-0.701001584529877,-0.0479773879051208,-0.728087961673737,-0.683802604675293,-0.064307227730751,-0.740621566772461,-0.668838083744049,-0.0378985926508904,-0.721765756607056,-0.691099107265472,-0.0467204451560974,-0.741643249988556,-0.669165432453156,-0.0727535560727119,-0.738081037998199,-0.670778214931488,-0.058612335473299,-0.705360591411591,-0.706421256065369,-0.075994536280632,-0.76360559463501,-0.641195118427277, +-0.0461013428866863,-0.754206657409668,-0.655016779899597,-0.0841548591852188,-0.779833555221558,-0.620304584503174,-0.0958830416202545,-0.794903635978699,-0.599111557006836,-0.120932787656784,-0.775894165039063,-0.619163751602173,-0.135239481925964,-0.798771440982819,-0.586237609386444,-0.117291428148746,-0.842288553714752,-0.526110887527466,-0.111410595476627,-0.822153031826019,-0.558258056640625,-0.124839760363102,-0.840831160545349,-0.526704907417297,-0.08613371104002,-0.831050217151642,-0.54948753118515,-0.144666597247124,-0.87878292798996,-0.454766094684601,-0.141371533274651,-0.898514747619629,-0.415554314851761,-0.199131995439529,-0.833899557590485,-0.514740586280823,-0.145830899477005,-0.869457244873047,-0.471993297338486,-0.119319193065166,-0.901239991188049,-0.416568636894226,-0.176111787557602,-0.887168049812317,-0.426518142223358,-0.216253384947777,-0.920242786407471,-0.32617124915123,-0.140688836574554,-0.967291414737701,-0.211078599095345,-0.1026271879673,-0.979555428028107,-0.173028856515884,-0.189523905515671,-0.953614234924316,-0.233881592750549,-0.132115483283997,-0.99111145734787,-0.0156078292056918,-0.0059947669506073,-0.986268222332001,0.165042489767075,0.0636909678578377,-0.992579638957977,0.103581681847572,-0.0947593376040459,-0.995360314846039,0.016691641882062,-0.138736933469772,-0.907349944114685,-0.396822541952133,-0.0872865542769432,-0.929524421691895,-0.358281135559082,-0.120043858885765,-0.923812210559845,-0.363539099693298,-0.181249305605888,-0.888657510280609,-0.421232312917709,-0.0974550992250443,-0.979113399982452,-0.178436696529388,-0.0614579021930695,-0.984990358352661,-0.161297529935837,-0.124720260500908,-0.973920524120331,-0.189535483717918,-0.179600223898888,-0.952739834785461,-0.24501134455204,-0.0167411137372255,-0.998863339424133,-0.0446294173598289,0.0798022374510765,-0.99639880657196,0.0286542139947414,0.0684341788291931,-0.997651219367981,-0.00297933467663825,-0.00569304311648011,-0.998861134052277,-0.0473710037767887,0.518446862697601,-0.844278633594513,0.135670930147171, +0.631151556968689,-0.721161782741547,0.2856105864048,0.681814968585968,-0.618350505828857,0.390859365463257,0.601265907287598,-0.760804116725922,0.244246602058411,0.758854508399963,-0.572746276855469,0.310002565383911,0.805693447589874,-0.476286709308624,0.352149397134781,0.726417005062103,-0.647687792778015,0.229823797941208,0.661825478076935,-0.732576310634613,0.159119576215744,0.218729063868523,-0.974831402301788,0.0431455746293068,0.327189981937408,-0.939481556415558,0.101592697203159,0.251053303480148,-0.966989994049072,0.0436192527413368,0.157251551747322,-0.987437069416046,0.0154955526813865,0.957219898700714,-0.0216412600129843,0.288551092147827,0.925970315933228,-0.262713402509689,0.271220743656158,0.888996303081512,-0.374959200620651,0.26285195350647,0.938791334629059,-0.0768168866634369,0.335812300443649,0.779446959495544,-0.626036643981934,0.0232495348900557,0.946724891662598,-0.32178920507431,0.0127958254888654,0.941621243953705,-0.335256844758987,-0.0308591164648533,0.762547612190247,-0.646355211734772,0.0273149274289608,0.720085501670837,-0.650400519371033,0.241776794195175,0.568339467048645,-0.810432076454163,0.142091974616051,0.461131662130356,-0.882744908332825,0.0901055708527565,0.632427334785461,-0.747806668281555,0.202042073011398,0.0120249064639211,-0.997722029685974,-0.0663788244128227,0.0760620608925819,-0.995446741580963,-0.0574497282505035,0.0660392418503761,-0.995338320732117,-0.070288397371769,0.0237532462924719,-0.997214317321777,-0.0707066059112549,-0.0361407399177551,-0.987476229667664,-0.153572544455528,-0.0145230563357472,-0.988864541053772,-0.148108705878258,-0.0407049059867859,-0.987114906311035,-0.154749780893326,-0.0786463245749474,-0.982679188251495,-0.167799040675163,0.131439298391342,-0.991138756275177,-0.0191759392619133,0.213899910449982,-0.976836740970612,-0.00607616687193513,0.182089790701866,-0.983025670051575,-0.0224460233002901,0.107476159930229,-0.993800103664398,-0.02846559882164,0.337103545665741,-0.94146466255188,0.00238879979588091,0.536027908325195,-0.843538820743561,0.033411405980587, +0.505178391933441,-0.862967550754547,0.00904326420277357,0.303563117980957,-0.952811360359192,-0.000112718662421685,0.0932492688298225,-0.992257297039032,-0.0820367261767387,0.163618326187134,-0.98332005739212,-0.0794414207339287,0.148417189717293,-0.985145151615143,-0.0863794088363647,0.0779149830341339,-0.993133962154388,-0.0872596055269241,0.0673102959990501,-0.994773507118225,-0.0767802074551582,0.0455894470214844,-0.994641184806824,-0.0927936211228371,0.00673309667035937,-0.993734002113342,-0.111567728221416,0.0293579194694757,-0.994965851306915,-0.0958180204033852,0.282463073730469,-0.958247780799866,-0.0444503612816334,0.483132809400558,-0.873707354068756,-0.0567296668887138,0.470597088336945,-0.879628479480743,-0.0692251697182655,0.269365042448044,-0.96204400062561,-0.0437492430210114,0.730293154716492,-0.675864398479462,-0.0993944555521011,0.896417081356049,-0.399094581604004,-0.192769378423691,0.880714297294617,-0.422255873680115,-0.214574784040451,0.719400584697723,-0.688552618026733,-0.091423474252224,0.257831364870071,-0.960484623908997,-0.104844972491264,0.449004113674164,-0.882605910301208,-0.139291748404503,0.445558696985245,-0.883402824401855,-0.145178914070129,0.252822071313858,-0.96210789680481,-0.102124273777008,0.149566754698753,-0.981444895267487,-0.119982041418552,0.138977065682411,-0.98257577419281,-0.123410671949387,0.0702653303742409,-0.989710450172424,-0.124643862247467,0.0810079053044319,-0.989193379878998,-0.122205436229706,0.77023720741272,-0.300766438245773,-0.562382638454437,0.75910222530365,-0.504940688610077,-0.410851418972015,0.756787836551666,-0.503229975700378,-0.417171120643616,0.773999094963074,-0.287761956453323,-0.564019978046417,0.856403350830078,-0.439178913831711,-0.271468967199326,0.845037639141083,-0.449598789215088,-0.289434492588043,0.699914872646332,-0.698826849460602,-0.147513329982758,0.701110899448395,-0.696596205234528,-0.152306497097015,0.237427547574043,-0.953389465808868,-0.186217367649078,0.415058523416519,-0.87990665435791,-0.231280654668808,0.41410493850708,-0.879734873771667,-0.233631476759911, +0.235561907291412,-0.954710066318512,-0.181767553091049,0.217680647969246,-0.941878974437714,-0.255888998508453,0.37571257352829,-0.875005960464478,-0.305294692516327,0.366859555244446,-0.880412459373474,-0.300479650497437,0.213736191391945,-0.9443598985672,-0.250002443790436,0.521564722061157,-0.750236332416534,-0.406344622373581,0.600115656852722,-0.600071310997009,-0.528938293457031,0.59564608335495,-0.617911756038666,-0.513216137886047,0.515513122081757,-0.761738836765289,-0.392428576946259,0.192138761281967,-0.932009696960449,-0.307312279939651,0.322243243455887,-0.8775355219841,-0.3550925552845,0.249423652887344,-0.915534734725952,-0.315569370985031,0.143812462687492,-0.94679194688797,-0.28792878985405,0.445308059453964,-0.779822647571564,-0.439974337816238,0.506613552570343,-0.665551126003265,-0.548073470592499,0.495572775602341,-0.707080066204071,-0.504425823688507,0.409186005592346,-0.823076069355011,-0.39384338259697,0.337846487760544,-0.851761639118195,-0.400452375411987,0.443845927715302,-0.742146909236908,-0.502213835716248,0.444672137498856,-0.74981689453125,-0.489940136671066,0.394391864538193,-0.811881721019745,-0.430468589067459,0.512143492698669,-0.730542361736298,-0.451682239770889,0.490796536207199,-0.768299102783203,-0.410895735025406,0.503197729587555,-0.753107905387878,-0.423816859722137,0.473734170198441,-0.799974739551544,-0.368261277675629,0.342663496732712,-0.851875066757202,-0.396094471216202,0.211706086993217,-0.928440034389496,-0.305253624916077,0.240885481238365,-0.912957727909088,-0.32936692237854,0.349539130926132,-0.823608577251434,-0.446644335985184,0.107677765190601,-0.936413764953613,-0.333968251943588,0.0580485537648201,-0.945964694023132,-0.319031774997711,0.0880519822239876,-0.939982712268829,-0.329665541648865,0.127643644809723,-0.933373332023621,-0.335442006587982,0.596903681755066,-0.716340005397797,-0.361335217952728,0.60926741361618,-0.673158526420593,-0.41910719871521,0.598805904388428,-0.711009860038757,-0.368641287088394,0.60216873884201,-0.714402496814728,-0.356401294469833, +0.797188401222229,-0.533918917179108,-0.28181779384613,0.908641934394836,-0.371679931879044,-0.190325364470482,0.94987279176712,-0.310581386089325,-0.0357889235019684,0.867132067680359,-0.487715601921082,-0.101072005927563,0.0897229909896851,-0.943918645381927,-0.317753672599792,0.102256670594215,-0.940835952758789,-0.323065370321274,0.184869080781937,-0.924485862255096,-0.333390742540359,0.13302406668663,-0.938085675239563,-0.319843471050262,0.217418193817139,-0.941618502140045,-0.257067978382111,0.114922918379307,-0.962042391300201,-0.247522339224815,0.117696166038513,-0.960752427577972,-0.251201778650284,0.220593482255936,-0.940269649028778,-0.259290546178818,0.0131917549297214,-0.938731729984283,-0.34439617395401,-0.00657732086256146,-0.936761498451233,-0.349906891584396,0.0230543278157711,-0.935402154922485,-0.352833300828934,0.0521302372217178,-0.935868442058563,-0.348471939563751,0.0545522794127464,-0.940559089183807,-0.335220605134964,0.0229563768953085,-0.939941048622131,-0.340564131736755,0.0241662636399269,-0.938348233699799,-0.34484601020813,0.0566622614860535,-0.939023673534393,-0.339152067899704,-0.0424575954675674,-0.875656366348267,-0.481064766645432,-0.0105558102950454,-0.883427679538727,-0.468448728322983,-0.0323929898440838,-0.883896172046661,-0.466560065746307,-0.0642932057380676,-0.875630736351013,-0.478682935237885,-0.0285070948302746,-0.91061133146286,-0.412279725074768,-0.0519712343811989,-0.906431555747986,-0.419143170118332,-0.0406916402280331,-0.90558260679245,-0.422213584184647,-0.00627353508025408,-0.909839272499084,-0.414913505315781,0.237045049667358,-0.953020870685577,-0.188575774431229,0.125060364603996,-0.975653529167175,-0.180167213082314,0.130803421139717,-0.974598050117493,-0.181794166564941,0.241887733340263,-0.951849699020386,-0.188341528177261,0.0579207465052605,-0.955811858177185,-0.288217097520828,0.0211465619504452,-0.955454528331757,-0.294380187988281,0.0234413184225559,-0.954152405261993,-0.298401832580566,0.0607815124094486,-0.954495668411255,-0.291965126991272,-0.0526399314403534,-0.844480156898499,-0.532993674278259, +-0.0730485618114471,-0.842347860336304,-0.53396075963974,-0.0873242765665054,-0.83968186378479,-0.53601199388504,-0.0493876598775387,-0.846129775047302,-0.530683815479279,-0.0717441439628601,-0.818067908287048,-0.570629179477692,-0.0630364865064621,-0.835789144039154,-0.545419931411743,-0.0322277955710888,-0.858930706977844,-0.511076748371124,-0.0473712533712387,-0.841922521591187,-0.537515103816986,0.00290231104008853,-0.768425762653351,-0.63993239402771,0.0860705971717834,-0.76970899105072,-0.632566273212433,0.0724268108606339,-0.760138332843781,-0.645712077617645,-0.0125644588842988,-0.73958158493042,-0.672949552536011,-0.00248614884912968,-0.93449342250824,-0.35597175359726,-0.0340014174580574,-0.929274916648865,-0.367820799350739,-0.0305352918803692,-0.926891207695007,-0.374085932970047,0.00024729673168622,-0.932150661945343,-0.362070590257645,-0.0704334080219269,-0.839186728000641,-0.539263188838959,-0.0849117860198021,-0.854854166507721,-0.511873245239258,-0.0477739199995995,-0.883422791957855,-0.466135233640671,-0.038830928504467,-0.867944419384003,-0.495140999555588,0.602675318717957,-0.776211977005005,-0.185141667723656,0.691202700138092,-0.707224130630493,-0.148569405078888,0.792879164218903,-0.6044802069664,-0.0771126821637154,0.702337324619293,-0.698763489723206,-0.135837659239769,0.666211366653442,-0.745694398880005,-0.0101148784160614,0.753506660461426,-0.655454277992249,0.0510628186166286,0.796567380428314,-0.604207992553711,0.0203262139111757,0.731540560722351,-0.681472837924957,-0.0210542194545269,0.74822610616684,-0.655188322067261,-0.104335881769657,0.791644632816315,-0.605908870697021,-0.0785699337720871,0.843120872974396,-0.53583151102066,-0.0450757294893265,0.826002538204193,-0.562644302845001,-0.0339295640587807,0.840745329856873,-0.541410684585571,-0.00468658236786723,0.856399416923523,-0.515216529369354,-0.0336448028683662,0.869856178760529,-0.489761114120483,-0.0590296313166618,0.858596742153168,-0.511869609355927,-0.0283054448664188,0.836722016334534,-0.529337227344513,-0.140350863337517, +0.856479644775391,-0.490677088499069,-0.160245344042778,0.884161293506622,-0.434176653623581,-0.172480970621109,0.877090513706207,-0.459741920232773,-0.139103248715401,0.885159075260162,-0.428721487522125,-0.18080747127533,0.893231332302094,-0.405106723308563,-0.195003360509872,0.895764172077179,-0.411613553762436,-0.167871400713921,0.881733000278473,-0.442815870046616,-0.162668585777283,0.862770199775696,-0.410897046327591,-0.294603496789932,0.865472912788391,-0.398775011301041,-0.303208261728287,0.881039202213287,-0.364570021629333,-0.301427692174911,0.882796049118042,-0.371099829673767,-0.288021266460419,0.877352476119995,-0.437333703041077,-0.197464257478714,0.880640387535095,-0.432111173868179,-0.194300264120102,0.873630702495575,-0.442447662353516,-0.202507823705673,0.862509250640869,-0.459313958883286,-0.212387442588806,0.840812861919403,-0.458845466375351,-0.287219136953354,0.853592991828918,-0.442436248064041,-0.275007963180542,0.810415327548981,-0.501536667346954,-0.30280065536499,0.811439335346222,-0.498525202274323,-0.305022776126862,0.896318197250366,-0.270269989967346,-0.351522147655487,0.878413796424866,-0.300430595874786,-0.371659517288208,0.890066504478455,-0.272071152925491,-0.365730673074722,0.920743107795715,-0.201129168272018,-0.334334135055542,0.903126537799835,-0.291886627674103,-0.314903944730759,0.89985716342926,-0.271994471549988,-0.340992748737335,0.946800887584686,-0.161828264594078,-0.278171986341476,0.935925781726837,-0.23293562233448,-0.264166414737701,0.959279119968414,-0.181456983089447,-0.216464802622795,0.980137288570404,-0.101763427257538,-0.170221447944641,0.958554148674011,-0.178909316658974,-0.221732929348946,0.936233520507813,-0.233717486262321,-0.262379765510559,0.836915969848633,-0.427533060312271,-0.341741412878036,0.881471991539001,-0.336453497409821,-0.331370204687119,0.892810523509979,-0.292434006929398,-0.342595607042313,0.846225559711456,-0.397333204746246,-0.355005145072937,0.784435272216797,-0.547699093818665,-0.291010290384293,0.782116293907166,-0.546324253082275,-0.299706697463989, +0.755923688411713,-0.571982026100159,-0.318459063768387,0.760398924350739,-0.571029484272003,-0.309384673833847,0.979312419891357,-0.0288419779390097,-0.200288385152817,0.981605291366577,-0.0465345308184624,-0.185164257884026,0.985649883747101,0.0627706274390221,-0.15669772028923,0.982733547687531,0.0824423730373383,-0.165644928812981,0.911767542362213,-0.331433594226837,-0.242552623152733,0.906801104545593,-0.332732826471329,-0.258845180273056,0.960687041282654,-0.199734896421432,-0.192837655544281,0.963978707790375,-0.202132418751717,-0.172880724072456,0.770485281944275,-0.607200264930725,-0.194062799215317,0.770009517669678,-0.588129997253418,-0.247362986207008,0.847560524940491,-0.49977108836174,-0.17852196097374,0.851385593414307,-0.51078999042511,-0.11931523680687,0.953038573265076,-0.164042457938194,-0.254573285579681,0.907324850559235,-0.267497718334198,-0.324355483055115,0.888682305812836,-0.284074515104294,-0.359924525022507,0.927963674068451,-0.214949235320091,-0.304434269666672,0.675720989704132,-0.713993787765503,-0.183341562747955,0.684620976448059,-0.693317830562592,-0.224954575300217,0.728349924087524,-0.657640814781189,-0.192392826080322,0.720919489860535,-0.676338851451874,-0.151132091879845,0.863965094089508,-0.42506530880928,-0.269970059394836,0.801615595817566,-0.511399269104004,-0.309650242328644,0.807107627391815,-0.49177959561348,-0.3266960978508,0.857842683792114,-0.425251454114914,-0.288560479879379,0.664201974868774,-0.718440294265747,-0.206589445471764,0.670734107494354,-0.703343510627747,-0.235422551631927,0.671968996524811,-0.711396217346191,-0.205847516655922,0.661943376064301,-0.728415668010712,-0.176753297448158,0.791580200195313,-0.53009432554245,-0.303975015878677,0.808116436004639,-0.508978128433228,-0.296461135149002,0.77083683013916,-0.557642698287964,-0.30796954035759,0.76037460565567,-0.568470656871796,-0.314120203256607,0.73692923784256,-0.589732527732849,-0.330379873514175,0.731676518917084,-0.600329637527466,-0.322883546352386,0.710694313049316,-0.626945912837982,-0.319143325090408, +0.716875672340393,-0.615731716156006,-0.327053397893906,0.7645183801651,-0.592745900154114,-0.253306061029434,0.727626085281372,-0.633523166179657,-0.263075530529022,0.742632508277893,-0.610774576663971,-0.274684101343155,0.776638925075531,-0.573861002922058,-0.259837567806244,0.213439121842384,-0.583761751651764,-0.783368289470673,0.230126246809959,-0.624199986457825,-0.746603190898895,0.291066527366638,-0.638700067996979,-0.712279856204987,0.300787389278412,-0.6098353266716,-0.733231067657471,0.703089535236359,-0.631275117397308,-0.327348232269287,0.69808691740036,-0.639287173748016,-0.322469800710678,0.66072553396225,-0.678875923156738,-0.320264548063278,0.659740626811981,-0.676506459712982,-0.32723268866539,0.736459255218506,-0.612977623939514,-0.286157637834549,0.744941353797913,-0.604664146900177,-0.281857818365097,0.719692289829254,-0.634257018566132,-0.282419949769974,0.712668240070343,-0.639886081218719,-0.287488907575607,0.702815592288971,-0.663829684257507,-0.255695879459381,0.695916056632996,-0.670160293579102,-0.258042871952057,0.709586322307587,-0.65264219045639,-0.265603959560394,0.719944059848785,-0.643261730670929,-0.260566592216492,0.703381657600403,-0.653778970241547,-0.278975516557693,0.70941436290741,-0.648415505886078,-0.276204109191895,0.675506889820099,-0.684327661991119,-0.274565190076828,0.66676789522171,-0.690265834331512,-0.28098726272583,0.0624380931258202,-0.97322815656662,-0.221197694540024,0.0199117306619883,-0.973616719245911,-0.227319404482841,0.0254098121076822,-0.972911596298218,-0.229777202010155,0.0682718008756638,-0.972309350967407,-0.223503082990646,-0.0666044801473618,-0.922724306583405,-0.379662543535233,-0.0324586778879166,-0.938255786895752,-0.344416260719299,-0.0313746444880962,-0.928248107433319,-0.370636135339737,-0.0659081414341927,-0.9114128947258,-0.406180560588837,0.0721650421619415,-0.985634922981262,-0.152695789933205,0.0250427424907684,-0.987125635147095,-0.157974183559418,0.0368837416172028,-0.986863791942596,-0.15728771686554,0.0835561603307724,-0.984877288341522,-0.151773601770401, +-0.101008728146553,-0.879422724246979,-0.4652019739151,-0.101860232651234,-0.893522918224335,-0.437311261892319,-0.0611043497920036,-0.916930615901947,-0.394340604543686,-0.0602534748613834,-0.904904186725616,-0.421328753232956,-0.00916946399956942,-0.980613470077515,-0.195737347006798,-0.0462760254740715,-0.977189242839813,-0.207267165184021,-0.0272798668593168,-0.978044629096985,-0.206602841615677,0.0049170907586813,-0.980467438697815,-0.196619972586632,0.986701130867004,0.117172725498676,0.112657122313976,0.988746702671051,0.115704290568829,0.0948283672332764,0.990468740463257,0.114227421581745,0.076966181397438,0.988743841648102,0.115730747580528,0.0948259010910988,0.985266208648682,0.11811900138855,0.123686298727989,0.987959682941437,0.116385132074356,0.101933181285858,0.985269963741302,0.118084482848644,0.123689524829388,0.982100665569305,0.119759194552898,0.145383074879646,0.990517318248749,0.11431934684515,0.0762007385492325,0.989055395126343,0.115553647279739,0.0917438492178917,0.984084725379944,0.118781894445419,0.132167130708694,0.988229095935822,0.116194881498814,0.0995079874992371,0.99091637134552,0.113915525376797,0.0714700445532799,0.988486409187317,0.115943983197212,0.09721939265728,0.978278338909149,0.121293790638447,0.168105736374855,0.988487362861633,0.115935660898685,0.0972201451659203,0.993605375289917,0.109913028776646,0.025839252397418,0.972083449363708,0.123974643647671,0.199209123849869,0.972132623195648,0.123519465327263,0.199251353740692,0.972119450569153,0.123642131686211,0.199240028858185,0.975937724113464,0.122535705566406,0.18036225438118,0.983043551445007,0.11933446675539,0.139228343963623,0.988411486148834,0.116062581539154,0.0978375747799873,0.983027994632721,0.1194778829813,0.139215067028999,0.979244589805603,0.120956815779209,0.162632957100868,0.982889533042908,0.119305200874805,0.140336915850639,0.986031591892242,0.117578491568565,0.117970108985901,0.982891738414764,0.119285196065903,0.140338808298111,0.989913582801819,0.114719845354557,0.0831297338008881,0.988531231880188,0.115848727524281,0.0968766361474991, +0.989915013313293,0.114706732332706,0.0831309407949448,0.991106867790222,0.113557584583759,0.0693678930401802,0.98858243227005,0.11651112139225,0.0955507457256317,0.98329770565033,0.119727857410908,0.13708008825779,0.976287543773651,0.12265869230032,0.178374573588371,0.983303248882294,0.11967671662569,0.137084737420082,0.994237184524536,0.106087565422058,-0.0154290189966559,0.993077456951141,0.111046493053436,0.0382872447371483,0.989036023616791,0.115594796836376,0.0919000133872032,0.993089020252228,0.11093944311142,0.0382971242070198,0.983936369419098,0.119105212390423,0.132978439331055,0.98419326543808,0.120288655161858,0.129977837204933,0.983793556690216,0.120410956442356,0.132859081029892,0.983525454998016,0.119250625371933,0.135856226086617,0.984399437904358,0.118857175111771,0.129733443260193,0.977027118206024,0.12211412191391,0.174659743905067,0.967677712440491,0.12457712739706,0.219272434711456,0.977096259593964,0.121475636959076,0.17471869289875,0.985669076442719,0.117446437478065,0.121090307831764,0.990828156471252,0.113744862377644,0.0729501098394394,0.985648214817047,0.117639884352684,0.121072463691235,0.978166043758392,0.121056012809277,0.168927997350693,0.989267826080322,0.115289688110352,0.0897644087672234,0.989773988723755,0.114843212068081,0.0846080034971237,0.990251243114471,0.114414252340794,0.079447403550148,0.989771962165833,0.114862561225891,0.0846062153577805,0.647670269012451,-0.758289992809296,-0.0742932856082916,0.710048496723175,-0.703027844429016,-0.0397865101695061,0.613689303398132,-0.775261461734772,-0.149515897035599,0.533121705055237,-0.826685845851898,-0.179921582341194,0.988281071186066,0.118430644273758,0.0963059142231941,0.98689341545105,0.119385115802288,0.108576186001301,0.988271176815033,0.118519067764282,0.0962978303432465,0.989507973194122,0.117540344595909,0.0840132385492325,0.988573551177979,0.118360482156277,0.0933432132005692,0.991848230361938,0.115138322114944,0.0545917935669422,0.988573312759399,0.118362948298454,0.0933429896831512,0.983795583248138,0.121386148035526,0.13195338845253, +0.988156974315643,0.117051996290684,0.0992199555039406,0.987585365772247,0.117470368742943,0.104287125170231,0.988157331943512,0.117048740386963,0.0992202535271645,0.988752484321594,0.116173677146435,0.0941924229264259,0.984821140766144,0.119116455316544,0.126248300075531,0.984864413738251,0.118719071149826,0.126285046339035,0.984815061092377,0.119172155857086,0.126243129372597,0.988731920719147,0.116405315697193,0.0941221117973328,0.988681256771088,0.116448454558849,0.0946010872721672,0.988732755184174,0.116397857666016,0.0941227823495865,0.988781809806824,0.116369374096394,0.0936424732208252,0.982268989086151,0.119925379753113,0.144102603197098,0.994238197803497,0.106500893831253,-0.012169967405498,0.981618940830231,0.0903148651123047,-0.168129503726959,0.994248747825623,0.106403306126595,-0.0121607780456543,0.97680789232254,0.122996315360069,0.175266787409782,0.976817786693573,0.122905530035496,0.175275295972824,0.976805448532104,0.123017936944962,0.175264745950699,0.93847793340683,-0.328590154647827,0.10624422878027,0.938206255435944,-0.327937602996826,0.110572032630444,0.947046995162964,-0.306345164775848,0.0962011590600014,0.947227358818054,-0.307133823633194,0.0918101519346237,0.923698902130127,-0.366280645132065,0.112334027886391,0.923330783843994,-0.363359481096268,0.124218136072159,0.92997807264328,-0.351594895124435,0.107339784502983,0.930026471614838,-0.354879826307297,0.0954520255327225,0.913968741893768,-0.379723191261292,0.143078416585922,0.91503494977951,-0.384962409734726,0.120479248464108,0.917574644088745,-0.371632486581802,0.141230240464211,0.916593551635742,-0.364921927452087,0.163365259766579,0.91594785451889,-0.391101509332657,0.089884839951992,0.916149854660034,-0.391074508428574,0.0879229530692101,0.915069401264191,-0.393114030361176,0.090051680803299,0.915004312992096,-0.392828911542892,0.0919377282261848,0.926482737064362,-0.375465333461761,0.02560755610466,0.926949381828308,-0.374632567167282,0.0203843526542187,0.921466112136841,-0.387612521648407,0.025626553222537,0.921137273311615,-0.388010948896408,0.030881630256772, +0.940998435020447,-0.338059216737747,0.0154274394735694,0.941551029682159,-0.336652487516403,0.0121163325384259,0.933831572532654,-0.357451647520065,0.0136767337098718,0.933335602283478,-0.358598053455353,0.0170911122113466,0.958649933338165,-0.26463970541954,-0.104672558605671,0.958501756191254,-0.261309504508972,-0.113982178270817,0.949515283107758,-0.293931931257248,-0.109657324850559,0.949630498886108,-0.296934247016907,-0.100159734487534,0.976935505867004,-0.203278347849846,-0.0653833150863647,0.97729879617691,-0.205508530139923,-0.0515104494988918,0.968969762325287,-0.236105218529701,-0.0731572732329369,0.968262135982513,-0.234302088618279,-0.0870110988616943,0.99024099111557,-0.137820899486542,-0.0206929408013821,0.990567564964294,-0.131172046065331,-0.0396206229925156,0.984383702278137,-0.173296123743057,-0.0309378113597631,0.98366105556488,-0.179641216993332,-0.0118384109809995,0.996639370918274,-0.0729757249355316,0.0372081249952316,0.997558951377869,-0.0668167695403099,0.0202897451817989,0.993599534034729,-0.110134810209274,0.0251067224889994,0.992332220077515,-0.116210639476776,0.0420960262417793,0.994724929332733,-0.00927828904241323,0.10215862840414,0.995161294937134,-0.00771627807989717,0.0979512259364128,0.994911015033722,-0.0474123507738113,0.0889054536819458,0.994443714618683,-0.0491705238819122,0.0930801928043365,0.98538875579834,0.110451020300388,0.129650771617889,0.992148160934448,0.07948087900877,0.0965651124715805,0.99053955078125,0.0727520063519478,0.116355046629906,0.983291447162628,0.103913933038712,0.149465218186378,0.967985153198242,0.176814123988152,0.178161785006523,0.975251495838165,0.136733040213585,0.173748537898064,0.976064741611481,0.140612095594406,0.16590915620327,0.968642234802246,0.180850744247437,0.170367926359177,0.955954909324646,0.208783179521561,0.206300735473633,0.959675252437592,0.217190220952034,0.17847104370594,0.971729397773743,0.190714672207832,0.139175817370415,0.969000339508057,0.182053342461586,0.167017728090286,0.942632913589478,0.318231582641602,0.100855633616447, +0.942999720573425,0.313389748334885,0.111974775791168,0.954107582569122,0.276968538761139,0.113873168826103,0.953910946846008,0.28192800283432,0.102813929319382,0.910246312618256,0.353086829185486,0.216290444135666,0.912788093090057,0.355387210845947,0.201290786266327,0.927420675754547,0.328358888626099,0.179084688425064,0.925314486026764,0.325759589672089,0.194097220897675,0.893522799015045,0.445675402879715,0.0546847842633724,0.894474387168884,0.440578997135162,0.0761942490935326,0.906625270843506,0.411502212285995,0.0932554677128792,0.905850648880005,0.417435228824615,0.0719880610704422,0.84933465719223,0.490382969379425,0.195333495736122,0.862264692783356,0.469184041023254,0.19069866836071,0.860866904258728,0.470393687486649,0.194005265831947,0.847897112369537,0.491594880819321,0.198506906628609,0.83648693561554,0.530133664608002,0.138736739754677,0.846041083335876,0.514963269233704,0.137939736247063,0.845088362693787,0.516221165657043,0.139073953032494,0.835605800151825,0.531254410743713,0.139756664633751,0.81511652469635,0.553459763526917,0.171076983213425,0.822304487228394,0.542283535003662,0.172464340925217,0.821633338928223,0.543340146541595,0.17233769595623,0.814594209194183,0.554286658763885,0.170887663960457,0.804397463798523,0.567756056785583,0.174922466278076,0.809337496757507,0.561879575252533,0.171068325638771,0.807681024074554,0.562714695930481,0.176079005002975,0.802753984928131,0.568524301052094,0.179906144738197,0.827430069446564,0.553997039794922,0.0919069647789001,0.818131327629089,0.562596142292023,0.118940003216267,0.825077891349792,0.557713389396667,0.0905668213963509,0.8345587849617,0.547184348106384,0.0640385746955872,0.860105574131012,0.509772956371307,0.0187079329043627,0.847730457782745,0.529451012611389,0.032167449593544,0.85252046585083,0.522537231445313,0.0127913700416684,0.865062057971954,0.501664876937866,-4.03864614781924e-05,0.86174875497818,0.497752696275711,0.0981391370296478,0.863705217838287,0.501524031162262,0.0498694702982903,0.852868795394897,0.514546930789948,0.0886363089084625, +0.848531186580658,0.511334538459778,0.136131718754768,0.908047378063202,0.41510796546936,0.0559937544167042,0.887750327587128,0.455542773008347,0.0661842077970505,0.896891295909882,0.440489709377289,0.0394321084022522,0.916582882404327,0.398717045783997,0.0300093237310648,0.980133056640625,0.121505104005337,0.156766772270203,0.972123861312866,0.124569185078144,0.198640257120132,0.980130136013031,0.121531672775745,0.156764283776283,0.986348927021027,0.118244618177414,0.114604540169239,0.987493276596069,0.117485202848911,0.105139441788197,0.987497270107269,0.117448501288891,0.105142869055271,0.987497448921204,0.117446646094322,0.105143047869205,0.990959584712982,0.114597126841545,0.0697612538933754,0.991451561450958,0.114050328731537,0.0633754283189774,0.991903185844421,0.11349306255579,0.0569875165820122,0.991455316543579,0.114016108214855,0.0633786171674728,0.986039876937866,0.118477545678616,0.116997636854649,0.979426681995392,0.121809646487236,0.160890698432922,0.970862984657288,0.124991394579411,0.204456448554993,0.97942042350769,0.121866799890995,0.160885334014893,0.961048066616058,0.127754598855972,0.245082378387451,0.961062371730804,0.127623185515404,0.245094731450081,0.961054503917694,0.12769527733326,0.245087951421738,0.921065390110016,0.368732482194901,0.125199884176254,0.900937676429749,0.414702624082565,0.127800911664963,0.911105990409851,0.398966163396835,0.103498034179211,0.930482864379883,0.352019101381302,0.101411156356335,0.990910708904266,0.114447951316833,0.0706937238574028,0.99090713262558,0.114480808377266,0.0706906318664551,0.990890800952911,0.114631816744804,0.0706764459609985,0.959553778171539,0.255837947130203,0.117488592863083,0.955925762653351,0.283937722444534,0.0747350230813026,0.952065289020538,0.292390793561935,0.089885450899601,0.955199837684631,0.264750272035599,0.132290482521057,0.969527304172516,0.172242864966393,0.174209952354431,0.962778389453888,0.221606731414795,0.154752150177956,0.966569662094116,0.212382107973099,0.143656358122826,0.973047256469727,0.163164779543877,0.162960916757584, +0.986141085624695,0.0834001526236534,0.143423154950142,0.98525333404541,0.0866785869002342,0.147522032260895,0.98396897315979,0.131809741258621,0.120130375027657,0.984905958175659,0.128225833177567,0.116268709301949,0.978890359401703,0.121914304792881,0.164044931530952,0.97007691860199,0.125000774860382,0.20814847946167,0.978903234004974,0.121795117855072,0.164056152105331,0.985726058483124,0.118472240865231,0.119618155062199,0.978349030017853,0.0019675106741488,0.206952795386314,0.979594647884369,-0.00311117456294596,0.200959414243698,0.983181476593018,0.0435373187065125,0.177366271615028,0.981826543807983,0.0483875162899494,0.183508843183517,0.975956320762634,0.122930020093918,0.179993480443954,0.96528172492981,0.126296356320381,0.22864918410778,0.975951552391052,0.122973330318928,0.179989367723465,0.984196960926056,0.119267106056213,0.130888134241104,0.935250997543335,-0.0798235088586807,0.34486785531044,0.951440691947937,-0.0515049435198307,0.303492695093155,0.956321537494659,-0.0624887272715569,0.285559594631195,0.940779685974121,-0.090237483382225,0.326788514852524,0.97550106048584,0.12264559417963,0.182635203003883,0.961174011230469,0.127137631177902,0.244909211993217,0.975471913814545,0.122915007174015,0.182609841227531,0.985785961151123,0.118013940751553,0.119577527046204,0.834048986434937,-0.54731947183609,0.0693088918924332,0.822202086448669,-0.569091081619263,0.0109082367271185,0.830063879489899,-0.557663261890411,-0.00237540155649185,0.842649281024933,-0.535441815853119,0.0569589622318745,0.98875880241394,0.11660685390234,0.0935889482498169,0.988680005073547,0.116635151207447,0.0943828001618385,0.988762199878693,0.116576097905636,0.0935918092727661,0.988841116428375,0.116541348397732,0.0927985012531281,0.987881422042847,0.117251247167587,0.101697660982609,0.986043512821198,0.11847060918808,0.116973839700222,0.987879872322083,0.117265433073044,0.101696334779263,0.989486038684845,0.115985386073589,0.0863989889621735,0.994075834751129,0.105334460735321,-0.0267968736588955,0.994073450565338,0.10535579174757,-0.0267988499253988, +0.994074046611786,0.105350323021412,-0.0267983414232731,0.988079130649567,0.11630380153656,0.100862644612789,0.98469614982605,0.118486948311329,0.127806022763252,0.980587184429169,0.120538242161274,0.154658615589142,0.984687089920044,0.118570007383823,0.127798333764076,0.99198979139328,0.113184228539467,0.0560860186815262,0.989678561687469,0.115544229745865,0.0847685560584068,0.986559391021729,0.117652520537376,0.113395005464554,0.989709436893463,0.115260526537895,0.0847950130701065,0.983960270881653,0.118838310241699,0.133040189743042,0.983963370323181,0.11880948394537,0.133042857050896,0.983954548835754,0.118891075253487,0.13303530216217,0.954172253608704,0.128199741244316,0.270407825708389,0.954170763492584,0.128212288022041,0.270406603813171,0.954172074794769,0.128201127052307,0.270407676696777,0.974592328071594,0.123300090432167,0.18699423968792,0.974591314792633,0.123310543596745,0.186993315815926,0.974593639373779,0.123288467526436,0.186995297670364,0.987406849861145,0.11702274531126,0.106458388268948,0.987457990646362,0.116551272571087,0.106502175331116,0.987453997135162,0.116587199270725,0.106498830020428,0.990149199962616,0.116499148309231,0.0776706263422966,0.990032076835632,0.117553748190403,0.0775744318962097,0.990136861801147,0.116610661149025,0.0776605680584908,0.987158536911011,0.119359388947487,0.106166757643223,0.993937373161316,0.109215542674065,-0.0126686599105597,0.987164437770844,0.119306050240993,0.106171645224094,0.966302692890167,0.127706497907639,0.223495379090309,0.993826448917389,0.10429635643959,-0.0378344878554344,0.99325555562973,0.102739274501801,-0.0537403784692287,0.992428362369537,0.101178914308548,-0.0696346610784531,0.993253409862518,0.102759003639221,-0.0537422113120556,0.994075417518616,0.108442611992359,0.00737451855093241,0.991846561431885,0.100201539695263,-0.0787404179573059,0.994095742702484,0.108254283666611,0.00739197712391615,0.988886058330536,0.115629620850086,0.0934566780924797,0.988682687282562,0.118277318775654,0.0922883599996567,0.980166554450989,0.12313337624073,0.155279561877251, +0.988684594631195,0.118259370326996,0.0922900140285492,0.993180215358734,0.112945221364498,0.0289212036877871,0.988050162792206,0.116286009550095,0.101165361702442,0.988895952701569,0.11561457067728,0.093370608985424,0.989676833152771,0.114969737827778,0.0855669304728508,0.988892495632172,0.11564663797617,0.0933676213026047,0.987895429134369,0.0981039702892303,-0.120160043239594,0.987895667552948,0.0981008559465408,-0.120159730315208,0.987895727157593,0.0981003418564796,-0.120159678161144,0.714328467845917,-0.698845088481903,0.0367501303553581,0.718678653240204,-0.694737911224365,0.028988990932703,0.736278831958771,-0.673361361026764,0.0669174641370773,0.731483101844788,-0.67780989408493,0.0742041394114494,0.922854423522949,-0.373094081878662,0.0956059992313385,0.917739510536194,-0.396537899971008,0.02262550778687,0.924752533435822,-0.380457669496536,0.00920486636459827,0.930531859397888,-0.356662720441818,0.0830780491232872,0.987315058708191,0.116655237972736,0.107705645263195,0.987291812896729,0.116870366036892,0.107685647904873,0.987314641475677,0.116659469902515,0.107705250382423,0.965462267398834,-0.198386684060097,0.168895125389099,0.971261560916901,-0.221554219722748,0.0869749337434769,0.976575613021851,-0.202123761177063,0.0737976282835007,0.971385955810547,-0.178707465529442,0.156438603997231,0.578346848487854,-0.811042368412018,0.0878938436508179,0.575769782066345,-0.812153577804565,0.0943173468112946,0.592766046524048,-0.799619197845459,0.0961124449968338,0.595740795135498,-0.798119187355042,0.0899926871061325,0.972045958042145,0.0304522942751646,0.232807472348213,0.988257229328156,-0.00304067507386208,0.152769356966019,0.989260494709015,0.0071673858910799,0.145987510681152,0.973237693309784,0.0407128259539604,0.226165398955345,0.545079290866852,-0.829110324382782,0.12435719370842,0.54101574420929,-0.829219341278076,0.140347018837929,0.551976263523102,-0.824196934700012,0.126576781272888,0.55704665184021,-0.823031425476074,0.110987842082977,0.94606876373291,0.260204285383224,0.192996561527252,0.947707116603851,0.246609061956406,0.202571988105774, +0.968553304672241,0.217436641454697,0.120936639606953,0.966535806655884,0.231041088700294,0.111483432352543,0.530325412750244,-0.795628607273102,0.292797118425369,0.52110493183136,-0.812026143074036,0.262799113988876,0.526071846485138,-0.818083643913269,0.232352182269096,0.533471167087555,-0.804032444953918,0.262564986944199,0.569088160991669,-0.734353721141815,0.369950592517853,0.544833540916443,-0.764181911945343,0.345228046178818,0.546730101108551,-0.776143729686737,0.314144998788834,0.569247126579285,-0.748700320720673,0.339714139699936,0.762100160121918,0.551636576652527,0.338969707489014,0.752850115299225,0.578551173210144,0.313839495182037,0.806837618350983,0.517201900482178,0.285508573055267,0.815800368785858,0.488772541284561,0.309145927429199,0.637577056884766,-0.607393622398376,0.473886579275131,0.599046289920807,-0.656801342964172,0.457990795373917,0.59921669960022,-0.679456949234009,0.423411846160889,0.63634866476059,-0.632799744606018,0.441162914037704,0.59912246465683,0.669916093349457,0.438479989767075,0.657510936260223,0.62414425611496,0.422046512365341,0.66217303276062,0.606121182441711,0.440617740154266,0.603223443031311,0.652945101261139,0.458021998405457,0.717993438243866,-0.559180438518524,0.414490789175034,0.675081729888916,-0.610169410705566,0.414678245782852,0.67084789276123,-0.633332431316376,0.385814964771271,0.712835431098938,-0.58452695608139,0.38754865527153,0.440204977989197,0.853075563907623,0.280145823955536,0.50062483549118,0.809025645256042,0.307980984449387,0.510013461112976,0.784207820892334,0.353418111801147,0.447237282991409,0.832205176353455,0.327739804983139,0.771489143371582,-0.38851535320282,0.503845453262329,0.77169668674469,-0.351411312818527,0.53008896112442,0.725567400455475,-0.421160191297531,0.544220566749573,0.725401937961578,-0.456217110157013,0.515420138835907,0.387087404727936,0.898392856121063,0.207493722438812,0.435360044240952,0.865462481975555,0.247863784432411,0.443384319543839,0.845469057559967,0.297644823789597,0.391770213842392,0.882826864719391,0.259100168943405, +0.858480751514435,-0.262424528598785,0.440617978572845,0.858853340148926,-0.237547427415848,0.453808516263962,0.81681215763092,-0.296499162912369,0.494879901409149,0.816360652446747,-0.320580810308456,0.480399012565613,0.323339134454727,0.925162971019745,0.198809623718262,0.347818553447723,0.906265377998352,0.240219324827194,0.346809566020966,0.89460825920105,0.281778633594513,0.319513648748398,0.91647082567215,0.240816056728363,0.929603755474091,-0.142125681042671,0.340054780244827,0.928212404251099,-0.100704737007618,0.358162432909012,0.896650314331055,-0.176316499710083,0.40611657500267,0.89662778377533,-0.216816782951355,0.386068761348724,0.31845623254776,0.946853935718536,0.0453126318752766,0.320651769638062,0.944356262683868,0.0733054950833321,0.317090332508087,0.943059504032135,0.100461602210999,0.312812119722366,0.947078227996826,0.072051078081131,0.969306945800781,0.0431681424379349,0.242033883929253,0.972719728946686,0.0203565247356892,0.231088653206825,0.948147058486938,0.00933495815843344,0.317694991827011,0.943915665149689,0.0320222228765488,0.328630149364471,0.320914447307587,0.946648955345154,0.0294905863702297,0.327312111854553,0.944886445999146,0.00750718172639608,0.321713626384735,0.946373403072357,0.0296285469084978,0.317075610160828,0.946962893009186,0.0521952323615551,0.962400913238525,0.267517298460007,0.0471058748662472,0.958586990833282,0.251282125711441,0.134045645594597,0.953609824180603,0.265778332948685,0.141386672854424,0.9578458070755,0.282024890184402,0.0547128617763519,0.357491880655289,0.933550536632538,-0.026132931932807,0.363046199083328,0.931011497974396,-0.0376167483627796,0.346853941679001,0.937396466732025,-0.0313082933425903,0.342262148857117,0.939407587051392,-0.0192346032708883,0.945919215679169,0.299631386995316,-0.124329812824726,0.956998944282532,0.287641525268555,-0.0376223176717758,0.952099561691284,0.304429650306702,-0.0287932697683573,0.941594064235687,0.316430002450943,-0.115206927061081,0.460056602954865,0.879718244075775,-0.120182231068611,0.460118442773819,0.879825592041016,-0.119155049324036, +0.435853332281113,0.889376223087311,-0.137992188334465,0.435748070478439,0.889281213283539,-0.138934463262558,0.839783430099487,0.50691831111908,-0.194416165351868,0.859467506408691,0.497711807489395,-0.116612128913403,0.851529002189636,0.513417601585388,-0.106306090950966,0.832606494426727,0.522584319114685,-0.183498904109001,0.591562449932098,0.800755202770233,-0.0940477401018143,0.570473253726959,0.809205889701843,-0.140521243214607,0.577352344989777,0.802492499351501,-0.150565817952156,0.599192023277283,0.793891310691833,-0.103467747569084,0.77117395401001,0.549478948116302,-0.321502059698105,0.776636123657227,0.534619390964508,-0.333194315433502,0.808800280094147,0.526261687278748,-0.262470483779907,0.802483856678009,0.541175305843353,-0.25129497051239,0.800279140472412,-0.596643507480621,-0.0597484074532986,0.766028225421906,-0.632952451705933,-0.112124547362328,0.767634034156799,-0.630237579345703,-0.116356313228607,0.802171111106873,-0.593684375286102,-0.0637217164039612,0.681985378265381,-0.709399938583374,-0.177897915244102,0.683065414428711,-0.707106828689575,-0.182815715670586,0.723166108131409,-0.67519623041153,-0.145399123430252,0.721706569194794,-0.677752912044525,-0.140679538249969,0.931693911552429,-0.356484234333038,-0.0697529017925262,0.903012633323669,-0.40413710474968,-0.145744577050209,0.903728723526001,-0.401570856571198,-0.148375198245049,0.932539105415344,-0.353774070739746,-0.072213739156723,0.583415806293488,-0.804144859313965,-0.113917246460915,0.58230859041214,-0.80566531419754,-0.108720496296883,0.616086423397064,-0.781333923339844,-0.0997745171189308,0.617609322071075,-0.77948123216629,-0.104726813733578,0.975046634674072,-0.211512893438339,0.0674267038702965,0.967966496944427,-0.249467357993126,-0.0284060277044773,0.971287548542023,-0.234756797552109,-0.0385976284742355,0.978801310062408,-0.196461111307144,0.0578895732760429,0.523818552494049,-0.85147225856781,-0.0246784780174494,0.522675096988678,-0.852520287036896,-0.00448679598048329,0.541597664356232,-0.840352118015289,-0.0219156462699175, +0.544392347335815,-0.837788999080658,-0.0417921096086502,0.981215953826904,-0.00703783985227346,0.192784205079079,0.994482398033142,-0.0484778955578804,0.0930306613445282,0.995649755001068,-0.0363016948103905,0.0858120620250702,0.982561349868774,0.00529299303889275,0.185863107442856,0.958931684494019,0.20886205136776,0.191903218626976,0.958005845546722,0.217800602316856,0.18651457130909,0.982742786407471,0.155937999486923,0.0994992479681969,0.983588516712189,0.146907120943069,0.104746833443642,0.847270727157593,0.466725140810013,0.253574311733246,0.842649519443512,0.480937004089355,0.24216017127037,0.880449652671814,0.449139326810837,0.151928409934044,0.885738849639893,0.434707880020142,0.162774622440338,0.710738182067871,0.627311170101166,0.31832680106163,0.705522835254669,0.639997780323029,0.304368615150452,0.754503071308136,0.614557981491089,0.230312421917915,0.760777175426483,0.601575374603271,0.243567302823067,0.475471973419189,0.844613194465637,0.246079340577126,0.525394678115845,0.823287010192871,0.214846253395081,0.526795029640198,0.821207344532013,0.219329938292503,0.476452201604843,0.84269392490387,0.250719428062439,0.611135125160217,-0.742719233036041,0.273645788431168,0.567504942417145,-0.769289314746857,0.293482840061188,0.567332744598389,-0.769925117492676,0.292145311832428,0.610638499259949,-0.743553578853607,0.272486358880997,0.368134826421738,0.91180282831192,0.181912958621979,0.408741593360901,0.89536440372467,0.176784932613373,0.407572776079178,0.89685332775116,0.171868115663528,0.367439806461334,0.913081884384155,0.176832407712936,0.762671113014221,-0.455071777105331,0.459611147642136,0.704448521137238,-0.518880128860474,0.484268248081207,0.700921297073364,-0.546182513237,0.458687275648117,0.758297026157379,-0.484290808439255,0.436403423547745,0.310066312551498,0.948438584804535,0.065751239657402,0.330030232667923,0.940142691135406,0.0849232226610184,0.329121738672256,0.942026495933533,0.0653075203299522,0.311080068349838,0.949266910552979,0.0460622273385525,0.823763608932495,-0.343385010957718,0.45111009478569, +0.825811088085175,-0.308568120002747,0.47204002737999,0.768285572528839,-0.381765753030777,0.513801693916321,0.766344547271729,-0.414991855621338,0.490405768156052,0.309123635292053,0.950740337371826,-0.0231389943510294,0.305211693048477,0.952272057533264,0.00488323345780373,0.311760693788528,0.949558794498444,0.0338144041597843,0.312945634126663,0.949755132198334,0.00550345052033663,0.921194970607758,-0.102089501917362,0.375469833612442,0.919826805591583,-0.0813339874148369,0.383801311254501,0.875710248947144,-0.142551451921463,0.461314171552658,0.876882433891296,-0.163002744317055,0.452224880456924,0.357238918542862,0.92249459028244,-0.146233171224594,0.345697611570358,0.931792080402374,-0.11070977896452,0.322670221328735,0.943217635154724,-0.0788947343826294,0.330890744924545,0.93652331829071,-0.115910679101944,0.974314510822296,0.0634954944252968,0.216054618358612,0.972777545452118,0.0740645080804825,0.21958714723587,0.94868928194046,0.0247715637087822,0.315238177776337,0.95009970664978,0.0142118856310844,0.311622530221939,0.472429782152176,0.846846222877502,-0.244257166981697,0.453274965286255,0.866895437240601,-0.207446247339249,0.402560114860535,0.895591497421265,-0.189370691776276,0.418826669454575,0.878698408603668,-0.229070380330086,0.957002937793732,0.285052061080933,-0.0537641234695911,0.971595942974091,0.232821702957153,0.0423713736236095,0.966758131980896,0.251018822193146,0.048663042485714,0.951808273792267,0.303045183420181,-0.0471683032810688,0.61671394109726,0.742295861244202,-0.262032300233841,0.595644533634186,0.768557190895081,-0.233510941267014,0.532134473323822,0.810142636299133,-0.245971158146858,0.551689803600311,0.786463499069214,-0.277693122625351,0.800023198127747,0.585582852363586,-0.130596950650215,0.84569776058197,0.530262053012848,-0.0601451396942139,0.828367412090302,0.55825400352478,-0.0464731641113758,0.782264232635498,0.612251162528992,-0.114939749240875,0.778768599033356,0.617289841175079,-0.111682251095772,0.755989909172058,0.647988796234131,-0.0926802977919579,0.698817908763885,0.700729072093964,-0.143639430403709, +0.721746385097504,0.672082304954529,-0.165491566061974,0.353166610002518,0.933238506317139,0.0658732578158379,0.332570523023605,0.941542029380798,0.0538098737597466,0.333347469568253,0.940352499485016,0.0679466277360916,0.355362087488174,0.931333005428314,0.0796031504869461,0.330650746822357,0.939023852348328,-0.0943626835942268,0.326706916093826,0.942856311798096,-0.0654575303196907,0.323769479990005,0.945424973964691,-0.0366728343069553,0.324908018112183,0.943455934524536,-0.0657708942890167,0.425383031368256,0.897069454193115,0.119648873806,0.390661269426346,0.911639750003815,0.1276585906744,0.392197549343109,0.910552322864532,0.130673602223396,0.427260607481003,0.895819842815399,0.122291192412376,0.391110509634018,0.896765470504761,-0.206988662481308,0.379387974739075,0.909467756748199,-0.170097485184669,0.349935531616211,0.926377654075623,-0.139174699783325,0.358331888914108,0.916559994220734,-0.177527651190758,0.550089657306671,0.81223076581955,0.194120362401009,0.505473434925079,0.831525027751923,0.230354055762291,0.504335403442383,0.83460259437561,0.221550181508064,0.548249244689941,0.815503239631653,0.185411617159843,0.477944225072861,0.847947716712952,-0.229246512055397,0.46119898557663,0.864878177642822,-0.198194712400436,0.415092170238495,0.890828788280487,-0.18472284078598,0.429272413253784,0.876486957073212,-0.21793532371521,0.679828524589539,0.709783971309662,0.184499204158783,0.635585248470306,0.733125269412994,0.24198904633522,0.632309198379517,0.739820241928101,0.229893758893013,0.675642549991608,0.716698884963989,0.17277118563652,0.712852239608765,0.641904652118683,-0.282489448785782,0.648867785930634,0.694399833679199,-0.311094015836716,0.66692578792572,0.664227426052094,-0.337656319141388,0.73142671585083,0.60936564207077,-0.306085735559464,0.773369669914246,0.597866654396057,0.210843086242676,0.778572082519531,0.585523366928101,0.225805088877678,0.733963966369629,0.609573483467102,0.299528121948242,0.729884266853333,0.621744573116302,0.284082055091858,0.778209924697876,0.613531172275543,-0.134047567844391, +0.724903881549835,0.663978159427643,-0.183432132005692,0.743388772010803,0.637862026691437,-0.2012590020895,0.796627700328827,0.585676431655884,-0.149558171629906,0.887976050376892,0.440690129995346,0.131495043635368,0.900313913822174,0.404197543859482,0.16142863035202,0.871822416782379,0.410746186971664,0.266858130693436,0.862524390220642,0.447529554367065,0.236154392361641,0.894749104976654,0.445352911949158,-0.0329387001693249,0.861972093582153,0.495037019252777,-0.109282605350018,0.872291624546051,0.474819511175156,-0.116849638521671,0.904610633850098,0.424409478902817,-0.0394489280879498,0.98432594537735,0.153880625963211,0.0861581116914749,0.98706442117691,0.112853474915028,0.113877601921558,0.966602146625519,0.120253823697567,0.226316779851913,0.966585278511047,0.16162396967411,0.198973938822746,0.95026296377182,0.289221465587616,0.115547589957714,0.940874934196472,0.337718486785889,0.0264720246195793,0.946212291717529,0.322685152292252,0.0235920175909996,0.955096781253815,0.273894935846329,0.113012880086899,0.438078016042709,-0.448744893074036,-0.778919577598572,0.433660209178925,-0.450891941785812,-0.780150830745697,0.430826008319855,-0.464062929153442,-0.773973226547241,0.435308009386063,-0.462004810571671,-0.77269572019577,0.990784168243408,0.0289469547569752,0.132320836186409,0.99202299118042,0.0174590460956097,0.124842643737793,0.998856365680695,0.0411950759589672,0.0242670588195324,0.99810516834259,0.052757877856493,0.031666424125433,0.958460569381714,-0.254601448774338,-0.12857460975647,0.980806708335876,-0.185132652521133,-0.0611893124878407,0.977365136146545,-0.205174639821053,-0.0515830777585506,0.954443752765656,-0.274005979299545,-0.118144243955612,0.950976848602295,-0.121807277202606,0.284263968467712,0.951717019081116,-0.140511721372604,0.272930502891541,0.976629972457886,-0.122811205685139,0.176384106278419,0.976775884628296,-0.103921763598919,0.18737405538559,0.860701858997345,-0.485735893249512,-0.15248928964138,0.903995335102081,-0.411230713129044,-0.116969965398312,0.891982913017273,-0.442385166883469,-0.0930691882967949, +0.848106324672699,-0.514539837837219,-0.126351177692413,0.859486222267151,-0.38471320271492,0.3365698158741,0.857269644737244,-0.400683164596558,0.32332918047905,0.890864789485931,-0.38301956653595,0.244245573878288,0.894181847572327,-0.366716057062149,0.25682333111763,0.766581773757935,-0.608486652374268,-0.205173939466476,0.818246424198151,-0.541422009468079,-0.193222731351852,0.805176973342896,-0.570446014404297,-0.162115275859833,0.753821611404419,-0.634297013282776,-0.171523481607437,0.694644570350647,-0.622278273105621,0.360886096954346,0.734763085842133,-0.600206077098846,0.316031396389008,0.735875010490417,-0.594419777393341,0.324273288249969,0.695074021816254,-0.616822779178619,0.369326114654541,0.680961072444916,-0.724911391735077,-0.103901140391827,0.69392466545105,-0.706863880157471,-0.137157112360001,0.743023812770844,-0.654933273792267,-0.137760832905769,0.728932440280914,-0.676227331161499,-0.106649801135063,0.605057716369629,-0.705178797245026,0.369632452726364,0.643450438976288,-0.683817923069,0.344041764736176,0.643067896366119,-0.68163675069809,0.349048912525177,0.60430645942688,-0.703224062919617,0.374552726745605,0.590562224388123,-0.805826783180237,-0.0433531664311886,0.600661516189575,-0.795410096645355,-0.0807982757687569,0.640858709812164,-0.760792255401611,-0.10244757682085,0.628675222396851,-0.774815738201141,-0.0665443688631058,0.537144660949707,-0.807355582714081,0.244238927960396,0.560231745243073,-0.789547383785248,0.250510215759277,0.558276653289795,-0.794627547264099,0.238525003194809,0.536323666572571,-0.811604678630829,0.231635496020317,0.5372593998909,-0.842972218990326,0.0273902956396341,0.541857302188873,-0.840439200401306,-0.00724785588681698,0.565061986446381,-0.824190258979797,-0.0376214757561684,0.557983994483948,-0.829844295978546,-0.00350855337455869,0.522836983203888,-0.84637725353241,0.101424746215343,0.523796379566193,-0.842438340187073,0.126234039664268,0.523693203926086,-0.845861852169037,0.101307228207588,0.524827897548676,-0.847795128822327,0.0761519223451614,0.96535587310791,-0.177693352103233,0.191083803772926, +0.954803168773651,-0.128433525562286,0.268059283494949,0.954877376556396,-0.210649400949478,0.209370702505112,0.958074152469635,-0.255732119083405,0.129208996891975,-0.889103710651398,-0.250555515289307,-0.383035987615585,-0.89950966835022,-0.261209219694138,-0.35021710395813,-0.905803620815277,-0.245140388607979,-0.345580637454987,-0.892211854457855,-0.232135564088821,-0.387390196323395,-0.86375629901886,-0.221550509333611,-0.45259302854538,-0.875948131084442,-0.239040270447731,-0.419016450643539,-0.876662313938141,-0.215290740132332,-0.430247753858566,-0.85866516828537,-0.194376349449158,-0.474248975515366,-0.790205776691437,-0.179653733968735,-0.585917532444,-0.845920920372009,-0.203915402293205,-0.492784261703491,-0.826054692268372,-0.247640445828438,-0.506268620491028,-0.786109626293182,-0.249493479728699,-0.565495073795319,-0.81971937417984,-0.0784386545419693,-0.567368805408478,-0.851658284664154,-0.185677498579025,-0.490104049444199,-0.867892742156982,-0.169587329030037,-0.466907292604446,-0.845861494541168,-0.0803556069731712,-0.527315199375153,-0.767378747463226,-0.0788901373744011,-0.636322557926178,-0.836233556270599,-0.189296215772629,-0.514665305614471,-0.833023250102997,-0.203318014740944,-0.514523208141327,-0.774514973163605,-0.111342169344425,-0.62267929315567,-0.707529425621033,-0.0970953553915024,-0.699981868267059,-0.794064283370972,-0.236131563782692,-0.560092687606812,-0.795412182807922,-0.239710956811905,-0.556649148464203,-0.7194584608078,-0.106630347669125,-0.686301290988922,0.486601144075394,-0.558791518211365,-0.671544134616852,0.49042946100235,-0.577630877494812,-0.652550041675568,0.430855393409729,-0.514361500740051,-0.741482257843018,0.445628076791763,-0.510439574718475,-0.735436618328094,0.707286536693573,-0.340523362159729,-0.619507551193237,0.718741714954376,-0.308351516723633,-0.623161017894745,0.658991694450378,-0.289117515087128,-0.69436377286911,0.662390172481537,-0.33067587018013,-0.672229707241058,0.778156757354736,-0.200052618980408,-0.595357894897461,0.799377262592316,-0.241916909813881,-0.549974858760834, +0.78401130437851,-0.232460752129555,-0.575576484203339,0.752355337142944,-0.187237620353699,-0.631588220596313,0.886143326759338,-0.113076247274876,-0.449404090642929,0.89326810836792,-0.133038803935051,-0.429386526346207,0.883070826530457,-0.119403637945652,-0.45379364490509,0.860878348350525,-0.0884790420532227,-0.501058757305145,0.967302322387695,0.0231770500540733,-0.252564936876297,0.966124713420868,-0.00534414825960994,-0.258020251989365,0.952910661697388,-0.00156723987311125,-0.303247183561325,0.949722945690155,0.029177526012063,-0.31172901391983,0.992353618144989,0.0430657230317593,-0.115671239793301,0.989359378814697,0.00240891799330711,-0.14547236263752,0.977841138839722,-0.00866712629795074,-0.209168940782547,0.981797099113464,0.0308217871934175,-0.187415301799774,-0.0313245840370655,0.891977906227112,-0.450992435216904,-0.321701645851135,0.824178099632263,-0.466088503599167,-0.584213852882385,0.685721337795258,-0.434143304824829,-0.321974724531174,0.825110912322998,-0.464245855808258,-0.0872864797711372,-0.912263870239258,-0.400194555521011,-0.0681160464882851,-0.907389342784882,-0.414734721183777,-0.0679605379700661,-0.880578994750977,-0.469001054763794,-0.0861293599009514,-0.887077808380127,-0.45351380109787,-0.0892511606216431,-0.93694680929184,-0.337883114814758,-0.103840120136738,-0.929963648319244,-0.352682411670685,-0.0959708839654922,-0.93032830953598,-0.353947669267654,-0.0822426825761795,-0.936647117137909,-0.340482503175735,-0.245395004749298,-0.899076104164124,-0.362551271915436,-0.231017380952835,-0.922861218452454,-0.308152914047241,-0.228810057044029,-0.923596978187561,-0.307594865560532,-0.244356498122215,-0.900073945522308,-0.360772550106049,-0.191740974783897,-0.875765442848206,-0.443023890256882,-0.217481777071953,-0.870636522769928,-0.441241353750229,-0.18168506026268,-0.907009124755859,-0.379901081323624,-0.156922712922096,-0.909783124923706,-0.384278416633606,0.570767223834991,-0.751590430736542,-0.330660820007324,0.542905509471893,-0.764978349208832,-0.346499264240265,0.581918478012085,-0.731837570667267,-0.354661077260971, +0.60242110490799,-0.727934777736664,-0.327413976192474,0.586971044540405,-0.772581934928894,-0.242037713527679,0.5984987616539,-0.767314255237579,-0.230278387665749,0.597294688224792,-0.757679104804993,-0.262985587120056,0.586331307888031,-0.761520743370056,-0.276227712631226,0.601689517498016,-0.772294402122498,-0.203791886568069,0.603618562221527,-0.771243155002594,-0.202061608433723,0.603694260120392,-0.769663214683533,-0.207778230309486,0.601972758769989,-0.770449459552765,-0.209849253296852,0.749492108821869,-0.651636242866516,-0.116755202412605,0.736293435096741,-0.670328080654144,-0.0923703908920288,0.733988881111145,-0.672609508037567,-0.0941103100776672,0.747230172157288,-0.653835237026215,-0.118939891457558,0.860408127307892,-0.492286026477814,-0.13172835111618,0.847921907901764,-0.52515697479248,-0.0723784193396568,0.850038468837738,-0.522187948226929,-0.0689516812562943,0.862172245979309,-0.490627646446228,-0.126268059015274,0.36726513504982,-0.659166872501373,-0.656212985515594,0.474016934633255,-0.651999652385712,-0.591780722141266,0.47355118393898,-0.652203559875488,-0.591928899288177,0.366658747196198,-0.659265637397766,-0.656452775001526,-0.867433428764343,0.264596253633499,-0.421364784240723,-0.867519021034241,0.265677571296692,-0.420507043600082,-0.867379307746887,0.235919460654259,-0.438172519207001,-0.867276132106781,0.235331848263741,-0.438692450523376,-0.756319105625153,0.391606241464615,-0.5240478515625,-0.761321365833282,0.389795541763306,-0.518120884895325,-0.758129775524139,0.368003278970718,-0.538342893123627,-0.753069639205933,0.369749486446381,-0.544216334819794,-0.612725615501404,0.501266896724701,-0.610981941223145,-0.600709199905396,0.507098138332367,-0.618061482906342,-0.61577582359314,0.476885974407196,-0.627216100692749,-0.627570688724518,0.471645295619965,-0.619439840316772,-0.464263916015625,0.597278296947479,-0.654001414775848,-0.459654271602631,0.599466264247894,-0.655254244804382,-0.468634873628616,0.571216285228729,-0.673864603042603,-0.473346769809723,0.568089365959167,-0.673214137554169, +-0.16075436770916,0.7024285197258,-0.693363070487976,-0.164808198809624,0.703924298286438,-0.690889894962311,-0.165368482470512,0.677978873252869,-0.716238856315613,-0.161222532391548,0.677320659160614,-0.717805087566376,-0.0810731276869774,0.726095616817474,-0.682797372341156,-0.09083291888237,0.727954626083374,-0.679581820964813,-0.0855648294091225,0.703361451625824,-0.705663859844208,-0.075792983174324,0.701365053653717,-0.70876133441925,0.12422876060009,0.743410527706146,-0.657197177410126,0.127391472458839,0.742967009544373,-0.657093167304993,0.119509622454643,0.724101305007935,-0.679260432720184,0.116190388798714,0.723921418190002,-0.680027663707733,0.420485109090805,0.721964240074158,-0.549508810043335,0.402454853057861,0.707973062992096,-0.580348372459412,0.416043192148209,0.702359437942505,-0.577580571174622,0.434033513069153,0.716210663318634,-0.546495378017426,0.738173186779022,0.569327831268311,-0.361892551183701,0.738201022148132,0.550896763801575,-0.389322698116302,0.736084938049316,0.555781781673431,-0.386375099420547,0.735950708389282,0.57421863079071,-0.358677446842194,0.840068399906158,0.477566182613373,-0.25732433795929,0.837630212306976,0.469324171543121,-0.279482483863831,0.839559614658356,0.468472838401794,-0.275087028741837,0.841918289661407,0.476222544908524,-0.253743410110474,0.900702893733978,0.403849482536316,-0.160124853253365,0.901193141937256,0.391107141971588,-0.186778351664543,0.901369214057922,0.391741752624512,-0.184585943818092,0.900871753692627,0.403842985630035,-0.159188449382782,0.942222654819489,0.327463895082474,-0.0705981701612473,0.946759462356567,0.310822010040283,-0.0838821828365326,0.949841797351837,0.302395313978195,-0.0797346457839012,0.945411384105682,0.319013059139252,-0.066542461514473,0.977366149425507,0.210298612713814,0.0230243355035782,0.978264272212982,0.205776184797287,0.0255973059684038,0.978944361209869,0.203881397843361,0.0100275781005621,0.977978467941284,0.208576515316963,0.0073490934446454,0.971945285797119,0.234045341610909,0.023349717259407,0.986521124839783,0.148311197757721,0.0691365823149681, +0.973347544670105,0.228951007127762,0.0132679538801312,0.949308216571808,0.312686711549759,-0.0322634391486645,0.982022941112518,0.167719200253487,0.0866100564599037,0.987345099449158,0.14484053850174,0.0645822957158089,0.987186551094055,0.142195135354996,0.0724114924669266,0.981912136077881,0.164309188723564,0.09407988935709,0.956183969974518,0.290682733058929,-0.0348687581717968,0.960653305053711,0.273066878318787,-0.0507908463478088,0.961462676525116,0.271009564399719,-0.0462968423962593,0.957050800323486,0.288306415081024,-0.0305474754422903,0.893001317977905,0.413811534643173,-0.17694266140461,0.896550714969635,0.410116076469421,-0.167336985468864,0.899774134159088,0.39306965470314,-0.189480692148209,0.8960320353508,0.396930992603302,-0.198928147554398,0.78771960735321,0.53668200969696,-0.302440494298935,0.800400972366333,0.507312417030334,-0.319362819194794,0.799320816993713,0.507944464683533,-0.321058690547943,0.786256194114685,0.538208782672882,-0.30353370308876,0.635652124881744,0.643901407718658,-0.425837099552155,0.633722186088562,0.623550713062286,-0.457800060510635,0.647165596485138,0.620260298252106,-0.443231254816055,0.649200260639191,0.639630258083344,-0.411597073078156,0.462926596403122,0.701184272766113,-0.542254269123077,0.469239324331284,0.687959253787994,-0.553648352622986,0.470291078090668,0.687870740890503,-0.552865386009216,0.463787049055099,0.701597332954407,-0.540983140468597,0.277999818325043,0.730346977710724,-0.623946726322174,0.306604862213135,0.711573123931885,-0.632184445858002,0.291090220212936,0.711111068725586,-0.639990150928497,0.261700332164764,0.7309730052948,-0.630231201648712,0.0721551775932312,0.736527919769287,-0.672547578811646,0.109549574553967,0.717566609382629,-0.687820553779602,0.0883510410785675,0.715636730194092,-0.692862212657928,0.0506745278835297,0.734594345092773,-0.676611602306366,-0.133835226297379,0.713136851787567,-0.688130915164948,-0.111067965626717,0.694863855838776,-0.710512578487396,-0.119825676083565,0.696385502815247,-0.707593858242035,-0.142498314380646,0.714328527450562,-0.685148894786835, +-0.351157337427139,0.645939707756042,-0.677827835083008,-0.328535318374634,0.628522932529449,-0.704998910427094,-0.336424350738525,0.62907862663269,-0.700770139694214,-0.35797244310379,0.64571338891983,-0.674470126628876,-0.548506140708923,0.544565856456757,-0.634499073028564,-0.535585939884186,0.534818351268768,-0.653542041778564,-0.532784819602966,0.538283705711365,-0.652986228466034,-0.544705450534821,0.54709404706955,-0.635597407817841,-0.593808114528656,0.518351793289185,-0.615388751029968,-0.600614786148071,0.512688517570496,-0.613524675369263,-0.587355613708496,0.509228646755219,-0.629046559333801,-0.580524682998657,0.514835894107819,-0.630820989608765,-0.717047572135925,0.429837286472321,-0.54871016740799,-0.722205340862274,0.424609959125519,-0.546009004116058,-0.707211017608643,0.416507333517075,-0.571291744709015,-0.702208161354065,0.42187836766243,-0.573517501354218,-0.818997204303741,0.31128117442131,-0.48202446103096,-0.819602608680725,0.310204148292542,-0.481689691543579,-0.815301239490509,0.306251615285873,-0.491420328617096,-0.814480423927307,0.306978195905685,-0.492327153682709,-0.925307333469391,0.14854995906353,-0.348911553621292,-0.921289205551147,0.156907886266708,-0.355817794799805,-0.907889842987061,0.15107798576355,-0.391038984060287,-0.911995112895966,0.142296776175499,-0.384729236364365,-0.942038774490356,0.123421885073185,-0.311977863311768,-0.944142401218414,0.114757664501667,-0.308910727500916,-0.939456880092621,0.0941963866353035,-0.32946589589119,-0.938198149204254,0.104004375636578,-0.330102235078812,-0.967644810676575,0.00775666302070022,-0.252197444438934,-0.964935839176178,0.0268233492970467,-0.261111825704575,-0.96123331785202,0.0448723584413528,-0.272060573101044,-0.964397966861725,0.025802168995142,-0.263193279504776,-0.986066460609436,-0.0759748890995979,-0.147989302873611,-0.986099600791931,-0.0720371827483177,-0.149727031588554,-0.979537308216095,-0.0913514643907547,-0.179336905479431,-0.97951865196228,-0.0952034071087837,-0.177424788475037,-0.956881046295166,0.0752074420452118,-0.28057524561882, +-0.959205269813538,0.070905476808548,-0.273674726486206,-0.959285736083984,0.0432163998484612,-0.279111415147781,-0.957097887992859,0.0480544455349445,-0.285752564668655,0.940299153327942,0.130778059363365,0.314220637083054,0.940383553504944,0.1299919039011,0.314294189214706,0.940299570560455,0.130774065852165,0.314220994710922,0.97717297077179,0.120866186916828,0.174711853265762,0.987597167491913,0.116462223231792,0.105301462113857,0.977171063423157,0.120884828269482,0.174710094928741,0.961804270744324,0.125718206167221,0.243161410093307,0.983355820178986,0.119650214910507,0.136729836463928,0.953525483608246,0.12872077524662,0.272433698177338,0.983323216438293,0.119948834180832,0.136702656745911,0.994125306606293,0.108223333954811,-0.00162159942556173,0.956930220127106,-0.270054876804352,0.106559365987778,0.946183443069458,-0.299831748008728,0.121810853481293,0.925233960151672,-0.373994410037994,0.063798651099205,0.937183797359467,-0.345640450716019,0.047109954059124,0.935415148735046,0.131363153457642,0.328241169452667,0.96679151058197,0.125195443630219,0.222800940275192,0.986451745033264,0.117316238582134,0.114673621952534,0.966811239719391,0.125012278556824,0.222817867994308,0.690423011779785,-0.72330641746521,0.0119940582662821,0.701777517795563,-0.712313234806061,-0.0108709409832954,0.713517546653748,-0.69963139295578,0.0375305861234665,0.700409531593323,-0.711290895938873,0.0590911880135536,0.587774872779846,-0.792684972286224,-0.161775395274162,0.514868021011353,-0.807099044322968,-0.288967102766037,0.478860706090927,-0.791551291942596,-0.379656344652176,0.544697284698486,-0.792866349220276,-0.273254185914993,0.688757658004761,-0.715008854866028,-0.119896978139877,0.568938910961151,-0.795136511325836,-0.209919974207878,0.476721048355103,-0.845848798751831,-0.239325821399689,0.596233606338501,-0.783518075942993,-0.174942851066589,0.990634262561798,0.11494368314743,0.0737012326717377,0.990975499153137,0.114603467285633,0.0695243030786514,0.990632116794586,0.114963792264462,0.0736993625760078,0.990272700786591,0.11530713737011,0.0778745114803314, +0.990663409233093,0.114895194768906,0.0733831971883774,0.990710198879242,0.114465661346912,0.0734229162335396,0.990661084651947,0.114916816353798,0.0733811855316162,0.993291795253754,0.103523381054401,-0.0515198782086372,0.982784926891327,0.120061099529266,0.140424311161041,0.935711443424225,0.131953865289688,0.327157825231552,0.982836544513702,0.11958659440279,0.14046822488308,0.904706418514252,0.362262189388275,0.224215149879456,0.903302550315857,0.317799031734467,0.288180887699127,0.902983129024506,0.33547654747963,0.268471598625183,0.981430470943451,0.12042523920536,0.149305209517479,0.991366982460022,0.0992799922823906,-0.0856444388628006,0.94602769613266,0.0726927518844604,-0.315828382968903,0.991366982460022,0.0992796719074249,-0.0856444090604782,0.97257673740387,0.124432228505611,0.196497187018394,0.97256726026535,0.12451907992363,0.196489050984383,0.972573816776276,0.124459005892277,0.196494683623314,0.929968178272247,-0.338166207075119,0.144231826066971,0.938503444194794,-0.318986564874649,0.132132083177567,0.938883900642395,-0.319649934768677,0.127753496170044,0.930417358875275,-0.338729172945023,0.139950677752495,0.917023599147797,-0.3686783015728,0.1521315574646,0.92309045791626,-0.359285444021225,0.137178435921669,0.923621416091919,-0.362154483795166,0.125569209456444,0.917846500873566,-0.371215522289276,0.140559315681458,0.914918124675751,-0.392473518848419,0.0942848697304726,0.915296018123627,-0.386332243680954,0.113932549953461,0.914519727230072,-0.381773561239243,0.133801519870758,0.913988530635834,-0.389257252216339,0.114471763372421,0.919120669364929,-0.384933352470398,0.0839269682765007,0.916255712509155,-0.391290038824081,0.0858350396156311,0.91607391834259,-0.391363114118576,0.0874269083142281,0.918819785118103,-0.385294556617737,0.0855481028556824,0.933977961540222,-0.357210278511047,0.00927444733679295,0.927142858505249,-0.374528974294662,0.0115915210917592,0.926754713058472,-0.375378489494324,0.0147200403735042,0.933504939079285,-0.358352512121201,0.012328028678894,0.950688898563385,-0.310094803571701,-0.00565917510539293, +0.942374348640442,-0.334382265806198,-0.0109209949150681,0.94201523065567,-0.335318475961685,-0.0130011979490519,0.950371503829956,-0.31101867556572,-0.00783956330269575,0.969117641448975,-0.242736175656319,-0.0434753410518169,0.960371792316437,-0.275884807109833,-0.0396697260439396,0.959822714328766,-0.279042899608612,-0.0295882634818554,0.968636691570282,-0.24620321393013,-0.0335720479488373,0.984001457691193,-0.177471652626991,-0.0156524069607258,0.977221846580505,-0.208500355482101,-0.0395613424479961,0.977027118206024,-0.206028833985329,-0.0545008853077888,0.984174311161041,-0.174545601010323,-0.0305738933384418,0.991847574710846,-0.117592848837376,0.0490944311022758,0.98557710647583,-0.15939174592495,0.0568491443991661,0.983279526233673,-0.16565565764904,0.0756282210350037,0.989950656890869,-0.124125257134438,0.0677528232336044,0.992265284061432,-0.0550565049052238,0.111258201301098,0.988463997840881,-0.0979793444275856,0.115494631230831,0.985751152038574,-0.103951424360275,0.132245242595673,0.989893198013306,-0.0610943920910358,0.127979978919029,0.981605231761932,0.00171523296739906,0.190914124250412,0.984637022018433,-0.0337633155286312,0.171318456530571,0.983444571495056,-0.0360668487846851,0.177583992481232,0.980365455150604,-0.000404119491577148,0.19718924164772,0.997475326061249,0.0710026323795319,-0.00125945638865232,0.997762322425842,0.0643945336341858,0.0179886166006327,0.994043588638306,0.0963593497872353,0.0509162582457066,0.994204699993134,0.102757193148136,0.0315910950303078,0.988609611988068,0.129619657993317,0.0764839127659798,0.988729119300842,0.133314624428749,0.0681324824690819,0.982085585594177,0.173887461423874,0.0726020261645317,0.982112169265747,0.170036658644676,0.0808909833431244,0.937312960624695,0.225767105817795,0.265468686819077,0.953291773796082,0.200126022100449,0.226240158081055,0.947953641414642,0.191068798303604,0.254708707332611,0.930920362472534,0.216936245560646,0.293812781572342,0.925386726856232,0.322313725948334,0.199432566761971,0.936764478683472,0.285862803459167,0.201878070831299, +0.93742698431015,0.291088044643402,0.191045731306076,0.925884127616882,0.327416956424713,0.188511893153191,0.891697227954865,0.371562957763672,0.258490294218063,0.908073604106903,0.345030575990677,0.237394660711288,0.904985249042511,0.342563539743423,0.252293139696121,0.888168931007385,0.369385540485382,0.273331850767136,0.877021670341492,0.448381245136261,0.172590300440788,0.888022184371948,0.418409258127213,0.190658196806908,0.88929557800293,0.42489942908287,0.169156432151794,0.87814325094223,0.454008668661118,0.150799617171288,0.877074897289276,0.448476195335388,0.172072470188141,0.875668704509735,0.449426561594009,0.176692396402359,0.862247228622437,0.472067654132843,0.183526068925858,0.863747775554657,0.47105199098587,0.179024487733841,0.858848333358765,0.499757021665573,0.112350702285767,0.8579922914505,0.501158177852631,0.112649440765381,0.847944617271423,0.517862796783447,0.1131736561656,0.84873640537262,0.516602277755737,0.112998284399509,0.831995487213135,0.528736889362335,0.167990580201149,0.831224620342255,0.529983162879944,0.167879223823547,0.822709739208221,0.543451964855194,0.166759222745895,0.823355078697205,0.542410314083099,0.16696585714817,0.817548155784607,0.553295493125916,0.159621849656105,0.816144108772278,0.554170072078705,0.163720309734344,0.810049176216125,0.562231659889221,0.166481629014015,0.811412274837494,0.561449408531189,0.162433803081512,0.808271408081055,0.566502571105957,0.160537153482437,0.814218759536743,0.564331412315369,0.13630011677742,0.819918930530548,0.561384558677673,0.112162001430988,0.813660204410553,0.565187275409698,0.136090070009232,0.839887320995331,0.541458368301392,0.0375789366662502,0.844133019447327,0.535822331905365,0.0182723365724087,0.854413330554962,0.519583106040955,0.00335908797569573,0.849917411804199,0.526451706886292,0.0221122428774834,0.867942154407501,0.496322929859161,-0.0184383802115917,0.860448241233826,0.509117901325226,0.0206788834184408,0.859494805335999,0.506684482097626,0.0673781260848045,0.869362592697144,0.493333429098129,0.0288205612450838, +0.88128650188446,0.471225500106812,0.0357861742377281,0.889969527721405,0.455976456403732,0.00629757950082421,0.909286916255951,0.416088461875916,-0.00822760630398989,0.90118932723999,0.432946443557739,0.0203719194978476,0.968127965927124,0.125827118754387,0.216554298996925,0.968129634857178,0.125811785459518,0.2165557295084,0.968116760253906,0.125929906964302,0.216544657945633,0.987306833267212,0.117602273821831,0.106746964156628,0.987305462360382,0.117614790797234,0.106745801866055,0.987309694290161,0.11757605522871,0.106749422848225,0.978585779666901,0.122166246175766,0.165666073560715,0.97857928276062,0.122227020561695,0.165660381317139,0.978588104248047,0.12214495241642,0.165668085217476,0.901094734668732,0.42663437128067,0.0775344669818878,0.910693109035492,0.409993499517441,0.0504316836595535,0.930492401123047,0.36371061205864,0.0435714572668076,0.921687304973602,0.381566882133484,0.0699961110949516,0.992628633975983,0.112268701195717,0.0456531792879105,0.993014454841614,0.10237580537796,-0.0586640499532223,0.992623627185822,0.112314209342003,0.0456488952040672,0.981355905532837,0.120815262198448,0.149479821324348,0.960928678512573,0.276201128959656,-0.0181384272873402,0.958616077899933,0.284692823886871,-0.00229643587954342,0.965348124504089,0.25792995095253,0.0396904088556767,0.968207001686096,0.248983979225159,0.0241291914135218,0.98349142074585,0.119538143277168,0.135850146412849,0.985647261142731,0.118293538689613,0.12044121325016,0.98349392414093,0.119515016674995,0.135852321982384,0.981088221073151,0.120824880897999,0.151219248771667,0.974402606487274,0.216132238507271,0.0618575699627399,0.977167010307312,0.206374660134315,0.0505391806364059,0.985112369060516,0.15742027759552,0.069082997739315,0.982655704021454,0.167055368423462,0.0805007889866829,0.963929057121277,0.0964842066168785,0.248055517673492,0.967706561088562,0.135575249791145,0.212516754865646,0.969108104705811,0.132153794169426,0.208242416381836,0.965380132198334,0.0933768898248672,0.243561014533043,0.956689536571503,-0.000134870264446363,0.29111048579216, +0.962128043174744,0.0466247722506523,0.268581211566925,0.960224807262421,0.0516910813748837,0.274401903152466,0.954917192459106,0.00513833994045854,0.296827852725983,0.980932772159576,0.120658554136753,0.152356311678886,0.973504662513733,0.123743608593941,0.192291885614395,0.964475512504578,0.126489609479904,0.231920957565308,0.973527133464813,0.123537071049213,0.192311361432076,0.988174259662628,0.116395570337772,0.0998181998729706,0.988173127174377,0.116406351327896,0.0998172014951706,0.988175868988037,0.116380967199802,0.0998195633292198,0.975237965583801,-0.0548758842051029,0.21424163877964,0.978281080722809,-0.0662402734160423,0.196413770318031,0.966384947299957,-0.0938681811094284,0.239350646734238,0.962722182273865,-0.0830707848072052,0.257420778274536,0.80285632610321,-0.594809353351593,-0.0402929969131947,0.81978851556778,-0.572493553161621,0.0140657601878047,0.812170684337616,-0.582823276519775,0.0263795740902424,0.796004056930542,-0.604682445526123,-0.0271416381001472,0.989842593669891,0.115099556744099,0.0834501534700394,0.989846169948578,0.115065783262253,0.0834532901644707,0.989847362041473,0.115055561065674,0.0834542438387871,0.977945983409882,0.121340058743954,0.169994652271271,0.959712982177734,0.127476423978806,0.250401169061661,0.947031140327454,0.130304858088493,0.293517768383026,0.969346344470978,0.124987997114658,0.211531475186348,0.984029769897461,0.118364557623863,0.132948383688927,0.970337092876434,0.124891921877861,0.206997618079185,0.96848076581955,0.125247031450272,0.215309649705887,0.9749436378479,0.123222924768925,0.185204908251762,0.971242666244507,0.124684996902943,0.202833488583565,0.959713637828827,0.127700597047806,0.250284463167191,0.962558925151825,0.125890031456947,0.240066602826118,0.951710402965546,0.128681465983391,0.278726398944855,0.961350619792938,0.126369133591652,0.244613617658615,0.979082763195038,0.12009085714817,0.164240896701813,0.960195779800415,0.126114457845688,0.249237447977066,0.955129623413086,0.127637445926666,0.267275393009186,0.90783429145813,-0.41088855266571,-0.0837109088897705, +0.825715363025665,-0.562162160873413,-0.0465599820017815,0.831495821475983,-0.553826928138733,-0.0434789247810841,0.90778249502182,-0.412662327289581,-0.0751048773527145,0.904233634471893,-0.424705773591995,-0.0445706769824028,0.910706996917725,-0.408808350563049,-0.0590637400746346,0.922809720039368,-0.385042756795883,0.0128167830407619,0.915558218955994,-0.401316255331039,0.0264284759759903,0.637200951576233,-0.770618855953217,-0.0110345911234617,0.658977746963501,-0.752127826213837,0.00721772573888302,0.658272087574005,-0.752721607685089,0.00938270799815655,0.636635065078735,-0.771114885807037,-0.00882515870034695,0.970475614070892,-0.241182327270508,0.00285107782110572,0.9750697016716,-0.22161191701889,-0.0112816402688622,0.977653861045837,-0.197844818234444,0.0710654556751251,0.972355961799622,-0.217679440975189,0.0844959244132042,0.550157845020294,-0.824535071849823,0.132167637348175,0.563751041889191,-0.816406428813934,0.12516114115715,0.568227410316467,-0.814904093742371,0.114231899380684,0.553921520709991,-0.823752820491791,0.120840065181255,0.998282909393311,-0.0124137178063393,0.0572476238012314,0.998737037181854,-0.00212345412001014,0.0501978434622288,0.990830600261688,0.0322537273168564,0.131204456090927,0.990172505378723,0.0219069961458445,0.138124942779541,0.527883172035217,-0.827259838581085,0.192303240299225,0.532942354679108,-0.828717708587646,0.170878261327744,0.538683176040649,-0.829127013683319,0.149562209844589,0.532269835472107,-0.829192459583282,0.170671075582504,0.921108841896057,0.253136813640594,0.295770645141602,0.95131504535675,0.209951967000961,0.225654065608978,0.951614856719971,0.208564206957817,0.225677147507668,0.92147570848465,0.251767486333847,0.295796990394592,0.522571325302124,-0.824577271938324,0.21677540242672,0.528728485107422,-0.827679991722107,0.188127800822258,0.528396844863892,-0.820734739303589,0.21723584830761,0.523975551128387,-0.815442144870758,0.245975092053413,0.828220784664154,0.434578359127045,0.353824764490128,0.877232670783997,0.357615828514099,0.32027143239975, +0.882492542266846,0.317574739456177,0.346919536590576,0.834964215755463,0.395984172821045,0.382140457630157,0.527344048023224,-0.788555026054382,0.316368907690048,0.531979143619537,-0.800283789634705,0.276666015386581,0.546737313270569,-0.776186585426331,0.314026594161987,0.544200539588928,-0.761124193668365,0.352896183729172,0.708396673202515,0.598388135433197,0.374307096004486,0.765703320503235,0.538027584552765,0.352455049753189,0.773505449295044,0.509041845798492,0.377578735351563,0.716305196285248,0.571025371551514,0.401044487953186,0.564313054084778,-0.690793871879578,0.452055841684341,0.56659460067749,-0.711044609546661,0.41639655828476,0.599003672599792,-0.668732106685638,0.440445244312286,0.598358273506165,-0.645603358745575,0.474514186382294,0.7065190076828,0.604573726654053,0.367860615253448,0.712146103382111,0.586857199668884,0.385287642478943,0.655278503894806,0.634839415550232,0.409376263618469,0.650064706802368,0.651565194129944,0.390997022390366,0.636352956295013,-0.642025828361511,0.427618771791458,0.633912324905396,-0.663575351238251,0.397269397974014,0.673475384712219,-0.617620706558228,0.406171888113022,0.677091360092163,-0.593753755092621,0.434745848178864,0.570561528205872,0.758193671703339,0.315597832202911,0.580509960651398,0.734972178936005,0.350462645292282,0.508784890174866,0.787969648838043,0.346758842468262,0.500985980033875,0.808139026165009,0.309716939926147,0.817067325115204,-0.326537907123566,0.475156843662262,0.772154271602631,-0.395244985818863,0.497553259134293,0.770165979862213,-0.429612278938293,0.471463322639465,0.815257489681244,-0.362689167261124,0.451455146074295,0.89713591337204,-0.226031318306923,0.379548698663712,0.858895540237427,-0.283664703369141,0.426418602466583,0.857296228408813,-0.307192325592041,0.413129538297653,0.895727336406708,-0.250274449586868,0.367471367120743,0.391682893037796,0.879249215126038,0.271118670701981,0.394747525453568,0.863511919975281,0.313881427049637,0.346992433071136,0.895897448062897,0.277424097061157,0.347998887300491,0.907957494258881,0.233473688364029, +0.955184936523438,-0.0531845390796661,0.291192948818207,0.930286526679993,-0.147198379039764,0.336005300283432,0.928807973861694,-0.206353634595871,0.307788759469986,0.957298874855042,-0.113634772598743,0.265830844640732,0.329673528671265,0.936586141586304,0.118835061788559,0.327732652425766,0.932714700698853,0.150448024272919,0.314589589834213,0.941892623901367,0.117778986692429,0.318884015083313,0.943854629993439,0.0863218307495117,0.989728569984436,0.0260492134839296,0.140566110610962,0.973947584629059,0.00930249970406294,0.226582556962967,0.971703052520752,0.0253125037997961,0.234845504164696,0.987972259521484,0.0421388149261475,0.148779079318047,0.346361130475998,0.937622845172882,-0.0299557615071535,0.333991348743439,0.942437350749969,-0.0161753091961145,0.329214245080948,0.94425505399704,0.000619947270024568,0.340255051851273,0.94023209810257,-0.0137840686365962,0.939742624759674,0.25478008389473,0.22797130048275,0.934170842170715,0.268705546855927,0.234781116247177,0.946398138999939,0.286450505256653,0.149253666400909,0.951592683792114,0.272516071796417,0.142148941755295,0.395185023546219,0.916575193405151,-0.060981709510088,0.375169426202774,0.924713432788849,-0.0644440725445747,0.371834427118301,0.926503121852875,-0.0577157661318779,0.391304165124893,0.918634235858917,-0.0547017529606819,0.955094754695892,0.290877968072891,0.0564270131289959,0.949449300765991,0.307167232036591,0.0647649765014648,0.947001278400421,0.320472359657288,-0.022044787183404,0.952121257781982,0.304173618555069,-0.0307170301675797,0.499534219503403,0.858517229557037,-0.11581776291132,0.474913388490677,0.86827290058136,-0.143386125564575,0.476598113775253,0.866671562194824,-0.147426605224609,0.501503229141235,0.856828272342682,-0.119749188423157,0.870598435401917,0.49074187874794,-0.0350810326635838,0.861977636814117,0.506304800510406,-0.0254960395395756,0.849921107292175,0.516415178775787,-0.104639254510403,0.857853531837463,0.500891029834747,-0.114872522652149,0.528147161006927,0.83465701341629,-0.156231433153152,0.532955169677734,0.829980552196503,-0.164593651890755, +0.557062029838562,0.8209627866745,-0.125307932496071,0.55163162946701,0.825787544250488,-0.117377661168575,0.834669947624207,0.517651081085205,-0.188051387667656,0.827610790729523,0.532495141029358,-0.177508771419525,0.802300930023193,0.541564345359802,-0.25104022026062,0.808574318885803,0.526771366596222,-0.26214399933815,0.733919680118561,-0.656001389026642,-0.176136672496796,0.770336806774139,-0.625756204128265,-0.122517518699169,0.765508592128754,-0.633784770965576,-0.110966011881828,0.730037927627563,-0.663460612297058,-0.163904651999474,0.635439395904541,-0.750414848327637,-0.181918546557426,0.675457715988159,-0.720693409442902,-0.156070753931999,0.675165057182312,-0.721372067928314,-0.154189914464951,0.63530045747757,-0.750990509986877,-0.180018693208694,0.876819372177124,-0.406907677650452,-0.256152659654617,0.881202518939972,-0.381425082683563,-0.27927953004837,0.915779531002045,-0.355612963438034,-0.18678130209446,0.909481167793274,-0.3817018866539,-0.164765626192093,0.547365128993988,-0.834173738956451,-0.0674211159348488,0.575169384479523,-0.81496798992157,-0.0707631632685661,0.577438831329346,-0.812367677688599,-0.0813830271363258,0.548732995986938,-0.832316339015961,-0.078368254005909,0.952443242073059,-0.275480300188065,-0.13024029135704,0.954999089241028,-0.260853379964828,-0.141181766986847,0.973921000957489,-0.221934378147125,-0.0471480339765549,0.970831334590912,-0.236918851733208,-0.036826815456152,0.51150119304657,-0.856665194034576,0.0670171305537224,0.519659876823425,-0.853464841842651,0.0393868014216423,0.521760582923889,-0.85301285982132,0.0116253104060888,0.510595977306366,-0.858920872211456,0.0393286757171154,0.997755229473114,-0.0626985281705856,-0.0235274769365788,0.998247623443604,-0.0501920580863953,-0.031344011425972,0.997571587562561,-0.0076981233432889,0.0692227110266685,0.996841788291931,-0.020366758108139,0.0767584443092346,0.512097299098969,-0.846116125583649,0.147796511650085,0.511852562427521,-0.855306029319763,0.080364778637886,0.522775113582611,-0.839931011199951,0.145678177475929, +0.528357744216919,-0.822352886199951,0.211125239729881,0.926200807094574,0.225895240902901,0.301866620779037,0.961886823177338,0.165629953145981,0.217578709125519,0.962196886539459,0.156685888767242,0.222770556807518,0.926562309265137,0.217041313648224,0.307205736637115,0.798078775405884,0.500567078590393,0.335414499044418,0.845924556255341,0.471060961484909,0.250026524066925,0.850473284721375,0.456280678510666,0.261731326580048,0.80184143781662,0.486001491546631,0.34763902425766,0.647346317768097,0.669444918632507,0.364398598670959,0.702977359294891,0.645776391029358,0.29798635840416,0.708179175853729,0.633532106876373,0.311639547348022,0.651401460170746,0.657491147518158,0.378657758235931,0.581339955329895,0.790706753730774,0.191903337836266,0.584047675132751,0.787111878395081,0.198351666331291,0.534193515777588,0.810440123081207,0.240466326475143,0.532068073749542,0.81380820274353,0.233708783984184,0.530446648597717,-0.810270190238953,0.249175772070885,0.525725901126862,-0.831902503967285,0.177625179290771,0.55975204706192,-0.79322338104248,0.239738091826439,0.569216012954712,-0.76252681016922,0.307483315467834,0.460674613714218,0.866603255271912,0.191775232553482,0.46049565076828,0.86668598651886,0.191831603646278,0.414827853441238,0.885522544384003,0.209207788109779,0.415016889572144,0.885437846183777,0.209190875291824,0.648348569869995,-0.554115831851959,0.522110819816589,0.646940469741821,-0.580833911895752,0.494064748287201,0.70409095287323,-0.520072460174561,0.483508557081223,0.706726491451263,-0.491181045770645,0.509194374084473,0.362282872200012,0.922960877418518,0.129978403449059,0.36057636141777,0.925311148166656,0.11740467697382,0.330718964338303,0.937457501888275,0.108620285987854,0.331196546554565,0.935718178749084,0.121409676969051,0.875503122806549,-0.285283297300339,0.390009850263596,0.822849571704865,-0.356708258390427,0.442354828119278,0.819127798080444,-0.389066934585571,0.421493262052536,0.871951162815094,-0.319001644849777,0.37140166759491,0.318021059036255,0.946267187595367,-0.0586609244346619, +0.309443920850754,0.950577795505524,-0.025427557528019,0.313891887664795,0.947579264640808,-0.0597111098468304,0.325679302215576,0.94098562002182,-0.0920820310711861,0.957879662513733,-0.0788427740335464,0.276134699583054,0.922744333744049,-0.137978136539459,0.359867662191391,0.922843456268311,-0.157881960272789,0.351330935955048,0.958240509033203,-0.0990182161331177,0.268272936344147,0.386347979307175,0.909917294979095,-0.150949761271477,0.349910497665405,0.928588628768921,-0.123635768890381,0.362328618764877,0.917775392532349,-0.162499859929085,0.402007520198822,0.896202921867371,-0.187644630670547,0.992602407932281,0.0664795115590096,0.101592093706131,0.979589700698853,0.0186877567321062,0.200137227773666,0.980476975440979,0.00809583347290754,0.196467190980911,0.993617951869965,0.0558774396777153,0.0979847460985184,0.508569419384003,0.835339665412903,-0.208721771836281,0.450436651706696,0.869646072387695,-0.202045768499374,0.470033168792725,0.849528312683105,-0.239521354436874,0.530506193637848,0.812123835086823,-0.24293626844883,0.958010792732239,0.238276854157448,0.159497484564781,0.952437281608582,0.2559694647789,0.165356352925301,0.948613464832306,0.308859378099442,0.068836010992527,0.954552233219147,0.291365325450897,0.0627401620149612,0.645529687404633,0.739589869976044,-0.190520837903023,0.582295656204224,0.783827006816864,-0.215747565031052,0.603484272956848,0.759203732013702,-0.243755012750626,0.667690396308899,0.712600231170654,-0.215384393930435,0.854985654354095,0.517260134220123,0.0379673391580582,0.837619721889496,0.544023036956787,0.0493162870407104,0.800832629203796,0.598326444625854,-0.0259350817650557,0.81879723072052,0.572756350040436,-0.0390013419091702,0.658664464950562,0.723877787590027,-0.205334350466728,0.681010484695435,0.694871783256531,-0.23103666305542,0.744139194488525,0.640989661216736,-0.188119903206825,0.721536695957184,0.67229026556015,-0.165560811758041,0.321284115314484,0.946918249130249,0.0110647808760405,0.332453489303589,0.942589521408081,0.0316210836172104,0.33138906955719,0.943429291248322,0.0110611906275153, +0.322285652160645,0.946592688560486,-0.00971778109669685,0.346035569906235,0.930397868156433,-0.120909847319126,0.330070793628693,0.939525246620178,-0.0913554057478905,0.334250837564468,0.93432742357254,-0.123728454113007,0.353241801261902,0.923006117343903,-0.152577698230743,0.354833245277405,0.931401550769806,0.0811453238129616,0.356520682573318,0.929908096790314,0.0903551280498505,0.385091930627823,0.918128311634064,0.0935124009847641,0.382474660873413,0.920069634914398,0.0847646072506905,0.420830011367798,0.885015845298767,-0.199121057987213,0.382137447595596,0.906552910804749,-0.179256215691566,0.392723619937897,0.894753396511078,-0.21256648004055,0.434217035770416,0.870759248733521,-0.23072461783886,0.451784640550613,0.863629043102264,0.223686084151268,0.451895415782928,0.864988088607788,0.218142792582512,0.494982212781906,0.847283542156219,0.192622065544128,0.495298385620117,0.845799684524536,0.198248371481895,0.511622250080109,0.836004316806793,-0.198341593146324,0.459218949079514,0.866819500923157,-0.194272696971893,0.476278603076935,0.849793910980225,-0.225851580500603,0.530843138694763,0.816385865211487,-0.227419525384903,0.582333147525787,0.763414025306702,0.279440641403198,0.580226361751556,0.769085824489594,0.268038272857666,0.627286851406097,0.747426271438599,0.218781262636185,0.630277931690216,0.741540312767029,0.229929506778717,0.597547829151154,0.720252811908722,-0.352381378412247,0.614491283893585,0.689590156078339,-0.383230924606323,0.681521892547607,0.63516765832901,-0.363441854715347,0.66358608007431,0.66851818561554,-0.335763394832611,0.816478490829468,0.557995200157166,0.148338422179222,0.779446244239807,0.583668887615204,0.227583274245262,0.774219036102295,0.596180140972137,0.212494999170303,0.810198187828064,0.570677876472473,0.133812993764877,0.686531603336334,0.684104859828949,-0.246323019266129,0.704590857028961,0.657278001308441,-0.267464935779572,0.763447463512421,0.605408549308777,-0.225007832050323,0.745135366916656,0.634169280529022,-0.206403538584709,0.898381948471069,0.438575178384781,0.0237033907324076, +0.866386234760284,0.489781767129898,0.0974101796746254,0.87031751871109,0.482235968112946,0.0999800264835358,0.90210747718811,0.430736362934113,0.0258524157106876,0.841646254062653,0.500344812870026,-0.203191101551056,0.851734280586243,0.479006171226501,-0.212371468544006,0.892708659172058,0.428406178951263,-0.139783263206482,0.882976472377777,0.450530976057053,-0.13181146979332,0.985514461994171,0.165581583976746,-0.0366604253649712,0.971020102500916,0.235544174909592,0.0404860936105251,0.975294768810272,0.2153529971838,0.0492271669209003,0.989012598991394,0.145130023360252,-0.0281349774450064,0.939202129840851,0.333503097295761,-0.0817011520266533,0.944311082363129,0.317822873592377,-0.0852361842989922,0.963005006313324,0.269467979669571,0.00289473356679082,0.958375096321106,0.285449117422104,0.00600432697683573,0.997848331928253,-0.00730738323181868,0.0651557371020317,0.997366905212402,-0.0208741538226604,0.0694516748189926,0.996354520320892,-0.0846140012145042,-0.0108693083748221,0.997343778610229,-0.0711930841207504,-0.015395812690258,0.971521258354187,0.024182977154851,0.235715433955193,0.989387512207031,0.0490520335733891,0.136770844459534,0.987671315670013,0.060738705098629,0.144278347492218,0.969304442405701,0.0357885584235191,0.243244782090187,0.916769623756409,-0.144951015710831,0.372186273336411,0.951864957809448,-0.126357346773148,0.279261291027069,0.95079094171524,-0.107139088213444,0.290719777345657,0.914742112159729,-0.125937730073929,0.383909612894058,0.926934123039246,-0.372992664575577,-0.0408610813319683,0.914771616458893,-0.40346023440361,-0.0203138627111912,0.877193987369537,-0.476025253534317,-0.0626966580748558,0.890168845653534,-0.44758614897728,-0.0852416530251503,0.815487742424011,-0.425711393356323,0.392109155654907,0.855852961540222,-0.407173812389374,0.318943917751312,0.858188450336456,-0.391410022974014,0.332130491733551,0.816644370555878,-0.410315573215485,0.40587329864502,0.856585621833801,-0.496030032634735,-0.142180517315865,0.843058347702026,-0.52538001537323,-0.115015357732773, +0.794519603252411,-0.591886639595032,-0.135679110884666,0.808129549026489,-0.565344393253326,-0.165264591574669,0.777028679847717,-0.565573155879974,0.276321202516556,0.779148042201996,-0.558039605617523,0.285517513751984,0.740688145160675,-0.579789519309998,0.339448422193527,0.739338576793671,-0.586975634098053,0.329906165599823,0.651274502277374,-0.74592250585556,-0.13943162560463,0.698119819164276,-0.700108051300049,-0.149925231933594,0.685416519641876,-0.718786895275116,-0.116403177380562,0.640142321586609,-0.761185884475708,-0.103990018367767,0.686299026012421,-0.649148404598236,0.328024387359619,0.686221599578857,-0.646586000919342,0.333206683397293,0.64608097076416,-0.66969245672226,0.366184949874878,0.646549701690674,-0.672030866146088,0.361037641763687,0.566842019557953,-0.822445511817932,-0.0476810522377491,0.599262714385986,-0.797042429447174,-0.0748838856816292,0.58955043554306,-0.806768596172333,-0.039430133998394,0.559483647346497,-0.828765869140625,-0.0111901666969061,0.591527342796326,-0.760147571563721,0.268832743167877,0.590006768703461,-0.762476027011871,0.265560328960419,0.561447024345398,-0.781237244606018,0.272847235202789,0.562575697898865,-0.779123604297638,0.276541411876678,0.524713099002838,-0.84785532951355,0.0762727856636047,0.526721894741058,-0.848802983760834,0.0457980670034885,0.539061963558197,-0.842109441757202,0.0162514578551054,0.534667670726776,-0.84377133846283,0.0466956794261932,0.534628391265869,-0.82688957452774,0.174430668354034,0.533119678497314,-0.831570148468018,0.155803009867668,0.523493885993958,-0.84076327085495,0.138098657131195,0.523343980312347,-0.837479114532471,0.157288670539856,0.972762167453766,0.12440624833107,0.195593729615211,0.972761571407318,0.124411702156067,0.195593222975731,0.972761273384094,0.124414250254631,0.195592984557152,0.896008133888245,0.373982846736908,0.239387258887291,0.895796716213226,0.377863138914108,0.234025046229362,0.895717203617096,0.39583945274353,0.202489137649536,0.865990817546844,0.376805037260056,0.328752011060715,0.868421375751495,0.421341776847839,0.261372655630112, +0.865572035312653,0.381338953971863,0.324600785970688,0.911494851112366,0.319855213165283,0.258591830730438,0.908638298511505,0.313464462757111,0.275892168283463,0.911836445331573,0.349155128002167,0.215974554419518,0.921218633651733,0.330945461988449,0.204527571797371,0.920957565307617,0.305051892995834,0.242446973919868,0.920726478099823,0.316459983587265,0.228289440274239,0.907810032367706,0.417167246341705,0.0430401377379894,0.925334692001343,0.322568297386169,0.199262157082558,0.906575083732605,0.421124368906021,0.0278551802039146,0.518555581569672,-0.730466365814209,-0.444431066513062,0.518692791461945,-0.730844080448151,-0.443649500608444,0.588108837604523,-0.710235893726349,-0.386901944875717,0.58791321516037,-0.709928214550018,-0.387762695550919,0.584321796894073,-0.793889224529266,-0.168249621987343,0.580615520477295,-0.798009157180786,-0.161452695727348,0.663092434406281,-0.745789289474487,-0.0640841126441956,0.667330801486969,-0.741426527500153,-0.0704007595777512,0.67256623506546,-0.730539560317993,0.118180930614471,0.663591861724854,-0.736818015575409,0.129403069615364,0.708758473396301,-0.669981479644775,0.220876127481461,0.717627227306366,-0.66415673494339,0.209539905190468,0.829488635063171,-0.360613703727722,0.426504909992218,0.814856588840485,-0.460717380046844,0.3517786860466,0.815453827381134,-0.460027664899826,0.351297229528427,0.83023327589035,-0.359972685575485,0.425596535205841,0.858356773853302,-0.130006983876228,0.496308267116547,0.890491783618927,-0.207438200712204,0.404961436986923,0.874844133853912,-0.224819228053093,0.429073601961136,0.841918230056763,-0.15033982694149,0.51823902130127,-0.892995059490204,-0.322458773851395,-0.313974827528,-0.893852591514587,-0.337477415800095,-0.295189082622528,-0.942038714885712,-0.265008330345154,-0.205751404166222,-0.94183486700058,-0.249516069889069,-0.225141435861588,0.837716579437256,0.402404516935349,0.369190335273743,0.83850234746933,0.389394044876099,0.381164103746414,0.84260356426239,0.457488685846329,0.28411853313446,-0.973360300064087,-0.135986104607582,-0.184601038694382, +-0.939678728580475,-0.213328987360001,-0.267384678125381,-0.940618991851807,-0.221304297447205,-0.257410645484924,-0.974143981933594,-0.143828630447388,-0.174232691526413,-0.755150675773621,-0.563331663608551,-0.335268765687943,-0.755545139312744,-0.552839636802673,-0.35145378112793,-0.82780122756958,-0.464132130146027,-0.315161019563675,-0.827636420726776,-0.474762290716171,-0.299364000558853,-0.591527700424194,-0.742799580097198,-0.313598185777664,-0.678832113742828,-0.667404353618622,-0.306200176477432,-0.677000045776367,-0.679836869239807,-0.28194460272789,-0.590689778327942,-0.753806233406067,-0.287857294082642,-0.423571407794952,-0.890443325042725,-0.166427612304688,-0.423509269952774,-0.888975083827972,-0.174251064658165,-0.49759703874588,-0.852976381778717,-0.157570600509644,-0.497277200222015,-0.854530334472656,-0.149977684020996,-0.292713701725006,-0.954204082489014,-0.0617519728839397,-0.357008934020996,-0.927260994911194,-0.112834706902504,-0.359474897384644,-0.930662631988525,-0.0681533664464951,-0.298435211181641,-0.954300820827484,-0.0157028567045927,-0.204567015171051,-0.971391081809998,0.120630480349064,-0.248844280838966,-0.966716229915619,0.0594680197536945,-0.257752776145935,-0.960545122623444,0.104482740163803,-0.218039602041245,-0.961815774440765,0.165436193346977,-0.227247402071953,-0.954473733901978,0.193231657147408,-0.23452553153038,-0.947085976600647,0.219148442149162,-0.198980659246445,-0.943958282470703,0.263342887163162,-0.188783138990402,-0.952803313732147,0.237753838300705,-0.18738417327404,-0.903561055660248,-0.385311275720596,-0.0299728456884623,-0.895669400691986,-0.443709582090378,-0.034287616610527,-0.891911268234253,-0.450908690690994,-0.190713286399841,-0.899558901786804,-0.392965883016586,0.93332177400589,0.305540978908539,0.18856093287468,0.930835843086243,0.255008697509766,0.261754095554352,0.930731475353241,0.271856069564819,0.244608342647552,0.912684738636017,0.32773146033287,0.244128346443176,0.913725078105927,0.34558179974556,0.213728129863739,0.913766860961914,0.332623511552811,0.233220770955086, +0.91882848739624,0.325855612754822,0.22264851629734,0.91877543926239,0.326347351074219,0.222146674990654,0.918915629386902,0.335524916648865,0.207406133413315,-0.299213707447052,-0.942470550537109,0.149065896868706,-0.159099578857422,-0.986427307128906,0.0406028665602207,-0.170780047774315,-0.985215663909912,0.0135831851512194,-0.311361789703369,-0.94232165813446,0.122815363109112,-0.434416681528091,-0.727883160114288,0.530535817146301,-0.353056132793427,-0.839957773685455,0.412095069885254,-0.378014862537384,-0.845197737216949,0.377816796302795,-0.463374763727188,-0.732252955436707,0.499088495969772,-0.318270355463028,-0.710666239261627,0.627421379089355,-0.309982717037201,-0.711169242858887,0.630990505218506,-0.358820825815201,-0.646787703037262,0.672988474369049,-0.364478826522827,-0.645237863063812,0.671433746814728,0.201752886176109,-0.938390791416168,-0.280568540096283,0.305862635374069,-0.906325221061707,-0.291586488485336,0.311372101306915,-0.909550964832306,-0.275253862142563,0.207572758197784,-0.941782295703888,-0.264498978853226,0.948652327060699,0.269367009401321,0.165831819176674,0.944026291370392,0.215908035635948,0.249395832419395,0.944012582302094,0.214580878615379,0.250589907169342,0.395125985145569,-0.857365131378174,-0.329849541187286,0.498782277107239,-0.796647191047668,-0.341422945261002,0.499212265014648,-0.795740842819214,-0.342904716730118,0.394933551549911,-0.856604933738708,-0.332047671079636,0.59905081987381,-0.721035420894623,-0.348204046487808,0.600932240486145,-0.729044258594513,-0.327681064605713,0.679831743240356,-0.652492582798004,-0.334786534309387,0.678891599178314,-0.643377721309662,-0.353795558214188,0.742432534694672,-0.59829318523407,-0.301395386457443,0.742673277854919,-0.609609246253967,-0.277151495218277,0.796546816825867,-0.537882685661316,-0.27603480219841,0.796669065952301,-0.525545358657837,-0.298530906438828,0.849151849746704,-0.492931693792343,-0.189629852771759,0.897802412509918,-0.40252161026001,-0.17868147790432,0.899524390697479,-0.383597016334534,-0.209067538380623, +0.85139399766922,-0.47540095448494,-0.221635162830353,0.940556287765503,-0.26402422785759,-0.21364714205265,0.940793693065643,-0.28213357925415,-0.187903970479965,0.974133253097534,-0.17066790163517,-0.148111119866371,0.973126351833344,-0.151888906955719,-0.173075273633003,0.98498147726059,0.0327918007969856,-0.169518068432808,0.988232970237732,0.0186663083732128,-0.15181303024292,0.990737855434418,0.132527396082878,-0.0295836105942726,0.988110661506653,0.146242275834084,-0.0474402531981468,-0.945333123207092,-0.196089774370193,-0.260564774274826,-0.934176564216614,-0.183775305747986,-0.305844455957413,-0.942393600940704,-0.17781788110733,-0.283328473567963,-0.950911700725555,-0.187882035970688,-0.245900973677635,0.938261091709137,0.294437646865845,0.181583642959595,0.932759821414948,0.234887719154358,0.273472279310226,0.932694375514984,0.230481415987015,0.277415782213211,0.932246327400208,0.355753690004349,0.0660009309649467,0.934110879898071,0.338248252868652,0.114128157496452,0.938509047031403,0.293867528438568,0.181225404143333,0.93887984752655,0.212411716580391,0.270898312330246,0.938775777816772,0.209020093083382,0.273880690336227,0.94572389125824,0.27669221162796,0.170433878898621,0.917266666889191,0.249457135796547,0.310472220182419,0.917525887489319,0.261335611343384,0.299749851226807,0.924402713775635,0.324487417936325,0.200468361377716,0.930664002895355,0.296534299850464,0.214317426085472,0.930314660072327,0.299840837717056,0.21121110022068,0.930679261684418,0.311294406652451,0.1921766102314,0.965825021266937,0.232981726527214,-0.11358505487442,0.94031286239624,0.292239636182785,-0.174378246068954,0.924632608890533,0.246989250183105,-0.289915174245834,0.956101834774017,0.184808894991875,-0.227409407496452,0.93888521194458,0.293000251054764,0.180680438876152,0.939020156860352,0.286518603563309,0.190126821398735,0.938743650913239,0.288761049509048,0.188089489936829,0.905423641204834,0.342956691980362,0.250177413225174,0.905563354492188,0.341864943504333,0.251163929700851,0.9057457447052,0.360387742519379,0.223036602139473, +0.920975863933563,0.310995787382126,0.234702169895172,0.920971632003784,0.310419470071793,0.235480308532715,0.9216468334198,0.330085694789886,0.203987151384354,0.920574069023132,0.311698496341705,0.23534531891346,0.920904040336609,0.331575483083725,0.204923585057259,0.920370221138,0.318295538425446,0.2271708548069,0.48852351307869,-0.466457724571228,-0.737402200698853,0.435972839593887,-0.443210542201996,-0.783257365226746,0.456105887889862,-0.475401699542999,-0.752303540706635,0.492009043693542,-0.491616725921631,-0.718498587608337,0.225362360477448,-0.586630046367645,-0.777866899967194,0.220358908176422,-0.542414367198944,-0.810696363449097,0.157201498746872,-0.541751384735107,-0.825707614421844,0.171446442604065,-0.586902797222137,-0.791297197341919,0.000955998781137168,-0.695576608181,-0.718451261520386,0.0849695131182671,-0.670527279376984,-0.737002968788147,0.0961761698126793,-0.593352615833282,-0.799176335334778,0.006910499650985,-0.623154640197754,-0.782068192958832,0.113602638244629,-0.57538115978241,-0.809957385063171,0.148417055606842,-0.614268600940704,-0.775013983249664,0.21294330060482,-0.639068841934204,-0.739084601402283,0.193340212106705,-0.60287082195282,-0.77405834197998,0.845625638961792,-0.128335371613503,-0.518118977546692,0.826377272605896,-0.0957865640521049,-0.554910600185394,0.798473954200745,-0.079519584774971,-0.596754670143127,0.830048501491547,-0.116452880203724,-0.545397281646729,0.433238357305527,-0.358978927135468,-0.826703488826752,0.456295967102051,-0.400333642959595,-0.794686853885651,0.471207112073898,-0.379577606916428,-0.796168804168701,0.450441986322403,-0.338949590921402,-0.825963199138641,-0.0292429849505424,-0.604859590530396,-0.795795023441315,0.0863214656710625,-0.557186365127563,-0.825888574123383,0.0524172410368919,-0.649525225162506,-0.758531033992767,-0.059123832732439,-0.687680661678314,-0.723601877689362,0.607043385505676,-0.284585356712341,-0.741963267326355,0.544934749603271,-0.284672915935516,-0.788674473762512,0.484759956598282,-0.289280861616135,-0.825423777103424, +0.555834054946899,-0.292172372341156,-0.778256952762604,0.367393016815186,-0.453595846891403,-0.811956405639648,0.413624823093414,-0.459920555353165,-0.78574013710022,0.387109816074371,-0.411459654569626,-0.825134515762329,0.330164432525635,-0.403445333242416,-0.853360056877136,0.379223704338074,-0.421216636896133,-0.823872566223145,0.411412090063095,-0.46248796582222,-0.785394787788391,0.4540875852108,-0.477628231048584,-0.752114117145538,0.436495453119278,-0.442598521709442,-0.783312380313873,0.00342880445532501,-0.660680711269379,-0.750659167766571,-0.01541349850595,-0.623451828956604,-0.781709849834442,-0.0557603091001511,-0.629767954349518,-0.774779379367828,-0.0408111363649368,-0.66153484582901,-0.74880313873291,-0.0954250916838646,-0.679551124572754,-0.72739565372467,-0.0644733533263206,-0.679084897041321,-0.731222867965698,-0.103867128491402,-0.640945971012115,-0.760526061058044,-0.145258009433746,-0.639230072498322,-0.75517213344574,0.385042041540146,-0.395210444927216,-0.833997189998627,0.490879863500595,-0.373660802841187,-0.787028908729553,0.552917540073395,-0.33479443192482,-0.763016998767853,0.457261830568314,-0.357889235019684,-0.814141809940338,0.277777433395386,-0.379549533128738,-0.882486164569855,0.329795032739639,-0.41946467757225,-0.845745027065277,0.378029584884644,-0.440257579088211,-0.814411997795105,0.333474189043045,-0.399057805538177,-0.854135870933533,0.939076483249664,-0.0274012684822083,-0.342614203691483,0.926582932472229,0.0397395230829716,-0.373985201120377,0.919894397258759,0.089447408914566,-0.381829112768173,0.941041946411133,0.0200983975082636,-0.337692320346832,0.800838589668274,-0.0729903653264046,-0.594415724277496,0.763577163219452,-0.0782883614301682,-0.640953063964844,0.806586027145386,-0.0771753787994385,-0.586057126522064,0.843702733516693,-0.0754751190543175,-0.531478524208069,0.818943083286285,-0.0336815305054188,-0.572885513305664,0.779363870620728,-0.0315625183284283,-0.62577611207962,0.736289858818054,-0.0292097553610802,-0.676035523414612,0.78146231174469,-0.0330650806427002,-0.623075723648071, +0.691397607326508,-0.153286650776863,-0.706025958061218,0.733682632446289,-0.153546497225761,-0.661916375160217,0.682094931602478,-0.14677731692791,-0.716381847858429,0.633484601974487,-0.145306617021561,-0.759988963603973,0.782448172569275,0.00788281112909317,-0.622665822505951,0.765170514583588,-0.0387832447886467,-0.642658531665802,0.722495973110199,-0.0788653865456581,-0.686862289905548,0.744284391403198,-0.0321438200771809,-0.667088985443115,0.57962030172348,-0.121316008269787,-0.805805623531342,0.649630904197693,-0.121189057826996,-0.750528395175934,0.706223964691162,-0.116288341581821,-0.698372960090637,0.645460665225983,-0.118722081184387,-0.754510104656219,0.325321942567825,-0.487622827291489,-0.810178756713867,0.262345820665359,-0.433911174535751,-0.861914157867432,0.196826949715614,-0.430892109870911,-0.880676507949829,0.275332242250443,-0.482829868793488,-0.831304669380188,0.112339414656162,-0.566866278648376,-0.816114187240601,0.173631891608238,-0.555721402168274,-0.813034892082214,0.0918392688035965,-0.557540059089661,-0.825054347515106,0.0256841368973255,-0.569456696510315,-0.821620106697083,-0.131106108427048,-0.683962285518646,-0.717639863491058,-0.12503308057785,-0.684713363647461,-0.718007206916809,-0.187026008963585,-0.659270286560059,-0.728274703025818,-0.180745854973793,-0.664346635341644,-0.725241005420685,-0.181463778018951,-0.650482594966888,-0.737525165081024,-0.116709500551224,-0.672946751117706,-0.730425655841827,-0.0935952588915825,-0.677332639694214,-0.729698956012726,-0.156064674258232,-0.654044687747955,-0.740181982517242,0.345216810703278,-0.42002746462822,-0.839286863803864,0.309772342443466,-0.4053053855896,-0.86009806394577,0.271272748708725,-0.396293252706528,-0.877133250236511,0.340368568897247,-0.421272486448288,-0.840641856193542,0.649817883968353,-0.190589964389801,-0.735807180404663,0.569945752620697,-0.202449336647987,-0.796351790428162,0.49655157327652,-0.221857607364655,-0.839175641536713,0.588766574859619,-0.208465814590454,-0.780958294868469,0.452526479959488,-0.340131968259811,-0.824336111545563, +0.515717744827271,-0.325179994106293,-0.792649626731873,0.423185855150223,-0.32892832159996,-0.844227433204651,0.347087055444717,-0.345379739999771,-0.871919393539429,0.646071314811707,-0.0961338579654694,-0.757198929786682,0.680712282657623,-0.11017569899559,-0.724218249320984,0.667757868766785,-0.0973880439996719,-0.737980365753174,0.632126152515411,-0.0837188065052032,-0.770329594612122,-0.239246293902397,-0.813133060932159,-0.530637204647064,-0.233916133642197,-0.793503642082214,-0.561814188957214,-0.235732898116112,-0.768437504768372,-0.594923377037048,-0.245199114084244,-0.788952827453613,-0.563409984111786,-0.203625619411469,-0.702518820762634,-0.681911945343018,-0.227187603712082,-0.781127214431763,-0.581572294235229,-0.171548828482628,-0.715782046318054,-0.676924645900726,-0.139957740902901,-0.625522196292877,-0.767550528049469,-0.181269019842148,-0.730738401412964,-0.658151209354401,-0.207871660590172,-0.744481682777405,-0.634457588195801,-0.144310995936394,-0.744319558143616,-0.652045011520386,-0.117589846253395,-0.731416523456573,-0.671716153621674,-0.0301702041178942,-0.740547835826874,-0.671326041221619,-0.025909086689353,-0.720670282840729,-0.692793667316437,-0.127460166811943,-0.71408611536026,-0.688356637954712,-0.142632007598877,-0.736733019351959,-0.660969495773315,-0.113348238170147,-0.687850177288055,-0.716947913169861,-0.00693555502220988,-0.686969518661499,-0.726653099060059,0.0230346545577049,-0.663133382797241,-0.748146712779999,-0.0719604417681694,-0.665052175521851,-0.74332183599472,0.0740116462111473,-0.582399427890778,-0.80952662229538,0.030332900583744,-0.615589737892151,-0.787482798099518,0.163787022233009,-0.607406556606293,-0.777323067188263,0.196308553218842,-0.576936364173889,-0.792847633361816,-0.202971801161766,-0.872427642345428,-0.44460391998291,-0.231983318924904,-0.859316468238831,-0.455805867910385,-0.244381979107857,-0.863079488277435,-0.442008405923843,-0.209481552243233,-0.877928018569946,-0.430534392595291,-0.240682989358902,-0.844726264476776,-0.478026628494263,-0.226113349199295,-0.832660317420959,-0.505519151687622, +-0.23901841044426,-0.812533438205719,-0.531657457351685,-0.257687449455261,-0.823742508888245,-0.505020141601563,-0.237654432654381,-0.80893886089325,-0.537715911865234,-0.225306123495102,-0.829039871692657,-0.511790990829468,-0.159626930952072,-0.829099059104919,-0.535830199718475,-0.173314571380615,-0.811200678348541,-0.558493971824646,-0.0148140015080571,-0.832646310329437,-0.553606927394867,-0.0401781760156155,-0.816370069980621,-0.576129853725433,-0.155360594391823,-0.813321769237518,-0.560687899589539,-0.136359214782715,-0.835468828678131,-0.532351434230804,-0.148599565029144,-0.787912786006927,-0.597588121891022,-0.0315440818667412,-0.788718283176422,-0.613944947719574,-0.0426001623272896,-0.769241452217102,-0.637536525726318,-0.153423309326172,-0.763672649860382,-0.627108573913574,-0.0141903236508369,-0.701588928699493,-0.712440431118011,-0.0148394899442792,-0.730872690677643,-0.682352483272552,0.129343688488007,-0.719226598739624,-0.682629525661469,0.124062463641167,-0.698258280754089,-0.705013394355774,-0.117593683302402,-0.943738102912903,-0.30907940864563,-0.161869451403618,-0.931463956832886,-0.325842201709747,-0.162540912628174,-0.939401030540466,-0.301837801933289,-0.12113144248724,-0.9509037733078,-0.284796833992004,-0.167710527777672,-0.916530191898346,-0.363105535507202,-0.166837230324745,-0.904427766799927,-0.392652362585068,-0.20355686545372,-0.885526180267334,-0.417621791362762,-0.209988996386528,-0.89735472202301,-0.388148546218872,-0.203793406486511,-0.892167747020721,-0.403118938207626,-0.166309848427773,-0.90777975320816,-0.385067820549011,-0.104396797716618,-0.90533185005188,-0.411674112081528,-0.142662525177002,-0.892827987670898,-0.427206784486771,0.068964496254921,-0.895545899868011,-0.439592331647873,0.0190792456269264,-0.890981018543243,-0.453639507293701,-0.105072192847729,-0.896553814411163,-0.43029198050499,-0.059560265392065,-0.909709513187408,-0.410951524972916,-0.106362618505955,-0.876582860946655,-0.469350039958954,0.0196457020938396,-0.868906378746033,-0.494586318731308,-0.0192994009703398,-0.857745885848999,-0.513711512088776, +-0.138933956623077,-0.858216226100922,-0.494127780199051,-0.0105285765603185,-0.807112634181976,-0.590303599834442,0.0205055754631758,-0.827365458011627,-0.561289548873901,0.168741255998611,-0.801981270313263,-0.57302051782608,0.135355859994888,-0.79248708486557,-0.594678938388824,0.00571922631934285,-0.974491059780121,-0.224353402853012,-0.051523394882679,-0.973746776580811,-0.221726268529892,-0.062758170068264,-0.977009117603302,-0.203751489520073,-0.00957281328737736,-0.978728115558624,-0.20493820309639,-0.0716411620378494,-0.968775689601898,-0.237363055348396,-0.0575999766588211,-0.967495262622833,-0.246242046356201,-0.10627656430006,-0.964742720127106,-0.240784123539925,-0.111967965960503,-0.965879082679749,-0.233540028333664,-0.113155037164688,-0.952705800533295,-0.282042026519775,-0.0650851130485535,-0.958828330039978,-0.276427567005157,0.0119530828669667,-0.952001631259918,-0.305859684944153,-0.0468320399522781,-0.950501024723053,-0.307171911001205,0.177113011479378,-0.965363800525665,-0.191582262516022,0.0983795672655106,-0.983109474182129,-0.154328599572182,0.16211710870266,-0.972168266773224,-0.169135898351669,0.242011025547981,-0.947424650192261,-0.209325909614563,0.16374135017395,-0.972479999065399,-0.165745556354523,0.101065866649151,-0.98387336730957,-0.14757676422596,0.0849121809005737,-0.987707614898682,-0.13123919069767,0.1466004550457,-0.977987110614777,-0.148490950465202,0.0688146874308586,-0.983088672161102,-0.169709205627441,0.0867615342140198,-0.979223728179932,-0.183284938335419,0.0243283566087484,-0.985629796981812,-0.167158856987953,0.00774252554401755,-0.987975299358368,-0.154417738318443,0.197039023041725,-0.915111482143402,-0.351776331663132,0.135061144828796,-0.925690352916718,-0.353349417448044,0.00871143955737352,-0.946755528450012,-0.321835517883301,0.07062017172575,-0.946201145648956,-0.315778702497482,0.00098605256062001,-0.933152973651886,-0.359478205442429,0.129421934485435,-0.911107242107391,-0.391323029994965,0.0718513578176498,-0.914080917835236,-0.39911612868309,-0.0548107512295246,-0.926566779613495,-0.372115314006805, +0.0663349330425262,-0.877927541732788,-0.474175930023193,0.119346238672733,-0.88282322883606,-0.454290479421616,0.264100790023804,-0.83966726064682,-0.474562495946884,0.212711453437805,-0.846403777599335,-0.488215893507004,0.340555012226105,-0.927700638771057,-0.152950420975685,0.266017317771912,-0.957993268966675,-0.107163049280643,0.328683495521545,-0.934879004955292,-0.13404706120491,0.40243273973465,-0.897140026092529,-0.182174950838089,0.328524380922318,-0.934897005558014,-0.13431091606617,0.266998082399368,-0.957926452159882,-0.105305105447769,0.249786794185638,-0.964421927928925,-0.0865848660469055,0.31045863032341,-0.943719744682312,-0.114054873585701,0.227225065231323,-0.965466499328613,-0.127449035644531,0.246024534106255,-0.958437621593475,-0.144462004303932,0.185482203960419,-0.975335538387299,-0.119654439389706,0.168299645185471,-0.980218231678009,-0.104151867330074,0.342576026916504,-0.891400575637817,-0.296726584434509,0.27895975112915,-0.916601479053497,-0.286396831274033,0.159008875489235,-0.956684529781342,-0.243866518139839,0.224469408392906,-0.94175386428833,-0.250425934791565,0.146246835589409,-0.94896000623703,-0.279440194368362,0.269123882055283,-0.90824556350708,-0.320409774780273,0.204966723918915,-0.9264035820961,-0.315856069326401,0.0810332968831062,-0.956844687461853,-0.279073059558868,0.189793407917023,-0.904009461402893,-0.383073508739471,0.252274394035339,-0.891992926597595,-0.375108301639557,0.386807322502136,-0.828548491001129,-0.404830306768417,0.328929126262665,-0.851875126361847,-0.407571345567703,0.502385020256042,-0.853161513805389,-0.140444725751877,0.421203911304474,-0.899418771266937,-0.116761043667793,0.490789443254471,-0.860829472541809,-0.134530141949654,0.567122280597687,-0.808444023132324,-0.157450377941132,0.505577445030212,-0.855313837528229,-0.113268241286278,0.440461188554764,-0.89360511302948,-0.0863931030035019,0.409118860960007,-0.90815669298172,-0.0887310281395912,0.475478649139404,-0.872041583061218,-0.116032093763351,0.398420989513397,-0.911171197891235,-0.105013325810432, +0.416797697544098,-0.900561511516571,-0.123566821217537,0.357100397348404,-0.930113136768341,-0.0858422815799713,0.338144361972809,-0.938619077205658,-0.0682111084461212,0.486593008041382,-0.830195903778076,-0.272033393383026,0.427681505680084,-0.868364572525024,-0.251061201095581,0.319851785898209,-0.926797986030579,-0.196825563907623,0.383928567171097,-0.897750318050385,-0.215970456600189,0.30391588807106,-0.924703478813171,-0.229256615042686,0.415460675954819,-0.865177810192108,-0.280820101499557,0.353735089302063,-0.896998226642609,-0.265076756477356,0.238979056477547,-0.94657176733017,-0.216543436050415,0.332888334989548,-0.885896623134613,-0.323067516088486,0.39532533288002,-0.858322083950043,-0.327110528945923,0.512509107589722,-0.776330292224884,-0.366940855979919,0.457692623138428,-0.813143849372864,-0.35960328578949,0.641507923603058,-0.751634955406189,-0.15333816409111,0.578821778297424,-0.806182682514191,-0.122616611421108,0.635953664779663,-0.756780743598938,-0.151148870587349,0.69419252872467,-0.696552574634552,-0.181414589285851,0.648980438709259,-0.748777210712433,-0.134748250246048,0.59858500957489,-0.79538631439209,-0.0951665267348289,0.576655983924866,-0.811759293079376,-0.0922753438353539,0.628371894359589,-0.766589403152466,-0.132247626781464,0.549891471862793,-0.825428783893585,-0.127618789672852,0.587403774261475,-0.801667988300323,-0.11083984375,0.51785933971405,-0.850158035755157,-0.0951469019055367,0.478596836328506,-0.870903432369232,-0.111679568886757,0.614946365356445,-0.740199387073517,-0.271930277347565,0.566907048225403,-0.786879420280457,-0.243797898292542,0.479251742362976,-0.858820021152496,-0.180959075689316,0.534285247325897,-0.818917691707611,-0.20955453813076,0.461880087852478,-0.861727833747864,-0.209980815649033,0.553752362728119,-0.787857413291931,-0.269516408443451,0.499475568532944,-0.83117663860321,-0.244273617863655,0.400841623544693,-0.897246360778809,-0.18513523042202,0.476192802190781,-0.828885495662689,-0.293580502271652,0.532655298709869,-0.788077831268311,-0.308564275503159, +0.626091480255127,-0.693437933921814,-0.356585651636124,0.579285979270935,-0.740454614162445,-0.340814799070358,0.755906701087952,-0.626206815242767,-0.190971940755844,0.72569739818573,-0.674697875976563,-0.134707674384117,0.755633950233459,-0.627575635910034,-0.187526598572731,0.783277869224548,-0.571206986904144,-0.245353654026985,0.756485223770142,-0.626839578151703,-0.18655389547348,0.727020263671875,-0.673604905605316,-0.133033737540245,0.721294283866882,-0.682855188846588,-0.115945808589458,0.751667261123657,-0.637381553649902,-0.169532001018524,0.690832495689392,-0.706816732883453,-0.152186095714569,0.696937918663025,-0.696764171123505,-0.169697776436806,0.66035521030426,-0.741300106048584,-0.12002220749855,0.652681946754456,-0.750750124454498,-0.101884886622429,0.731294929981232,-0.623740434646606,-0.275963097810745,0.685373544692993,-0.682348251342773,-0.254290968179703,0.607021272182465,-0.767619729042053,-0.205633521080017,0.660359978675842,-0.715302407741547,-0.228620052337646,0.598240673542023,-0.771026015281677,-0.218236029148102,0.681944310665131,-0.68353796005249,-0.260245680809021,0.630171000957489,-0.737043619155884,-0.24423585832119,0.539508879184723,-0.817504346370697,-0.201536074280739,0.603962361812592,-0.741958022117615,-0.291080415248871,0.649004876613617,-0.692883193492889,-0.314174503087997,0.717537701129913,-0.591842949390411,-0.367235153913498,0.681881010532379,-0.644787311553955,-0.34538060426712,0.842581748962402,-0.475571990013123,-0.252759426832199,0.825488865375519,-0.53172641992569,-0.189302146434784,0.840378224849701,-0.480944633483887,-0.249913826584816,0.853809535503387,-0.415734767913818,-0.31332740187645,0.840202867984772,-0.481150239706039,-0.250107258558273,0.826591551303864,-0.530485212802887,-0.187967762351036,0.822626113891602,-0.542025148868561,-0.171741187572479,0.836790680885315,-0.495575547218323,-0.232779398560524,0.805232107639313,-0.561204552650452,-0.191443681716919,0.810425400733948,-0.548047423362732,-0.207014113664627,0.789345800876617,-0.596072494983673,-0.147073999047279, +0.783681869506836,-0.606921017169952,-0.132248654961586,0.801690101623535,-0.491008073091507,-0.340887367725372,0.776552677154541,-0.557378351688385,-0.293760746717453,0.734981775283813,-0.641443908214569,-0.219890177249908,0.765763878822327,-0.584870338439941,-0.267455458641052,0.715929865837097,-0.653881132602692,-0.244712010025978,0.773996293544769,-0.558841109275818,-0.297702133655548,0.734869599342346,-0.62209016084671,-0.270130544900894,0.669966638088226,-0.710381627082825,-0.215645089745522,0.701435625553131,-0.635814666748047,-0.322068005800247,0.741209805011749,-0.575636744499207,-0.34532642364502,0.792850375175476,-0.469184935092926,-0.388913571834564,0.76192831993103,-0.532573819160461,-0.368551820516586,0.888277411460876,-0.320206761360168,-0.329288631677628,0.882033705711365,-0.383861094713211,-0.27325302362442,0.887000977993011,-0.326041847467422,-0.326995611190796,0.889420509338379,-0.261358201503754,-0.374997407197952,0.887686252593994,-0.324938625097275,-0.326233297586441,0.89081859588623,-0.370714336633682,-0.262703508138657,0.890102744102478,-0.384162604808807,-0.245227128267288,0.888035655021667,-0.339889228343964,-0.309625923633575,0.878417432308197,-0.401954919099808,-0.25848650932312,0.879672288894653,-0.387292832136154,-0.276008903980255,0.873912930488586,-0.438270568847656,-0.210226833820343,0.871802926063538,-0.450142562389374,-0.193213760852814,0.849372386932373,-0.336957365274429,-0.406234294176102,0.841617524623871,-0.403194844722748,-0.359324127435684,0.823211967945099,-0.494745463132858,-0.27847608923912,0.838022887706757,-0.432260364294052,-0.332969784736633,0.806978046894073,-0.509501755237579,-0.298654347658157,0.830887913703918,-0.411524295806885,-0.374530583620071,0.813622713088989,-0.483039081096649,-0.323560804128647,0.783261299133301,-0.571220517158508,-0.24537518620491,0.788210093975067,-0.499418020248413,-0.359592080116272,0.808895587921143,-0.427326172590256,-0.403831988573074,0.824794888496399,-0.333161860704422,-0.456855177879333,0.813545346260071,-0.400355815887451,-0.42173358798027, +0.833552777767181,-0.221444129943848,-0.506114959716797,0.83707720041275,-0.290942370891571,-0.46330800652504,0.835880398750305,-0.239788308739662,-0.493766725063324,0.829151570796967,-0.171127304434776,-0.532187104225159,0.862599432468414,-0.211587339639664,-0.45951384305954,0.864695608615875,-0.264950007200241,-0.426735252141953,0.86574512720108,-0.348810374736786,-0.358910739421844,0.86776328086853,-0.291814237833023,-0.402282625436783,0.857736766338348,-0.358259499073029,-0.368697464466095,0.858029723167419,-0.271503984928131,-0.435971081256866,0.857921063899994,-0.329463124275208,-0.394240349531174,0.851610898971558,-0.418108761310577,-0.316139101982117,0.901297211647034,-0.166612058877945,-0.399879962205887,0.91218638420105,-0.219759836792946,-0.345863521099091,0.909685909748077,-0.242063418030739,-0.337456405162811,0.900033056735992,-0.190075740218163,-0.392188519239426,0.901679813861847,-0.258477747440338,-0.346645206212997,0.901909828186035,-0.240793317556381,-0.358576625585556,0.908556342124939,-0.289237052202225,-0.301442325115204,0.90739381313324,-0.306170016527176,-0.287917286157608,0.899701952934265,-0.304911077022552,-0.312355041503906,0.894836187362671,-0.254469513893127,-0.366760909557343,0.888586521148682,-0.200432896614075,-0.412602335214615,0.896097838878632,-0.251264601945877,-0.365889132022858,0.816224634647369,-0.119137823581696,-0.565317332744598,0.835302829742432,-0.185076907277107,-0.517702400684357,0.820096969604492,-0.132428839802742,-0.556689918041229,0.794958353042603,-0.0576885119080544,-0.603914976119995,0.84016489982605,-0.104057915508747,-0.5322545170784,0.858437716960907,-0.15669372677803,-0.488397151231766,0.877551078796387,-0.218726277351379,-0.426688313484192,0.863401293754578,-0.170297354459763,-0.474907398223877,0.869483649730682,-0.231447607278824,-0.436383157968521,0.855591654777527,-0.160333529114723,-0.492195159196854,0.864456951618195,-0.20950922369957,-0.456968516111374,0.875356733798981,-0.281499803066254,-0.393075942993164,0.763939678668976,-0.31805157661438,-0.561461806297302, +0.774078011512756,-0.268502920866013,-0.573331773281097,0.783653438091278,-0.168685242533684,-0.597856640815735,0.780547082424164,-0.213148176670074,-0.587634265422821,0.776043474674225,-0.169999241828918,-0.607335984706879,0.770465672016144,-0.269630283117294,-0.577652335166931,0.773532509803772,-0.2275650203228,-0.591491162776947,0.773838341236115,-0.126986786723137,-0.620522856712341,0.807310521602631,-0.212785571813583,-0.550428926944733,0.805743336677551,-0.257848769426346,-0.533190131187439,0.796580076217651,-0.348034888505936,-0.494299381971359,0.803596198558807,-0.291875183582306,-0.51869261264801,0.750273525714874,-0.0859057977795601,-0.655522704124451,0.764510571956635,-0.186850607395172,-0.616936504840851,0.755836725234985,-0.137094929814339,-0.6402468085289,0.736433207988739,-0.0357954427599907,-0.675562620162964,0.788746476173401,-0.117592841386795,-0.603366315364838,0.797112822532654,-0.170058980584145,-0.579388737678528,0.803690433502197,-0.242499321699142,-0.543392777442932,0.799375057220459,-0.194803476333618,-0.568375885486603,0.804030239582062,-0.242271810770035,-0.542991697788239,0.800878643989563,-0.168011829257011,-0.574774205684662,0.803829431533813,-0.214390754699707,-0.554882764816284,0.803319334983826,-0.292037487030029,-0.519030034542084,0.86619621515274,-0.0426145233213902,-0.497883856296539,0.895687639713287,-0.0790978148579597,-0.437592715024948,0.901128828525543,-0.0894343107938766,-0.424227029085159,0.873653173446655,-0.0546113550662994,-0.48347482085228,0.893008708953857,-0.115099161863327,-0.435072094202042,0.887230455875397,-0.10479262471199,-0.449266821146011,0.91066187620163,-0.143204644322395,-0.387540102005005,0.915012717247009,-0.15211883187294,-0.37364661693573,0.902848362922668,-0.162863090634346,-0.39792013168335,0.882460296154022,-0.118306867778301,-0.45526647567749,0.863358795642853,-0.0739764347672462,-0.499138355255127,0.887567043304443,-0.123195797204971,-0.443900525569916,0.762525200843811,0.0021242406219244,-0.646955132484436,0.804769396781921,-0.0625451356172562,-0.590283274650574, +0.770854532718658,-0.0113189080730081,-0.636910676956177,0.724041044712067,0.0563539899885654,-0.68745094537735,0.784859895706177,0.0163005981594324,-0.619458794593811,0.820971667766571,-0.0349501147866249,-0.569898426532745,0.857199728488922,-0.0884288400411606,-0.507335126399994,0.826611042022705,-0.0424700826406479,-0.561168909072876,0.849541246891022,-0.105544343590736,-0.516856014728546,0.816885113716125,-0.0421081595122814,-0.575261354446411,0.844904482364655,-0.0969968140125275,-0.526049375534058,0.872006118297577,-0.154309839010239,-0.464536368846893,0.695802986621857,0.00913900136947632,-0.718174576759338,0.729893326759338,-0.0856413319706917,-0.67817497253418,0.705765604972839,-0.0230893678963184,-0.708069205284119,0.668971538543701,0.063495896756649,-0.740570962429047,0.737475752830505,0.000888604670763016,-0.675373017787933,0.76258373260498,-0.0641846805810928,-0.643697440624237,0.787781178951263,-0.14469350874424,-0.598719120025635,0.768913447856903,-0.0848134160041809,-0.633702456951141,0.788800477981567,-0.143814444541931,-0.597587823867798,0.768573522567749,-0.0600792914628983,-0.636934220790863,0.784549057483673,-0.12017447501421,-0.608309805393219,0.799032986164093,-0.19506262242794,-0.568767845630646,0.799260556697845,0.113608062267303,-0.59014892578125,0.84407502412796,0.0585468113422394,-0.533019363880157,0.849788069725037,0.0258186347782612,-0.52649188041687,0.807405114173889,0.0800256058573723,-0.584544897079468,0.846043407917023,0.00564128579571843,-0.533084154129028,0.837483704090118,0.0222387034446001,-0.546009659767151,0.873042702674866,-0.0160568486899137,-0.487379550933838,0.879475712776184,-0.0312901437282562,-0.474914133548737,0.870715260505676,-0.0254195351153612,-0.49113005399704,0.834935545921326,0.0098141860216856,-0.550260365009308,0.802712142467499,0.0449860990047455,-0.594667553901672,0.843183517456055,0.00528917787596583,-0.537599861621857,0.678366780281067,0.102832019329071,-0.727491617202759,0.739310204982758,0.0553113520145416,-0.671089470386505,0.68830943107605,0.0926778614521027,-0.719472646713257, +0.624935567378998,0.141767337918282,-0.767696261405945,0.697139799594879,0.118192568421364,-0.707125604152679,0.750063836574554,0.0814173445105553,-0.656334936618805,0.802821218967438,0.0453911349177361,-0.594489514827728,0.753463745117188,0.0785975456237793,-0.652774751186371,0.794670224189758,0.0166288297623396,-0.606813728809357,0.744884252548218,0.0686225816607475,-0.663655340671539,0.78821063041687,0.0232112240046263,-0.614967703819275,0.833183169364929,-0.0244175735861063,-0.552457749843597,0.612249612808228,0.100661799311638,-0.784230589866638,0.662268936634064,0.0254106987267733,-0.748835206031799,0.625538885593414,0.076839305460453,-0.776399910449982,0.572996854782104,0.149531781673431,-0.80580073595047,0.651517152786255,0.103000298142433,-0.751609146595001,0.690918445587158,0.0501246675848961,-0.721192955970764,0.740370273590088,-0.0247371345758438,-0.671744048595428,0.704289734363556,0.0285758189857006,-0.70933723449707,0.740522861480713,-0.0245576445013285,-0.671582341194153,0.697779417037964,0.0562282726168633,-0.714102506637573,0.730872511863708,-0.00422834465280175,-0.682500958442688,0.769083023071289,-0.0846432074904442,-0.633519411087036,0.674505591392517,0.200068473815918,-0.710643947124481,0.741446554660797,0.213335320353508,-0.636195719242096,0.750466883182526,0.239746272563934,-0.615890741348267,0.681731581687927,0.227276787161827,-0.695404410362244,0.751770317554474,0.19196243584156,-0.630865871906281,0.74127858877182,0.179367780685425,-0.646786868572235,0.803648114204407,0.17105621099472,-0.569990873336792,0.814453780651093,0.183393001556396,-0.550483524799347,0.801319241523743,0.135979562997818,-0.58257794380188,0.740756094455719,0.159703239798546,-0.652514636516571,0.704940974712372,0.176936745643616,-0.686841785907745,0.766825437545776,0.150144383311272,-0.624047696590424,0.560097396373749,0.164880782365799,-0.811852991580963,0.635491609573364,0.145268425345421,-0.758318841457367,0.566791534423828,0.160092994570732,-0.808156907558441,0.489178985357285,0.18136590719223,-0.853118002414703,0.571218073368073,0.183490350842476,-0.800025761127472, +0.641893684864044,0.169961288571358,-0.747720301151276,0.703349351882935,0.162333860993385,-0.692060232162476,0.636410295963287,0.172043979167938,-0.751919388771057,0.700669050216675,0.140564486384392,-0.699503123760223,0.63969874382019,0.161294907331467,-0.751511454582214,0.703886032104492,0.13892225921154,-0.696595370769501,0.762059211730957,0.121717013418674,-0.635964393615723,0.504806637763977,0.17175056040287,-0.845974028110504,0.570704638957977,0.108732908964157,-0.813924670219421,0.524118363857269,0.148836970329285,-0.838538944721222,0.459164619445801,0.207007989287376,-0.8638955950737,0.54343581199646,0.174593836069107,-0.821093618869781,0.593730032444,0.135114222764969,-0.79323947429657,0.661443948745728,0.0752716958522797,-0.746207773685455,0.611715137958527,0.116564631462097,-0.782443165779114,0.661386609077454,0.0751806050539017,-0.746267855167389,0.600395083427429,0.142924875020981,-0.786827921867371,0.644948422908783,0.0962809845805168,-0.758136808872223,0.703663110733032,0.0277195181697607,-0.7099928855896,0.587721168994904,0.0765368044376373,-0.805435240268707,0.61073625087738,0.0595734789967537,-0.789590060710907,0.582090437412262,0.0972849577665329,-0.807283461093903,0.559052109718323,0.109400153160095,-0.8218834400177,0.602624833583832,0.106320239603519,-0.790910422801971,0.627683699131012,0.0656481385231018,-0.775695502758026,0.660437822341919,-0.00748686771839857,-0.750843405723572,0.635555922985077,0.0449824929237366,-0.770743370056152,0.670647919178009,-0.00277078012004495,-0.74177074432373,0.641187369823456,0.0705488994717598,-0.764134705066681,0.661948800086975,0.0296514369547367,-0.748962342739105,0.689548790454865,-0.0547195412218571,-0.722169101238251,0.522652149200439,0.146506667137146,-0.839863419532776,0.531354784965515,0.129826545715332,-0.8371422290802,0.508092880249023,0.181819796562195,-0.841892600059509,0.49969208240509,0.196525096893311,-0.843614757061005,0.514559328556061,0.18582147359848,-0.837077677249908,0.542695999145508,0.135728552937508,-0.828890144824982,0.56997537612915,0.0738650783896446,-0.818334996700287, +0.543148934841156,0.127174526453018,-0.82994931936264,0.594005703926086,0.0889675617218018,-0.79952609539032,0.556956350803375,0.143198862671852,-0.818103730678558,0.588122308254242,0.0999263823032379,-0.80257523059845,0.62448126077652,0.0390015617012978,-0.780065536499023,0.719285666942596,-0.0961647033691406,-0.688026487827301,0.702714323997498,-0.00607250537723303,-0.711446166038513,0.714657306671143,-0.0497830770909786,-0.697700917720795,0.72629302740097,-0.138897463679314,-0.673205733299255,0.698561191558838,-0.0518797114491463,-0.713667154312134,0.682352542877197,-0.0103428801521659,-0.730950117111206,0.664713263511658,0.0155018195509911,-0.746937811374664,0.682557165622711,-0.0249367505311966,-0.730406641960144,0.646622836589813,0.0123378448188305,-0.762710154056549,0.669353425502777,-0.013005793094635,-0.742830276489258,0.64561915397644,0.0250493064522743,-0.76324862241745,0.621571362018585,0.0466952063143253,-0.781964600086212,0.393893599510193,0.188832208514214,-0.899550020694733,0.41717529296875,0.184673428535461,-0.889865458011627,0.377155989408493,0.213608413934708,-0.901179671287537,0.354672223329544,0.215059861540794,-0.90992134809494,0.387261986732483,0.221958965063095,-0.894853293895721,0.428455948829651,0.19267825782299,-0.882780015468597,0.479541569948196,0.150105163455009,-0.864585638046265,0.436918020248413,0.184829488396645,-0.880307197570801,0.492169946432114,0.160876914858818,-0.855504155158997,0.444985419511795,0.204457119107246,-0.871886014938354,0.485439300537109,0.167883723974228,-0.857999801635742,0.532781183719635,0.11953404545784,-0.837768375873566,0.716562271118164,-0.133475691080093,-0.684633314609528,0.720568716526031,-0.0934892892837524,-0.687052071094513,0.72149270772934,-0.0675085783004761,-0.689123272895813,0.718721210956573,-0.10927839577198,-0.686657130718231,0.70801317691803,-0.067818284034729,-0.702935397624969,0.712353408336639,-0.0938640981912613,-0.695515751838684,0.708811342716217,-0.0505531430244446,-0.703584313392639,0.703058123588562,-0.0228374116122723,-0.710765659809113, +0.72633421421051,-0.0482143647968769,-0.685648620128632,0.732456684112549,-0.092914991080761,-0.674443483352661,0.734799206256866,-0.176393628120422,-0.654946863651276,0.733480453491211,-0.137200638651848,-0.665719389915466,0.735592424869537,-0.425497353076935,-0.527120292186737,0.757095515727997,-0.371851295232773,-0.537152886390686,0.786963880062103,-0.260518819093704,-0.559301316738129,0.775451600551605,-0.309488981962204,-0.550355911254883,0.780741512775421,-0.260276913642883,-0.568065643310547,0.752966642379761,-0.372190654277802,-0.5426926612854,0.769350349903107,-0.316984444856644,-0.554635882377625,0.787888407707214,-0.212644174695015,-0.577939748764038,0.807961463928223,-0.30822217464447,-0.502192795276642,0.792718291282654,-0.367982387542725,-0.485990434885025,0.754453897476196,-0.481197476387024,-0.446372359991074,0.780559003353119,-0.41432774066925,-0.468038767576218,0.725948691368103,-0.206723466515541,-0.655945062637329,0.734766006469727,-0.171677932143211,-0.656235933303833,0.739824593067169,-0.147426933050156,-0.656448781490326,0.733057081699371,-0.180517569184303,-0.655775010585785,0.728515148162842,-0.145584464073181,-0.669380962848663,0.72064620256424,-0.169645875692368,-0.672227203845978,0.723746597766876,-0.133810102939606,-0.676968038082123,0.73014909029007,-0.11003752797842,-0.67436945438385,0.756961286067963,-0.13520348072052,-0.639319658279419,0.752788901329041,-0.174225717782974,-0.63478696346283,0.735126852989197,-0.257772386074066,-0.627010405063629,0.74515038728714,-0.215065643191338,-0.631266713142395,0.68482232093811,-0.521625220775604,-0.508847236633301,0.714422702789307,-0.475743889808655,-0.513096451759338,0.766747534275055,-0.359651923179626,-0.531741201877594,0.746782004833221,-0.40649750828743,-0.526380479335785,0.763732850551605,-0.358838737010956,-0.536606848239899,0.712513744831085,-0.475459784269333,-0.516006171703339,0.738279581069946,-0.425577729940414,-0.523284673690796,0.779686570167542,-0.310124129056931,-0.543977856636047,0.77474170923233,-0.425709396600723,-0.467490047216415, +0.75132805109024,-0.480260521173477,-0.452610164880753,0.690956711769104,-0.593943476676941,-0.412080317735672,0.724498927593231,-0.540135443210602,-0.428199708461761,0.716732442378998,-0.287246286869049,-0.635440170764923,0.72991156578064,-0.248598888516426,-0.636732161045074,0.736650884151459,-0.220585688948631,-0.639286637306213,0.725104212760925,-0.259505361318588,-0.637872159481049,0.72996860742569,-0.218136057257652,-0.647736489772797,0.723971009254456,-0.246487900614738,-0.644290089607239,0.73351001739502,-0.20858807861805,-0.646880388259888,0.73746246099472,-0.18167319893837,-0.650495111942291,0.760759472846985,-0.215272933244705,-0.612292885780334,0.750466525554657,-0.255911588668823,-0.609351634979248,0.718773305416107,-0.346172660589218,-0.602934062480927,0.736198961734772,-0.303109616041183,-0.605091631412506,0.613521218299866,-0.602792799472809,-0.510129988193512,0.651595830917358,-0.564029514789581,-0.507241129875183,0.725006222724915,-0.451029568910599,-0.520517349243164,0.698305666446686,-0.491829991340637,-0.520069658756256,0.724933326244354,-0.450988173484802,-0.520654678344727,0.651999056339264,-0.564205884933472,-0.506526291370392,0.685701251029968,-0.521872103214264,-0.507408440113068,0.748355448246002,-0.407134115695953,-0.523646712303162,0.720173418521881,-0.530723929405212,-0.446858316659927,0.687907993793488,-0.579032719135284,-0.437611371278763,0.602316319942474,-0.688843369483948,-0.403373211622238,0.645452558994293,-0.643241226673126,-0.411863714456558,0.688685536384583,-0.354473531246185,-0.632503509521484,0.708483815193176,-0.326394081115723,-0.625713706016541,0.719793617725372,-0.300252795219421,-0.625895738601685,0.702291190624237,-0.328634113073349,-0.631495594978333,0.717136144638062,-0.298552602529526,-0.629747629165649,0.703871846199036,-0.323500037193298,-0.632386088371277,0.721123993396759,-0.289348781108856,-0.629489839076996,0.732551872730255,-0.263147234916687,-0.627790987491608,0.746735095977783,-0.301680654287338,-0.59276932477951,0.729418694972992,-0.339648127555847,-0.593790769577026, +0.681735396385193,-0.426298171281815,-0.594564318656921,0.706231117248535,-0.389758735895157,-0.59103786945343,0.525059521198273,-0.66116726398468,-0.535882771015167,0.568447351455688,-0.633528351783752,-0.524889945983887,0.665233075618744,-0.525696694850922,-0.530196309089661,0.63288426399231,-0.558953762054443,-0.535750150680542,0.667525231838226,-0.528082191944122,-0.524918377399445,0.570792198181152,-0.635617196559906,-0.51979523897171,0.612137734889984,-0.601913273334503,-0.512823402881622,0.697159767150879,-0.490940809249878,-0.522441804409027,0.643744885921478,-0.621419966220856,-0.446575611829758,0.60256952047348,-0.663410246372223,-0.443618059158325,0.491492122411728,-0.763508379459381,-0.418915957212448,0.543885469436646,-0.727343499660492,-0.418521285057068,0.649447977542877,-0.403460919857025,-0.644543766975403,0.668254375457764,-0.378340095281601,-0.64054262638092,0.687258183956146,-0.355902552604675,-0.633253276348114,0.670613408088684,-0.382293224334717,-0.635711967945099,0.684005439281464,-0.352568328380585,-0.638617396354675,0.668670535087585,-0.378763437271118,-0.639857769012451,0.689778327941895,-0.355355530977249,-0.63081556558609,0.702587783336639,-0.328876793384552,-0.631039202213287,0.71327269077301,-0.374568849802017,-0.592402160167694,0.692335426807404,-0.40327587723732,-0.598364591598511,0.628685832023621,-0.488404124975204,-0.605157554149628,0.6584312915802,-0.461086541414261,-0.594867527484894,0.430715769529343,-0.685557544231415,-0.586936831474304,0.474362641572952,-0.673063099384308,-0.567420601844788,0.591421961784363,-0.576508641242981,-0.563788771629333,0.557632863521576,-0.598120808601379,-0.57558411359787,0.595182478427887,-0.583577156066895,-0.55244505405426,0.477529168128967,-0.678517460823059,-0.558193624019623,0.522134184837341,-0.657570123672485,-0.543118238449097,0.629764556884766,-0.554633796215057,-0.543854832649231,0.549351096153259,-0.690986633300781,-0.469841361045837,0.502596199512482,-0.722458302974701,-0.474816828966141,0.370694816112518,-0.805814743041992,-0.461787670850754, +0.426247298717499,-0.784080922603607,-0.451143383979797,0.591719746589661,-0.408358484506607,-0.695061862468719,0.61762946844101,-0.408610165119171,-0.671990752220154,0.630285024642944,-0.373307585716248,-0.680721879005432,0.606552302837372,-0.374717473983765,-0.701199769973755,0.639404654502869,-0.387558221817017,-0.664048433303833,0.624637007713318,-0.419887959957123,-0.658424377441406,0.653672993183136,-0.408888787031174,-0.636805772781372,0.665586650371552,-0.375876218080521,-0.64475679397583,0.665856242179871,-0.424814522266388,-0.613325536251068,0.640990018844604,-0.447111308574677,-0.623877644538879,0.562636852264404,-0.525173604488373,-0.638461053371429,0.595146179199219,-0.508356153964996,-0.622394621372223,0.350737571716309,-0.660995006561279,-0.663376688957214,0.384649872779846,-0.667810916900635,-0.637238621711731,0.519500494003296,-0.584660768508911,-0.623129963874817,0.492247670888901,-0.589498996734619,-0.640455424785614,0.523239016532898,-0.599607408046722,-0.6055508852005,0.387677103281021,-0.679929912090302,-0.622416019439697,0.427452147006989,-0.677322745323181,-0.59876424074173,0.553551733493805,-0.587239146232605,-0.590534210205078,0.446544110774994,-0.726979553699493,-0.521631121635437,0.40187731385231,-0.742795944213867,-0.535489320755005,0.255782306194305,-0.805894494056702,-0.533956468105316,0.30665710568428,-0.801890134811401,-0.512770593166351,0.559464454650879,-0.396880149841309,-0.727657735347748,0.570292949676514,-0.395376950502396,-0.720030009746552,0.591937601566315,-0.37619936466217,-0.712800145149231,0.582433044910431,-0.379982709884644,-0.718599259853363,0.592980802059174,-0.378891825675964,-0.710503160953522,0.571206390857697,-0.397791624069214,-0.717972993850708,0.584382295608521,-0.393550366163254,-0.709658682346344,0.605116546154022,-0.371905982494354,-0.703931748867035,0.60933929681778,-0.445686131715775,-0.655796885490417,0.589641511440277,-0.449567019939423,-0.670978665351868,0.501121878623962,-0.519780874252319,-0.691884934902191,0.527191936969757,-0.522794485092163,-0.669891476631165, +0.310350239276886,-0.586256086826324,-0.748322546482086,0.323133498430252,-0.611301004886627,-0.722423613071442,0.465772271156311,-0.545918583869934,-0.696440279483795,0.453342109918594,-0.534182667732239,-0.713533341884613,0.467031180858612,-0.568417549133301,-0.677335500717163,0.323584049940109,-0.629658401012421,-0.706274509429932,0.348741859197617,-0.645528376102448,-0.67946469783783,0.489517658948898,-0.570929408073425,-0.659099519252777,0.356584757566452,-0.715285897254944,-0.601010382175446,0.322999775409698,-0.713793396949768,-0.621425867080688,0.170707613229752,-0.756780207157135,-0.63098555803299,0.206149026751518,-0.771143853664398,-0.602361798286438,0.539512932300568,-0.321153163909912,-0.778322815895081,0.538892924785614,-0.337855041027069,-0.77165299654007,0.55930882692337,-0.313260555267334,-0.767490446567535,0.560214638710022,-0.299595087766647,-0.772271037101746,0.561149537563324,-0.321344703435898,-0.762790262699127,0.544292211532593,-0.364688634872437,-0.755478799343109,0.558721780776978,-0.394156366586685,-0.729705929756165,0.573486804962158,-0.349535405635834,-0.740903556346893,0.564669370651245,-0.416579395532608,-0.712467610836029,0.551983892917633,-0.408071577548981,-0.727180540561676,0.45835953950882,-0.465116649866104,-0.757345914840698,0.473195225000381,-0.483398944139481,-0.736486077308655,0.33379128575325,-0.468603014945984,-0.817920923233032,0.317364484071732,-0.506307363510132,-0.801830947399139,0.457562446594238,-0.458319038152695,-0.761958301067352,0.470258831977844,-0.431741207838058,-0.769711911678314,0.454948127269745,-0.486460506916046,-0.745907783508301,0.313681751489639,-0.531346023082733,-0.786940336227417,0.311828106641769,-0.564517617225647,-0.764253318309784,0.454006940126419,-0.507588744163513,-0.732278287410736,0.304247707128525,-0.651653528213501,-0.694824516773224,0.294948607683182,-0.632887423038483,-0.715862274169922,0.144803121685982,-0.659920692443848,-0.737249493598938,0.151827186346054,-0.690431118011475,-0.70728600025177,0.571882545948029,-0.235871523618698,-0.785694003105164, +0.54800409078598,-0.245444506406784,-0.799655258655548,0.569721162319183,-0.237519934773445,-0.786766886711121,0.593927145004272,-0.229541659355164,-0.771077930927277,0.568981111049652,-0.228839784860611,-0.789868891239166,0.549560904502869,-0.26909676194191,-0.790929615497589,0.538061141967773,-0.309382647275925,-0.784074485301971,0.555535554885864,-0.267957985401154,-0.787133276462555,0.542716264724731,-0.350176632404327,-0.763436615467072,0.551837742328644,-0.323964297771454,-0.768454432487488,0.462541908025742,-0.369615495204926,-0.805877983570099,0.452256858348846,-0.404123425483704,-0.795077502727509,0.42415988445282,-0.332854419946671,-0.842197358608246,0.379866451025009,-0.376107722520828,-0.84512984752655,0.504567325115204,-0.341441124677658,-0.792987883090973,0.53570568561554,-0.304498791694641,-0.787591218948364,0.497195482254028,-0.375599265098572,-0.782126486301422,0.371999859809875,-0.403209656476974,-0.836084961891174,0.339424073696136,-0.442630469799042,-0.829981684684753,0.474495202302933,-0.404028564691544,-0.782058358192444,0.313845872879028,-0.549054265022278,-0.77462249994278,0.331271409988403,-0.524144947528839,-0.784558176994324,0.19614152610302,-0.535374760627747,-0.821524381637573,0.16929042339325,-0.570504128932953,-0.80365777015686,0.524196565151215,-0.224653318524361,-0.82143098115921,0.598675131797791,-0.185039550065994,-0.779325664043427,0.626481354236603,-0.146392792463303,-0.76556533575058,0.562954425811768,-0.181576013565063,-0.80629551410675,0.631910681724548,-0.0867636874318123,-0.77016943693161,0.601530849933624,-0.0913763865828514,-0.793606340885162,0.618428170681,-0.0876745954155922,-0.780935287475586,0.646788120269775,-0.0854783654212952,-0.757864475250244,0.617375731468201,-0.0421675816178322,-0.785537481307983,0.60088700056076,-0.134650602936745,-0.787911117076874,0.571904420852661,-0.230483070015907,-0.787275612354279,0.590887784957886,-0.137429103255272,-0.794962227344513,0.544807195663452,-0.268081605434418,-0.794554829597473,0.584427297115326,-0.225016877055168,-0.779623091220856, +0.484641999006271,-0.256439417600632,-0.836278080940247,0.43448194861412,-0.301914483308792,-0.848571181297302,-0.553802132606506,-0.732016563415527,0.396805942058563,-0.663219511508942,-0.673368096351624,0.326673120260239,-0.56071799993515,-0.718522489070892,0.411486178636551,-0.441412001848221,-0.760704278945923,0.475904107093811,-0.172963261604309,-0.721157729625702,-0.670831739902496,-0.162925317883492,-0.746191442012787,-0.645487308502197,-0.212483301758766,-0.735799789428711,-0.643000423908234,-0.222189351916313,-0.713418483734131,-0.664579570293427,0.75437319278717,0.0732855200767517,-0.652342140674591,0.733144044876099,-0.0100423395633698,-0.67999929189682,0.668805599212646,-0.0894692614674568,-0.738034069538116,0.69080001115799,-0.00432492466643453,-0.723032832145691,0.758413195610046,0.111001223325729,-0.642252385616302,0.784905612468719,0.126971080899239,-0.60646641254425,0.828620612621307,0.136100351810455,-0.543014526367188,0.80899041891098,0.116392098367214,-0.576183378696442,0.830173969268799,0.172570616006851,-0.530123293399811,0.786409378051758,0.183002099394798,-0.589974999427795,0.794043838977814,0.188757330179214,-0.57781058549881,0.835352063179016,0.179091036319733,-0.519724309444427,0.84073132276535,0.0682838782668114,-0.537129521369934,0.857979476451874,0.0677742809057236,-0.509193360805511,0.883774280548096,0.0346143171191216,-0.466631412506104,0.870852887630463,0.0307846423238516,-0.49057874083519,0.890914082527161,0.0901000499725342,-0.445145040750504,0.863313436508179,0.118604123592377,-0.490533351898193,0.866440892219543,0.123691730201244,-0.48371559381485,0.894412934780121,0.0952043607831001,-0.436991572380066,0.868704199790955,0.186535969376564,-0.458865344524384,0.865059912204742,0.144577503204346,-0.48038375377655,0.827650249004364,0.121438197791576,-0.547948718070984,0.83504182100296,0.162590384483337,-0.525613486766815,0.921694993972778,0.11069305986166,-0.371786922216415,0.923418879508972,0.129537239670753,-0.361272275447845,0.947993993759155,0.0794135183095932,-0.308222234249115, +0.945592701435089,0.0587765276432037,-0.319999635219574,0.949292361736298,0.108342230319977,-0.295137196779251,0.924002051353455,0.161639496684074,-0.346544295549393,0.924582004547119,0.184365034103394,-0.33340311050415,0.948875784873962,0.133475750684738,-0.286040306091309,0.924691736698151,0.134992271661758,-0.355980813503265,0.92203277349472,0.102356590330601,-0.373334646224976,0.895413398742676,0.161853656172752,-0.414774835109711,0.897951662540436,0.19297793507576,-0.395527929067612,0.983873128890991,0.0646459460258484,-0.16677662730217,0.970975995063782,0.0580783784389496,-0.23201884329319,0.968237936496735,0.0997111648321152,-0.22928786277771,0.981686472892761,0.10841977596283,-0.15664242208004,0.967368185520172,0.150400519371033,-0.203908383846283,0.96622496843338,0.165676698088646,-0.197384729981422,0.98093318939209,0.123888909816742,-0.149738863110542,0.981704235076904,0.107827819883823,-0.156939953565598,0.979896903038025,0.140696302056313,-0.141444861888885,0.966245830059052,0.165381267666817,-0.19752998650074,0.965404450893402,0.165269508957863,-0.201693892478943,0.979451835155487,0.140335500240326,-0.144844770431519,0.965999245643616,0.155884727835655,-0.206265643239021,0.967883169651031,0.133466601371765,-0.213046565651894,0.948275089263916,0.181353747844696,-0.260547816753387,0.945979475975037,0.203032329678535,-0.25278627872467,0.99334317445755,0.114913806319237,-0.00802404619753361,0.995996356010437,0.0867565274238586,-0.0215523485094309,0.992094337940216,0.0932432860136032,-0.0839910507202148,0.989682674407959,0.119518958032131,-0.0790148973464966,0.98719584941864,0.145337119698524,-0.0657375678420067,0.985753297805786,0.158024355769157,-0.0576093234121799,0.989854097366333,0.141758263111115,0.00966641586273909,0.991585910320282,0.12944982945919,-0.000497953093145043,0.989862561225891,0.141701921820641,0.00963800586760044,0.983599126338959,0.173366129398346,-0.0497682876884937,0.983270585536957,0.17540642619133,-0.0491079315543175,0.989758610725403,0.14210245013237,0.0136014651507139,0.983307182788849,0.175166428089142,-0.0492312349379063, +0.987516462802887,0.14347605407238,-0.0650064423680305,0.972763061523438,0.204401731491089,-0.109324030578136,0.966784656047821,0.236980795860291,-0.095748245716095,-0.937764883041382,-0.211014240980148,-0.275807976722717,-0.931291222572327,-0.178495049476624,-0.317547172307968,-0.931743919849396,-0.189616098999977,-0.309675723314285,-0.934848427772522,-0.221703439950943,-0.277319699525833,0.127616673707962,0.309493571519852,0.942299067974091,0.355357378721237,0.36554366350174,0.860290169715881,0.121427282691002,0.363738805055618,0.923552691936493,-0.113157749176025,0.286636173725128,0.951333284378052,0.982889294624329,0.160299822688103,0.0907335579395294,0.987311184406281,0.137842804193497,0.0788428634405136,0.981482744216919,0.18862047791481,0.033376470208168,0.976615071296692,0.209635674953461,0.0477061457931995,-0.94311910867691,-0.257699847221375,-0.21004082262516,-0.920618116855621,-0.31362783908844,-0.232593685388565,-0.891834139823914,-0.342778325080872,-0.295186549425125,-0.918813765048981,-0.283815830945969,-0.27428063750267,0.973044157028198,0.181266948580742,0.142573982477188,0.991764843463898,0.111774191260338,0.0625220164656639,0.999590873718262,0.0198719818145037,0.0205760840326548,0.990776717662811,0.0927989482879639,0.0987410545349121,-0.949564218521118,-0.183288633823395,-0.254427045583725,-0.961006283760071,-0.198351413011551,-0.192675143480301,-0.965175867080688,-0.185812681913376,-0.184145003557205,-0.954320132732391,-0.171984806656837,-0.244323998689651,-0.903158366680145,-0.210885733366013,-0.373941421508789,-0.902497589588165,-0.194978013634682,-0.384033471345901,-0.889119863510132,-0.160783514380455,-0.428502917289734,-0.895361304283142,-0.179177299141884,-0.40770548582077,-0.922733545303345,-0.143018543720245,-0.357922434806824,-0.929710388183594,-0.1883774548769,-0.316469222307205,-0.935870707035065,-0.17043137550354,-0.308381646871567,-0.927571296691895,-0.123573288321495,-0.352620661258698,-0.932977199554443,-0.178904846310616,-0.312324911355972,-0.933991134166718,-0.176227167248726,-0.310812711715698, +-0.944369673728943,-0.199038967490196,-0.261819809675217,-0.9441157579422,-0.203744322061539,-0.259101539850235,-0.944776952266693,-0.197839289903641,-0.261258661746979,-0.933146357536316,-0.178670078516006,-0.311953604221344,-0.930182039737701,-0.181508421897888,-0.319086611270905,-0.941294848918915,-0.201405093073845,-0.270924299955368,-0.872889399528503,-0.167889207601547,-0.458123683929443,-0.856217980384827,-0.160235479474068,-0.491136848926544,-0.825074315071106,-0.138309523463249,-0.547834873199463,-0.848516643047333,-0.147542327642441,-0.508183836936951,-0.867523312568665,-0.129329219460487,-0.480288684368134,-0.884623944759369,-0.169489368796349,-0.434412062168121,-0.887938618659973,-0.157573610544205,-0.432129234075546,-0.871436476707458,-0.119117230176926,-0.475825130939484,-0.884610891342163,-0.166121631860733,-0.435737520456314,-0.887988805770874,-0.160996526479721,-0.430762231349945,-0.907879054546356,-0.184146866202354,-0.376623928546906,-0.904685199260712,-0.18872395157814,-0.382005482912064,-0.906784772872925,-0.186953112483025,-0.377875685691833,-0.891218245029449,-0.152618110179901,-0.42712739109993,-0.890680849552155,-0.157064020633698,-0.426636159420013,-0.903924703598022,-0.191629499197006,-0.382359147071838,-0.719457387924194,-0.18843699991703,-0.668485283851624,-0.726368188858032,-0.222054585814476,-0.650446772575378,-0.706056714057922,-0.167978852987289,-0.687944054603577,-0.687196850776672,-0.120132155716419,-0.716469645500183,-0.791317880153656,-0.117992274463177,-0.599911510944366,-0.831468284130096,-0.122974239289761,-0.541791439056396,-0.843915283679962,-0.0996642708778381,-0.527137637138367,-0.805366039276123,-0.0962648093700409,-0.584909200668335,-0.832482218742371,-0.129141315817833,-0.538791120052338,-0.828523635864258,-0.130110368132591,-0.544628381729126,-0.856293320655823,-0.15735436975956,-0.491936415433884,-0.858190715312958,-0.153365850448608,-0.489885538816452,-0.855491816997528,-0.159266829490662,-0.49271497130394,-0.826601266860962,-0.134692654013634,-0.546432435512543,-0.824672758579254,-0.139145135879517,-0.548227548599243, +-0.852480709552765,-0.16821613907814,-0.494954526424408,-0.714906394481659,-0.194263011217117,-0.671692490577698,-0.672407329082489,-0.140757068991661,-0.726674497127533,-0.641778647899628,-0.107376381754875,-0.759335577487946,-0.696376621723175,-0.175968423485756,-0.695769250392914,-0.588141620159149,-0.10680890828371,-0.80167418718338,-0.566681087017059,-0.0759251117706299,-0.820431649684906,-0.648741543292999,-0.175150498747826,-0.740578591823578,-0.653055906295776,-0.190672025084496,-0.732913494110107,-0.735310256481171,-0.0805913880467415,-0.672921895980835,-0.764207065105438,-0.0971054658293724,-0.637619137763977,-0.769152998924255,-0.0952108353376389,-0.631932377815247,-0.741559982299805,-0.0797219574451447,-0.666133165359497,-0.762071192264557,-0.113070338964462,-0.637544214725494,-0.764581143856049,-0.0961839705705643,-0.637310266494751,-0.784675061702728,-0.133289277553558,-0.605408251285553,-0.782811880111694,-0.150408834218979,-0.603806912899017,-0.785300195217133,-0.131874784827232,-0.604907155036926,-0.76082307100296,-0.10534580051899,-0.640351831912994,-0.743393659591675,-0.0913647934794426,-0.662584602832794,-0.775472700595856,-0.128452003002167,-0.618176519870758,-0.658219933509827,-0.0607719980180264,-0.750368773937225,-0.6964031457901,-0.089197151362896,-0.712085962295532,-0.73193496465683,-0.115312293171883,-0.671546280384064,-0.701088964939117,-0.0935285165905952,-0.706913530826569,-0.730637788772583,-0.117944337427616,-0.672501087188721,-0.69587641954422,-0.0901344120502472,-0.712482929229736,-0.734274089336395,-0.123779512941837,-0.667473077774048,-0.764659106731415,-0.148698791861534,-0.62704473733902,-0.722525060176849,-0.142676964402199,-0.67646199464798,-0.68636691570282,-0.106761462986469,-0.719376385211945,-0.639169454574585,-0.0627192631363869,-0.766504228115082,-0.691185116767883,-0.114428356289864,-0.713560998439789,-0.684389650821686,0.176496088504791,-0.707431972026825,-0.664814710617065,0.0750869140028954,-0.74322497844696,-0.664592146873474,0.110234402120113,-0.739030241966248,-0.685082793235779,0.212002635002136,-0.696933627128601, +-0.39605724811554,0.0893604308366776,-0.913867235183716,-0.452190160751343,0.0281529929488897,-0.891477108001709,-0.4902124106884,-0.0134726818650961,-0.871498882770538,-0.439096927642822,0.0427829995751381,-0.897420465946198,-0.496385544538498,-0.00628043198958039,-0.868079483509064,-0.459230184555054,0.0361481606960297,-0.887581527233124,-0.562161087989807,-0.0814544856548309,-0.823006868362427,-0.584242105484009,-0.11142972111702,-0.803893387317657,-0.55674010515213,-0.0880281329154968,-0.826009392738342,-0.452552974224091,0.0285634938627481,-0.891279935836792,-0.411305397748947,0.0755814015865326,-0.908358693122864,-0.527193546295166,-0.0546727105975151,-0.847984611988068,-0.522843182086945,0.0174114294350147,-0.852251052856445,-0.568891704082489,-0.0320831872522831,-0.821786403656006,-0.622686862945557,-0.0874022617936134,-0.777574479579926,-0.58373749256134,-0.045468382537365,-0.810668349266052,-0.626197159290314,-0.0822302922606468,-0.77531623840332,-0.57524299621582,-0.0236837081611156,-0.817639708518982,-0.643237233161926,-0.10550157725811,-0.758363544940948,-0.672654151916504,-0.140419483184814,-0.726511359214783,-0.624563336372375,-0.129055500030518,-0.77023720741272,-0.557848811149597,-0.046454094350338,-0.828641474246979,-0.509911775588989,0.00969100836664438,-0.860172152519226,-0.597450733184814,-0.0956404507160187,-0.796181976795197,-0.264155834913254,0.165977507829666,-0.950091123580933,-0.310037225484848,0.120492793619633,-0.943058133125305,-0.249827563762665,0.176790878176689,-0.952014267444611,-0.205377355217934,0.222930327057838,-0.952954530715942,-0.253723323345184,0.181228458881378,-0.950147867202759,-0.313108175992966,0.123915486037731,-0.941598773002625,-0.361280679702759,0.0801894664764404,-0.92900276184082,-0.302605956792831,0.136402934789658,-0.943304777145386,-0.372965037822723,0.0941361263394356,-0.923057675361633,-0.327315956354141,0.139819324016571,-0.934513211250305,-0.386549592018127,0.0788243189454079,-0.918893992900848,-0.431366264820099,0.0337721444666386,-0.901544570922852,-0.145349830389023,0.23422460258007,-0.961255609989166, +-0.186806902289391,0.1911301612854,-0.963624656200409,-0.15635921061039,0.22374352812767,-0.962024331092834,-0.129189893603325,0.254494100809097,-0.958406448364258,-0.155473217368126,0.222748294472694,-0.962398707866669,-0.190992340445518,0.195849642157555,-0.961854934692383,-0.242944628000259,0.15522563457489,-0.957540035247803,-0.199850469827652,0.188497260212898,-0.961524188518524,-0.249460130929947,0.163158893585205,-0.954541206359863,-0.198508888483047,0.204327329993248,-0.958563804626465,-0.242760613560677,0.16875159740448,-0.955295920372009,-0.294703871011734,0.126737505197525,-0.947146892547607,-0.372230112552643,0.0932551026344299,-0.923443794250488,-0.438221096992493,0.0392169132828712,-0.898011326789856,-0.376441091299057,0.0899420082569122,-0.922064304351807,-0.309469491243362,0.144830718636513,-0.93981522321701,-0.384135007858276,0.100923590362072,-0.917744398117065,-0.447802364826202,0.0522983558475971,-0.892601788043976,-0.519323766231537,-0.00187150435522199,-0.854575514793396,-0.457276165485382,0.0451888255774975,-0.888176023960114,-0.522079765796661,0.00260822498239577,-0.852892756462097,-0.453686445951462,0.0604141727089882,-0.889111220836639,-0.516086280345917,0.00837359111756086,-0.85649573802948,-0.581950068473816,-0.0481928512454033,-0.811795294284821,-0.249250307679176,0.162903174757957,-0.954639673233032,-0.319977641105652,0.112020745873451,-0.940779387950897,-0.270858436822891,0.145706683397293,-0.951527893543243,-0.204388052225113,0.194030478596687,-0.95946741104126,-0.276687294244766,0.154074430465698,-0.948527932167053,-0.326675623655319,0.121553510427475,-0.937287509441376,-0.407139420509338,0.0691572353243828,-0.910744071006775,-0.357002764940262,0.100111283361912,-0.928723275661469,-0.408879011869431,0.0722608268260956,-0.909723222255707,-0.330735683441162,0.12735690176487,-0.93509042263031,-0.379367917776108,0.0941090509295464,-0.920447409152985,-0.455333769321442,0.0418005436658859,-0.889339029788971,-0.534907937049866,0.0173496082425117,-0.844732224941254,-0.597584545612335,-0.0210903845727444,-0.801528573036194, +-0.652239859104156,-0.0517922528088093,-0.756241202354431,-0.595523357391357,-0.0187535919249058,-0.80311906337738,-0.650203108787537,-0.0569352209568024,-0.757624268531799,-0.5981565117836,-0.0199277345091105,-0.8011314868927,-0.657710671424866,-0.0617155954241753,-0.750738203525543,-0.701814770698547,-0.0919457897543907,-0.706400752067566,-0.649625420570374,-0.0764817893505096,-0.756397604942322,-0.591992318630219,-0.0323391146957874,-0.805294573307037,-0.530109226703644,0.0158095601946115,-0.847781956195831,-0.592546939849854,-0.0318746082484722,-0.804905116558075,-0.625974237918854,-0.0731754824519157,-0.77640300989151,-0.694074511528015,-0.0411659739911556,-0.718725323677063,-0.718956649303436,0.00940311793237925,-0.694991290569305,-0.653004050254822,-0.022762268781662,-0.757012248039246,-0.701667308807373,-0.05502824857831,-0.710376560688019,-0.688468217849731,-0.0592149794101715,-0.722845137119293,-0.737024188041687,-0.0759650245308876,-0.671583712100983,-0.745200455188751,-0.0692845210433006,-0.663231492042542,-0.731651365756989,-0.0902921259403229,-0.675672709941864,-0.686498463153839,-0.0653620883822441,-0.724187612533569,-0.654885709285736,-0.0450273491442204,-0.754385352134705,-0.708404362201691,-0.0773242935538292,-0.701558589935303,-0.572702467441559,0.0201462898403406,-0.819515705108643,-0.60867440700531,0.0113878007978201,-0.793338358402252,-0.620919287204742,0.00843846146017313,-0.783829092979431,-0.590015947818756,0.0158021692186594,-0.807236969470978,-0.607390284538269,-0.0607300959527493,-0.792078852653503,-0.607248365879059,0.0042453883215785,-0.794500708580017,-0.627583026885986,-0.0675274208188057,-0.775615572929382,-0.62370353937149,-0.131796613335609,-0.770469665527344,-0.63948917388916,-0.0229390412569046,-0.76845794916153,-0.604466617107391,-0.00923677440732718,-0.796577036380768,-0.560679256916046,0.0115995779633522,-0.827951848506927,-0.599810063838959,-0.00578177720308304,-0.800121665000916,-0.411434650421143,0.0768366605043411,-0.908194780349731,-0.48802775144577,0.0335053130984306,-0.872184813022614, +-0.440238863229752,0.0588002614676952,-0.895953297615051,-0.360432684421539,0.106428876519203,-0.926693677902222,-0.442523747682571,0.0645742937922478,-0.894428789615631,-0.490962147712708,0.0404546558856964,-0.870241105556488,-0.559864521026611,0.00885188486427069,-0.828536868095398,-0.516976833343506,0.0276322513818741,-0.855553269386292,-0.558640420436859,0.00475339405238628,-0.829396307468414,-0.490951538085938,0.0404294021427631,-0.870248258113861,-0.534842908382416,0.0172026678919792,-0.844776391983032,-0.597219407558441,-0.0136636383831501,-0.801961541175842,-0.433227628469467,0.0298980642110109,-0.900788486003876,-0.513934850692749,0.0731942728161812,-0.854700803756714,-0.539742588996887,0.122703023254871,-0.832839667797089,-0.456615269184113,0.0785990431904793,-0.88618540763855,-0.535533368587494,0.0367885492742062,-0.843712449073792,-0.511404871940613,0.0457105971872807,-0.858123302459717,-0.574394762516022,0.0310826022177935,-0.817988216876984,-0.591087102890015,0.0242849364876747,-0.806242108345032,-0.572906613349915,0.0214413218200207,-0.819340288639069,-0.510721981525421,0.0389452613890171,-0.858863413333893,-0.446421951055527,0.0640367418527603,-0.892528295516968,-0.520059406757355,0.039485726505518,-0.853216946125031,-0.276759326457977,0.134099841117859,-0.951536417007446,-0.364675223827362,0.0976141169667244,-0.92600405216217,-0.285308599472046,0.130532905459404,-0.94950532913208,-0.199349045753479,0.170688048005104,-0.96494847536087,-0.285022884607315,0.129478797316551,-0.949735343456268,-0.365406066179276,0.0997830405831337,-0.925484657287598,-0.448620170354843,0.075193777680397,-0.890553653240204,-0.369894415140152,0.0993825271725655,-0.923743069171906,-0.446087837219238,0.0623660795390606,-0.892813563346863,-0.365128546953201,0.0989588499069214,-0.925682604312897,-0.442625910043716,0.0648334249854088,-0.894359588623047,-0.518867492675781,0.0348660685122013,-0.854143381118774,-0.120716907083988,0.205505058169365,-0.971182405948639,-0.185649141669273,0.167058393359184,-0.968310832977295,-0.117666006088257,0.208644270896912,-0.970887362957001, +-0.0601139254868031,0.244013771414757,-0.967906832695007,-0.120547235012054,0.213498950004578,-0.969477474689484,-0.190106898546219,0.17385721206665,-0.966246962547302,-0.275032669305801,0.130609601736069,-0.952521979808807,-0.199201107025146,0.170343399047852,-0.965039908885956,-0.27929675579071,0.139241367578506,-0.950055360794067,-0.200279951095581,0.189403742551804,-0.961256563663483,-0.270474821329117,0.14515694975853,-0.951721012592316,-0.354214370250702,0.0949981287121773,-0.930326581001282,-0.0906644016504288,0.279839247465134,-0.95575612783432,-0.0736443623900414,0.229090362787247,-0.970615446567535,-0.056584969162941,0.306720644235611,-0.950116157531738,-0.078306183218956,0.352857261896133,-0.932394742965698,-0.0234036967158318,0.265330731868744,-0.963873386383057,-0.0745177567005157,0.230123683810234,-0.970304191112518,-0.117907054722309,0.201896086335182,-0.972283959388733,-0.0589740797877312,0.242431625723839,-0.968374490737915,-0.132211044430733,0.22025628387928,-0.966440677642822,-0.0913794040679932,0.250019311904907,-0.963919162750244,-0.144263595342636,0.210148796439171,-0.966967284679413,-0.190103575587273,0.176622062921524,-0.965745985507965,-0.157439097762108,0.167837113142014,-0.973161697387695,-0.225034773349762,0.151611939072609,-0.962482869625092,-0.311824470758438,0.135097503662109,-0.940486133098602,-0.245270892977715,0.147472262382507,-0.95817232131958,-0.311113506555557,0.125660508871078,-0.942028641700745,-0.224745869636536,0.150280982255936,-0.962759017944336,-0.285621166229248,0.131687477231026,-0.949251890182495,-0.371385782957077,0.110859155654907,-0.921836674213409,-0.285946279764175,0.132889866828918,-0.948986291885376,-0.225447684526443,0.153517216444016,-0.962084174156189,-0.137835681438446,0.18828709423542,-0.972393691539764,-0.196766704320908,0.164679288864136,-0.966521382331848,0.00785921420902014,0.242685556411743,-0.970073163509369,-0.0521237403154373,0.213680922985077,-0.975511968135834,0.0060533806681633,0.241795435547829,-0.970308363437653,0.061079066246748,0.270611435174942,-0.960749089717865, +0.0058688810095191,0.242184683680534,-0.970212519168854,-0.0534854084253311,0.216204822063446,-0.974882006645203,-0.13632233440876,0.184265807271004,-0.973376750946045,-0.0715825483202934,0.208985432982445,-0.975295424461365,-0.138603612780571,0.190329015254974,-0.97188675403595,-0.0599257908761501,0.228128656744957,-0.971785068511963,-0.11355048418045,0.201709300279617,-0.972841084003448,-0.196768790483475,0.164684072136879,-0.966520130634308,-0.307125926017761,0.12708954513073,-0.943144679069519,-0.371670484542847,0.12872426211834,-0.919397115707397,-0.385495781898499,0.129130557179451,-0.913629174232483,-0.320501029491425,0.126478686928749,-0.938766360282898,-0.388207077980042,0.0519183054566383,-0.920108556747437,-0.372411221265793,0.0518865473568439,-0.926616370677948,-0.434241414070129,0.0478161796927452,-0.899526536464691,-0.45602160692215,0.0483439564704895,-0.888654708862305,-0.436469256877899,0.102517738938332,-0.893859565258026,-0.372107118368149,0.106914810836315,-0.92201167345047,-0.310443252325058,0.117083124816418,-0.943353950977325,-0.371306657791138,0.110240608453751,-0.921942710876465,0.0557834394276142,0.263738125562668,-0.962979972362518,0.0379568599164486,0.268304079771042,-0.962586224079132,0.0941090807318687,0.288933038711548,-0.952712595462799,0.111298136413097,0.284233838319778,-0.952273011207581,0.0919654443860054,0.292061805725098,-0.951967597007751,0.0423460528254509,0.262370645999908,-0.964037656784058,0.00734531367197633,0.243456199765205,-0.969884097576141,0.0593576617538929,0.273447692394257,-0.960053741931915,-0.0022321529686451,0.257777094841003,-0.966201901435852,0.03102539293468,0.277637451887131,-0.960184812545776,-0.0117722507566214,0.250654309988022,-0.968005120754242,-0.0491439774632454,0.228760167956352,-0.972241580486298,-0.168102443218231,0.156144246459007,-0.973324537277222,-0.233308300375938,0.166594862937927,-0.958025753498077,-0.246730029582977,0.170492619276047,-0.953968822956085,-0.182975605130196,0.1594547778368,-0.970100045204163,-0.252678036689758,0.138648346066475,-0.957564949989319, +-0.237955421209335,0.137126371264458,-0.961547493934631,-0.305770546197891,0.143216788768768,-0.9412721991539,-0.318368494510651,0.145497903227806,-0.936734795570374,-0.304433196783066,0.158225193619728,-0.93930047750473,-0.235383853316307,0.153616577386856,-0.959685683250427,-0.171663120388985,0.15371210873127,-0.973090171813965,-0.245372101664543,0.155965521931648,-0.956800520420074,0.00736065674573183,0.213452875614166,-0.976925730705261,-0.082644097507,0.199400782585144,-0.976426780223846,-0.0080842487514019,0.211204424500465,-0.977408528327942,0.0798515528440475,0.228781431913376,-0.970197319984436,-0.0080089196562767,0.19847346842289,-0.980073511600494,-0.0818812400102615,0.189757749438286,-0.978410720825195,-0.169778421521187,0.184597536921501,-0.968038856983185,-0.0974830761551857,0.190010547637939,-0.976930499076843,-0.170643612742424,0.170779705047607,-0.970420122146606,-0.0815341919660568,0.185397833585739,-0.979275166988373,-0.158004507422447,0.171519860625267,-0.972427725791931,-0.245422184467316,0.160854324698448,-0.955977976322174,-0.0253446381539106,0.203580662608147,-0.978730082511902,-0.0884490981698036,0.205385163426399,-0.974676191806793,-0.0245916731655598,0.200938045978546,-0.979295253753662,0.0411786362528801,0.199358537793159,-0.979061007499695,-0.0231599900871515,0.204624697566032,-0.978566586971283,-0.0901911929249763,0.199778437614441,-0.975681364536285,-0.11325167119503,0.179607555270195,-0.977197647094727,-0.0495509654283524,0.185644388198853,-0.981366813182831,-0.113184660673141,0.179807528853416,-0.977168619632721,-0.097563162446022,0.175858542323112,-0.979568958282471,-0.159851461648941,0.191549003124237,-0.968378305435181,-0.173475727438927,0.195651084184647,-0.965208232402802,0.144507929682732,0.261579304933548,-0.954302847385406,0.0851416289806366,0.241869285702705,-0.966566205024719,0.151946440339088,0.264836668968201,-0.952246725559235,0.20757719874382,0.286099195480347,-0.93544590473175,0.153488278388977,0.259890347719193,-0.953361630439758,0.0860990881919861,0.239416673779488,-0.967091858386993, +0.00559419672936201,0.220964476466179,-0.975265920162201,0.0782683417201042,0.238732606172562,-0.967926025390625,0.00424892688170075,0.226674944162369,-0.973961293697357,0.0804841220378876,0.253752857446671,-0.963914930820465,0.012524425983429,0.228112757205963,-0.973554253578186,-0.0697556957602501,0.203122854232788,-0.976665377616882,0.174156695604324,0.30267858505249,-0.937045931816101,0.166490942239761,0.297729283571243,-0.940020263195038,0.224877148866653,0.325727641582489,-0.9183309674263,0.228675201535225,0.329433530569077,-0.916068375110626,0.234363883733749,0.308118879795074,-0.922028422355652,0.177123963832855,0.280188202857971,-0.943462610244751,0.142222911119461,0.265978813171387,-0.953429579734802,0.204124391078949,0.293858349323273,-0.933799088001251,0.131669908761978,0.286121368408203,-0.949103593826294,0.163707137107849,0.302281022071838,-0.939056098461151,0.106101810932159,0.271310716867447,-0.956625878810883,0.0705099478363991,0.254997074604034,-0.964367568492889,0.384206116199493,0.294729292392731,-0.874940156936646,0.31980636715889,0.274759352207184,-0.906769633293152,0.285234272480011,0.267342031002045,-0.920418202877045,0.349714010953903,0.284648954868317,-0.892566561698914,0.273890167474747,0.298807352781296,-0.914165377616882,0.30392974615097,0.310450911521912,-0.900692462921143,0.24550099670887,0.287047535181046,-0.925922751426697,0.211797147989273,0.276539236307144,-0.937372922897339,0.240333408117294,0.296879142522812,-0.924176812171936,0.298870950937271,0.321504890918732,-0.898504734039307,0.302310258150101,0.322995513677597,-0.896817922592163,0.246042057871819,0.298378139734268,-0.922189652919769,0.1513552069664,0.227682381868362,-0.961900353431702,0.0646995306015015,0.228661611676216,-0.971353590488434,0.134439617395401,0.228181838989258,-0.964292049407959,0.219683647155762,0.229838028550148,-0.948110640048981,0.132032155990601,0.211790934205055,-0.968355476856232,0.0636295080184937,0.212967827916145,-0.974985122680664,-0.0221194922924042,0.218980863690376,-0.975478410720825,0.0459538921713829,0.216007471084595,-0.975309789180756, +-0.0250803921371698,0.204845637083054,-0.978472948074341,0.0632172822952271,0.206971183419228,-0.976302564144135,-0.00803753826767206,0.203286558389664,-0.979086399078369,-0.095609650015831,0.203817069530487,-0.974329233169556,0.114812918007374,0.220246121287346,-0.968663811683655,0.0546149276196957,0.230596750974655,-0.971515595912933,0.111417837440968,0.219313278794289,-0.969271779060364,0.171706452965736,0.207615464925766,-0.963022708892822,0.0761258006095886,0.160427048802376,-0.984107732772827,0.0481426753103733,0.217279821634293,-0.974921464920044,0.0482326932251453,0.25702890753746,-0.96519935131073,0.079420380294323,0.199804350733757,-0.976611852645874,0.0216886047273874,0.205598175525665,-0.978396236896515,0.0425579212605953,0.205767065286636,-0.977675199508667,-0.0162120535969734,0.222455099225044,-0.974808216094971,-0.0348979383707047,0.220739841461182,-0.974708199501038,0.294650167226791,0.246977567672729,-0.923137784004211,0.228029549121857,0.242240265011787,-0.943038821220398,0.150278761982918,0.240873724222183,-0.95885157585144,0.219642877578735,0.242576777935028,-0.944941103458405,0.149848759174347,0.246038064360619,-0.957606732845306,0.223624631762505,0.261661678552628,-0.938895761966705,0.157720491290092,0.246203497052193,-0.956299245357513,0.079096719622612,0.233535766601563,-0.969125866889954,0.155524417757988,0.253325700759888,-0.954797506332397,0.221738949418068,0.269821107387543,-0.937031805515289,0.278392285108566,0.286466121673584,-0.916752457618713,0.21553847193718,0.26799151301384,-0.939001441001892,0.54735916852951,0.229121223092079,-0.804923236370087,0.479704558849335,0.2255739569664,-0.847938656806946,0.434062957763672,0.228640422224998,-0.871385753154755,0.504051327705383,0.229869320988655,-0.832521736621857,0.430171549320221,0.249693512916565,-0.86752837896347,0.472323685884476,0.253827005624771,-0.844086587429047,0.402528554201126,0.242669001221657,-0.882656574249268,0.361474096775055,0.241387203335762,-0.900593519210815,0.394674628973007,0.265514552593231,-0.879621505737305,0.468164801597595,0.269002318382263,-0.841700375080109, +0.480222880840302,0.258417457342148,-0.838216185569763,0.405945301055908,0.254047960042953,-0.877876996994019,0.286831498146057,0.216752737760544,-0.933137774467468,0.204372614622116,0.23526468873024,-0.950201213359833,0.267514258623123,0.221121311187744,-0.937838792800903,0.352740556001663,0.202646464109421,-0.913514375686646,0.263584971427917,0.209179431200027,-0.941683053970337,0.201123312115669,0.221282258629799,-0.954245090484619,0.121917136013508,0.239045187830925,-0.963324248790741,0.181838124990463,0.228477284312248,-0.95641678571701,0.116108410060406,0.223671540617943,-0.967724144458771,0.199133157730103,0.21278789639473,-0.956591606140137,0.133148640394211,0.219367578625679,-0.966514110565186,0.0502220690250397,0.230873554944992,-0.971686780452728,0.240735650062561,0.223877549171448,-0.944417893886566,0.183989301323891,0.241359949111938,-0.952834367752075,0.236448705196381,0.223246470093727,-0.94564950466156,0.296342015266418,0.201148256659508,-0.933659911155701,0.237676799297333,0.224661737680435,-0.945006251335144,0.183839827775955,0.241153404116631,-0.952915489673615,0.159224465489388,0.231395304203033,-0.959741532802582,0.212175384163857,0.217408433556557,-0.952740907669067,0.118165478110313,0.176645219326019,-0.977155685424805,0.170405432581902,0.222595140337944,-0.959902822971344,0.0953406915068626,0.192508354783058,-0.97665274143219,0.0442501381039619,0.143362551927567,-0.988680481910706,0.433866083621979,0.180362388491631,-0.882739841938019,0.366713166236877,0.199388414621353,-0.908716559410095,0.287291407585144,0.222286283969879,-0.931693315505981,0.352639138698578,0.202060431241989,-0.913683354854584,0.287396401166916,0.223564475774765,-0.931355059146881,0.366154462099075,0.210547730326653,-0.906421840190887,0.298090428113937,0.222521468997002,-0.928238332271576,0.219662323594093,0.237877801060677,-0.946130335330963,0.296507656574249,0.233958527445793,-0.925930142402649,0.365308076143265,0.22585329413414,-0.903072774410248,0.435450345277786,0.220825165510178,-0.872708141803741,0.365453690290451,0.225967660546303,-0.902985274791718, +0.673957347869873,0.210954934358597,-0.708010911941528,0.610796689987183,0.217569902539253,-0.761308610439301,0.570915639400482,0.225844323635101,-0.789334952831268,0.638144671916962,0.215836256742477,-0.73904412984848,0.570893228054047,0.226366013288498,-0.789201855659485,0.610134661197662,0.223066732287407,-0.760248064994812,0.548260748386383,0.224288687109947,-0.805670440196991,0.504010915756226,0.230236247181892,-0.832444787025452,0.542666852474213,0.253110080957413,-0.800904631614685,0.606940925121307,0.247530817985535,-0.75521594285965,0.615613520145416,0.239978864789009,-0.750620007514954,0.552725493907928,0.245428070425987,-0.796404182910919,0.566040933132172,0.156294152140617,-0.809425592422485,0.499309867620468,0.170798271894455,-0.849421918392181,0.418656408786774,0.191686272621155,-0.887684166431427,0.487273633480072,0.175919190049171,-0.855346083641052,0.417757511138916,0.188247546553612,-0.888842821121216,0.498926937580109,0.167589917778969,-0.850285530090332,0.433979123830795,0.183331310749054,-0.882072448730469,0.353100568056107,0.204732611775398,-0.912909924983978,0.434611439704895,0.202431753277779,-0.877573072910309,0.501492857933044,0.190032824873924,-0.844033420085907,0.5722496509552,0.179265096783638,-0.80024641752243,0.508060991764069,0.189243495464325,-0.840274333953857,0.382693231105804,0.210392639040947,-0.899600386619568,0.458451151847839,0.165525034070015,-0.8731689453125,0.398574382066727,0.19766192138195,-0.895582675933838,0.323977649211884,0.239358812570572,-0.91528457403183,0.406553477048874,0.212710365653038,-0.888520419597626,0.471875697374344,0.186274528503418,-0.861762762069702,0.552998185157776,0.148743599653244,-0.819797873497009,0.487397342920303,0.176271349191666,-0.855203092098236,0.554157137870789,0.151349991559982,-0.818537175655365,0.478679060935974,0.19694784283638,-0.855615496635437,0.536810278892517,0.165676146745682,-0.827276349067688,0.612645387649536,0.118303418159485,-0.781453728675842,0.419065415859222,0.193257287144661,-0.887150406837463,0.335700660943985,0.223166555166245,-0.915151238441467, +0.400649189949036,0.201556891202927,-0.89378696680069,0.485346019268036,0.170455545186996,-0.857545435428619,0.392442345619202,0.186222314834595,-0.90072762966156,0.330768823623657,0.211559742689133,-0.919692635536194,0.253071248531342,0.244549110531807,-0.936029195785522,0.312011361122131,0.222747832536697,-0.923597514629364,0.244259014725685,0.229769974946976,-0.942095160484314,0.32643061876297,0.201432913541794,-0.92350846529007,0.266769647598267,0.218850463628769,-0.938583254814148,0.189148500561714,0.243583247065544,-0.951257109642029,0.281354814767838,0.214610114693642,-0.935297906398773,0.299709171056747,0.210917815566063,-0.930423617362976,0.253409296274185,0.242809474468231,-0.936390578746796,0.236161336302757,0.243980631232262,-0.940585613250732,0.25320827960968,0.242577388882637,-0.936505198478699,0.306342989206314,0.21732334792614,-0.9267817735672,0.363775640726089,0.188532188534737,-0.912207722663879,0.308706879615784,0.218178614974022,-0.925795912742615,0.376910418272018,0.203685685992241,-0.903576552867889,0.324484050273895,0.234880179166794,-0.916264891624451,0.370329737663269,0.207979530096054,-0.905317783355713,0.424149096012115,0.172238260507584,-0.889062166213989,-0.421240895986557,-0.726884245872498,0.542397856712341,-0.379345238208771,-0.731518805027008,0.566548705101013,-0.333244562149048,-0.741364717483521,0.582517325878143,-0.376660615205765,-0.73733252286911,0.560773968696594,-0.235162064433098,-0.73266738653183,0.638668417930603,-0.206565991044044,-0.732119500637054,0.649100601673126,-0.234692290425301,-0.733530342578888,0.637850165367126,-0.262529015541077,-0.734407603740692,0.625878572463989,0.0454318672418594,-0.739161014556885,0.671994745731354,0.0348994210362434,-0.724149703979492,0.688759207725525,0.0379253774881363,-0.724231123924255,0.68851363658905,0.0486577190458775,-0.739446759223938,0.67145437002182,0.162928864359856,-0.703837096691132,0.691424250602722,0.16393806040287,-0.704793393611908,0.690210521221161,0.169022619724274,-0.714098572731018,0.679333925247192,0.168100163340569,-0.713505446910858,0.680185616016388, +0.322182148694992,-0.65871524810791,0.679921269416809,0.330596268177032,-0.655565857887268,0.678925395011902,0.339784979820251,-0.653965532779694,0.675925493240356,0.331457585096359,-0.657628953456879,0.6765056848526,0.494607210159302,-0.572396099567413,0.654007971286774,0.49942409992218,-0.569649994373322,0.652743756771088,0.506218671798706,-0.571526706218719,0.645832717418671,0.50105744600296,-0.573726832866669,0.647903501987457,0.649218857288361,-0.47128963470459,0.596993267536163,0.647363603115082,-0.474094331264496,0.59678727388382,0.652266025543213,-0.486467063426971,0.581290662288666,0.653204679489136,-0.484928041696548,0.581522643566132,0.776438057422638,-0.355342358350754,0.52045726776123,0.778003394603729,-0.353151053190231,0.519610583782196,0.785007655620575,-0.359708249568939,0.504354059696198,0.783394813537598,-0.361809462308884,0.505357801914215,0.879477620124817,-0.210981383919716,0.42662188410759,0.880370795726776,-0.209812790155411,0.425353944301605,0.886653900146484,-0.219001531600952,0.407287895679474,0.885641098022461,-0.220249772071838,0.40881535410881,0.977740466594696,-0.000871885451488197,0.209816291928291,0.974306583404541,0.00186128239147365,0.225218653678894,0.973448038101196,-0.00347133888863027,0.228882223367691,0.97689950466156,-0.00603420287370682,0.21361418068409,0.984569668769836,0.155450358986855,0.0803604498505592,0.983814716339111,0.154311463236809,0.0910859778523445,0.984250128269196,0.148651599884033,0.0956786796450615,0.985038459300995,0.149908781051636,0.0850091204047203,0.953256964683533,0.297132730484009,-0.0548938810825348,0.953274726867676,0.29881352186203,-0.0444732159376144,0.954624593257904,0.295001745223999,-0.040817853063345,0.954605877399445,0.293398827314377,-0.0514271073043346,0.884778380393982,0.424296408891678,-0.192716777324677,0.88438892364502,0.42767396569252,-0.186952546238899,0.885009109973907,0.426846086978912,-0.185906797647476,0.885355710983276,0.423534572124481,-0.191738814115524,0.776475548744202,0.536064624786377,-0.331241130828857,0.775996267795563,0.540050089359283,-0.325846314430237, +0.776451826095581,0.539743781089783,-0.325267910957336,0.776894867420197,0.535787582397461,-0.330705463886261,0.601321458816528,0.651078999042511,-0.463150799274445,0.609718441963196,0.645667910575867,-0.459735125303268,0.617795526981354,0.641523003578186,-0.454727321863174,0.609444499015808,0.646971344947815,-0.458263605833054,0.417681396007538,0.711365461349487,-0.565244615077972,0.415737450122833,0.717411458492279,-0.559001922607422,0.415128707885742,0.717782855033875,-0.558977544307709,0.416898339986801,0.712418258190155,-0.564496219158173,0.188660725951195,0.737230122089386,-0.648767232894897,0.193524241447449,0.737437844276428,-0.647096574306488,0.198527306318283,0.737542629241943,-0.645459353923798,0.193668931722641,0.736777424812317,-0.647805213928223,-0.0173237267881632,0.731235027313232,-0.681905567646027,-0.0169707275927067,0.735028862953186,-0.677823483943939,-0.0160646885633469,0.735169589519501,-0.677692890167236,-0.0165344625711441,0.732096076011658,-0.681000709533691,-0.207054674625397,0.690848410129547,-0.692717015743256,-0.208910435438156,0.695353150367737,-0.68763393163681,-0.210174098610878,0.695833206176758,-0.686762690544128,-0.208259209990501,0.690921247005463,-0.692283153533936,-0.285126268863678,0.670846104621887,-0.684593737125397,-0.29728376865387,0.667637646198273,-0.682555735111237,-0.284806102514267,0.668743312358856,-0.686780750751495,-0.272637844085693,0.672136425971985,-0.688404858112335,-0.431053042411804,0.614662408828735,-0.660593271255493,-0.472826033830643,0.595142722129822,-0.649800598621368,-0.429857730865479,0.609967231750488,-0.665704369544983,-0.386436969041824,0.629794836044312,-0.673813700675964,0.0580959841609001,0.6140958070755,0.787090361118317,0.0411754548549652,0.626103639602661,0.778652012348175,0.0183836407959461,0.632802367210388,0.774095118045807,0.0422627031803131,0.626863300800323,0.777982115745544,-0.0411081351339817,0.578040599822998,0.81497186422348,-0.0552549511194229,0.56615537405014,0.822444498538971,-0.0808480903506279,0.500851631164551,0.861748933792114, +-0.064846396446228,0.522436082363129,0.85020911693573,0.0632950365543365,0.408391803503036,0.910609602928162,0.132807642221451,0.381554514169693,0.914755880832672,0.193560793995857,0.3269182741642,0.925018191337585,0.128857493400574,0.314982533454895,0.940309524536133,0.0485113263130188,0.567391574382782,0.822017967700958,0.0495272614061832,0.600670576095581,0.797961115837097,0.0671243295073509,0.58390873670578,0.80903947353363,0.0602437369525433,0.545463085174561,0.835967063903809,0.263350605964661,0.310592651367188,0.913333833217621,0.264212846755981,0.321550309658051,0.909283757209778,0.263705998659134,0.290274888277054,0.919891119003296,-0.0769975408911705,0.50877571105957,0.857448935508728,-0.0752361193299294,0.463291198015213,0.883006691932678,-0.0558448806405067,0.522625505924225,0.850731492042542,-0.0566629990935326,0.569182515144348,0.820256412029266,-0.107168048620224,0.386846840381622,0.915895462036133,-0.0835212022066116,0.402449160814285,0.911624431610107,-0.22308748960495,0.316979378461838,0.921822130680084,-0.101941302418709,0.380203098058701,0.919268071651459,0.0640827864408493,0.321293771266937,0.944808721542358,0.188246190547943,0.231276214122772,0.95450234413147,0.00630226684734225,0.284222930669785,0.958737552165985,-0.113659493625164,0.493556022644043,0.862255215644836,-0.13404256105423,0.486239433288574,0.863483548164368,-0.140311568975449,0.484965115785599,0.863204181194305,-0.128109306097031,0.488706290721893,0.862991392612457,-0.105844900012016,0.534617125988007,0.838439881801605,-0.128951966762543,0.504017055034637,0.854012966156006,-0.132932931184769,0.48367041349411,0.865096509456635,-0.119912847876549,0.50906240940094,0.852335870265961,-0.060224212706089,0.301775991916656,0.951474845409393,-0.0248322375118732,0.264108031988144,0.964173376560211,-0.00710603641346097,0.327133387327194,0.944951415061951,-0.0851840525865555,0.350098341703415,0.932831645011902,0.00548814004287124,0.402290225028992,0.915495753288269,-0.0935018211603165,0.369431912899017,0.924541831016541,-0.112401537597179,0.389740854501724,0.914039373397827, +-0.0358698815107346,0.404156237840652,0.913986265659332,-0.140944197773933,0.486973702907562,0.861969470977783,-0.146343693137169,0.486204028129578,0.861504018306732,-0.13858337700367,0.487993150949478,0.861775696277618,-0.128559365868568,0.490329444408417,0.862003326416016,-0.138851270079613,0.489793717861176,0.860710442066193,-0.146864920854568,0.488994747400284,0.85983419418335,-0.151772990822792,0.487946450710297,0.859577357769012,-0.146385878324509,0.488210141658783,0.860361576080322,-0.0815453305840492,0.415924102067947,0.905735909938812,-0.119386561214924,0.409833818674088,0.904313743114471,-0.11826553940773,0.422369807958603,0.898675262928009,-0.10383777320385,0.415673792362213,0.903566837310791,-0.105721920728683,0.392345160245895,0.913722276687622,-0.0195691734552383,0.412263870239258,0.910854339599609,-0.00915730372071266,0.409552961587906,0.912240386009216,-0.11458795517683,0.392032563686371,0.912786960601807,-0.122252017259598,0.427529752254486,0.895696818828583,-0.121496222913265,0.437198966741562,0.891120493412018,-0.126465767621994,0.444321155548096,0.886896371841431,-0.136104881763458,0.432001143693924,0.891543984413147,-0.131791666150093,0.455360531806946,0.880498647689819,-0.135129109025002,0.460669338703156,0.87722510099411,-0.157029122114182,0.451596260070801,0.878295302391052,-0.148993328213692,0.445771485567093,0.882660031318665,-0.121431991457939,0.357582986354828,0.925952851772308,-0.00182882114313543,0.410783052444458,0.911731362342834,0.00192635005805641,0.451082676649094,0.892480075359344,-0.13585576415062,0.408340096473694,0.90266364812851,-0.146372601389885,0.48767626285553,0.860666632652283,-0.151711612939835,0.486966729164124,0.860143601894379,-0.155226916074753,0.487194001674652,0.859387397766113,-0.150629505515099,0.487849086523056,0.859833717346191,-0.149047359824181,0.504487693309784,0.850456953048706,-0.155066519975662,0.490103155374527,0.857760608196259,-0.158801451325417,0.477354645729065,0.864242255687714,-0.150675803422928,0.490107357501984,0.8585404753685,-0.153418481349945,0.477211773395538,0.865292847156525, +-0.153869420289993,0.500988662242889,0.851665675640106,-0.140454679727554,0.523459434509277,0.840394377708435,-0.143095165491104,0.498806893825531,0.854818940162659,-0.158268019556999,0.480489462614059,0.862601339817047,-0.156148180365562,0.493668168783188,0.855517089366913,-0.152523785829544,0.479864329099655,0.863983154296875,-0.155100032687187,0.468767642974854,0.869598090648651,-0.144400864839554,0.494293481111526,0.857217788696289,-0.150576516985893,0.495425820350647,0.855499923229218,-0.150431573390961,0.494802713394165,0.855885863304138,-0.147464022040367,0.494459360837936,0.85660046339035,-0.145669683814049,0.512284696102142,0.846371412277222,-0.150516077876091,0.495528280735016,0.855451107025146,-0.135308146476746,0.509267807006836,0.849904656410217,-0.129454404115677,0.526697039604187,0.840137958526611,-0.137582182884216,0.470534563064575,0.871589601039886,-0.139400839805603,0.473601818084717,0.869637250900269,-0.163074895739555,0.470958232879639,0.866951525211334,-0.160698801279068,0.466055691242218,0.870039105415344,-0.140829995274544,0.447183698415756,0.883285701274872,0.00486406777054071,0.447779595851898,0.894130766391754,0.0140729751437902,0.459785670042038,0.887918412685394,-0.138780102133751,0.475793987512589,0.868539035320282,-0.152310654520988,0.49817419052124,0.853594839572906,-0.152813568711281,0.494904965162277,0.855404734611511,-0.157600179314613,0.494022101163864,0.855046391487122,-0.1595369130373,0.499956727027893,0.851229250431061,-0.150072127580643,0.495287746191025,0.855668365955353,-0.151706546545029,0.496085911989212,0.854917466640472,-0.153081238269806,0.497352659702301,0.853935837745667,-0.147681549191475,0.49416771531105,0.856731235980988,-0.159229472279549,0.482492029666901,0.86130565404892,-0.135987251996994,0.480297476053238,0.866499781608582,-0.132858857512474,0.480795860290527,0.866708636283875,-0.156533285975456,0.485252857208252,0.860248327255249,-0.162116870284081,0.501609206199646,0.849768400192261,-0.163017049431801,0.491300016641617,0.855599045753479,-0.169666782021523,0.486557513475418,0.857015132904053, +-0.168389141559601,0.497389435768127,0.851028203964233,-0.157308056950569,0.494272947311401,0.854955196380615,-0.158836245536804,0.4942527115345,0.854684352874756,-0.163951724767685,0.500327348709106,0.85017192363739,-0.161381989717484,0.498374849557877,0.851808905601501,-0.145207807421684,0.458948045969009,0.876516759395599,0.0169938020408154,0.438389092683792,0.898624658584595,0.0382620915770531,0.462931931018829,0.885567665100098,-0.121216714382172,0.500571012496948,0.857166886329651,-0.150849089026451,0.494239002466202,0.856138169765472,-0.128385365009308,0.48465570807457,0.865231812000275,-0.12761302292347,0.483575880527496,0.865949928760529,-0.150917693972588,0.496926426887512,0.854568958282471,-0.169082432985306,0.496708184480667,0.851288497447968,-0.166597500443459,0.487773507833481,0.856926083564758,-0.169572338461876,0.487199723720551,0.856668949127197,-0.171385943889618,0.497191965579987,0.850545227527618,-0.16756397485733,0.487792581319809,0.856726825237274,-0.165476202964783,0.48830246925354,0.85684210062027,-0.172515496611595,0.49509534239769,0.851539254188538,-0.174940004944801,0.493590027093887,0.851918339729309,-0.0376982390880585,0.597900688648224,0.800683200359344,0.0627536401152611,0.491111010313034,0.868833720684052,0.0390080660581589,0.457001298666,0.888610243797302,-0.0399858467280865,0.570460796356201,0.820350885391235,-0.147654846310616,0.502507507801056,0.851871013641357,-0.125496074557304,0.483081936836243,0.866534888744354,-0.125585928559303,0.480704098939896,0.867843151092529,-0.146166190505028,0.503101110458374,0.851777374744415,-0.180977642536163,0.497220903635025,0.848538994789124,-0.17799124121666,0.486247360706329,0.855501413345337,-0.179883778095245,0.488546878099442,0.853793740272522,-0.181883037090302,0.501978039741516,0.845539271831512,-0.172219946980476,0.496879190206528,0.850559413433075,-0.172583311796188,0.486068904399872,0.856710076332092,-0.178264573216438,0.486167281866074,0.85548996925354,-0.177109345793724,0.49835991859436,0.84868711233139,-0.0872219055891037,0.514529645442963,0.853024959564209, +0.0255738347768784,0.433388262987137,0.90084433555603,0.0479360073804855,0.440649151802063,0.896398603916168,-0.0521096847951412,0.529280364513397,0.846845328807831,-0.142684519290924,0.502138197422028,0.852935135364532,-0.126763448119164,0.47787418961525,0.869233787059784,-0.128095716238022,0.474772691726685,0.870736718177795,-0.140691503882408,0.499771952629089,0.854654312133789,-0.214561924338341,0.5066859126091,0.835004508495331,-0.206700339913368,0.501182496547699,0.840292274951935,-0.197193920612335,0.488142758607864,0.850194931030273,-0.207417845726013,0.492036014795303,0.845504879951477,-0.186781123280525,0.48707714676857,0.853152275085449,-0.196867346763611,0.488192796707153,0.850241899490356,-0.189370080828667,0.503847897052765,0.842778921127319,-0.180696651339531,0.502232670783997,0.845642387866974,0.0508386753499508,0.567539989948273,0.821774899959564,0.0764107406139374,0.450400322675705,0.889550983905792,0.0414115600287914,0.425926893949509,0.903809368610382,0.0326526165008545,0.539569914340973,0.841307401657104,-0.141416236758232,0.497500032186508,0.855859339237213,-0.13268931210041,0.470607191324234,0.872308731079102,-0.135494396090508,0.468259483575821,0.873140513896942,-0.141479298472404,0.496549844741821,0.856400549411774,-0.0160549692809582,0.508113980293274,0.861140251159668,0.0174125023186207,0.40680319070816,0.913349866867065,0.0231227315962315,0.400246053934097,0.916115999221802,0.00142036308534443,0.500032782554626,0.866005301475525,0.555406510829926,-0.330423295497894,-0.76311469078064,0.628574848175049,-0.293222814798355,-0.720356941223145,0.66825145483017,-0.237575232982635,-0.704980850219727,0.597605168819427,-0.268805623054504,-0.755388259887695,-0.146727442741394,0.495245933532715,0.856272459030151,-0.14450016617775,0.465389341115952,0.873231053352356,-0.148252874612808,0.467090904712677,0.8716921210289,-0.14781254529953,0.495059877634048,0.856193423271179,0.0109408302232623,-0.437883585691452,-0.898965120315552,-0.0674076974391937,-0.416329354047775,-0.90671169757843,0.126336753368378,-0.52382218837738,-0.842406868934631, +0.125520810484886,-0.500736474990845,-0.85645055770874,0.016042735427618,0.489319115877151,0.871957182884216,0.0531078763306141,0.398458153009415,0.915647685527802,0.0294360909610987,0.405370742082596,0.913678407669067,0.000630243099294603,0.480431467294693,0.877032041549683,-0.256363332271576,-0.526642858982086,-0.810509324073792,-0.266387045383453,-0.538977444171906,-0.799087762832642,-0.258724629878998,-0.573380827903748,-0.777364790439606,-0.247069150209427,-0.56315666437149,-0.7885502576828,-0.404168516397476,-0.533820986747742,-0.742753684520721,-0.397684812545776,-0.561010181903839,-0.72602653503418,-0.390327900648117,-0.55128538608551,-0.737379610538483,-0.395669549703598,-0.525345981121063,-0.753297567367554,-0.927750468254089,0.142871826887131,-0.344770818948746,-0.927545309066772,0.143128752708435,-0.345215857028961,-0.925724148750305,0.118966571986675,-0.359001040458679,-0.925972104072571,0.119047120213509,-0.358334392309189,-0.00550047354772687,-0.457533061504364,-0.889175713062286,-0.00845497846603394,-0.47184681892395,-0.881640136241913,0.000993750989437103,-0.465959310531616,-0.884805560112,0.00303838169202209,-0.450112611055374,-0.892966628074646,0.147773832082748,-0.393468141555786,-0.907384037971497,0.146605581045151,-0.409166067838669,-0.900605320930481,0.15465934574604,-0.404933154582977,-0.901171267032623,0.15571765601635,-0.388596743345261,-0.908154487609863,0.358685970306396,-0.311910837888718,-0.87980455160141,0.350087344646454,-0.317444562911987,-0.881287634372711,0.352162420749664,-0.346217900514603,-0.869548618793488,0.360768258571625,-0.340784221887589,-0.868166208267212,0.41904616355896,-0.34491565823555,-0.83990091085434,0.413632094860077,-0.349037885665894,-0.84088122844696,0.418247282505035,-0.381112068891525,-0.824513673782349,0.423728793859482,-0.376810997724533,-0.823691368103027,0.466598361730576,-0.382563263177872,-0.797453045845032,0.469105780124664,-0.382737159729004,-0.79589706659317,0.476702064275742,-0.401045590639114,-0.782251596450806,0.47433814406395,-0.4011110663414,-0.783653855323792, +0.325870782136917,-0.504948198795319,-0.799271881580353,0.317783981561661,-0.507266581058502,-0.801058113574982,0.309895992279053,-0.51411646604538,-0.799780428409576,0.318093001842499,-0.512315809726715,-0.797715127468109,0.258033454418182,-0.521678388118744,-0.813185334205627,0.261836796998978,-0.520896553993225,-0.812470555305481,0.265715032815933,-0.513644754886627,-0.815821409225464,0.262057512998581,-0.514787673950195,-0.81628406047821,0.283526331186295,-0.506203889846802,-0.81447571516037,0.270333915948868,-0.506709039211273,-0.818636476993561,0.257213711738586,-0.5048708319664,-0.823982119560242,0.270536303520203,-0.504328787326813,-0.820038139820099,0.210607454180717,-0.504056632518768,-0.837598621845245,0.222832649946213,-0.504137516021729,-0.834380626678467,0.235783264040947,-0.501240849494934,-0.832564771175385,0.223469406366348,-0.500990986824036,-0.836103856563568,0.309993743896484,-0.497576594352722,-0.810136795043945,0.311005204916,-0.496979892253876,-0.810115337371826,0.315094590187073,-0.485042929649353,-0.815750420093536,0.314285099506378,-0.485157549381256,-0.815994560718536,0.178758949041367,-0.429991632699966,-0.884958982467651,0.176199793815613,-0.44903227686882,-0.875970125198364,0.179329484701157,-0.450626879930496,-0.874515056610107,0.181823268532753,-0.431739747524261,-0.883482336997986,0.346494615077972,-0.407742708921432,-0.844800174236298,0.336228519678116,-0.424767941236496,-0.840549051761627,0.333367228507996,-0.424358248710632,-0.841894507408142,0.343613684177399,-0.407439321279526,-0.846122205257416,0.442469775676727,-0.432239383459091,-0.78574150800705,0.444737583398819,-0.433155477046967,-0.783954620361328,0.449918776750565,-0.415815412998199,-0.790361106395721,0.447847157716751,-0.414488047361374,-0.792232811450958,0.616404414176941,-0.378489077091217,-0.690501034259796,0.615814089775085,-0.402269124984741,-0.677460432052612,0.624284684658051,-0.407019525766373,-0.666786134243011,0.624664187431335,-0.384115368127823,-0.679889738559723,0.650280296802521,-0.377034097909927,-0.659530878067017, +0.649393498897552,-0.37955242395401,-0.658959805965424,0.648747384548187,-0.381406038999557,-0.658525943756104,0.650616943836212,-0.377177983522415,-0.659116446971893,0.519762873649597,-0.302593380212784,-0.798926651477814,0.560082733631134,-0.323671072721481,-0.76259058713913,0.562349319458008,-0.322335094213486,-0.761487603187561,0.522776424884796,-0.29872128367424,-0.798417389392853,0.76743221282959,-0.189110562205315,-0.612605094909668,0.721504986286163,-0.229952767491341,-0.653109669685364,0.677401781082153,-0.284651279449463,-0.678307056427002,0.725050091743469,-0.236531972885132,-0.646803677082062,0.744407415390015,-0.214993014931679,-0.632167398929596,0.741904675960541,-0.228594273328781,-0.630334854125977,0.73575085401535,-0.23783241212368,-0.634118616580963,0.739814877510071,-0.222564339637756,-0.634932219982147,0.725897550582886,-0.235525727272034,-0.646220088005066,0.73647940158844,-0.237066879868507,-0.633559286594391,0.738588869571686,-0.232015430927277,-0.632973372936249,0.733259379863739,-0.231293976306915,-0.639401257038116,0.22421769797802,-0.427721679210663,-0.875660061836243,0.344272255897522,-0.442979872226715,-0.827795624732971,0.387575507164001,-0.432187467813492,-0.814247667789459,0.331192642450333,-0.437589049339294,-0.835958898067474,0.975525438785553,0.123349778354168,0.182030126452446,0.974976360797882,0.123476952314377,0.184863612055779,0.974400281906128,0.123776368796825,0.187679246068001,0.974968194961548,0.123552441596985,0.18485651910305,0.389662683010101,-0.326465904712677,-0.861152052879333,0.424471408128738,-0.373669892549515,-0.824739396572113,0.444313496351242,-0.349578320980072,-0.824851870536804,0.405172765254974,-0.300374537706375,-0.863487243652344,0.752719342708588,-0.196004182100296,-0.628487050533295,0.745144546031952,-0.176340207457542,-0.643166959285736,0.740655481815338,-0.178207784891129,-0.64782053232193,0.748373866081238,-0.191349878907204,-0.635076284408569,0.763393580913544,-0.200307801365852,-0.614090383052826,0.772751331329346,-0.180480942130089,-0.608507990837097, +0.779665410518646,-0.16796188056469,-0.603250086307526,0.77479213476181,-0.188028708100319,-0.603607714176178,0.719069361686707,-0.191944345831871,-0.667904675006866,0.597623884677887,-0.221615672111511,-0.770540237426758,0.461057275533676,-0.265285104513168,-0.846788048744202,0.601277649402618,-0.25030854344368,-0.758821964263916,0.0763324052095413,0.545247375965118,0.834792613983154,0.0258837603032589,0.573479175567627,0.818811118602753,-0.0338749065995216,0.592436611652374,0.804904580116272,0.0109128998592496,0.562188148498535,0.826937317848206,0.678152620792389,0.606537342071533,-0.414995819330215,0.678258776664734,0.590173602104187,-0.437790244817734,0.675732791423798,0.593951880931854,-0.436585068702698,0.675743937492371,0.611295580863953,-0.411931872367859,0.326766699552536,-0.469576925039291,-0.820195734500885,0.383499503135681,-0.496460884809494,-0.778752028942108,0.354089975357056,-0.481155574321747,-0.801941156387329,0.211191281676292,-0.518634557723999,-0.828502535820007,0.119224824011326,-0.511940121650696,-0.850707113742828,0.118550904095173,-0.536924064159393,-0.83525949716568,0.166654407978058,-0.530130863189697,-0.831376969814301,0.247800678014755,-0.409225404262543,-0.878139734268188,0.211266085505486,-0.444580465555191,-0.870468318462372,0.241875767707825,-0.406132370233536,-0.881222188472748,0.290463954210281,-0.374514073133469,-0.880550920963287,0.20402292907238,-0.460023880004883,-0.864148616790771,0.18858827650547,-0.472357273101807,-0.860995411872864,0.197819977998734,-0.459277719259262,-0.865985751152039,0.218276023864746,-0.448610663414001,-0.866662621498108,0.151706889271736,-0.532111167907715,-0.832972228527069,0.140742018818855,-0.521479547023773,-0.841576457023621,0.192400828003883,-0.527755916118622,-0.82731831073761,0.186559081077576,-0.529841005802155,-0.827323496341705,0.191833436489105,-0.492491126060486,-0.848912477493286,0.183061197400093,-0.503934264183044,-0.844120144844055,0.184028133749962,-0.493278741836548,-0.850182235240936,0.196675211191177,-0.48235747218132,-0.853610038757324, +0.1073182746768,-0.65325915813446,-0.749490141868591,0.063633993268013,-0.66278749704361,-0.746098816394806,0.000523854396305978,-0.626748621463776,-0.779221296310425,0.0831528976559639,-0.637135565280914,-0.766253113746643,0.174121350049973,-0.553662061691284,-0.814334154129028,0.161352589726448,-0.548114478588104,-0.820692420005798,0.182545870542526,-0.544128239154816,-0.818902730941772,0.183705359697342,-0.547657430171967,-0.816286504268646,0.181544154882431,-0.514097988605499,-0.838298916816711,0.182201609015465,-0.516745984554291,-0.836526274681091,0.182972386479378,-0.513300657272339,-0.838476955890656,0.18811371922493,-0.50883549451828,-0.840059340000153,0.17229850590229,-0.571562469005585,-0.802265226840973,0.216372415423393,-0.514978170394897,-0.829445898532867,0.152721807360649,-0.569520533084869,-0.807664692401886,0.142950356006622,-0.625775992870331,-0.766791760921478,0.193571925163269,-0.560650944709778,-0.805108964443207,0.186353549361229,-0.560227990150452,-0.807104170322418,0.187015399336815,-0.557751774787903,-0.808664441108704,0.191981852054596,-0.558168292045593,-0.807211995124817,0.180423393845558,-0.523268520832062,-0.832849025726318,0.187738433480263,-0.519682586193085,-0.833477199077606,0.184853941202164,-0.521080672740936,-0.833249032497406,0.180256739258766,-0.522919774055481,-0.833104074001312,0.261093735694885,-0.634941339492798,-0.727103590965271,0.25238636136055,-0.619944214820862,-0.742947041988373,0.187081441283226,-0.613089561462402,-0.767542660236359,0.203945800662041,-0.632779896259308,-0.746991038322449,0.201135978102684,-0.559397578239441,-0.804126024246216,0.196651771664619,-0.561212599277496,-0.803970575332642,0.197174966335297,-0.561281323432922,-0.803794324398041,0.20114067196846,-0.55930757522583,-0.804187417030334,0.192422941327095,-0.513775944709778,-0.836066782474518,0.190753623843193,-0.516677141189575,-0.834660291671753,0.18448331952095,-0.522665441036224,-0.832338094711304,0.185674905776978,-0.520532190799713,-0.833409309387207,0.219876408576965,-0.602022409439087,-0.767608880996704, +0.222436308860779,-0.615253031253815,-0.756297409534454,0.231274858117104,-0.598352372646332,-0.767128646373749,0.205402046442032,-0.591473281383514,-0.779723882675171,0.215910419821739,-0.545704305171967,-0.809684813022614,0.207316637039185,-0.552160859107971,-0.807550847530365,0.205727621912956,-0.555100202560425,-0.805940389633179,0.211816340684891,-0.550069808959961,-0.807810008525848,0.188057422637939,-0.507525742053986,-0.84086400270462,0.189739584922791,-0.50987046957016,-0.839065611362457,0.183064296841621,-0.519695043563843,-0.834508538246155,0.180648803710938,-0.519598543643951,-0.835094809532166,0.211621329188347,-0.551810085773468,-0.806673467159271,0.19819264113903,-0.559506714344025,-0.804780781269073,0.208655431866646,-0.554394960403442,-0.805673122406006,0.217572674155235,-0.54786205291748,-0.807780504226685,0.2263063788414,-0.52346408367157,-0.82144433259964,0.219729945063591,-0.533182322978973,-0.816967189311981,0.214896008372307,-0.541194319725037,-0.81297504901886,0.218142613768578,-0.534968972206116,-0.816224336624146,0.168763682246208,-0.511877775192261,-0.84231823682785,0.170203700661659,-0.496467083692551,-0.851205706596375,0.176353067159653,-0.499990195035934,-0.847885310649872,0.173999443650246,-0.515154838562012,-0.839249610900879,0.227258548140526,-0.47881892323494,-0.84798938035965,0.206803426146507,-0.505025327205658,-0.837962985038757,0.204468429088593,-0.517111480236053,-0.83113694190979,0.20671258866787,-0.506759226322174,-0.836937963962555,0.225840881466866,-0.49805349111557,-0.837220907211304,0.224734649062157,-0.508137285709381,-0.831438958644867,0.21470320224762,-0.526482582092285,-0.82262909412384,0.213951200246811,-0.521151304244995,-0.826211988925934,0.149919062852859,-0.514287531375885,-0.844412624835968,0.14798204600811,-0.494892060756683,-0.856261134147644,0.157845497131348,-0.493970930576324,-0.85503077507019,0.158576816320419,-0.511216342449188,-0.844695925712585,0.1801747828722,-0.384365111589432,-0.905428349971771,0.201156467199326,-0.418459981679916,-0.885679006576538, +0.192283302545547,-0.485628247261047,-0.852755725383759,0.167347490787506,-0.465268015861511,-0.86920690536499,0.210090979933739,-0.478643000125885,-0.852503776550293,0.215137422084808,-0.485737383365631,-0.847216129302979,0.206350296735764,-0.512400448322296,-0.833585798740387,0.203032478690147,-0.506782472133636,-0.837824285030365,0.14920362830162,-0.364257901906967,-0.919268429279327,0.18056133389473,-0.379279524087906,-0.907493531703949,0.168334722518921,-0.465050995349884,-0.869132459163666,0.143127888441086,-0.45590004324913,-0.87844717502594,0.184672504663467,-0.464882075786591,-0.865898787975311,0.193012088537216,-0.469430893659592,-0.861615419387817,0.188859134912491,-0.501056373119354,-0.844556093215942,0.18269194662571,-0.49980640411377,-0.846650660037994,0.121523797512054,-0.455166608095169,-0.882074475288391,0.135419055819511,-0.354779005050659,-0.925091087818146,0.146454393863678,-0.358896225690842,-0.921815931797028,0.124456726014614,-0.452479481697083,-0.883047461509705,0.138675957918167,-0.404926240444183,-0.903772056102753,0.122961029410362,-0.378101050853729,-0.917562127113342,0.0846597105264664,-0.457077473402023,-0.885388553142548,0.115897141396999,-0.469493538141251,-0.875296294689178,-0.0282117649912834,0.404279798269272,0.914200246334076,-0.0643879920244217,0.469144970178604,0.880770802497864,-0.0318869836628437,0.478436499834061,0.877543091773987,0.00917906872928143,0.404328852891922,0.914567649364471,-0.736506998538971,-0.675036668777466,-0.0433927476406097,-0.714466571807861,-0.699510633945465,-0.0149167962372303,-0.70313835144043,-0.710765361785889,0.0202279109507799,-0.726181983947754,-0.687450468540192,-0.00846510380506516,-0.753018319606781,-0.65157288312912,-0.0917398482561111,-0.762637436389923,-0.64140510559082,-0.0835693404078484,-0.761708319187164,-0.642408132553101,-0.0843343064188957,-0.755029439926147,-0.649523854255676,-0.0897186696529388,-0.753069937229156,-0.651485741138458,-0.0919352695345879,-0.755084037780762,-0.649430871009827,-0.0899312049150467,-0.702885091304779,-0.698637545108795,-0.13363479077816, +-0.696420073509216,-0.703736782073975,-0.140547558665276,-0.560246527194977,-0.811736166477203,-0.164949581027031,-0.572359144687653,-0.803035318851471,-0.165949761867523,-0.421350479125977,-0.861277103424072,-0.28401705622673,-0.422509431838989,-0.863836765289307,-0.274357110261917,-0.355520457029343,-0.801685333251953,-0.480526596307755,-0.224734142422676,-0.900235176086426,-0.372922539710999,0.0814937949180603,-0.91547417640686,-0.394038110971451,-0.0732859149575233,-0.862208545207977,-0.501224040985107,0.429155290126801,-0.821223080158234,-0.376056432723999,0.45244488120079,-0.808910727500916,-0.375442534685135,0.638254880905151,-0.599793493747711,-0.482574850320816,0.622498512268066,-0.607716977596283,-0.493128448724747,0.973406434059143,-0.205904603004456,0.100415296852589,0.970387697219849,-0.237480282783508,0.0441671572625637,0.972945928573608,-0.231005698442459,-0.00354831060394645,0.979429244995117,-0.194384783506393,0.0541558153927326,0.975391209125519,-0.182273924350739,0.124050229787827,0.980751931667328,-0.17587511241436,0.0848143473267555,0.985479652881622,-0.162847056984901,0.0480717197060585,0.981951892375946,-0.16731795668602,0.0881777256727219,0.985952138900757,-0.144255355000496,0.084195151925087,0.982343316078186,-0.162437826395035,0.0928202569484711,0.979853868484497,-0.168758407235146,0.1068035364151,0.983622074127197,-0.151415199041367,0.0977814197540283,0.979581713676453,-0.149407550692558,0.13452522456646,0.978858828544617,-0.153347805142403,0.135351315140724,0.978412508964539,-0.15446525812149,0.137293145060539,0.979147017002106,-0.150384977459908,0.136585459113121,0.994118571281433,-0.0575381070375443,0.0917487740516663,0.991209030151367,-0.104338988661766,0.0813512429594994,0.990436732769012,-0.109232649207115,0.0842822343111038,0.99360054731369,-0.0606452263891697,0.0952900946140289,0.962667346000671,-0.103541500866413,0.250101387500763,0.959179818630219,-0.108933098614216,0.260974735021591,0.955506861209869,-0.139214664697647,0.260049909353256,0.959173619747162,-0.120990425348282,0.255631029605865, +-0.121125273406506,-0.96575140953064,-0.229462191462517,-0.270390152931213,-0.926167547702789,-0.262874335050583,-0.298608899116516,-0.931872010231018,-0.206027373671532,-0.148820862174034,-0.969805002212524,-0.193211317062378,0.269439280033112,-0.94414746761322,-0.189705327153206,0.174216374754906,-0.929846227169037,-0.324090510606766,0.154496610164642,-0.943943381309509,-0.291721910238266,0.276913940906525,-0.952013611793518,-0.130340844392776,0.261855036020279,-0.947968423366547,-0.181074053049088,0.302032977342606,-0.940002918243408,-0.158652633428574,0.591290235519409,-0.792144119739532,0.151273146271706,0.503493905067444,-0.862146556377411,0.0565447360277176,-0.735729098320007,-0.170740395784378,-0.655400991439819,-0.689984440803528,-0.14997598528862,-0.708116352558136,-0.518302202224731,-0.331993609666824,-0.788126289844513,-0.553151965141296,-0.359001994132996,-0.751758217811584,-0.612614691257477,-0.197104573249817,-0.765410423278809,-0.624681293964386,-0.110349290072918,-0.773043513298035,-0.558223307132721,-0.437926560640335,-0.704703629016876,-0.531347453594208,-0.443071961402893,-0.722050666809082,-0.60994154214859,-0.429425418376923,-0.666006863117218,-0.67292046546936,-0.122013255953789,-0.729582667350769,-0.666625797748566,-0.0236202422529459,-0.745018184185028,-0.625357210636139,-0.326009690761566,-0.708975434303284,-0.594710886478424,-0.015591592527926,-0.803788542747498,-0.566122770309448,-0.0964076370000839,-0.818663895130157,-0.605783581733704,0.110958442091942,-0.787854373455048,-0.629698097705841,0.205047532916069,-0.749290227890015,-0.12462667375803,-0.786627113819122,-0.604719877243042,-0.197956919670105,-0.719706952571869,-0.665458500385284,-0.243521019816399,-0.714262843132019,-0.656144917011261,-0.180710792541504,-0.782589077949524,-0.595733106136322,-0.38774386048317,-0.647804379463196,-0.655747056007385,-0.358889579772949,-0.670201659202576,-0.64963686466217,-0.304613560438156,-0.794507026672363,-0.525327682495117,-0.32191389799118,-0.777119159698486,-0.540793299674988,-0.339618682861328,-0.788177132606506,-0.513260126113892, +-0.371257305145264,-0.668238043785095,-0.644690573215485,-0.342847228050232,-0.650442183017731,-0.677776455879211,-0.331055343151093,-0.759028136730194,-0.560605585575104,-0.219224214553833,-0.680505514144897,-0.699180245399475,-0.348971992731094,-0.671681702136993,-0.653500020503998,-0.502853453159332,-0.444700717926025,-0.741201519966125,-0.361027240753174,-0.399141281843185,-0.842820048332214,-0.394109010696411,-0.535746395587921,-0.746762216091156,-0.521268248558044,-0.348013669252396,-0.779208660125732,-0.447775036096573,-0.484174579381943,-0.751713037490845,-0.350550979375839,-0.593833684921265,-0.724206864833832,-0.456732273101807,-0.488289803266525,-0.743618667125702,-0.529704988002777,-0.352982610464096,-0.771243155002594,-0.598566353321075,-0.191476717591286,-0.777852833271027,-0.512818932533264,-0.441345006227493,-0.736363589763641,-0.60151481628418,-0.192656338214874,-0.775282859802246,-0.514669954776764,-0.344123005867004,-0.785298824310303,-0.506660342216492,-0.321730881929398,-0.799865305423737,-0.644883096218109,-0.114038415253162,-0.755725502967834,-0.18188801407814,-0.821581065654755,-0.540297448635101,-0.196346953511238,-0.792364597320557,-0.577586650848389,-0.147560447454453,-0.801434397697449,-0.5795938372612,-0.136076122522354,-0.826218605041504,-0.54666805267334,0.958597898483276,-0.192031905055046,-0.210270777344704,0.982919752597809,-0.0505073592066765,-0.176967710256577,0.980499982833862,-0.032061941921711,-0.193886578083038,0.956615626811981,-0.175823122262955,-0.232320711016655,-0.122067369520664,-0.775982737541199,-0.618829905986786,-0.206931591033936,-0.773367822170258,-0.599234104156494,-0.185831218957901,-0.736941516399384,-0.649910748004913,-0.106852151453495,-0.729575932025909,-0.675500988960266,-0.200979679822922,-0.749933898448944,-0.630243062973022,-0.196402952075005,-0.766118288040161,-0.611954748630524,-0.249577060341835,-0.7443608045578,-0.619385361671448,-0.253293186426163,-0.731677234172821,-0.632843613624573,-0.245255544781685,-0.741094350814819,-0.625003278255463,-0.202979534864426,-0.770670711994171,-0.604041337966919, +-0.151139914989471,-0.803344309329987,-0.576016306877136,-0.177278891205788,-0.780383884906769,-0.599644184112549,-0.261517077684402,-0.657466292381287,-0.706644833087921,-0.273208975791931,-0.660072326660156,-0.699758231639862,-0.411618024110794,-0.548899531364441,-0.727516233921051,-0.352387219667435,-0.595318138599396,-0.722093939781189,-0.432967305183411,-0.564652025699615,-0.702643275260925,-0.299090951681137,-0.681391417980194,-0.668019711971283,-0.248990431427956,-0.718645513057709,-0.64927077293396,-0.405105441808701,-0.599132061004639,-0.690601468086243,-0.261315852403641,-0.728336095809937,-0.633435606956482,-0.313197195529938,-0.692610025405884,-0.649768352508545,-0.245260119438171,-0.741097748279572,-0.62499725818634,-0.182302758097649,-0.783604800701141,-0.593910098075867,-0.229320630431175,-0.691930949687958,-0.684575498104095,-0.217360928654671,-0.707342088222504,-0.672622799873352,-0.18998247385025,-0.711829483509064,-0.676169753074646,-0.217190563678741,-0.686459124088287,-0.693975687026978,-0.228157356381416,-0.699764430522919,-0.676959335803986,-0.264198690652847,-0.676628947257996,-0.687293529510498,-0.259361207485199,-0.684010028839111,-0.68180787563324,-0.234167888760567,-0.698979914188385,-0.675716280937195,-0.264304727315903,-0.741773664951324,-0.616372406482697,-0.238536283373833,-0.762116491794586,-0.601896047592163,-0.220453336834908,-0.765957057476044,-0.60391241312027,-0.258143872022629,-0.736113429069519,-0.625698626041412,-0.27742338180542,-0.752640783786774,-0.597133219242096,-0.260854125022888,-0.760016262531281,-0.595256567001343,-0.27375528216362,-0.754366934299469,-0.596647918224335,-0.281623274087906,-0.751172423362732,-0.597016215324402,-0.33886307477951,-0.776041448116302,-0.531913042068481,-0.219093427062035,-0.717460691928864,-0.661247491836548,-0.205521941184998,-0.590772986412048,-0.780223071575165,-0.276421159505844,-0.691916584968567,-0.666965425014496,-0.295923173427582,-0.715715825557709,-0.632597923278809,-0.23967581987381,-0.635212957859039,-0.734207093715668,-0.403152197599411,-0.63504958152771,-0.658923625946045, +-0.350277274847031,-0.784086883068085,-0.512360811233521,-0.275802582502365,-0.694435775279999,-0.664599061012268,-0.313328832387924,-0.779350697994232,-0.542621195316315,-0.268699318170547,-0.699635446071625,-0.662050545215607,-0.165570721030235,-0.622074484825134,-0.765251398086548,-0.278698235750198,-0.760984778404236,-0.585857927799225,-0.298730909824371,-0.748556911945343,-0.591964960098267,-0.301102310419083,-0.751005828380585,-0.587645947933197,-0.286423712968826,-0.759375691413879,-0.584217429161072,-0.439320981502533,-0.661632359027863,-0.607650995254517,-0.550315976142883,-0.528282642364502,-0.646583139896393,-0.440877497196198,-0.68122786283493,-0.58442759513855,-0.316612869501114,-0.759502053260803,-0.568254292011261,0.0559907965362072,-0.648463249206543,-0.759184002876282,0.0446277149021626,-0.605444192886353,-0.794635713100433,-0.00693573383614421,-0.613344788551331,-0.789784789085388,0.00873078778386116,-0.654944777488708,-0.755626320838928,-0.31250211596489,-0.782529830932617,-0.538506805896759,-0.412760257720947,-0.674380898475647,-0.612241268157959,-0.400776922702789,-0.647653758525848,-0.648014307022095,-0.30175969004631,-0.777613937854767,-0.551595509052277,-0.303865760564804,-0.739748179912567,-0.600365161895752,-0.292635679244995,-0.746350467205048,-0.597766935825348,-0.299039661884308,-0.741791903972626,-0.600266635417938,-0.312103986740112,-0.73475980758667,-0.602261662483215,-0.300000965595245,-0.743850469589233,-0.597231864929199,-0.293044447898865,-0.747042417526245,-0.596701502799988,-0.278459757566452,-0.75408923625946,-0.594818949699402,-0.282110959291458,-0.752008974552155,-0.595731496810913,-0.272547423839569,-0.745785057544708,-0.607883810997009,-0.287515729665756,-0.737646579742432,-0.610910952091217,-0.251645237207413,-0.755702435970306,-0.604639291763306,-0.242276817560196,-0.762636661529541,-0.59973931312561,-0.33807635307312,-0.75261253118515,-0.56504762172699,-0.334801077842712,-0.767490088939667,-0.546687424182892,-0.350728750228882,-0.775052726268768,-0.525625884532928,-0.358153462409973,-0.758374869823456,-0.544604003429413, +-0.303222209215164,-0.755931496620178,-0.580192983150482,-0.32788473367691,-0.745380520820618,-0.580430448055267,-0.304553508758545,-0.753578782081604,-0.582551419734955,-0.287852644920349,-0.761804223060608,-0.580340683460236,-0.299280136823654,-0.823449790477753,-0.482039391994476,-0.232838377356529,-0.834493517875671,-0.499406486749649,-0.162675336003304,-0.83533650636673,-0.525118887424469,-0.268212258815765,-0.828137993812561,-0.492188632488251,-0.352325856685638,-0.789206206798553,-0.503010988235474,-0.33117613196373,-0.806047439575195,-0.490520268678665,-0.36412838101387,-0.784655392169952,-0.50172346830368,-0.35935565829277,-0.775596022605896,-0.518954992294312,-0.0585300251841545,-0.864790439605713,-0.498710036277771,-0.131436511874199,-0.860874831676483,-0.491547495126724,-0.203565001487732,-0.855338573455811,-0.476400524377823,-0.101777985692024,-0.861782908439636,-0.496962249279022,-0.192726463079453,-0.867950141429901,-0.457732528448105,-0.134413346648216,-0.858198046684265,-0.495408177375793,-0.158634439110756,-0.862129032611847,-0.481215804815292,-0.229000434279442,-0.871435880661011,-0.433772265911102,0.10934391617775,-0.535196244716644,-0.837621033191681,0.144299656152725,-0.591788649559021,-0.793072402477264,0.197925642132759,-0.583789229393005,-0.78741067647934,0.16838838160038,-0.524744749069214,-0.834438920021057,-0.102085687220097,-0.843399465084076,-0.527499675750732,-0.14125007390976,-0.851248204708099,-0.505395889282227,-0.179597139358521,-0.847532093524933,-0.499433875083923,-0.121608890593052,-0.851767420768738,-0.509611129760742,-0.16144697368145,-0.773387134075165,-0.613031148910522,-0.145158275961876,-0.785369992256165,-0.601766526699066,-0.240512922406197,-0.78880387544632,-0.56563413143158,-0.268231570720673,-0.761623442173004,-0.589899599552155,0.0981002375483513,-0.88956606388092,-0.446148633956909,0.263527572154999,-0.918806731700897,-0.293848961591721,0.301952719688416,-0.94955050945282,-0.0847255513072014,0.123048327863216,-0.961289703845978,-0.246538698673248,-0.256220251321793,-0.677293419837952,-0.689655542373657, +-0.267970114946365,-0.667295813560486,-0.694916129112244,-0.200417399406433,-0.685037195682526,-0.700397670269012,-0.144388675689697,-0.702122211456299,-0.697263419628143,0.0150228897109628,-0.855522513389587,-0.517547607421875,-0.0313413366675377,-0.886404275894165,-0.461849719285965,-0.0786992385983467,-0.852874636650085,-0.516150593757629,-0.0315443314611912,-0.829681396484375,-0.55734521150589,-0.340557217597961,-0.858847260475159,-0.382625371217728,-0.214957162737846,-0.880434036254883,-0.422645747661591,-0.27677321434021,-0.810395061969757,-0.516388058662415,-0.372974693775177,-0.799120664596558,-0.471483021974564,-0.0761654078960419,-0.833289384841919,-0.547565221786499,-0.123259097337723,-0.822462737560272,-0.555303692817688,-0.0706305876374245,-0.837575554847717,-0.541736781597137,-0.0330630168318748,-0.839723229408264,-0.542007327079773,-0.0795335024595261,-0.85095351934433,-0.519184291362762,-0.121583633124828,-0.820144474506378,-0.559089004993439,-0.155003502964973,-0.820683360099792,-0.549957036972046,-0.115368939936161,-0.856602013111115,-0.502914488315582,-0.182357951998711,-0.83810031414032,-0.51413369178772,-0.165162414312363,-0.87543910741806,-0.454233080148697,-0.220100954174995,-0.885750293731689,-0.408658802509308,-0.270050585269928,-0.82787811756134,-0.491620242595673,-0.163158863782883,-0.826051950454712,-0.539460301399231,-0.165950268507004,-0.82337486743927,-0.542691648006439,-0.132971689105034,-0.849999308586121,-0.509725332260132,-0.115436680614948,-0.856649398803711,-0.50281834602356,-0.159273281693459,-0.859115064144135,-0.486367493867874,-0.179767310619354,-0.82752251625061,-0.531874239444733,-0.179882347583771,-0.837986826896667,-0.515189707279205,-0.181845963001251,-0.848826885223389,-0.496412068605423,-0.213406667113304,-0.840384364128113,-0.498208463191986,-0.229558885097504,-0.8403440117836,-0.491044461727142,-0.301921606063843,-0.780460834503174,-0.547470808029175,-0.280114024877548,-0.777693629264832,-0.56278657913208,-0.223542079329491,-0.827140748500824,-0.515623092651367,-0.220917418599129,-0.843661725521088,-0.48931622505188, +-0.209939241409302,-0.805709898471832,-0.553856611251831,-0.200409412384033,-0.773871958255768,-0.600798010826111,-0.203474014997482,-0.807035505771637,-0.554339230060577,-0.246322199702263,-0.841422498226166,-0.48097163438797,-0.288991391658783,-0.796949565410614,-0.530429422855377,-0.244052767753601,-0.78269350528717,-0.572563648223877,-0.264546185731888,-0.800309836864471,-0.53807008266449,-0.235811710357666,-0.842424333095551,-0.484473049640656,-0.246798187494278,-0.841593384742737,-0.480428159236908,-0.290006995201111,-0.777714610099792,-0.557723879814148,-0.0594040751457214,-0.847194790840149,-0.527951002120972,-0.0511870011687279,-0.840954899787903,-0.538678705692291,-0.0841963291168213,-0.840423464775085,-0.535349786281586,-0.103193886578083,-0.841530442237854,-0.530261814594269,-0.0749527737498283,-0.832104742527008,-0.549530506134033,-0.0498064905405045,-0.838554322719574,-0.542536675930023,-0.066297322511673,-0.830862402915955,-0.552514791488647,-0.0784806758165359,-0.829002976417542,-0.553710103034973,-0.0627566277980804,-0.825280070304871,-0.561225831508636,-0.046398252248764,-0.832555174827576,-0.551995754241943,-0.0126516744494438,-0.832957923412323,-0.553191721439362,-0.0310840271413326,-0.826596558094025,-0.561935901641846,0.0770452320575714,-0.798976719379425,-0.596406161785126,0.029815835878253,-0.811278402805328,-0.583899319171906,0.0334117710590363,-0.804580211639404,-0.59290337562561,0.0768660083413124,-0.794011473655701,-0.603023529052734,0.0349707417190075,-0.816508233547211,-0.576273679733276,0.0315694138407707,-0.821270763874054,-0.569664537906647,-0.0114954514428973,-0.825941801071167,-0.563638210296631,-0.00814397446811199,-0.82110458612442,-0.570719599723816,-0.00847437046468258,-0.807042360305786,-0.590432643890381,0.0266504734754562,-0.792750835418701,-0.608963131904602,0.00414677755907178,-0.806711316108704,-0.590931177139282,-0.029800821095705,-0.817896902561188,-0.574592530727386,-0.159539580345154,-0.837330460548401,-0.522900462150574,-0.137163057923317,-0.845510125160217,-0.51604163646698, +-0.171536415815353,-0.829245746135712,-0.531908750534058,-0.196419075131416,-0.811126351356506,-0.550902545452118,-0.178326636552811,-0.830681383609772,-0.527416586875916,-0.145623430609703,-0.849269926548004,-0.507478296756744,-0.127335578203201,-0.8479083776474,-0.51462322473526,-0.151081547141075,-0.844352066516876,-0.514046788215637,-0.102043800055981,-0.837936878204346,-0.536142647266388,-0.131582677364349,-0.842962026596069,-0.52163302898407,-0.0896432250738144,-0.845197558403015,-0.526882529258728,-0.0764834061264992,-0.827405869960785,-0.556372046470642,-0.242687776684761,-0.773845493793488,-0.585034847259521,-0.228923544287682,-0.796697080135345,-0.559345841407776,-0.251758068799973,-0.73726749420166,-0.626940608024597,-0.255581080913544,-0.726505935192108,-0.637861609458923,-0.2509526014328,-0.737416625022888,-0.627088129520416,-0.230163350701332,-0.796714842319489,-0.558811604976654,-0.209327578544617,-0.82744163274765,-0.521078050136566,-0.236435443162918,-0.767408609390259,-0.595971763134003,-0.198262736201286,-0.827542841434479,-0.525228202342987,-0.223691582679749,-0.796606540679932,-0.561587154865265,-0.194836676120758,-0.833944618701935,-0.516309022903442,-0.171823412179947,-0.847484588623047,-0.502241551876068,-0.244143009185791,-0.807874441146851,-0.536407768726349,-0.297993361949921,-0.759872734546661,-0.577748715877533,-0.317075729370117,-0.747412145137787,-0.583813369274139,-0.263717800378799,-0.801236569881439,-0.537096798419952,-0.306051850318909,-0.746785581111908,-0.590460538864136,-0.304549187421799,-0.760089218616486,-0.574033260345459,-0.325948655605316,-0.693867444992065,-0.642110168933868,-0.322740077972412,-0.676930785179138,-0.661516070365906,-0.324232518672943,-0.694142699241638,-0.642681300640106,-0.28751739859581,-0.759438514709473,-0.583598136901855,-0.262441605329514,-0.774581909179688,-0.575453996658325,-0.303322315216064,-0.718593120574951,-0.625795185565948,-0.198643386363983,-0.831319451332092,-0.519084513187408,-0.179585963487625,-0.8331658244133,-0.523052215576172,-0.234886825084686,-0.805346250534058,-0.544284582138062, +-0.255006432533264,-0.798684537410736,-0.545045614242554,-0.227171957492828,-0.80315238237381,-0.550762534141541,-0.178245812654495,-0.832394540309906,-0.524735987186432,-0.158138334751129,-0.836593389511108,-0.524503409862518,-0.205623686313629,-0.813521921634674,-0.54396778345108,-0.150607898831367,-0.832566916942596,-0.533056735992432,-0.172496497631073,-0.829042494297028,-0.531914949417114,-0.124027647078037,-0.844406545162201,-0.521147489547729,-0.105093285441399,-0.843380093574524,-0.526939690113068,-0.0251208171248436,-0.831681668758392,-0.554684221744537,-0.0680052638053894,-0.834867358207703,-0.54623419046402,-0.0874063223600388,-0.839293479919434,-0.536606550216675,-0.0457016639411449,-0.8381028175354,-0.543594598770142,-0.0899791345000267,-0.844535231590271,-0.527886390686035,-0.0708810910582542,-0.840618789196014,-0.536969184875488,-0.116869814693928,-0.836918234825134,-0.534705102443695,-0.135900974273682,-0.838525414466858,-0.527641952037811,-0.118280157446861,-0.838410139083862,-0.532051205635071,-0.0724812597036362,-0.843780338764191,-0.531771659851074,-0.0550212040543556,-0.838939189910889,-0.541436731815338,-0.0983162224292755,-0.836719393730164,-0.538734316825867,-0.336835741996765,-0.804356515407562,-0.48944079875946,-0.41885432600975,-0.730946183204651,-0.538775026798248,-0.450110584497452,-0.709124565124512,-0.54271799325943,-0.367021560668945,-0.792858064174652,-0.486488580703735,-0.437015503644943,-0.709449350833893,-0.552900552749634,-0.425194919109344,-0.730773985385895,-0.534021258354187,-0.46822789311409,-0.627353310585022,-0.622246503829956,-0.474263817071915,-0.603167355060577,-0.641297876834869,-0.468472123146057,-0.627292215824127,-0.622124075889587,-0.392899125814438,-0.731174051761627,-0.557686984539032,-0.344556868076324,-0.748439073562622,-0.566674053668976,-0.421758025884628,-0.659324288368225,-0.622424066066742,-0.457608193159103,-0.78445827960968,-0.418592810630798,-0.566108822822571,-0.672617793083191,-0.476556479930878,-0.610680103302002,-0.628004610538483,-0.482369244098663, +-0.507581472396851,-0.751912117004395,-0.420700788497925,-0.583564460277557,-0.6321941614151,-0.509689331054688,-0.568255662918091,-0.672285258769989,-0.47446608543396,-0.61748743057251,-0.528355777263641,-0.582708656787872,-0.621439158916473,-0.486043125391006,-0.614471673965454,-0.617548942565918,-0.528332531452179,-0.582664728164673,-0.530915141105652,-0.677121937274933,-0.509543836116791,-0.477220326662064,-0.70780611038208,-0.520837068557739,-0.568076908588409,-0.576499342918396,-0.587313592433929,-0.275780290365219,-0.839517772197723,-0.468140125274658,-0.247568011283875,-0.843345642089844,-0.476946771144867,-0.327560722827911,-0.802184522151947,-0.49920329451561,-0.358862489461899,-0.790966391563416,-0.49557027220726,-0.300265938043594,-0.79502671957016,-0.527041614055634,-0.232091903686523,-0.834369003772736,-0.499961614608765,-0.208862230181694,-0.837360978126526,-0.505176365375519,-0.274611324071884,-0.804278373718262,-0.52699613571167,-0.203595921397209,-0.834277331829071,-0.512377023696899,-0.227245301008224,-0.8314368724823,-0.507022976875305,-0.167656973004341,-0.85073184967041,-0.498143076896667,-0.146150752902031,-0.849574387073517,-0.506816804409027,-0.0686757192015648,-0.852297246456146,-0.518529713153839,-0.113765068352222,-0.854072272777557,-0.507560849189758,-0.136926144361496,-0.857357919216156,-0.49617400765419,-0.091276504099369,-0.858048737049103,-0.505391836166382,-0.139526039361954,-0.862658560276031,-0.486161082983017,-0.116436913609505,-0.859445631504059,-0.497791022062302,-0.170034661889076,-0.853294909000397,-0.492925971746445,-0.194658607244492,-0.853398084640503,-0.48354908823967,-0.162132054567337,-0.844674825668335,-0.510134935379028,-0.112622372806072,-0.851749241352081,-0.511702418327332,-0.0917379707098007,-0.848076522350311,-0.521871984004974,-0.140569537878036,-0.843614757061005,-0.518222391605377,-0.627899527549744,-0.700911104679108,-0.338328003883362,-0.732456862926483,-0.541729271411896,-0.412354797124863,-0.763322949409485,-0.47070249915123,-0.442467361688614,-0.677630305290222,-0.634611308574677,-0.371598780155182, +-0.749139487743378,-0.473993480205536,-0.462731450796127,-0.724751889705658,-0.54408198595047,-0.422740370035172,-0.777886688709259,-0.354087322950363,-0.519147872924805,-0.783649325370789,-0.277157783508301,-0.555947184562683,-0.77863472700119,-0.3536596596241,-0.51831728219986,-0.695672750473022,-0.551846027374268,-0.459897100925446,-0.625967264175415,-0.625147521495819,-0.466214269399643,-0.726405918598175,-0.440179646015167,-0.527803301811218,-0.398828715085983,-0.829717338085175,-0.390518695116043,-0.345832318067551,-0.848497927188873,-0.40056374669075,-0.455135881900787,-0.784162044525146,-0.421830832958221,-0.509460747241974,-0.752108812332153,-0.418069392442703,-0.424709439277649,-0.779556155204773,-0.460341244935989,-0.327247023582458,-0.839480757713318,-0.433799058198929,-0.289742141962051,-0.847111463546753,-0.445479184389114,-0.384380877017975,-0.796516895294189,-0.466703474521637,-0.285812079906464,-0.845027565956116,-0.451929122209549,-0.322963297367096,-0.837257385253906,-0.44124236702919,-0.24256406724453,-0.866478264331818,-0.436323374509811,-0.208470970392227,-0.86791855096817,-0.450840592384338,-0.390803813934326,-0.871931254863739,-0.294971704483032,-0.503058850765228,-0.809176206588745,-0.303588092327118,-0.571988046169281,-0.761744976043701,-0.304260581731796,-0.459038525819778,-0.838505387306213,-0.293585330247879,-0.567108929157257,-0.759629368782043,-0.318356513977051,-0.500746548175812,-0.808407366275787,-0.309403419494629,-0.625668883323669,-0.700969159603119,-0.342316716909409,-0.687208235263824,-0.635122358798981,-0.352653414011002,-0.601439118385315,-0.700692892074585,-0.383797436952591,-0.485111802816391,-0.80257773399353,-0.347182065248489,-0.421661823987961,-0.839091658592224,-0.343695402145386,-0.539333820343018,-0.754201114177704,-0.374565839767456,-0.776629447937012,-0.579961836338043,-0.245949149131775,-0.876124680042267,-0.384203255176544,-0.291193038225174,-0.896438419818878,-0.337328791618347,-0.287414997816086,-0.806490540504456,-0.530552566051483,-0.260935217142105,-0.890813171863556,-0.337817311286926,-0.303860753774643, +-0.881783068180084,-0.382075101137161,-0.276545524597168,-0.927881002426147,-0.126495689153671,-0.350764513015747,-0.932967662811279,-0.0717304721474648,-0.352740973234177,-0.879137456417084,-0.1597059071064,-0.449011474847794,-0.83836442232132,-0.39476865530014,-0.375902622938156,-0.826025724411011,-0.450287759304047,-0.339002162218094,-0.87542450428009,-0.220552772283554,-0.430102795362473,-0.124853745102882,-0.884485423564911,-0.449552029371262,-0.179467275738716,-0.882286787033081,-0.435156732797623,-0.22406679391861,-0.878150343894958,-0.422665387392044,-0.168101340532303,-0.885133743286133,-0.433912813663483,-0.226020038127899,-0.882211565971375,-0.413058817386627,-0.181340605020523,-0.88593053817749,-0.426898956298828,-0.249617785215378,-0.873502850532532,-0.417951703071594,-0.297344386577606,-0.863272547721863,-0.407856673002243,-0.235801711678505,-0.8594930768013,-0.453507661819458,-0.174457892775536,-0.872326374053955,-0.456739634275436,-0.143931090831757,-0.871458411216736,-0.468875378370285,-0.203401684761047,-0.862700641155243,-0.463006913661957,-0.855178952217102,-0.500025808811188,-0.136540144681931,-0.939235925674438,-0.315722644329071,-0.13474078476429,-0.939668893814087,-0.321486353874207,-0.116914033889771,-0.838966846466064,-0.522693812847137,-0.151413425803185,-0.940414845943451,-0.323085129261017,-0.105999857187271,-0.943499863147736,-0.316929668188095,-0.0967663750052452,-0.993063688278198,-0.0151917235925794,-0.116592139005661,-0.995905339717865,-0.0147072244435549,-0.0891989320516586,-0.980130553245544,-0.0215193126350641,-0.197183087468147,-0.932994663715363,-0.313872396945953,-0.176083132624626,-0.929597318172455,-0.330537766218185,-0.163075760006905,-0.97473281621933,-0.0432356856763363,-0.219149723649025,-0.541414856910706,-0.811223745346069,-0.22087550163269,-0.655166029930115,-0.723922312259674,-0.216087952256203,-0.704076170921326,-0.678819060325623,-0.208522111177444,-0.612421870231628,-0.760289967060089,-0.216561496257782,-0.697327315807343,-0.671692490577698,-0.250127524137497,-0.649219274520874,-0.720728754997253,-0.243031620979309, +-0.770945906639099,-0.579672276973724,-0.263861060142517,-0.806822538375854,-0.530684173107147,-0.259637802839279,-0.752752363681793,-0.57764858007431,-0.315730959177017,-0.638329863548279,-0.714254558086395,-0.287011176347733,-0.582442402839661,-0.765855014324188,-0.272446572780609,-0.707965910434723,-0.635213732719421,-0.308687180280685,-0.918017446994781,-0.396506905555725,-0.005144904833287,-0.953187227249146,-0.302249163389206,0.0089217983186245,-0.997883379459381,-0.0525698028504848,0.0382783859968185,-0.991189479827881,-0.106388710439205,0.0788986086845398,-0.998751759529114,-0.0475299060344696,0.0153585551306605,-0.955107569694519,-0.295348733663559,-0.0232099145650864,-0.942454695701599,-0.332592278718948,-0.0340837575495243,-0.999507248401642,-0.0178887881338596,-0.0257962848991156,-0.708865702152252,-0.683971703052521,-0.172314137220383,-0.759885430335999,-0.629348695278168,-0.162771105766296,-0.713285028934479,-0.680647611618042,-0.167162597179413,-0.613968789577484,-0.76757675409317,-0.184033334255219,-0.713233768939972,-0.681277811527252,-0.164797320961952,-0.759590089321136,-0.628357827663422,-0.16789673268795,-0.85170841217041,-0.494490057229996,-0.173413977026939,-0.838879108428955,-0.525303184986115,-0.142613127827644,-0.232943892478943,-0.896212756633759,-0.377544432878494,-0.292494803667068,-0.886152803897858,-0.359416246414185,-0.227899476885796,-0.897860467433929,-0.376707375049591,-0.170379355549812,-0.901282489299774,-0.398322403430939,-0.228815272450447,-0.912093937397003,-0.340188592672348,-0.298703491687775,-0.900314688682556,-0.316559255123138,-0.370076984167099,-0.880752623081207,-0.2954962849617,-0.299421608448029,-0.900352597236633,-0.315771698951721,-0.369717597961426,-0.879560530185699,-0.299469739198685,-0.29912257194519,-0.901253163814545,-0.313477873802185,-0.389037311077118,-0.870369434356689,-0.301839292049408,-0.459678769111633,-0.839217364788055,-0.290533393621445,-0.37685215473175,-0.902478158473969,-0.208604052662849,-0.454167425632477,-0.869235932826996,-0.195348352193832, +-0.543653547763824,-0.819352149963379,-0.181941986083984,-0.472956657409668,-0.86015659570694,-0.190900132060051,-0.544782280921936,-0.813890755176544,-0.201975747942924,-0.454147577285767,-0.864919424057007,-0.213692203164101,-0.543508887290955,-0.814752876758575,-0.201930150389671,-0.613578677177429,-0.765491485595703,-0.193762704730034,-0.53895092010498,-0.807113170623779,-0.241039872169495,-0.453635931015015,-0.855509340763092,-0.249636426568031,-0.372949063777924,-0.890535950660706,-0.260489344596863,-0.467640250921249,-0.847760200500488,-0.250230640172958,-0.843680679798126,-0.534552216529846,0.0495651923120022,-0.871825754642487,-0.483207881450653,0.0801887512207031,-0.933405816555023,-0.242003947496414,0.264929443597794,-0.907387554645538,-0.324923723936081,0.266594111919403,-0.963612675666809,-0.194086015224457,0.183797240257263,-0.893124222755432,-0.449781715869904,0.00505212461575866,-0.913753151893616,-0.405618041753769,0.0230049230158329,-0.976976633071899,-0.140624538064003,0.16044183075428,-0.911260604858398,-0.410131007432938,0.0373719967901707,-0.884687542915344,-0.46466451883316,0.0376141257584095,-0.772840678691864,-0.631534934043884,-0.0622973069548607,-0.83132404088974,-0.555110156536102,-0.0274416599422693,-0.568623900413513,-0.81797593832016,-0.0870763435959816,-0.643824100494385,-0.761962175369263,-0.0700291469693184,-0.765658318996429,-0.642563939094543,-0.0296469144523144,-0.701375305652618,-0.711982667446136,-0.0339599698781967,-0.776749134063721,-0.624427795410156,-0.0821626856923103,-0.646620988845825,-0.757925689220428,-0.0861974805593491,-0.710910677909851,-0.694513738155365,-0.110709346830845,-0.838191449642181,-0.532868683338165,-0.116129495203495,-0.71104621887207,-0.694024980068207,-0.11288296431303,-0.653424441814423,-0.745569467544556,-0.131006583571434,-0.54252153635025,-0.823673605918884,-0.165021672844887,-0.61496913433075,-0.775988459587097,-0.140195846557617,-0.569544613361359,-0.820729076862335,0.044974897056818,-0.675694525241852,-0.718194663524628,0.166232913732529,-0.585532307624817,-0.807028830051422,0.0765264555811882, +-0.482187658548355,-0.875894904136658,-0.0174127984791994,-0.507698655128479,-0.851324558258057,0.132244557142258,-0.663347065448761,-0.726531744003296,0.179226636886597,-0.803119599819183,-0.517279207706451,0.295670598745346,-0.680142879486084,-0.690516531467438,0.246155425906181,-0.826873183250427,-0.491068333387375,0.274103254079819,-0.709439754486084,-0.692889451980591,0.128838837146759,-0.786581456661224,-0.596908450126648,0.158081829547882,-0.889847278594971,-0.348543882369995,0.294429928064346,-0.379678308963776,-0.916128396987915,-0.128658950328827,-0.483505696058273,-0.871599555015564,-0.0808485075831413,-0.409471720457077,-0.905626177787781,-0.11033670604229,-0.306107670068741,-0.938539743423462,-0.159503191709518,-0.387060880661011,-0.919270396232605,-0.0715950131416321,-0.464150667190552,-0.884966790676117,-0.037389550358057,-0.57477879524231,-0.817476749420166,0.0368961654603481,-0.482808291912079,-0.875538170337677,-0.0181379597634077,-0.605562388896942,-0.795696377754211,-0.012703481130302,-0.477274805307388,-0.876227676868439,-0.0665871724486351,-0.557628273963928,-0.828563094139099,-0.0503382794559002,-0.686829388141632,-0.726813912391663,0.00263287895359099,-0.234360069036484,-0.926871120929718,-0.293232381343842,-0.314297586679459,-0.913261115550995,-0.259173929691315,-0.256131112575531,-0.923386931419373,-0.285925567150116,-0.178903922438622,-0.928558588027954,-0.325226545333862,-0.241758763790131,-0.938584327697754,-0.246195465326309,-0.303815424442291,-0.928885221481323,-0.21182219684124,-0.393018007278442,-0.903484046459198,-0.171036243438721,-0.325354069471359,-0.923588514328003,-0.202802732586861,-0.398403763771057,-0.897560775279999,-0.188836604356766,-0.305918395519257,-0.926031827926636,-0.221085920929909,-0.375531375408173,-0.905731558799744,-0.196536645293236,-0.468901395797729,-0.867168128490448,-0.167782470583916,-0.118519969284534,-0.896113455295563,-0.427707523107529,-0.177587032318115,-0.886936366558075,-0.426388055086136,-0.132056638598442,-0.888795793056488,-0.438865929841995,-0.0710806325078011,-0.892260789871216,-0.445890486240387, +-0.119096100330353,-0.914123356342316,-0.387549728155136,-0.171698436141014,-0.914120137691498,-0.367293119430542,-0.243897661566734,-0.901436686515808,-0.357667475938797,-0.19262982904911,-0.908128142356873,-0.371748924255371,-0.241454541683197,-0.908697128295898,-0.34054246544838,-0.171891212463379,-0.913339018821716,-0.36914125084877,-0.228760778903961,-0.911110818386078,-0.342849165201187,-0.299482524394989,-0.899353682994843,-0.318548589944839,-0.390587538480759,-0.917288780212402,-0.0776059329509735,-0.306952834129333,-0.942422389984131,-0.132740184664726,-0.230058789253235,-0.955237090587616,-0.185997366905212,-0.29686439037323,-0.9447261095047,-0.139155298471451,-0.225058048963547,-0.957865297794342,-0.178446099162102,-0.317196309566498,-0.936954021453857,-0.146641477942467,-0.312185525894165,-0.946187913417816,-0.0852566212415695,-0.185112476348877,-0.964317858219147,-0.189273357391357,-0.130302086472511,-0.92444920539856,-0.358350336551666,-0.203902274370193,-0.931050181388855,-0.302604377269745,-0.173170283436775,-0.92751544713974,-0.331250876188278,-0.0938584953546524,-0.911201119422913,-0.401127547025681,-0.148595467209816,-0.942501187324524,-0.299350917339325,-0.186339393258095,-0.944407641887665,-0.270872414112091,-0.254573255777359,-0.940936803817749,-0.223227396607399,-0.229269489645958,-0.946340501308441,-0.227761194109917,-0.25699108839035,-0.939395189285278,-0.226919040083885,-0.190545693039894,-0.94135582447052,-0.278463244438171,-0.23821185529232,-0.941973626613617,-0.236518308520317,-0.317939400672913,-0.92969411611557,-0.185966104269028,-0.311223655939102,-0.939826309680939,0.14094802737236,-0.372148841619492,-0.92815089225769,-0.00641192635521293,-0.334866642951965,-0.911369323730469,0.239312127232552,-0.203530952334404,-0.905471503734589,0.372420102357864,-0.444052696228027,-0.878931224346161,0.174061268568039,-0.376409441232681,-0.926412999629974,-0.00865304842591286,-0.326211750507355,-0.940219402313232,-0.0978446081280708,-0.419616669416428,-0.90615326166153,0.052990909665823,-0.264750152826309,-0.963347434997559,-0.0432318188250065, +-0.257754355669022,-0.964809775352478,0.0520074628293514,-0.201580658555031,-0.969821095466614,-0.137157812714577,-0.185491532087326,-0.964180052280426,-0.189604192972183,-0.0388029254972935,-0.866544127464294,-0.497589856386185,-0.101299345493317,-0.869389116764069,-0.483633279800415,-0.0676130279898643,-0.861757636070251,-0.502794682979584,-0.00620139855891466,-0.850931584835052,-0.525240063667297,-0.0433463342487812,-0.882893562316895,-0.46756836771965,-0.0808182209730148,-0.895665645599365,-0.437323331832886,-0.155596196651459,-0.897941172122955,-0.411693513393402,-0.116126157343388,-0.893740773200989,-0.433292269706726,-0.150246649980545,-0.903920829296112,-0.400441139936447,-0.0752901583909988,-0.902205944061279,-0.424683153629303,-0.121825009584427,-0.909115731716156,-0.398330867290497,-0.195598587393761,-0.903261244297028,-0.381916642189026,-0.177585572004318,-0.924619197845459,-0.336961269378662,-0.135241463780403,-0.917569041252136,-0.373867362737656,-0.0679610446095467,-0.894254088401794,-0.442369729280472,-0.0956462398171425,-0.909865736961365,-0.403727799654007,-0.0682608485221863,-0.894088268280029,-0.442658841609955,-0.136068984866142,-0.917117118835449,-0.374675363302231,-0.151692077517509,-0.931432723999023,-0.330790817737579,-0.0708245187997818,-0.892055451869965,-0.446341872215271,-0.106750749051571,-0.889533519744873,-0.444223403930664,-0.181174382567406,-0.933038413524628,-0.310829877853394,-0.171438187360764,-0.949791133403778,-0.261736035346985,-0.153224244713783,-0.896950423717499,-0.414731651544571,-0.183893114328384,-0.947567343711853,-0.261341780424118,-0.146358206868172,-0.943156659603119,-0.29838702082634,-0.214210510253906,-0.966295719146729,-0.142781138420105,-0.19241090118885,-0.978919863700867,-0.0685126483440399,-0.209982186555862,-0.967499256134033,-0.140899583697319,-0.166800335049629,-0.937391519546509,-0.305736660957336,-0.157469213008881,-0.929088711738586,-0.334660738706589,-0.218870773911476,-0.950927317142487,-0.218707025051117,-0.00653192820027471,-0.818463146686554,-0.574521839618683, +-0.0653076395392418,-0.837265133857727,-0.542883157730103,-0.0607893876731396,-0.834137618541718,-0.548196196556091,-0.00927961338311434,-0.80298262834549,-0.595930218696594,-0.0394878014922142,-0.842972755432129,-0.536505162715912,-0.0369842760264874,-0.855217695236206,-0.516947627067566,-0.100160285830498,-0.875360786914825,-0.472981363534927,-0.101682148873806,-0.87983912229538,-0.464267015457153,-0.0937671810388565,-0.87928569316864,-0.466973692178726,-0.0296260099858046,-0.859623789787292,-0.510067880153656,-0.0507335923612118,-0.876681089401245,-0.478389382362366,-0.124019384384155,-0.887114226818085,-0.444575786590576,-0.120427198708057,-0.858901739120483,-0.497780203819275,-0.0795028582215309,-0.860175788402557,-0.503762722015381,-0.0492480471730232,-0.865073978900909,-0.499221116304398,-0.0928319543600082,-0.866499722003937,-0.490469694137573,-0.0500009246170521,-0.856197655200958,-0.514223158359528,-0.0803989619016647,-0.850244581699371,-0.520211696624756,-0.0438221320509911,-0.846246242523193,-0.530986785888672,-0.0106738517060876,-0.84883987903595,-0.528542280197144,-0.035086277872324,-0.870023846626282,-0.491759568452835,-0.0779546201229095,-0.875918030738831,-0.476120442152023,-0.122170940041542,-0.869134068489075,-0.479249656200409,-0.0813078358769417,-0.867768347263336,-0.490272521972656,0.0126407165080309,-0.816279292106628,-0.577519118785858,-0.0238004960119724,-0.814675807952881,-0.579428017139435,-0.00110288849100471,-0.801710665225983,-0.597711324691772,0.0355586856603622,-0.798222482204437,-0.601312339305878,0.0202601402997971,-0.822812378406525,-0.567951798439026,-0.0075236507691443,-0.840283095836639,-0.54209566116333,-0.0561888962984085,-0.84118378162384,-0.537822067737579,-0.0280689299106598,-0.830352663993835,-0.556530833244324,-0.0488089844584465,-0.852238059043884,-0.520872354507446,-0.00106212461832911,-0.849902391433716,-0.526939213275909,-0.0382294356822968,-0.861710906028748,-0.505957365036011,-0.084852010011673,-0.858605682849884,-0.505565464496613,-0.0647482648491859,-0.830860793590546,-0.552700638771057, +-0.0287757776677608,-0.827922761440277,-0.560103416442871,-0.0053689694032073,-0.833262622356415,-0.552851319313049,-0.0457721762359142,-0.838488280773163,-0.54299384355545,-0.00625045085325837,-0.82261049747467,-0.568570971488953,-0.0295485220849514,-0.817182958126068,-0.575620591640472,0.00289516570046544,-0.810816764831543,-0.585292935371399,0.0299518760293722,-0.81285172700882,-0.581700205802917,0.00863938592374325,-0.828063070774078,-0.560568392276764,-0.0280744191259146,-0.837298572063446,-0.546024858951569,-0.0519578941166401,-0.83092588186264,-0.553951799869537,-0.0189139768481255,-0.824716448783875,-0.565230071544647,0.0261150021106005,-0.764213502407074,-0.64443439245224,-0.0111589804291725,-0.771187484264374,-0.636510252952576,-0.0149286715313792,-0.762303650379181,-0.647047340869904,0.0186675228178501,-0.748723745346069,-0.662619352340698,0.00687250262126327,-0.771543443202972,-0.636139571666718,0.0123516218736768,-0.787107467651367,-0.616692245006561,-0.0348236635327339,-0.79973304271698,-0.599344968795776,-0.0336917638778687,-0.792689800262451,-0.608693480491638,-0.0220379400998354,-0.808377802371979,-0.588251352310181,0.0232576541602612,-0.794175148010254,-0.607243657112122,0.0103736082091928,-0.813225328922272,-0.581856667995453,-0.0385261699557304,-0.819940984249115,-0.571150362491608,0.0495589673519135,-0.777091860771179,-0.627433121204376,0.0292787682265043,-0.794395804405212,-0.606694340705872,-0.00150070816744119,-0.793106615543365,-0.609080970287323,0.018124595284462,-0.780502915382385,-0.624889373779297,0.00538410199806094,-0.804560601711273,-0.593846142292023,0.0355773158371449,-0.804540038108826,-0.59283185005188,0.00532509665936232,-0.818204522132874,-0.574902594089508,-0.0223229788243771,-0.814220726490021,-0.580126106739044,-0.00078155257506296,-0.799381613731384,-0.600823223590851,0.025598481297493,-0.788352906703949,-0.614690542221069,0.0561564564704895,-0.788141906261444,-0.612926423549652,0.0267919097095728,-0.803579092025757,-0.594594657421112,-0.023018978536129,-0.819572567939758,-0.572512924671173, +0.016285004094243,-0.816314458847046,-0.57737809419632,0.0353885069489479,-0.819665133953094,-0.571748852729797,-0.0088792834430933,-0.825578391551971,-0.564217627048492,0.0340438932180405,-0.809444546699524,-0.586208581924438,0.0150485783815384,-0.803667187690735,-0.594888806343079,0.0514018759131432,-0.794618964195251,-0.604928553104401,0.0775756537914276,-0.795724213123322,-0.600670516490936,0.053902480751276,-0.801519393920898,-0.595534384250641,0.0159662440419197,-0.813083052635193,-0.581928730010986,-0.00744533305987716,-0.807650506496429,-0.589614510536194,0.0256295911967754,-0.800120711326599,-0.599291265010834,0.095113031566143,-0.747127532958984,-0.657840371131897,0.0748907178640366,-0.765405356884003,-0.639176189899445,0.043087612837553,-0.766931414604187,-0.640280902385712,0.0631958693265915,-0.753929734230042,-0.653908431529999,0.0493117235600948,-0.777152061462402,-0.627377867698669,0.0809843316674232,-0.77486115694046,-0.626922428607941,0.0501780137419701,-0.79120796918869,-0.609485149383545,0.0217619314789772,-0.788428902626038,-0.614740967750549,0.0471931360661983,-0.782796740531921,-0.620485365390778,0.0780607908964157,-0.770346879959106,-0.632828712463379,0.110093720257282,-0.766207993030548,-0.633091390132904,0.0732962116599083,-0.785313606262207,-0.614744067192078,0.0822595283389091,-0.773833990097046,-0.628024280071259,0.108543999493122,-0.761975646018982,-0.638444483280182,0.144510999321938,-0.742663741111755,-0.653886139392853,0.0963408946990967,-0.775354146957397,-0.62413489818573,0.134074375033379,-0.734276294708252,-0.665479063987732,0.104199647903442,-0.756628155708313,-0.64548933506012,0.109133884310722,-0.764858901500702,-0.63488632440567,0.135403230786324,-0.743476033210754,-0.654911875724792,0.114181071519852,-0.771911978721619,-0.625391602516174,0.109735749661922,-0.763431906700134,-0.636498093605042,0.0697647929191589,-0.783976197242737,-0.61685836315155,0.0764843672513962,-0.79308819770813,-0.604285776615143,0.0791260972619057,-0.698581635951996,-0.71114182472229,0.082952693104744,-0.713782072067261,-0.695437967777252, +0.0518851168453693,-0.723381340503693,-0.688496589660645,0.0511067882180214,-0.713222861289978,-0.699071705341339,0.0642980933189392,-0.731829702854156,-0.678447544574738,0.0942747294902802,-0.721334517002106,-0.686140477657318,0.0866272896528244,-0.73859304189682,-0.668562650680542,0.054177962243557,-0.744542896747589,-0.665372490882874,0.0829840078949928,-0.734877109527588,-0.673104345798492,0.0941333770751953,-0.721241354942322,-0.686257839202881,0.125888228416443,-0.70826268196106,-0.694633781909943,0.117889821529388,-0.727106034755707,-0.676327407360077,0.144795909523964,-0.679428935050964,-0.719312489032745,0.142835482954979,-0.700677037239075,-0.699034869670868,0.11886191368103,-0.70381236076355,-0.700371265411377,0.120220668613911,-0.691946506500244,-0.711868703365326,0.129296258091927,-0.710398137569427,-0.69182151556015,0.15276774764061,-0.706214547157288,-0.691319704055786,0.133824571967125,-0.734073162078857,-0.665753483772278,0.11833481490612,-0.727529883384705,-0.675793707370758,0.133157461881638,-0.733529984951019,-0.666485369205475,0.15501756966114,-0.707452654838562,-0.689550876617432,0.152855142951012,-0.721235632896423,-0.675614178180695,0.0941895022988319,-0.773936808109283,-0.626218974590302,0.103526063263416,-0.767143785953522,-0.633066356182098,0.154597297310829,-0.75893247127533,-0.632551372051239,0.241420894861221,-0.698114097118378,-0.674056947231293,0.184965059161186,-0.710076034069061,-0.67939680814743,0.1694166213274,-0.686368823051453,-0.707245409488678,0.126195460557938,-0.749746084213257,-0.649581015110016,0.146239578723907,-0.718137145042419,-0.680362522602081,0.176921218633652,-0.675897777080536,-0.715444684028625,0.152306839823723,-0.720980703830719,-0.676009953022003,0.162674829363823,-0.761391401290894,-0.627550840377808,0.134672656655312,-0.839359879493713,-0.526629149913788,0.129501312971115,-0.796203196048737,-0.591007471084595,0.19586256146431,-0.626952588558197,-0.754034698009491,0.189559265971184,-0.640540242195129,-0.744160950183868,0.187035426497459,-0.646797120571136,-0.739372193813324, +0.195826664566994,-0.631734907627106,-0.750041961669922,0.18736320734024,-0.646824955940247,-0.739264845848083,0.189624279737473,-0.64054399728775,-0.744141101837158,0.170733422040939,-0.686621248722076,-0.706683337688446,0.171299114823341,-0.674382388591766,-0.718237519264221,0.205233156681061,-0.692740678787231,-0.691367924213409,0.209373772144318,-0.641554713249207,-0.737949967384338,0.222553268074989,-0.654047071933746,-0.722974717617035,0.215701207518578,-0.713749349117279,-0.66635936498642,0.0909433588385582,-0.657024323940277,-0.748363852500916,0.108498148620129,-0.664489448070526,-0.739379405975342,0.0886043906211853,-0.676644325256348,-0.730959594249725,0.0797344967722893,-0.671791672706604,-0.736436247825623,0.100957237184048,-0.678838789463043,-0.727313935756683,0.120926886796951,-0.666383266448975,-0.735737681388855,0.13479508459568,-0.676026701927185,-0.724443376064301,0.109761118888855,-0.688009977340698,-0.717352688312531,0.144264116883278,-0.679250299930573,-0.719588100910187,0.142332792282104,-0.669383704662323,-0.729154884815216,0.163334220647812,-0.644582033157349,-0.746884226799011,0.164279580116272,-0.672453582286835,-0.721677482128143,0.223274201154709,-0.703258037567139,-0.674964249134064,0.206047385931015,-0.651945352554321,-0.729734003543854,0.206525862216949,-0.631934583187103,-0.746997833251953,0.211296483874321,-0.663317501544952,-0.717888355255127,0.201018705964088,-0.633481800556183,-0.747189581394196,0.202452331781387,-0.652599275112152,-0.73015558719635,0.194339066743851,-0.627049207687378,-0.754348635673523,0.200275987386703,-0.631282448768616,-0.749247670173645,0.230190277099609,-0.624362468719482,-0.746447622776031,0.246212273836136,-0.643999218940735,-0.724323511123657,0.228909865021706,-0.649360537528992,-0.725211143493652,0.210952490568161,-0.631555497646332,-0.746080875396729,0.0292557943612337,-0.728372633457184,-0.684556305408478,0.03651038184762,-0.742502927780151,-0.668847143650055,0.00388269312679768,-0.748947560787201,-0.662617862224579,-0.000622331164777279,-0.740538120269775,-0.672014057636261, +0.0170228574424982,-0.758065819740295,-0.651955902576447,0.0484192408621311,-0.750522196292877,-0.659069061279297,0.0411829240620136,-0.768517374992371,-0.63850212097168,0.00881695002317429,-0.770677089691162,-0.637164831161499,0.0303139854222536,-0.757103502750397,-0.652591228485107,0.0379915647208691,-0.743512094020844,-0.667642414569855,0.0697554424405098,-0.735472857952118,-0.673953890800476,0.063487783074379,-0.754230201244354,-0.653533697128296,0.0166957601904869,-0.688538014888763,-0.725008130073547,0.0371553413569927,-0.682097017765045,-0.730317115783691,0.013755171559751,-0.699847161769867,-0.714160263538361,0.00188798073213547,-0.705780863761902,-0.708427727222443,0.0281565859913826,-0.702984392642975,-0.710647702217102,0.0513887107372284,-0.685108184814453,-0.726626455783844,0.0658954754471779,-0.693136155605316,-0.717788338661194,0.0372710004448891,-0.707368612289429,-0.705861568450928,0.0675804316997528,-0.693838834762573,-0.716952204704285,0.0611884407699108,-0.687092959880829,-0.72398841381073,0.0818710923194885,-0.675400674343109,-0.732892215251923,0.096517376601696,-0.682882189750671,-0.724124550819397,0.317883342504501,-0.831937849521637,-0.454785227775574,0.266853958368301,-0.762574553489685,-0.589295327663422,0.207368239760399,-0.724653124809265,-0.657172858715057,0.248351454734802,-0.804487824440002,-0.539556205272675,0.228326693177223,-0.712060511112213,-0.663955390453339,0.262699663639069,-0.764239251613617,-0.589005351066589,0.230529189109802,-0.701265215873718,-0.674598693847656,0.212087094783783,-0.662995636463165,-0.71795266866684,0.291778743267059,-0.682681620121002,-0.669933676719666,0.314159363508224,-0.742365717887878,-0.591774523258209,0.307825267314911,-0.765079736709595,-0.565593957901001,0.28398135304451,-0.694832980632782,-0.660728275775909,0.11813809722662,-0.654082655906677,-0.747140765190125,0.111282929778099,-0.646108746528625,-0.755089163780212,0.107718251645565,-0.656644463539124,-0.746468245983124,0.133710637688637,-0.692289412021637,-0.709124088287354,0.0510537549853325,-0.680570602416992,-0.730901658535004, +0.0498959459364414,-0.661180973052979,-0.748565375804901,0.0447022430598736,-0.674395024776459,-0.737016379833221,0.0338840186595917,-0.676941215991974,-0.735256731510162,0.0563763752579689,-0.671492993831635,-0.738863229751587,0.065545454621315,-0.6575967669487,-0.750513434410095,0.079656720161438,-0.65739917755127,-0.749320447444916,0.0664339140057564,-0.672137677669525,-0.737439811229706,0.0301251299679279,-0.685990154743195,-0.72698700428009,0.0636493638157845,-0.724005103111267,-0.686851799488068,0.0292644742876291,-0.689021050930023,-0.72415018081665,0.0291060749441385,-0.679102778434753,-0.733465909957886,0.103032134473324,-0.658730685710907,-0.745290696620941,0.118929892778397,-0.687229990959167,-0.716638267040253,0.17027959227562,-0.745616316795349,-0.644252419471741,0.130212560296059,-0.693475127220154,-0.708616316318512,0.216169416904449,-0.719431698322296,-0.660067439079285,0.10952440649271,-0.693774700164795,-0.711815357208252,0.146789118647575,-0.680447518825531,-0.717944324016571,0.344425946474075,-0.722592234611511,-0.599359035491943,0.400234282016754,-0.870059490203857,-0.287765592336655,0.532431185245514,-0.792274713516235,-0.298023521900177,0.329591870307922,-0.826098263263702,-0.457089483737946,0.125548630952835,-0.882599592208862,-0.453051328659058,0.375690370798111,-0.801368594169617,-0.465473294258118,0.474336057901382,-0.833414852619171,-0.28359317779541,0.512116968631744,-0.816985249519348,-0.265087306499481,0.443767607212067,-0.792071938514709,-0.419156789779663,-0.0526868179440498,-0.780527353286743,-0.622897386550903,-0.0927205979824066,-0.768164277076721,-0.633503377437592,-0.0839597210288048,-0.751713573932648,-0.654123425483704,-0.0526960529386997,-0.768213331699371,-0.638021528720856,-0.0243695732206106,-0.725620806217194,-0.68766313791275,-0.0240393206477165,-0.722938358783722,-0.690494358539581,-0.0248874481767416,-0.724592089653015,-0.688728451728821,-0.0402133017778397,-0.708075523376465,-0.704990744590759,-0.0440146662294865,-0.730721414089203,-0.681255400180817,-0.0230209808796644,-0.711137354373932,-0.702675938606262, +0.00196158862672746,-0.688546240329742,-0.725189805030823,-0.024510819464922,-0.705915689468384,-0.707871556282043,0.0185351483523846,-0.688526391983032,-0.724974274635315,0.0043469974771142,-0.704323649406433,-0.709865748882294,0.0162741057574749,-0.681037783622742,-0.732067346572876,0.037199605256319,-0.672477722167969,-0.739181995391846,-0.00732896104454994,-0.686097264289856,-0.727472901344299,-0.0103959469124675,-0.708068430423737,-0.706067323684692,-0.0162058752030134,-0.721748352050781,-0.691965818405151,-0.0161473080515862,-0.698523283004761,-0.715405166149139,-0.030390277504921,-0.732471346855164,-0.680119216442108,-0.00388511526398361,-0.716353237628937,-0.697726964950562,0.0157176572829485,-0.722601532936096,-0.691086113452911,-0.0162170343101025,-0.733635067939758,-0.679350197315216,0.00765121914446354,-0.719074726104736,-0.694890677928925,-0.00407168176025152,-0.716310858726501,-0.697769522666931,0.0197146050632,-0.701164722442627,-0.712726712226868,0.0369029268622398,-0.707210302352905,-0.706039488315582,0.00528960535302758,-0.697928309440613,-0.71614807844162,-0.0203675739467144,-0.712499856948853,-0.701376616954803,-0.0349174402654171,-0.721779227256775,-0.691242039203644,-0.0177214872092009,-0.705928087234497,-0.708061814308167,-0.100735165178776,-0.74455988407135,-0.659911274909973,-0.0717144683003426,-0.74821799993515,-0.659565687179565,-0.0637634173035622,-0.780538320541382,-0.621847450733185,-0.0872045457363129,-0.78836590051651,-0.608994722366333,-0.0961852669715881,-0.798652827739716,-0.594055652618408,-0.105058126151562,-0.756122410297394,-0.645942449569702,-0.118993729352951,-0.775527536869049,-0.619998037815094,-0.10163651406765,-0.817427396774292,-0.566994249820709,-0.0742300748825073,-0.766110241413116,-0.638408184051514,-0.102567732334137,-0.755566477775574,-0.646992385387421,-0.0911258459091187,-0.720439374446869,-0.687504947185516,-0.0693451687693596,-0.740475714206696,-0.668496072292328,-0.0667865946888924,-0.784566402435303,-0.616437435150146,-0.0292094256728888,-0.75834858417511,-0.651194393634796, +-0.00449138879776001,-0.766792476177216,-0.641879558563232,-0.0519024059176445,-0.78455662727356,-0.617881178855896,-0.0277306009083986,-0.75663435459137,-0.65324991941452,-0.0377685911953449,-0.756280303001404,-0.653156816959381,-0.0123726492747664,-0.73669970035553,-0.676106929779053,0.00484288576990366,-0.742896974086761,-0.669388353824615,-0.0232818778604269,-0.734171211719513,-0.678565084934235,-0.0591544024646282,-0.750839591026306,-0.657830238342285,-0.0784709677100182,-0.76349800825119,-0.641025066375732,-0.0549627058207989,-0.740841925144196,-0.669426918029785,-0.149972602725029,-0.855638384819031,-0.495369970798492,-0.173012271523476,-0.804040014743805,-0.568846583366394,-0.134323358535767,-0.82700651884079,-0.545909941196442,-0.109011024236679,-0.863473057746887,-0.492474108934402,-0.133625730872154,-0.826909303665161,-0.546228170394897,-0.122725889086723,-0.796725511550903,-0.591749012470245,-0.0978190079331398,-0.76249372959137,-0.63955819606781,-0.128377467393875,-0.792345523834229,-0.596412360668182,-0.106975182890892,-0.761917352676392,-0.638778746128082,-0.114185720682144,-0.795244216918945,-0.595439732074738,-0.101114228367805,-0.771985113620758,-0.627546668052673,-0.0799940600991249,-0.740105032920837,-0.6677166223526,-0.131025955080986,-0.882827043533325,-0.451052755117416,-0.074401818215847,-0.834139466285706,-0.546512305736542,-0.0441380441188812,-0.841092944145203,-0.539086699485779,-0.117634125053883,-0.873008191585541,-0.473306387662888,-0.077805258333683,-0.826666355133057,-0.557287156581879,-0.0890439301729202,-0.830263257026672,-0.550212800502777,-0.0432426445186138,-0.790548741817474,-0.610870361328125,-0.017549566924572,-0.799573957920074,-0.60031121969223,-0.0574383474886417,-0.787001371383667,-0.614271700382233,-0.111719220876694,-0.823849380016327,-0.555689513683319,-0.124325580894947,-0.84088122844696,-0.526746511459351,-0.0982137992978096,-0.794748723506927,-0.598939538002014,-0.192421555519104,-0.920553922653198,-0.339932978153229,-0.226450473070145,-0.873511552810669,-0.430926650762558, +-0.168082445859909,-0.921029150485992,-0.351359665393829,-0.125510334968567,-0.944380223751068,-0.303962618112564,-0.171514928340912,-0.92106306552887,-0.349607616662979,-0.182219728827477,-0.872163236141205,-0.454012364149094,-0.143832430243492,-0.838819265365601,-0.525066137313843,-0.179104968905449,-0.893074512481689,-0.412721812725067,-0.151026666164398,-0.837975084781647,-0.524393737316132,-0.143100261688232,-0.869197010993958,-0.473306357860565,-0.148062944412231,-0.828821122646332,-0.539567351341248,-0.126214668154716,-0.792542576789856,-0.596612215042114,-0.148722395300865,-0.981057405471802,-0.124128676950932,-0.17093700170517,-0.965475976467133,-0.196562200784683,-0.0918680280447006,-0.995249152183533,-0.0322384536266327,-0.042047206312418,-0.998534381389618,-0.0340745635330677,-0.0940196067094803,-0.995076537132263,-0.0313528068363667,-0.187514975667,-0.96401059627533,-0.188471928238869,-0.189644545316696,-0.946487367153168,-0.261145263910294,-0.169818744063377,-0.983149111270905,-0.0676713883876801,-0.184821918606758,-0.947395205497742,-0.261310666799545,-0.142254650592804,-0.967224419116974,-0.210334852337837,-0.193243816494942,-0.92095935344696,-0.338364988565445,-0.175087139010429,-0.89371782541275,-0.413053154945374,0.0675216168165207,-0.992673099040985,0.100204907357693,0.086971290409565,-0.987559854984283,0.131002008914948,0.193922683596611,-0.928175389766693,0.31762284040451,0.216682448983192,-0.954168677330017,0.206424072384834,0.123816184699535,-0.93088710308075,0.343684166669846,-0.0920276120305061,-0.976452052593231,0.195121005177498,-0.19881446659565,-0.967970132827759,0.153318896889687,-0.0608144290745258,-0.919374108314514,0.388655185699463,-0.14650921523571,-0.976463794708252,0.158283039927483,-0.0440215691924095,-0.982953488826752,0.178506374359131,-0.171908766031265,-0.985112428665161,0.000968411564826965,-0.193681180477142,-0.978666067123413,-0.0685589760541916,-0.132585883140564,-0.930649518966675,-0.341046243906021,-0.100619897246361,-0.93699836730957,-0.334529101848602,-0.0579717867076397,-0.948784351348877,-0.31056010723114, +-0.0783736482262611,-0.947845697402954,-0.308943569660187,-0.0839773714542389,-0.967376708984375,-0.239019468426704,-0.136688649654388,-0.953622579574585,-0.268179476261139,-0.0918857753276825,-0.963483989238739,-0.251507103443146,-0.0547431521117687,-0.97069388628006,-0.234001412987709,-0.0820314437150955,-0.959445714950562,-0.269694000482559,-0.128733709454536,-0.950417041778564,-0.283081740140915,-0.189602419734001,-0.919998705387115,-0.343006432056427,-0.127946063876152,-0.944884419441223,-0.301368892192841,-0.12674206495285,-0.974408030509949,-0.185649022459984,-0.0646981373429298,-0.985739946365356,-0.155341312289238,-0.0384763479232788,-0.988346338272095,-0.147279277443886,-0.0808992981910706,-0.983558356761932,-0.161456778645515,-0.053563304245472,-0.992885231971741,-0.106348924338818,-0.0837649554014206,-0.9892298579216,-0.120032325387001,-0.00216399226337671,-0.997543692588806,-0.0700138509273529,0.00618496537208557,-0.99691516160965,-0.0782431811094284,-0.00692172488197684,-0.998068571090698,-0.0617357566952705,-0.0882910117506981,-0.989825010299683,-0.111584804952145,-0.123274348676205,-0.980773627758026,-0.151282772421837,-0.0236956626176834,-0.998383820056915,-0.0516550987958908,0.0626755133271217,-0.997963726520538,0.0118418391793966,0.0826143473386765,-0.996292889118195,0.0239865630865097,0.195766851305962,-0.977229833602905,0.0818377658724785,0.150077149271965,-0.988061428070068,0.0348059982061386,0.186357662081718,-0.977636635303497,0.0974549502134323,0.0689496994018555,-0.996530175209045,0.0466228760778904,0.103933572769165,-0.992263913154602,0.0678982138633728,0.231155812740326,-0.95344340801239,0.193682119250298,0.0798100456595421,-0.992798030376434,0.0893443450331688,0.0799464285373688,-0.996394097805023,0.0284150037914515,-0.0357638299465179,-0.999295115470886,-0.011408019810915,-0.0525258257985115,-0.998330771923065,-0.0240145903080702,0.689881861209869,-0.614238679409027,0.383111029863358,0.656565129756927,-0.705984950065613,0.26553276181221,0.693069577217102,-0.546608328819275,0.469972431659698, +0.699535310268402,-0.443593710660934,0.560245513916016,0.536086857318878,-0.654716789722443,0.532876074314117,0.504301726818085,-0.778849899768829,0.372924745082855,0.488413959741592,-0.853468537330627,0.181777507066727,0.577389240264893,-0.734866559505463,0.355798810720444,0.425572514533997,-0.879064679145813,0.214786618947983,0.485773891210556,-0.785142719745636,0.38415452837944,0.423269659280777,-0.873924732208252,0.238952651619911,0.322212159633636,-0.940258502960205,0.109969809651375,0.753682494163513,-0.633665859699249,0.174442887306213,0.844661056995392,-0.45079705119133,0.288669288158417,0.873447835445404,-0.384927242994308,0.29819443821907,0.769238948822021,-0.605967879295349,0.2026686668396,0.866786360740662,-0.388772934675217,0.312309294939041,0.838897228240967,-0.454978406429291,0.298740923404694,0.890286922454834,-0.184866011142731,0.416189670562744,0.911715686321259,-0.105300061404705,0.397097527980804,0.833599984645844,-0.24007622897625,0.497467964887619,0.821086049079895,-0.466951012611389,0.32829025387764,0.795132696628571,-0.545265078544617,0.265424191951752,0.817546963691711,-0.343733310699463,0.462022304534912,0.256255924701691,-0.966187238693237,0.0285515356808901,0.346639066934586,-0.935648441314697,0.066359281539917,0.44721132516861,-0.886566758155823,0.11832807213068,0.365272462368011,-0.92883825302124,0.061931986361742,0.441420763731003,-0.887866318225861,0.129773363471031,0.34561613202095,-0.935891449451447,0.0682409554719925,0.490037322044373,-0.85535079240799,0.168042987585068,0.584329783916473,-0.76669716835022,0.265959084033966,0.422730207443237,-0.874036312103271,0.239498853683472,0.31783926486969,-0.940755784511566,0.118138857185841,0.212558448314667,-0.975675821304321,0.0536258146166801,0.315835058689117,-0.941691279411316,0.116042159497738,0.903960347175598,-0.363720685243607,0.224861815571785,0.930228292942047,-0.260315150022507,0.258672297000885,0.917669475078583,-0.33294603228569,0.216863244771957,0.787943303585052,-0.599518537521362,0.140439033508301,0.91661149263382,-0.333168804645538,0.220956638455391, +0.937125444412231,-0.256100237369537,0.237083554267883,0.963070154190063,-0.0169875808060169,0.268714159727097,0.974157154560089,0.00758726196363568,0.225743874907494,0.944873869419098,-0.325510889291763,0.0354421101510525,0.945561289787292,-0.321234166622162,0.0521774999797344,0.999971568584442,0.00556305190548301,-0.00508366851136088,0.997865200042725,-0.0167534258216619,-0.0631221756339073,0.99470442533493,0.0140271484851837,0.101815290749073,0.935837090015411,-0.317520409822464,0.152937263250351,0.929342567920685,-0.329714924097061,0.166163846850395,0.987268388271332,0.0111311329528689,0.158673316240311,0.937034845352173,-0.326394647359848,0.124226167798042,0.943255722522736,-0.320307016372681,0.0875914990901947,0.773312211036682,-0.627847790718079,0.0882923528552055,0.80168741941452,-0.591683745384216,0.0848979353904724,0.466648280620575,-0.880941033363342,0.0786272138357162,0.574749290943146,-0.808484196662903,0.12655670940876,0.557233870029449,-0.824729025363922,0.0965007916092873,0.371627479791641,-0.927471876144409,0.0410979241132736,0.551985740661621,-0.825833320617676,0.115374140441418,0.572230756282806,-0.809283196926117,0.132712796330452,0.735403895378113,-0.643509984016418,0.212311133742332,0.778562307357788,-0.603216767311096,0.173119321465492,0.0598277598619461,-0.997457087039948,-0.0387309528887272,0.068550668656826,-0.997200310230255,-0.0298731606453657,0.132092550396919,-0.990996897220612,-0.0218333471566439,0.108987376093864,-0.99334055185318,-0.0373676903545856,0.126609981060028,-0.991952538490295,0.000350871210685,0.0623898468911648,-0.998024523258209,-0.00738941552117467,0.0670003667473793,-0.997752666473389,0.000715019181370735,0.154112339019775,-0.987762629985809,0.0239679720252752,0.0781789273023605,-0.996541559696198,-0.0281598996371031,0.073156550526619,-0.996223628520966,-0.0467611514031887,0.00801546685397625,-0.998594284057617,-0.0523942597210407,-0.00572318816557527,-0.998864710330963,-0.0472925677895546,-0.0408142060041428,-0.987177014350891,-0.154323786497116,-0.014224405400455,-0.988704681396484,-0.149200320243835, +0.0129547715187073,-0.98975396156311,-0.142194792628288,-0.00492935674265027,-0.989490747451782,-0.144512251019478,0.00558731704950333,-0.994359076023102,-0.105918973684311,-0.0237875916063786,-0.993182957172394,-0.114113621413708,0.0222152546048164,-0.994546711444855,-0.101898424327374,0.0304322876036167,-0.994458019733429,-0.100634396076202,0.0203662645071745,-0.995225369930267,-0.0954560562968254,-0.0245184935629368,-0.993470907211304,-0.111420854926109,-0.0491706542670727,-0.991757810115814,-0.118316017091274,0.0116535574197769,-0.995650768280029,-0.0924336612224579,0.182146340608597,-0.983005821704865,-0.0228547751903534,0.215843752026558,-0.976313352584839,-0.014956115745008,0.336621165275574,-0.94162654876709,0.00506081199273467,0.304711163043976,-0.952363550662994,-0.0124413585290313,0.333112686872482,-0.942579090595245,0.0240963045507669,0.212110981345177,-0.977243542671204,0.00202581658959389,0.260952591896057,-0.965238511562347,0.0147775243967772,0.369771003723145,-0.927920877933502,0.0472462959587574,0.253572195768356,-0.966633319854736,0.0363486036658287,0.209863618016243,-0.97765576839447,0.0121111515909433,0.127636820077896,-0.991813778877258,-0.00378366769291461,0.160516351461411,-0.987010836601257,0.00664580706506968,0.504890620708466,-0.862978219985962,0.018818186596036,0.538546979427338,-0.842469930648804,0.0145440166816115,0.778114259243011,-0.626791477203369,0.0408763587474823,0.761848211288452,-0.647735476493835,0.0051282225176692,0.774090826511383,-0.627785742282867,0.0816606134176254,0.531326949596405,-0.844648361206055,0.0652754083275795,0.562127530574799,-0.823352217674255,0.0781280919909477,0.787375926971436,-0.599773705005646,0.142515331506729,0.56268584728241,-0.823171854019165,0.0759801045060158,0.533613502979279,-0.844234228134155,0.0502514131367207,0.334822803735733,-0.942163288593292,0.0149038834497333,0.378206998109818,-0.925528883934021,0.0188671089708805,0.147987559437752,-0.986146748065948,-0.0749294087290764,0.1629848331213,-0.984064698219299,-0.0710832104086876,0.282800167798996,-0.956609845161438,-0.0701544210314751, +0.268013209104538,-0.960196316242218,-0.0786903649568558,0.282495409250259,-0.958145201206207,-0.046412467956543,0.161214411258698,-0.985728859901428,-0.048462089151144,0.184889316558838,-0.981820404529572,-0.042949166148901,0.306623876094818,-0.951216042041779,-0.0342028364539146,0.185014247894287,-0.981755793094635,-0.0438773557543755,0.161723017692566,-0.98531037569046,-0.0548553876578808,0.0902465209364891,-0.99428516626358,-0.0570334009826183,0.111012414097786,-0.992591738700867,-0.0493748374283314,0.0115084489807487,-0.990767598152161,-0.135082021355629,0.0510732978582382,-0.990437030792236,-0.128164544701576,0.0333248190581799,-0.990836203098297,-0.130893364548683,-0.00617327075451612,-0.990427732467651,-0.137894287705421,0.031067855656147,-0.992972135543823,-0.114198207855225,0.0481651239097118,-0.992833018302917,-0.10937425494194,0.0960443839430809,-0.989746689796448,-0.105721049010754,0.0800232440233231,-0.990596532821655,-0.11097214370966,0.0924213230609894,-0.9928839802742,-0.0750981047749519,0.0430030524730682,-0.996164798736572,-0.0762011259794235,0.0653223320841789,-0.995637059211731,-0.066632017493248,0.113519482314587,-0.991448581218719,-0.0643674284219742,0.475706875324249,-0.878882348537445,-0.035622701048851,0.484372437000275,-0.873869597911835,-0.0416569337248802,0.731619358062744,-0.675363421440125,-0.0928298756480217,0.71412581205368,-0.691310286521912,-0.110065586864948,0.73890495300293,-0.671704053878784,-0.0532273165881634,0.48698627948761,-0.873400807380676,-0.00394317414611578,0.5056032538414,-0.862706303596497,-0.0101701486855745,0.760085046291351,-0.649208605289459,-0.028267415240407,0.505675137042999,-0.862599909305573,-0.0146322129294276,0.485160201787949,-0.873865187168121,-0.0312926769256592,0.281996369361877,-0.959182262420654,-0.0211570244282484,0.305454820394516,-0.951981484889984,-0.0207074694335461,0.895774602890015,-0.409187346696854,-0.173647940158844,0.904056251049042,-0.393663257360458,-0.166467860341072,0.949831783771515,-0.094961404800415,-0.297996610403061,0.933929800987244,-0.133400201797485,-0.331631630659103, +0.975296199321747,-0.0650923773646355,-0.211093634366989,0.921655297279358,-0.376866698265076,-0.0923203825950623,0.933190643787384,-0.34420245885849,-0.103343583643436,0.982723414897919,-0.0415833108127117,-0.180347979068756,0.933949768543243,-0.343633204698563,-0.0982558056712151,0.914733171463013,-0.384413123130798,-0.124458082020283,0.742389917373657,-0.669229090213776,-0.0314562655985355,0.75920432806015,-0.649573445320129,-0.0407811664044857,0.454350590705872,-0.88335919380188,-0.115074440836906,0.453510642051697,-0.882991194725037,-0.12105643004179,0.673991858959198,-0.708405673503876,-0.209514439105988,0.668648779392242,-0.710657477378845,-0.218803256750107,0.692914009094238,-0.701861262321472,-0.165108859539032,0.46496394276619,-0.88246089220047,-0.0712133049964905,0.469352453947067,-0.879656314849854,-0.0768965110182762,0.701672911643982,-0.696406304836273,-0.150577172636986,0.466026395559311,-0.879484355449677,-0.0965750813484192,0.457290381193161,-0.883073031902313,-0.105202503502369,0.260791718959808,-0.962906837463379,-0.069268986582756,0.268343329429626,-0.960710644721985,-0.0709021985530853,0.0729175060987473,-0.983758926391602,-0.164016574621201,0.139110416173935,-0.977111518383026,-0.160939589142799,0.131156921386719,-0.978171110153198,-0.161181181669235,0.0651344433426857,-0.984356164932251,-0.163708835840225,0.131420597434044,-0.980962038040161,-0.142976269125938,0.139072179794312,-0.979875802993774,-0.143186509609222,0.253733098506927,-0.95581316947937,-0.14846171438694,0.24694137275219,-0.957276105880737,-0.150474712252617,0.25707072019577,-0.959719240665436,-0.11337473988533,0.138853207230568,-0.98455685377121,-0.106619715690613,0.149060592055321,-0.983281970024109,-0.104582637548447,0.2666175365448,-0.957722663879395,-0.108085982501507,0.76198536157608,-0.500608265399933,-0.410815984010696,0.756111860275269,-0.506624817848206,-0.414277821779251,0.641940414905548,-0.718770444393158,-0.266986191272736,0.63907390832901,-0.718920469284058,-0.273382425308228,0.596984207630157,-0.728652238845825,-0.335672378540039, +0.704102635383606,-0.532735824584961,-0.469501942396164,0.699428379535675,-0.543733298778534,-0.463847041130066,0.599773108959198,-0.73038637638092,-0.326814919710159,0.721715152263641,-0.532377481460571,-0.442381501197815,0.721138536930084,-0.524802088737488,-0.45226314663887,0.730236709117889,-0.332522004842758,-0.59681111574173,0.728304922580719,-0.346129357814789,-0.591410517692566,0.672017931938171,-0.708965957164764,-0.213913977146149,0.810994684696198,-0.470948249101639,-0.347124338150024,0.802320182323456,-0.477798104286194,-0.357758790254593,0.673578917980194,-0.708916068077087,-0.209115728735924,0.822624087333679,-0.46437069773674,-0.328099876642227,0.827115416526794,-0.461440086364746,-0.320863127708435,0.849038362503052,-0.218669652938843,-0.480954706668854,0.833838582038879,-0.236788555979729,-0.498642534017563,0.886722326278687,-0.183365121483803,-0.424383044242859,0.85860002040863,-0.439574182033539,-0.26378145813942,0.859805047512054,-0.437054485082626,-0.264043390750885,0.899060130119324,-0.168078199028969,-0.404278069734573,0.424004971981049,-0.880984485149384,-0.209967032074928,0.420879662036896,-0.881001949310303,-0.21609228849411,0.609563648700714,-0.726467967033386,-0.317295789718628,0.605124711990356,-0.729212999343872,-0.31948783993721,0.639830410480499,-0.719371795654297,-0.2704097032547,0.44056910276413,-0.882996261119843,-0.161915391683578,0.438383817672729,-0.882832229137421,-0.168602868914604,0.643683850765228,-0.717857480049133,-0.265239089727402,0.432747811079025,-0.882042944431305,-0.186359271407127,0.430529087781906,-0.882327675819397,-0.190112039446831,0.244301274418831,-0.959235787391663,-0.142068803310394,0.247547566890717,-0.957854509353638,-0.145722791552544,0.379258126020432,-0.882992506027222,-0.276563912630081,0.385337054729462,-0.87738162279129,-0.285861968994141,0.539450407028198,-0.748276710510254,-0.386102557182312,0.530054450035095,-0.75977897644043,-0.37653449177742,0.571877479553223,-0.743131101131439,-0.347436815500259,0.405946433544159,-0.881148874759674,-0.2424546033144, +0.406987339258194,-0.878510236740112,-0.250162541866302,0.579865694046021,-0.73414158821106,-0.353259086608887,0.398510426282883,-0.876718640327454,-0.269358247518539,0.393937915563583,-0.879180908203125,-0.268055707216263,0.226365610957146,-0.949843883514404,-0.215766906738281,0.228243619203568,-0.948236405849457,-0.220799848437309,0.609246671199799,-0.612552046775818,-0.503585636615753,0.6072598695755,-0.597430884838104,-0.523747861385345,0.613421559333801,-0.449967384338379,-0.649032711982727,0.620226144790649,-0.468183934688568,-0.629383325576782,0.649321556091309,-0.426490843296051,-0.629672169685364,0.64265638589859,-0.58327579498291,-0.496771812438965,0.644607186317444,-0.567875862121582,-0.511857926845551,0.647759914398193,-0.404422879219055,-0.645638644695282,0.651886403560638,-0.564952075481415,-0.505839228630066,0.647254168987274,-0.581299185752869,-0.493105828762054,0.558042228221893,-0.745589911937714,-0.364258944988251,0.56136828660965,-0.736828565597534,-0.376761823892593,0.26262578368187,-0.919065713882446,-0.293846935033798,0.333072066307068,-0.880773544311523,-0.336602121591568,0.457431375980377,-0.779211580753326,-0.428469270467758,0.420187145471573,-0.822387278079987,-0.38356477022171,0.487042754888535,-0.776744902133942,-0.399320363998413,0.350996613502502,-0.885300874710083,-0.305030792951584,0.359268844127655,-0.878549039363861,-0.314765751361847,0.497609823942184,-0.763632357120514,-0.411400198936462,0.348928511142731,-0.875681161880493,-0.333813399076462,0.338292986154556,-0.882201731204987,-0.327533185482025,0.199779495596886,-0.939272522926331,-0.279025763273239,0.205190509557724,-0.936302602291107,-0.28501632809639,0.510692834854126,-0.702365219593048,-0.49585884809494,0.517404615879059,-0.662356078624725,-0.541827380657196,0.521049737930298,-0.555437326431274,-0.648071527481079,0.532554924488068,-0.597307205200195,-0.59967440366745,0.541890263557434,-0.544269621372223,-0.640410482883453,0.535227119922638,-0.656778156757355,-0.531200885772705,0.5418421626091,-0.636694312095642,-0.548659682273865, +0.539405822753906,-0.516612529754639,-0.664945781230927,0.55023992061615,-0.634003877639771,-0.543392181396484,0.545710623264313,-0.653316676616669,-0.524764001369476,0.473494231700897,-0.778049409389496,-0.412846475839615,0.481736391782761,-0.764856159687042,-0.427697420120239,0.455503463745117,-0.747094929218292,-0.484113544225693,0.46080619096756,-0.73770797252655,-0.493401050567627,0.461273282766342,-0.667635023593903,-0.58437192440033,0.46051150560379,-0.702734291553497,-0.542304217815399,0.458295315504074,-0.668840765953064,-0.585335314273834,0.451762288808823,-0.740116119384766,-0.498135566711426,0.460878789424896,-0.716872692108154,-0.523148417472839,0.448517590761185,-0.636752724647522,-0.627198457717896,0.463728547096252,-0.716120541095734,-0.521658182144165,0.456703126430511,-0.738812208175659,-0.495559006929398,0.365283936262131,-0.851923823356628,-0.375224739313126,0.389520764350891,-0.823836147785187,-0.411786139011383,0.584315061569214,-0.719979345798492,-0.37444069981575,0.567526876926422,-0.739022374153137,-0.36298656463623,0.561357200145721,-0.732424139976501,-0.385270059108734,0.572044491767883,-0.728523552417755,-0.376853734254837,0.528393924236298,-0.745575189590454,-0.406100481748581,0.537578821182251,-0.751485586166382,-0.382463693618774,0.523804128170013,-0.722237050533295,-0.451666742563248,0.509198069572449,-0.713883697986603,-0.480715662240982,0.491849511861801,-0.737002372741699,-0.463585555553436,0.493525117635727,-0.767402291297913,-0.409300357103348,0.511360168457031,-0.73079913854599,-0.452154338359833,0.49807146191597,-0.686609148979187,-0.529615640640259,0.21637374162674,-0.904330134391785,-0.367926031351089,0.193079113960266,-0.92169976234436,-0.336437284946442,0.120287701487541,-0.945260524749756,-0.303337186574936,0.132784202694893,-0.937880754470825,-0.320543318986893,0.0846408009529114,-0.91769677400589,-0.388160526752472,0.164144307374954,-0.908987998962402,-0.38314151763916,0.209544479846954,-0.900679051876068,-0.380615830421448,0.161451488733292,-0.90754222869873,-0.38768607378006, +0.238337114453316,-0.913029372692108,-0.331017702817917,0.19922511279583,-0.924051880836487,-0.326247483491898,0.318765133619308,-0.850966691970825,-0.417426139116287,0.341297000646591,-0.815118491649628,-0.468079268932343,0.0876907855272293,-0.939116656780243,-0.332220405340195,0.0566364005208015,-0.943580210208893,-0.32626485824585,0.0137896789237857,-0.944256722927094,-0.328921109437943,0.0523658730089664,-0.941619992256165,-0.332580268383026,0.0122358212247491,-0.929445505142212,-0.36875656247139,0.0487737245857716,-0.929386615753174,-0.365871131420135,0.0523176789283752,-0.932998836040497,-0.356056183576584,-0.0312028843909502,-0.935274541378021,-0.352544784545898,0.0534209124743938,-0.934685051441193,-0.351440101861954,0.0542805902659893,-0.939489781856537,-0.338249564170837,0.0969250872731209,-0.928081333637238,-0.359542280435562,0.159888312220573,-0.906381368637085,-0.391035228967667,0.710088729858398,-0.647688567638397,-0.276176810264587,0.720624983310699,-0.613845229148865,-0.322325468063354,0.748567759990692,-0.566500127315521,-0.34456342458725,0.716918885707855,-0.642027676105499,-0.271712958812714,0.620310604572296,-0.624018967151642,-0.47519987821579,0.722675561904907,-0.612494587898254,-0.320297569036484,0.620105087757111,-0.575109124183655,-0.533590853214264,0.515742182731628,-0.387423992156982,-0.764141798019409,0.575468063354492,-0.597094357013702,-0.558851361274719,0.581328213214874,-0.684453189373016,-0.439978867769241,0.582070648670197,-0.72330367565155,-0.371517866849899,0.580780744552612,-0.677786469459534,-0.450887352228165,0.973363041877747,-0.170033067464828,-0.153795197606087,0.841227889060974,-0.428050577640533,-0.330315500497818,0.901428043842316,-0.422175228595734,-0.0958937332034111,0.998129308223724,-0.0484099052846432,-0.037341695278883,0.970308244228363,-0.0112487664446235,-0.24161034822464,0.974531888961792,0.0240092296153307,-0.222960114479065,0.969398736953735,0.16460132598877,-0.18213327229023,0.968797504901886,0.097109355032444,-0.228037685155869,0.969355881214142,0.164674073457718,-0.182295382022858, +0.970340013504028,0.0263792965561152,-0.240300387144089,0.958861589431763,0.0868295282125473,-0.270268589258194,0.949730813503265,0.257728338241577,-0.17772875726223,0.989743292331696,0.0832115709781647,-0.116120725870132,0.956067383289337,0.0333544202148914,-0.291243612766266,0.980242967605591,-0.162607908248901,-0.112616248428822,0.999147474765778,-0.0380570515990257,-0.0160004943609238,0.190560400485992,-0.930425584316254,-0.313041478395462,0.104313239455223,-0.947271704673767,-0.302976876497269,0.107584297657013,-0.945630311965942,-0.306934773921967,0.197170004248619,-0.927859842777252,-0.316544055938721,0.10681115090847,-0.942845463752747,-0.315648406744003,0.103353649377823,-0.944303512573242,-0.312424153089523,0.054614681750536,-0.947765827178955,-0.314256548881531,0.0564975664019585,-0.946426808834076,-0.317937970161438,0.0545668788254261,-0.942035436630249,-0.331046372652054,0.101604968309402,-0.938739418983459,-0.329309344291687,0.0886118039488792,-0.941314339637756,-0.325691908597946,0.0524398200213909,-0.943445861339569,-0.327352970838547,0.116894483566284,-0.956953048706055,-0.265662610530853,0.11389534175396,-0.958116590976715,-0.262755513191223,0.0574485175311565,-0.96239185333252,-0.265521258115768,0.0600963197648525,-0.961289882659912,-0.268905907869339,0.0581050664186478,-0.952958643436432,-0.297478765249252,0.111622735857964,-0.949004113674164,-0.294841438531876,0.108888581395149,-0.950218856334686,-0.291937261819839,0.0562799423933029,-0.954128563404083,-0.29406014084816,0.109949953854084,-0.953846335411072,-0.279442697763443,0.112433552742004,-0.952319085597992,-0.283631980419159,0.209396809339523,-0.933144152164459,-0.29222446680069,0.204213082790375,-0.935317695140839,-0.288925260305405,0.0243882071226835,-0.926153779029846,-0.376356869935989,-0.00577105209231377,-0.927794635295868,-0.373046696186066,-0.0318941287696362,-0.924066424369812,-0.380899041891098,-0.0100546721369028,-0.923247396945953,-0.384074449539185,-0.027987502515316,-0.90846461057663,-0.417023628950119,-0.00452494248747826,-0.912898123264313,-0.408162385225296, +-0.041302427649498,-0.915646135807037,-0.399857759475708,-0.0481325015425682,-0.911227583885193,-0.409081488847733,-0.0416486859321594,-0.929295301437378,-0.366982012987137,-0.00606515211984515,-0.931127190589905,-0.364644467830658,0.0122275575995445,-0.929362833499908,-0.368965089321136,-0.03240105509758,-0.92865127325058,-0.369536131620407,0.0260422881692648,-0.929057478904724,-0.369017779827118,0.0245642978698015,-0.930937886238098,-0.36435079574585,-0.000446966994786635,-0.928435683250427,-0.371493101119995,2.25689527724171e-05,-0.926389276981354,-0.376567333936691,0.0012737896759063,-0.923069298267365,-0.384631872177124,0.0254703797399998,-0.925555408000946,-0.377754658460617,0.0242177043110132,-0.927375197410583,-0.37334805727005,-0.01042824331671,-0.92451685667038,-0.380998581647873,0.0229367297142744,-0.936184167861938,-0.350761026144028,0.0239260066300631,-0.934594988822937,-0.354908376932144,0.0544926412403584,-0.935239672660828,-0.349796295166016,0.0521677508950233,-0.936777770519257,-0.346014380455017,-0.0414782613515854,-0.907533705234528,-0.417926281690598,-0.0207668747752905,-0.90705668926239,-0.4204962849617,0.0048483177088201,-0.911315679550171,-0.411679953336716,-0.00711752800270915,-0.91292017698288,-0.408076107501984,0.0031521322671324,-0.916994988918304,-0.398886322975159,-0.0233830958604813,-0.912699460983276,-0.407962143421173,-0.0235055591911077,-0.910107135772705,-0.413705825805664,0.00395450927317142,-0.914768099784851,-0.403960168361664,-0.0189723931252956,-0.900831758975983,-0.433753579854965,-0.0126409325748682,-0.888459265232086,-0.458781242370605,-0.0390995517373085,-0.87028032541275,-0.491002440452576,-0.0489901974797249,-0.88292920589447,-0.466943383216858,-0.0319395922124386,-0.882653951644897,-0.468937069177628,-0.0434739999473095,-0.882171869277954,-0.468916654586792,-0.0668877959251404,-0.878499448299408,-0.473037987947464,-0.0654688775539398,-0.877835512161255,-0.474466681480408,-0.0473135448992252,-0.830862522125244,-0.554462730884552,-0.0308599416166544,-0.841904282569885,-0.538743853569031, +-0.0180505439639091,-0.850462794303894,-0.525725424289703,0.00487134698778391,-0.845256924629211,-0.534338057041168,-0.0370876789093018,-0.909461259841919,-0.41413140296936,-0.0528584569692612,-0.908825755119324,-0.413813680410385,-0.0283122304826975,-0.909808754920959,-0.414060950279236,-0.0473322868347168,-0.907038927078247,-0.418377846479416,0.130514428019524,-0.971770942211151,-0.196538016200066,0.124555848538876,-0.972769796848297,-0.195460975170135,0.0614597946405411,-0.978255212306976,-0.198089808225632,0.0670424997806549,-0.977583169937134,-0.199590787291527,0.0629578232765198,-0.970251381397247,-0.233770430088043,0.123267434537411,-0.965161442756653,-0.230799809098244,0.118875555694103,-0.966166019439697,-0.22889256477356,0.058919508010149,-0.971064567565918,-0.231435358524323,0.119549930095673,-0.969155609607697,-0.215511813759804,0.123754151165485,-0.968071520328522,-0.217996492981911,0.230812549591064,-0.946453869342804,-0.225722685456276,0.227435380220413,-0.947449564933777,-0.224972143769264,0.025886932387948,-0.945598006248474,-0.324306130409241,0.0233064983040094,-0.947340548038483,-0.319378644227982,-0.00671176752075553,-0.944672465324402,-0.32794651389122,-0.00438579870387912,-0.942880094051361,-0.333103448152542,-0.00199844734743237,-0.933264434337616,-0.359184563159943,0.0260368920862675,-0.936039924621582,-0.350929290056229,0.0242591667920351,-0.93790477514267,-0.346043586730957,-0.00318758049979806,-0.935258328914642,-0.35395160317421,0.022332925349474,-0.946747183799744,-0.321202754974365,0.0238409750163555,-0.945221066474915,-0.325559079647064,0.0585202313959599,-0.9458367228508,-0.319324791431427,0.0564750246703625,-0.947315990924835,-0.31528240442276,-0.0619634911417961,-0.803805887699127,-0.591655910015106,-0.0526602752506733,-0.804745852947235,-0.591279327869415,-0.0257648453116417,-0.813342869281769,-0.58121395111084,-0.0735938027501106,-0.804842412471771,-0.588908016681671,-0.0347113944590092,-0.826361477375031,-0.562069237232208,-0.069721981883049,-0.836461305618286,-0.543572664260864, +-0.00533886579796672,-0.863488256931305,-0.504340708255768,0.0168686229735613,-0.851975917816162,-0.523309230804443,-0.0218478236347437,-0.889935791492462,-0.455562233924866,-0.078911229968071,-0.85248064994812,-0.516768574714661,-0.0693123564124107,-0.883928298950195,-0.462457120418549,-0.0263262614607811,-0.913725793361664,-0.405477643013,-0.0286377612501383,-0.85281628370285,-0.521425247192383,-0.0552205592393875,-0.827116429805756,-0.559311330318451,-0.072280265390873,-0.840987741947174,-0.53620457649231,-0.0386183671653271,-0.867621243000031,-0.495723724365234,-0.0550742633640766,-0.823733866214752,-0.564295411109924,-0.0470820553600788,-0.817818701267242,-0.573546767234802,-0.0716289281845093,-0.796951413154602,-0.599781394004822,-0.0938408002257347,-0.792034208774567,-0.603220999240875,-0.067530982196331,-0.793470740318298,-0.604850113391876,-0.0501555390655994,-0.821361839771271,-0.568198144435883,-0.057822972536087,-0.797609508037567,-0.60039609670639,-0.0470111295580864,-0.777764439582825,-0.62679535150528,0.115731440484524,-0.715481817722321,-0.688978910446167,0.0797187760472298,-0.778883159160614,-0.622081935405731,0.230988711118698,-0.748246252536774,-0.62190967798233,0.334153950214386,-0.732322216033936,-0.593334019184113,0.190947413444519,-0.801006138324738,-0.567387402057648,0.0658759474754333,-0.798156559467316,-0.598837554454803,0.0700745731592178,-0.822107017040253,-0.565004050731659,0.153703048825264,-0.813839614391327,-0.560393095016479,0.0816813856363297,-0.804642796516418,-0.588114082813263,0.0697696059942245,-0.792834579944611,-0.605430066585541,-0.00804185308516026,-0.786147594451904,-0.617986381053925,0.0446040779352188,-0.808502376079559,-0.586800158023834,-0.0280704498291016,-0.922833502292633,-0.384175002574921,-0.0242993328720331,-0.912135601043701,-0.409167796373367,-0.0563283711671829,-0.894700884819031,-0.443099796772003,-0.0613768808543682,-0.906217455863953,-0.418333351612091,-0.0552652776241302,-0.893332004547119,-0.445986151695251,-0.023096764460206,-0.909884572029114,-0.414218038320541, +-0.0181887876242399,-0.899183988571167,-0.437192410230637,-0.0484171584248543,-0.882108211517334,-0.468551903963089,-0.0281788408756256,-0.919208467006683,-0.392761766910553,-0.0267299823462963,-0.916600406169891,-0.398909986019135,0.00239435606636107,-0.921689867973328,-0.387920379638672,0.000829024065751582,-0.924073755741119,-0.382213324308395,-0.0494329817593098,-0.885656893253326,-0.461701661348343,-0.0886949747800827,-0.858153581619263,-0.505673468112946,-0.0933204889297485,-0.873403608798981,-0.47797217965126,-0.0549951642751694,-0.898625016212463,-0.435256987810135,-0.0769635736942291,-0.859915256500244,-0.504601418972015,-0.0740458443760872,-0.845102787017822,-0.529451191425323,-0.109665229916573,-0.805709779262543,-0.58206981420517,-0.114739179611206,-0.823728322982788,-0.555253803730011,-0.104659013450146,-0.803121745586395,-0.586550891399384,-0.0663571804761887,-0.837958216667175,-0.541685104370117,-0.0577701665461063,-0.826507449150085,-0.55995374917984,-0.0927551463246346,-0.79143875837326,-0.604169845581055,0.332449078559875,-0.830059289932251,-0.447749108076096,0.395470380783081,-0.829670131206512,-0.394018918275833,0.175027087330818,-0.819896996021271,-0.545100390911102,0.146839246153831,-0.82327538728714,-0.548321008682251,0.214987814426422,-0.770263731479645,-0.600394904613495,0.36771947145462,-0.856388628482819,-0.362465173006058,0.341729670763016,-0.906022965908051,-0.249686643481255,0.217088803648949,-0.827034652233124,-0.518542349338531,0.423523992300034,-0.441355496644974,-0.791095912456512,0.420673757791519,-0.443120747804642,-0.791629672050476,0.419919401407242,-0.456165671348572,-0.784589409828186,0.422876924276352,-0.45463889837265,-0.783886909484863,0.669533133506775,-0.742693901062012,0.0114534720778465,0.627158045768738,-0.771272301673889,-0.108682408928871,0.592361211776733,-0.793365597724915,-0.140282616019249,0.65617448091507,-0.754600644111633,-0.00359406834468246,0.629585087299347,-0.769197940826416,-0.109348848462105,0.552324593067169,-0.789450883865356,-0.267777770757675,0.485754460096359,-0.825809895992279,-0.286497592926025, +0.583837330341339,-0.800293028354645,-0.136620089411736,0.781363666057587,-0.621306538581848,-0.0587272495031357,0.703473031520844,-0.689356684684753,-0.172954365611076,0.748078644275665,-0.655404448509216,-0.104035139083862,0.807864129543304,-0.589365303516388,-0.00202640285715461,0.744753837585449,-0.660206198692322,-0.0973112732172012,0.679761052131653,-0.722369492053986,-0.126914590597153,0.58921480178833,-0.788902997970581,-0.174522191286087,0.670079112052917,-0.728774189949036,-0.14100469648838,0.587515950202942,-0.790936529636383,-0.171010494232178,0.666348338127136,-0.738539457321167,-0.102662049233913,0.58866810798645,-0.791738986968994,-0.163154259324074,0.516696989536285,-0.828094124794006,-0.217449739575386,0.795889794826508,-0.605078756809235,0.020953169092536,0.777427554130554,-0.628392577171326,0.0270037893205881,0.804969787597656,-0.591481804847717,0.0466143079102039,0.814758121967316,-0.57894504070282,0.0314931198954582,0.861191928386688,-0.506845116615295,-0.0381642915308475,0.806212365627289,-0.591611325740814,-0.00420946022495627,0.729412138462067,-0.683904826641083,0.015240864828229,0.80609130859375,-0.591790437698364,0.000943031220231205,0.743649482727051,-0.668558955192566,-0.00381021504290402,0.784545421600342,-0.619763553142548,0.0195355098694563,0.724818348884583,-0.687103271484375,-0.0502734817564487,0.662036180496216,-0.74406898021698,-0.0898302346467972,0.862727165222168,-0.495998531579971,-0.0984244346618652,0.805318534374237,-0.581305623054504,-0.116387493908405,0.834957838058472,-0.534154713153839,-0.13237889111042,0.876061677932739,-0.463109701871872,-0.134332820773125,0.844783365726471,-0.503135323524475,-0.182197406888008,0.824717283248901,-0.535766422748566,-0.181095659732819,0.777078926563263,-0.593019545078278,-0.210893675684929,0.815793633460999,-0.544650137424469,-0.194517031311989,0.7596555352211,-0.632426857948303,-0.15152470767498,0.817188918590546,-0.555443406105042,-0.153899893164635,0.764825046062469,-0.628888547420502,-0.139792859554291,0.678414404392242,-0.717144072055817,-0.159556970000267, +0.870922088623047,-0.487585961818695,-0.0612762346863747,0.87074077129364,-0.487324148416519,-0.0657719373703003,0.867510259151459,-0.492794245481491,-0.0676751211285591,0.865292131900787,-0.496877729892731,-0.0661991387605667,0.889142453670502,-0.436021059751511,-0.138965129852295,0.898099541664124,-0.415988504886627,-0.142726048827171,0.885397732257843,-0.427476733922958,-0.182577282190323,0.882509529590607,-0.439638197422028,-0.167018860578537,0.862653315067291,-0.496171355247498,-0.0982006415724754,0.888273358345032,-0.44552555680275,-0.111702531576157,0.879564464092255,-0.47028636932373,-0.0720900818705559,0.846228182315826,-0.527713119983673,-0.0735985860228539,0.8867546916008,-0.41863489151001,-0.195986911654472,0.85936051607132,-0.477115660905838,-0.184011369943619,0.864498555660248,-0.453493803739548,-0.216761261224747,0.884038865566254,-0.402782380580902,-0.237153142690659,0.859921872615814,-0.391491323709488,-0.327519327402115,0.864328503608704,-0.415531396865845,-0.283319562673569,0.845636069774628,-0.467442452907562,-0.257676541805267,0.849342942237854,-0.436600923538208,-0.296641498804092,0.844053089618683,-0.486424535512924,-0.225755766034126,0.864153146743774,-0.432734966278076,-0.256865292787552,0.850121140480042,-0.479076832532883,-0.218585193157196,0.816109180450439,-0.543498456478119,-0.196405708789825,0.880637764930725,-0.461335480213165,-0.10792001336813,0.877737104892731,-0.465408325195313,-0.113898612558842,0.8761026263237,-0.468283295631409,-0.114695765078068,0.880683183670044,-0.461223721504211,-0.108028165996075,0.88866925239563,-0.427634835243225,-0.16551561653614,0.887523829936981,-0.432333827018738,-0.159339115023613,0.882032692432404,-0.442973434925079,-0.160601451992989,0.882216930389404,-0.440482050180435,-0.166339740157127,0.889733374118805,-0.389223247766495,-0.238494738936424,0.895837187767029,-0.387926816940308,-0.216768518090248,0.888208448886871,-0.406995713710785,-0.213167145848274,0.883970081806183,-0.406677395105362,-0.230673968791962,0.884901285171509,-0.410154730081558,-0.220732495188713, +0.869992315769196,-0.435990422964096,-0.230273619294167,0.887887597084045,-0.407115668058395,-0.214272499084473,0.893815279006958,-0.395803928375244,-0.210793063044548,0.872089385986328,-0.335711807012558,-0.356030374765396,0.85637640953064,-0.362815767526627,-0.367401897907257,0.838905513286591,-0.390083611011505,-0.379568696022034,0.837876379489899,-0.392356008291245,-0.379499614238739,0.83508312702179,-0.379058629274368,-0.398686319589615,0.858321785926819,-0.36929914355278,-0.356233179569244,0.851582467556,-0.355006575584412,-0.385717004537582,0.831118702888489,-0.357715100049973,-0.425771772861481,0.874885261058807,-0.415376722812653,-0.249073922634125,0.883159399032593,-0.388209104537964,-0.263292998075485,0.884683668613434,-0.399885624647141,-0.239637702703476,0.893820941448212,-0.396575570106506,-0.209312930703163,0.882716178894043,-0.376262664794922,-0.281493484973907,0.883053004741669,-0.382321387529373,-0.272117227315903,0.890363037586212,-0.376585096120834,-0.255807161331177,0.883554041385651,-0.381649911403656,-0.271432816982269,0.881196558475494,-0.44658362865448,-0.155098959803581,0.878599107265472,-0.445495963096619,-0.172037646174431,0.872887372970581,-0.459279447793961,-0.16471204161644,0.878279149532318,-0.455327242612839,-0.145955681800842,0.809894263744354,-0.496946007013321,-0.311634600162506,0.85352885723114,-0.441156059503555,-0.277254104614258,0.872994959354401,-0.407705068588257,-0.267687112092972,0.822124898433685,-0.478732317686081,-0.308101058006287,0.862598836421967,-0.354424238204956,-0.360980063676834,0.853862881660461,-0.450320810079575,-0.261016428470612,0.867630362510681,-0.346079379320145,-0.356996536254883,0.856150269508362,-0.248832136392593,-0.452867835760117,0.874799847602844,-0.422686159610748,-0.236773639917374,0.853919804096222,-0.455276340246201,-0.252080142498016,0.840912878513336,-0.471437752246857,-0.265729278326035,0.864682555198669,-0.436227202415466,-0.249058559536934,0.887048125267029,-0.26790976524353,-0.375992208719254,0.87983101606369,-0.303153932094574,-0.366053402423859, +0.828057646751404,-0.386142373085022,-0.406466037034988,0.82535582780838,-0.380625218153,-0.417027860879898,0.832102656364441,-0.392084181308746,-0.392269253730774,0.879941582679749,-0.303368806838989,-0.365609496831894,0.868823707103729,-0.326882123947144,-0.371878296136856,0.834548473358154,-0.385234743356705,-0.393856644630432,0.87701278924942,-0.350630521774292,-0.328491806983948,0.881703615188599,-0.306843459606171,-0.358393371105194,0.905632734298706,-0.295833021402359,-0.303829282522202,0.890982151031494,-0.359987735748291,-0.276694178581238,0.946167290210724,-0.274386018514633,-0.171696722507477,0.930670499801636,-0.304981023073196,-0.202086716890335,0.90464049577713,-0.391760855913162,-0.167777091264725,0.92594975233078,-0.360393196344376,-0.112844161689281,0.900534093379974,-0.390106379985809,-0.191977426409721,0.915883839130402,-0.287325799465179,-0.280358016490936,0.889520645141602,-0.271309167146683,-0.367619931697845,0.859379291534424,-0.415251940488815,-0.298383861780167,0.960911929607391,-0.1865234375,-0.204590618610382,0.979798018932343,-0.100804261863232,-0.172726690769196,0.985770285129547,-0.0601535215973854,-0.156967133283615,0.958595514297485,-0.192023441195488,-0.210289835929871,0.981729865074158,-0.0469007603824139,-0.184409663081169,0.977717459201813,-0.095297783613205,-0.187047824263573,0.985661029815674,-0.0318225845694542,-0.165709778666496,0.987574398517609,0.0577111467719078,-0.146172001957893,0.971663057804108,-0.161998853087425,-0.172125950455666,0.96395617723465,-0.19097988307476,-0.185243681073189,0.933688521385193,-0.309540897607803,-0.180027797818184,0.947563171386719,-0.274462342262268,-0.16369004547596,0.892665803432465,-0.292130678892136,-0.343230813741684,0.87813675403595,-0.326962411403656,-0.349244087934494,0.899231195449829,-0.277594119310379,-0.338119566440582,0.92441588640213,-0.20793691277504,-0.319714814424515,0.902182400226593,-0.285567462444305,-0.323292940855026,0.869359791278839,-0.305282086133957,-0.388608515262604,0.84319007396698,-0.299449652433395,-0.446497917175293, +0.874669075012207,-0.294561117887497,-0.384951651096344,0.87185925245285,-0.398352593183517,-0.284915566444397,0.88725358247757,-0.355866134166718,-0.293496787548065,0.836172997951508,-0.42553785443306,-0.346023559570313,0.818760633468628,-0.463517814874649,-0.338795304298401,0.755065023899078,-0.568205595016479,-0.327138155698776,0.781059086322784,-0.539255261421204,-0.314881682395935,0.790760517120361,-0.526416420936584,-0.312383860349655,0.758865118026733,-0.563434183597565,-0.326597481966019,0.789477705955505,-0.521103620529175,-0.324308484792709,0.780127882957458,-0.533886194229126,-0.32613804936409,0.81015944480896,-0.499200016260147,-0.307312935590744,0.822474360466003,-0.480580925941467,-0.304266184568405,0.810313761234283,-0.500588357448578,-0.304635673761368,0.780471861362457,-0.535798788070679,-0.322154194116592,0.782721877098083,-0.533909678459167,-0.319823354482651,0.811563611030579,-0.500014543533325,-0.302241563796997,0.667133986949921,-0.710854411125183,-0.222751542925835,0.657623946666718,-0.705579519271851,-0.263985276222229,0.620439529418945,-0.729490041732788,-0.287921994924545,0.652152717113495,-0.711554169654846,-0.261510193347931,0.836132943630219,-0.47615060210228,-0.272327572107315,0.909004688262939,-0.338645040988922,-0.242961242794991,0.911648809909821,-0.331115782260895,-0.243431314826012,0.834165155887604,-0.475467383861542,-0.279462575912476,0.719691634178162,-0.655234038829803,-0.229591563344002,0.771345138549805,-0.589300930500031,-0.240314662456512,0.759971559047699,-0.600244462490082,-0.249298572540283,0.698447346687317,-0.674580216407776,-0.238983079791069,0.896728992462158,-0.300989001989365,-0.324473053216934,0.912640869617462,-0.279520332813263,-0.298253297805786,0.848960280418396,-0.392033934593201,-0.35436686873436,0.842225849628448,-0.389256089925766,-0.373008459806442,0.852565765380859,-0.398966729640961,-0.337575376033783,0.918259501457214,-0.294418573379517,-0.2647964656353,0.908787310123444,-0.338033348321915,-0.244620323181152,0.829335451126099,-0.465428590774536,-0.30915829539299, +0.902546226978302,-0.322677671909332,-0.285112738609314,0.912765443325043,-0.279821872711182,-0.297588646411896,0.95669561624527,-0.173529803752899,-0.233710959553719,0.957675039768219,-0.188967883586884,-0.217139825224876,0.666330993175507,-0.712287783622742,-0.22056582570076,0.678135752677917,-0.693011701107025,-0.244676798582077,0.648025035858154,-0.716588079929352,-0.258002042770386,0.637272655963898,-0.734744071960449,-0.232453942298889,0.816446959972382,-0.513323128223419,-0.264412045478821,0.810589849948883,-0.527735948562622,-0.253848224878311,0.760300934314728,-0.587813973426819,-0.276436895132065,0.771830439567566,-0.565389335155487,-0.290883004665375,0.762044489383698,-0.589832007884979,-0.267182797193527,0.812067329883575,-0.530825614929199,-0.242426931858063,0.771889925003052,-0.58977997303009,-0.237372159957886,0.716265141963959,-0.654115319252014,-0.243099689483643,0.765679538249969,-0.584362030029297,-0.268804728984833,0.804272651672363,-0.515915930271149,-0.294917404651642,0.866646647453308,-0.432983219623566,-0.247889384627342,0.841240704059601,-0.485327810049057,-0.238266572356224,-0.111855275928974,-0.816634654998779,-0.566212236881256,-0.0702587217092514,-0.830225110054016,-0.552982807159424,-0.0852734446525574,-0.800448954105377,-0.59330427646637,-0.12699630856514,-0.790054976940155,-0.599737524986267,0.771194756031036,-0.558492064476013,-0.305524945259094,0.809607148170471,-0.513895988464355,-0.283632278442383,0.815240919589996,-0.510144531726837,-0.274107754230499,0.771161079406738,-0.564270436763763,-0.294804245233536,0.807794153690338,-0.493185937404633,-0.322856426239014,0.804645419120789,-0.498778462409973,-0.322126984596252,0.841992914676666,-0.442559629678726,-0.308527201414108,0.855257987976074,-0.418199807405472,-0.306010961532593,0.842991769313812,-0.445905268192291,-0.300887763500214,0.804136097431183,-0.497390776872635,-0.325526624917984,0.789152145385742,-0.519825041294098,-0.327140361070633,0.822439908981323,-0.480395615100861,-0.304651647806168,0.712575376033783,-0.632075130939484,-0.304495334625244, +0.734009206295013,-0.60870623588562,-0.301176279783249,0.73496675491333,-0.608575463294983,-0.299098640680313,0.7105633020401,-0.63533890247345,-0.302397817373276,0.733250975608826,-0.603832185268402,-0.312617480754852,0.732690989971161,-0.603838264942169,-0.313915908336639,0.756986916065216,-0.577060759067535,-0.306547939777374,0.761422634124756,-0.572206199169159,-0.304656744003296,0.75633293390274,-0.573877096176147,-0.314047157764435,0.732410311698914,-0.602848947048187,-0.316462337970734,0.738004863262177,-0.593767046928406,-0.320608079433441,0.759656369686127,-0.567051947116852,-0.3183933198452,0.745681345462799,-0.614369571208954,-0.257894456386566,0.729790389537811,-0.634986698627472,-0.253373056650162,0.702794313430786,-0.663822174072266,-0.255774050951004,0.718862473964691,-0.642463862895966,-0.265475213527679,0.703026592731476,-0.663903832435608,-0.254922240972519,0.730498313903809,-0.63546222448349,-0.250120013952255,0.679956436157227,-0.693126082420349,-0.239239379763603,0.662186801433563,-0.71281760931015,-0.231083810329437,0.681968450546265,-0.693227171897888,-0.233141764998436,0.728536188602448,-0.634140312671661,-0.259038895368576,0.765634953975677,-0.594083368778229,-0.246714636683464,0.717492163181305,-0.654525339603424,-0.238330826163292,-0.88071471452713,-0.375650823116302,-0.288493186235428,-0.893243074417114,-0.34040105342865,-0.293672919273376,-0.906147658824921,-0.340964168310165,-0.250280022621155,-0.895597040653229,-0.373935580253601,-0.240993976593018,0.663882970809937,-0.683657884597778,-0.303102970123291,0.700617790222168,-0.644889712333679,-0.305371910333633,0.70011568069458,-0.648053884506226,-0.299773693084717,0.663940906524658,-0.68718957901001,-0.29487806558609,0.700669527053833,-0.649006068706512,-0.29640057682991,0.701406955718994,-0.646702706813812,-0.299672842025757,0.713001549243927,-0.633284986019135,-0.300963491201401,0.711194217205048,-0.63667893409729,-0.29806512594223,0.712252020835876,-0.631169736385345,-0.307118922472,0.699862360954285,-0.643185555934906,-0.310652732849121, +0.705750226974487,-0.637741923332214,-0.30854806303978,0.719607949256897,-0.624092102050781,-0.304423153400421,0.720187902450562,-0.63492614030838,-0.279639422893524,0.746988713741302,-0.608676493167877,-0.26743358373642,0.74526709318161,-0.613876283168793,-0.260255694389343,0.718103885650635,-0.641902506351471,-0.268864512443542,0.742000162601471,-0.610038459300995,-0.278008818626404,0.743797481060028,-0.602500557899475,-0.289410382509232,0.775470793247223,-0.569473087787628,-0.27266389131546,0.776007294654846,-0.572697103023529,-0.264254868030548,0.773681223392487,-0.564663469791412,-0.287354230880737,0.743440389633179,-0.601835250854492,-0.291703373193741,0.735149502754211,-0.609099388122559,-0.297578871250153,0.762607574462891,-0.57673966884613,-0.292918145656586,0.710255265235901,-0.652971506118774,-0.262993544340134,0.695621132850647,-0.670103013515472,-0.258984863758087,0.678976476192474,-0.689772486686707,-0.251405715942383,0.6853306889534,-0.681052029132843,-0.257856607437134,0.678300321102142,-0.689762234687805,-0.253252297639847,0.694332778453827,-0.669846713542938,-0.263073235750198,0.662651300430298,-0.704817473888397,-0.253230333328247,0.658017456531525,-0.713596940040588,-0.240400835871696,0.667361557483673,-0.703997194766998,-0.242933064699173,0.695861279964447,-0.670149743556976,-0.258217841386795,0.703264951705933,-0.663987278938293,-0.254045903682709,0.658297181129456,-0.713224709033966,-0.240739434957504,0.676063895225525,-0.684658408164978,-0.272360920906067,0.710540652275085,-0.649560928344727,-0.270559698343277,0.709612846374512,-0.652655303478241,-0.26550105214119,0.683357357978821,-0.68060028553009,-0.264208495616913,0.708826422691345,-0.652265310287476,-0.268542766571045,0.709462940692902,-0.648464858531952,-0.27596315741539,0.72211229801178,-0.637552618980408,-0.268478035926819,0.719319403171539,-0.642801225185394,-0.263412594795227,0.721142172813416,-0.636222660541534,-0.274180114269257,0.708083391189575,-0.647065043449402,-0.282709807157516,0.701524496078491,-0.650489985942841,-0.291077822446823, +0.713474690914154,-0.641691982746124,-0.281398922204971,0.0279099028557539,-0.967172503471375,-0.252583652734756,0.0220890771597624,-0.968311548233032,-0.248766556382179,-0.0129334637895226,-0.966105937957764,-0.257821828126907,-0.00654804054647684,-0.965151965618134,-0.261608183383942,-0.0066552460193634,-0.955085933208466,-0.296254634857178,0.0259975269436836,-0.957509875297546,-0.287226319313049,0.0219614617526531,-0.958954334259033,-0.282708793878555,-0.0109198624268174,-0.956462144851685,-0.291651993989944,0.0197671204805374,-0.965563774108887,-0.259414494037628,0.0234929844737053,-0.964622259140015,-0.262587070465088,0.0638682171702385,-0.964474737644196,-0.256338566541672,0.0596175827085972,-0.965532541275024,-0.253362715244293,-0.0356387682259083,-0.934944927692413,-0.352998375892639,-0.0360293053090572,-0.943308651447296,-0.329955369234085,-0.0057946047745645,-0.953454852104187,-0.301480114459991,-0.00574055826291442,-0.945845305919647,-0.324566662311554,-0.00833628699183464,-0.958187997341156,-0.286018043756485,-0.0397614426910877,-0.948353409767151,-0.314714223146439,-0.0372179411351681,-0.955883264541626,-0.291379541158676,-0.00632526213303208,-0.964798927307129,-0.262912571430206,-0.0342307724058628,-0.952268064022064,-0.303337782621384,-0.0366615988314152,-0.944180428981781,-0.327382385730743,-0.073493167757988,-0.929642856121063,-0.3610580265522,-0.0685417875647545,-0.939416408538818,-0.335855603218079,0.0395601987838745,-0.983380675315857,-0.177193403244019,0.0272755604237318,-0.983910202980042,-0.176569536328316,-0.0110917333513498,-0.982698559761047,-0.184880271553993,0.00274883955717087,-0.982699275016785,-0.185187920928001,-0.00328622711822391,-0.973474264144897,-0.228773012757301,0.0324711725115776,-0.974979341030121,-0.219911217689514,0.0240257792174816,-0.9758420586586,-0.21715222299099,-0.0125680612400174,-0.974012017250061,-0.226147696375847,0.0218198131769896,-0.980154573917389,-0.197030305862427,0.0299268290400505,-0.979608774185181,-0.198673710227013,0.0747590810060501,-0.978491604328156,-0.192263931035995, +0.0665804520249367,-0.97937422990799,-0.190769970417023,-0.0693310052156448,-0.925507843494415,-0.372328549623489,-0.114602096378803,-0.902282297611237,-0.415635734796524,-0.106621988117695,-0.915827214717865,-0.38715934753418,-0.0645572394132614,-0.935777842998505,-0.346630036830902,-0.0948272347450256,-0.90825092792511,-0.40753898024559,-0.102568499743938,-0.894025206565857,-0.436117768287659,-0.149444729089737,-0.855436563491821,-0.495877593755722,-0.141010120511055,-0.875742793083191,-0.461725980043411,-0.128545299172401,-0.8470818400383,-0.515682399272919,-0.0875436589121819,-0.882991015911102,-0.461153924465179,-0.0868374705314636,-0.868167996406555,-0.488613933324814,-0.12564218044281,-0.82876592874527,-0.545308291912079,-0.0247361268848181,-0.976008176803589,-0.216324508190155,-0.043885849416256,-0.975220441818237,-0.216838881373405,-0.0857949033379555,-0.968465387821198,-0.23391030728817,-0.0566389560699463,-0.971819221973419,-0.228822246193886,-0.0666138008236885,-0.955579876899719,-0.287105798721313,-0.0331071428954601,-0.965171754360199,-0.259514212608337,-0.0400848537683487,-0.959211111068726,-0.279834121465683,-0.078145407140255,-0.947658956050873,-0.309573590755463,-0.0420084968209267,-0.961365878582001,-0.272049576044083,-0.0350278466939926,-0.967101454734802,-0.25196784734726,-0.00352830835618079,-0.973790526390076,-0.227419391274452,-0.00905089732259512,-0.968994796276093,-0.246915310621262,-0.790705025196075,-0.23791766166687,-0.564075171947479,-0.791857898235321,-0.239217311143875,-0.561904072761536,-0.705843210220337,-0.0995067581534386,-0.70134425163269,-0.686120450496674,-0.0733794942498207,-0.723777830600739,-0.916555941104889,-0.202082112431526,-0.345091342926025,-0.913560450077057,-0.189184978604317,-0.360022693872452,-0.903704404830933,-0.161585554480553,-0.396495342254639,-0.911239504814148,-0.177429094910622,-0.37170085310936,-0.901816308498383,-0.156244918704033,-0.40288320183754,-0.889624893665314,-0.133676841855049,-0.436690121889114,-0.874159812927246,-0.0955401211977005,-0.476147890090942, +-0.897716283798218,-0.133049517869949,-0.420003920793533,-0.817992627620697,-0.224266886711121,-0.529709696769714,-0.822772264480591,-0.227380111813545,-0.520906925201416,-0.781419217586517,-0.143404588103294,-0.607304811477661,-0.767281055450439,-0.12227288633585,-0.629546761512756,-0.786259412765503,-0.251779496669769,-0.564272224903107,-0.78919792175293,-0.253641605377197,-0.559314489364624,-0.727581083774567,-0.135780110955238,-0.672450423240662,-0.711764454841614,-0.117121800780296,-0.692584872245789,0.608692049980164,-0.445772647857666,-0.65633887052536,0.526738226413727,-0.423997968435287,-0.736730992794037,0.516297698020935,-0.466548502445221,-0.718170702457428,0.576254785060883,-0.470089077949524,-0.668540716171265,0.330409228801727,-0.583988666534424,-0.74147629737854,0.339844882488251,-0.598941326141357,-0.725103259086609,0.40817266702652,-0.640006542205811,-0.650989055633545,0.429726958274841,-0.65050733089447,-0.626238763332367,0.875104248523712,-0.137191519141197,-0.464080840349197,0.858921825885773,-0.133491307497025,-0.494402021169662,0.831607699394226,-0.0824862420558929,-0.549203634262085,0.859562695026398,-0.0921216160058975,-0.502658486366272,0.939284861087799,-0.0536332130432129,-0.338920801877975,0.917644023895264,-0.071089930832386,-0.390993177890778,0.915503621101379,-0.0143253039568663,-0.402054607868195,0.944281458854675,-0.00238415645435452,-0.329130500555038,0.983141601085663,0.0292829051613808,-0.180486008524895,0.973575592041016,0.0399564765393734,-0.224842190742493,0.97126692533493,0.061717115342617,-0.229851335287094,0.983207285404205,0.0507537052035332,-0.175292655825615,0.997419476509094,0.054269302636385,-0.0470031313598156,0.993137001991272,0.0595404170453548,-0.100666970014572,0.992411375045776,0.0837771743535995,-0.0900061801075935,0.996573686599731,0.078134685754776,-0.0271305032074451,0.996647000312805,0.0116174947470427,-0.0809928551316261,0.997486591339111,0.0587131604552269,-0.0396657846868038,0.995753288269043,0.0841724872589111,0.0372880026698112,0.999276459217072,0.0369535498321056,-0.00899909902364016, +-0.0478009432554245,-0.821898460388184,-0.567624866962433,0.013408537954092,-0.84492951631546,-0.534709453582764,0.0512779280543327,-0.861396074295044,-0.5053391456604,0.0280298534780741,-0.862422943115234,-0.505411684513092,0.0873829275369644,-0.881620287895203,-0.46379941701889,0.108176067471504,-0.898034870624542,-0.426416784524918,0.103439055383205,-0.898341476917267,-0.42694628238678,0.0806270614266396,-0.879786193370819,-0.468482196331024,-0.0323038846254349,-0.93309623003006,-0.358172953128815,-0.0136634018272161,-0.931063711643219,-0.364600747823715,-0.0359762758016586,-0.928411960601807,-0.369806677103043,-0.0535301305353642,-0.929185688495636,-0.3657166659832,-0.393714964389801,-0.785807073116302,-0.47696515917778,-0.328832775354385,-0.847621500492096,-0.416421443223953,-0.268238991498947,-0.863317728042603,-0.427469670772552,-0.333166122436523,-0.808240592479706,-0.485538303852081,0.620532929897308,-0.745624482631683,-0.242864221334457,0.646060585975647,-0.717556715011597,-0.260226875543594,0.659753799438477,-0.707450151443481,-0.25345453619957,0.633927404880524,-0.736841201782227,-0.234949067234993,0.64994615316391,-0.741658687591553,-0.165868639945984,0.656718194484711,-0.732927858829498,-0.177589610219002,0.657998502254486,-0.731588780879974,-0.17836993932724,0.650742053985596,-0.741000652313232,-0.165689364075661,0.70341020822525,-0.702121198177338,-0.110634103417397,0.700061142444611,-0.705364286899567,-0.111245527863503,0.69773542881012,-0.70728462934494,-0.113638564944267,0.700896263122559,-0.70426344871521,-0.11294861882925,0.662343382835388,-0.733937919139862,-0.15045428276062,0.658856213092804,-0.736434757709503,-0.153532832860947,0.666256368160248,-0.728561878204346,-0.159059822559357,0.670069456100464,-0.725679576396942,-0.156192794442177,0.758691072463989,-0.642520248889923,-0.10749664157629,0.769614577293396,-0.631228744983673,-0.096144050359726,0.773976683616638,-0.614818096160889,-0.151521682739258,0.762777149677277,-0.625827848911285,-0.162821188569069,0.865378201007843,-0.485032379627228,-0.125953495502472, +0.87429666519165,-0.472351521253586,-0.111755862832069,0.874858260154724,-0.448559999465942,-0.18280328810215,0.865282893180847,-0.460616379976273,-0.197782829403877,0.942951500415802,-0.285910040140152,-0.170580953359604,0.937836587429047,-0.295629054307938,-0.181841239333153,0.939184606075287,-0.327312648296356,-0.103916890919209,0.943462729454041,-0.318712532520294,-0.0911062210798264,-0.896666467189789,0.207166224718094,-0.391243457794189,-0.894587337970734,0.209986910223961,-0.394485682249069,-0.895619928836823,0.179230913519859,-0.407113373279572,-0.897699236869812,0.177088335156441,-0.403454899787903,-0.826955616474152,0.324727684259415,-0.459016740322113,-0.823971152305603,0.300348162651062,-0.480481743812561,-0.819939196109772,0.302149534225464,-0.486215382814407,-0.822948217391968,0.326475650072098,-0.464940905570984,-0.682429313659668,0.450018465518951,-0.575997948646545,-0.680756747722626,0.45177686214447,-0.576600313186646,-0.684834361076355,0.427055716514587,-0.590444922447205,-0.686470448970795,0.425420224666595,-0.589725315570831,-0.530371069908142,0.555907547473907,-0.640057265758514,-0.547401368618011,0.523776829242706,-0.652694225311279,-0.560397565364838,0.518299341201782,-0.646003365516663,-0.543590664863586,0.55010199546814,-0.633953392505646,-0.364855021238327,0.639121949672699,-0.677055299282074,-0.365828365087509,0.639288008213043,-0.67637300491333,-0.369257807731628,0.615515112876892,-0.696268618106842,-0.36844789981842,0.614431440830231,-0.697653293609619,-0.258657306432724,0.650085866451263,-0.714482188224792,-0.255022555589676,0.673497676849365,-0.693804442882538,-0.255859702825546,0.674081981182098,-0.69292813539505,-0.259443789720535,0.650362372398376,-0.713945150375366,0.00518949702382088,0.741744875907898,-0.670662045478821,0.00760974176228046,0.721125364303589,-0.692762911319733,0.0140780964866281,0.718972563743591,-0.69489586353302,0.011843079701066,0.740127444267273,-0.672362327575684,0.236294358968735,0.741089761257172,-0.628451287746429,0.234457835555077,0.716323375701904,-0.657198905944824, +0.230462864041328,0.717283070087433,-0.657565236091614,0.232437193393707,0.742575585842133,-0.628135800361633,0.320315450429916,0.713780462741852,-0.622828722000122,0.326904773712158,0.711761474609375,-0.621714472770691,0.339202463626862,0.734243988990784,-0.58807098865509,0.332614213228226,0.736221492290497,-0.589360415935516,0.60710346698761,0.630661845207214,-0.483415961265564,0.609299540519714,0.630013823509216,-0.481494277715683,0.614340782165527,0.642540872097015,-0.457959234714508,0.612051665782928,0.642647266387939,-0.460865885019302,0.792933523654938,0.509786486625671,-0.333727687597275,0.794177293777466,0.511038541793823,-0.328819125890732,0.796552300453186,0.523785591125488,-0.301915764808655,0.795489311218262,0.523282647132874,-0.305568337440491,0.872790813446045,0.428864747285843,-0.233047783374786,0.872431814670563,0.430714458227158,-0.230971395969391,0.872047543525696,0.441978216171265,-0.210210308432579,0.872450411319733,0.440378934144974,-0.211888447403908,0.922833800315857,0.359742820262909,-0.137705877423286,0.925430178642273,0.354404807090759,-0.134075328707695,0.926777422428131,0.359631061553955,-0.108393535017967,0.92418909072876,0.365377575159073,-0.111238241195679,0.964851140975952,0.260210365056992,-0.0367841608822346,0.965834558010101,0.256745100021362,-0.035295095294714,0.96344393491745,0.266947448253632,-0.0226935297250748,0.962397277355194,0.270556032657623,-0.0243098568171263,0.988748371601105,0.0738188698887825,0.130106195807457,0.98415195941925,0.101528845727444,0.145385801792145,0.98439359664917,0.100432403385639,0.144508823752403,0.988978624343872,0.0723650306463242,0.129168778657913,0.97742748260498,0.21112759411335,0.00779056455940008,0.978128671646118,0.207365751266479,0.0162390116602182,0.97343784570694,0.225876674056053,0.037399098277092,0.97272789478302,0.230105549097061,0.0291860532015562,0.935750126838684,0.332836449146271,-0.116583816707134,0.935028433799744,0.333989977836609,-0.119048200547695,0.930176138877869,0.351643979549408,-0.105446934700012,0.930775761604309,0.35084992647171,-0.102766044437885, +0.848812639713287,0.45504030585289,-0.269175499677658,0.845243752002716,0.476054340600967,-0.242765963077545,0.850765943527222,0.471489280462265,-0.232153281569481,0.854262888431549,0.451170206069946,-0.258225589990616,0.72305828332901,0.568721234798431,-0.392100602388382,0.731169998645782,0.566067218780518,-0.380734086036682,0.726614713668823,0.591190993785858,-0.350034654140472,0.718421041965485,0.594511687755585,-0.361146956682205,0.556466579437256,0.661984145641327,-0.50211763381958,0.566070079803467,0.660156071186066,-0.493719339370728,0.54777979850769,0.678750038146973,-0.489117443561554,0.538160562515259,0.680318713188171,-0.497543632984161,0.394861400127411,0.702332258224487,-0.592295467853546,0.387187838554382,0.702567636966705,-0.59706312417984,0.369701504707336,0.719369173049927,-0.588072061538696,0.377688378095627,0.718101918697357,-0.584535002708435,0.211485773324966,0.717243254184723,-0.663954734802246,0.189568638801575,0.715465068817139,-0.672438561916351,0.151659682393074,0.734586954116821,-0.661348223686218,0.174450978636742,0.735912263393402,-0.654217004776001,0.00096515059703961,0.7112917304039,-0.702896237373352,-0.0135461036115885,0.711061537265778,-0.702999234199524,-0.0436012297868729,0.73004424571991,-0.682007551193237,-0.0289999004453421,0.730388939380646,-0.682415664196014,-0.21825136244297,0.668460607528687,-0.711004078388214,-0.225429549813271,0.669844329357147,-0.707453310489655,-0.246316879987717,0.686752319335938,-0.683885395526886,-0.23908519744873,0.68542867898941,-0.687768697738647,-0.443268090486526,0.577634692192078,-0.685457289218903,-0.447067022323608,0.579765856266022,-0.68117743730545,-0.461877405643463,0.596787095069885,-0.656136095523834,-0.460858643054962,0.596751868724823,-0.656884014606476,-0.647895455360413,0.484779924154282,-0.587554216384888,-0.654468357563019,0.478496223688126,-0.585416555404663,-0.639536798000336,0.473263621330261,-0.605816960334778,-0.632979094982147,0.479284644126892,-0.607966899871826,-0.782626986503601,0.360195219516754,-0.507695138454437,-0.771792888641357,0.355156630277634,-0.527446329593658, +-0.767885327339172,0.359551310539246,-0.530165076255798,-0.779048681259155,0.365017026662827,-0.509750664234161,-0.853124499320984,0.258102566003799,-0.453389078378677,-0.844489336013794,0.263031452894211,-0.466532111167908,-0.849377334117889,0.253037333488464,-0.463174253702164,-0.858120322227478,0.248425498604774,-0.449348717927933,-0.87336939573288,0.213073194026947,-0.437979370355606,-0.88143515586853,0.194333106279373,-0.430472642183304,-0.896669328212738,0.186248615384102,-0.401616215705872,-0.888443768024445,0.204193398356438,-0.411062866449356,-0.955240428447723,0.0751692056655884,-0.286121517419815,-0.956058144569397,0.0714422166347504,-0.28433945775032,-0.95576274394989,0.0655691996216774,-0.286737263202667,-0.955146729946136,0.0696543157100677,-0.287824660539627,-0.976936399936676,-0.0230320524424314,-0.212284922599792,-0.969655871391296,-0.00901736598461866,-0.244307592511177,-0.971972227096558,-0.0331503562629223,-0.23274689912796,-0.978502511978149,-0.0471980907022953,-0.200761586427689,-0.978958964347839,0.00287429871968925,-0.204037010669708,-0.980450212955475,-0.00225599994882941,-0.196754798293114,-0.978558421134949,-0.0333084538578987,-0.20325830578804,-0.977284073829651,-0.0275592375546694,-0.21013431251049,0.955581068992615,-0.218830719590187,0.197428047657013,0.944301247596741,-0.168074533343315,0.282924562692642,0.945007741451263,-0.248638778924942,0.21245950460434,0.947890102863312,-0.293823778629303,0.123174227774143,-0.715054392814636,-0.667274355888367,-0.208427831530571,-0.638164043426514,-0.769068777561188,0.0357747301459312,-0.466783195734024,-0.85147225856781,0.238973721861839,-0.600188374519348,-0.799840331077576,0.00541747454553843,-0.516131103038788,-0.713999211788177,0.473089605569839,-0.462161600589752,-0.726502954959869,0.508527278900146,-0.396919369697571,-0.755183756351471,0.521682620048523,-0.453725904226303,-0.744272351264954,0.490093231201172,0.560538828372955,-0.636764824390411,-0.529459059238434,0.473317861557007,-0.652795851230621,-0.591462552547455,0.473774671554565,-0.652614891529083,-0.591296434402466, +0.560985088348389,-0.636497974395752,-0.529307305812836,0.870907545089722,0.394829988479614,0.29262501001358,0.86536169052124,0.418405711650848,0.275836616754532,0.9066082239151,0.355424642562866,0.227453246712685,0.911624372005463,0.331150978803635,0.243474960327148,0.979573547840118,0.122404910624027,0.15953965485096,0.982016503810883,0.121392905712128,0.144593566656113,0.984253764152527,0.120167300105095,0.129631489515305,0.982017815113068,0.121380992233753,0.144594684243202,0.993910729885101,0.108536317944527,-0.0190083738416433,0.98737770318985,0.118941858410835,0.104585468769073,0.965600669384003,0.127623915672302,0.22655576467514,0.987363278865814,0.119072183966637,0.104573592543602,0.990940272808075,0.11597865819931,0.0677228420972824,0.989660441875458,0.117035619914532,0.0829159468412399,0.988131284713745,0.118229083716869,0.0980748012661934,0.989641845226288,0.11720272153616,0.082900732755661,0.986604690551758,0.11927992105484,0.111282140016556,0.981024622917175,0.122560098767281,0.150232717394829,0.974001467227936,0.124870397150517,0.189020037651062,0.98106461763382,0.122198536992073,0.150265723466873,0.974273025989532,0.125203818082809,0.187393397092819,0.974200844764709,0.125851854681969,0.18733412027359,0.974321961402893,0.124761134386063,0.187433779239655,0.984920740127563,0.118658393621445,0.125902310013771,0.981410503387451,0.120147004723549,0.14966008067131,0.984986543655396,0.118051327764988,0.1259575933218,0.987956523895264,0.116219311952591,0.102151922881603,-0.854629278182983,-0.41743540763855,-0.308798670768738,-0.864676117897034,-0.425568521022797,-0.266883611679077,-0.857738971710205,-0.440879911184311,-0.264402598142624,-0.847760260105133,-0.436370581388474,-0.30146849155426,0.685060739517212,0.58328253030777,0.43643245100975,0.744024336338043,0.565377354621887,0.356056421995163,0.797465324401855,0.492988258600235,0.347867608070374,0.74346262216568,0.521805942058563,0.418308287858963,0.991681575775146,-0.00171893963124603,0.128704071044922,0.923886835575104,-0.0486494041979313,0.379561007022858, +0.970213234424591,0.103790462017059,0.218892082571983,0.988552987575531,0.14406406879425,-0.0448171719908714,0.907839894294739,0.41791558265686,-0.0342564061284065,0.524693429470062,0.792127192020416,-0.311819463968277,-0.0530519783496857,0.889719724655151,-0.453414082527161,0.521651327610016,0.800717830657959,-0.294500946998596,-0.81625497341156,-0.48325452208519,-0.316532552242279,-0.851569771766663,-0.430644094944,-0.298955887556076,-0.818381786346436,-0.496258169412613,-0.289791285991669,-0.779270052909851,-0.545175075531006,-0.30906680226326,0.105626419186592,0.287340700626373,0.951986610889435,-0.0433986000716686,0.296811044216156,0.953949570655823,0.10398468375206,0.30564683675766,0.946449816226959,0.250727742910385,0.311264306306839,0.916651606559753,0.993505775928497,0.108698584139347,0.0336315035820007,0.990495204925537,0.114174477756023,0.0767030641436577,0.985810697078705,0.11757930368185,0.119801536202431,0.99068409204483,0.112413220107555,0.0768656358122826,0.634811460971832,-0.770459055900574,0.0583717152476311,0.633917987346649,-0.771095931529999,0.0596576258540154,0.654531121253967,-0.752205014228821,0.0760045573115349,0.655494213104248,-0.751482903957367,0.0748384520411491,0.968115270137787,0.125358924269676,0.216882169246674,0.961586654186249,0.126997262239456,0.243357822299004,0.968120813369751,0.125308498740196,0.216886773705482,0.973927199840546,0.123575791716576,0.190249428153038,0.992115914821625,0.113124638795853,0.0539338514208794,0.976795077323914,0.122584603726864,0.175625577569008,0.946687579154968,0.130233868956566,0.294655650854111,0.976792812347412,0.12260490655899,0.175623655319214,0.98132735490799,0.120688408613205,0.149769753217697,0.976851642131805,0.122536078095436,0.175344452261925,0.971710741519928,0.124332465231419,0.200797632336617,0.976848840713501,0.122562281787395,0.175342038273811,0.972160279750824,0.123927876353264,0.198862567543983,0.963624835014343,0.126553297042847,0.235396146774292,0.953747928142548,0.128803387284279,0.271614730358124,0.963622808456421,0.1265719383955,0.235394403338432, +0.979399800300598,0.121326580643654,0.161418810486794,0.981616616249084,0.120567306876183,0.14796057343483,0.979375720024109,0.121547624468803,0.161398723721504,0.976953685283661,0.122489176690578,0.174808278679848,0.947447896003723,0.129759892821312,0.292412132024765,0.947424232959747,0.129977032542229,0.292392313480377,0.947447896003723,0.129760295152664,0.292411983013153,0.986237645149231,0.117387980222702,0.116427689790726,0.986002445220947,0.117542766034603,0.118250288069248,0.985764741897583,0.117687053978443,0.120073407888412,0.986003577709198,0.117532089352608,0.118251278996468,0.987970888614655,0.116231739521027,0.101998761296272,0.986558139324188,0.117187045514584,0.113887071609497,0.985003650188446,0.118120215833187,0.125759437680244,0.98655891418457,0.117180518805981,0.113887697458267,0.99045741558075,0.113882921636105,0.0776205509901047,0.990541279315948,0.114118933677673,0.0761897638440132,0.990419268608093,0.114235371351242,0.0775884762406349,0.990333497524261,0.113998003304005,0.0790192633867264,0.991210162639618,0.11309278011322,0.0686469674110413,0.991801381111145,0.112512439489365,0.0605883821845055,0.991450726985931,0.11289955675602,0.0654153153300285,0.991238057613373,0.113111175596714,0.0682128816843033,0.99047178030014,0.113870531320572,0.0774544402956963,0.991019129753113,0.113286904990673,0.0710438117384911,0.990167856216431,0.113668151199818,0.0815309211611748,0.990840435028076,0.113467924296856,0.0732140690088272,0.990117251873016,0.114138774573803,0.0814881846308708,0.989375531673431,0.114333689212799,0.0897990316152573,0.991408288478851,0.112384274601936,0.0669287890195847,0.994132459163666,0.10764379799366,0.0106530543416739,0.991399049758911,0.112468980252743,0.0669210702180862,0.985505759716034,0.116848610341549,0.122983008623123,0.985146582126617,0.116999886929989,0.125687375664711,0.992471098899841,0.111100032925606,0.0515550933778286,0.985140681266785,0.117054969072342,0.12568236887455,0.97231513261795,0.122301131486893,0.199112877249718,0.984449863433838,0.117367051541805,0.130702897906303, +0.994214475154877,0.107182666659355,0.00703221885487437,0.984448373317719,0.117380924522877,0.130701646208763,0.959431111812592,0.125749230384827,0.252347111701965,0.99069619178772,0.113066174089909,0.0757439956068993,0.992644071578979,0.110796637833118,0.04880316182971,0.993859767913818,0.108473226428032,0.021823950111866,0.992641448974609,0.110821731388569,0.048800878226757,0.993436276912689,0.109533116221428,0.032967783510685,0.992451548576355,0.111089020967484,0.0519515536725521,0.991099238395691,0.112668558955193,0.0709105804562569,0.992444753646851,0.111153319478035,0.0519457086920738,0.993160426616669,0.110130272805691,0.0387798473238945,0.988881289958954,0.114667564630508,0.094684973359108,0.981463134288788,0.118934594094753,0.150281995534897,0.988870799541473,0.114765532314777,0.0946760475635529,0.993833243846893,0.108754597604275,0.0216357074677944,0.985909819602966,0.116744674742222,0.119801864027977,0.968349158763885,0.123704150319099,0.216788306832314,0.98589676618576,0.11686659604311,0.119790725409985,0.966814994812012,0.124394305050373,0.223147481679916,0.976662755012512,0.121141828596592,0.177354037761688,0.984344959259033,0.117738761007786,0.131158456206322,0.976653337478638,0.121229693293571,0.177346095442772,0.98534893989563,0.120535038411617,0.120660588145256,0.98920339345932,0.117852479219437,0.0871059522032738,0.991921484470367,0.115043088793755,0.0534498132765293,0.989204227924347,0.117844916880131,0.0871066227555275,0.975162029266357,0.121764242649078,0.185020834207535,0.975707113742828,0.121580265462399,0.182246744632721,0.972498893737793,0.122684329748154,0.197975978255272,0.973964154720306,0.122327513992786,0.190866068005562,0.97745817899704,0.121080815792084,0.172959625720978,0.977360844612122,0.12094759196043,0.173601537942886,0.98811948299408,0.115585498511791,0.101291179656982,0.990844964981079,0.116318136453629,0.0685298293828964,0.992885529994965,0.113496832549572,0.0360139384865761,0.991212606430054,0.112952955067158,0.0688406899571419,0.965644836425781,0.128277033567429,0.225998014211655, +0.988984107971191,0.118030771613121,0.0893260613083839,0.99319851398468,0.105583362281322,-0.0490806214511395,0.988981187343597,0.118057668209076,0.0893235132098198,0.993728041648865,0.111263670027256,0.0111816618591547,0.989980816841125,0.117160052061081,0.0788123831152916,0.981660544872284,0.12248657643795,0.146080747246742,0.989980936050415,0.117159843444824,0.078812412917614,0.96932715177536,0.123451858758926,0.212519526481628,0.972976207733154,0.122518569231033,0.195720136165619,0.976360857486725,0.121328189969063,0.178882569074631,0.973002374172211,0.122274942696095,0.195742934942245,0.966494739055634,0.123996965587139,0.224750205874443,0.970389544963837,0.123120568692684,0.207810834050179,0.974021136760712,0.121920235455036,0.190835624933243,0.970420122146606,0.122834205627441,0.207837879657745,0.977374792098999,0.12012954056263,0.174090296030045,0.973929762840271,0.121649511158466,0.19147390127182,0.970200836658478,0.122903347015381,0.208818405866623,0.973954319953918,0.121418312191963,0.191495701670647,0.980551660060883,0.118626989424229,0.15635247528553,0.977247595787048,0.120179921388626,0.174768522381783,0.973615288734436,0.12153697758913,0.193137422204018,0.97726446390152,0.120020776987076,0.174783512949944,0.982382237911224,0.117686979472637,0.145172849297523,0.980539679527283,0.118632420897484,0.156423658132553,0.97857654094696,0.119489692151546,0.16766083240509,0.980548024177551,0.118553578853607,0.156431064009666,0.984330534934998,0.116677850484848,0.132211461663246,0.983191549777985,0.117279887199402,0.13992802798748,0.98199188709259,0.117880016565323,0.147635534405708,0.983191609382629,0.117279306054115,0.139928087592125,0.985592007637024,0.116029232740402,0.123067490756512,0.985099017620087,0.116247192025185,0.126754373311996,0.98458456993103,0.116535782814026,0.130432710051537,0.985091805458069,0.116314895451069,0.126748025417328,0.987273633480072,0.115093007683754,0.109746761620045,0.986922204494476,0.115203641355038,0.11275127530098,0.98654842376709,0.115438058972359,0.115743070840836,0.986909210681915,0.115325331687927,0.112739868462086, +0.988386511802673,0.114846780896187,0.0995106026530266,0.988478541374207,0.114242866635323,0.0992917791008949,0.988509476184845,0.11421150714159,0.0990191102027893,0.988424897193909,0.114746369421482,0.0992444604635239,0.993470966815948,0.101185828447342,-0.0526948608458042,0.983138918876648,0.119386158883572,0.138509318232536,0.993336379528046,0.102438203990459,-0.0528127551078796,0.966920852661133,0.0804365053772926,-0.242062076926231,0.984779119491577,0.117349453270435,0.128215551376343,0.988513767719269,0.114850901067257,0.0982328727841377,0.989391565322876,0.114057265222073,0.0899737551808357,0.990056335926056,0.113413743674755,0.0832212120294571,0.98805034160614,0.11523263156414,0.102362290024757,0.983154058456421,0.11926793307066,0.138503983616829,0.984768331050873,0.117355555295944,0.128292843699455,0.983276665210724,0.11812724173069,0.138611420989037,0.981552004814148,0.120053678750992,0.148804485797882,0.987530052661896,0.116743072867393,0.105619370937347,0.992608428001404,0.11177071928978,0.0472844801843166,0.987538158893585,0.116668365895748,0.105626344680786,0.979049146175385,0.121239498257637,0.16359631717205,0.973661005496979,0.123361803591251,0.191744714975357,0.985099613666534,0.118277490139008,0.12485745549202,0.973669111728668,0.123287819325924,0.191751644015312,0.957721352577209,0.127806529402733,0.257750540971756,0.973663508892059,0.123369343578815,0.191726788878441,0.983525216579437,0.119208499789238,0.135895222425461,0.973664522171021,0.123360395431519,0.191727578639984,0.960655808448792,0.127127513289452,0.246939226984978,0.963888883590698,0.126296326518059,0.234451338648796,0.987180411815643,0.117045640945435,0.108514510095119,0.963887512683868,0.126308649778366,0.234450101852417,0.924701869487762,0.133491083979607,0.356520086526871,0.984427273273468,0.118777453899384,0.129595652222633,0.983215391635895,0.119351401925087,0.137995421886444,0.984435975551605,0.118697226047516,0.129603058099747,0.985576570034027,0.118114449083805,0.121194109320641,0.966907799243927,0.125680208206177,0.222022071480751, +0.970995783805847,0.12432486563921,0.204231485724449,0.966921508312225,0.125554531812668,0.222033783793449,0.962509274482727,0.12686949968338,0.239750012755394,0.98688942193985,0.117174834012985,0.110992424190044,0.98310911655426,0.11959171295166,0.138543635606766,0.98686420917511,0.117407567799091,0.110970452427864,0.989877223968506,0.114884652197361,0.0833342894911766,0.988549470901489,0.11445701867342,0.0983339622616768,0.984531164169312,0.117438666522503,0.130025461316109,0.979506313800812,0.120233565568924,0.16158989071846,0.98450779914856,0.117656148970127,0.130005270242691,0.979813992977142,0.120639696717262,0.159407183527946,0.985804319381714,0.117864415049553,0.119573645293713,0.979781150817871,0.120943643152714,0.159378468990326,0.9721919298172,0.123537063598633,0.198950976133347,0.984563589096069,0.118314996361732,0.128981441259384,0.985974311828613,0.117461085319519,0.118565335869789,0.984566569328308,0.118287742137909,0.128983780741692,0.98304545879364,0.11913600564003,0.139385208487511,0.976465404033661,0.122081756591797,0.177796065807343,0.986366987228394,0.117236264050007,0.115480750799179,0.976468801498413,0.122049748897552,0.177798852324486,0.962655901908875,0.126413807272911,0.239401772618294,0.98845511674881,0.115497671067715,0.0980654656887054,0.989581823348999,0.11489187926054,0.0867620781064034,0.988419353961945,0.115829862654209,0.0980341210961342,0.987166166305542,0.116408795118332,0.109325878322124,0.979742228984833,0.119774304330349,0.160496428608894,0.983743369579315,0.118474833667278,0.13495434820652,0.979672074317932,0.120429538190365,0.160435006022453,0.974963009357452,0.122132405638695,0.185824811458588,0.992835402488708,0.110372744500637,0.0457813031971455,0.992833375930786,0.110390961170197,0.0457797013223171,0.992789804935455,0.110798053443432,0.0457410514354706,0.986995339393616,0.115938767790794,0.111349061131477,0.986948907375336,0.116371631622314,0.111308321356773,0.986961185932159,0.116257183253765,0.111319877207279,0.98034131526947,0.118356958031654,0.157868638634682,0.977100431919098,0.119820885360241,0.175834223628044, +0.980336666107178,0.118400856852531,0.157864525914192,0.983239412307739,0.116986677050591,0.139837712049484,0.965127527713776,0.123657830059528,0.230732828378677,0.965117573738098,0.123752444982529,0.230724066495895,0.96513420343399,0.123594433069229,0.230738878250122,0.976410925388336,0.120083905756474,0.179448068141937,0.971859931945801,0.122335404157639,0.201302066445351,0.976385414600372,0.120324268937111,0.179425701498985,0.980387985706329,0.118554644286633,0.15743063390255,0.994418859481812,0.105380341410637,-0.00512932147830725,0.994365334510803,0.105881951749325,-0.0051759579218924,0.994335830211639,0.10615660995245,-0.00520188407972455,0.99437427520752,0.103945754468441,-0.0203781276941299,0.994295954704285,0.104678206145763,-0.0204469654709101,0.994408369064331,0.103624068200588,-0.0203485656529665,0.980738878250122,0.118052408099174,0.15561206638813,0.97918027639389,0.118729487061501,0.164649456739426,0.982779145240784,0.117656879127026,0.14248514175415,0.987095415592194,0.115217737853527,0.111209340393543,0.982162415981293,0.117371298372746,0.146904408931732,0.981168568134308,0.117929711937904,0.15297394990921,0.982814967632294,0.117144651710987,0.142660766839981,0.981176674365997,0.117851711809635,0.152981325984001,0.979422211647034,0.118628390133381,0.163277104496956,0.987360537052155,0.114614002406597,0.109466843307018,0.988148212432861,0.11407283693552,0.102716512978077,0.987367570400238,0.114546522498131,0.109473124146461,0.986533641815186,0.115086786448956,0.116217941045761,0.986320793628693,0.115268774330616,0.11783167719841,0.988674104213715,0.113680899143219,0.0979807004332542,0.986319959163666,0.115277402102947,0.117830887436867,0.983570158481598,0.116818308830261,0.13763453066349,0.983377397060394,0.116891615092754,0.138943687081337,0.984654247760773,0.116214767098427,0.130192831158638,0.983375489711761,0.116910323500633,0.1389419734478,0.982021450996399,0.117575839161873,0.147682070732117,0.982516705989838,0.117346182465553,0.144536912441254,0.983250856399536,0.116980776190758,0.139761388301849, +0.982519567012787,0.117319904267788,0.144539356231689,0.981762230396271,0.117682583630085,0.149311482906342,0.988120555877686,0.117273516952991,0.0993211343884468,0.990169405937195,0.116194143891335,0.0778699293732643,0.988059818744659,0.117826461791992,0.0992706343531609,0.985696375370026,0.117514669895172,0.120801456272602,0.976799666881561,0.121433183550835,0.176398441195488,0.976854503154755,0.120922312140465,0.176446214318275,0.976730823516846,0.122070334851742,0.176340371370316,0.980536580085754,0.119495518505573,0.155784636735916,0.98030960559845,0.121596731245518,0.155586957931519,0.980459690093994,0.120213679969311,0.155715927481651,0.983029186725616,0.118330150842667,0.140184342861176,0.985889256000519,0.116697289049625,0.120017260313034,0.982954621315002,0.119024768471718,0.14011912047863,0.979835331439972,0.119194656610489,0.160360723733902,0.977661550045013,0.120097644627094,0.172494888305664,0.977589011192322,0.120780594646931,0.172429621219635,0.977659940719604,0.120112277567387,0.172493830323219,0.989208340644836,0.114326380193233,0.0916313976049423,0.985481560230255,0.116411745548248,0.123589657247066,0.980684876441956,0.118801638484001,0.155381202697754,0.985491812229156,0.116315148770809,0.123599052429199,0.985914647579193,0.116612084209919,0.119891501963139,0.985844194889069,0.117268860340118,0.119830094277859,0.985967040061951,0.116119496524334,0.119938567280769,0.986498296260834,0.116787098348141,0.114813327789307,0.98648875951767,0.116874799132347,0.114805214107037,0.986559927463531,0.116212092339993,0.114867076277733,0.972753345966339,0.123667992651463,0.196105003356934,0.972843647003174,0.122835092246532,0.196180433034897,0.972777724266052,0.12344416230917,0.196125015616417,0.993624329566956,0.10431046038866,-0.0427810698747635,0.991928040981293,0.113154664635658,0.0572254806756973,0.980252325534821,0.120660349726677,0.156672969460487,0.991923928260803,0.113192275166512,0.0572220124304295,0.992796659469604,0.112113229930401,0.0422537252306938,0.983820557594299,0.119524590671062,0.133458480238914, +0.966525018215179,0.125946313142776,0.223533287644386,0.983819842338562,0.119531154632568,0.133457839488983,0.986786723136902,0.117798909544945,0.111244723200798,0.959710121154785,0.12762026488781,0.250338524580002,0.913264453411102,0.134916350245476,0.38437694311142,0.95970755815506,0.127644553780556,0.2503362596035,0.971937298774719,0.124284259974957,0.199728190898895,0.961772859096527,0.127104431390762,0.242564335465431,0.949733138084412,0.129708737134933,0.284925669431686,0.961770296096802,0.127128005027771,0.242562115192413,0.991977035999298,0.11297819763422,0.0567230805754662,0.99196845293045,0.113057307898998,0.0567157529294491,0.991927802562714,0.113430455327034,0.0566812306642532,0.982143580913544,0.120061509311199,0.144842535257339,0.980688512325287,0.120582155883312,0.153980642557144,0.982159197330475,0.119917847216129,0.144855827093124,0.983523607254028,0.11944404989481,0.135699972510338,0.981757402420044,0.120245665311813,0.147286847233772,0.981779992580414,0.120037160813808,0.147306129336357,0.981775045394897,0.120083808898926,0.147301837801933,0.982268095016479,0.120001301169395,0.144045487046242,0.982285261154175,0.119843140244484,0.144060090184212,0.982290983200073,0.119790181517601,0.144065022468567,0.986130893230438,0.117766663432121,0.116948261857033,0.984983265399933,0.118434771895409,0.125623717904091,0.983759641647339,0.119093865156174,0.134289443492889,0.984966516494751,0.118588991463184,0.125609457492828,0.967946767807007,0.125616580247879,0.217484444379807,0.967968881130219,0.125414147973061,0.217502936720848,0.967981040477753,0.125302821397781,0.217513024806976,0.979195654392242,0.120483465492725,0.163277834653854,0.962818264961243,0.126659423112869,0.23861788213253,0.940787196159363,0.131105855107307,0.312619060277939,0.962936282157898,0.125570595264435,0.238717094063759,0.970618486404419,0.124520488083363,0.205899104475975,0.970680713653564,0.123945705592632,0.205952495336533,0.970627427101135,0.124438725411892,0.205906763672829,0.984932839870453,0.118304513394833,0.126140400767326,0.984936773777008,0.118268765509129,0.126143723726273, +0.984935939311981,0.118275813758373,0.12614306807518,0.994143426418304,0.108051314949989,0.00199496140703559,0.993413209915161,0.1103525608778,0.030861085280776,0.991817712783813,0.112857684493065,0.0596738085150719,0.993408501148224,0.110396571457386,0.0308570116758347,0.993894219398499,0.109148234128952,0.0161598194390535,0.99388200044632,0.109259977936745,0.0161494519561529,0.993886828422546,0.109215684235096,0.0161535628139973,0.994051873683929,0.105083502829075,-0.0286068208515644,0.993763983249664,0.109635032713413,0.0203305184841156,0.994045913219452,0.105138003826141,-0.0286118779331446,0.991925716400146,0.100395515561104,-0.0774859488010406,0.992136299610138,0.10071288049221,-0.0743133574724197,0.992138624191284,0.100691489875317,-0.074311375617981,0.992136538028717,0.100710824131966,-0.0743131712079048,0.994012832641602,0.105007782578468,-0.0301972832530737,0.994010090827942,0.105033122003078,-0.0301996357738972,0.994012475013733,0.105011880397797,-0.0301976650953293,0.993832409381866,0.104283444583416,-0.0377109721302986,0.993831634521484,0.104290746152401,-0.0377116501331329,0.993829727172852,0.10430796444416,-0.0377132520079613,0.994031012058258,0.105084732174873,-0.029318805783987,0.994162321090698,0.107891492545605,0.000849930453114212,0.993384838104248,0.110564261674881,0.0310211386531591,0.994160413742065,0.107908457517624,0.000848352967295796,0.988167464733124,0.116412132978439,0.0998664572834969,0.988167643547058,0.116410367190838,0.09986662119627,0.988168835639954,0.116399571299553,0.09986761957407,0.988283336162567,0.116173356771469,0.0989948809146881,0.990208625793457,0.114612013101578,0.0796917900443077,0.991763293743134,0.112969845533371,0.0603620037436485,0.990211367607117,0.114587500691414,0.079694077372551,0.994000315666199,0.108665265142918,0.0124572468921542,0.990725636482239,0.11409392952919,0.0737916305661201,0.986798346042633,0.11720122396946,0.111771546304226,0.987680613994598,0.116603061556816,0.104358427226543,0.992168843746185,0.112258195877075,0.0547640956938267,0.992215991020203,0.114177323877811,0.0497093759477139, +0.988950967788696,0.117626562714577,0.090221680700779,0.984244108200073,0.119027353823185,0.130751863121986,0.989140927791595,0.115896254777908,0.0903788805007935,-0.0467744544148445,0.564902067184448,0.82383131980896,-0.0391837581992149,0.577697932720184,0.815309584140778,-0.0242625921964645,0.606098771095276,0.795019268989563,-0.0313642136752605,0.600762903690338,0.798811912536621,0.0678566247224808,0.387162446975708,0.919511139392853,-0.00453447457402945,0.413727849721909,0.910389304161072,-0.0667130798101425,0.522611916065216,0.849956691265106,0.00543918646872044,0.492174625396729,0.870479464530945,0.0409759320318699,0.606126666069031,0.794312000274658,0.0476153716444969,0.622769892215729,0.780954837799072,0.0519386827945709,0.617548108100891,0.784816324710846,0.0445661023259163,0.598894000053406,0.799587309360504,0.886494159698486,0.393334120512009,0.243754729628563,0.88290011882782,0.410661250352859,0.227694824337959,0.887410223484039,0.432763069868088,0.158806338906288,0.904131412506104,0.336492776870728,0.263284981250763,0.902342200279236,0.366482198238373,0.226868540048599,0.898541748523712,0.326419800519943,0.293381750583649,0.95859295129776,0.224868223071098,0.174739986658096,0.956034362316132,0.249834224581718,0.15356171131134,0.951349496841431,0.20710577070713,0.228125795722008,0.927467703819275,0.318124890327454,0.196469411253929,0.921845436096191,0.266157597303391,0.281711012125015,0.921862542629242,0.254600435495377,0.292144000530243,0.998322665691376,0.0570022463798523,0.0101309288293123,0.998911380767822,0.0370519235730171,0.0283412225544453,0.998781502246857,0.0431948453187943,0.0238686967641115,0.929881870746613,0.28437739610672,0.233343541622162,0.930290162563324,0.312131255865097,0.192702531814575,0.929441094398499,0.289877772331238,0.228276506066322,0.909854054450989,0.297438085079193,0.289302974939346,0.907477378845215,0.293761134147644,0.300315231084824,0.912441492080688,0.348015367984772,0.215258032083511,0.934600055217743,0.217531159520149,0.281430155038834,0.934377908706665,0.217201709747314,0.282420575618744, +0.941278100013733,0.287413239479065,0.177169889211655,0.899537444114685,0.434481412172318,0.0453708693385124,0.915313899517059,0.342541068792343,0.211816608905792,0.901780724525452,0.423541963100433,0.0860452353954315,0.0857428163290024,0.369797587394714,0.925147533416748,0.0331483334302902,0.333134919404984,0.942296326160431,-0.00900885090231895,0.304878264665604,0.952348828315735,0.120130836963654,0.493389576673508,0.861472725868225,-0.015677135437727,0.397005170583725,0.917682588100433,0.094727411866188,0.469236075878143,0.87797737121582,0.991653442382813,0.113781847059727,0.0606394968926907,0.991650879383087,0.113805368542671,0.0606373138725758,0.99165678024292,0.113751105964184,0.0606423653662205,0.130494758486748,-0.796798646450043,-0.58998566865921,0.0400791838765144,-0.801069557666779,-0.597227931022644,-0.0728128701448441,-0.825359404087067,-0.559892952442169,-0.00958921946585178,-0.834543824195862,-0.550858020782471,-0.0248624347150326,-0.821878969669342,-0.569119393825531,-0.0525719709694386,-0.839093327522278,-0.541441321372986,-0.120173953473568,-0.870730042457581,-0.476851612329483,-0.0727782174944878,-0.848822414875031,-0.523644685745239,-0.301924526691437,-0.845065116882324,-0.441255867481232,-0.290716677904129,-0.846927404403687,-0.445194154977798,-0.256307423114777,-0.849079608917236,-0.461920261383057,-0.288391321897507,-0.846039772033691,-0.448383063077927,-0.142100289463997,-0.699543058872223,-0.700319111347198,-0.1647107899189,-0.705081462860107,-0.689732193946838,-0.105757541954517,-0.714837491512299,-0.691247224807739,-0.0809887796640396,-0.711771905422211,-0.697726011276245,-0.211716592311859,-0.845396757125854,-0.490388005971909,-0.252786219120026,-0.84612375497818,-0.469226688146591,-0.288226068019867,-0.8462775349617,-0.448040455579758,-0.256995111703873,-0.847922205924988,-0.463661164045334,-0.362946093082428,-0.80086749792099,-0.476320922374725,-0.330792903900146,-0.810117483139038,-0.484030932188034,-0.32726389169693,-0.808376491069794,-0.489311546087265,-0.327601879835129,-0.80726945400238,-0.490910589694977, +-0.331124037504196,-0.806616008281708,-0.489620000123978,-0.303156793117523,-0.811673581600189,-0.499281644821167,-0.319764256477356,-0.806599855422974,-0.497139543294907,-0.331393152475357,-0.803622782230377,-0.494336932897568,-0.274441063404083,-0.818779647350311,-0.504263877868652,-0.234965771436691,-0.823218405246735,-0.516819715499878,-0.30316948890686,-0.811633586883545,-0.499338775873184,0.383441686630249,-0.568162262439728,-0.728123664855957,0.41944408416748,-0.525777101516724,-0.740016996860504,0.332249671220779,-0.525535643100739,-0.783212840557098,0.311456710100174,-0.573193848133087,-0.757920682430267,-0.0803089961409569,-0.611364305019379,-0.787263691425323,-0.0619947649538517,-0.676391839981079,-0.733928322792053,7.22366385161877e-05,-0.65338122844696,-0.757029056549072,-0.0131850112229586,-0.585571706295013,-0.810513377189636,0.988101661205292,-0.0361553728580475,-0.149491921067238,0.976820886135101,-0.0930918455123901,-0.192755863070488,0.963457226753235,-0.189863547682762,-0.18894961476326,0.969894349575043,-0.161111637949944,-0.182614281773567,0.969314694404602,0.0269321706146002,-0.24434357881546,0.969677567481995,-0.0105489622801542,-0.244160041213036,0.952875733375549,-0.153783515095711,-0.261493057012558,0.952937304973602,-0.184788838028908,-0.240340530872345,0.945904433727264,-0.274370044469833,-0.173164367675781,0.95037978887558,-0.307163625955582,-0.0492843836545944,0.970069587230682,-0.172961220145226,-0.170438870787621,0.95404064655304,-0.154238864779472,-0.25693741440773,0.951351344585419,-0.306604653596878,-0.0304018147289753,0.951415598392487,-0.304716259241104,-0.0442305468022823,0.962226629257202,-0.272230058908463,-0.00328097422607243,0.940120220184326,-0.332454144954681,0.0751559436321259,-0.333226323127747,-0.762410461902618,-0.554698586463928,-0.314611256122589,-0.78231418132782,-0.53759104013443,-0.303563177585602,-0.795579254627228,-0.524312019348145,-0.349751710891724,-0.767096936702728,-0.537806570529938,-0.351375490427017,-0.780586779117584,-0.516932964324951,-0.30422043800354,-0.798114061355591,-0.520061433315277, +-0.273103624582291,-0.804716408252716,-0.527111113071442,-0.332649290561676,-0.787299573421478,-0.519137620925903,-0.122855968773365,-0.826424360275269,-0.549480974674225,-0.222046941518784,-0.832215905189514,-0.508047103881836,-0.268387854099274,-0.827814340591431,-0.492637306451797,-0.164826035499573,-0.829740047454834,-0.533257782459259,-0.158441036939621,-0.845985472202301,-0.509121835231781,-0.231398090720177,-0.841643512248993,-0.487945944070816,-0.140885233879089,-0.855650842189789,-0.498009026050568,-0.100147448480129,-0.853318929672241,-0.511680841445923,-0.185463726520538,-0.870957314968109,-0.455012559890747,-0.284052759408951,-0.821176707744598,-0.494957387447357,-0.198147669434547,-0.861954510211945,-0.466660380363464,-0.12821289896965,-0.89146888256073,-0.434562683105469,0.987300992012024,0.122974812984467,0.10056795924902,0.98730081319809,0.122976653277874,0.100567795336246,0.987300753593445,0.122976899147034,0.100567772984505,0.94087016582489,0.13663312792778,0.309991478919983,0.940870225429535,0.136632815003395,0.309991508722305,0.940870583057404,0.136630341410637,0.309991747140884,0.95948851108551,0.133176133036613,0.248285919427872,0.959488272666931,0.133178442716599,0.248285710811615,0.959488034248352,0.133180141448975,0.248285561800003,0.976925253868103,0.128161981701851,0.170855477452278,0.976925492286682,0.128160551190376,0.17085562646389,0.976925611495972,0.128158777952194,0.170855775475502,0.988181352615356,0.122332662343979,0.0923708751797676,0.988181173801422,0.122334092855453,0.0923707485198975,0.988180935382843,0.122335836291313,0.0923705846071243,0.974377989768982,0.129079714417458,0.184190541505814,0.974378168582916,0.129077285528183,0.18419075012207,0.974377810955048,0.129080355167389,0.184190467000008,0.988503098487854,0.122085854411125,0.0892001092433929,0.988503396511078,0.122083455324173,0.0892003253102303,0.988503277301788,0.122084513306618,0.0892002284526825,0.98080849647522,0.126563087105751,0.148312747478485,0.980808615684509,0.126562029123306,0.148312851786613,0.980808854103088,0.126559123396873,0.148313090205193, +0.991206765174866,0.119461931288242,0.0569050163030624,0.991206586360931,0.119463592767715,0.0569048635661602,0.991206586360931,0.11946289986372,0.0569049194455147,0.0445154793560505,-0.0852231681346893,-0.995367050170898,0.0445151217281818,-0.0852200910449028,-0.995367228984833,0.0445177853107452,-0.0852431803941727,-0.995365142822266,-0.148282393813133,0.0724327936768532,0.986288905143738,-0.148282125592232,0.0724304467439651,0.986289143562317,-0.148281320929527,0.0724235102534294,0.986289739608765,0.993388533592224,0.112455956637859,-0.0230887103825808,0.993388652801514,0.112453907728195,-0.0230885241180658,0.993388712406158,0.112454332411289,-0.023088563233614,0.966395616531372,0.0895658433437347,-0.240951105952263,0.966395735740662,0.089565098285675,-0.240951046347618,0.966396391391754,0.0895600765943527,-0.240950614213943,0.968579709529877,0.130884572863579,0.211477071046829,0.968579709529877,0.130885526537895,0.211477026343346,0.968579351902008,0.130887761712074,0.211476787924767,0.980583488941193,0.126665726304054,0.149705737829208,0.980583846569061,0.126662567257881,0.149706020951271,0.98058408498764,0.12666055560112,0.149706199765205,0.985588669776917,0.124084331095219,0.114970907568932,0.985588252544403,0.124086581170559,0.114970684051514,0.985588312149048,0.124086260795593,0.114970713853836,0.992449283599854,0.11760375648737,0.0348397605121136,0.992449343204498,0.117603965103626,0.0348397456109524,0.99244898557663,0.117606155574322,0.0348395444452763,0.94575423002243,0.1358472853899,0.295117616653442,0.945754528045654,0.135845899581909,0.295117765665054,0.945754647254944,0.135844126343727,0.295117884874344,0.958920001983643,0.133303225040436,0.250405132770538,0.958919763565063,0.133305251598358,0.250404953956604,0.958919823169708,0.133305370807648,0.250404983758926,0.972667455673218,0.129646971821785,0.192638725042343,0.972667455673218,0.129646882414818,0.192638739943504,0.972667455673218,0.129646852612495,0.192638739943504,0.980946123600006,0.126499876379967,0.147453516721725,0.980946123600006,0.126499876379967,0.147453516721725, +0.980946004390717,0.126500844955444,0.147453427314758,0.949709057807922,0.135154128074646,0.282464653253555,0.949709057807922,0.135153338313103,0.282464683055878,0.949709057807922,0.135153487324715,0.282464683055878,0.958901464939117,0.133309498429298,0.250473111867905,0.958901464939117,0.133309334516525,0.250473141670227,0.958901524543762,0.13330814242363,0.250473201274872,0.974077522754669,0.129178687930107,0.185703799128532,0.974077343940735,0.129179939627647,0.185703679919243,0.97407728433609,0.129180625081062,0.185703620314598,0.976899802684784,0.128170877695084,0.170994207262993,0.976899862289429,0.128170177340508,0.170994266867638,0.976899981498718,0.128169164061546,0.170994356274605,0.963156461715698,0.132316514849663,0.234140992164612,0.963156342506409,0.132317438721657,0.234140902757645,0.963156342506409,0.132318198680878,0.234140872955322,0.963840663433075,0.132148683071136,0.231404304504395,0.96384072303772,0.132147952914238,0.231404364109039,0.963840663433075,0.132148578763008,0.231404304504395,0.924558162689209,0.13882452249527,0.354851990938187,0.924558222293854,0.138824015855789,0.354852050542831,0.924558460712433,0.138822287321091,0.354852199554443,0.923451483249664,0.138950705528259,0.357673108577728,0.92345130443573,0.138952434062958,0.357672959566116,0.92345130443573,0.138953238725662,0.357672899961472,0.971178889274597,0.130117326974869,0.199702337384224,0.971179008483887,0.130116432905197,0.19970241189003,0.971179068088531,0.13011671602726,0.19970241189003,0.963555693626404,0.132219150662422,0.2325479388237,0.963555693626404,0.132218897342682,0.232547953724861,0.963555574417114,0.132220074534416,0.232547849416733,0.953945875167847,0.134349271655083,0.268211722373962,0.953945994377136,0.134348124265671,0.268211841583252,0.953946113586426,0.134347468614578,0.268211901187897,0.94140636920929,0.136549204587936,0.308396488428116,0.94140625,0.136549845337868,0.308396428823471,0.94140625,0.136550322175026,0.308396399021149,0.990744054317474,0.120004437863827,0.0634445175528526,0.990744113922119,0.120003893971443,0.0634445697069168, +0.990744233131409,0.120002821087837,0.0634446665644646,0.982227504253387,0.125898063182831,0.139207884669304,0.982227385044098,0.125899121165276,0.139207795262337,0.982227385044098,0.125899210572243,0.139207780361176,0.978512406349182,0.12754063308239,0.162009462714195,0.978512406349182,0.127540543675423,0.162009462714195,0.978512525558472,0.127539575099945,0.162009552121162,0.961696207523346,0.132668524980545,0.239873945713043,0.961696088314056,0.132669448852539,0.239873856306076,0.961696088314056,0.132669433951378,0.239873856306076,0.986744403839111,0.123355321586132,0.105446629226208,0.986744403839111,0.123355358839035,0.105446629226208,0.986744284629822,0.123356208205223,0.105446547269821,0.972074210643768,0.129837557673454,0.19548374414444,0.972074329853058,0.129836738109589,0.195483818650246,0.972074449062347,0.129835903644562,0.195483893156052,0.98921000957489,0.121498167514801,0.0818643867969513,0.98921000957489,0.12149902433157,0.0818643197417259,0.989209890365601,0.121499188244343,0.0818642899394035,0.975640177726746,0.128634363412857,0.177706092596054,0.975640296936035,0.128634199500084,0.177706122398376,0.975640118122101,0.128635048866272,0.177706018090248,0.985431611537933,0.124181434512138,0.116204828023911,0.985431790351868,0.12418057769537,0.116204917430878,0.985431671142578,0.124180786311626,0.116204880177975,0.96830153465271,0.130964517593384,0.212697982788086,0.96830153465271,0.130964294075966,0.212698012590408,0.968301594257355,0.130964130163193,0.21269802749157,0.981822550296783,0.126093253493309,0.141862377524376,0.981822550296783,0.126093402504921,0.141862362623215,0.981822609901428,0.126092925667763,0.141862407326698,0.96253365278244,0.132468640804291,0.236603185534477,0.962533593177795,0.13246913254261,0.236603140830994,0.962533473968506,0.132469952106476,0.236603066325188,0.987999975681305,0.122471891343594,0.0941099002957344,0.988000094890594,0.122471086680889,0.0941099748015404,0.988000094890594,0.122471809387207,0.0941099226474762,0.974833250045776,0.128920555114746,0.181877985596657,0.974833369255066,0.128919839859009,0.181878060102463, +0.974833488464355,0.128918558359146,0.181878164410591,0.986889660358429,0.123257182538509,0.104194618761539,0.986889481544495,0.12325843423605,0.104194507002831,0.986889541149139,0.123257927596569,0.104194551706314,0.97484028339386,0.128916919231415,0.181842893362045,0.974840342998505,0.128917455673218,0.181842863559723,0.974840342998505,0.128916695713997,0.181842923164368,0.992698073387146,0.109969794750214,-0.0495696812868118,0.992698013782501,0.109970465302467,-0.0495697446167469,0.992698013782501,0.10997024923563,-0.0495697259902954,0.993431210517883,0.114421792328358,-0.00146110914647579,0.993431150913239,0.114422008395195,-0.00146112905349582,0.993430972099304,0.114423803985119,-0.0014612921513617,0.988604307174683,0.104131609201431,-0.108711317181587,0.988604485988617,0.104129947721958,-0.108711168169975,0.988604545593262,0.104129701852798,-0.108711145818233,0.990658462047577,0.106504090130329,-0.085162989795208,0.990658402442932,0.106504343450069,-0.0851630121469498,0.990658462047577,0.106504052877426,-0.0851629823446274,0.993326842784882,0.112069129943848,-0.0272453110665083,0.993326902389526,0.112069457769394,-0.0272453427314758,0.993326902389526,0.112068653106689,-0.0272452663630247,0.993468523025513,0.113440200686455,-0.0123155536130071,0.993468403816223,0.113440997898579,-0.0123156262561679,0.993468344211578,0.113441251218319,-0.0123156486079097,0.986985206604004,0.102568872272968,-0.123854033648968,0.986985325813293,0.102568671107292,-0.123854026198387,0.986985206604004,0.102569073438644,-0.12385405600071,0.985754251480103,0.101495556533337,-0.13411657512188,0.985754251480103,0.101495139300823,-0.134116530418396,0.985754311084747,0.101494893431664,-0.134116515517235,0.982225954532623,0.12589955329895,0.139218091964722,0.982225835323334,0.125899881124496,0.139218047261238,0.982225775718689,0.12590104341507,0.139217957854271,0.983257055282593,0.125385448336601,0.132228046655655,0.983257114887238,0.125384286046028,0.132228136062622,0.983257174491882,0.125383600592613,0.132228195667267,0.989395678043365,0.121335685253143,0.0798363834619522, +0.989395618438721,0.121336333453655,0.0798363238573074,0.989395320415497,0.121338583528996,0.0798361226916313,0.991689741611481,0.118831276893616,0.049300990998745,0.99168998003006,0.118829116225243,0.0493011884391308,0.99168998003006,0.118828944861889,0.049301203340292,0.981151461601257,0.126406148076057,0.146162658929825,0.981151342391968,0.126406356692314,0.146162614226341,0.981151580810547,0.126404374837875,0.146162793040276,0.977858185768127,0.121379107236862,0.170471966266632,0.977858185768127,0.121378064155579,0.170472040772438,0.977858424186707,0.1213768273592,0.170472174882889,0.987230658531189,0.116632834076881,0.108500882983208,0.987230539321899,0.116634041070938,0.108500771224499,0.987230479717255,0.116634450852871,0.108500733971596,0.947708189487457,0.129386872053146,0.291733205318451,0.947708368301392,0.129386052489281,0.291733294725418,0.947708427906036,0.129385352134705,0.291733354330063,0.959629893302917,0.126890555024147,0.251016438007355,0.959629833698273,0.126891180872917,0.25101637840271,0.959629893302917,0.12689034640789,0.251016467809677,0.979687750339508,0.120620056986809,0.160196527838707,0.979687631130219,0.120621167123318,0.160196423530579,0.979687392711639,0.12062332034111,0.160196229815483,0.98559182882309,0.117667146027088,0.121503740549088,0.985592067241669,0.117664881050587,0.121503949165344,0.985591948032379,0.117666095495224,0.121503837406635,0.948004961013794,0.129331469535828,0.29079195857048,0.948005020618439,0.129330649971962,0.290792047977448,0.948004961013794,0.129331365227699,0.29079195857048,0.962325751781464,0.126235887408257,0.240819096565247,0.962325751781464,0.126235097646713,0.24081914126873,0.962326049804688,0.126232400536537,0.24081939458847,0.956083178520203,0.1276945322752,0.263816297054291,0.956082940101624,0.127697125077248,0.263816058635712,0.956082820892334,0.127697765827179,0.263815999031067,0.962244689464569,0.126256048679352,0.24113193154335,0.962244749069214,0.12625540792942,0.241131991147995,0.962244749069214,0.12625615298748,0.241131961345673,0.994235694408417,0.105580441653728,-0.0186657756567001, +0.994235694408417,0.105579480528831,-0.0186656843870878,0.994235932826996,0.105577133595943,-0.0186654664576054,0.994071245193481,0.108245611190796,0.0102573549374938,0.994071006774902,0.108247935771942,0.0102571388706565,0.994071006774902,0.108247838914394,0.0102571481838822,0.953175485134125,0.12831474840641,0.273846358060837,0.953175485134125,0.128314882516861,0.273846358060837,0.953175485134125,0.128314882516861,0.273846328258514,0.948643982410431,0.12921042740345,0.288754731416702,0.948643982410431,0.129210397601128,0.288754731416702,0.948643803596497,0.129212930798531,0.288754552602768,0.987915635108948,0.116163767874241,0.102609291672707,0.987915933132172,0.116160877048969,0.102609559893608,0.987915933132172,0.116161942481995,0.102609477937222,0.928574800491333,0.132428184151649,0.346715420484543,0.928574919700623,0.132427379488945,0.34671550989151,0.928575158119202,0.132425248622894,0.346715688705444,0.9907186627388,0.113830722868443,0.074290968477726,0.990718483924866,0.113833241164684,0.0742907449603081,0.990718603134155,0.113831236958504,0.0742909237742424,0.929362535476685,0.132318034768105,0.344640731811523,0.92936235666275,0.132319658994675,0.344640582799911,0.929362416267395,0.132319137454033,0.344640642404556,0.964391350746155,0.125703111290932,0.232697367668152,0.96439129114151,0.125703722238541,0.232697322964668,0.96439117193222,0.125705569982529,0.232697173953056,0.946563720703125,0.129598632454872,0.295332580804825,0.946563899517059,0.129596829414368,0.295332759618759,0.94656378030777,0.129598900675774,0.295332580804825,0.976446747779846,0.121927477419376,0.178004056215286,0.976446986198425,0.121925301849842,0.178004264831543,0.97644704580307,0.121924921870232,0.178004294633865,0.957857847213745,0.127301052212715,0.257493197917938,0.957857847213745,0.127301454544067,0.257493168115616,0.95785790681839,0.127300530672073,0.257493257522583,0.978223979473114,0.121230348944664,0.168466836214066,0.978223860263824,0.121231287717819,0.168466746807098,0.978223979473114,0.121230214834213,0.168466851115227, +0.95816832780838,0.127229705452919,0.256371349096298,0.958168089389801,0.127230748534203,0.256371200084686,0.958168268203735,0.127229332923889,0.256371349096298,0.983702003955841,0.118716843426228,0.135043263435364,0.983701825141907,0.118718311190605,0.135043129324913,0.983701646327972,0.118720144033432,0.135042950510979,0.965053081512451,0.125529497861862,0.230032250285149,0.96505331993103,0.125527665019035,0.230032429099083,0.965053260326385,0.125529006123543,0.230032324790955,0.990671992301941,0.113880164921284,0.0748350918292999,0.990672171115875,0.113878808915615,0.0748352184891701,0.99067234992981,0.11387687176466,0.0748353973031044,0.970711708068848,0.123889558017254,0.205840155482292,0.970711588859558,0.123891517519951,0.20584000647068,0.970711469650269,0.123891904950142,0.205839931964874,0.980222404003143,0.120388798415661,0.157068684697151,0.980222463607788,0.120388403534889,0.157068714499474,0.980222284793854,0.120389968156815,0.157068565487862,0.950269222259521,0.128899574279785,0.283501863479614,0.950269401073456,0.128897994756699,0.283502012491226,0.95026957988739,0.1288972645998,0.283502101898193,0.978390455245972,0.12116302549839,0.167545974254608,0.978390395641327,0.121163733303547,0.167545914649963,0.978390395641327,0.121163569390774,0.167545929551125,0.958363056182861,0.12718591094017,0.25566378235817,0.958363056182861,0.127186089754105,0.25566378235817,0.958362877368927,0.127187862992287,0.255663603544235,0.95960795879364,0.126898124814034,0.251096844673157,0.95960807800293,0.126896321773529,0.251096993684769,0.959608018398285,0.126896798610687,0.251096934080124,0.933132350444794,0.131786108016968,0.334509313106537,0.933132350444794,0.131785646080971,0.334509342908859,0.933132290840149,0.131786599755287,0.334509253501892,0.977652966976166,0.121460452675819,0.171587377786636,0.977653086185455,0.121459521353245,0.171587452292442,0.977653026580811,0.121460035443306,0.171587407588959,0.970690310001373,0.12389861792326,0.205935597419739,0.970690369606018,0.123898103833199,0.205935642123222,0.970690429210663,0.123897664248943,0.205935671925545, +0.976544439792633,0.121888041496277,0.177494511008263,0.976544380187988,0.121888466179371,0.177494466304779,0.976544499397278,0.12188732624054,0.177494585514069,0.912351608276367,0.134390622377396,0.386721670627594,0.912351608276367,0.134391903877258,0.386721611022949,0.912351608276367,0.134390741586685,0.386721670627594,0.886259913444519,0.136758536100388,0.442538648843765,0.886259794235229,0.136759713292122,0.442538529634476,0.886260092258453,0.136757865548134,0.442538768053055,0.987831056118011,0.116219729185104,0.103358447551727,0.987830817699432,0.116221226751804,0.103358291089535,0.987830698490143,0.11622192710638,0.103358224034309,0.987586557865143,0.116392463445663,0.105478152632713,0.987586617469788,0.116391755640507,0.105478212237358,0.987586438655853,0.116393364965916,0.105478063225746,0.964146792888641,0.125769779086113,0.23367278277874,0.964146971702576,0.125767961144447,0.233672961592674,0.964147090911865,0.125766739249229,0.233673065900803,0.965148687362671,0.12550088763237,0.229646533727646,0.965148568153381,0.125502109527588,0.229646429419518,0.965148568153381,0.125501990318298,0.229646444320679,0.994183838367462,0.107637740671635,0.00355715490877628,0.994183897972107,0.107637859880924,0.00355714606121182,0.994183659553528,0.10763917863369,0.00355702172964811,0.993943691253662,0.103980965912342,-0.0355512909591198,0.993943929672241,0.103979744017124,-0.0355511829257011,0.993943989276886,0.103979110717773,-0.0355511233210564,0.991300821304321,0.113227240741253,0.0670987665653229,0.991300761699677,0.113228119909763,0.0670986846089363,0.991300940513611,0.113226413726807,0.0670988485217094,0.993985533714294,0.108596533536911,0.0141271622851491,0.99398535490036,0.108598105609417,0.0141270160675049,0.993985176086426,0.108600005507469,0.0141268400475383,0.994257569313049,0.106935635209084,-0.00410922896116972,0.994257748126984,0.106933824717999,-0.004109060857445,0.994257390499115,0.106936372816563,-0.00410929787904024,0.993025720119476,0.10163526982069,-0.0597509294748306,0.993025958538055,0.101633109152317,-0.0597507283091545, +0.993025958538055,0.101633183658123,-0.0597507357597351,0.915729939937592,0.134019389748573,0.378784209489822,0.915729939937592,0.134019359946251,0.378784209489822,0.91573041677475,0.134015947580338,0.378784596920013,0.954915225505829,0.127947047352791,0.267892688512802,0.954914927482605,0.127949655056,0.267892450094223,0.954915702342987,0.127943500876427,0.267893046140671,0.975760042667389,0.122176550328732,0.181563287973404,0.975759506225586,0.122181601822376,0.181562826037407,0.975759208202362,0.122184105217457,0.181562587618828,0.990902006626129,0.113650001585484,0.0720891803503036,0.990902185440063,0.113648608326912,0.0720893144607544,0.990902066230774,0.113649763166904,0.0720892027020454,0.691595673561096,0.140456691384315,0.708496510982513,0.691596388816833,0.14044976234436,0.708497166633606,0.691595196723938,0.140461295843124,0.70849609375,0.933020830154419,0.131809294223785,0.334811061620712,0.933021664619446,0.131801769137383,0.33481177687645,0.933020055294037,0.131816640496254,0.334810376167297,0.975918650627136,0.122127719223499,0.180741891264915,0.975919187068939,0.122122637927532,0.180742368102074,0.975919485092163,0.122119888663292,0.180742621421814,0.974451422691345,0.122649885714054,0.188153311610222,0.974451124668121,0.12265245616436,0.188153073191643,0.974450647830963,0.122655853629112,0.188152730464935,0.974711835384369,0.122563600540161,0.186855718493462,0.974712193012238,0.122560173273087,0.186856031417847,0.974712431430817,0.122558809816837,0.186856180429459,0.978911519050598,0.120948038995266,0.164632514119148,0.978911340236664,0.120949372649193,0.164632394909859,0.978911519050598,0.12094784528017,0.164632543921471,0.972265124320984,0.123393267393112,0.198682248592377,0.972265005111694,0.123394392430782,0.198682144284248,0.972265183925629,0.123393699526787,0.198682233691216,0.983044266700745,0.119057081639767,0.139461189508438,0.9830442070961,0.119057655334473,0.139461144804955,0.98304408788681,0.119058676064014,0.139461040496826,0.990040481090546,0.115635387599468,0.0803027525544167,0.990040600299835,0.115633420646191,0.0803029239177704, +0.990040719509125,0.115633085370064,0.080302968621254,0.942988395690918,0.131355404853821,0.305808246135712,0.942988514900208,0.131354928016663,0.305808335542679,0.942988812923431,0.131351351737976,0.305808633565903,0.985869884490967,0.118683524429798,0.118215076625347,0.985869705677032,0.118685223162174,0.118214920163155,0.985869765281677,0.118684574961662,0.118214979767799,-0.0378633625805378,-0.0961675345897675,-0.99464476108551,-0.0378637984395027,-0.0961635485291481,-0.994645118713379,-0.0378660298883915,-0.0961431413888931,-0.994647026062012,-0.165296077728271,0.0729663074016571,0.983541131019592,-0.165292471647263,0.072933092713356,0.983544290065765,-0.165289804339409,0.0729089006781578,0.983546435832977,0.988689601421356,0.116765901446342,0.0941211059689522,0.988689780235291,0.116764269769192,0.0941212549805641,0.988689661026001,0.116764664649963,0.0941212028264999,0.99398797750473,0.106153756380081,-0.0268203541636467,0.99398797750473,0.106153711676598,-0.0268203485757113,0.993988037109375,0.106153175234795,-0.0268203001469374,0.979052484035492,0.12207880616188,0.162950992584229,0.979052424430847,0.122079156339169,0.162950962781906,0.979052543640137,0.122078366577625,0.162951037287712,0.989462316036224,0.116139061748981,0.0864651650190353,0.989462077617645,0.116140320897102,0.0864650383591652,0.989461839199066,0.116142854094505,0.0864648073911667,0.977419137954712,0.122740745544434,0.172007381916046,0.977419376373291,0.122738607227802,0.172007575631142,0.977419495582581,0.122738473117352,0.172007605433464,0.987668931484222,0.11751501262188,0.103442385792732,0.987668931484222,0.117515094578266,0.103442378342152,0.987668812274933,0.117516942322254,0.10344222933054,0.990437805652618,0.115263245999813,0.0758112221956253,0.990438044071198,0.115261293947697,0.0758114010095596,0.990437984466553,0.115261651575565,0.0758113712072372,0.993783116340637,0.105256155133247,-0.0362831316888332,0.993783056735992,0.10525581240654,-0.0362830981612206,0.993783295154572,0.105254426598549,-0.0362829752266407,0.98523998260498,0.119057461619377,0.122994638979435, +0.985239863395691,0.119058601558208,0.122994534671307,0.985239923000336,0.119057416915894,0.122994624078274,0.99276340007782,0.112409010529518,0.0422502420842648,0.992763221263885,0.112410306930542,0.0422501228749752,0.992763102054596,0.112412497401237,0.0422499254345894,0.979666590690613,0.12182105332613,0.159414738416672,0.979666888713837,0.121819160878658,0.159414932131767,0.979666769504547,0.121819399297237,0.159414887428284,0.982567667961121,0.120486110448837,0.141577064990997,0.982567608356476,0.120485812425613,0.141577079892159,0.982567727565765,0.120484821498394,0.141577169299126,0.993822276592255,0.109988391399384,0.014835374429822,0.993822038173676,0.109989583492279,0.0148352608084679,0.993822276592255,0.109988376498222,0.0148353753611445,0.993104696273804,0.111800365149975,0.0352674797177315,0.993104636669159,0.111801572144032,0.0352673716843128,0.993104517459869,0.11180180311203,0.0352673456072807,0.989453434944153,0.116147957742214,0.0865551382303238,0.989453434944153,0.116147711873055,0.0865551605820656,0.989453315734863,0.116148971021175,0.086555041372776,0.985457956790924,0.118932254612446,0.121358007192612,0.985458076000214,0.118931047618389,0.121358118951321,0.985458135604858,0.118930645287037,0.121358156204224,0.991909146308899,0.113642618060112,0.0565827712416649,0.991909205913544,0.113643035292625,0.0565827414393425,0.991909146308899,0.113642655313015,0.0565827675163746,0.985998630523682,0.118606418371201,0.117214441299438,0.985998690128326,0.118606753647327,0.117214426398277,0.985998630523682,0.118606336414814,0.117214448750019,0.994017362594604,0.109105467796326,0.00505351647734642,0.99401730298996,0.109105907380581,0.00505347596481442,0.99401730298996,0.109105631709099,0.00505350064486265,0.989081740379333,0.116454139351845,0.090309202671051,0.989081799983978,0.116454422473907,0.0903091803193092,0.989081621170044,0.116455316543579,0.0903090909123421,0.988134503364563,0.117182672023773,0.0992894917726517,0.988134622573853,0.117181770503521,0.0992895737290382,0.988134622573853,0.117181934416294,0.099289558827877, +0.973909378051758,0.124024331569672,0.190048530697823,0.973909437656403,0.124024160206318,0.190048545598984,0.973909437656403,0.124024257063866,0.190048530697823,0.991727232933044,0.11387012898922,0.0592514015734196,0.991727232933044,0.113870054483414,0.0592514052987099,0.991727292537689,0.113869577646255,0.0592514500021935,0.942249059677124,0.131478846073151,0.308026015758514,0.942249119281769,0.131479293107986,0.308026015758514,0.942249119281769,0.131479188799858,0.308026015758514,0.987560570240021,0.117590516805649,0.10438696295023,0.987560629844666,0.11759065836668,0.10438696295023,0.987560629844666,0.117590688169003,0.10438696295023,0.99283242225647,0.102881707251072,-0.060820683836937,0.99283242225647,0.10288167744875,-0.0608206801116467,0.992832481861115,0.10288118571043,-0.0608206354081631,0.971974194049835,0.124668888747692,0.199308454990387,0.97197413444519,0.124669373035431,0.199308410286903,0.97197413444519,0.124669544398785,0.199308395385742,0.986392736434937,0.0954181998968124,-0.133883416652679,0.986392736434937,0.0954180508852005,-0.133883401751518,0.986392676830292,0.0954187884926796,-0.133883461356163,0.986413896083832,0.118349500000477,0.113934427499771,0.986413955688477,0.118348680436611,0.113934502005577,0.986413955688477,0.118349671363831,0.113934427499771,0.993896186351776,0.109703369438648,0.0116437533870339,0.99389636516571,0.109702438116074,0.0116438418626785,0.99389636516571,0.109701670706272,0.011643910780549,0.986858665943146,0.118062451481819,0.110324181616306,0.986858606338501,0.118063233792782,0.1103241071105,0.986858546733856,0.118062920868397,0.110324122011662,0.993506252765656,0.110924728214741,0.0253189634531736,0.9935063123703,0.110925041139126,0.0253189392387867,0.993506014347076,0.110926568508148,0.0253187920898199,0.986895203590393,0.118040755391121,0.110020123422146,0.986895382404327,0.118039146065712,0.110020272433758,0.986895382404327,0.118038453161716,0.110020324587822,0.989494979381561,0.116111971437931,0.0861271917819977,0.989494800567627,0.116112627089024,0.0861271247267723, +0.989494919776917,0.116111874580383,0.0861271917819977,0.979908645153046,0.121714137494564,0.158002883195877,0.979908585548401,0.121714927256107,0.158002808690071,0.979908764362335,0.121713221073151,0.158002972602844,0.989931106567383,0.115730904042721,0.0815043151378632,0.989930927753448,0.115732580423355,0.0815041586756706,0.989930748939514,0.115734353661537,0.0815039947628975,0.984391629695892,0.119538746774197,0.129165887832642,0.984391748905182,0.119536899030209,0.129166036844254,0.984391570091248,0.119538314640522,0.129165902733803,0.952624380588531,0.129574671387672,0.275167524814606,0.952624678611755,0.129573181271553,0.275167673826218,0.952624619007111,0.12957264482975,0.27516770362854,0.936925768852234,0.13232958316803,0.323510468006134,0.936925709247589,0.132330119609833,0.323510408401489,0.936925947666168,0.132327765226364,0.323510617017746,0.97880882024765,0.122178323566914,0.164334118366241,0.978808641433716,0.122180461883545,0.164333909749985,0.978808641433716,0.122181057929993,0.164333879947662,0.979636549949646,0.121832653880119,0.159590348601341,0.979636609554291,0.121832080185413,0.159590393304825,0.979636788368225,0.121831119060516,0.159590497612953,0.977721571922302,0.122618891298771,0.170367583632469,0.977721571922302,0.122619897127151,0.170367494225502,0.977721512317657,0.122619591653347,0.170367509126663,0.985385417938232,0.118973463773727,0.121905416250229,0.985385477542877,0.11897374689579,0.121905408799648,0.985385596752167,0.118972569704056,0.121905513107777,0.993728458881378,0.110303647816181,0.0183521527796984,0.993728339672089,0.110304720699787,0.0183520540595055,0.993728339672089,0.110304720699787,0.0183520540595055,0.993706524372101,0.104992263019085,-0.0390405021607876,0.993706405162811,0.10499232262373,-0.0390405058860779,0.993706226348877,0.104994066059589,-0.0390406660735607,0.886176824569702,0.137785017490387,0.44238668680191,0.886177122592926,0.137782245874405,0.44238692522049,0.886177062988281,0.137782603502274,0.442386895418167,0.920292496681213,0.134569451212883,0.367359220981598, +0.920292615890503,0.134569182991982,0.367359280586243,0.920293390750885,0.134562134742737,0.367359936237335,0.993624627590179,0.106752686202526,-0.0362488366663456,0.993624567985535,0.106753185391426,-0.0362488850951195,0.993624627590179,0.106753543019295,-0.0362489186227322,0.993142545223236,0.113020427525043,0.0299052279442549,0.993142664432526,0.113020114600658,0.0299052633345127,0.993142664432526,0.113019198179245,0.0299053452908993,0.971242427825928,0.126975357532501,0.201408505439758,0.971242308616638,0.126976281404495,0.201408416032791,0.971242547035217,0.126974329352379,0.201408594846725,0.989640831947327,0.0999237298965454,-0.103083997964859,0.989640593528748,0.099925808608532,-0.103084199130535,0.989640533924103,0.099926121532917,-0.103084228932858,0.987258672714233,0.119544371962547,0.105020955204964,0.987258732318878,0.119544014334679,0.105020992457867,0.987258672714233,0.119544632732868,0.105020932853222,0.992119252681732,0.114838309586048,0.0501174256205559,0.992119312286377,0.114837676286697,0.0501174852252007,0.992119371891022,0.114836506545544,0.050117589533329,0.97891503572464,0.124085880815983,0.162259370088577,0.978914856910706,0.124087035655975,0.162259265780449,0.978914856910706,0.124087370932102,0.162259235978127,0.989520788192749,0.117746151983738,0.0835732519626617,0.989520907402039,0.117745824158192,0.0835732892155647,0.989520609378815,0.117747701704502,0.0835731029510498,0.971203982830048,0.126990735530853,0.20158426463604,0.971204161643982,0.126988872885704,0.201584443449974,0.971204102039337,0.126989439129829,0.201584383845329,0.984859704971313,0.121096037328243,0.124044887721539,0.984859764575958,0.121095463633537,0.124044939875603,0.984859943389893,0.121093928813934,0.124045088887215,0.961532354354858,0.129785120487213,0.24209788441658,0.961532175540924,0.129786670207977,0.242097735404968,0.961532354354858,0.129785895347595,0.242097839713097,0.991329550743103,0.115879781544209,0.0619498714804649,0.991329491138458,0.115880526602268,0.0619498006999493,0.991329252719879,0.115881741046906,0.0619496777653694, +0.976896107196808,0.124928578734398,0.173397913575172,0.976896345615387,0.124927341938019,0.173398047685623,0.976896405220032,0.124926909804344,0.173398092389107,0.987113237380981,0.119646273553371,0.106264799833298,0.987113296985626,0.119646713137627,0.106264770030975,0.987113296985626,0.119645982980728,0.10626482963562,0.969966411590576,0.127388641238213,0.207213670015335,0.969966232776642,0.12738935649395,0.207213565707207,0.969965934753418,0.127391785383224,0.207213342189789,0.993754744529724,0.111162111163139,0.00972301326692104,0.993754982948303,0.111159831285477,0.00972323026508093,0.993754863739014,0.111160844564438,0.00972313340753317,0.989919722080231,0.11737846583128,0.0792542770504951,0.98991984128952,0.117377445101738,0.0792543739080429,0.98991996049881,0.117376215755939,0.0792544931173325,0.989030361175537,0.118172660470009,0.0886236280202866,0.989030241966248,0.118173897266388,0.088623508810997,0.989030122756958,0.118175096809864,0.0886233970522881,0.981996893882751,0.122653275728226,0.143661007285118,0.981996953487396,0.122652038931847,0.143661111593246,0.981997191905975,0.122649893164635,0.143661305308342,0.982324540615082,0.122484378516674,0.14154876768589,0.982324302196503,0.122486516833305,0.141548559069633,0.982324302196503,0.122486762702465,0.141548544168472,0.976601183414459,0.125044882297516,0.174968376755714,0.976601183414459,0.125044628977776,0.174968406558037,0.976601183414459,0.125044941902161,0.174968376755714,0.966392397880554,0.128469839692116,0.222668454051018,0.966392457485199,0.12846951186657,0.22266848385334,0.966392397880554,0.128470048308372,0.222668424248695,0.963452875614166,0.129285305738449,0.234614342451096,0.963452935218811,0.129284769296646,0.234614387154579,0.963453054428101,0.129283592104912,0.234614506363869,0.970964014530182,0.127066627144814,0.202689364552498,0.970963895320892,0.127067774534225,0.20268926024437,0.970963597297668,0.127070292830467,0.20268902182579,0.975781381130219,0.125366255640984,0.179260119795799,0.975781559944153,0.125363767147064,0.179260343313217, +0.975781619548798,0.125364080071449,0.179260328412056,0.945879876613617,0.133193224668503,0.29592376947403,0.945879876613617,0.133193001151085,0.295923799276352,0.945879936218262,0.133193552494049,0.29592376947403,0.959652423858643,0.130257159471512,0.249199390411377,0.959652483463287,0.130256652832031,0.249199450016022,0.959652662277222,0.130254939198494,0.249199613928795,0.923298716545105,0.136705785989761,0.358930289745331,0.923298537731171,0.136707842350006,0.358930110931396,0.923298716545105,0.136706069111824,0.358930259943008,0.951855599880219,0.132014140486717,0.276664435863495,0.951855421066284,0.132015779614449,0.276664286851883,0.95185512304306,0.132018506526947,0.276664018630981,0.938517987728119,0.134484589099884,0.317958891391754,0.938518345355988,0.134481698274612,0.317959159612656,0.938518047332764,0.134484156966209,0.317958921194077,0.972827911376953,0.12644200026989,0.193954348564148,0.972828149795532,0.126440048217773,0.193954527378082,0.972828090190887,0.126440301537514,0.193954512476921,0.971503615379333,0.126890033483505,0.200199574232101,0.971503555774689,0.126889765262604,0.20019955933094,0.971503436565399,0.126890912652016,0.200199455022812,0.990101516246796,0.11720371991396,0.0772160738706589,0.99010169506073,0.117202885448933,0.077216163277626,0.990101099014282,0.117207452654839,0.0772157162427902,0.00623136200010777,0.0958095490932465,0.995380282402039,0.00623348169028759,0.0957904160022736,0.995382010936737,0.00623409496620297,0.0957848876714706,0.99538254737854,0.272722393274307,-0.0614706017076969,-0.960126996040344,0.272723376750946,-0.0614791810512543,-0.960126280784607,0.272725105285645,-0.0614949464797974,-0.960124671459198,0.980499744415283,0.123371578752995,0.152969628572464,0.980499446392059,0.123375236988068,0.152969285845757,0.980499446392059,0.123374231159687,0.152969375252724,0.993408501148224,0.112359382212162,0.0226922240108252,0.993408381938934,0.112360440194607,0.0226921234279871,0.993408203125,0.112362898886204,0.0226918905973434,0.970513343811035,0.127215802669525,0.20474374294281, +0.970513522624969,0.12721411883831,0.204743906855583,0.970513820648193,0.127212345600128,0.20474411547184,0.985741257667542,0.120555214583874,0.117390900850296,0.985741019248962,0.120557464659214,0.117390692234039,0.985740959644318,0.120557732880116,0.117390662431717,0.971053957939148,0.127038419246674,0.202275708317757,0.971053957939148,0.1270382553339,0.202275723218918,0.971054077148438,0.127037540078163,0.202275782823563,0.984282314777374,0.121430583298206,0.128230765461922,0.98428213596344,0.121431298553944,0.128230676054955,0.984282195568085,0.12143088132143,0.128230720758438,0.902468144893646,0.139055773615837,0.407694399356842,0.902468085289001,0.139056205749512,0.40769436955452,0.902468085289001,0.139056444168091,0.407694339752197,0.926301240921021,0.13630872964859,0.351263344287872,0.926301300525665,0.136308431625366,0.351263374090195,0.9263014793396,0.136307552456856,0.351263463497162,0.952242076396942,0.131933972239494,0.275369614362717,0.952242076396942,0.131934970617294,0.275369554758072,0.952242076396942,0.131934016942978,0.275369614362717,0.964513003826141,0.0830397382378578,-0.250637292861938,0.964512944221497,0.0830412954092026,-0.250637471675873,0.964512705802917,0.0830425545573235,-0.25063756108284,0.975909054279327,0.0892309099435806,-0.199096292257309,0.975909233093262,0.0892296731472015,-0.199096173048019,0.975909411907196,0.0892279371619225,-0.199096009135246,0.985666036605835,0.0960829108953476,-0.138674423098564,0.985665917396545,0.0960846170783043,-0.138674601912498,0.98566597700119,0.0960842445492744,-0.138674557209015,0.991824448108673,0.102791786193848,-0.0756180807948112,0.991824507713318,0.102792173624039,-0.0756181254982948,0.991824090480804,0.102795198559761,-0.0756184011697769,-0.990336358547211,-0.0741608813405037,0.117192476987839,-0.991687893867493,-0.0604543536901474,0.113580875098705,-0.989537358283997,0.0404124893248081,0.138501405715942,-0.991976141929626,0.000146346559631638,0.12642528116703,-0.993240594863892,0.00133320013992488,0.116065949201584,-0.992094576358795,0.0455810874700546,0.116921626031399, +-0.979560673236847,0.148296296596527,0.135901033878326,-0.988344132900238,0.0865760743618011,0.125222578644753,-0.992465436458588,0.0464233160018921,0.113390676677227,-0.991136133670807,0.0693514570593834,0.113311566412449,-0.976417124271393,0.17008575797081,0.132968485355377,-0.980022311210632,0.149060130119324,0.131671354174614,-0.992166578769684,-0.0594791509211063,0.109853357076645,-0.99271684885025,-0.0535505153238773,0.107914827764034,-0.987972378730774,0.061406709253788,0.141914829611778,-0.989911675453186,0.0411118865013123,0.135590270161629,-0.949080646038055,-0.298108667135239,0.101869314908981,-0.972489655017853,-0.190571695566177,0.133963778614998,-0.975390076637268,-0.174870610237122,0.134292647242546,-0.953350126743317,-0.282703638076782,0.105840921401978,-0.953822493553162,-0.28211122751236,0.103131197392941,-0.975893616676331,-0.174161583185196,0.131526976823807,-0.979889154434204,-0.151618778705597,0.129727140069008,-0.964776039123535,-0.235591620206833,0.117064073681831,-0.979618310928345,-0.168451249599457,0.109417587518692,-0.988386511802673,-0.0664788857102394,0.136648133397102,-0.98868864774704,-0.0756962075829506,0.129479825496674,-0.981328904628754,-0.150374665856361,0.119921751320362,-0.977964043617249,-0.181374028325081,0.103392377495766,-0.987923681735992,-0.0639375597238541,0.14113412797451,-0.988274991512299,-0.0666650459170341,0.137362003326416,-0.979599297046661,-0.168482825160027,0.109539061784744,-0.988535702228546,0.0867505520582199,0.123577930033207,-0.980918109416962,0.150629356503487,0.122925400733948,-0.968516707420349,0.218203723430634,0.119843602180481,-0.986793160438538,0.106633774936199,0.121936999261379,-0.987287998199463,0.106720693409443,0.117784023284912,-0.969275236129761,0.218782305717468,0.112427450716496,-0.962706327438354,0.251308709383011,0.100203111767769,-0.985162079334259,0.127377703785896,0.115024589002132,-0.96944272518158,0.218914210796356,0.110712997615337,-0.962175905704498,0.252125918865204,0.10319946706295,-0.950493931770325,0.295433849096298,0.0963336899876595, +-0.961929500102997,0.251466631889343,0.107033185660839,-0.982218563556671,0.15317890048027,0.108548924326897,-0.978213489055634,0.174118638038635,0.113053381443024,-0.960521221160889,0.250255018472672,0.121538244187832,-0.968832612037659,0.218441143631935,0.116819873452187,-0.882876455783844,-0.453423589468002,0.122213810682297,-0.910167694091797,-0.394654124975204,0.125868529081345,-0.922073364257813,-0.367207556962967,0.12222658097744,-0.902545273303986,-0.413786709308624,0.119132786989212,-0.902022778987885,-0.413901716470718,0.122638754546642,-0.922813475131989,-0.366696864366531,0.118104942142963,-0.95523476600647,-0.269503027200699,0.122044757008553,-0.945520162582397,-0.301496118307114,0.122849136590958,-0.924445152282715,-0.365503758192062,0.108666256070137,-0.951147735118866,-0.285322815179825,0.11793640255928,-0.964359700679779,-0.235948234796524,0.11974461376667,-0.955778241157532,-0.269298553466797,0.118179634213448,-0.914251863956451,-0.391388028860092,0.104684725403786,-0.944007754325867,-0.304321795701981,0.127426818013191,-0.948555648326874,-0.288147538900375,0.131199389696121,-0.923902928829193,-0.36591112613678,0.111859887838364,-0.98676323890686,0.126647368073463,0.101285442709923,-0.962839245796204,0.251279413700104,0.0989914163947105,-0.960568487644196,0.264240622520447,0.0865165814757347,-0.985100507736206,0.139918059110641,0.0999997034668922,-0.985942602157593,0.138979241251945,0.0927463546395302,-0.961358308792114,0.263397932052612,0.0800736248493195,-0.967057764530182,0.243989735841751,0.0725837647914886,-0.983656525611877,0.157373458147049,0.0874851942062378,-0.96073704957962,0.264065355062485,0.0851694867014885,-0.950538814067841,0.302244603633881,0.0715846195816994,-0.959053814411163,0.273863554000854,0.0722116231918335,-0.964955806732178,0.247603833675385,0.0869070962071419,-0.963857769966125,0.251030296087265,0.0892310291528702,-0.950674414634705,0.295408993959427,0.094613291323185,-0.948599219322205,0.304351329803467,0.0867748707532883,-0.960711121559143,0.264092445373535,0.0853775963187218, +-0.987797617912292,-0.0951428860425949,0.123304039239883,-0.98947286605835,-0.0853529423475266,0.116869509220123,-0.992973327636719,-0.00334265874698758,0.11829125136137,-0.993431091308594,0.0121937086805701,0.113780200481415,-0.99315345287323,0.0123847797513008,0.116159744560719,-0.993336141109467,-0.00333895743824542,0.115205757319927,-0.987858414649963,0.10682238638401,0.112804040312767,-0.986290633678436,0.126874729990959,0.105516098439693,-0.99306857585907,-0.00334169575944543,0.117489509284496,-0.993401050567627,0.00149154337123036,0.114682823419571,-0.988817751407623,0.0870115160942078,0.121113136410713,-0.987574875354767,0.106771603226662,0.115307174623013,-0.989281117916107,-0.0853625908493996,0.118474707007408,-0.990435063838959,-0.0740637108683586,0.116417340934277,-0.992277681827545,0.000420223717810586,0.124036051332951,-0.99296623468399,-0.00334273092448711,0.118351638317108,-0.964186131954193,-0.236094683408737,0.120848841965199,-0.979726135730743,-0.151753664016724,0.130796626210213,-0.97778582572937,-0.166533157229424,0.12728562951088,-0.954988121986389,-0.269592672586441,0.123763851821423,-0.954623699188232,-0.269721895456314,0.126268818974495,-0.977534234523773,-0.166560426354408,0.129168376326561,-0.972220957279205,-0.195763096213341,0.128309354186058,-0.944454431533813,-0.301367521286011,0.131086498498917,-0.977868854999542,-0.166523933410645,0.12665830552578,-0.987931370735168,-0.0854214653372765,0.129208445549011,-0.987734436988831,-0.0950849503278732,0.123852841556072,-0.971980333328247,-0.195639461278915,0.130304977297783,-0.981012165546417,-0.150656998157501,0.122137628495693,-0.988552987575531,-0.0758159607648849,0.130441382527351,-0.988161146640778,-0.0854124799370766,0.127445414662361,-0.977859079837799,-0.166525021195412,0.126732170581818,-0.987798392772675,-0.0951436534523964,0.123296618461609,-0.993499100208282,0.0121464040130377,0.113191083073616,-0.993686497211456,0.0326205343008041,0.107345513999462,-0.992021441459656,-0.0379551388323307,0.120220072567463,-0.992031633853912,-0.0379732362926006,0.120131142437458, +-0.993812680244446,0.0324397087097168,0.106226377189159,-0.99231880903244,0.0829543769359589,0.0917711406946182,-0.993901431560516,0.0223618969321251,0.10798118263483,-0.993330478668213,0.0331208892166615,0.110442772507668,-0.98579078912735,0.139153733849525,0.0940901786088943,-0.98379385471344,0.157131269574165,0.0863683819770813,-0.990930557250977,0.0860020816326141,0.103248663246632,-0.993584871292114,0.0120861902832985,0.1124412342906,-0.986376225948334,0.126834347844124,0.104761652648449,-0.985328793525696,0.139670222997665,0.0980794057250023,-0.99306857585907,0.0334802754223347,0.112667992711067,-0.983779847621918,0.157156020402908,0.0864824578166008,-0.968452870845795,0.241323754191399,0.062143299728632,-0.981394112110138,0.174594640731812,0.0798905193805695,-0.990646719932556,0.0865881592035294,0.105459414422512,-0.992318272590637,0.0829556286334991,0.0917758196592331,-0.983901739120483,0.167851835489273,0.0613445863127708,-0.99176812171936,0.0893082246184349,0.0917617678642273,-0.993512392044067,0.0233952198177576,0.111292190849781,-0.982557594776154,0.171603456139565,0.0716437995433807,-0.977449417114258,0.203380525112152,0.0568254739046097,-0.988434314727783,0.118567869067192,0.0945477932691574,-0.989992499351501,0.0948848128318787,0.104459159076214,-0.967883288860321,0.242442280054092,0.0665109902620316,-0.959826767444611,0.272478640079498,0.0669923797249794,-0.973949193954468,0.212271898984909,0.0797728449106216,-0.980904757976532,0.175792887806892,0.0832030177116394,-0.868295550346375,-0.471869111061096,0.152978390455246,-0.864977300167084,-0.479987740516663,0.146376729011536,-0.8858602643013,-0.442959517240524,0.137979760766029,-0.884027600288391,-0.445660591125488,0.141003355383873,-0.883169591426849,-0.443613648414612,0.152375921607018,-0.885390937328339,-0.442700058221817,0.141772791743279,-0.93455696105957,-0.325626879930496,0.143424242734909,-0.922473907470703,-0.357040673494339,0.146846354007721,-0.886318206787109,-0.4432133436203,0.134172365069389,-0.901464462280273,-0.414016336202621,0.126302346587181, +-0.943771481513977,-0.301278710365295,0.136112928390503,-0.935531675815582,-0.326347976922989,0.13519412279129,-0.866817474365234,-0.481031954288483,0.131284967064857,-0.882001042366028,-0.453668117523193,0.127512395381927,-0.899634599685669,-0.414338767528534,0.137772187590599,-0.885883212089539,-0.442972213029861,0.137792497873306,-0.995088815689087,0.0189824774861336,0.0971496924757957,-0.993837714195251,0.0818303003907204,0.0747692510485649,-0.993949115276337,-0.0070601194165647,0.109615132212639,-0.992449343204498,-0.0456811003386974,0.113831259310246,-0.993005573749542,-0.0477343872189522,0.107988096773624,-0.995661616325378,-0.0159736797213554,0.0916670113801956,-0.982499241828918,-0.122336521744728,0.140460669994354,-0.984360575675964,-0.118058957159519,0.130753144621849,-0.995622217655182,-0.0157417450100183,0.0921346768736839,-0.995951592922211,-0.0129603371024132,0.0889530181884766,-0.981542468070984,-0.120463952422142,0.1485356092453,-0.98213118314743,-0.119985163211823,0.144989997148514,-0.993439495563507,0.0833739340305328,0.0782737582921982,-0.991776406764984,0.106819435954094,0.0704920664429665,-0.992877185344696,0.00363918417133391,0.119087435305119,-0.993352353572845,-0.00436531938612461,0.115031465888023,-0.920945823192596,-0.357509732246399,0.155066385865211,-0.887674450874329,-0.425472527742386,0.176088571548462,-0.905074894428253,-0.392603933811188,0.163406133651733,-0.933042645454407,-0.329990535974503,0.143310487270355,-0.932594656944275,-0.324200451374054,0.158623084425926,-0.904405534267426,-0.38920184969902,0.174850448966026,-0.943849623203278,-0.294325828552246,0.150067463517189,-0.960067272186279,-0.244107484817505,0.136683955788612,-0.90531599521637,-0.3940070271492,0.15862350165844,-0.882359623908997,-0.441853135824203,0.161886960268021,-0.922427475452423,-0.356959968805313,0.14733350276947,-0.944923102855682,-0.297266483306885,0.136942028999329,-0.888473570346832,-0.43187814950943,0.155228897929192,-0.868161499500275,-0.47153428196907,0.15476131439209,-0.882492363452911,-0.442132472991943,0.160393476486206, +-0.905442714691162,-0.394797831773758,0.155911520123482,-0.987767398357391,-0.095115102827549,0.123567312955856,-0.992916345596313,-0.0396219752728939,0.112014278769493,-0.986300408840179,-0.107267037034035,0.125321492552757,-0.976800441741943,-0.166058301925659,0.135223925113678,-0.976805925369263,-0.166068017482758,0.135173037648201,-0.986378848552704,-0.107464030385017,0.124532245099545,-0.973119854927063,-0.183314025402069,0.139404982328415,-0.959017753601074,-0.24033659696579,0.150077551603317,-0.986320793628693,-0.107318140566349,0.125116720795631,-0.99288672208786,-0.0472838506102562,0.109271019697189,-0.984541714191437,-0.118928961455822,0.128583431243896,-0.972812414169312,-0.182058840990067,0.143145278096199,-0.992860674858093,-0.0395143628120422,0.112544730305672,-0.995029211044312,0.0191612150520086,0.0977226868271828,-0.992418825626373,-0.0455722697079182,0.114140711724758,-0.986281156539917,-0.107219114899635,0.125513315200806,-0.922265410423279,-0.356680691242218,0.149014845490456,-0.934609889984131,-0.325665384531021,0.14299164712429,-0.964020729064941,-0.229402706027031,0.134307935833931,-0.944631218910217,-0.296423971652985,0.140729978680611,-0.943724274635315,-0.294007182121277,0.151473894715309,-0.963533639907837,-0.228790521621704,0.138772621750832,-0.977512836456299,-0.167383804917336,0.128263339400291,-0.959679841995239,-0.242641255259514,0.141914933919907,-0.963721632957458,-0.229024365544319,0.137071743607521,-0.971771001815796,-0.195532858371735,0.132015332579613,-0.987734615802765,-0.0950851067900658,0.12385132163763,-0.97744357585907,-0.167251169681549,0.128962114453316,-0.935211062431335,-0.326107949018478,0.137963384389877,-0.944155693054199,-0.301329225301743,0.133307084441185,-0.971704483032227,-0.195499166846275,0.132553905248642,-0.964247643947601,-0.229695186018944,0.132161378860474,-0.958866953849792,-0.239840656518936,0.151824787259102,-0.973015785217285,-0.182882085442543,0.14069339632988,-0.959137260913849,-0.240163251757622,0.149590790271759,-0.931986510753632,-0.31897959113121,0.172201618552208, +-0.932152390480042,-0.320253849029541,0.168907105922699,-0.959375083446503,-0.243119597434998,0.143151432275772,-0.956023454666138,-0.257837623357773,0.139781951904297,-0.920590579509735,-0.349519550800323,0.174209862947464,-0.95843505859375,-0.233542069792747,0.163891226053238,-0.984063982963562,-0.135214403271675,0.115478299558163,-0.983603775501251,-0.139609023928642,0.114161945879459,-0.955179750919342,-0.242788910865784,0.169367328286171,-0.972606778144836,-0.181250348687172,0.145548954606056,-0.984625339508057,-0.119340002536774,0.127557441592216,-0.983648896217346,-0.131112113595009,0.123469091951847,-0.958336412906647,-0.232755735516548,0.165578633546829,0.29278090596199,0.836246967315674,-0.4636490046978,0.164471685886383,0.798274517059326,-0.579402089118958,0.176546975970268,0.778742611408234,-0.601989328861237,0.311933308839798,0.818410217761993,-0.48259961605072,-0.0464269928634167,0.997918486595154,-0.0447570271790028,-0.0846895277500153,0.988738179206848,-0.123387694358826,-0.0668188855051994,0.997093439102173,-0.0366060622036457,-0.00218234537169337,0.9994757771492,0.0323012173175812,-0.108720541000366,0.963626623153687,-0.244138270616531,-0.0435171686112881,0.926653981208801,-0.373388051986694,-0.060537476092577,0.967324614524841,-0.246207758784294,-0.0828952714800835,0.989955365657806,-0.114528611302376,0.604897141456604,0.673014581203461,-0.425618231296539,0.479544341564178,0.609052717685699,-0.631737232208252,0.502048909664154,0.569275736808777,-0.651054561138153,0.634762048721313,0.63564121723175,-0.439360111951828,0.905099093914032,0.365164816379547,-0.217830985784531,0.807991087436676,0.313195317983627,-0.499058246612549,0.815353095531464,0.288921743631363,-0.501720607280731,0.914089202880859,0.341176956892014,-0.219178542494774,0.152645319700241,0.982835471630096,0.103604264557362,0.061994943767786,0.987600743770599,0.144226983189583,0.0747749283909798,0.983308792114258,0.165869176387787,0.171240270137787,0.977865397930145,0.12023339420557,0.454226225614548,0.880272746086121,0.137107014656067, +0.383318305015564,0.867015719413757,0.318356454372406,0.354041665792465,0.88914567232132,0.289955824613571,0.417327463626862,0.901097536087036,0.117733761668205,0.783160150051117,-0.513511478900909,0.350665330886841,0.889867603778839,-0.441141664981842,0.116317071020603,0.925809383392334,-0.359992504119873,0.115249171853065,0.822322368621826,-0.435212433338165,0.366573631763458,0.989930689334869,-0.0877686142921448,0.111059114336967,0.976368069648743,-0.0921784341335297,-0.195470064878464,0.977096676826477,-0.0772118866443634,-0.198293685913086,0.991370022296906,-0.0726496204733849,0.109121754765511,0.773614287376404,0.633440852165222,0.0165426712483168,0.758414030075073,0.578496158123016,0.300250798463821,0.703357875347137,0.65862375497818,0.267399489879608,0.705689549446106,0.708520233631134,-0.00120016315486282,0.941276133060455,0.249095261096954,-0.227926954627037,0.967914760112762,0.236372962594032,0.0852586254477501,0.954054296016693,0.289826184511185,0.0760337561368942,0.924075126647949,0.302174121141434,-0.234042629599571,0.259790420532227,-0.923134505748749,0.283428728580475,0.427150100469589,-0.840149641036987,0.334202617406845,0.522675275802612,-0.739267945289612,0.424609780311584,0.329092681407928,-0.848613262176514,0.41419044137001,0.476962298154831,-0.791793942451477,0.381535798311234,0.662668824195862,-0.687251925468445,0.297581642866135,0.750419616699219,-0.569688439369202,0.335149973630905,0.558609247207642,-0.690543711185455,0.459461838006973,0.603790819644928,-0.624994874000549,-0.494790762662888,0.827282786369324,-0.406387388706207,-0.387882083654404,0.751595616340637,-0.581774950027466,-0.310872912406921,0.524334311485291,-0.767479956150055,-0.368846923112869,0.862917184829712,-0.249310970306396,-0.439565628767014,0.979389607906342,-0.0812270045280457,-0.1849275380373,0.965478122234344,-0.201496690511703,-0.165078863501549,0.838992595672607,-0.364292591810226,-0.404205799102783,0.16326867043972,-0.985345780849457,-0.0493659786880016,0.140168279409409,-0.989015638828278,0.0469144620001316,0.159219056367874,-0.977175772190094,0.140630215406418, +0.154000952839851,-0.98697966337204,0.0464200563728809,0.155060410499573,-0.980622112751007,0.119735345244408,0.236319825053215,-0.941541075706482,0.240111246705055,0.300830543041229,-0.883125126361847,0.35998746752739,0.18203267455101,-0.947786152362823,0.26185005903244,0.342367053031921,-0.852376580238342,-0.395270973443985,0.558595478534698,-0.715149641036987,-0.42015740275383,0.480241745710373,-0.822402477264404,-0.304995208978653,0.289545178413391,-0.925488293170929,-0.244202867150307,0.164871916174889,-0.98399156332016,-0.0676599591970444,0.175992354750633,-0.959960758686066,-0.217949748039246,0.319517225027084,-0.889220476150513,-0.327407538890839,0.270431756973267,-0.943156778812408,-0.193189099431038,0.433198213577271,-0.892525732517242,0.125447675585747,0.46232545375824,-0.886454880237579,0.0212835520505905,0.462703824043274,-0.886256396770477,0.0213308557868004,0.433546364307404,-0.892332673072815,0.125618353486061,0.995296716690063,0.0967046990990639,-0.00571629079058766,0.983056902885437,0.182714328169823,-0.0146554848179221,0.977704167366028,0.209255635738373,-0.0175164397805929,0.976793587207794,0.213569611310959,-0.0162021908909082,0.995298743247986,0.0966165587306023,-0.00676703825592995,0.992875218391418,0.118880815804005,-0.00813690386712551,0.987571775913239,0.156513050198555,-0.0143426945433021,0.98309201002121,0.182317763566971,-0.0170400869101286,0.995297908782959,0.0966576710343361,-0.00627700798213482,0.998923420906067,0.0463698208332062,0.00136344565544277,0.996714115142822,0.080891415476799,-0.00420246552675962,0.992914021015167,0.118346624076366,-0.0107631543651223,0.995297133922577,0.0966886132955551,-0.00590819586068392,0.999958038330078,-0.0074224560521543,0.00537109514698386,0.999932706356049,0.0107780108228326,0.00429534865543246,0.998946309089661,0.0458789728581905,-0.00116643065121025,0.995296955108643,0.0966982394456863,-0.00579344434663653,0.976793825626373,0.213563159108162,-0.0162669997662306,0.975580811500549,0.219127625226974,-0.0150067657232285,0.979659795761108,0.200258940458298,-0.0127772865816951, +0.999952554702759,0.00974324345588684,-0.000118097312224563,0.999848306179047,-0.0173573959618807,0.00150892580859363,0.999763429164886,-0.0214723963290453,0.00349949114024639,0.995296776294708,0.096701480448246,-0.00575470179319382,0.995296895503998,0.0967013984918594,-0.00575586035847664,0.979665756225586,0.200281843543053,-0.0119254784658551,0.983165740966797,0.182443723082542,-0.00997538492083549,0.98904275894165,0.147320374846458,-0.00954563356935978,0.999626636505127,-0.0272275749593973,0.00230914051644504,0.99976509809494,-0.0215590689331293,0.00223673321306705,0.995642423629761,-0.0927689447999001,0.0094952080398798,0.995877385139465,-0.0900176614522934,0.011183587834239,0.995297849178314,0.0966600850224495,-0.00624822732061148,0.989070773124695,0.147265076637268,-0.00720829423516989,0.993627905845642,0.112503707408905,-0.00682878866791725,0.997201502323151,0.0744401663541794,-0.00691692670807242,0.995297074317932,0.0966921523213387,-0.00586596596986055,0.997228503227234,0.0743227154016495,-0.00341269746422768,0.999348521232605,0.0359400101006031,-0.00329459644854069,0.999951124191284,0.00974042899906635,-0.00168888433836401,0.999961078166962,-0.00752882286906242,0.00462211668491364,0.995296955108643,0.0966965407133102,-0.00581373367458582,0.999763369560242,-0.0214708428829908,0.00352209899574518,0.999623119831085,-0.026868149638176,0.00565186096355319,0.999958574771881,-0.00744088087230921,0.00524145737290382,0.999617278575897,-0.0266942624002695,0.00726813217625022,0.995877087116241,-0.089966282248497,0.0116131771355867,0.997438728809357,-0.0706550478935242,0.0111289266496897,0.99994695186615,0.0102343680337071,0.00123186619020998,0.999955415725708,-0.00734255369752645,0.0059337979182601,0.99743527173996,-0.0698893740773201,0.0154451876878738,0.999395549297333,-0.0338140204548836,0.00807405170053244,0.998935759067535,0.0461236797273159,9.46420695981942e-05,0.999929130077362,0.0108752036467195,0.00484311673790216,0.999388933181763,-0.0330985896289349,0.0112363733351231,0.999889016151428,0.0147429816424847,0.00216008233837783, +0.996747732162476,0.0802696123719215,-0.00713590206578374,0.998914182186127,0.0465370528399944,0.00222573522478342,0.999839305877686,0.016196932643652,0.00769276404753327,0.99743640422821,0.0709709748625755,-0.00915150251239538,0.992928087711334,0.11812362074852,-0.011858232319355,0.996733427047729,0.0805535092949867,-0.00579696055501699,0.997367024421692,0.0724090859293938,-0.00401754584163427,0.991338968276978,0.130077600479126,-0.0180854983627796,0.972271323204041,0.231181114912033,-0.0352673828601837,0.983174085617065,0.18076890707016,-0.0262921191751957,0.987646400928497,0.155449286103249,-0.0197508726269007,0.982300281524658,0.185810372233391,-0.0236775074154139,0.958890974521637,0.282365083694458,-0.028250765055418,0.976801633834839,0.213370218873024,-0.0182142201811075,0.977710366249084,0.209179013967514,-0.0180723294615746,0.963755905628204,0.265254825353622,-0.0285382699221373,0.982422709465027,0.184335142374039,-0.0294340997934341,0.987654209136963,0.155305072665215,-0.0204821620136499,0.992919206619263,0.118266716599464,-0.0111556397750974,0.991246163845062,0.131323307752609,-0.0136144924908876,0.964895486831665,0.262136310338974,-0.0161690842360258,0.979668855667114,0.200294643640518,-0.0114472936838865,0.975582301616669,0.219265282154083,-0.0127237178385258,0.959599375724792,0.280730187892914,-0.0189624764025211,0.963768720626831,0.2651187479496,-0.0293582156300545,0.977766811847687,0.20805849134922,-0.0261495430022478,0.983170866966248,0.180888563394547,-0.0255807805806398,0.972133636474609,0.232728376984596,-0.0281751938164234,0.974093735218048,0.225956484675407,-0.00922561343759298,0.983951270580292,0.178114041686058,-0.0107359811663628,0.989061951637268,0.14728382229805,-0.007996816188097,0.983179450035095,0.182434231042862,-0.00871675275266171,0.959595322608948,0.280695527791977,-0.0196681898087263,0.975567817687988,0.218905985355377,-0.0186433084309101,0.976802051067352,0.213359162211418,-0.0183259230107069,0.95885819196701,0.283004820346832,-0.0223466120660305,0.974005341529846,0.226154685020447,-0.0129560017958283, +0.983134388923645,0.182461455464363,-0.0124349761754274,0.979673206806183,0.200314179062843,-0.0107158720493317,0.964969158172607,0.262105911970139,-0.0116209182888269,0.998069405555725,0.0612952634692192,-0.0100190173834562,0.99719649553299,0.0744576975703239,-0.00744205247610807,0.993635177612305,0.112476721405983,-0.00617371965199709,0.992719054222107,0.120379544794559,-0.0042229825630784,0.999331891536713,0.0360184386372566,-0.0062005091458559,0.997218728065491,0.0743714272975922,-0.00486277649179101,0.998155474662781,0.0606096126139164,-0.00347511516883969,0.999951124191284,0.00507076224312186,-0.00849038362503052,0.992576122283936,0.1211107224226,-0.0111754518002272,0.99360466003418,0.112580232322216,-0.00869296584278345,0.989081740379333,0.147239729762077,-0.00614800676703453,0.984094738960266,0.177582144737244,-0.00471312832087278,0.999936103820801,0.00973302870988846,-0.00574898486956954,0.999346971511841,0.0359498336911201,-0.00365794869139791,0.999986290931702,0.00457300618290901,-0.00255868164822459,0.999065637588501,-0.042776133865118,-0.00617707939818501,0.99984335899353,-0.0174844339489937,-0.00276408041827381,0.999940574169159,0.0097345719113946,-0.00490651512518525,0.999073088169098,-0.0430423319339752,-0.00060120684793219,0.997121572494507,-0.0757962092757225,0.00187179609201849,0.99976509809494,-0.021558690816164,0.00224224501289427,0.999846220016479,-0.0173193663358688,0.00278580980375409,0.997118890285492,-0.0757934600114822,0.00307645439170301,0.995650291442871,-0.0930275246500969,0.00514677027240396,0.940675258636475,0.316705852746964,0.121768906712532,0.928608059883118,0.32420352101326,-0.180496826767921,0.928442418575287,0.324691236019135,-0.180472508072853,0.940512418746948,0.31719371676445,0.121756367385387,0.191973522305489,0.974057197570801,-0.119827881455421,0.221512898802757,0.974488437175751,-0.0361158177256584,0.221583962440491,0.974471986293793,-0.0361261703073978,0.192037850618362,0.974040448665619,-0.119861230254173,0.0653522089123726,0.992989182472229,-0.0984967425465584,0.091411329805851,0.993731319904327,-0.0643599256873131, +0.0915860906243324,0.993708968162537,-0.0644552707672119,0.0654871538281441,0.992966115474701,-0.0986404791474342,0.221678897738457,-0.97115558385849,0.0878366008400917,0.241304725408554,-0.967798829078674,0.0716759711503983,0.241572201251984,-0.967713117599487,0.0719334483146667,0.221855133771896,-0.9710853099823,0.0881688222289085,0.268246084451675,-0.958387970924377,0.0976554527878761,0.294177174568176,-0.954038381576538,0.0571901425719261,0.294478207826614,-0.953936815261841,0.0573336631059647,0.268485605716705,-0.95829713344574,0.0978885591030121,0.0246779657900333,0.995802521705627,-0.0881380662322044,0.0432027317583561,0.996251463890076,-0.0749443173408508,0.0434762388467789,0.996217548847198,-0.0752355754375458,0.0248480625450611,0.995766282081604,-0.0884990766644478,0.0123248565942049,0.996345162391663,-0.0845255926251411,0.0214809961616993,0.996451437473297,-0.0813827440142632,0.0213370006531477,0.996479272842407,-0.0810798481106758,0.012281047180295,0.996374070644379,-0.084189847111702,0.204661890864372,-0.975385189056396,0.0820818915963173,0.205441862344742,-0.975260972976685,0.0816076844930649,0.205509752035141,-0.975215315818787,0.0819805562496185,0.204614639282227,-0.975363373756409,0.0824569463729858,0.20577497780323,-0.975036859512329,0.0834266394376755,0.216733902692795,-0.973061859607697,0.0785940662026405,0.216630205512047,-0.973100423812866,0.0784024372696877,0.205734670162201,-0.975063860416412,0.0832090079784393,0.0130903441458941,0.996397793292999,-0.0837856531143188,0.0121655743569136,0.99645060300827,-0.0832966864109039,0.0122102703899145,0.996420919895172,-0.0836436972022057,0.0130264787003398,0.99636971950531,-0.084130086004734,0.0244644768536091,0.995894134044647,-0.0871580615639687,0.0133140869438648,0.996495008468628,-0.0825862288475037,0.0133589692413807,0.996514201164246,-0.0823478922247887,0.0245808344334364,0.995909869670868,-0.086944617331028,0.23577094078064,-0.967703759670258,0.0892272144556046,0.217317461967468,-0.973107516765594,0.0763875246047974,0.217075109481812,-0.973119616508484,0.0769198313355446, +0.235383570194244,-0.967758178710938,0.0896584987640381,0.213687360286713,-0.973256230354309,0.0843218341469765,0.204724654555321,-0.97541356086731,0.0815855711698532,0.204795703291893,-0.97544538974762,0.0810257643461227,0.213924586772919,-0.973248720169067,0.0838057547807693,0.0498976074159145,0.994395077228546,-0.0932141020894051,0.0297720395028591,0.996557950973511,-0.0773685351014137,0.0296584852039814,0.99654495716095,-0.0775793492794037,0.0497251823544502,0.994388222694397,-0.0933788046240807,0.104412332177162,0.988843321800232,-0.106240160763264,0.0774840340018272,0.994759798049927,-0.0667026415467262,0.0772080942988396,0.994763374328613,-0.0669683292508125,0.104070544242859,0.988861441612244,-0.106406912207603,0.409736812114716,-0.904174983501434,0.120761595666409,0.381686508655548,-0.923548102378845,0.0370744727551937,0.381789714097977,-0.92350822687149,0.0370024144649506,0.409855544567108,-0.904126524925232,0.120722234249115,0.283371835947037,-0.953954935073853,0.0983383134007454,0.25781786441803,-0.964041113853455,0.0644577667117119,0.25769180059433,-0.964065253734589,0.0645999386906624,0.2832091152668,-0.953993439674377,0.098433330655098,0.281134963035583,0.950338006019592,-0.133494436740875,0.249173432588577,0.967921733856201,-0.0322522632777691,0.248086094856262,0.968182027339935,-0.0328186713159084,0.279940843582153,0.950660049915314,-0.133711144328117,0.980697274208069,-0.127567738294601,-0.148187577724457,0.980446755886078,-0.130127340555191,-0.147617697715759,0.985682427883148,-0.0731988996267319,0.151895582675934,0.985933899879456,-0.0706126317381859,0.151486709713936,0.433699935674667,-0.861899971961975,-0.26274099946022,0.513936758041382,-0.84673011302948,-0.137540489435196,0.500581443309784,-0.857244372367859,-0.120625555515289,0.426443010568619,-0.871294677257538,-0.242882490158081,0.975534379482269,0.200690150260925,0.089756116271019,0.985871255397797,0.154591292142868,0.0644944682717323,0.971537232398987,0.222072049975395,0.0824588611721992,0.926583707332611,0.293054848909378,0.2357147783041, +0.858062148094177,0.43156298995018,0.278357297182083,0.916759133338928,0.349101364612579,0.194115877151489,0.97179114818573,0.227584525942802,0.0618646740913391,0.958014488220215,0.276959747076035,0.0741720795631409,0.980921506881714,0.181316822767258,0.0701226219534874,0.957808673381805,0.275390684604645,0.0822344571352005,0.971659064292908,0.22372430562973,0.0763295367360115,0.985903739929199,0.154838934540749,0.0633950084447861,0.698740243911743,0.640182733535767,0.319262087345123,0.783763468265533,0.558049559593201,0.272572070360184,0.9498370885849,0.30659145116806,0.0617355927824974,0.941588282585144,0.330136120319366,0.0664953365921974,0.941205859184265,0.329054564237595,0.0765164569020271,0.949482083320618,0.304813414812088,0.0746496021747589,0.977258086204529,0.198829740285873,0.0737123563885689,0.97156685590744,0.22420147061348,0.0761024504899979,0.949341714382172,0.304260820150375,0.0785855650901794,0.957944869995117,0.276372462511063,0.0772018730640411,0.980801820755005,0.181149244308472,0.0721995085477829,0.977061927318573,0.198815494775772,0.0763058438897133,0.788323163986206,0.541159808635712,0.292733162641525,0.851511478424072,0.458821505308151,0.253793358802795,0.958166480064392,0.278666436672211,0.0652854815125465,0.949581563472748,0.305242836475372,0.0715659558773041,0.994821190834045,0.076593741774559,0.0668159946799278,0.990545690059662,0.118939362466335,0.0683570504188538,0.991525948047638,0.109611235558987,0.0697265043854713,0.996250927448273,0.0616786666214466,0.0606614053249359,0.996086895465851,0.0609185583889484,0.0640298873186111,0.991468667984009,0.109346225857735,0.0709460079669952,0.99890410900116,0.0375829935073853,0.0278940983116627,0.995771706104279,-0.0567119382321835,-0.0722666010260582,0.991712689399719,0.110529966652393,0.0654916763305664,0.985561072826385,0.152571767568588,0.073425330221653,0.979128479957581,0.164559558033943,0.119280144572258,0.997895240783691,0.0645886734127998,0.0057812868617475,0.990532875061035,0.118931397795677,0.0685573071241379,0.980822086334229,0.181177213788033,0.0718533843755722, +0.985596537590027,0.152778342366219,0.0725147351622581,0.991762936115265,0.110793434083462,0.0642753317952156,0.924419820308685,-0.3312828540802,-0.188943564891815,0.997028946876526,-0.0437759682536125,0.063380241394043,0.997225880622864,-0.0217778068035841,0.0711777433753014,0.961152315139771,-0.237773030996323,-0.140179589390755,0.994585573673248,-0.0937858298420906,-0.0447640083730221,0.964564561843872,-0.206174209713936,-0.164643287658691,0.998037695884705,-0.0189638566225767,0.0596771016716957,0.995550572872162,0.0587352812290192,0.0736832022666931,0.994876742362976,0.0766310766339302,0.0659402757883072,0.995571076869965,0.0588117279112339,0.0733457878232002,0.998220145702362,-0.0182539355009794,0.05677605047822,0.997554004192352,-0.042423065751791,0.0555565841495991,0.972539961338043,0.223810106515884,0.0638361126184464,0.977627515792847,0.198853969573975,0.0685682743787766,0.988896608352661,0.129586786031723,0.0727389305830002,0.988249838352203,0.135392606258392,0.0709322988986969,0.988677740097046,0.13498130440712,0.065546952188015,0.989378809928894,0.12927171587944,0.0664714127779007,0.992019236087799,0.106239393353462,0.0679059252142906,0.991279602050781,0.113219290971756,0.0674250274896622,0.989502727985382,0.12918546795845,0.0647727027535439,0.990598917007446,0.118972539901733,0.067523255944252,0.994829773902893,0.0765994638204575,0.0666818842291832,0.992093205451965,0.106179811060429,0.0669095441699028,0.977656364440918,0.198855713009834,0.0681502819061279,0.980822324752808,0.181177601218224,0.0718485936522484,0.990459144115448,0.118886135518551,0.0696903914213181,0.98902952671051,0.129502862691879,0.071060337126255,0.690050721168518,0.66761726140976,0.279494524002075,0.941996812820435,0.331773191690445,0.0506818555295467,0.916314661502838,0.396311283111572,0.0574871264398098,0.560699820518494,0.758117616176605,0.332976907491684,0.486160933971405,0.844531536102295,0.224531069397926,0.550403475761414,0.784494459629059,0.285699993371964,0.916553139686584,0.39750400185585,0.0438304133713245,0.921140551567078,0.385989159345627,0.0501246862113476, +0.972339868545532,0.223898515105247,0.0665177404880524,0.920621812343597,0.385890990495682,0.059528574347496,0.916114270687103,0.395636081695557,0.0648595243692398,0.941796123981476,0.330861866474152,0.0595859251916409,0.471777111291885,0.881687581539154,0.00730369286611676,0.483153820037842,0.869543313980103,0.102258749306202,0.923469543457031,0.381803452968597,0.037817545235157,0.918434679508209,0.393696188926697,0.0384870208799839,0.918397665023804,0.393739521503448,0.0389237031340599,0.922982513904572,0.3821622133255,0.0453357547521591,0.972832500934601,0.224338859319687,0.0571756772696972,0.962192833423615,0.266775071620941,0.0549185909330845,0.922354102134705,0.382549941539764,0.0540241673588753,0.920603156089783,0.385887145996094,0.0598408505320549,0.972561299800873,0.223800405859947,0.0635447055101395,0.972290694713593,0.224839434027672,0.0640159696340561,0.483535498380661,0.867869794368744,0.113998554646969,0.485056310892105,0.847436249256134,0.215805932879448,0.921417713165283,0.386032342910767,0.0443672686815262,0.922904253005981,0.382214605808258,0.0464732721447945,0.997172594070435,-0.0377048775553703,0.0650022029876709,0.997253239154816,0.0360054858028889,0.0647266060113907,0.99491274356842,-0.0787770226597786,0.0627919211983681,0.989193320274353,-0.13436558842659,0.058672409504652,0.988654434680939,-0.135234087705612,0.065378338098526,0.994634747505188,-0.079322338104248,0.0664055198431015,0.868665158748627,-0.462220638990402,-0.178249686956406,0.782470762729645,-0.584854483604431,-0.213739931583405,0.994905889034271,-0.0787909105420113,0.0628838911652565,0.996946156024933,-0.0439754538238049,0.0645348951220512,0.921862244606018,-0.347125977277756,-0.172260075807571,0.872420251369476,-0.446000933647156,-0.199915766716003,0.997339248657227,0.0360315628349781,0.0633741542696953,0.995061814785004,0.0767589807510376,0.0629288926720619,0.997342824935913,-0.0429872795939445,0.0588179007172585,0.995238542556763,-0.0781003758311272,0.0583166107535362,0.670335173606873,-0.739299356937408,-0.0639318078756332, +0.981031775474548,-0.18088486790657,0.0696956440806389,0.974691987037659,-0.212013274431229,0.0708933472633362,0.681968450546265,-0.710006237030029,-0.175528362393379,0.777980923652649,-0.598308026790619,-0.191763132810593,0.681951403617859,-0.710045218467712,-0.175436869263649,0.97503536939621,-0.211682945489883,0.0670550242066383,0.987883448600769,-0.136357009410858,0.074116438627243,0.996747970581055,-0.0377751849591732,0.0711806863546371,0.988104104995728,-0.136047974228859,0.0717039853334427,0.975345015525818,-0.21136936545372,0.0634436160326004,0.98111480474472,-0.18087475001812,0.0685421675443649,0.997185349464417,-0.00125776696950197,0.0749662071466446,0.997083902359009,-0.0080210929736495,0.0758915916085243,0.981635093688965,-0.169732838869095,0.0870820805430412,0.982242465019226,-0.162485957145691,0.0937980264425278,0.982832551002502,-0.163379922509193,0.0857168957591057,0.981847584247589,-0.169863998889923,0.0843905508518219,0.666745364665985,-0.742747604846954,0.0614554546773434,0.665466845035553,-0.728854775428772,0.161011308431625,0.982442557811737,-0.170250624418259,0.0762984976172447,0.980576455593109,-0.180933803319931,0.0757149904966354,0.669423758983612,-0.740700721740723,-0.0568717308342457,0.667953908443451,-0.742606401443481,0.0487168356776237,0.997469663619995,-0.0083461245521903,0.0706029683351517,0.996301770210266,-0.0378416702151299,0.0771417394280434,0.980538606643677,-0.180937424302101,0.0761954411864281,0.982143104076385,-0.170052215456963,0.0804808884859085,0.99660062789917,-0.00053065171232447,0.0823837965726852,0.982229948043823,-0.162467941641808,0.0939598679542542,0.98438161611557,-0.145078167319298,0.0997257828712463,0.996500134468079,0.0101532163098454,0.0829725190997124,0.996238827705383,0.0105312382802367,0.0860081911087036,0.984067618846893,-0.1443962007761,0.103733532130718,0.984773993492126,-0.136193156242371,0.108035989105701,0.996384561061859,0.0104234497994184,0.0843160375952721,0.983827412128448,-0.14389543235302,0.106666557490826,0.67425525188446,-0.688032329082489,0.268312394618988, +0.683368146419525,-0.637292087078094,0.356183737516403,0.984887182712555,-0.136503845453262,0.106601893901825,0.981774628162384,-0.161832198500633,0.0996437817811966,0.665442049503326,-0.728787064552307,0.161419540643692,0.67458564043045,-0.692171692848206,0.256578892469406,0.98432320356369,-0.144948810338974,0.100487232208252,0.962863385677338,0.265834391117096,0.0471832193434238,0.97278368473053,0.224386185407639,0.0578164607286453,0.988443493843079,0.137438133358955,0.0639550611376762,0.987826824188232,0.142685189843178,0.0619621984660625,0.987635493278503,0.142910405993462,0.0644434615969658,0.98834753036499,0.13754178583622,0.0652044117450714,0.991280198097229,0.11321784555912,0.0674189627170563,0.991282284259796,0.113216392695904,0.0673905909061432,0.988345861434937,0.137543439865112,0.0652245432138443,0.988675236701965,0.134983882308006,0.065580315887928,0.991279125213623,0.113219939172268,0.0674323588609695,0.991277813911438,0.113220497965813,0.0674498975276947,0.972586750984192,0.224572643637657,0.0603523999452591,0.972528696060181,0.223815217614174,0.0639898702502251,0.988468587398529,0.135186210274696,0.0682239159941673,0.9881871342659,0.137710779905319,0.0672467574477196,0.430344730615616,0.855969309806824,-0.286566257476807,0.44137579202652,0.889744162559509,-0.11637307703495,0.912141919136047,0.409261405467987,0.0224123504012823,0.576467037200928,0.755814969539642,-0.310530960559845,0.569874167442322,0.769687950611115,-0.287791609764099,0.912340223789215,0.408923119306564,0.0204262956976891,0.920808494091034,0.389084458351135,0.0269262455403805,0.666278541088104,0.695325374603271,-0.269435584545135,0.912129461765289,0.409282296895981,0.0225354302674532,0.919506669044495,0.392294436693192,0.0247550830245018,0.963092923164368,0.265487730503082,0.0443654097616673,0.920682072639465,0.389312237501144,0.027942443266511,0.440193146467209,0.891669273376465,-0.105621412396431,0.472347676753998,0.881385862827301,-0.00682783080264926,0.919150054454803,0.392795562744141,0.0295811016112566,0.911388158798218,0.410479098558426,0.0296440962702036, +0.799520313739777,-0.440114825963974,0.408737391233444,0.990132987499237,-0.0981366857886314,0.100030310451984,0.979998648166656,-0.161209389567375,0.11668037623167,0.703522503376007,-0.556946754455566,0.441436767578125,0.683412253856659,-0.633677184581757,0.362492680549622,0.70318341255188,-0.561199903488159,0.436563611030579,0.980300486087799,-0.162598416209221,0.11212894320488,0.98456746339798,-0.135640427470207,0.110582694411278,0.996057868003845,0.011076177470386,0.0880126953125,0.984289467334747,-0.134921625256538,0.11388748139143,0.979498505592346,-0.159096494317055,0.123575694859028,0.989792466163635,-0.096480518579483,0.104893259704113,0.995691478252411,0.0117762852460146,0.0919772088527679,0.988951981067657,-0.0928324609994888,0.11556875705719,0.993231594562531,-0.0491736121475697,0.10522835701704,0.995459675788879,0.0378158316016197,0.0873499736189842,0.995510220527649,0.0376994460821152,0.0868225768208504,0.992877721786499,-0.0477076023817062,0.109168976545334,0.99477231502533,-0.017193716019392,0.100660398602486,0.995016992092133,0.0646179020404816,0.0759326294064522,0.993372857570648,-0.049779836088419,0.103597611188889,0.883759379386902,-0.281003713607788,0.374174445867538,0.931843042373657,-0.191563680768013,0.308175027370453,0.995216846466064,-0.0192226432263851,0.0957815274596214,0.98952043056488,-0.0952395871281624,0.108530201017857,0.801068305969238,-0.415433317422867,0.430934756994247,0.883579671382904,-0.304967284202576,0.355361521244049,0.993656635284424,-0.0510392524302006,0.100207380950451,0.673050701618195,0.680801570415497,-0.288984835147858,0.922208487987518,0.386398822069168,0.0150816319510341,0.932445406913757,0.360478937625885,0.0245045814663172,0.751052916049957,0.605817973613739,-0.262495934963226,0.758946120738983,0.586898565292358,-0.282047778367996,0.934046685695648,0.356939256191254,0.0122948968783021,0.94762134552002,0.318067610263824,0.0291023142635822,0.826943457126617,0.512036323547363,-0.232343122363091,0.934858977794647,0.354975134134293,0.00560488691553473,0.967873275279999,0.249299675226212,0.0327254347503185, +0.965287327766418,0.258700668811798,0.0359789691865444,0.949120283126831,0.314335376024246,0.0190772730857134,0.922965109348297,0.384797543287277,0.00813699141144753,0.963996350765228,0.263962805271149,0.0321669280529022,0.96744304895401,0.250227153301239,0.0379512868821621,0.933826386928558,0.357450723648071,0.0140468841418624,0.966001987457275,0.256877303123474,0.0292295999825001,0.967529296875,0.250046521425247,0.0369303598999977,0.98751312494278,0.148787409067154,0.0517702139914036,0.981597304344177,0.184306964278221,0.0499767810106277,0.981742262840271,0.183930024504662,0.0484962165355682,0.986940503120422,0.149724721908569,0.059423454105854,0.990626096725464,0.120942875742912,0.0635050535202026,0.98639190196991,0.154242277145386,0.0569241978228092,0.986694097518921,0.150098338723183,0.0624935552477837,0.987641215324402,0.142903685569763,0.0643693953752518,0.991285562515259,0.113212898373604,0.0673496946692467,0.990399837493896,0.121275469660759,0.0663370862603188,0.967285633087158,0.250550836324692,0.0397842489182949,0.963077664375305,0.265511244535446,0.0445560701191425,0.988159477710724,0.142272680997849,0.0574417226016521,0.987307906150818,0.149135529994965,0.0546046309173107,0.952072203159332,0.296003729104996,-0.0770747885107994,0.912120282649994,0.360278129577637,-0.195540964603424,0.969443500041962,0.243258282542229,0.0316973105072975,0.978761792182922,0.19773256778717,0.0541046299040318,0.979711532592773,0.194768488407135,0.0472286604344845,0.970337688922882,0.240454748272896,0.0250273160636425,0.981755793094635,0.183894783258438,0.0483578406274319,0.98634672164917,0.154359817504883,0.0573870353400707,0.968652009963989,0.245605245232582,0.0373034551739693,0.950472354888916,0.310669332742691,0.00932224094867706,0.965897858142853,0.257151633501053,0.0302422232925892,0.981489539146423,0.184583306312561,0.0510632544755936,0.898836493492126,0.405059635639191,-0.167390882968903,0.838971257209778,0.478860467672348,-0.258495539426804,0.949528396129608,0.313262164592743,0.0162121057510376,0.967377066612244,0.249160170555115,0.0458348877727985, +0.992822468280792,0.0315781682729721,0.115352958440781,0.99371874332428,0.0922125577926636,0.0634027570486069,0.9952512383461,0.0243149567395449,0.094254232943058,0.965550184249878,-0.0439940802752972,0.256471067667007,0.931227207183838,-0.166533172130585,0.32416445016861,0.96773225069046,-0.0897169411182404,0.235468432307243,0.996636152267456,0.0172731578350067,0.0801128521561623,0.995000958442688,-0.0182216372340918,0.0981890931725502,0.994983077049255,0.064728632569313,0.0762823149561882,0.994501709938049,-0.0160169471055269,0.103488303720951,0.995572626590729,0.0227889735251665,0.0911907106637955,0.993874967098236,0.0915161594748497,0.0619467385113239,0.99128520488739,0.113213144242764,0.0673533454537392,0.992025136947632,0.106234692037106,0.0678272098302841,0.99416583776474,0.0824823901057243,0.0695051103830338,0.993374288082123,0.0915751382708549,0.0694375038146973,0.993411302566528,0.0915328785777092,0.0689619854092598,0.994147777557373,0.0824975073337555,0.0697452500462532,0.997066736221313,-0.00800725538283587,0.0761170014739037,0.996900141239166,-0.000894378055818379,0.0786736309528351,0.994397640228271,0.0822835564613342,0.0663540735840797,0.996921539306641,0.0359089784324169,0.069699652493,0.996912240982056,-0.0377488881349564,0.0688552856445313,0.99733692407608,-0.00823161564767361,0.0724671930074692,0.99216890335083,0.106117978692055,0.065877266228199,0.994831562042236,0.0766007229685783,0.0666521191596985,0.997173666954041,0.035981722176075,0.065954864025116,0.994335114955902,0.0823381915688515,0.0672187060117722,0.991279602050781,0.11321946233511,0.0674262121319771,0.991280257701874,0.113217741250992,0.0674178004264832,0.993340909481049,0.0918139293789864,0.0695990920066833,0.993425488471985,0.0906466692686081,0.0699224844574928,0.993072152137756,0.0910911783576012,0.0742298066616058,0.993115901947021,0.0920792371034622,0.0724033564329147,0.996712446212769,0.00983566604554653,0.0804225727915764,0.996301054954529,0.0105929970741272,0.0852761566638947,0.993198990821838,0.0919824093580246,0.071379154920578, +0.993287801742554,0.0916728749871254,0.0705379471182823,0.996898949146271,-0.000893030199222267,0.0786873698234558,0.996728301048279,0.00981150101870298,0.0802285075187683,0.991283714771271,0.113213956356049,0.0673737227916718,0.991284370422363,0.113214030861855,0.0673637166619301,0.993372559547424,0.0915770828723907,0.0694594234228134,0.993342936038971,0.0918115004897118,0.0695734620094299,0.986443221569061,0.154108047485352,0.0563957542181015,0.990652561187744,0.120903134346008,0.0631671920418739,0.992948055267334,0.0982455164194107,0.0663488730788231,0.989591836929321,0.129541143774986,0.062667578458786,0.989615499973297,0.129476651549339,0.062425971031189,0.992460966110229,0.0990495830774307,0.072183720767498,0.995777189731598,0.0370729938149452,0.0839842185378075,0.994603276252747,0.0659381896257401,0.0801031067967415,0.992180287837982,0.0994872972369194,0.075369656085968,0.992997467517853,0.0911820828914642,0.0751125738024712,0.996250212192535,0.0106952590867877,0.0858553051948547,0.995729565620422,0.0371864661574364,0.0844982713460922,0.990399897098541,0.121275261044502,0.0663354471325874,0.991284012794495,0.113214462995529,0.0673680603504181,0.993428170681,0.0906431004405022,0.0698880851268768,0.992690324783325,0.0986785739660263,0.069488637149334,0.96112322807312,0.258132338523865,-0.0980304405093193,0.980084002017975,0.193553060293198,0.0444157309830189,0.985762596130371,0.156503736972809,0.0614713132381439,0.981372535228729,0.190714046359062,0.0231589153409004,0.988144755363464,0.153457000851631,0.00458088843151927,0.986866176128387,0.152636960148811,0.0528881214559078,0.992195427417755,0.0984690114855766,0.0764990448951721,0.98732191324234,0.0806119367480278,0.136737644672394,0.987089991569519,0.151810705661774,0.0510573871433735,0.989684641361237,0.129287615418434,0.061717800796032,0.994509637355804,0.0662285685539246,0.0810206681489944,0.992294311523438,0.0980885550379753,0.0757018551230431,0.980412602424622,0.192452281713486,0.0418715514242649,0.986499965190887,0.153958708047867,0.05580810084939,0.989670395851135,0.12932662665844,0.0618638433516026, +0.986104726791382,0.155339449644089,0.0588841736316681,-0.844254791736603,-0.114694803953171,-0.523525536060333,-0.98619556427002,-0.101461067795753,-0.130859345197678,-0.958087205886841,-0.130880564451218,-0.25483176112175,-0.820762395858765,-0.0921156704425812,-0.563794076442719,-0.932717323303223,0.0330792404711246,-0.359087973833084,-0.822521030902863,-0.082483321428299,-0.562721610069275,-0.959704339504242,-0.120019398629665,-0.254092216491699,-0.982681453227997,-0.123714819550514,-0.137955769896507,-0.997329950332642,-0.0613919235765934,-0.0395479276776314,-0.988957345485687,-0.0621342174708843,-0.13454632461071,-0.966091275215149,-0.0649821758270264,-0.2498899102211,-0.988726377487183,-0.0688004642724991,-0.132991582155228,-0.336098849773407,-0.182196825742722,-0.924035668373108,-0.620115458965302,-0.194369494915009,-0.760050892829895,-0.617870271205902,-0.230245113372803,-0.751813471317291,-0.335991263389587,-0.147359549999237,-0.930266082286835,-0.338864594697952,-0.138954609632492,-0.930517375469208,-0.619835197925568,-0.224363476037979,-0.751974284648895,-0.517399311065674,-0.249158263206482,-0.81866854429245,-0.397890150547028,-0.0510935410857201,-0.916009247303009,-0.644291639328003,-0.143127426505089,-0.751267611980438,-0.788229823112488,-0.224438399076462,-0.572993218898773,-0.739312052726746,-0.249961316585541,-0.625249683856964,-0.673575520515442,-0.106284447014332,-0.731436729431152,-0.62211948633194,-0.181627854704857,-0.761563301086426,-0.833965063095093,-0.184168040752411,-0.520177483558655,-0.793801665306091,-0.205710187554359,-0.57233053445816,-0.637007057666779,-0.169109150767326,-0.752079844474792,-0.339778125286102,-0.153923436999321,-0.927824556827545,-0.318830341100693,-0.195802420377731,-0.927366554737091,-0.000651945010758936,-0.0944640934467316,-0.995528042316437,0.000809005461633205,-0.12702214717865,-0.99189954996109,-0.000588677125051618,-0.114931888878345,-0.993373274803162,0.0200497750192881,-0.153288722038269,-0.987978041172028,0.329430431127548,-0.0317816995084286,-0.943644821643829, +0.338817715644836,-0.0645258277654648,-0.938636779785156,0.0183788519352674,-0.148554876446724,-0.988733351230621,0.128590077161789,-0.161767780780792,-0.978414952754974,0.256924510002136,0.0318069979548454,-0.96590793132782,0.331408649682999,-0.0374908931553364,-0.942742168903351,-0.319347590208054,-0.194383755326271,-0.927486956119537,-0.167663007974625,-0.213820204138756,-0.962377309799194,-0.0246879998594522,-0.0520677827298641,-0.998338341712952,-0.00144533230923116,-0.0922021120786667,-0.995739340782166,-0.394367843866348,-0.0538025461137295,-0.917376279830933,-0.506750404834747,-0.257645189762115,-0.822692513465881,-0.46134939789772,-0.192349761724472,-0.866116762161255,-0.457934409379959,-0.113440200686455,-0.881718456745148,-0.437712758779526,-0.121299959719181,-0.890894949436188,-0.481027722358704,-0.184535667300224,-0.857064127922058,-0.459515988826752,-0.183089539408684,-0.869093358516693,-0.40371835231781,-0.125654429197311,-0.906213223934174,-0.548052608966827,-0.156343683600426,-0.821702420711517,-0.578921794891357,-0.215811133384705,-0.786304712295532,-0.564557373523712,-0.198392227292061,-0.801196336746216,-0.520857155323029,-0.141403332352638,-0.841850876808167,-0.624023377895355,-0.15590800344944,-0.765694141387939,-0.726913809776306,-0.262002110481262,-0.634784400463104,-0.637006521224976,-0.18864580988884,-0.74741917848587,-0.564145982265472,-0.149182543158531,-0.812086284160614,0.339186877012253,-0.0678881332278252,-0.938266217708588,0.355433493852615,-0.109810084104538,-0.928228855133057,0.629881203174591,0.0171764530241489,-0.776501655578613,0.63774836063385,-0.0114862462505698,-0.770159125328064,0.638294279575348,-0.0166415963321924,-0.769612610340118,0.650197744369507,-0.0558628104627132,-0.757708549499512,0.853716135025024,0.0683939009904861,-0.516227841377258,0.860049784183502,0.0404879972338676,-0.508601307868958,0.649337232112885,-0.0524593405425549,-0.758689105510712,0.731071710586548,-0.070854127407074,-0.678611814975739,0.807703495025635,0.103210523724556,-0.580484867095947,0.855618953704834,0.0604045204818249,-0.514069736003876, +0.354279011487961,-0.106197170913219,-0.929090201854706,0.491357624530792,-0.126490533351898,-0.861723780632019,0.611700713634491,0.0380306653678417,-0.790174722671509,0.632973492145538,0.0069013936445117,-0.774142742156982,-0.753894805908203,-0.29156231880188,-0.588756501674652,-0.71829879283905,-0.177361100912094,-0.672748029232025,-0.735820710659027,-0.223102241754532,-0.639369368553162,-0.750483632087708,-0.342740565538406,-0.565069258213043,-0.768739938735962,-0.326751977205276,-0.54979282617569,-0.751187562942505,-0.21360956132412,-0.624570429325104,-0.757982194423676,-0.238777875900269,-0.606999278068542,-0.778319120407104,-0.35587540268898,-0.517273664474487,-0.671077370643616,-0.25946769118309,-0.694501042366028,-0.661083042621613,-0.176535248756409,-0.72924929857254,-0.684994876384735,-0.300141364336014,-0.663850426673889,-0.672712087631226,-0.283482015132904,-0.683444499969482,-0.659958481788635,-0.228916242718697,-0.715578198432922,-0.622096180915833,-0.155664250254631,-0.767310202121735,-0.640744805335999,-0.186800420284271,-0.744682371616364,-0.660719037055969,-0.264808565378189,-0.702372252941132,-0.834078311920166,-0.325340807437897,-0.445496022701263,-0.799830436706543,-0.296660602092743,-0.521789073944092,-0.838585138320923,-0.349114745855331,-0.418203383684158,-0.894385278224945,-0.319069087505341,-0.313480347394943,-0.886478900909424,-0.347143858671188,-0.306016832590103,-0.837900221347809,-0.350374609231949,-0.41852217912674,-0.859052419662476,-0.341434359550476,-0.381381094455719,-0.912385642528534,-0.316445022821426,-0.259644031524658,-0.825328230857849,-0.372812479734421,-0.424080371856689,-0.809417903423309,-0.287849932909012,-0.511844992637634,-0.814784407615662,-0.319362103939056,-0.483874201774597,-0.84259158372879,-0.371923714876175,-0.389502495527267,-0.784439563751221,-0.326904535293579,-0.52705591917038,-0.765063107013702,-0.278444170951843,-0.580643832683563,-0.791131854057312,-0.305945992469788,-0.529629588127136,-0.830664753913879,-0.363443702459335,-0.421787559986115,-0.910913348197937,-0.245957434177399,-0.331273078918457, +-0.915149748325348,-0.306093275547028,-0.262312442064285,-0.980104506015778,-0.146778553724289,-0.133607760071754,-0.932712614536285,-0.201666355133057,-0.298961371183395,-0.757759809494019,-0.212939709424973,-0.616811871528625,-0.849317789077759,-0.252584040164948,-0.463530510663986,-0.862157881259918,-0.159821942448616,-0.480771005153656,-0.774371087551117,-0.188562989234924,-0.60398131608963,-0.639313101768494,-0.180590867996216,-0.747439324855804,-0.758206129074097,-0.208974272012711,-0.617618978023529,-0.757406175136566,-0.13151827454567,-0.639561295509338,-0.656351804733276,-0.17138484120369,-0.734730958938599,-0.342880874872208,-0.128373086452484,-0.9305659532547,-0.499981194734573,-0.140210956335068,-0.854610860347748,-0.488265305757523,-0.094722293317318,-0.867539405822754,-0.345879375934601,-0.15088252723217,-0.926068007946014,-0.75281035900116,-0.292813718318939,-0.58952260017395,-0.794882893562317,-0.306625723838806,-0.523585617542267,-0.709804058074951,-0.234269320964813,-0.664301216602325,-0.71457427740097,-0.18085253238678,-0.675778031349182,-0.656852602958679,-0.231489643454552,-0.717605292797089,-0.705742299556732,-0.242126777768135,-0.665809690952301,-0.616007447242737,-0.176030248403549,-0.767820417881012,-0.628975510597229,-0.150284484028816,-0.762760996818542,-0.704480230808258,-0.244542077183723,-0.666263341903687,-0.758193671703339,-0.209086835384369,-0.617596209049225,-0.636539101600647,-0.213101133704185,-0.741219162940979,-0.619972348213196,-0.168767958879471,-0.766258358955383,-0.797721087932587,-0.300938785076141,-0.522567629814148,-0.848403632640839,-0.257777035236359,-0.462344497442245,-0.750849187374115,-0.263937413692474,-0.605444133281708,-0.716316699981689,-0.221392452716827,-0.66172182559967,-0.499276727437973,-0.15523487329483,-0.852422952651978,-0.639698386192322,-0.175273850560188,-0.748374938964844,-0.633829951286316,-0.110048800706863,-0.765603542327881,-0.50966602563858,-0.157317459583282,-0.845867455005646,-0.175651282072067,-0.101774983108044,-0.979177534580231,-0.343592077493668,-0.106425084173679,-0.933069348335266, +-0.313885658979416,-0.0746176466345787,-0.946524143218994,-0.1823700517416,-0.138970196247101,-0.97335946559906,-0.554130256175995,-0.205736637115479,-0.806605339050293,-0.593449234962463,-0.21569986641407,-0.775429964065552,-0.496881663799286,-0.14523708820343,-0.855578660964966,-0.523505687713623,-0.139531791210175,-0.840519368648529,-0.442806631326675,-0.193927735090256,-0.875393927097321,-0.46874138712883,-0.191576182842255,-0.862310886383057,-0.360416680574417,-0.11552882194519,-0.925609469413757,-0.401991158723831,-0.126900911331177,-0.906807243824005,-0.469521313905716,-0.190329685807228,-0.862162590026855,-0.499807238578796,-0.144163101911545,-0.854054927825928,-0.342364341020584,-0.141741350293159,-0.928814351558685,-0.363112777471542,-0.110973574221134,-0.925112962722778,-0.592907071113586,-0.216620996594429,-0.775587856769562,-0.63962060213089,-0.176368832588196,-0.748184144496918,-0.498051792383194,-0.176931649446487,-0.848904967308044,-0.500158786773682,-0.139647424221039,-0.854599297046661,-0.00322504504583776,-0.0852268561720848,-0.99635648727417,-0.17593140900135,-0.0921379551291466,-0.980080962181091,-0.140590041875839,-0.0589605607092381,-0.988310813903809,-0.0146220736205578,-0.123301774263382,-0.992261469364166,0.338628470897675,-0.0793780386447906,-0.937565922737122,0.155998826026917,-0.078142061829567,-0.984661459922791,0.162888541817665,-0.060402300208807,-0.984793841838837,0.314791351556778,-0.113838732242584,-0.942309558391571,-0.309855937957764,-0.190595522522926,-0.931484222412109,-0.326491475105286,-0.171177834272385,-0.92957067489624,-0.194785118103027,-0.0776263475418091,-0.977769374847412,-0.231203183531761,-0.0724923387169838,-0.970200955867767,-0.114329867064953,-0.155207306146622,-0.981243789196014,-0.159011721611023,-0.136183813214302,-0.977839112281799,-0.0181223917752504,-0.0523670166730881,-0.998463451862335,-0.0500742495059967,-0.044514175504446,-0.997753083705902,-0.156796410679817,-0.139749363064766,-0.977693736553192,-0.175772577524185,-0.0976732671260834,-0.979573369026184, +-0.00306183309294283,-0.0906101688742638,-0.995881736278534,-0.0201378557831049,-0.0492761954665184,-0.998582243919373,-0.331407397985458,-0.163297981023788,-0.929248571395874,-0.343402355909348,-0.112818732857704,-0.93238765001297,-0.175455883145332,-0.108178704977036,-0.978525757789612,-0.197128564119339,-0.0737242624163628,-0.977601706981659,-0.322598546743393,-0.182098776102066,-0.928854286670685,-0.232364550232887,-0.0716454535722733,-0.969986438751221,-0.28881248831749,-0.0884406715631485,-0.953291893005371,-0.33537346124649,-0.158744260668755,-0.928614497184753,-0.22949843108654,-0.17276006937027,-0.957854092121124,-0.213919758796692,-0.19865109026432,-0.956439256668091,-0.18970188498497,-0.121912285685539,-0.974243581295013,-0.174808338284492,-0.0605384819209576,-0.982739627361298,-0.0475847497582436,-0.0459858849644661,-0.99780809879303,-0.0484563186764717,-0.0997367054224014,-0.993833303451538,-0.0398759469389915,-0.168652445077896,-0.984868764877319,-0.105736657977104,-0.161099091172218,-0.981257796287537,0.261216163635254,0.0290691573172808,-0.964842557907104,0.139564797282219,-0.169524565339088,-0.975593686103821,0.189035579562187,-0.109353557229042,-0.975862383842468,0.191007792949677,-0.0421757027506828,-0.980682015419006,0.221638560295105,-0.0509081184864044,-0.973799169063568,0.170755177736282,-0.104000218212605,-0.979809582233429,0.200689241290092,-0.106573864817619,-0.973840773105621,0.264875084161758,-0.0512268655002117,-0.96292108297348,0.0880482420325279,-0.0795285105705261,-0.992936432361603,0.0600263737142086,-0.131793007254601,-0.98945826292038,0.0694377645850182,-0.114468060433865,-0.990997314453125,0.114196978509426,-0.0589022673666477,-0.991710424423218,0.0134695703163743,-0.0796120762825012,-0.996734857559204,-0.152104571461678,-0.223871439695358,-0.962676346302032,-0.0115137407556176,-0.110817633569241,-0.993773996829987,0.0803652405738831,-0.0772346705198288,-0.993768811225891,0.156539663672447,-0.0914043486118317,-0.983433067798615,-0.00321217067539692,-0.0856522768735886,-0.996319890022278, +0.0300808660686016,-0.0404506623744965,-0.998728632926941,0.139904603362083,-0.108970060944557,-0.984150528907776,0.506960213184357,-0.0356261618435383,-0.861232936382294,0.338108599185944,-0.0683824867010117,-0.938619434833527,0.354749441146851,-6.70906665618531e-05,-0.934961318969727,0.50794917345047,-0.0233874805271626,-0.86106950044632,0.0793188586831093,-0.120187841355801,-0.989577412605286,0.0345004349946976,-0.132680922746658,-0.990558266639709,0.15440209209919,-0.0546058900654316,-0.986497938632965,0.114826247096062,-0.0592489540576935,-0.991617202758789,0.224787697196007,-0.119863487780094,-0.967007458209991,0.200950294733047,-0.124087944626808,-0.971710503101349,0.319494783878326,-0.043948020786047,-0.946568369865417,0.272343665361404,-0.0558655001223087,-0.960576951503754,0.201865121722221,-0.125466421246529,-0.971343755722046,0.156377822160721,-0.087365135550499,-0.983825862407684,0.338547974824905,-0.0776170268654823,-0.937742471694946,0.320393621921539,-0.0453745387494564,-0.946197271347046,0.0342195853590965,-0.132254242897034,-0.990624964237213,-0.00289623206481338,-0.0960671976208687,-0.995370626449585,0.156599208712578,-0.0929059758782387,-0.983282923698425,0.154908522963524,-0.0553550869226456,-0.986376762390137,0.638006985187531,-0.0446962490677834,-0.768732249736786,0.506980895996094,-0.0360861346125603,-0.861201584339142,0.521802067756653,0.0130405267700553,-0.852966904640198,0.610952258110046,-0.059053611010313,-0.789461731910706,0.861880838871002,-0.0289641935378313,-0.506282985210419,0.76077127456665,-0.0133621683344245,-0.648882448673248,0.765180110931396,0.053876206278801,-0.641558051109314,0.838008522987366,-0.0327177345752716,-0.544675529003143,0.358263969421387,-0.109931670129299,-0.927125632762909,0.446846276521683,0.00480118999257684,-0.894597887992859,0.392003059387207,-0.0128567926585674,-0.919874131679535,0.343389570713043,-0.0857516899704933,-0.935270130634308,0.445919007062912,-0.0942540615797043,-0.890096843242645,0.459810942411423,-0.11929140239954,-0.879967987537384,0.483591288328171,-0.0406240448355675,-0.874350726604462, +0.494864910840988,0.0218219924718142,-0.868695914745331,0.612397789955139,0.0340321138501167,-0.789816915988922,0.611065089702606,-0.0147002404555678,-0.791443943977356,0.613768398761749,-0.0824175328016281,-0.785172402858734,0.562799632549286,-0.0822565853595734,-0.822490394115448,0.374414473772049,-0.120246782898903,-0.919431746006012,0.359364926815033,-0.108621381223202,-0.926854074001312,0.485552281141281,-0.0112929902970791,-0.874134719371796,0.453179150819778,0.000266966730123386,-0.891419470310211,0.558235287666321,-0.0786504372954369,-0.825946390628815,0.518995106220245,-0.0712736696004868,-0.851800620555878,0.636175215244293,0.014346681535244,-0.77141135931015,0.613155782222748,0.0335202440619469,-0.789250612258911,0.524404883384705,-0.0814213901758194,-0.847567200660706,0.507459759712219,-0.0474793128669262,-0.860366523265839,0.637815713882446,-0.036562692373991,-0.769320726394653,0.637117445468903,0.0126323942095041,-0.770663201808929,0.357771277427673,-0.105978786945343,-0.927776038646698,0.337911784648895,-0.0644311308860779,-0.938969790935516,0.507591903209686,-0.050935372710228,-0.860090732574463,0.486173748970032,-0.0123681826516986,-0.873774647712708,0.817519009113312,0.0928473249077797,-0.568367898464203,0.736889779567719,-0.0768359899520874,-0.67163211107254,0.784481704235077,-0.0170469079166651,-0.619917690753937,0.809018433094025,0.0702505260705948,-0.583570122718811,0.822042047977448,0.0639906972646713,-0.565819919109344,0.796869337558746,-0.0227214638143778,-0.603724241256714,0.805130660533905,-0.0191306285560131,-0.592788875102997,0.838800549507141,0.0633515268564224,-0.540740430355072,0.713180124759674,0.0130632994696498,-0.700859069824219,0.689155519008636,-0.0416302867233753,-0.7234166264534,0.698958933353424,-0.0282042436301708,-0.714605450630188,0.735465943813324,0.0354882590472698,-0.676631689071655,0.64639812707901,0.00865885615348816,-0.762951195240021,0.505396127700806,-0.136631950736046,-0.852001428604126,0.629374980926514,-0.0208176895976067,-0.776822865009308,0.703791618347168,0.0167559068650007,-0.710208833217621, +0.76135128736496,-0.0465104430913925,-0.646669149398804,0.637606084346771,-0.029202114790678,-0.769808888435364,0.649064600467682,0.0386766344308853,-0.759749472141266,0.731762230396271,-0.048316977918148,-0.67984527349472,0.936100423336029,0.0113745601847768,-0.351548910140991,0.861002504825592,0.0125498389825225,-0.508445799350739,0.860966861248016,0.0645947679877281,-0.504542946815491,0.922239780426025,-0.00903076305985451,-0.386512994766235,0.708966016769409,-0.0359681993722916,-0.704324841499329,0.674452841281891,-0.0600199699401855,-0.73587429523468,0.761313557624817,0.0195854250341654,-0.648088037967682,0.738227128982544,0.0334849245846272,-0.67372065782547,0.813295960426331,-0.0261993445456028,-0.581260085105896,0.789287984371185,-0.0424727983772755,-0.612552642822266,0.860208094120026,0.0423498265445232,-0.508181571960449,0.8414506316185,0.0610115565359592,-0.536878407001495,0.792468070983887,-0.0502383299171925,-0.607840836048126,0.760933101177216,-0.0191479865461588,-0.648547768592834,0.861649990081787,-0.00927616376429796,-0.507418215274811,0.86164653301239,0.0387815237045288,-0.506024956703186,0.678450405597687,-0.0684397220611572,-0.731451451778412,0.637925684452057,-0.0410164892673492,-0.769004821777344,0.761182308197021,-0.0308648124337196,-0.6478031873703,0.762785851955414,0.0165536124259233,-0.64643931388855,0.981835007667542,0.0394168198108673,-0.185597270727158,0.934966266155243,0.0399404428899288,-0.352481186389923,0.935018718242645,0.0849555507302284,-0.344271034002304,0.974991917610168,0.0159672051668167,-0.221666157245636,0.983518302440643,0.0850327089428902,0.159565791487694,0.995254218578339,0.0963016226887703,-0.0139721045270562,0.989672183990479,0.143348604440689,-0.000437668291851878,0.988860845565796,0.06919115036726,0.131783097982407,0.904057800769806,-0.00258604646660388,-0.427402496337891,0.880465388298035,-0.0125830890610814,-0.473943442106247,0.929912745952606,0.0748464837670326,-0.360083699226379,0.920657515525818,0.085894800722599,-0.380804240703583,0.962276101112366,0.0245567988604307,-0.270964384078979, +0.947236895561218,0.0131799969822168,-0.320263296365738,0.975232362747192,0.0921943858265877,-0.20105242729187,0.968528270721436,0.0926118791103363,-0.23103255033493,0.947877764701843,0.0104549480602145,-0.318462729454041,0.934598088264465,0.0464903935790062,-0.352654367685318,0.981096982955933,0.0537900812923908,-0.185890644788742,0.975073635578156,0.0929030105471611,-0.20149552822113,0.881553173065186,-0.0158806163817644,-0.471817672252655,0.860774397850037,0.0180508941411972,-0.508666455745697,0.935529172420502,0.0281042866408825,-0.352129757404327,0.930358588695526,0.0734703466296196,-0.35921448469162,0.998455703258514,0.0538829900324345,-0.013520029373467,0.980151534080505,0.068209707736969,-0.186146467924118,0.977925598621368,0.121942855417728,-0.169681131839752,0.997822761535645,0.0436360873281956,-0.0494526065886021,0.93528938293457,0.133242964744568,0.327841609716415,0.979411065578461,0.124049000442028,0.159266874194145,0.975511968135834,0.145776405930519,0.164698496460915,0.945013999938965,0.0905815958976746,0.31423482298851,0.91288036108017,-0.0344214774668217,-0.406773298978806,0.925479650497437,0.00173518620431423,-0.378793299198151,0.936386346817017,0.0897229537367821,-0.339308619499207,0.949910521507263,0.13559553027153,-0.281574308872223,0.986403703689575,0.0448268875479698,-0.158107951283455,0.973365485668182,0.0528692603111267,-0.223079547286034,0.988200306892395,0.0887318029999733,-0.124847337603569,0.982437908649445,0.185929626226425,0.0156834349036217,0.971633672714233,0.0550535768270493,-0.22999370098114,0.963757574558258,0.0217752829194069,-0.265889376401901,0.972770571708679,0.0836770981550217,-0.216137886047363,0.974074840545654,0.110549718141556,-0.197375789284706,0.919766426086426,0.00607120059430599,-0.392419457435608,0.906243920326233,-0.00519732106477022,-0.422723293304443,0.927132725715637,0.0778144970536232,-0.366564780473709,0.932011425495148,0.0932043120265007,-0.3502396941185,0.99306446313858,0.0235031936317682,-0.115198709070683,0.98714679479599,0.0240947231650352,-0.157989472150803, +0.994408667087555,0.1046282351017,-0.0142977554351091,0.990322589874268,0.130572944879532,-0.0470326505601406,0.996626198291779,0.053085170686245,0.0625963285565376,0.998323857784271,0.0559247098863125,0.0148959485813975,0.976859390735626,0.145599484443665,0.156673550605774,0.973648846149445,0.169942408800125,0.152077957987785,0.998343348503113,0.0555087700486183,0.0151445968076587,0.995389997959137,0.0948892682790756,-0.0139574287459254,0.982792556285858,0.0931173637509346,0.159524083137512,0.97712230682373,0.139966756105423,0.160129129886627,0.987347185611725,0.0224997792392969,-0.156969577074051,0.980319797992706,0.0658573284745216,-0.186107367277145,0.997605383396149,0.0677997469902039,-0.0136709278449416,0.993982911109924,0.108286119997501,-0.0164967067539692,0.860104978084564,0.156197890639305,0.485614717006683,0.934004127979279,0.142275378108025,0.327710002660751,0.929134011268616,0.150182694196701,0.337868869304657,0.87630295753479,0.0991912856698036,0.471438407897949,0.637391984462738,0.163242071866989,0.753049433231354,0.760855674743652,0.160239309072495,0.628825783729553,0.748068153858185,0.176295056939125,0.639776587486267,0.66179633140564,0.115665636956692,0.740707159042358,0.860829710960388,0.0329044125974178,-0.50782835483551,0.869395732879639,-0.00826107058674097,-0.494047343730927,0.974596738815308,0.112087838351727,-0.193901404738426,0.978898167610168,0.0855389162898064,-0.185584157705307,0.980106234550476,0.073404848575592,-0.18440081179142,0.984907925128937,0.0356428362429142,-0.169369414448738,0.977636337280273,0.145583719015121,0.15176522731781,0.980697512626648,0.111150592565536,0.16086620092392,0.984434127807617,0.0406156554818153,-0.17099666595459,0.992039680480957,0.0202627331018448,-0.124284960329533,0.982833683490753,0.18347342312336,0.0193776767700911,0.97773414850235,0.144575551152229,0.152098059654236,0.869315087795258,-0.00777855608612299,-0.494197279214859,0.91565328836441,-0.0393564812839031,-0.400037616491318,0.948960721492767,0.137338995933533,-0.283921778202057,0.975277006626129,0.108207061886787,-0.192681044340134, +0.642882227897644,0.12497353553772,0.755701065063477,0.863668859004974,0.128403171896935,0.487430691719055,0.859479308128357,0.0981577709317207,0.501657664775848,0.642883837223053,0.166312694549561,0.747690081596375,0.643045961856842,0.170917242765427,0.746511340141296,0.859653532505035,0.10301411151886,0.500383675098419,0.830986499786377,0.0672362297773361,0.552214562892914,0.715664625167847,0.233809307217598,0.658146858215332,0.860061049461365,0.160590097308159,0.484257966279984,0.981825232505798,0.0733269527554512,0.17505007982254,0.964711964130402,0.0126387504860759,0.263004004955292,0.894411563873291,0.20615841448307,0.396896302700043,0.865042507648468,0.113720066845417,0.488640159368515,0.981782078742981,0.0994082912802696,0.161931961774826,0.981937944889069,0.065515898168087,0.177498653531075,0.860166728496552,0.154290318489075,0.486114978790283,0.993414342403412,0.02188416197896,-0.112468004226685,0.989627420902252,0.133961647748947,-0.0518846660852432,0.9825479388237,0.150917425751686,-0.108735844492912,0.99110335111618,0.082531213760376,-0.104415751993656,0.986518621444702,0.14343050122261,0.0787967070937157,0.998589634895325,0.0394247844815254,0.0355587489902973,0.993441343307495,0.0983098521828651,0.0583908334374428,0.980835556983948,0.178330823779106,0.0784851163625717,0.9726921916008,0.158308088779449,0.169730395078659,0.971231818199158,0.141627818346024,0.191442653536797,0.987935543060303,0.0723329558968544,0.136935532093048,0.996438443660736,0.0485379137098789,0.0689530372619629,0.963998138904572,0.109018258750439,0.242534130811691,0.977724075317383,0.0970155894756317,0.186128079891205,0.936161577701569,0.16698382794857,0.309383064508438,0.939367771148682,0.173713803291321,0.295654684305191,0.912822961807251,0.110863253474236,0.393018543720245,0.932692468166351,0.112188518047333,0.342780590057373,0.871316015720367,0.171558007597923,0.459756702184677,0.881611704826355,0.170636102557182,0.440050393342972,0.932863295078278,0.113949999213219,0.341733306646347,0.93188065290451,0.156114265322685,0.327455073595047, +0.861442506313324,0.147996142506599,0.485812872648239,0.872637748718262,0.184686109423637,0.45210000872612,0.977735221385956,0.0978014171123505,0.1856579631567,0.978133857250214,0.133882910013199,0.15915247797966,0.935736298561096,0.129964202642441,0.327882617712021,0.936291635036469,0.172224715352058,0.306099086999893,0.965523779392242,0.0149412117898464,0.259886026382446,0.937554180622101,0.090266264975071,0.335922837257385,0.924538314342499,0.165845975279808,0.343109548091888,0.896494269371033,0.212930172681808,0.388534426689148,0.845628499984741,0.0930461287498474,0.525599420070648,0.869089722633362,0.109266810119152,0.482435524463654,0.811235249042511,0.156524360179901,0.563380300998688,0.71503883600235,0.232940122485161,0.659134566783905,0.88050639629364,0.119462318718433,0.45873436331749,0.90847510099411,0.102670207619667,0.405131846666336,0.869280457496643,0.149100348353386,0.471296697854996,0.839277923107147,0.178664579987526,0.513509094715118,0.947826087474823,0.102898210287094,0.301724940538406,0.962182879447937,0.102058291435242,0.252563387155533,0.933444142341614,0.156809791922569,0.322634100914001,0.920136332511902,0.160467684268951,0.357210367918015,0.761486887931824,0.156695231795311,0.628954946994781,0.860797166824341,0.15199975669384,0.485720366239548,0.848173797130585,0.167242735624313,0.502624154090881,0.784077346324921,0.108535945415497,0.611099481582642,0.491652369499207,0.174863010644913,0.853053867816925,0.636672735214233,0.166957318782806,0.75284343957901,0.629421591758728,0.17326232790947,0.757501542568207,0.508975028991699,0.114886678755283,0.853080034255981,0.833494961261749,0.095717154443264,0.544173061847687,0.862452030181885,0.109696112573147,0.494108557701111,0.777173638343811,0.154209986329079,0.610098659992218,0.786935150623322,0.160916179418564,0.595683872699738,0.731846332550049,0.0884483233094215,0.675705373287201,0.770289123058319,0.117733262479305,0.626732468605042,0.646215975284576,0.16338874399662,0.745458841323853,0.653561532497406,0.160034760832787,0.739760935306549,0.771005809307098,0.121245935559273,0.625179529190063, +0.758776843547821,0.171528413891792,0.62835955619812,0.639413952827454,0.152520805597305,0.753582954406738,0.65070652961731,0.188329562544823,0.735603809356689,0.862973511219025,0.112654030323029,0.492530018091202,0.859097301959991,0.162142649292946,0.485449910163879,0.763023555278778,0.147814601659775,0.629242479801178,0.781048595905304,0.178383037447929,0.598450183868408,0.335076242685318,0.163468033075333,0.927902102470398,0.494251400232315,0.162206396460533,0.854051887989044,0.480736017227173,0.162731662392616,0.861632943153381,0.356125056743622,0.100281476974487,0.929041743278503,0.000575051468331367,0.105863898992538,0.994380474090576,0.172952219843864,0.125469952821732,0.976905763149261,0.147386029362679,0.144372805953026,0.978485584259033,0.033166978508234,0.060499083250761,0.997617065906525,0.647427022457123,0.146673247218132,0.747880458831787,0.751824200153351,0.114362813532352,0.649370074272156,0.64887934923172,0.144801616668701,0.746985971927643,0.532427728176117,0.17191319167614,0.828834474086761,0.514903903007507,0.161937937140465,0.841813564300537,0.588136732578278,0.107142463326454,0.80163311958313,0.517316520214081,0.165065750479698,0.839724183082581,0.430797964334488,0.204596400260925,0.878950178623199,0.653047502040863,0.147466152906418,0.742820858955383,0.720719814300537,0.0751845464110374,0.689137399196625,0.649336993694305,0.152952924370766,0.744961023330688,0.57311886548996,0.225376024842262,0.787870943546295,0.769652545452118,0.12647320330143,0.625811040401459,0.824871420860291,0.0842493027448654,0.559007346630096,0.76437646150589,0.129658728837967,0.631599009037018,0.708157241344452,0.18386746942997,0.681693494319916,0.646180510520935,0.147718444466591,0.748752295970917,0.645181059837341,0.157973870635033,0.747519671916962,0.504136085510254,0.205497294664383,0.838819205760956,0.564929604530334,0.216283991932869,0.796288847923279,0.486435025930405,0.133154645562172,0.863510727882385,0.491112798452377,0.156162738800049,0.85698390007019,0.359622359275818,0.195528492331505,0.912381708621979,0.421872138977051,0.196343630552292,0.885140240192413, +0.487330287694931,0.14269608259201,0.861479640007019,0.490653902292252,0.179613783955574,0.852641582489014,0.337153553962708,0.153461426496506,0.928857982158661,0.360394418239594,0.197840511798859,0.911578297615051,0.642560184001923,0.144730135798454,0.752442419528961,0.633077919483185,0.184828996658325,0.75169849395752,0.494116723537445,0.162872955203056,0.854003012180328,0.504630744457245,0.207476258277893,0.838034272193909,0.1716298609972,0.131984755396843,0.976280391216278,0.338453531265259,0.147101938724518,0.929413974285126,0.311216711997986,0.160248205065727,0.936730861663818,0.199319884181023,0.0840617641806602,0.976322293281555,-0.167779043316841,0.0633008480072021,0.983790218830109,-0.00240676733665168,0.120660804212093,0.992690980434418,-0.0294772777706385,0.129953980445862,0.991081655025482,-0.121228113770485,0.0188666805624962,0.992445349693298,0.316051930189133,0.100999109447002,0.943350613117218,0.331342458724976,0.114449068903923,0.936543464660645,0.198831528425217,0.163297325372696,0.966333389282227,0.258745312690735,0.158197477459908,0.952903211116791,0.157123476266861,0.0693508088588715,0.985141038894653,0.16902768611908,0.0853782296180725,0.981906414031982,0.0309637486934662,0.138699427247047,0.989850461483002,0.0931282266974449,0.128803953528404,0.987287580966949,0.169989377260208,0.0878530889749527,0.981522142887115,0.170923516154289,0.135446831583977,0.975929975509644,0.00147324963472784,0.101401776075363,0.994844496250153,0.0313372276723385,0.139723375439644,0.989694595336914,0.330353170633316,0.111727461218834,0.93722128868103,0.336611926555634,0.156088352203369,0.928616642951965,0.173102080821991,0.124728932976723,0.976974189281464,0.19931535422802,0.164584010839462,0.96601527929306,-0.333489209413528,0.0337692573666573,0.942148983478546,-0.172907963395119,0.0889650210738182,0.98091185092926,-0.195910170674324,0.10326474905014,0.975169479846954,-0.28858295083046,-0.00265957950614393,0.957451224327087,-0.629374265670776,-0.0332172401249409,0.776392102241516,-0.49105042219162,0.0126823559403419,0.871038973331451, +-0.498081713914871,0.038524191826582,0.866273999214172,-0.600719451904297,-0.0636377483606339,0.796923100948334,0.0856667906045914,0.216429233551025,0.972532629966736,0.258328676223755,0.0406084544956684,0.96520322561264,0.201715931296349,0.0810687690973282,0.976083278656006,0.179340034723282,0.15492981672287,0.971511125564575,0.147772669792175,0.137953147292137,0.97935289144516,0.214395940303802,0.0880144536495209,0.972773253917694,0.179598823189735,0.0888886675238609,0.979715764522552,0.0983879342675209,0.13390888273716,0.986097455024719,0.325566738843918,0.149198353290558,0.933673501014709,0.39419287443161,0.0950602814555168,0.91409832239151,0.342529654502869,0.124454028904438,0.931227505207062,0.265214204788208,0.163898766040802,0.950157165527344,0.382662981748581,0.181265577673912,0.905931413173676,0.559567928314209,0.0498463325202465,0.827284276485443,0.439054489135742,0.119568146765232,0.890468716621399,0.343629419803619,0.159190982580185,0.925514459609985,0.639098346233368,0.158491611480713,0.752618014812469,0.64017379283905,0.115888945758343,0.759438931941986,0.352112859487534,0.175199002027512,0.919413864612579,0.340223401784897,0.145276963710785,0.92905467748642,0.337262898683548,0.168767005205154,0.926159560680389,0.347895592451096,0.123403072357178,0.929376304149628,0.012639925815165,0.174275502562523,0.984615802764893,-0.00285397283732891,0.143739774823189,0.989611387252808,0.347290903329849,0.116806738078594,0.930454313755035,0.269278943538666,0.052616935223341,0.961623847484589,0.0889377072453499,0.219693750143051,0.971506416797638,0.0100636165589094,0.151062548160553,0.988472998142242,0.639989793300629,0.113313734531403,0.759982287883759,0.556108891963959,0.0462854951620102,0.829819560050964,0.403859734535217,0.206301927566528,0.891255736351013,0.351493448019028,0.166799083352089,0.92121148109436,-0.000117116192996036,0.0379558131098747,0.99927943944931,0.00405295053496957,0.0647490546107292,0.997893393039703,-0.152372241020203,0.127875655889511,0.980015575885773,-0.109430693089962,0.138069704174995,0.984358608722687, +-0.203171402215958,0.0354452058672905,0.978501439094543,-0.174671202898026,0.0626184716820717,0.982633650302887,-0.329497098922729,0.103583835065365,0.938457250595093,-0.292704582214355,0.12227775156498,0.94835239648819,-0.178292796015739,0.0517555177211761,0.982615411281586,-0.173308566212654,0.0909924134612083,0.980655252933502,-0.336854130029678,0.0506239347159863,0.940194964408875,-0.330261707305908,0.1014414280653,0.938422620296478,0.00723874010145664,0.0735210478305817,0.997267484664917,-0.00220650993287563,0.119667820632458,0.992811560630798,-0.171640634536743,0.0825731009244919,0.981693029403687,-0.152600556612015,0.127221211791039,0.980065286159515,-0.489531248807907,0.00505255162715912,0.871971189975739,-0.335863679647446,0.0456117019057274,0.940805613994598,-0.352710783481598,0.0788196176290512,0.932406902313232,-0.462441027164459,-0.0176856275647879,0.886473655700684,-0.748556673526764,-0.0782083347439766,0.658442437648773,-0.634083330631256,-0.00920306518673897,0.773210108280182,-0.638272762298584,-0.00528070097789168,0.769792258739471,-0.699744462966919,-0.116921313107014,0.704760313034058,0.0143720069900155,0.0521151758730412,0.998537659645081,-0.105489693582058,0.14227619767189,0.984189748764038,-0.0374713949859142,0.132562518119812,0.990466117858887,0.0284026470035315,0.073061428964138,0.99692291021347,-0.0769888758659363,0.0504482463002205,0.995754837989807,-0.0731595382094383,0.0170044843107462,0.997175395488739,-0.110401250422001,0.091397225856781,0.989675760269165,-0.143158867955208,0.144842267036438,0.97904360294342,-0.29195174574852,0.123010724782944,0.948489606380463,-0.267637580633163,0.0730682760477066,0.96074515581131,-0.250648528337479,0.0091132465749979,0.968035280704498,-0.205307632684708,0.0330470465123653,0.978139340877533,-0.390735894441605,0.0226573925465345,0.920223951339722,-0.357919782400131,0.0200337469577789,0.933537483215332,-0.485958069562912,0.0586787462234497,0.872010052204132,-0.445662319660187,0.0747472271323204,0.89207512140274,-0.526576161384583,-0.00972125213593245,0.850072383880615, +-0.507290422916412,-0.00790002103894949,0.861738920211792,-0.628565847873688,0.0317726396024227,0.777107119560242,-0.591884195804596,0.0552315339446068,0.804128527641296,-0.51100742816925,-0.0203761272132397,0.859334766864777,-0.492464363574982,0.0199231598526239,0.870104610919952,-0.631161570549011,-0.0243330970406532,0.775269746780396,-0.630123853683472,0.0264998860657215,0.776042401790619,-0.361203998327255,0.00980476941913366,0.932435274124146,-0.336575329303741,0.049208402633667,0.940369963645935,-0.49015811085701,0.00818287115544081,0.871595144271851,-0.486815333366394,0.0561474822461605,0.871698558330536,-0.851765215396881,-0.0873956456780434,0.51658308506012,-0.758506417274475,-0.0267017390578985,0.651118338108063,-0.767263054847717,-0.0134918466210365,0.641190588474274,-0.816141068935394,-0.12059773504734,0.565128207206726,-0.981583952903748,-0.0596023611724377,0.181495130062103,-0.935945868492126,-0.043352410197258,0.349465161561966,-0.949249804019928,-0.00350512424483895,0.314503759145737,-0.981058478355408,-0.0840846598148346,0.174511402845383,-0.549136400222778,0.12726753950119,0.825985550880432,-0.395744234323502,0.00614701397716999,0.91834020614624,-0.460869312286377,0.021905830129981,0.88719767332077,-0.522642254829407,0.0898174494504929,0.847807705402374,-0.544054925441742,0.0746277868747711,0.835724174976349,-0.477216124534607,0.0105217499658465,0.878722965717316,-0.506735444068909,0.0117838177829981,0.862021088600159,-0.582865297794342,0.0650945529341698,0.809957265853882,-0.395231515169144,0.0660865753889084,0.916201174259186,-0.346505045890808,0.0249932836741209,0.937715113162994,-0.374752134084702,0.0394991338253021,0.926283240318298,-0.439451038837433,0.0809027552604675,0.894615828990936,-0.31804421544075,0.102163627743721,0.942555248737335,-0.115366816520691,0.0102423932403326,0.9932701587677,-0.27761447429657,0.0671036392450333,0.95834618806839,-0.385686635971069,0.0723201036453247,0.919791102409363,-0.00596258044242859,0.170513495802879,0.985337316989899,0.00662969844415784,0.120070435106754,0.992743313312531, +-0.327437251806259,0.142623424530029,0.934046804904938,-0.343721300363541,0.117037296295166,0.931749999523163,-0.342900723218918,0.108301155269146,0.933107674121857,-0.334424644708633,0.0781183987855911,0.939179241657257,-0.628838062286377,0.106624729931355,0.77019077539444,-0.641835570335388,0.0648871883749962,0.764092266559601,-0.335087865591049,0.0712025910615921,0.939492583274841,-0.398116797208786,0.00308622024022043,0.917329549789429,-0.540153563022614,0.138709649443626,0.830056488513947,-0.630327641963959,0.0923446416854858,0.770817518234253,0.00462514907121658,0.101950995624065,0.994778692722321,-0.1085125207901,0.0174529999494553,0.993941843509674,-0.288123279809952,0.137160077691078,0.947719395160675,-0.33005166053772,0.120017431676388,0.936302185058594,-0.670518636703491,-0.03810029104352,0.740913808345795,-0.646233141422272,-0.0326590277254581,0.762440919876099,-0.746588826179504,0.0286055114120245,0.664670526981354,-0.715835392475128,0.0423825569450855,0.696981608867645,-0.783387243747711,-0.0533864982426167,0.619237065315247,-0.764088809490204,-0.0495295599102974,0.643206894397736,-0.845337450504303,0.00678219879046082,0.534189641475677,-0.813747465610504,0.0123837860301137,0.5810866355896,-0.763965368270874,-0.0488834716379642,0.643402934074402,-0.760635912418365,-0.0139702102169394,0.649028360843658,-0.856058120727539,-0.0638823285698891,0.512916684150696,-0.848605692386627,-0.0116278901696205,0.528898060321808,-0.646201729774475,-0.0325338281691074,0.762472867965698,-0.636460483074188,0.00373872322961688,0.771300196647644,-0.755015909671783,-0.0460723713040352,0.654085874557495,-0.751537680625916,0.00870489608496428,0.659632742404938,-0.933529794216156,-0.0626211538910866,0.352988332509995,-0.859918832778931,-0.0398763231933117,0.508870840072632,-0.877422392368317,0.00293711107224226,0.479709714651108,-0.928816437721252,-0.0773891359567642,0.362368583679199,-0.996494174003601,-0.074891671538353,0.0372925326228142,-0.983655154705048,-0.0343437567353249,0.176757127046585,-0.99031674861908,-0.0298929680138826,0.135570093989372, +-0.991974592208862,-0.120004117488861,0.0398198328912258,-0.998216092586517,-0.0545131154358387,-0.0243545081466436,-0.997188746929169,-0.0659505650401115,0.0355716422200203,-0.998244285583496,-0.0581970773637295,-0.011021327227354,-0.979926109313965,-0.150860384106636,-0.130330353975296,-0.8658047914505,-0.0891068279743195,0.492384105920792,-0.857179760932922,-0.0729266703128815,0.50982803106308,-0.928871929645538,-0.0191254913806915,0.369907081127167,-0.908962726593018,0.0095243314281106,0.416768610477448,-0.937021255493164,-0.0816904678940773,0.339584797620773,-0.932768285274506,-0.0695544853806496,0.353702634572983,-0.9779412150383,0.0050283707678318,0.208819761872292,-0.968977510929108,0.0243787802755833,0.245943993330002,-0.932655215263367,-0.0673972070217133,0.354417592287064,-0.936829566955566,-0.0354621708393097,0.347984164953232,-0.97926390171051,-0.0814375430345535,0.185499578714371,-0.979769468307495,-0.0232377797365189,0.198775678873062,-0.857078373432159,-0.0720155909657478,0.5101278424263,-0.861097633838654,-0.031812597066164,0.507443428039551,-0.931487917900085,-0.0769974887371063,0.355530142784119,-0.92965829372406,-0.0270599331706762,0.367427796125412,-0.654007315635681,-0.0234946571290493,0.756123423576355,-0.670747041702271,-0.0244937594980001,0.741281688213348,-0.710115790367126,0.0543813742697239,0.701981663703918,-0.763343632221222,0.109815061092377,0.636590242385864,-0.822855055332184,0.00332871894352138,0.568241477012634,-0.787559330463409,-0.0172629579901695,0.615997016429901,-0.83033275604248,0.0106152826920152,0.557166814804077,-0.896334528923035,0.119568169116974,0.426951795816422,-0.790725469589233,-0.0205042455345392,0.611827552318573,-0.778679609298706,-0.0459608137607574,0.625736117362976,-0.811089158058167,0.0168065391480923,0.58468109369278,-0.806214988231659,0.0348625257611275,0.59059464931488,-0.671661972999573,-0.025279451161623,0.740426361560822,-0.665147662162781,-0.0312360655516386,0.746058225631714,-0.711434662342072,0.0479727648198605,0.701113104820251,-0.704286098480225,0.0592886433005333,0.707436203956604, +-0.9837566614151,-0.0493214093148708,0.172598734498024,-0.980732321739197,-0.0526230186223984,0.18813544511795,-0.99556690454483,0.00464679859578609,0.0939411744475365,-0.989875376224518,0.000192169638467021,0.141938954591751,-0.994796574115753,-0.0416314862668514,0.0929878130555153,-0.996346473693848,-0.0378443785011768,0.0765606239438057,-0.998656809329987,-0.00652180099859834,0.0514011569321156,-0.995326519012451,-0.0217851661145687,0.094077505171299,-0.996363937854767,-0.0323057845234871,0.0788371413946152,-0.998952507972717,-0.0349124222993851,0.0295830089598894,-0.997414588928223,-0.0685599818825722,-0.0215334091335535,-0.998491764068604,-0.0409816652536392,0.0365347675979137,-0.98061615228653,-0.0467365831136703,0.190283119678497,-0.984224081039429,-0.0255229808390141,0.175075858831406,-0.996633172035217,-0.0731848776340485,0.0369641743600368,-0.996349215507507,-0.0273451823741198,0.0808732658624649,-0.862164855003357,-0.0807371959090233,0.500153303146362,-0.903805315494537,0.0226218551397324,0.427345633506775,-0.868903815746307,0.0398255735635757,0.4933762550354,-0.867379188537598,-0.0311580486595631,0.496671468019485,-0.938127040863037,0.0319958813488483,0.344809979200363,-0.898831486701965,-0.0731381475925446,0.432148933410645,-0.910512864589691,-0.012923551723361,0.413278728723526,-0.928233325481415,0.0541056394577026,0.368042886257172,-0.969135046005249,0.0238017942756414,0.2453792989254,-0.965259671211243,-0.00740068312734365,0.261187672615051,-0.947154760360718,-0.0757282450795174,0.311709880828857,-0.935139238834381,-0.0737964287400246,0.346509367227554,-0.964398324489594,-0.0544381327927113,0.258790343999863,-0.97729229927063,-0.0366963483393192,0.208694010972977,-0.978991746902466,0.010283256880939,0.20364011824131,-0.983792722225189,0.0692096874117851,0.165414467453957,-0.993931531906128,0.0160878989845514,0.108818039298058,-0.98987740278244,-0.0246890019625425,0.139761239290237,-0.99045467376709,-0.0147092491388321,0.137051969766617,-0.993387281894684,0.0134159093722701,0.114025086164474,-0.99083411693573,-0.0289276707917452,0.131950795650482, +-0.992517292499542,-0.017949316650629,0.120778471231461,-0.993273138999939,-0.00514227012172341,0.115681245923042,-0.991549849510193,-0.0195623338222504,0.128243654966354,-0.980960130691528,-0.0479861833155155,0.188187792897224,-0.981471478939056,-0.0333707854151726,0.188680484890938,-0.9885014295578,0.00799053814262152,0.1510009765625,-0.986570358276367,-0.0120904641225934,0.16288885474205,-0.635633409023285,-0.000887513975612819,0.771990537643433,-0.636698663234711,0.00228266720660031,0.771109402179718,-0.849144816398621,0.0608842335641384,0.524639129638672,-0.856631875038147,-0.00764722004532814,0.515871286392212,-0.855541467666626,-0.0218429397791624,0.517273366451263,-0.848219096660614,0.0708738565444946,0.524882137775421,-0.971914887428284,-0.0232048612087965,0.234185472130775,-0.952275931835175,-0.170966044068336,0.252865970134735,-0.849420011043549,0.0577213019132614,0.524551272392273,-0.833122789859772,-0.0186272170394659,0.552774310112,-0.907474160194397,0.0991348177194595,0.408243894577026,-0.965626418590546,0.0841836109757423,0.245924711227417,-0.634676873683929,0.039790328592062,0.771752536296844,-0.659934759140015,-0.0332368426024914,0.750587403774261,-0.776339530944824,0.0888581350445747,0.624020159244537,-0.850502789020538,0.0441507808864117,0.52411425113678,-0.959874927997589,-0.0353684611618519,0.278188943862915,-0.985714852809906,0.0611953809857368,0.156912043690681,-0.983400166034698,0.177681416273117,0.0367893613874912,-0.94882607460022,0.186935991048813,0.254527002573013,-0.904282450675964,0.377536118030548,0.199348375201225,-0.926489889621735,0.272401034832001,0.259642452001572,-0.970296800136566,0.237043961882591,0.048314843326807,-0.956546664237976,0.289504647254944,0.0347231775522232,-0.994884252548218,0.00276258867233992,0.100983515381813,-0.997635662555695,0.0686975419521332,0.00189316121395677,-0.99993497133255,-0.0114132165908813,1.93864689208567e-05,-0.994174718856812,0.0142371617257595,0.106836147606373,0.639460802078247,0.761273443698883,-0.10748265683651,0.547367513179779,0.830707848072052,-0.101554289460182, +0.590463399887085,0.793846607208252,-0.145467191934586,0.684390723705292,0.715616106987,-0.139653295278549,0.550224363803864,0.83474212884903,-0.0214179195463657,0.567794263362885,0.822190463542938,-0.0401573665440083,0.544232666492462,0.834308981895447,-0.0879732370376587,0.516009330749512,0.854412794113159,-0.0609348118305206,0.590872347354889,0.806681096553802,-0.0116396080702543,0.550224602222443,0.834741771221161,-0.0214260369539261,0.51435250043869,0.857563138008118,0.00517103308811784,0.564732313156128,0.824923813343048,0.0240446329116821,0.984889626502991,0.095886304974556,0.144215822219849,0.967938601970673,0.232879519462585,-0.0941381379961967,0.970073938369751,0.224385008215904,-0.0927791446447372,0.98771870136261,0.0827931389212608,0.132503092288971,0.915294408798218,0.402135580778122,0.0228718388825655,0.839802503585815,0.510566532611847,-0.184535831212997,0.854297518730164,0.48739305138588,-0.180620491504669,0.927025437355042,0.374501317739487,0.0193036701530218,0.834051668643951,-0.495166897773743,0.243243917822838,0.928565561771393,-0.344308316707611,0.138627961277962,0.94296133518219,-0.295810490846634,0.152709230780602,0.854476630687714,-0.4510398209095,0.257745891809464,0.822722256183624,0.557958245277405,-0.108676999807358,0.709909796714783,0.67136687040329,-0.212825372815132,0.80380791425705,0.583264589309692,-0.11702773720026,0.877181470394135,0.479155898094177,-0.0310190916061401,0.884215295314789,0.464109987020493,-0.0525853708386421,0.807226181030273,0.575033366680145,-0.133126869797707,0.835927963256836,0.538634538650513,-0.105344690382481,0.900493979454041,0.433709800243378,-0.03172742202878,0.794491648674011,0.602216124534607,-0.0782223343849182,0.72952800989151,0.679665565490723,-0.0764433816075325,0.775366187095642,0.62558650970459,-0.0863072797656059,0.83123254776001,0.550041556358337,-0.0806658267974854,0.684525012969971,0.715418934822083,-0.140004143118858,0.5869300365448,0.799666523933411,-0.126675918698311,0.732545554637909,0.673486053943634,-0.0989622995257378,0.796774625778198,0.597956001758575,-0.0871723592281342, +0.768008351325989,0.639759361743927,-0.0295157637447119,0.728323638439178,0.681831061840057,-0.0681988224387169,0.706467390060425,0.706568479537964,-0.0408006310462952,0.752575099468231,0.658338069915771,-0.014889856800437,0.752579629421234,0.658329963684082,-0.015020914375782,0.705243289470673,0.708964347839355,-0.00119732320308685,0.739225387573242,0.672963321208954,0.0258133187890053,0.779163777828217,0.626819789409637,-0.000894306926056743,0.70583188533783,0.708198010921478,-0.0160282775759697,0.549539029598236,0.835466027259827,-0.0018217678880319,0.601508021354675,0.797026574611664,0.0541938543319702,0.736313343048096,0.676620662212372,-0.00521455612033606,0.721756219863892,0.691565930843353,-0.0283611230552197,0.584555387496948,0.803209483623505,-0.114671342074871,0.550913095474243,0.832706212997437,-0.0556325428187847,0.705828130245209,0.708204209804535,-0.0159195531159639,0.916981220245361,0.398325800895691,0.0219589043408632,0.847754657268524,0.524229228496552,0.0805964097380638,0.820958256721497,0.562365353107452,0.098857693374157,0.902582705020905,0.429289847612381,0.0324800796806812,0.899867653846741,0.435730010271072,0.0194308906793594,0.82015323638916,0.564637303352356,0.0923762917518616,0.733230113983154,0.659708619117737,0.164797276258469,0.851717114448547,0.519541382789612,0.068227156996727,0.815431773662567,0.575816631317139,0.0592137016355991,0.74178546667099,0.667623519897461,0.0635064765810966,0.603935480117798,0.793764352798462,0.0721116214990616,0.713683545589447,0.695116698741913,0.0864200219511986,0.845124125480652,0.531636655330658,0.0559262409806252,0.782328367233276,0.62058687210083,0.0532373823225498,0.740057349205017,0.671554684638977,0.0364611484110355,0.813041627407074,0.580490708351135,0.0446536466479301,0.989529669284821,0.0720823854207993,0.125040873885155,0.970826327800751,0.219659820199013,-0.096155509352684,0.975400149822235,0.212652549147606,-0.0580831170082092,0.993656694889069,0.0598382353782654,0.095214806497097,0.994127869606018,0.0568517819046974,0.0920739993453026,0.975878894329071,0.209480777382851,-0.0614667795598507, +0.977940440177917,0.202228739857674,-0.0523074232041836,0.995456993579865,0.0540307611227036,0.0783980041742325,0.961310148239136,0.275285065174103,0.0100449780002236,0.90276312828064,0.412046700716019,-0.123435817658901,0.916353404521942,0.386878609657288,-0.103061102330685,0.966947078704834,0.254662990570068,0.0126566989347339,0.941253364086151,0.337576419115067,-0.00918169878423214,0.860058903694153,0.470860064029694,-0.196442425251007,0.900858461856842,0.418685585260391,-0.11470140516758,0.958485424518585,0.284424930810928,0.0202041771262884,0.943862199783325,-0.241121560335159,0.225797683000565,0.996232450008392,-0.0814865753054619,0.0296775437891483,0.997797667980194,-0.0568214729428291,0.0342226810753345,0.950404047966003,-0.219675838947296,0.220169559121132,0.691988050937653,-0.70945131778717,0.133534550666809,0.73126882314682,-0.660628080368042,0.169754043221474,0.761094331741333,-0.614771008491516,0.206862330436707,0.717015087604523,-0.672681331634521,0.182726666331291,0.854704976081848,-0.449348717927933,0.259933441877365,0.943215668201447,-0.294260680675507,0.154126331210136,0.973354756832123,-0.202406957745552,0.107759863138199,0.92060923576355,-0.342509210109711,0.187525913119316,0.920288264751434,-0.349704504013062,0.175431653857231,0.972969710826874,-0.207481786608696,0.101396471261978,0.980839371681213,-0.168454542756081,0.0978632196784019,0.9388068318367,-0.303214222192764,0.163410469889641,0.974222183227539,-0.165708750486374,0.153074994683266,0.99969619512558,-0.00858065020292997,0.0231068637222052,0.99968820810318,0.00854357611387968,0.0234631337225437,0.980688154697418,-0.142412155866623,0.134051144123077,0.950598359107971,-0.212262332439423,0.226512029767036,0.997919857501984,-0.0526651740074158,0.0371800065040588,0.999656856060028,-0.00641164649277925,0.0253977235406637,0.974158406257629,-0.163108751177788,0.156239688396454,0.734396278858185,-0.648868381977081,0.1990777105093,0.821889340877533,-0.539124310016632,0.183964893221855,0.84838992357254,-0.484744757413864,0.212737038731575,0.762679517269135,-0.601727545261383,0.237158179283142, +0.787027835845947,-0.615651607513428,0.0395032092928886,0.722114205360413,-0.691566109657288,0.0169534347951412,0.745844602584839,-0.664941847324371,0.0396005362272263,0.801967740058899,-0.593568563461304,0.0672621503472328,0.720737278461456,-0.681931853294373,0.124526262283325,0.759158611297607,-0.625041484832764,0.181662768125534,0.866698563098907,-0.474121123552322,0.155057147145271,0.840587437152863,-0.522599458694458,0.142486453056335,0.843077778816223,-0.528152644634247,0.101363822817802,0.866099059581757,-0.48242512345314,0.130913898348808,0.896092116832733,-0.42131632566452,0.139684230089188,0.875784695148468,-0.466681510210037,0.123326726257801,0.866782307624817,-0.468167781829834,0.171777099370956,0.91836804151535,-0.369865477085114,0.140711292624474,0.937202036380768,-0.330222755670547,0.112273834645748,0.896058917045593,-0.41924712061882,0.145980417728424,0.762725353240967,-0.601194798946381,0.238358467817307,0.847638189792633,-0.488003820180893,0.208234965801239,0.916755735874176,-0.380269378423691,0.122287422418594,0.866779148578644,-0.470811516046524,0.164410084486008,0.708554625511169,-0.699775397777557,0.0909103974699974,0.692010760307312,-0.709524691104889,0.1330256909132,0.72185605764389,-0.687068998813629,0.0828257724642754,0.743906378746033,-0.666303873062134,0.0514045581221581,0.981748223304749,-0.177574679255486,0.068099781870842,0.924305260181427,-0.376410067081451,-0.0630495473742485,0.938778162002563,-0.334835141897202,-0.0811225846409798,0.990241765975952,-0.132645562291145,0.0427367575466633,0.827073752880096,-0.561753630638123,-0.0195469073951244,0.752641797065735,-0.658372759819031,-0.00870337802916765,0.859554469585419,-0.509115397930145,0.0443604551255703,0.900189220905304,-0.431683003902435,0.0575249083340168,0.907544136047363,-0.419649571180344,0.0160667039453983,0.862324059009552,-0.506146371364594,0.014599627815187,0.891739249229431,-0.451162070035934,0.0354100242257118,0.926748812198639,-0.373195588588715,0.0431470423936844,0.857447385787964,-0.510725736618042,0.0627952367067337, +0.843076527118683,-0.528148889541626,0.101393908262253,0.878251731395721,-0.473361164331436,0.067845918238163,0.89109605550766,-0.451777517795563,0.0429525785148144,0.743405282497406,-0.666629076004028,0.0543526895344257,0.720744669437408,-0.681956171989441,0.124349877238274,0.84391051530838,-0.531246781349182,0.0747790262103081,0.85859352350235,-0.509900271892548,0.0530954860150814,0.89672577381134,-0.441790580749512,0.0265352763235569,0.803858160972595,-0.594624042510986,-0.0153052667155862,0.835275053977966,-0.547017157077789,-0.0555679276585579,0.92262601852417,-0.385573089122772,-0.0097302682697773,0.869288563728333,0.464512825012207,0.169012472033501,0.95242828130722,0.304304599761963,-0.0167066901922226,0.958002507686615,0.286532878875732,-0.0114037189632654,0.878342509269714,0.449166029691696,0.163598090410233,0.990935742855072,-0.128688633441925,0.0385429188609123,0.944262146949768,-0.307238966226578,-0.118208609521389,0.971239149570465,-0.232769697904587,-0.050129659473896,0.996114671230316,-0.0677549317479134,0.0562578104436398,0.997299671173096,-0.0594200417399406,0.0431587249040604,0.971971333026886,-0.226986765861511,-0.0612280033528805,0.979481995105743,-0.196070075035095,-0.046600230038166,0.998429000377655,-0.0374669320881367,0.041661512106657,0.964608311653137,-0.263489782810211,0.010188102722168,0.912404358386993,-0.408848494291306,-0.019006697461009,0.934698224067688,-0.354493290185928,-0.0259545482695103,0.976290941238403,-0.216460198163986,-0.000988730113022029,0.925356328487396,-0.378578901290894,-0.019837835803628,0.838002920150757,-0.541283667087555,-0.0690167993307114,0.913355767726898,-0.406255513429642,-0.0271621886640787,0.964839398860931,-0.262699574232101,0.00860651023685932,0.979633748531342,0.156801655888557,0.125423803925514,0.997002184391022,-0.0393561199307442,-0.0666177794337273,0.997417509555817,-0.0295803491026163,-0.0654471889138222,0.979361414909363,0.16798822581768,0.112388476729393,0.604709684848785,0.792601466178894,0.078160934150219,0.57525634765625,0.812873959541321,0.0911919549107552, +0.674701154232025,0.736610949039459,0.0467188842594624,0.696223795413971,0.717209160327911,0.0297224093228579,0.878546476364136,0.448417007923126,0.164554700255394,0.96303254365921,0.269290149211884,0.00715053733438253,0.97480583190918,0.223034352064133,0.00308239599689841,0.913803219795227,0.392965942621231,0.102671705186367,0.91347873210907,0.394412368535995,0.0999786108732224,0.974605977535248,0.223920568823814,0.00167593988589942,0.978224992752075,0.207460403442383,0.00602042535319924,0.925227284431458,0.369529008865356,0.0860397145152092,0.981347382068634,0.177254915237427,0.0744175761938095,0.999181270599365,-0.00635355990380049,-0.039957657456398,0.999509215354919,0.00254010525532067,-0.0312268957495689,0.982307434082031,0.176970556378365,0.0612675920128822,0.979181349277496,0.171049952507019,0.109297148883343,0.997044324874878,-0.021606182679534,-0.0737277567386627,0.99928092956543,-0.00824058894068003,-0.037010382860899,0.981462776660919,0.175378203392029,0.0772887021303177,0.707157135009766,0.690501749515533,0.152106285095215,0.819310963153839,0.572739720344543,0.0264346916228533,0.835613131523132,0.548753201961517,0.0249178595840931,0.729384064674377,0.668011665344238,0.147510349750519,-0.85044127702713,-0.245989322662354,-0.465014845132828,-0.899472594261169,-0.299100339412689,-0.318571895360947,-0.932665288448334,-0.189969211816788,-0.306671023368835,-0.867965579032898,-0.202475011348724,-0.453475028276443,-0.91569197177887,-0.186525374650955,0.355972647666931,-0.912271440029144,-0.224477127194405,0.342594265937805,-0.920823514461517,-0.112111561000347,0.3735171854496,-0.923545479774475,-0.103075623512268,0.369376927614212,-0.927683293819427,-0.101826138794422,0.359214633703232,-0.929899930953979,-0.106408685445786,0.352084338665009,-0.926322877407074,-0.00416000792756677,0.376707643270493,-0.929418921470642,-0.0275736786425114,0.36799481511116,-0.930205345153809,-0.106209643185139,0.351336807012558,-0.930792093276978,-0.115031540393829,0.346978276968002,-0.924278020858765,0.00357125839218497,0.38170325756073, +-0.926295459270477,-0.00417705019935966,0.376774847507477,-0.911021530628204,-0.225162521004677,0.345458567142487,-0.908997058868408,-0.237946942448616,0.342207282781601,-0.917865574359894,-0.12442634999752,0.376883089542389,-0.919949591159821,-0.112640492618084,0.375506460666656,-0.842727303504944,-0.414578825235367,0.343416810035706,-0.867772161960602,-0.344765961170197,0.357921779155731,-0.877322375774384,-0.320145845413208,0.357508182525635,-0.859190285205841,-0.376271367073059,0.346716046333313,-0.859099328517914,-0.376282781362534,0.346928775310516,-0.880266427993774,-0.319193661212921,0.351064682006836,-0.904223144054413,-0.22917115688324,0.360362410545349,-0.894341945648193,-0.268323361873627,0.35798767209053,-0.884875953197479,-0.31763881444931,0.34073469042778,-0.905451595783234,-0.228129774332047,0.357930690050125,-0.914257824420929,-0.187005147337914,0.359390735626221,-0.906216263771057,-0.228889718651772,0.355501860380173,-0.877727448940277,-0.340848833322525,0.336774051189423,-0.897051751613617,-0.244884595274925,0.367871910333633,-0.899520516395569,-0.231143906712532,0.37072291970253,-0.883136808872223,-0.318234980106354,0.344668090343475,-0.933568477630615,-0.0264017917215824,0.357425481081009,-0.934547364711761,0.00110981240868568,0.35583707690239,-0.922068417072296,0.0997544899582863,0.37395054101944,-0.93018513917923,0.0464869253337383,0.364135354757309,-0.933112502098083,0.0471797585487366,0.356476068496704,-0.928544104099274,0.103504776954651,0.356500446796417,-0.909289717674255,0.199978619813919,0.364966750144958,-0.923537850379944,0.131034106016159,0.360427349805832,-0.929646730422974,0.10415942966938,0.353423267602921,-0.926748871803284,0.130486443638802,0.35229229927063,-0.905523478984833,0.223683923482895,0.360545128583908,-0.910454928874969,0.200426459312439,0.361802607774734,-0.936375379562378,0.00232616229914129,0.350992679595947,-0.936586499214172,0.0131906513124704,0.350188434123993,-0.918525278568268,0.124756552278996,0.375162899494171,-0.923466682434082,0.100551195442677,0.370268732309341, +-0.809830188751221,-0.457144647836685,0.367687165737152,-0.814690053462982,-0.453608989715576,0.361274123191833,-0.835711359977722,-0.415871381759644,0.35866105556488,-0.827790439128876,-0.429976403713226,0.360393404960632,-0.824908196926117,-0.428598523139954,0.368551105260849,-0.834834516048431,-0.415758848190308,0.360826730728149,-0.877758681774139,-0.300054162740707,0.373506665229797,-0.863406598567963,-0.339829802513123,0.372887074947357,-0.838022232055664,-0.416159600019455,0.352888107299805,-0.856819450855255,-0.376561462879181,0.352224200963974,-0.889703989028931,-0.268181473016739,0.369466811418533,-0.880860209465027,-0.30072757601738,0.365579277276993,-0.820290863513947,-0.454284727573395,0.347488522529602,-0.839153289794922,-0.415161341428757,0.35137277841568,-0.851696491241455,-0.377131074666977,0.363847821950912,-0.836101531982422,-0.415920853614807,0.357692778110504,-0.923360705375671,0.131000652909279,0.360893130302429,-0.911962330341339,0.201008498668671,0.357659518718719,-0.900766253471375,0.257910251617432,0.349431931972504,-0.921794056892395,0.142082676291466,0.360705465078354,-0.922290444374084,0.142058491706848,0.359443962574005,-0.899797320365906,0.257833123207092,0.351975798606873,-0.895158052444458,0.281476020812988,0.345634669065475,-0.917993009090424,0.156254470348358,0.364518105983734,-0.899129331111908,0.257779181003571,0.35371795296669,-0.888592898845673,0.29159227013588,0.354085683822632,-0.876255512237549,0.326870501041412,0.354022592306137,-0.889638125896454,0.282469063997269,0.358824998140335,-0.915078282356262,0.202221378684044,0.348910123109818,-0.909053444862366,0.225304111838341,0.350514054298401,-0.890075027942657,0.291807889938354,0.350163817405701,-0.900234997272491,0.257868111133575,0.350828945636749,-0.914442121982574,-0.186943873763084,0.358953535556793,-0.923365533351898,-0.103128932416439,0.369811743497849,-0.921702802181244,-0.130038917064667,0.365450412034988,-0.90501207113266,-0.229060932993889,0.358446955680847,-0.903706073760986,-0.229242607951164,0.361612170934677, +-0.921125948429108,-0.130046427249908,0.366899073123932,-0.91545033454895,-0.167512714862823,0.365910053253174,-0.892153739929199,-0.268261015415192,0.363452464342117,-0.922150135040283,-0.130032852292061,0.36432209610939,-0.928869903087616,-0.0502000413835049,0.366988748311996,-0.928975701332092,-0.07194684445858,0.363080978393555,-0.915139198303223,-0.16745425760746,0.366714328527451,-0.926898121833801,-0.102066837251186,0.361167877912521,-0.929422855377197,-0.0275725871324539,0.367984980344772,-0.92962384223938,-0.0502277463674545,0.365070819854736,-0.922160089015961,-0.13003271818161,0.364296913146973,-0.929114818572998,-0.0719946920871735,0.362715363502502,-0.933064103126526,-0.0503532811999321,0.356168448925018,-0.934100329875946,0.0306796543300152,0.355689883232117,-0.935465753078461,0.0371863432228565,0.351455509662628,-0.932738184928894,0.038015004247427,0.358545035123825,-0.934213578701019,0.0306711662560701,0.355393171310425,-0.926315009593964,0.141849279403687,0.349026471376419,-0.926455855369568,0.154151260852814,0.34339040517807,-0.933391332626343,0.0307325515896082,0.357541769742966,-0.933943092823029,0.047378521412611,0.354267746210098,-0.925266146659851,0.13136100769043,0.355846703052521,-0.926044523715973,0.141864091157913,0.349737197160721,-0.932442188262939,-0.0503306947648525,0.357796549797058,-0.933976113796234,-0.026284571737051,0.356367468833923,-0.931341469287872,0.0467591919004917,0.361132591962814,-0.933963775634766,0.0306898765265942,0.356047511100769,-0.910625696182251,0.157933548092842,0.38186115026474,-0.89356529712677,0.281771957874298,0.349493414163589,-0.888929009437561,0.289841264486313,0.354679137468338,-0.901852190494537,0.170020028948784,0.397184818983078,-0.895897507667542,0.172190546989441,0.409534186124802,-0.881803035736084,0.292656809091568,0.369831621646881,-0.883151650428772,0.274159401655197,0.380630791187286,-0.887886047363281,0.192956313490868,0.41764360666275,-0.868212282657623,0.297553986310959,0.397075682878494,-0.853393375873566,0.338140428066254,0.396712571382523, +-0.851691126823425,0.317008942365646,0.417285978794098,-0.862442970275879,0.285844266414642,0.417714327573776,-0.87861829996109,0.284199923276901,0.383744984865189,-0.873077988624573,0.327331572771072,0.361370831727982,-0.864783108234406,0.334086269140244,0.374882102012634,-0.866843044757843,0.298016309738159,0.399711728096008,-0.862577497959137,-0.339462220668793,0.375133991241455,-0.877951502799988,-0.300096213817596,0.373019367456436,-0.904915690422058,-0.208984404802322,0.370746940374374,-0.882739782333374,-0.284923672676086,0.373616427183151,-0.879514098167419,-0.282808691263199,0.38271951675415,-0.903428077697754,-0.20840023458004,0.374682605266571,-0.917393088340759,-0.152803167700768,0.367479652166367,-0.894693791866302,-0.236827298998833,0.378729283809662,-0.904130458831787,-0.208675742149353,0.372830450534821,-0.913946390151978,-0.167230293154716,0.369778543710709,-0.928845882415771,-0.0719022154808044,0.363421827554703,-0.916950464248657,-0.152547761797905,0.368688523769379,-0.880021095275879,-0.300546139478683,0.367743164300919,-0.890958547592163,-0.268223494291306,0.366400361061096,-0.913716673851013,-0.167187139391899,0.3703653216362,-0.905610680580139,-0.209258258342743,0.36889061331749,-0.84856766462326,-0.364031106233597,0.383945614099503,-0.816844403743744,-0.423084080219269,0.392129004001617,-0.837528169155121,-0.388658046722412,0.384046256542206,-0.865259349346161,-0.333658486604691,0.37416335940361,-0.860664665699005,-0.327700316905975,0.389703810214996,-0.83401083946228,-0.38552451133728,0.39471110701561,-0.880337834358215,-0.283346116542816,0.380421191453934,-0.896837830543518,-0.238688379526138,0.372437745332718,-0.838305950164795,-0.389357656240463,0.381633341312408,-0.821966528892517,-0.42718967795372,0.376669675111771,-0.86334365606308,-0.339801877737045,0.373058497905731,-0.884219288825989,-0.285903632640839,0.369344741106033,-0.822333693504333,-0.428349226713181,0.374545454978943,-0.809678435325623,-0.457070291042328,0.368113577365875,-0.821727216243744,-0.427074939012527,0.377321481704712, +-0.839041471481323,-0.390021651983261,0.379331648349762,-0.929117202758789,-0.0719955116510391,0.362709105014801,-0.935562968254089,0.0371564961969852,0.351200103759766,-0.937019407749176,0.0486943982541561,0.345866352319717,-0.932151854038239,-0.0252910424023867,0.361183106899261,-0.927161991596222,-0.0221768245100975,0.374003887176514,-0.932832658290863,0.0509266927838326,0.35669270157814,-0.934315741062164,0.0919144824147224,0.344392061233521,-0.930353105068207,0.0290532093495131,0.365512013435364,-0.921324849128723,0.0567033216357231,0.384636759757996,-0.920082092285156,0.16270612180233,0.356336504220963,-0.918189465999603,0.17571610212326,0.355038017034531,-0.917814910411835,0.104494839906693,0.383009970188141,-0.931260168552399,0.0384563095867634,0.362319856882095,-0.926223576068878,0.154211774468422,0.343989551067352,-0.925988018512726,0.160080090165138,0.341936409473419,-0.928697764873505,0.0530594810843468,0.367022067308426,-0.893958330154419,0.189776331186295,0.405984580516815,-0.885574221611023,0.272689312696457,0.376030564308167,-0.892278671264648,0.206645160913467,0.401418477296829,-0.894662618637085,0.119966141879559,0.430333524942398,-0.911401212215424,0.109003260731697,0.396819978952408,-0.911935269832611,0.189942136406898,0.363725394010544,-0.909870505332947,0.111082136631012,0.399745494127274,-0.906727731227875,0.0489276200532913,0.418868780136108,-0.880290985107422,0.215935841202736,0.422444641590118,-0.881259441375732,0.246671110391617,0.403156608343124,-0.881575286388397,0.163861185312271,0.44269010424614,-0.8787442445755,0.140935078263283,0.456010788679123,-0.860884010791779,0.286665886640549,0.420358657836914,-0.856195211410522,0.31459829211235,0.409826427698135,-0.862078964710236,0.261288404464722,0.434221357107162,-0.86443018913269,0.227375820279121,0.448397904634476,-0.914417743682861,-0.151663884520531,0.375284522771835,-0.872673094272614,-0.252078384160995,0.418208479881287,-0.879465043544769,-0.240143463015556,0.410940825939178,-0.916100442409515,-0.145519688725471,0.373609364032745,-0.915259540081024,-0.144066512584686,0.37622457742691, +-0.878812968730927,-0.239180639386177,0.412892758846283,-0.903136670589447,-0.179055735468864,0.3902348279953,-0.919620871543884,-0.125201150774956,0.372319936752319,-0.886714577674866,-0.2512486577034,0.388086974620819,-0.857479333877563,-0.323699235916138,0.399935275316238,-0.892145454883575,-0.234647676348686,0.386027246713638,-0.907042682170868,-0.183080196380615,0.379150629043579,-0.884531736373901,-0.273341119289398,0.378005892038345,-0.844283223152161,-0.357729971408844,0.399017959833145,-0.858521223068237,-0.324997246265411,0.396633476018906,-0.888940215110779,-0.254824787378311,0.380591124296188,-0.916032075881958,-0.120710432529449,0.382510513067245,-0.903705179691315,-0.179634377360344,0.388649463653564,-0.921582639217377,-0.0963508561253548,0.376034736633301,-0.929291546344757,-0.0444602817296982,0.3666612803936,-0.927309811115265,-0.0423620902001858,0.371889710426331,-0.922242522239685,-0.0968478545546532,0.374285221099854,-0.92992091178894,-0.0238849576562643,0.366983234882355,-0.932843387126923,0.0267605613917112,0.359286904335022,-0.924816906452179,-0.0988086313009262,0.367356479167938,-0.915024101734161,-0.151443690061569,0.373892605304718,-0.928808510303497,-0.0718893930315971,0.363519787788391,-0.93515419960022,-0.0272204130887985,0.353193730115891,-0.906920611858368,-0.182952582836151,0.379504233598709,-0.892753422260284,-0.235164523124695,0.384303539991379,-0.915198922157288,-0.151543378829956,0.373424261808395,-0.925323665142059,-0.0991989225149155,0.365972220897675,-0.912883162498474,-0.116880558431149,0.391130775213242,-0.923875749111176,-0.0388026982545853,0.380720376968384,-0.925252556800842,-0.0102761266753078,0.379212498664856,-0.901951253414154,-0.12265682965517,0.414052307605743,-0.896609783172607,-0.114750616252422,0.427695274353027,-0.919630348682404,-0.00253602117300034,0.392776846885681,-0.915097415447235,0.00626437459141016,0.403184235095978,-0.889158666133881,-0.109103970229626,0.444402009248734,-0.904109477996826,0.0172492116689682,0.426952570676804,-0.905284881591797,0.115807555615902,0.408715099096298, +-0.895283937454224,0.150116741657257,0.41944232583046,-0.892191767692566,0.0366793423891068,0.450165033340454,-0.920075476169586,-0.0349689014256001,0.39017727971077,-0.920523822307587,0.0377010963857174,0.388863265514374,-0.918318748474121,0.102015390992165,0.382470339536667,-0.914618611335754,0.00408731773495674,0.404297232627869,0.209032163023949,-0.976536154747009,-0.0517951883375645,0.277545034885406,-0.959285855293274,-0.0523385033011436,0.300627529621124,-0.950622320175171,-0.0770734995603561,0.224401906132698,-0.970799922943115,-0.0848016142845154,0.948662877082825,-0.288891792297363,0.128764599561691,0.955253779888153,-0.240648239850998,-0.171984687447548,0.967773795127869,-0.152948468923569,-0.200051739811897,0.973254084587097,-0.202021807432175,0.109378360211849,0.744440972805023,-0.665016293525696,-0.0596737004816532,0.717780113220215,-0.630815446376801,-0.294726192951202,0.755475461483002,-0.557917237281799,-0.343490123748779,0.79909473657608,-0.594186127185822,-0.0915992707014084,0.13518950343132,-0.962502121925354,0.235188588500023,0.13500839471817,-0.982018232345581,0.13195875287056,0.173869803547859,-0.98394250869751,0.0403290539979935,0.144574657082558,-0.980290055274963,0.134646266698837,0.227695688605309,-0.851209998130798,0.472859859466553,0.12207118421793,-0.929707229137421,0.347480893135071,0.136751919984818,-0.96886944770813,0.206376194953918,0.199632912874222,-0.918469846248627,0.34140881896019,0.867473304271698,0.353524714708328,0.350014716386795,0.964097082614899,0.257287383079529,0.065726526081562,0.980349957942963,0.186763510107994,0.0635085999965668,0.8907231092453,0.285856366157532,0.353409826755524,0.50196248292923,0.759521961212158,0.413715004920959,0.73175048828125,0.626570641994476,0.268235772848129,0.818789541721344,0.485601097345352,0.306227475404739,0.594559967517853,0.640107095241547,0.486581295728683,0.665429294109344,-0.519779741764069,0.535754501819611,0.448828607797623,-0.64630514383316,0.617124378681183,0.398588538169861,-0.744833767414093,0.535116612911224,0.599988400936127,-0.634517014026642,0.487239241600037, +0.427814781665802,-0.697008550167084,0.575459599494934,0.23638804256916,-0.817762553691864,0.524771451950073,0.208512783050537,-0.896336555480957,0.391284048557281,0.365654975175858,-0.802637219429016,0.471242904663086,-0.00966111477464437,0.978857159614563,0.204316675662994,0.156182438135147,0.943639516830444,0.291807293891907,0.234333783388138,0.882313013076782,0.408180624246597,0.0297412071377039,0.938992142677307,0.342650145292282,0.193326964974403,0.915247678756714,0.353477537631989,0.421294629573822,0.841106593608856,0.339191168546677,0.519820094108582,0.74517160654068,0.417739510536194,0.270480751991272,0.842202961444855,0.466405630111694,0.99689519405365,-0.000308514689095318,0.0787395089864731,0.924693286418915,0.0113936169072986,0.380542457103729,0.919492900371552,0.0145685933530331,0.392836600542068,0.995704174041748,0.0030558577273041,0.0925421118736267,0.881763935089111,-0.29827544093132,0.36540949344635,0.718449950218201,-0.371828466653824,0.58785480260849,0.690286934375763,-0.437754720449448,0.576085686683655,0.854367017745972,-0.367549389600754,0.36737522482872,-0.0882837474346161,0.996057987213135,0.00863160844892263,-0.0234878677874804,0.988998472690582,0.146048799157143,0.0146195171400905,0.958623945713043,0.284300208091736,-0.0970864742994308,0.983732938766479,0.151141658425331,-0.0465111173689365,0.986092448234558,-0.159556984901428,-0.0810478255152702,0.994245648384094,-0.0700477957725525,-0.0886268764734268,0.995637476444244,0.029180159792304,-0.0850981026887894,0.993809282779694,-0.0714226961135864,0.891475975513458,0.381493955850601,-0.244403183460236,0.898218214511871,0.436761170625687,0.0494353957474232,0.879898369312286,0.471422046422958,0.05950091406703,0.878476500511169,0.417923480272293,-0.231557831168175,0.597863554954529,0.665741443634033,-0.446483492851257,0.652815878391266,0.725825130939484,-0.21681647002697,0.615749776363373,0.761778593063354,-0.201359525322914,0.56965047121048,0.70517498254776,-0.422168999910355,0.0942888185381889,0.957889676094055,-0.271213948726654,0.0120513653382659,0.957447052001953,-0.288357198238373, +-0.00351791037246585,0.965376853942871,-0.260835438966751,0.0718423798680305,0.965181231498718,-0.251522839069366,0.334717452526093,0.888765335083008,-0.313145667314529,0.317035019397736,0.90094792842865,-0.296279728412628,0.241943016648293,0.872370779514313,-0.424774050712585,0.252968102693558,0.859157562255859,-0.444809406995773,0.622789561748505,-0.403527587652206,-0.670297503471375,0.601246774196625,-0.605603575706482,-0.521293222904205,0.620211899280548,-0.650103509426117,-0.438979029655457,0.696914732456207,-0.459064334630966,-0.550971686840057,0.646427512168884,-0.576489806175232,-0.499790996313095,0.586308598518372,-0.671399593353271,-0.453282445669174,0.631058514118195,-0.69219696521759,-0.350183546543121,0.704357624053955,-0.597441971302032,-0.383332043886185,0.837379515171051,-0.474377334117889,-0.271591007709503,0.906163811683655,-0.368323564529419,-0.207857891917229,0.930618405342102,-0.365971982479095,-0.00375279877334833,0.883041381835938,-0.460325300693512,-0.0913146883249283,0.794284224510193,-0.526281237602234,-0.303546398878098,0.734649419784546,-0.580941021442413,-0.350425124168396,0.774824976921082,-0.592571437358856,-0.220239266753197,0.828153073787689,-0.537984907627106,-0.157272890210152,0.646910488605499,-0.20001246035099,0.735868036746979,0.506221115589142,-0.0138116590678692,0.862293243408203,0.626721024513245,-0.0593270137906075,0.776982069015503,0.738378286361694,-0.172790393233299,0.651875019073486,0.643055498600006,-0.485837578773499,-0.591980993747711,0.751852452754974,0.263051688671112,-0.604584097862244,0.594428837299347,0.240192160010338,-0.767438650131226,0.669841527938843,-0.374655723571777,-0.641050279140472,0.818500101566315,-0.573086142539978,-0.0403742268681526,0.840445697307587,-0.518036901950836,-0.159024819731712,0.862914025783539,-0.425195306539536,-0.273108601570129,0.869454503059387,-0.433301270008087,-0.237274020910263,0.778289794921875,-0.592390120029449,-0.208180040121078,0.808342218399048,-0.55869996547699,-0.185572728514671,0.558000922203064,-0.786780595779419,0.263839870691299, +0.533027827739716,-0.816393375396729,0.222223281860352,0.882434189319611,-0.461309045553207,-0.0922176539897919,0.876806735992432,-0.469193547964096,-0.10520201176405,0.578453838825226,-0.769372045993805,0.271031141281128,0.565499782562256,-0.766160428524017,0.30530047416687,0.888563811779022,-0.397084653377533,-0.229734838008881,0.935303390026093,-0.306786298751831,-0.176322743296623,0.937454104423523,-0.346686989068985,0.03143160790205,0.907892167568207,-0.415985494852066,-0.0518452860414982,0.701182186603546,-0.608418107032776,-0.371713697910309,0.64441591501236,-0.654415309429169,-0.395561337471008,0.68369072675705,-0.670762956142426,-0.287478744983673,0.73886501789093,-0.627442538738251,-0.245752662420273,0.669939935207367,-0.667527139186859,-0.324943065643311,0.656861364841461,-0.688753366470337,-0.306842029094696,0.464506477117538,-0.883486330509186,0.0607113800942898,0.474829286336899,-0.879424631595612,0.0339032374322414,0.688063561916351,-0.667376935482025,-0.284915000200272,0.702813029289246,-0.656960308551788,-0.272868007421494,0.504145920276642,-0.85330718755722,0.133056253194809,0.482272773981094,-0.870251536369324,0.10037587583065,0.208420872688293,-0.958920657634735,0.192436873912811,0.323465645313263,-0.933325529098511,0.155799210071564,0.307944387197495,-0.937124490737915,0.164219200611115,0.198798209428787,-0.960547924041748,0.194491565227509,0.180239319801331,-0.978115379810333,0.103942766785622,0.287749320268631,-0.953147172927856,0.0933312550187111,0.318085312843323,-0.94194507598877,0.107524044811726,0.218918085098267,-0.969126999378204,0.113436177372932,0.307540774345398,-0.93751335144043,0.16274918615818,0.498713999986649,-0.855542659759521,0.139036417007446,0.485296785831451,-0.870555222034454,0.081367015838623,0.315134525299072,-0.944266438484192,0.095137245953083,0.324488639831543,-0.932389318943024,0.159240052103996,0.490281045436859,-0.869146943092346,0.0648701041936874,0.473922848701477,-0.876788318157196,0.0814827084541321,0.309874057769775,-0.935222446918488,0.171280562877655,0.231606438755989,-0.953109681606293,0.194782972335815, +0.340270608663559,-0.916935443878174,0.208435460925102,0.370726764202118,-0.914053022861481,0.164525613188744,0.274570852518082,-0.949984073638916,0.148799061775208,0.287637978792191,-0.899700880050659,0.32833331823349,0.390923261642456,-0.85664027929306,0.336669653654099,0.418181568384171,-0.855045258998871,0.306629598140717,0.32088428735733,-0.899708330631256,0.2959024310112,0.386261969804764,-0.876783192157745,0.286448776721954,0.546429455280304,-0.810974657535553,0.209129676222801,0.572556495666504,-0.787739992141724,0.227255031466484,0.418017953634262,-0.857201218605042,0.300777852535248,0.342714250087738,-0.913175165653229,0.220585957169533,0.53054016828537,-0.820220828056335,0.213927403092384,0.531397879123688,-0.834057331085205,0.1482043415308,0.367471039295197,-0.918899893760681,0.143485426902771,0.235177800059319,-0.94684237241745,0.2195013910532,0.279243171215057,-0.939136564731598,0.200114354491234,0.174284487962723,-0.958470582962036,0.22574146091938,0.104817360639572,-0.962970554828644,0.248397037386894,0.171594753861427,-0.926413118839264,0.335133016109467,0.21769192814827,-0.899889528751373,0.377901166677475,0.157111451029778,-0.929111182689667,0.334766328334808,0.104701824486256,-0.951028108596802,0.290831714868546,0.0635361820459366,-0.968554615974426,0.240551576018333,0.0535795576870441,-0.974021434783936,0.220026478171349,-0.0339562073349953,-0.977401614189148,0.208645880222321,-0.0297793783247471,-0.973013520240784,0.228818237781525,0.289386034011841,-0.881574749946594,0.372936904430389,0.319384723901749,-0.870999872684479,0.373299658298492,0.217183440923691,-0.897871553897858,0.382959634065628,0.169668942689896,-0.908167779445648,0.382679909467697,0.207632318139076,-0.959834039211273,0.188699945807457,0.197183057665825,-0.962497234344482,0.18632747232914,0.0532193332910538,-0.974787533283234,0.216695621609688,0.0613218955695629,-0.972794532775879,0.223406419157982,0.0505387298762798,-0.980090796947479,0.192009925842285,0.0999382063746452,-0.983078300952911,0.153523221611977,0.0265578851103783,-0.979986786842346,0.19728247821331, +-0.0320496447384357,-0.971103608608246,0.236496910452843,0.168605908751488,-0.95238208770752,0.254048258066177,0.258969068527222,-0.91638720035553,0.305236786603928,0.0990188792347908,-0.96349036693573,0.248760178685188,0.00342898233793676,-0.980613350868225,0.195922628045082,0.180876523256302,-0.97767436504364,0.106942251324654,0.215983614325523,-0.971684873104095,0.0958104059100151,0.0980182513594627,-0.987905204296112,0.120148539543152,0.0443149879574776,-0.989806056022644,0.135352924466133,0.271430104970932,-0.959492862224579,0.0754924193024635,0.1250891238451,-0.987108945846558,0.0998431593179703,0.0937605649232864,-0.993138492107391,0.0698911920189857,0.224568083882332,-0.973106145858765,0.0513186044991016,0.350273936986923,-0.921802580356598,-0.166097551584244,0.406671077013016,-0.819463014602661,-0.403855353593826,0.0193079635500908,-0.780716478824615,0.624587059020996,-0.276067405939102,-0.623247861862183,0.731675386428833,0.709674000740051,-0.683902740478516,-0.169233366847038,0.827658474445343,-0.486257463693619,-0.280241191387177,0.66033011674881,-0.640975832939148,0.391297876834869,0.541474759578705,-0.503485977649689,0.673280715942383,-0.235414311289787,0.42879331111908,-0.872190594673157,-0.327162951231003,0.387127310037613,-0.862030625343323,-0.20593436062336,0.372101724147797,-0.905058801174164,-0.107555896043777,0.420570969581604,-0.90086168050766,-0.152607992291451,0.399404287338257,-0.903984010219574,-0.21449813246727,0.368658870458603,-0.904478430747986,-0.138243287801743,0.366928905248642,-0.919919550418854,-0.0713297575712204,0.39534792304039,-0.915757775306702,-0.0370750762522221,0.409983664751053,-0.911339104175568,-0.0311544965952635,0.40281817317009,-0.914749622344971,-0.0180017948150635,0.364884316921234,-0.930878877639771,-0.0176421925425529,0.367653042078018,-0.929795682430267,0.0594466999173164,0.398422718048096,-0.915273308753967,0.103317774832249,0.399767398834229,-0.910775184631348,0.0930879861116409,0.314696103334427,-0.944616854190826,0.05604138225317,0.312893450260162,-0.94813346862793, +0.317578107118607,0.236294403672218,-0.918318629264832,0.358062595129013,0.212043657898903,-0.909301280975342,0.448314011096954,0.0255576223134995,-0.893510818481445,0.415631294250488,0.0485989823937416,-0.908233880996704,0.145951360464096,0.347787410020828,-0.926143705844879,0.20215904712677,0.344753623008728,-0.916666030883789,0.300507456064224,0.194485232234001,-0.933740198612213,0.253238826990128,0.212411642074585,-0.943796277046204,0.356782257556915,-0.222000867128372,-0.907426059246063,0.362927734851837,-0.257926970720291,-0.895408928394318,0.420606315135956,-0.453936874866486,-0.785513639450073,0.426474004983902,-0.427630394697189,-0.797027170658112,0.39482644200325,0.039383739233017,-0.917911231517792,0.401341140270233,0.00623460626229644,-0.915907502174377,0.47077676653862,-0.205183506011963,-0.858061134815216,0.465720891952515,-0.164121016860008,-0.869579434394836,0.144685655832291,-0.734629094600677,-0.662862062454224,0.145687460899353,-0.733053743839264,-0.664384961128235,0.202232196927071,-0.876237809658051,-0.437389343976974,0.219111517071724,-0.884135603904724,-0.41266742348671,0.252195239067078,-0.515631675720215,-0.818853795528412,0.272874176502228,-0.52215701341629,-0.808017134666443,0.337365627288818,-0.665801525115967,-0.665501892566681,0.329243808984756,-0.663912236690521,-0.671430706977844,-0.0368383005261421,-0.926383137702942,-0.374776303768158,-0.0717626884579659,-0.911660075187683,-0.404630780220032,-0.000530576275195926,-0.990991592407227,-0.133923172950745,0.0377493612468243,-0.99390584230423,-0.103567145764828,-0.111336395144463,-0.990063369274139,-0.0858998447656631,-0.132260605692863,-0.983596563339233,-0.122658587992191,-0.0995171964168549,-0.98661607503891,0.129170536994934,-0.0760313421487808,-0.983653008937836,0.16323609650135,-0.123113289475441,-0.978604316711426,0.16485396027565,-0.112926699221134,-0.985184609889984,0.129069268703461,-0.12580119073391,-0.899394631385803,0.41864475607872,-0.132296562194824,-0.887075066566467,0.442261755466461,-0.0910026207566261,-0.890959978103638,0.444869637489319, +-0.0643507316708565,-0.903174340724945,0.424423307180405,-0.104557141661644,-0.764979779720306,0.635510683059692,-0.124973930418491,-0.759867608547211,0.637951970100403,0.0201652683317661,-0.619645118713379,0.784623026847839,0.0271532740443945,-0.61384916305542,0.78895628452301,0.0139415878802538,-0.500759303569794,0.865474283695221,0.0134722609072924,-0.501416206359863,0.865101337432861,-0.034394808113575,-0.761399745941162,0.647369742393494,-0.0240613669157028,-0.763340890407562,0.645547807216644,-0.0567979291081429,-0.62224155664444,0.780762076377869,-0.0530902780592442,-0.623247563838959,0.78022038936615,0.101209707558155,-0.436901479959488,0.893797338008881,0.113336741924286,-0.437610387802124,0.891993224620819,0.121805593371391,-0.420601367950439,0.899031758308411,0.10989486426115,-0.404433518648148,0.907940864562988,0.034038208425045,-0.500152885913849,0.865267872810364,0.0563187897205353,-0.494482606649399,0.867360949516296,0.0686762556433678,-0.44572651386261,0.892530918121338,0.049377866089344,-0.441351681947708,0.895974636077881,0.384874880313873,-0.335877299308777,0.859684824943542,0.372267305850983,-0.346703767776489,0.860937654972076,0.353373467922211,-0.322190821170807,0.878248393535614,0.36732617020607,-0.285502940416336,0.885189056396484,0.251237720251083,-0.386491298675537,0.887414276599884,0.233749523758888,-0.395319610834122,0.888303756713867,0.214046388864517,-0.391746044158936,0.894829273223877,0.23146103322506,-0.363333880901337,0.902449071407318,0.572993397712708,-0.786563634872437,0.230209603905678,0.861643254756927,-0.491123676300049,-0.127939745783806,0.87992137670517,-0.465164721012115,-0.0967491045594215,0.591234147548676,-0.77127993106842,0.235731884837151,-0.336870402097702,0.648366570472717,-0.682743847370148,-0.451627671718597,0.809959053993225,-0.374164134263992,-0.21208056807518,0.437325805425644,-0.873938202857971,-0.238008752465248,0.427351742982864,-0.872194111347198,0.744572401046753,-0.608014941215515,-0.275554001331329,0.701281011104584,-0.690384924411774,-0.17768968641758, +0.428885519504547,-0.902086317539215,0.0479335263371468,0.54570859670639,-0.837787210941315,-0.0177422240376472,0.478748768568039,-0.877578020095825,-0.0256207287311554,0.591621994972229,-0.797541558742523,-0.11794488877058,0.734609305858612,-0.437555849552155,-0.518549978733063,0.6617591381073,-0.625784039497375,-0.412879079580307,0.565491914749146,-0.804019510746002,0.183770328760147,0.584297597408295,-0.79187947511673,0.177547857165337,0.436941742897034,-0.871909618377686,0.221033200621605,0.414931207895279,-0.879756152629852,0.232080206274986,0.415748029947281,-0.875469148159027,0.246389120817184,0.437339842319489,-0.86103880405426,0.259511321783066,0.340861201286316,-0.89542156457901,0.286415904760361,0.320911377668381,-0.906754076480865,0.273519486188889,0.424778342247009,-0.904894590377808,0.0270029921084642,0.289601892232895,-0.951786041259766,0.101163133978844,0.197146415710449,-0.968257665634155,0.153657421469688,0.342668056488037,-0.93576180934906,0.0832374840974808,0.544473886489868,-0.838475286960602,-0.0225315149873495,0.420216172933578,-0.907178819179535,0.0210934709757566,0.280120432376862,-0.959065735340118,0.0415411740541458,0.423585891723633,-0.905716478824615,0.0158951859921217,0.674196779727936,-0.664637863636017,-0.322048664093018,0.488122642040253,-0.870677590370178,0.0604714974761009,0.499091804027557,-0.8664710521698,0.0116322096437216,0.690162122249603,-0.607304275035858,-0.393519818782806,0.607520043849945,-0.789758682250977,-0.0848565325140953,0.499628096818924,-0.866147875785828,0.012638340704143,0.353687852621078,-0.926340699195862,0.129606530070305,0.487814456224442,-0.871818780899048,0.0443751439452171,0.501981914043427,-0.857724189758301,0.111010037362576,0.349872946739197,-0.929445028305054,0.117136999964714,0.238215908408165,-0.953206121921539,0.18614849448204,0.390356481075287,-0.900703907012939,0.190668106079102,0.378900766372681,-0.899560511112213,0.217313259840012,0.337673753499985,-0.918710708618164,0.204809784889221,0.22343347966671,-0.937684893608093,0.266128659248352,0.257003158330917,-0.923400640487671,0.285097658634186, +0.520542204380035,-0.852192759513855,0.0529464744031429,0.503701150417328,-0.858879625797272,0.0927949622273445,0.33876970410347,-0.917429268360138,0.208707094192505,0.365417659282684,-0.915341019630432,0.169176623225212,0.393271088600159,-0.889121115207672,0.234097450971603,0.25365349650383,-0.929845094680786,0.266548275947571,0.102399475872517,-0.955576181411743,0.276384651660919,0.259854674339294,-0.935175180435181,0.240671962499619,-0.0311925336718559,-0.97633308172226,0.214011549949646,0.0117826201021671,-0.959267020225525,0.282254844903946,0.110145546495914,-0.933372616767883,0.341589629650116,0.0679648965597153,-0.959013879299164,0.275087535381317,0.255357503890991,-0.921657621860504,0.292129755020142,0.201995402574539,-0.947557628154755,0.24765382707119,0.173041179776192,-0.963601768016815,0.203785628080368,0.228162363171577,-0.941099524497986,0.249547109007835,0.257552891969681,-0.922288239002228,0.288185775279999,0.230694994330406,-0.92439216375351,0.303774505853653,0.074059285223484,-0.943436145782471,0.323177367448807,0.106288827955723,-0.94517856836319,0.308772414922714,0.268428951501846,-0.953961312770844,0.133804276585579,0.343722999095917,-0.924924612045288,0.162385240197182,0.196643814444542,-0.969350516796112,0.147277906537056,0.125249564647675,-0.985896348953247,0.110999912023544,0.222256615757942,-0.917949318885803,0.328589349985123,0.319995760917664,-0.879208743572235,0.352979779243469,0.338772684335709,-0.88289088010788,0.325171917676926,0.254337072372437,-0.918887197971344,0.301594018936157,0.18683260679245,-0.980823993682861,0.0554803423583508,0.223779886960983,-0.972802519798279,0.0598151125013828,0.12646821141243,-0.990786373615265,0.04845916852355,0.0926167741417885,-0.994773268699646,0.042991679161787,0.100327834486961,-0.994936883449554,-0.00591300893574953,0.135123372077942,-0.990828096866608,-0.00124093133490533,-0.103054396808147,-0.99293839931488,-0.0587651766836643,-0.0948145985603333,-0.994040668010712,-0.0537902526557446,0.141933411359787,-0.988992989063263,-0.0418072752654552,-0.0302977655082941,-0.997013866901398,-0.0710306465625763, +-0.16189281642437,-0.980063259601593,-0.115182057023048,-0.0911053791642189,-0.990905582904816,-0.0990247949957848,0.231038182973862,-0.972573935985565,-0.0268608015030622,0.0985501781105995,-0.993506133556366,-0.0568628683686256,-0.0317213498055935,-0.997647881507874,-0.0607654936611652,0.13761094212532,-0.990358710289001,-0.015901904553175,0.0262825097888708,-0.991753756999969,0.125433966517448,0.114519029855728,-0.98239940404892,0.147569820284843,0.0309263113886118,-0.991642951965332,0.125251173973083,-0.0463131442666054,-0.993550002574921,0.103505969047546,-0.0436505004763603,-0.998019576072693,0.0452957786619663,0.0392391122877598,-0.997850298881531,0.0524893514811993,-0.12715645134449,-0.991683959960938,0.01985546015203,-0.154446393251419,-0.987869441509247,0.0161345191299915,0.0438364185392857,-0.998974800109863,0.0113055147230625,0.0967176854610443,-0.99516373872757,0.0171759203076363,-0.102836556732655,-0.994356453418732,-0.0260780341923237,-0.115895710885525,-0.992989599704742,-0.0232342388480902,0.117385141551495,-0.988395273685455,0.0964136123657227,0.181726425886154,-0.976482272148132,0.116009004414082,0.0845755487680435,-0.992122173309326,0.092415452003479,0.036814521998167,-0.99658340215683,0.0739339664578438,0.0264055542647839,-0.98782616853714,0.15330459177494,-0.0457718148827553,-0.99476033449173,0.0914155021309853,-0.113712139427662,-0.981606245040894,0.153358519077301,-0.0335182212293148,-0.976017713546753,0.21509525179863,-0.0367958247661591,-0.985428392887115,0.166062667965889,-0.114205457270145,-0.986541986465454,0.11701312661171,-0.117253139615059,-0.978386402130127,0.170328199863434,-0.0308388005942106,-0.975521802902222,0.217729672789574,-0.114314272999763,-0.987667500972748,0.106982037425041,-0.182193428277969,-0.9800905585289,0.0789180546998978,-0.155055716633797,-0.982145369052887,0.106527492403984,-0.118767254054546,-0.984721004962921,0.12735316157341,-0.0453911609947681,-0.995515704154968,0.0829948931932449,-0.157491341233253,-0.987095952033997,0.0289491508156061,-0.179084107279778,-0.981694757938385,0.0648410096764565, +-0.114186450839043,-0.986347198486328,0.118662886321545,-0.0338165648281574,-0.98193347454071,0.186180055141449,-0.118673257529736,-0.984356462955475,0.130226701498032,-0.0719661340117455,-0.97922819852829,0.189560174942017,0.00801712647080421,-0.969868123531342,0.243498548865318,0.00218776939436793,-0.98311311006546,0.182986110448837,-0.0727811008691788,-0.982884705066681,0.169235289096832,0.116408042609692,-0.971807956695557,0.205032989382744,0.169948369264603,-0.964159548282623,0.203749671578407,-0.0739131197333336,-0.987461626529694,0.139485538005829,-0.0652790442109108,-0.991757273674011,0.110254868865013,0.0596800670027733,-0.981746256351471,0.180589243769646,0.118162415921688,-0.974119246006012,0.19268986582756,-0.119322918355465,-0.986779630184174,0.109673202037811,-0.149491295218468,-0.985297083854675,0.082717627286911,-0.0686555653810501,-0.99000495672226,0.123193092644215,-0.0741998702287674,-0.988517284393311,0.131635755300522,0.246522545814514,-0.959936916828156,-0.133220806717873,0.338005095720291,-0.920740187168121,-0.194910362362862,-0.463867127895355,-0.646737456321716,0.605440318584442,-0.56313419342041,-0.590168416500092,0.578429818153381,0.122404359281063,-0.992286622524261,-0.0196028742939234,0.182660192251205,-0.983173310756683,-0.00233826250769198,-0.660583138465881,-0.55812281370163,0.50212436914444,-0.750538289546967,-0.521107196807861,0.406373679637909,0.248709663748741,-0.960725784301758,-0.123083099722862,-0.579483091831207,-0.589937567710876,0.562292516231537,-0.593126773834229,-0.560731053352356,0.577738106250763,0.17695814371109,-0.982779145240784,-0.0532068125903606,-0.0231963247060776,-0.992286503314972,-0.121776901185513,0.101190231740475,-0.982673287391663,-0.155286595225334,-0.898763597011566,-0.434054970741272,0.0618083737790585,-0.92085474729538,-0.368838340044022,-0.126431167125702,0.119559645652771,-0.987659275531769,-0.101165659725666,-0.765370965003967,-0.518179953098297,0.381702840328217,-0.853642761707306,-0.465329140424728,0.234014362096786,0.100252576172352,-0.988169252872467,-0.116064451634884, +-0.0857015922665596,-0.989427387714386,-0.11699903011322,-0.153356090188026,-0.977231919765472,-0.146627634763718,-0.841702997684479,-0.372716218233109,-0.390664547681808,-0.691003501415253,-0.485164195299149,-0.535845041275024,-0.0174267794936895,-0.986562728881836,-0.16245125234127,-0.916926503181458,-0.362658828496933,-0.166506320238113,-0.835729598999023,-0.372041136026382,-0.403907686471939,-0.150038048624992,-0.975868582725525,-0.158647820353508,-0.106119923293591,-0.99254697561264,-0.0599106922745705,-0.0917695462703705,-0.993706822395325,-0.0642271861433983,-0.523374676704407,-0.64002525806427,-0.56253582239151,-0.40091934800148,-0.771284818649292,-0.494351476430893,-0.0911024808883667,-0.990904986858368,-0.0990345254540443,-0.682921171188354,-0.48584446310997,-0.545503258705139,-0.511592864990234,-0.64180314540863,-0.571280539035797,-0.0844844952225685,-0.992440700531006,-0.0890166535973549,-0.177518919110298,-0.98241776227951,0.0578135401010513,-0.158560618758202,-0.986781597137451,0.0334755145013332,-0.290657728910446,-0.90487277507782,-0.311003804206848,-0.246930286288261,-0.966655373573303,-0.0678440928459167,-0.115630492568016,-0.992996633052826,-0.0242380425333977,-0.418559849262238,-0.767817854881287,-0.48503965139389,-0.296799272298813,-0.903524279594421,-0.309118628501892,-0.144555315375328,-0.989187121391296,-0.0247545950114727,-0.0635891333222389,-0.992564499378204,0.103789001703262,-0.148372501134872,-0.98585307598114,0.0779707655310631,-0.0874451175332069,-0.982633352279663,0.163661375641823,-0.111225478351116,-0.889251589775085,0.443689733743668,-0.181513354182243,-0.98046088218689,0.0758256986737251,-0.214096188545227,-0.974126100540161,-0.0723961815237999,-0.208234190940857,-0.96374249458313,0.166850388050079,-0.152660682797432,-0.983581840991974,0.0962377190589905,0.118099793791771,-0.974039018154144,0.193133220076561,0.0570508278906345,-0.980452418327332,0.188303619623184,0.220342934131622,-0.73181426525116,0.644900619983673,0.239002108573914,-0.588657140731812,0.772243976593018,-0.0641527399420738,-0.992300450801849,0.105944693088531, +0.0825019404292107,-0.890508532524109,0.447423756122589,0.0475838966667652,-0.757361829280853,0.651259481906891,0.071709580719471,-0.98683226108551,0.144982799887657,0.259538471698761,-0.950101494789124,0.173051431775093,0.170974299311638,-0.975077092647552,0.141395390033722,0.550723910331726,-0.391585052013397,0.737132489681244,0.559348404407501,-0.338970392942429,0.756457805633545,0.120102733373642,-0.976519525051117,0.178843304514885,0.414946496486664,-0.539974331855774,0.732288837432861,0.520854592323303,-0.402619063854218,0.752733945846558,0.170470848679543,-0.969305276870728,0.177163392305374,0.469390273094177,-0.882494807243347,-0.0295920539647341,0.371143877506256,-0.928438603878021,0.0159357599914074,0.840006291866302,-0.180344790220261,0.511727690696716,0.88626503944397,-0.130784571170807,0.444330483675003,0.258865863084793,-0.956169724464417,0.136850237846375,0.688417494297028,-0.285973072052002,0.666558921337128,0.703966498374939,-0.256799697875977,0.662182033061981,0.386537790298462,-0.910699784755707,0.145651876926422,0.746297657489777,-0.430350840091705,-0.507777452468872,0.563435733318329,-0.807967185974121,-0.172422230243683,0.969650030136108,0.147111907601357,-0.195286557078362,0.857389330863953,0.248097762465477,-0.450922429561615,0.454348981380463,-0.886955797672272,-0.0829240381717682,0.949268400669098,-0.0692681968212128,0.306743294000626,0.98201060295105,0.0115766869857907,0.1884705722332,0.576528489589691,-0.803612411022186,-0.147722706198692,0.929934620857239,0.0990416407585144,-0.354136258363724,0.924596130847931,0.106631994247437,-0.365720689296722,0.968736231327057,0.086592510342598,-0.232491001486778,0.972026884555817,0.0872173607349396,-0.218075409531593,0.973036766052246,0.071416363120079,-0.219315603375435,0.969245195388794,0.0766921937465668,-0.233842015266418,0.99676638841629,0.0558962635695934,-0.0577284470200539,0.99584299325943,0.0611579343676567,-0.067501112818718,0.969252467155457,0.0765360072255135,-0.233863145112991,0.968680560588837,0.0853623300790787,-0.23317651450634,0.998219966888428,0.0418707765638828,-0.0424720607697964, +0.996757447719574,0.0560761950910091,-0.0577069520950317,0.924405455589294,0.110358536243439,-0.365096628665924,0.923076927661896,0.120403304696083,-0.365283459424973,0.968705177307129,0.0845300704240799,-0.233377516269684,0.968614041805267,0.0887199491262436,-0.232197478413582,0.998232841491699,0.0414710827171803,-0.042561624199152,0.968680143356323,0.085375115275383,-0.233173429965973,0.975745916366577,0.0853300616145134,-0.20159050822258,0.999211609363556,0.0263139978051186,-0.0297307763248682,0.999200463294983,0.0269918013364077,-0.0294962227344513,0.975732922554016,0.0862700343132019,-0.201253026723862,0.985383093357086,0.0746355578303337,-0.153133019804955,0.999780654907227,0.0157439317554235,-0.013812692835927,0.975751459598541,0.0849083960056305,-0.201741844415665,0.941544115543365,0.121484719216824,-0.314223438501358,0.958009779453278,0.109570443630219,-0.2649747133255,0.98539012670517,0.0667509883642197,-0.15668648481369,0.968464136123657,0.0918610692024231,-0.231600776314735,0.923077344894409,0.120385773479939,-0.365288227796555,0.941546618938446,0.115369468927383,-0.316512197256088,0.975789248943329,0.0814460813999176,-0.202982529997826,0.998406946659088,0.0354271866381168,-0.0439148433506489,0.99887090921402,0.0405126251280308,-0.0248131621629,0.991425275802612,-0.0146818580105901,0.129847437143326,0.990948796272278,-0.00683937594294548,0.134066298604012,0.991068363189697,-0.012633272446692,0.132755264639854,0.991245746612549,-0.00910378620028496,0.131715789437294,0.972177743911743,-0.0385969169437885,0.231042921543121,0.970512866973877,-0.0340123623609543,0.238637715578079,0.991358757019043,-0.0124875847250223,0.130582958459854,0.992180109024048,-0.00883031170815229,0.124501682817936,0.975367963314056,-0.0439759157598019,0.2161565721035,0.97230589389801,-0.0421859808266163,0.229872941970825,0.998993873596191,0.0363643281161785,-0.0262508112937212,0.999418139457703,0.0335763245820999,-0.00601662928238511,0.99256306886673,-0.0187084581702948,0.120286107063293,0.991423964500427,-0.0146335707977414,0.129863649606705, +0.998344957828522,0.0377374403178692,-0.0433978214859962,0.990892291069031,-0.00456644268706441,0.134579300880432,0.992564797401428,0.00675663631409407,0.121530398726463,0.997649013996124,0.0320912450551987,-0.0605528615415096,0.997510194778442,0.0371298268437386,-0.059958141297102,0.992471396923065,0.0105088725686073,0.122025184333324,0.994000375270844,0.0188459046185017,0.107741475105286,0.996870934963226,0.0380841679871082,-0.0692674443125725,0.992713034152985,-0.00102924008388072,0.120498187839985,0.971368551254272,-0.0221524462103844,0.236542671918869,0.972949206829071,-0.0158681496977806,0.230473935604095,0.994357585906982,0.00156804383732378,0.106068573892117,0.990927398204803,-0.00595148699358106,0.134266793727875,0.970514714717865,-0.0340888053178787,0.238619312644005,0.971446692943573,-0.0271872859448195,0.235695287585258,0.992785573005676,-0.00703435484319925,0.119696974754333,0.910609543323517,0.219472169876099,-0.350174874067307,0.890471339225769,0.203705117106438,-0.406896889209747,0.382364481687546,0.24645559489727,-0.89053750038147,0.492427796125412,0.177289426326752,-0.85210520029068,0.991793870925903,-0.0016969497082755,-0.127835273742676,0.993921756744385,0.104160718619823,0.0356385000050068,0.99877917766571,0.0308837778866291,0.0385526232421398,0.995862066745758,0.0462523959577084,-0.0782273337244987,0.340093970298767,0.12156917154789,-0.932500422000885,0.512398719787598,0.0599188096821308,-0.856654703617096,0.390887409448624,0.109560571610928,-0.913894712924957,0.21704375743866,0.181668981909752,-0.959108114242554,0.533274292945862,0.52049046754837,-0.666864573955536,0.543751776218414,0.599419772624969,-0.587392628192902,0.564208984375,0.759263038635254,-0.324326783418655,0.592935860157013,0.683433055877686,-0.425847768783569,-0.320307999849319,0.439040094614029,-0.839432299137115,-0.441479593515396,0.525404810905457,-0.727355182170868,-0.508363664150238,0.61106938123703,-0.606762528419495,-0.36600136756897,0.495603203773499,-0.787667751312256,0.441725343465805,0.302859514951706,-0.84448504447937, +0.553334355354309,0.35620129108429,-0.752955317497253,0.520199775695801,0.318623840808868,-0.792383134365082,0.379066437482834,0.269966751337051,-0.885113894939423,0.929294645786285,0.107979714870453,-0.35320246219635,0.936542809009552,0.107217185199261,-0.333754390478134,0.878572463989258,0.115951165556908,-0.463320523500443,0.873035550117493,0.120206490159035,-0.472609102725983,0.810619115829468,0.141256555914879,-0.56828099489212,0.872237205505371,0.133246958255768,-0.470582246780396,0.876204907894135,0.143381357192993,-0.460116058588028,0.823598444461823,0.146249428391457,-0.547993361949921,0.913256049156189,0.104860760271549,-0.393659442663193,0.823553025722504,0.142381086945534,-0.549079298973083,0.878365337848663,0.118707656860352,-0.463014990091324,0.936293125152588,0.11004663258791,-0.3335340321064,0.929159700870514,0.109739355742931,-0.353015184402466,0.872840464115143,0.123637922108173,-0.472084105014801,0.873849868774414,0.128336757421494,-0.468952119350433,0.924477577209473,0.108979471027851,-0.365328162908554,0.924364447593689,0.111127771437168,-0.364967077970505,0.873667061328888,0.132773816585541,-0.468056589365005,0.877462208271027,0.136230289936066,-0.459893047809601,0.923278093338013,0.108539745211601,-0.368479162454605,0.873678743839264,0.132502719759941,-0.468111604452133,0.822367668151855,0.153975531458855,-0.547725319862366,0.833233952522278,0.155225500464439,-0.530684649944305,0.877538919448853,0.132661461830139,-0.46078896522522,0.8724125623703,0.130586132407188,-0.471002757549286,0.810601353645325,0.15042382478714,-0.565948784351349,0.822437405586243,0.147753611207008,-0.549332141876221,0.873808085918427,0.129390731453896,-0.468740284442902,0.996907353401184,0.0542041584849358,-0.0569005124270916,0.970314800739288,0.0859482437372208,-0.226058050990105,0.975289762020111,0.0734716579318047,-0.208354979753494,0.995936155319214,0.0642297714948654,-0.0631328448653221,0.996125876903534,0.0609265230596066,-0.0634129568934441,0.975472807884216,0.0704330131411552,-0.208547681570053,0.973032593727112,0.0714908167719841,-0.219309896230698, +0.995826125144958,0.0614583902060986,-0.067477859556675,0.974518001079559,0.0849270448088646,-0.207610830664635,0.937739431858063,0.0922081992030144,-0.334876924753189,0.930116057395935,0.096294954419136,-0.35441729426384,0.972130060195923,0.0857645198702812,-0.21819181740284,0.970338404178619,0.0854048207402229,-0.226162314414978,0.912921905517578,0.119550041854382,-0.390232801437378,0.937465786933899,0.0958898440003395,-0.334608763456345,0.974070906639099,0.0908129289746284,-0.207217454910278,0.911042451858521,0.197956666350365,-0.361683487892151,0.933939099311829,0.221835136413574,-0.280262291431427,0.91450446844101,0.194212660193443,-0.354912549257278,0.890080809593201,0.163698971271515,-0.42539256811142,0.889743506908417,0.154380634427071,-0.429561734199524,0.915348947048187,0.147552415728569,-0.374652683734894,0.898350179195404,0.14800925552845,-0.413594365119934,0.867599010467529,0.155548959970474,-0.472309708595276,0.915125966072083,0.132679492235184,-0.380710572004318,0.941531181335449,0.124019421637058,-0.31327024102211,0.922806084156036,0.13017712533474,-0.362605512142181,0.898228228092194,0.132079854607582,-0.419214963912964,0.935844480991364,0.13453583419323,-0.325722694396973,0.958074748516083,0.114511221647263,-0.262640416622162,0.941473841667175,0.129971504211426,-0.311021596193314,0.915346205234528,0.147180169820786,-0.374805688858032,0.923069655895233,0.120720878243446,-0.365197092294693,0.877361416816711,0.140246957540512,-0.458876579999924,0.881430625915527,0.131127819418907,-0.453746110200882,0.898128390312195,0.126661658287048,-0.421096473932266,0.867592632770538,0.155365750193596,-0.472381830215454,0.898309946060181,0.138700023293495,-0.416895180940628,0.881486713886261,0.145769000053406,-0.449146658182144,0.843743920326233,0.16338087618351,-0.511275768280029,0.833201289176941,0.16069270670414,-0.529106438159943,0.843719959259033,0.161912068724632,-0.51178252696991,0.881482899188995,0.138016581535339,-0.451596587896347,0.877397239208221,0.138886198401451,-0.459221839904785,0.970506072044373,-0.0147744501009583,0.240623950958252, +0.992333769798279,0.0167824868112803,0.122442007064819,0.994266986846924,0.0083120409399271,0.106602340936661,0.974245011806488,-0.00812655873596668,0.225345641374588,0.974222719669342,-0.00712026795372367,0.22547635436058,0.994227409362793,0.0101381735876203,0.106813490390778,0.994297385215759,0.00582846719771624,0.106484048068523,0.972855746746063,-0.0104602975770831,0.231175780296326,0.993803143501282,0.0243821833282709,0.10844824463129,0.996935784816742,0.0437300875782967,-0.064859002828598,0.996768951416016,0.041048176586628,-0.0690427124500275,0.993848919868469,0.0236142724752426,0.108197540044785,0.992479085922241,0.0136174093931913,0.121654875576496,0.996801495552063,0.0566402934491634,-0.0563797429203987,0.996950805187225,0.0433385036885738,-0.0648916959762573,0.993767499923706,0.0253312662243843,0.108556389808655,0.958080887794495,0.115124560892582,-0.262349992990494,0.936054885387421,0.142958283424377,-0.321502983570099,0.954339623451233,0.120122514665127,-0.273507744073868,0.973860561847687,0.0878133326768875,-0.209486618638039,0.973772048950195,0.0847295895218849,-0.211161226034164,0.954381942749023,0.121221385896206,-0.272874474525452,0.964745402336121,0.102034628391266,-0.242601126432419,0.983019292354584,0.0631555691361427,-0.172291800379753,0.953459143638611,0.102611005306244,-0.283525437116623,0.927719473838806,0.141062751412392,-0.345597892999649,0.936935126781464,0.126338362693787,-0.325870096683502,0.963925242424011,0.0827078744769096,-0.252997130155563,0.936164259910583,0.170282259583473,-0.307571798563004,0.909979581832886,0.23453663289547,-0.341949880123138,0.928906917572021,0.18026702105999,-0.323474615812302,0.953824579715729,0.108989484608173,-0.279892712831497,0.999768793582916,0.0168874710798264,-0.0133129898458719,0.985366582870483,0.0770013257861137,-0.152064055204391,0.992445945739746,0.0604299046099186,-0.106768108904362,0.999959826469421,0.00711754709482193,0.00546519411727786,0.999951362609863,0.00793327856808901,0.0058649368584156,0.992429912090302,0.062562569975853,-0.105682604014874, +0.995848536491394,0.0474408008158207,-0.0776869356632233,0.999661445617676,0.00196189037524164,0.0259444005787373,0.992430865764618,0.0485526472330093,-0.112799011170864,0.974044561386108,0.0964530631899834,-0.204777851700783,0.983201742172241,0.0754289776086807,-0.166207641363144,0.995908915996552,0.0360276885330677,-0.0828697979450226,0.985395312309265,0.0687006413936615,-0.155809104442596,0.958085298538208,0.115611478686333,-0.262119323015213,0.973982334136963,0.0930004939436913,-0.206662550568581,0.992429435253143,0.0483893975615501,-0.112881727516651,0.975550949573517,-0.0480695553123951,0.214452117681503,0.992282509803772,-0.0111998785287142,0.123491808772087,0.992443382740021,-0.0100173121318221,0.122293680906296,0.978366792201996,-0.0466475822031498,0.201550245285034,0.978430867195129,-0.0478993616998196,0.200944572687149,0.992430925369263,-0.00976605620235205,0.122415259480476,0.990647852420807,-0.0182519592344761,0.135217323899269,0.974650144577026,-0.0537735819816589,0.217176228761673,0.993002355098724,-0.0235778652131557,0.115716829895973,0.999545574188232,0.0262399725615978,0.0148355485871434,0.999371826648712,0.0155257498845458,0.0318605490028858,0.990985751152039,-0.0279432237148285,0.131021454930305,0.992640435695648,-0.0211661774665117,0.119234949350357,0.999450922012329,0.0324935019016266,-0.00649024359881878,0.99957138299942,0.0254596881568432,0.014453211799264,0.992996454238892,-0.0233960896730423,0.115805193781853,0.97529673576355,-0.0424900911748409,0.216774061322212,0.977824926376343,-0.0372464060783386,0.206085219979286,0.962129652500153,-0.0638892203569412,0.264999628067017,0.958289861679077,-0.0659525543451309,0.278084576129913,0.958121180534363,-0.0625105202198029,0.279457211494446,0.96168327331543,-0.0572528317570686,0.268118292093277,0.931760370731354,-0.0930213034152985,0.350955635309219,0.929876923561096,-0.0904077664017677,0.356588393449783,0.961466908454895,-0.0542833395302296,0.269508630037308,0.953904151916504,-0.0657619833946228,0.292817711830139,0.927407026290894,-0.0949462056159973,0.361802935600281, +0.931688070297241,-0.0917265191674232,0.351487725973129,0.977866172790527,-0.0379010438919067,0.205770224332809,0.974361598491669,-0.0473285913467407,0.219953835010529,0.95448511838913,-0.0762821957468987,0.288338840007782,0.962223410606384,-0.06539086997509,0.264291733503342,0.970668852329254,-0.0417454987764359,0.236768364906311,0.972279012203217,-0.0413996465504169,0.230129569768906,0.955023646354675,-0.0568102560937405,0.291036993265152,0.953469574451447,-0.0523521937429905,0.29690945148468,0.953590929508209,-0.0579966194927692,0.295467048883438,0.955126702785492,-0.0596570149064064,0.290127992630005,0.92610102891922,-0.080053985118866,0.368684470653534,0.92309558391571,-0.0753796771168709,0.377110689878464,0.955229341983795,-0.062765046954155,0.289132326841354,0.958022177219391,-0.0606052204966545,0.280215203762054,0.929754137992859,-0.08759655803442,0.357608795166016,0.926268100738525,-0.0849141925573349,0.367174357175827,0.972383677959442,-0.0445749908685684,0.22909227013588,0.975170135498047,-0.0399691611528397,0.217820331454277,0.958125352859497,-0.0625935345888138,0.279424130916595,0.955183565616608,-0.0613428317010403,0.289588302373886,0.970492899417877,-0.0331969521939754,0.23883393406868,0.95347386598587,-0.0525323487818241,0.296863555908203,0.954692304134369,-0.0459872372448444,0.294020235538483,0.971488535404205,-0.0309534221887589,0.235057294368744,0.9714275598526,-0.0257903411984444,0.235931009054184,0.954591810703278,-0.0398608446121216,0.29523828625679,0.957123458385468,-0.0345703437924385,0.287610352039337,0.973030507564545,-0.0233330857008696,0.229493767023087,0.95462429523468,-0.0416105315089226,0.294891625642776,0.924387753009796,-0.0630121305584908,0.376213759183884,0.927512347698212,-0.0577498003840446,0.369304537773132,0.957163393497467,-0.038717970252037,0.286948084831238,0.953381180763245,-0.0489691495895386,0.297768890857697,0.923101007938385,-0.0755716413259506,0.377059012651443,0.92451947927475,-0.0683699995279312,0.374952554702759,0.954679131507874,-0.0450301170349121,0.29421129822731, +0.973001480102539,-0.0200438965111971,0.229927271604538,0.957063734531403,-0.0302459839731455,0.288295298814774,0.96010035276413,-0.026660080999136,0.278381913900375,0.974403440952301,-0.0173714067786932,0.224134191870689,0.974439084529877,-0.02061977237463,0.223703861236572,0.960131168365479,-0.02930673584342,0.278009444475174,0.951864361763,-0.0372232012450695,0.30425101518631,0.97074168920517,-0.0202323962002993,0.23927229642868,0.960152983665466,-0.0480485409498215,0.275313913822174,0.930567502975464,-0.0630180314183235,0.360656172037125,0.927363932132721,-0.0702843070030212,0.367500096559525,0.952331244945526,-0.0534302331507206,0.300350874662399,0.957167446613312,-0.0392611548304558,0.286860972642899,0.927485942840576,-0.0566204078495502,0.369545638561249,0.930411696434021,-0.054758720099926,0.362402677536011,0.96018385887146,-0.0378804244101048,0.276788890361786,0.546293616294861,0.513475358486176,-0.661744892597198,0.602083384990692,0.676777243614197,-0.423636853694916,0.622546076774597,0.598272144794464,-0.504486799240112,0.537562429904938,0.44666314125061,-0.715205311775208,-0.367309719324112,0.563516199588776,-0.739954710006714,-0.481078624725342,0.720390975475311,-0.499600052833557,-0.431922614574432,0.793692767620087,-0.428362935781479,-0.364644229412079,0.616254508495331,-0.698043763637543,0.954616725444794,-0.0364321656525135,-0.29560062289238,0.988916873931885,0.0324312895536423,-0.144884988665581,0.995736539363861,0.0203180070966482,-0.0899783223867416,0.982932329177856,0.0596096962690353,-0.174042463302612,0.990406513214111,-0.0127421766519547,0.137595683336258,0.999524056911469,0.00965619459748268,0.0293010976165533,0.99332058429718,-0.0419499725103378,0.107491336762905,0.95708030462265,0.0602670796215534,0.283487290143967,0.972889065742493,-0.0236400943249464,0.23006097972393,0.988838016986847,0.0125860851258039,0.148462563753128,0.952760398387909,0.0156109882518649,0.303321450948715,0.879531919956207,0.0962228253483772,0.466009467840195,0.951176941394806,-0.0317575000226498,0.307007998228073,0.970917999744415,-0.00139170628972352,0.239408314228058, +0.870139718055725,0.0348565950989723,0.491570800542831,0.76211404800415,0.12130369246006,0.635977804660797,-0.498589396476746,0.70838463306427,-0.499599814414978,-0.382430553436279,0.555745780467987,-0.738169014453888,-0.356084585189819,0.502735674381256,-0.787693202495575,-0.487601727247238,0.630157589912415,-0.604273080825806,-0.19331106543541,0.315051168203354,-0.929179012775421,-0.318238615989685,0.359723180532455,-0.877110958099365,-0.369677037000656,0.403001040220261,-0.837215065956116,-0.278322279453278,0.359449118375778,-0.890692472457886,0.923079550266266,-0.0413603037595749,0.382378697395325,0.94849020242691,-0.00788725540041924,0.316708475351334,0.749828279018402,0.0650852397084236,0.658423483371735,0.609298944473267,0.143628299236298,0.779824316501617,0.925650656223297,-0.0260516721755266,0.377481341362,0.920013666152954,-0.0163077022880316,0.391546845436096,0.601753056049347,0.114582799375057,0.790420234203339,0.46272885799408,0.0978142246603966,0.881087064743042,-0.460902363061905,0.502388179302216,-0.731556713581085,-0.334335476160049,0.425381600856781,-0.840993642807007,-0.268562972545624,0.372385114431381,-0.888371169567108,-0.357225835323334,0.422031134366989,-0.833234310150146,-0.0594836175441742,0.274424105882645,-0.95976722240448,-0.189306646585464,0.274955987930298,-0.942635774612427,-0.256797909736633,0.302052795886993,-0.918051719665527,-0.113447107374668,0.280027657747269,-0.953265130519867,0.927331149578094,-0.0501649342477322,0.370864421129227,0.926989316940308,-0.0370870977640152,0.373249769210815,0.462574332952499,0.0970589742064476,0.881251752376556,0.309291958808899,0.00522784609347582,0.950952768325806,0.925236344337463,-0.0613707825541496,0.374394804239273,0.927796065807343,-0.0558852963149548,0.368878453969955,0.309553056955338,0.0073827700689435,0.950853586196899,0.193053364753723,-0.154502019286156,0.968947649002075,-0.322092056274414,0.350815951824188,-0.879309296607971,-0.195434972643852,0.310833036899567,-0.930154860019684,-0.111791029572487,0.28662782907486,-0.951497375965118, +-0.255168318748474,0.309328824281693,-0.916081249713898,0.00262725865468383,0.273791372776031,-0.961785495281219,-0.0870122238993645,0.246477037668228,-0.965234756469727,-0.130806118249893,0.257462829351425,-0.957393705844879,-0.0232856925576925,0.270951598882675,-0.962311327457428,0.922836899757385,-0.0673554316163063,0.379256218671799,0.92521208524704,-0.0609366074204445,0.374525725841522,0.193079859018326,-0.153078585863113,0.969168365001678,0.148304045200348,-0.384619861841202,0.91108363866806,0.924766361713409,-0.0911654457449913,0.369453758001328,0.923181354999542,-0.0785947367548943,0.376243323087692,0.148385629057884,-0.385245680809021,0.910805940628052,0.219208598136902,-0.612776398658752,0.759244799613953,-0.189351499080658,0.273929923772812,-0.942925453186035,-0.05960588529706,0.271557688713074,-0.960574567317963,-0.0236138235777617,0.273008674383163,-0.96172171831131,-0.130827248096466,0.257608979940414,-0.957351505756378,-0.0486603230237961,0.227898940443993,-0.972468137741089,0.0188989099115133,0.271018207073212,-0.962388694286346,0.0225375518202782,0.269019365310669,-0.962871074676514,-0.0214202310889959,0.225923582911491,-0.973909497261047,0.92700070142746,-0.121186695992947,0.354941815137863,0.924652099609375,-0.10609782487154,0.365734755992889,0.223924830555916,-0.625821113586426,0.747131586074829,0.381323605775833,-0.725304424762726,0.573171734809875,0.927531838417053,-0.158306151628494,0.338561743497849,0.926177084445953,-0.138459354639053,0.350749164819717,0.387086927890778,-0.732902407646179,0.559479951858521,0.559791624546051,-0.698397696018219,0.445952951908112,-0.0845360085368156,0.23960642516613,-0.967182695865631,0.00295898877084255,0.272910565137863,-0.96203488111496,0.016267454251647,0.275184899568558,-0.961253702640533,-0.0513387881219387,0.232213258743286,-0.971309185028076,0.0226625595241785,0.26030045747757,-0.96526163816452,-0.000108792752143927,0.22549669444561,-0.974243938922882,-0.0190082192420959,0.223443865776062,-0.974531471729279,0.0247061792761087,0.266777694225311,-0.963441371917725, +0.924631595611572,-0.179648622870445,0.335831493139267,0.926977455615997,-0.16502557694912,0.336866766214371,0.564353346824646,-0.701196491718292,0.435693383216858,0.711245894432068,-0.586225628852844,0.387903064489365,0.95127260684967,-0.123840719461441,0.282389849424362,0.927069127559662,-0.138779640197754,0.348257213830948,0.737413346767426,-0.590579330921173,0.327776849269867,0.832192242145538,-0.439859867095947,0.337608367204666,0.00314453500322998,0.223339542746544,-0.974735677242279,0.0239400696009398,0.259431540966034,-0.96546483039856,0.0202434863895178,0.244714096188545,-0.969383955001831,0.00169812154490501,0.196949064731598,-0.980412244796753,0.0179395452141762,0.220561996102333,-0.975207984447479,0.00588667858392,0.162252455949783,-0.986731708049774,0.0044725276529789,0.195756033062935,-0.980642437934875,0.0214913114905357,0.244173586368561,-0.969493389129639,0.971464991569519,-0.0705864131450653,0.226436659693718,0.952434539794922,-0.0884511768817902,0.291624844074249,0.864292323589325,-0.436514854431152,0.249907061457634,0.921487987041473,-0.276672780513763,0.272602468729019,0.993250846862793,-0.0111671080812812,0.115447342395782,0.971410095691681,-0.0440196804702282,0.233291015028954,0.946806907653809,-0.26748514175415,0.178909569978714,0.974920213222504,-0.090673565864563,0.203246355056763,0.0077337883412838,0.161798775196075,-0.986793458461761,0.0190755948424339,0.220289304852486,-0.975248038768768,0.0183366928249598,0.196030110120773,-0.980426430702209,0.0163102447986603,0.131597056984901,-0.991169214248657,0.0224252007901669,0.180463239550591,-0.983326077461243,0.0282812137156725,0.111918978393078,-0.993314862251282,0.0162241365760565,0.131602749228477,-0.99116986989975,0.0213343482464552,0.195855498313904,-0.980400741100311,0.996883034706116,0.0547767579555511,-0.0567781440913677,0.992578089237213,0.0113170202821493,0.121081985533237,0.996759355068207,-0.0701594054698944,0.0393504239618778,0.993674874305725,0.0919576659798622,0.0644532591104507,0.968815922737122,0.11217138171196,-0.220937266945839, +0.995513498783112,0.0793773531913757,-0.0514987744390965,0.983350813388824,0.11358705163002,-0.141842111945152,0.957908451557159,0.253381997346878,-0.134941235184669,0.0271170362830162,0.174104422330856,-0.98435378074646,0.0430691353976727,0.106797017157078,-0.993347644805908,0.0309944022446871,0.112177297472954,-0.993204712867737,0.025065366178751,0.180725589394569,-0.983214199542999,0.0311762597411871,0.201183661818504,-0.979057312011719,0.0554371029138565,0.151611015200615,-0.986884415149689,0.0564020574092865,0.121896013617516,-0.990939140319824,0.034705638885498,0.18285283446312,-0.982527613639832,0.911121428012848,0.156995117664337,-0.381064653396606,0.967805325984955,0.125266641378403,-0.218314796686172,0.9080411195755,0.259597688913345,-0.328740566968918,0.863840401172638,0.38884562253952,-0.320279479026794,0.823545217514038,0.173158243298531,-0.540175497531891,0.911509335041046,0.150877177715302,-0.382605344057083,0.764910876750946,0.368650257587433,-0.528212487697601,0.670158982276917,0.479063540697098,-0.566908299922943,0.0458100028336048,0.107465878129005,-0.993152797222137,0.0298885367810726,0.174786031246185,-0.984152793884277,0.0291411653161049,0.180606603622437,-0.98312371969223,0.052400428801775,0.120283782482147,-0.991355657577515,0.0573138557374477,0.223089724779129,-0.973111569881439,0.130970075726509,0.174005851149559,-0.975996315479279,0.0917904898524284,0.176166236400604,-0.980071425437927,0.0457627512514591,0.225916713476181,-0.973071217536926,0.809987366199493,0.181828454136848,-0.557547330856323,0.822501122951508,0.208115756511688,-0.529320299625397,0.629089891910553,0.460879921913147,-0.625967860221863,0.497057408094406,0.548362195491791,-0.67248260974884,0.822120904922485,0.166622310876846,-0.544384360313416,0.810145795345306,0.176724180579185,-0.558956503868103,0.506206631660461,0.556200265884399,-0.659087359905243,0.368509501218796,0.562506079673767,-0.74012678861618,0.0645691156387329,0.157051146030426,-0.985477447509766,0.0407183207571507,0.207032963633537,-0.977486312389374,0.0421297289431095,0.222302451729774,-0.974067091941833, +0.0833011940121651,0.167997494339943,-0.982261657714844,0.167897835373878,0.172282129526138,-0.970633387565613,0.078585222363472,0.208987951278687,-0.974755644798279,0.10822556912899,0.199959486722946,-0.973808825016022,0.208172649145126,0.174329921603203,-0.962430894374847,0.833113312721252,0.168128743767738,-0.526929795742035,0.822088778018951,0.16787326335907,-0.544048368930817,0.377166330814362,0.576919734477997,-0.724506199359894,0.299560159444809,0.527966439723969,-0.794679284095764,0.843770563602448,0.165175095200539,-0.510654985904694,0.832918167114258,0.178029745817184,-0.523977816104889,0.300363659858704,0.530326068401337,-0.792802691459656,0.259284675121307,0.431953430175781,-0.863821566104889,0.131657958030701,0.175116673111916,-0.975705027580261,0.0555974133312702,0.220339581370354,-0.973837494850159,0.0781608521938324,0.207924574613571,-0.975017070770264,0.16810105741024,0.172797024250031,-0.97050678730011,0.282729834318161,0.174561992287636,-0.943181931972504,0.208053514361382,0.173798754811287,-0.962552785873413,0.108176209032536,0.199736416339874,-0.973859965801239,0.146862059831619,0.192499294877052,-0.970245122909546,0.867184638977051,0.145230755209923,-0.476339191198349,0.843736231327057,0.162897691130638,-0.511442601680756,0.260791033506393,0.440871924161911,-0.858848094940186,0.291891306638718,0.327692270278931,-0.898563981056213,0.916220784187317,0.0401490032672882,-0.398657113313675,0.897530853748322,0.036599513143301,-0.439430117607117,0.522881031036377,-0.031680516898632,-0.851816773414612,0.613607704639435,-0.0367009304463863,-0.788757622241974,0.472965359687805,0.263268947601318,-0.840828835964203,0.318493127822876,0.194407880306244,-0.927775681018829,0.386084020137787,0.255550712347031,-0.886359453201294,0.516121029853821,0.329110085964203,-0.790762722492218,0.541824281215668,0.443515300750732,-0.713947296142578,0.639139354228973,0.58259105682373,-0.502084195613861,0.615992724895477,0.48810938000679,-0.618306040763855,0.499124228954315,0.373230278491974,-0.782032072544098,0.926085472106934,0.0289852079004049,-0.37619885802269, +0.915903389453888,0.0383262112736702,-0.399564981460571,0.612403035163879,-0.0286647509783506,-0.790025889873505,0.703303158283234,-0.0450422801077366,-0.709461748600006,0.958846747875214,0.0258727930486202,-0.282743155956268,0.931630253791809,0.0667955949902534,-0.357216149568558,0.708914041519165,-0.0727185159921646,-0.701536178588867,0.852540612220764,-0.00203850772231817,-0.522657036781311,0.543272137641907,0.374316155910492,-0.751493692398071,0.437033951282501,0.310268431901932,-0.844236254692078,0.504349172115326,0.367532074451447,-0.781378388404846,0.631269454956055,0.468513488769531,-0.618056654930115,0.948704898357391,0.00826354790478945,-0.316054910421371,0.981846332550049,0.033954594284296,-0.186614155769348,0.963218450546265,0.0712157711386681,-0.259110957384109,0.86464136838913,-0.0677135661244392,-0.497805446386337,0.890371918678284,0.175318226218224,-0.42012095451355,0.867913782596588,0.16612945497036,-0.468109667301178,0.291531533002853,0.318226605653763,-0.902076065540314,0.383727192878723,0.230887860059738,-0.894116461277008,0.0714816376566887,0.913036465644836,-0.401565432548523,-0.0377243123948574,0.90961492061615,-0.413736045360565,-0.0401275493204594,0.916836977005005,-0.397240102291107,0.0638113617897034,0.920013844966888,-0.38665571808815,0.775990664958954,0.62724632024765,-0.0663366168737411,0.675717651844025,0.71088045835495,-0.195076569914818,0.700146198272705,0.690130114555359,-0.183072939515114,0.793937265872955,0.605462491512299,-0.0554882325232029,0.105722777545452,-0.957554459571838,0.268164545297623,0.173558235168457,-0.948120653629303,0.266354590654373,0.106360860168934,-0.957197904586792,0.269183218479156,0.0266951117664576,-0.962180733680725,0.27110081911087,0.388945907354355,0.154347389936447,-0.90823894739151,0.281469166278839,0.159607350826263,-0.946203231811523,0.146947249770164,0.193859070539474,-0.969961524009705,0.217727273702621,0.17548406124115,-0.96010422706604,0.658931136131287,-0.623761117458344,-0.42039480805397,0.599949061870575,-0.679827749729156,-0.421776354312897, +0.641074538230896,-0.69877165555954,-0.31739816069603,0.704097330570221,-0.643191754817963,-0.300917476415634 + } + TangentsW: *11977 { + 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 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "DiffuseUV" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *23954 { + a: 0.987205386161804,0.326529949903488,0.958945214748383,0.308513671159744,0.98834228515625,0.32353675365448,0.958945214748383,0.308513671159744,0.942295432090759,0.333572626113892,0.939535856246948,0.331443816423416,0.958945214748383,0.308513671159744,0.93605375289917,0.325919896364212,0.934687256813049,0.32258740067482,0.969664812088013,0.340228140354156,0.958945214748383,0.308513671159744,0.974914789199829,0.338147073984146,0.932249903678894,0.306879699230194,0.933202683925629,0.302246570587158,0.958945214748383,0.308513671159744,0.462792038917542,0.247375011444092,0.462264001369476,0.254667997360229,0.455271005630493,0.253883004188538,0.456225991249084,0.246564000844955,0.477317988872528,0.246667996048927,0.478062033653259,0.253755003213882,0.470162987709045,0.254211038351059,0.470054984092712,0.24702200293541,0.494451999664307,0.250153988599777,0.486257016658783,0.251954048871994,0.484845995903015,0.245103001594543,0.491398483514786,0.242804601788521,0.501734972000122,0.247402012348175,0.494451999664307,0.250153988599777,0.491398483514786,0.242804601788521,0.497912466526031,0.240251570940018,0.518692910671234,0.23992595076561,0.509017944335938,0.244648933410645,0.504427433013916,0.237697571516037,0.512776255607605,0.232542186975479,0.962279200553894,0.340524882078171,0.953357696533203,0.338901519775391,0.958945214748383,0.308513671159744,0.52812922000885,0.224079579114914,0.541244983673096,0.228671997785568,0.537654995918274,0.218774020671844,0.526198744773865,0.2169049680233,0.487617999315262,0.917948007583618,0.476404994726181,0.916370987892151,0.475810468196869,0.925846993923187,0.484995007514954,0.926473021507263,0.508409976959229,0.922408044338226,0.498829990625381,0.919524013996124,0.495117008686066,0.927724957466125,0.503650009632111,0.93018501996994,0.525695025920868,0.929835021495819,0.517988979816437,0.925292015075684,0.512184023857117,0.932644009590149,0.519091010093689,0.936658978462219,0.538412094116211,0.939016044139862,0.533399879932404,0.93437784910202,0.525998950004578,0.940673887729645, +0.530480980873108,0.94480299949646,0.547267854213715,0.949870824813843,0.543422996997833,0.943652987480164,0.534962058067322,0.94893205165863,0.538505971431732,0.954728007316589,0.55458801984787,0.970911979675293,0.55285108089447,0.963500022888184,0.543892979621887,0.967753052711487,0.545735895633698,0.974981904029846,0.428858041763306,0.803085088729858,0.422147005796432,0.803071975708008,0.424187064170837,0.795623123645782,0.430916965007782,0.795754909515381,0.958945214748383,0.308513671159744,0.93331778049469,0.319255739450455,0.932814121246338,0.316042840480804,0.946812033653259,0.27989536523819,0.950121641159058,0.278326988220215,0.958945214748383,0.308513671159744,0.44666600227356,0.806183993816376,0.435568004846573,0.803097009658813,0.437647014856339,0.795888006687164,0.449523001909256,0.799395978450775,0.4669309258461,0.815002918243408,0.45776504278183,0.809272050857544,0.461397975683212,0.802904009819031,0.471447944641113,0.809551954269409,0.491469234228134,0.841416239738464,0.484454065561295,0.831747114658356,0.491209983825684,0.827916026115417,0.50029069185257,0.838872313499451,0.650957107543945,0.156525030732155,0.664981007575989,0.154017999768257,0.654299020767212,0.147488996386528,0.640661001205444,0.150290012359619,0.958945214748383,0.308513671159744,0.932308077812195,0.312830179929733,0.932280242443085,0.309854984283447,0.958945214748383,0.308513671159744,0.953429400920868,0.276756227016449,0.957139730453491,0.275966286659241,0.614588975906372,0.156151995062828,0.622748017311096,0.162363976240158,0.636853039264679,0.159445002675056,0.627624988555908,0.153221011161804,0.59422504901886,0.16040301322937,0.600718021392822,0.167142003774643,0.611733019351959,0.164752975106239,0.604407131671906,0.158278033137321,0.585457980632782,0.170779004693031,0.593088030815125,0.168960005044937,0.587234854698181,0.161921963095665,0.580245971679688,0.163441002368927,0.557708024978638,0.167338997125626,0.561607003211975,0.175750985741615,0.573532998561859,0.173264995217323,0.568976998329163,0.165389999747276,0.537800014019012, +0.168120801448822,0.540287017822266,0.178265988826752,0.55094701051712,0.177009001374245,0.547753930091858,0.168069005012512,0.476910918951035,0.903189897537231,0.464502930641174,0.903089880943298,0.466200917959213,0.916217803955078,0.476404994726181,0.916370987892151,0.979653477668762,0.335122406482697,0.958945214748383,0.308513671159744,0.983426809310913,0.330823957920074,0.958945214748383,0.308513671159744,0.937372505664825,0.290216207504272,0.939287424087524,0.28758180141449,0.941199898719788,0.284946262836456,0.944007039070129,0.282421767711639,0.958945214748383,0.308513671159744,0.958945214748383,0.308513671159744,0.989827275276184,0.294374853372574,0.990837097167969,0.297960251569748,0.958945214748383,0.308513671159744,0.987594723701477,0.289587408304214,0.988710522651672,0.291981399059296,0.958945214748383,0.308513671159744,0.982323169708252,0.28286999464035,0.984957575798035,0.286229699850082,0.958945214748383,0.308513671159744,0.991849541664124,0.301544964313507,0.991847157478333,0.306328058242798,0.989481091499329,0.32054415345192,0.958945214748383,0.308513671159744,0.990663051605225,0.315827190876007,0.982323169708252,0.28286999464035,0.958945214748383,0.308513671159744,0.979305386543274,0.280641734600067,0.666156113147736,0.199589997529984,0.683152079582214,0.195439025759697,0.655004024505615,0.174863025546074,0.640425980091095,0.177600979804993,0.718404948711395,0.188898995518684,0.700708031654358,0.191886022686958,0.713954865932465,0.202014982700348,0.733123183250427,0.199842065572739,0.650138020515442,0.204368993639946,0.666156113147736,0.199589997529984,0.640425980091095,0.177600979804993,0.627358973026276,0.181050986051559,0.745555996894836,0.209741994738579,0.725744128227234,0.211363047361374,0.736557960510254,0.219146966934204,0.755701124668121,0.21739199757576,0.683152079582214,0.195439025759697,0.666156113147736,0.199589997529984,0.680154085159302,0.209366023540497,0.696359932422638,0.205184981226921,0.705782055854797,0.225902035832405,0.729286968708038,0.241926997900009,0.743758857250214,0.238563999533653, +0.72008204460144,0.221919000148773,0.708722114562988,0.214132040739059,0.693824112415314,0.218162029981613,0.705782055854797,0.225902035832405,0.72008204460144,0.221919000148773,0.613956093788147,0.210284024477005,0.633455991744995,0.211217001080513,0.614292025566101,0.184501007199287,0.601944029331207,0.186067014932632,0.680154085159302,0.209366023540497,0.666156113147736,0.199589997529984,0.650138020515442,0.204368993639946,0.665151119232178,0.21457202732563,0.680386066436768,0.223562002182007,0.669553935527802,0.23089599609375,0.68292498588562,0.238364994525909,0.693166017532349,0.231291994452477,0.68292498588562,0.238364994525909,0.706736028194427,0.252620011568069,0.716818988323212,0.246556997299194,0.693166017532349,0.231291994452477,0.792692899703979,0.244441956281662,0.777350008487701,0.247710004448891,0.8058140873909,0.25620499253273,0.80608606338501,0.251632004976273,0.780579209327698,0.268187642097473,0.799286842346191,0.268679529428482,0.777350008487701,0.247710004448891,0.756885051727295,0.248537003993988,0.706736028194427,0.252620011568069,0.68292498588562,0.238364994525909,0.675747990608215,0.247396022081375,0.699417948722839,0.26028299331665,0.739470839500427,0.275651395320892,0.718622982501984,0.260405004024506,0.710744976997375,0.267123013734818,0.73037713766098,0.280717730522156,0.818339824676514,0.286892950534821,0.833792924880981,0.302718997001648,0.854375898838043,0.306699901819229,0.838329970836639,0.289550989866257,0.782972812652588,0.28507199883461,0.797487020492554,0.298797011375427,0.814671993255615,0.30000901222229,0.799717009067535,0.285304009914398,0.849000930786133,0.31954100728035,0.863541185855865,0.337092071771622,0.884895026683807,0.343131989240646,0.870013952255249,0.324571967124939,0.811922132968903,0.313626050949097,0.82582700252533,0.32920503616333,0.843689978122711,0.33236899971962,0.829477906227112,0.315814942121506,0.876990020275116,0.355100989341736,0.889160871505737,0.373210936784744,0.910988092422485,0.38159105181694,0.898669123649597,0.362346053123474,0.838752090930939, +0.345178991556168,0.850604057312012,0.361371070146561,0.868884027004242,0.366432011127472,0.856866002082825,0.349319040775299,0.899866998195648,0.391065001487732,0.909204006195068,0.408610939979553,0.930532217025757,0.418354988098145,0.921501994132996,0.400243014097214,0.930532217025757,0.418354988098145,0.909204006195068,0.408610939979553,0.917267024517059,0.425794988870621,0.938396751880646,0.435977876186371,0.86129093170166,0.377604961395264,0.870806932449341,0.393777936697006,0.889093995094299,0.400356948375702,0.879621207714081,0.383474051952362,0.945116996765137,0.453285992145538,0.924144983291626,0.442734003067017,0.929925084114075,0.459544986486435,0.950711011886597,0.470450013875961,0.879145920276642,0.409786999225616,0.886377036571503,0.425695985555649,0.90438312292099,0.433459043502808,0.89731901884079,0.416992008686066,0.955096006393433,0.48742800951004,0.934599101543427,0.476232051849365,0.938154101371765,0.492801070213318,0.958187103271484,0.504174113273621,0.892567098140717,0.441573083400726,0.897756218910217,0.457413077354431,0.915315985679626,0.466140061616898,0.910372018814087,0.449837952852249,0.960290014743805,0.520960986614227,0.940731048583984,0.509362995624542,0.942471981048584,0.526031017303467,0.961710870265961,0.538057923316956,0.901983022689819,0.473213016986847,0.905264019966125,0.488976925611496,0.922213971614838,0.498582929372787,0.919246017932892,0.482376009225845,0.962199985980988,0.555469989776611,0.943222880363464,0.542814970016479,0.942830979824066,0.559723973274231,0.961509883403778,0.573198974132538,0.907615959644318,0.504714012145996,0.908967852592468,0.52039498090744,0.925327003002167,0.531008958816528,0.924275994300842,0.514796018600464,0.959558010101318,0.590735971927643,0.941311061382294,0.576426029205322,0.93868100643158,0.592588007450104,0.956260919570923,0.607572019100189,0.90925008058548,0.53599214553833,0.908576846122742,0.551422953605652,0.924171149730682,0.563226103782654,0.925262868404388,0.547213912010193,0.951969027519226,0.623525023460388,0.935082972049713,0.608123004436493, +0.930662989616394,0.622946977615356,0.947032928466797,0.638414978981018,0.907058954238892,0.566604018211365,0.904647886753082,0.581424951553345,0.919170022010803,0.594022989273071,0.922136008739471,0.578858017921448,0.919170022010803,0.594022989273071,0.904647886753082,0.581424951553345,0.901292979717255,0.59577602148056,0.915282011032104,0.608636021614075,0.919401943683624,0.651315927505493,0.91253000497818,0.665102005004883,0.926918029785156,0.680264055728912,0.934542000293732,0.666604995727539,0.910574853420258,0.622847020626068,0.897112965583801,0.609780967235565,0.892228007316589,0.623564004898071,0.905151009559631,0.636806011199951,0.907058954238892,0.566604018211365,0.908576846122742,0.551422953605652,0.894969999790192,0.541304886341095,0.893881976604462,0.556052088737488,0.891937017440796,0.570533871650696,0.881047070026398,0.561316013336182,0.878652989864349,0.575232982635498,0.88909900188446,0.584660887718201,0.904772996902466,0.67865401506424,0.896005988121033,0.692122936248779,0.909003913402557,0.70678585767746,0.918506979942322,0.69357693195343,0.898926019668579,0.650562882423401,0.886572003364563,0.637187004089355,0.880078017711639,0.650712013244629,0.891816973686218,0.664168953895569,0.885450899600983,0.598491013050079,0.875483870506287,0.58890289068222,0.8715740442276,0.602280974388123,0.881071925163269,0.612082004547119,0.886105120182037,0.705655992031097,0.875140011310577,0.71875411272049,0.886088013648987,0.732926964759827,0.89809912443161,0.720131099224091,0.883770108222961,0.677738130092621,0.872696042060852,0.664249062538147,0.864377975463867,0.677909016609192,0.874732971191406,0.691380023956299,0.875929951667786,0.625513970851898,0.866910994052887,0.615464985370636,0.8614821434021,0.628551006317139,0.869991064071655,0.638870000839233,0.863179802894592,0.730915904045105,0.850422024726868,0.743056118488312,0.859609007835388,0.756128013134003,0.873267948627472,0.744490027427673,0.864715874195099,0.704779028892517,0.855153977870941,0.691522061824799,0.845055997371674,0.704913020133972,0.853729009628296, +0.717616021633148,0.863183975219727,0.652272999286652,0.855168104171753,0.641739130020142,0.847849011421204,0.65522700548172,0.855436265468597,0.665848135948181,0.867111921310425,0.580940008163452,0.85984194278717,0.574010968208313,0.856455028057098,0.586687982082367,0.863627016544342,0.594084024429321,0.859423160552979,0.606960117816925,0.853068232536316,0.599366128444672,0.848211109638214,0.611489117145538,0.854471981525421,0.619663000106812,0.867111921310425,0.580940008163452,0.875483870506287,0.58890289068222,0.878652989864349,0.575232982635498,0.869906008243561,0.567433953285217,0.848580002784729,0.632574021816254,0.843353986740112,0.623612999916077,0.835909903049469,0.637655973434448,0.841556131839752,0.646073997020721,0.882631003856659,0.547196984291077,0.883381903171539,0.532896995544434,0.873844981193542,0.526225984096527,0.873333036899567,0.540035128593445,0.90925008058548,0.53599214553833,0.908967852592468,0.52039498090744,0.894600868225098,0.511314868927002,0.895236015319824,0.526380002498627,0.883274853229523,0.51843798160553,0.882312119007111,0.503850102424622,0.872184932231903,0.498078972101212,0.873423039913177,0.512224018573761,0.907615959644318,0.504714012145996,0.905264019966125,0.488976925611496,0.890405893325806,0.480901956558228,0.892983973026276,0.496143966913223,0.88049191236496,0.489161998033524,0.877767145633698,0.474411070346832,0.867474138736725,0.469560027122498,0.870248019695282,0.483844101428986,0.901983022689819,0.473213016986847,0.897756218910217,0.457413077354431,0.88242506980896,0.450317025184631,0.886884927749634,0.465621948242188,0.874086856842041,0.459632933139801,0.869458913803101,0.444840967655182,0.858995974063873,0.44097501039505,0.863722026348114,0.455271005630493,0.892567098140717,0.441573083400726,0.886377036571503,0.425695985555649,0.870673000812531,0.419681012630463,0.877027094364166,0.434996008872986,0.863891005516052,0.430049061775208,0.857419013977051,0.41531902551651,0.846764981746674,0.412517011165619,0.853299021720886,0.426674008369446,0.879145920276642,0.409786999225616, +0.870806932449341,0.393777936697006,0.854947924613953,0.389055967330933,0.863342046737671,0.404393017292023,0.850078999996185,0.400713980197906,0.841705024242401,0.386092990636826,0.831262826919556,0.384786933660507,0.839529991149902,0.398651003837585,0.86129093170166,0.377604961395264,0.850604057312012,0.361371070146561,0.834767997264862,0.35814905166626,0.845404028892517,0.373594999313354,0.832127869129181,0.3713139295578,0.821521997451782,0.356599986553192,0.811012029647827,0.356557011604309,0.821632027626038,0.370633989572525,0.838752090930939,0.345178991556168,0.82582700252533,0.32920503616333,0.810437977313995,0.327840000391006,0.823102116584778,0.342858016490936,0.810060977935791,0.342170059680939,0.797675967216492,0.328067988157272,0.787696003913879,0.329685986042023,0.799776017665863,0.342923998832703,0.811922132968903,0.313626050949097,0.797487020492554,0.298797011375427,0.782707989215851,0.299309968948364,0.796810030937195,0.313208997249603,0.784297943115234,0.314339995384216,0.770452797412872,0.301307946443558,0.760838985443115,0.304554998874664,0.774542152881622,0.316794067621231,0.782972812652588,0.28507199883461,0.764561533927917,0.269233167171478,0.750861525535583,0.271772146224976,0.768620848655701,0.286482930183411,0.760838985443115,0.304554998874664,0.770452797412872,0.301307946443558,0.756665885448456,0.289297014474869,0.747113943099976,0.293274998664856,0.764561533927917,0.269233167171478,0.741931021213531,0.25118100643158,0.729098081588745,0.255113989114761,0.750861525535583,0.271772146224976,0.710744976997375,0.267123013734818,0.718622982501984,0.260405004024506,0.706736028194427,0.252620011568069,0.699417948722839,0.26028299331665,0.662476003170013,0.240725994110107,0.669553935527802,0.23089599609375,0.653496980667114,0.222157999873161,0.647337138652802,0.23347806930542,0.631656050682068,0.227355048060417,0.633455991744995,0.211217001080513,0.613956093788147,0.210284024477005,0.616760015487671,0.224061012268066,0.584446012973785,0.209253996610641,0.598687887191772,0.209730952978134,0.58959698677063, +0.187631994485855,0.577414989471436,0.188930988311768,0.602262020111084,0.22223499417305,0.598687887191772,0.209730952978134,0.584446012973785,0.209253996610641,0.587778031826019,0.22051802277565,0.558942019939423,0.20898999273777,0.571205019950867,0.208968997001648,0.565234124660492,0.190229013562202,0.553725004196167,0.191165000200272,0.574028015136719,0.219215005636215,0.571205019950867,0.208968997001648,0.558942019939423,0.20898999273777,0.561735868453979,0.218630969524384,0.53437602519989,0.209299981594086,0.546912908554077,0.209154963493347,0.542217135429382,0.192100048065186,0.5293790102005,0.192465007305145,0.549933016300201,0.218555018305779,0.546912908554077,0.209154963493347,0.53437602519989,0.209299981594086,0.537654995918274,0.218774020671844,0.474799007177353,0.888082921504974,0.46138796210289,0.888859927654266,0.464502930641174,0.903089880943298,0.476910918951035,0.903189897537231,0.500948905944824,0.904640793800354,0.5017991065979,0.886857032775879,0.488193988800049,0.887439906597137,0.488929986953735,0.903916001319885,0.46138796210289,0.888859927654266,0.474799007177353,0.888082921504974,0.472831010818481,0.880021989345551,0.459138065576553,0.881097137928009,0.524829983711243,0.907918930053711,0.530867993831635,0.885747134685516,0.515838027000427,0.886258900165558,0.51288902759552,0.906279981136322,0.488193988800049,0.887439906597137,0.5017991065979,0.886857032775879,0.500771045684814,0.877475023269653,0.486699104309082,0.878862202167511,0.568441987037659,0.885397136211395,0.547447025775909,0.885420024394989,0.53634911775589,0.911174058914185,0.547867894172668,0.914427876472473,0.515838027000427,0.886258900165558,0.530867993831635,0.885747134685516,0.530173003673553,0.873739004135132,0.51507306098938,0.875721096992493,0.582705020904541,0.896932005882263,0.568441987037659,0.885397136211395,0.547867894172668,0.914427876472473,0.553385078907013,0.921999037265778,0.547447025775909,0.885420024394989,0.568441987037659,0.885397136211395,0.564121007919312,0.867978990077972,0.546635985374451,0.871672093868256, +0.601770997047424,0.927052855491638,0.598708093166351,0.917160093784332,0.562579989433289,0.93781304359436,0.566256999969482,0.946056008338928,0.600679993629456,0.947512984275818,0.602105855941772,0.937202751636505,0.567255973815918,0.955087065696716,0.568253993988037,0.964118003845215,0.589947998523712,0.874083995819092,0.606943011283875,0.86496102809906,0.598989009857178,0.853337943553925,0.582288980484009,0.861117005348206,0.608119010925293,0.896765947341919,0.621800065040588,0.887704193592072,0.614791989326477,0.876462876796722,0.599316895008087,0.885833740234375,0.489603012800217,0.809594988822937,0.507247984409332,0.779456973075867,0.522193133831024,0.790151178836823,0.501441061496735,0.822685122489929,0.618486046791077,0.939082980155945,0.633629679679871,0.931912899017334,0.633189976215363,0.920300960540771,0.618551969528198,0.928334832191467,0.617466986179352,0.917698085308075,0.63104784488678,0.909299850463867,0.627234995365143,0.898541986942291,0.614078998565674,0.90728098154068,0.633189976215363,0.920300960540771,0.633629679679871,0.931912899017334,0.646917939186096,0.925303936004639,0.644994974136353,0.913873970508575,0.656750977039337,0.907382011413574,0.659263432025909,0.918955445289612,0.674232125282288,0.910265147686005,0.671244025230408,0.899151027202606,0.627234995365143,0.898541986942291,0.63104784488678,0.909299850463867,0.642313063144684,0.902622103691101,0.638113975524902,0.891726016998291,0.649344921112061,0.885072827339172,0.653746008872986,0.896061062812805,0.667828977108002,0.888011991977692,0.663557887077332,0.876822829246521,0.632714867591858,0.880784869194031,0.643958926200867,0.874019920825958,0.637996912002563,0.862504899501801,0.626432001590729,0.869399011135101,0.619480013847351,0.857968986034393,0.631676018238068,0.851005077362061,0.625213027000427,0.839999854564667,0.612071990966797,0.846892952919006,0.647648990154266,0.841970026493073,0.663823008537292,0.832681000232697,0.659069061279297,0.821470141410828,0.642086029052734,0.830878973007202,0.637996912002563,0.862504899501801,0.643958926200867, +0.874019920825958,0.658630073070526,0.86542010307312,0.653244972229004,0.85364305973053,0.676624953746796,0.824957013130188,0.689100027084351,0.816851079463959,0.685486018657684,0.805670976638794,0.672538936138153,0.813711881637573,0.668738961219788,0.844529867172241,0.673538029193878,0.856565892696381,0.685492992401123,0.849039018154144,0.681042790412903,0.836880683898926,0.677937984466553,0.868338882923126,0.681989014148712,0.879739999771118,0.693652987480164,0.872507989406586,0.689674973487854,0.860988020896912,0.685737192630768,0.89065808057785,0.690922021865845,0.900575995445251,0.701264023780823,0.893925130367279,0.697493016719818,0.883378982543945,0.712360143661499,0.830426096916199,0.72836697101593,0.81868189573288,0.724242925643921,0.806470990180969,0.708203971385956,0.818220019340515,0.701587021350861,0.853004932403564,0.705596029758453,0.864640891551971,0.720595002174377,0.854461133480072,0.716494143009186,0.842624008655548,0.704294979572296,0.806414008140564,0.720407009124756,0.794780015945435,0.717094004154205,0.78397798538208,0.700899004936218,0.795416951179504,0.709475994110107,0.875594019889832,0.71160501241684,0.887274026870728,0.72868800163269,0.876351952552795,0.724651992321014,0.865584909915924,0.735634982585907,0.783080875873566,0.749980926513672,0.771359980106354,0.746686100959778,0.760812222957611,0.732387006282806,0.772385954856873,0.724242925643921,0.806470990180969,0.72836697101593,0.81868189573288,0.743614971637726,0.806952059268951,0.739454984664917,0.794712901115417,0.746686100959778,0.760812222957611,0.749980926513672,0.771359980106354,0.763447880744934,0.759661018848419,0.759901940822601,0.749427139759064,0.732542037963867,0.831045150756836,0.736741185188293,0.843146204948425,0.752129018306732,0.83187198638916,0.747877955436707,0.819467842578888,0.740938007831573,0.854571998119354,0.74576997756958,0.865430951118469,0.760305047035217,0.855430006980896,0.756250023841858,0.843775987625122,0.790853023529053,0.833955049514771,0.806867122650146,0.822481095790863,0.80147397518158,0.809252023696899, +0.786420106887817,0.821382105350494,0.753898978233337,0.78287798166275,0.758203983306885,0.795095980167389,0.77223801612854,0.782975018024445,0.767631053924561,0.770898938179016,0.772001028060913,0.738152027130127,0.776018857955933,0.747865855693817,0.787672102451324,0.735859990119934,0.7829509973526,0.726909041404724,0.781864106655121,0.808681011199951,0.796260058879852,0.796330988407135,0.79093199968338,0.783286988735199,0.777059137821198,0.795724093914032,0.821938991546631,0.809525012969971,0.837010979652405,0.796570062637329,0.830316007137299,0.782789051532745,0.815943002700806,0.796271085739136,0.780633985996246,0.758734881877899,0.785664975643158,0.770596027374268,0.798436939716339,0.757965981960297,0.792888998985291,0.746347010135651,0.793540000915527,0.71497106552124,0.798842966556549,0.723353981971741,0.809964120388031,0.710059106349945,0.804556131362915,0.701614022254944,0.809996902942657,0.783153891563416,0.823468029499054,0.769593000411987,0.816972076892853,0.757015109062195,0.804150998592377,0.770310997962952,0.853402018547058,0.782511949539185,0.869791865348816,0.768453896045685,0.859609007835388,0.756128013134003,0.845082104206085,0.769151031970978,0.837064027786255,0.756087005138397,0.850422024726868,0.743056118488312,0.841974020004272,0.730394065380096,0.829651117324829,0.743618071079254,0.846792995929718,0.679499983787537,0.839611887931824,0.668893873691559,0.830542922019958,0.682618021965027,0.837298989295959,0.693132996559143,0.804627120494843,0.733587265014648,0.81072598695755,0.745023012161255,0.822702169418335,0.731703102588654,0.816076040267944,0.720301985740662,0.833589911460876,0.659880876541138,0.828464865684509,0.65169894695282,0.819751024246216,0.665603041648865,0.824874997138977,0.673708915710449,0.0343220010399818,0.00568300019949675,0.0356049984693527,0.0194080043584108,0.0601900070905685,0.0186529997736216,0.0591939985752106,0.00600899988785386,0.88007378578186,0.0177289918065071,0.900996088981628,0.0189290009438992,0.903762996196747,0.0084610003978014,0.880880951881409,0.00940799899399281, +0.853583931922913,0.017536997795105,0.88007378578186,0.0177289918065071,0.880880951881409,0.00940799899399281,0.855166971683502,0.00952500011771917,0.783321976661682,0.00878500007092953,0.779312968254089,0.0170909985899925,0.80320405960083,0.0172189995646477,0.806387066841125,0.00921399984508753,0.741289019584656,0.00843000039458275,0.737541913986206,0.0169939994812012,0.758427977561951,0.017043000087142,0.762305974960327,0.00860800035297871,0.69962602853775,0.00811299961060286,0.697638988494873,0.0165699981153011,0.717589974403381,0.0167820006608963,0.720457017421722,0.00827199965715408,0.658167004585266,0.00712200021371245,0.658268928527832,0.0160259995609522,0.677954077720642,0.0162979997694492,0.678897023200989,0.00761799979954958,0.614078044891357,0.00668800109997392,0.613288998603821,0.0156560000032187,0.635779142379761,0.0158410035073757,0.63612300157547,0.0069050001911819,0.565388858318329,0.00684999907389283,0.565349876880646,0.0152149982750416,0.589318990707397,0.0154360020533204,0.589733004570007,0.0067689991556108,0.542025029659271,0.015437999740243,0.565349876880646,0.0152149982750416,0.565388858318329,0.00684999907389283,0.541369020938873,0.00674099987372756,0.498332917690277,0.015684999525547,0.518700003623962,0.0156609993427992,0.517349004745483,0.00663299998268485,0.496897995471954,0.00662600016221404,0.455659985542297,0.0156030021607876,0.477964997291565,0.01570999994874,0.476448059082031,0.00661800056695938,0.454540967941284,0.00667400006204844,0.411689013242722,0.0154149997979403,0.43335497379303,0.0154969999566674,0.432633996009827,0.00672899931669235,0.410891056060791,0.0068340003490448,0.364149928092957,0.0152469966560602,0.39002200961113,0.0153339998796582,0.389147013425827,0.00693899998441339,0.363488972187042,0.00670799985527992,0.314356029033661,0.0152399996295571,0.338277012109756,0.0151599999517202,0.337830007076263,0.00647700019180775,0.313807010650635,0.00642400048673153,0.262021005153656,0.015277000144124,0.290435016155243,0.0153209995478392,0.289784014225006,0.00636999914422631,0.260645985603333, +0.00693099945783615,0.207515001296997,0.0155149977654219,0.233606994152069,0.0152329979464412,0.23150897026062,0.0074919993057847,0.205457001924515,0.00729699991643429,0.155801996588707,0.0162010006606579,0.181423991918564,0.0157970003783703,0.179405003786087,0.00710100028663874,0.153781965374947,0.00719599891453981,0.107476986944675,0.0172519963234663,0.13018000125885,0.0166059993207455,0.128158003091812,0.00729099893942475,0.106111988425255,0.0068129999563098,0.00927700009196997,0.00562300020828843,0.0121689978986979,0.0204099956899881,0.0201621539890766,0.01976702734828,0.0217989981174469,0.00565299950540066,0.34960201382637,0.347158968448639,0.355302035808563,0.354985028505325,0.34470397233963,0.370528936386108,0.340968012809753,0.36430498957634,0.281284987926483,0.545005917549133,0.280499994754791,0.527462899684906,0.23498871922493,0.528504550457001,0.238275244832039,0.548607230186462,0.261994004249573,0.592705011367798,0.266557991504669,0.601144015789032,0.284278005361557,0.602760016918182,0.283681988716125,0.593430995941162,0.279667019844055,0.497521996498108,0.279619008302689,0.485123008489609,0.233413010835648,0.494899272918701,0.233660250902176,0.506549000740051,0.0543970018625259,0.116916000843048,0.0560460016131401,0.136752009391785,0.104230508208275,0.139798238873482,0.102755643427372,0.118796870112419,0.238275244832039,0.548607230186462,0.23498871922493,0.528504550457001,0.217832267284393,0.550975978374481,0.181845307350159,0.527827262878418,0.181962996721268,0.535569071769714,0.192076176404953,0.531404972076416,0.189451992511749,0.520060002803802,0.189273029565811,0.476176023483276,0.182184994220734,0.478803992271423,0.182348012924194,0.49734503030777,0.18945400416851,0.493795931339264,0.233413010835648,0.494899272918701,0.189520001411438,0.509221971035004,0.189451992511749,0.520060002803802,0.233660250902176,0.506549000740051,0.232636496424675,0.461707472801208,0.189273029565811,0.476176023483276,0.18945400416851,0.493795931339264,0.233080744743347,0.479259759187698,0.188653007149696,0.440822929143906, +0.181697964668274,0.44400292634964,0.181941002607346,0.461403995752335,0.188994988799095,0.458761006593704,0.232050985097885,0.444320976734161,0.231372743844986,0.426821023225784,0.188653007149696,0.440822929143906,0.188994988799095,0.458761006593704,0.230652987957001,0.408928722143173,0.22988224029541,0.391220510005951,0.187864974141121,0.401705950498581,0.188279002904892,0.421634018421173,0.187864974141121,0.401705950498581,0.181109964847565,0.403657972812653,0.181403994560242,0.423830986022949,0.188279002904892,0.421634018421173,0.228338986635208,0.356299221515656,0.187051028013229,0.360503047704697,0.187407001852989,0.381546974182129,0.229055002331734,0.374271512031555,0.187051028013229,0.360503047704697,0.180389001965523,0.36175400018692,0.180750012397766,0.382705986499786,0.187407001852989,0.381546974182129,0.227719008922577,0.313837498426437,0.187011003494263,0.315427958965302,0.186945006251335,0.337920010089874,0.227904513478279,0.335521042346954,0.187011003494263,0.315427958965302,0.180596977472305,0.314670950174332,0.180492967367172,0.338212937116623,0.186945006251335,0.337920010089874,0.228006035089493,0.272848546504974,0.187528982758522,0.274288952350616,0.187169969081879,0.294655978679657,0.22774975001812,0.293149530887604,0.187528982758522,0.274288952350616,0.181106984615326,0.274846971035004,0.180851966142654,0.294758975505829,0.187169969081879,0.294655978679657,0.229219749569893,0.232324749231339,0.189074993133545,0.232098013162613,0.18819697201252,0.253012001514435,0.228495270013809,0.252325266599655,0.189074993133545,0.232098013162613,0.182949006557465,0.230820000171661,0.182027995586395,0.252833992242813,0.18819697201252,0.253012001514435,0.231395751237869,0.195409744977951,0.191249996423721,0.194195002317429,0.190062999725342,0.212817013263702,0.230179727077484,0.213591977953911,0.191249996423721,0.194195002317429,0.18502601981163,0.193714022636414,0.183988004922867,0.212266996502876,0.190062999725342,0.212817013263702,0.23463374376297,0.158529758453369,0.194422006607056,0.156475991010666,0.192723006010056, +0.175260975956917,0.232887238264084,0.177060484886169,0.194422006607056,0.156475991010666,0.188289999961853,0.155083000659943,0.18665799498558,0.174398005008698,0.192723006010056,0.175260975956917,0.0517840012907982,0.590515971183777,0.0740080177783966,0.610307097434998,0.0784720033407211,0.604887008666992,0.0522700063884258,0.579236030578613,0.198815852403641,0.120532907545567,0.196287006139755,0.138300999999046,0.236614972352982,0.139801740646362,0.238393142819405,0.12119072675705,0.1014054864645,0.499670714139938,0.100517928600311,0.528115093708038,0.147695630788803,0.527009010314941,0.150140017271042,0.503476977348328,0.150140017271042,0.503476977348328,0.147695630788803,0.527009010314941,0.158642023801804,0.522616147994995,0.159032002091408,0.502224981784821,0.832390010356903,0.263554006814957,0.8058140873909,0.25620499253273,0.820916891098022,0.271835833787918,0.842015981674194,0.274354010820389,0.348441004753113,0.376753985881805,0.34470397233963,0.370528936386108,0.355302035808563,0.354985028505325,0.361001014709473,0.362809985876083,0.372170001268387,0.376677989959717,0.360050976276398,0.389032006263733,0.354246020317078,0.382892996072769,0.366586029529572,0.369744002819061,0.376293003559113,0.40509894490242,0.368171989917755,0.397065013647079,0.379611968994141,0.384519010782242,0.387055039405823,0.392360061407089,0.390496999025345,0.418449014425278,0.383394956588745,0.411773979663849,0.393660962581635,0.400184005498886,0.400267988443375,0.408008009195328,0.413989007472992,0.423781991004944,0.408217012882233,0.434603989124298,0.399356931447983,0.426525950431824,0.407128065824509,0.415894985198975,0.42772701382637,0.43570801615715,0.423020005226135,0.446438014507294,0.415618002414703,0.440520942211151,0.42085799574852,0.429744929075241,0.44322606921196,0.448550015687943,0.438454985618591,0.459599018096924,0.430737018585205,0.453019022941589,0.435476005077362,0.442128956317902,0.46083664894104,0.466500401496887,0.453064620494843,0.475086212158203,0.445976883172989,0.467098295688629,0.452052175998688,0.457264959812164, +0.499823987483978,0.442599982023239,0.514537990093231,0.450159996747971,0.509528994560242,0.464825004339218,0.494423985481262,0.453774988651276,0.480955958366394,0.497406989336014,0.467361986637115,0.501918971538544,0.464516490697861,0.493827283382416,0.476718842983246,0.487908959388733,0.482536554336548,0.518382847309113,0.467424988746643,0.520031988620758,0.46739399433136,0.510975003242493,0.481906116008759,0.507878124713898,0.480037033557892,0.540130853652954,0.463946014642715,0.541680991649628,0.46568500995636,0.530856013298035,0.48154404759407,0.529229998588562,0.47317698597908,0.567149996757507,0.458422005176544,0.564603984355927,0.461184024810791,0.553142011165619,0.476705014705658,0.553631007671356,0.468599021434784,0.583443999290466,0.452566981315613,0.5798180103302,0.455494940280914,0.572210907936096,0.470887988805771,0.575296998023987,0.494866490364075,0.630170285701752,0.480234742164612,0.622585654258728,0.487176597118378,0.609778702259064,0.497061312198639,0.617858469486237,0.441000044345856,0.599582076072693,0.447560012340546,0.589537978172302,0.461205273866653,0.596072375774384,0.454167723655701,0.609226822853088,0.430101990699768,0.61456298828125,0.436107993125916,0.606384992599487,0.449318528175354,0.61651337146759,0.443203955888748,0.624427616596222,0.421755015850067,0.624117016792297,0.430101990699768,0.61456298828125,0.443203955888748,0.624427616596222,0.43597087264061,0.633282899856567,0.410937070846558,0.660198092460632,0.397162050008774,0.649903118610382,0.406286001205444,0.640424013137817,0.419885009527206,0.651203989982605,0.389982044696808,0.656280994415283,0.397162050008774,0.649903118610382,0.410937070846558,0.660198092460632,0.402844965457916,0.66860294342041,0.377969980239868,0.666894972324371,0.382803022861481,0.662660002708435,0.394753009080887,0.677007079124451,0.386568963527679,0.684778988361359,0.100517928600311,0.528115093708038,0.0983220487833023,0.552909016609192,0.120416723191738,0.5649294257164,0.0740080177783966,0.610307097434998,0.0517840012907982,0.590515971183777,0.0513719990849495, +0.598466992378235,0.0703279972076416,0.61583399772644,0.69038450717926,0.0410689972341061,0.669098973274231,0.0410690009593964,0.663232088088989,0.0491140000522137,0.686543822288513,0.0491140000522137,0.764561533927917,0.269233167171478,0.780579209327698,0.268187642097473,0.756885051727295,0.248537003993988,0.741931021213531,0.25118100643158,0.0556057170033455,0.504808902740479,0.100517928600311,0.528115093708038,0.1014054864645,0.499670714139938,0.056377999484539,0.484452992677689,0.0569729916751385,0.46794193983078,0.102115496993065,0.480458796024323,0.103111736476421,0.460577756166458,0.0578670091927052,0.448848068714142,0.146071791648865,0.119640901684761,0.102755643427372,0.118796870112419,0.104230508208275,0.139798238873482,0.148993015289307,0.141314998269081,0.0587619990110397,0.429754018783569,0.104213759303093,0.440165281295776,0.105244010686874,0.419359028339386,0.0595870018005371,0.410902976989746,0.23498871922493,0.528504550457001,0.280499994754791,0.527462899684906,0.279934912919998,0.514835119247437,0.234081983566284,0.519941210746765,0.103111736476421,0.460577756166458,0.102115496993065,0.480458796024323,0.150707006454468,0.483339011669159,0.151589006185532,0.463778048753738,0.0604120008647442,0.392053008079529,0.106174498796463,0.39852374792099,0.106977000832558,0.378025501966476,0.0611159950494766,0.372475981712341,0.151589006185532,0.463778048753738,0.150707006454468,0.483339011669159,0.159422993659973,0.481833934783936,0.160441994667053,0.463162988424301,0.105244010686874,0.419359028339386,0.104213759303093,0.440165281295776,0.152541995048523,0.443533033132553,0.153323993086815,0.421341985464096,0.06182000041008,0.352898955345154,0.107668250799179,0.357983529567719,0.108264736831188,0.338517755270004,0.0621749982237816,0.333629995584488,0.153323993086815,0.421341985464096,0.152541995048523,0.443533033132553,0.161460995674133,0.444492995738983,0.161978006362915,0.420935034751892,0.106977000832558,0.378025501966476,0.106174498796463,0.39852374792099,0.153940007090569,0.398703068494797,0.1543969810009, +0.377115935087204,0.0625309944152832,0.314359962940216,0.108737252652645,0.319373548030853,0.109054751694202,0.300297737121582,0.0625210180878639,0.295095026493073,0.1543969810009,0.377115935087204,0.153940007090569,0.398703068494797,0.162495002150536,0.397377014160156,0.162716969847679,0.376163899898529,0.108264736831188,0.338517755270004,0.107668250799179,0.357983529567719,0.154742002487183,0.356654942035675,0.155020996928215,0.33739098906517,0.109125748276711,0.262103736400604,0.0622570067644119,0.256428003311157,0.0625120028853416,0.275829017162323,0.109192997217178,0.281228721141815,0.155020996928215,0.33739098906517,0.154742002487183,0.356654942035675,0.162939995527267,0.354950964450836,0.163037002086639,0.33644300699234,0.109054751694202,0.300297737121582,0.108737252652645,0.319373548030853,0.155272006988525,0.318881988525391,0.155532985925674,0.300684988498688,0.0611179918050766,0.216729998588562,0.0620020031929016,0.237028002738953,0.10887023806572,0.242713749408722,0.108442008495331,0.222848981618881,0.155532985925674,0.300684988498688,0.155272006988525,0.318881988525391,0.16313399374485,0.317934989929199,0.16338899731636,0.300212979316711,0.109125748276711,0.262103736400604,0.109192997217178,0.281228721141815,0.155698984861374,0.282671928405762,0.155664995312691,0.264714002609253,0.0602330006659031,0.196431994438171,0.107812486588955,0.20253124833107,0.106951996684074,0.181783258914948,0.0589639917016029,0.176510989665985,0.155664995312691,0.264714002609253,0.155698984861374,0.282671928405762,0.16364398598671,0.282489955425262,0.163559034466743,0.264934003353119,0.108442008495331,0.222848981618881,0.10887023806572,0.242713749408722,0.155361995100975,0.246243000030518,0.15472300350666,0.226690992712975,0.0576950088143349,0.156589031219482,0.105783216655254,0.160805463790894,0.104230508208275,0.139798238873482,0.0560460016131401,0.136752009391785,0.15472300350666,0.226690992712975,0.155361995100975,0.246243000030518,0.16347399353981,0.247376978397369,0.162478029727936,0.227212026715279,0.106951996684074,0.181783258914948, +0.107812486588955,0.20253124833107,0.15378500521183,0.206167995929718,0.152586027979851,0.184787034988403,0.283681988716125,0.593430995941162,0.283087015151978,0.584102094173431,0.256388008594513,0.585099995136261,0.261994004249573,0.592705011367798,0.152586027979851,0.184787034988403,0.15378500521183,0.206167995929718,0.161482006311417,0.207047998905182,0.15998999774456,0.185145005583763,0.104230508208275,0.139798238873482,0.105783216655254,0.160805463790894,0.151023000478745,0.163013994693756,0.148993015289307,0.141314998269081,0.148993015289307,0.141314998269081,0.151023000478745,0.163013994693756,0.158499002456665,0.163241997361183,0.156064972281456,0.141555964946747,0.189520001411438,0.509221971035004,0.182511985301971,0.51588499546051,0.181845307350159,0.527827262878418,0.189451992511749,0.520060002803802,0.573796987533569,0.387768059968948,0.576542019844055,0.376823961734772,0.592489004135132,0.378598988056183,0.590300023555756,0.390854001045227,0.568491995334625,0.407896995544434,0.571051955223083,0.398711979389191,0.588109970092773,0.40310999751091,0.585604012012482,0.413534045219421,0.565895855426788,0.442958950996399,0.548639059066772,0.432049989700317,0.557286024093628,0.424566000699997,0.574496984481812,0.433459013700485,0.553454875946045,0.449757933616638,0.538668990135193,0.437782049179077,0.543654024600983,0.434915989637375,0.559674978256226,0.446357995271683,0.522218108177185,0.452676087617874,0.516804993152618,0.438023000955582,0.527737021446228,0.437902003526688,0.537593007087708,0.452968716621399,0.48811000585556,0.463795006275177,0.499125957489014,0.47408401966095,0.488793760538101,0.48198664188385,0.479971051216125,0.471505045890808,0.492792010307312,0.437554985284805,0.499393045902252,0.425589025020599,0.503509998321533,0.429521948099136,0.499823987483978,0.442599982023239,0.496255993843079,0.421613991260529,0.499393045902252,0.425589025020599,0.492792010307312,0.437554985284805,0.487694025039673,0.431688070297241,0.489059597253799,0.406928479671478,0.492312788963318,0.415511846542358,0.48127469420433, +0.422952324151993,0.47594690322876,0.411376535892487,0.489015012979507,0.385119020938873,0.486205995082855,0.399402022361755,0.471274077892303,0.401226073503494,0.474388986825943,0.384285002946854,0.496007889509201,0.362529933452606,0.491823971271515,0.370835989713669,0.477504074573517,0.36734402179718,0.482453912496567,0.358061939477921,0.50571596622467,0.345457971096039,0.500191986560822,0.354223966598511,0.487402945756912,0.348780006170273,0.493182003498077,0.339203000068665,0.520782053470612,0.319521129131317,0.526260018348694,0.327939987182617,0.51875102519989,0.332316011190414,0.508248090744019,0.324314057826996,0.582952439785004,0.337187349796295,0.596561372280121,0.345253050327301,0.582508027553558,0.350659012794495,0.569817006587982,0.345772981643677,0.558840990066528,0.327784597873688,0.567469954490662,0.330958187580109,0.557126998901367,0.340887010097504,0.550754070281982,0.338509023189545,0.520782053470612,0.319521129131317,0.537354230880737,0.320733249187469,0.535319983959198,0.332035005092621,0.526260018348694,0.327939987182617,0.592489004135132,0.378598988056183,0.576542019844055,0.376823961734772,0.579524993896484,0.363741040229797,0.595197975635529,0.36232402920723,0.477033942937851,0.765489935874939,0.492657959461212,0.771198987960815,0.479016900062561,0.801620006561279,0.468432009220123,0.79364401102066,0.522193133831024,0.790151178836823,0.507247984409332,0.779456973075867,0.514442980289459,0.766412019729614,0.531171083450317,0.776805996894836,0.45898300409317,0.76244193315506,0.477033942937851,0.765489935874939,0.468432009220123,0.79364401102066,0.454014927148819,0.789458930492401,0.539283990859985,0.765878021717072,0.521438002586365,0.755366027355194,0.529209971427917,0.746183931827545,0.54678601026535,0.757444024085999,0.492657959461212,0.771198987960815,0.477033942937851,0.765489935874939,0.479206055402756,0.751405119895935,0.497333943843842,0.757558941841125,0.520278990268707,0.289129972457886,0.514686942100525,0.253909975290298,0.525038123130798,0.249454036355019,0.534769117832184,0.286010056734085, +0.5293790102005,0.192465007305145,0.521223783493042,0.196973025798798,0.524371147155762,0.209933191537857,0.53437602519989,0.209299981594086,0.426856994628906,0.760756015777588,0.414659023284912,0.760558009147644,0.408598005771637,0.749782979488373,0.423702001571655,0.749265015125275,0.440182954072952,0.748966872692108,0.437661945819855,0.738121867179871,0.460727155208588,0.736916542053223,0.459420025348663,0.74911105632782,0.419937938451767,0.739239931106567,0.402536928653717,0.739007949829102,0.399500072002411,0.733842134475708,0.416014015674591,0.731798112392426,0.391721963882446,0.718421995639801,0.386983007192612,0.708170056343079,0.399803012609482,0.703173041343689,0.40599200129509,0.714070081710815,0.460727155208588,0.736916542053223,0.437661945819855,0.738121867179871,0.433439046144485,0.729734063148499,0.4573575258255,0.727022528648376,0.505321264266968,0.710566163063049,0.522321224212646,0.725589871406555,0.509053766727448,0.735249102115631,0.4824498295784,0.722436368465424,0.529209971427917,0.746183931827545,0.521438002586365,0.755366027355194,0.502235054969788,0.746801972389221,0.509053766727448,0.735249102115631,0.382684081792831,0.700360119342804,0.378385007381439,0.692551016807556,0.386568963527679,0.684778988361359,0.393272042274475,0.693636059761047,0.404106050729752,0.686321020126343,0.394753009080887,0.677007079124451,0.402844965457916,0.66860294342041,0.415432989597321,0.677824020385742,0.472135126590729,0.634712934494019,0.480234742164612,0.622585654258728,0.494866490364075,0.630170285701752,0.493073910474777,0.647093117237091,0.461205273866653,0.596072375774384,0.468599021434784,0.583443999290466,0.482671022415161,0.588007926940918,0.474401295185089,0.601987242698669,0.454167723655701,0.609226822853088,0.461205273866653,0.596072375774384,0.474401295185089,0.601987242698669,0.467026859521866,0.616052508354187,0.502986192703247,0.667705893516541,0.485781818628311,0.673746883869171,0.478400617837906,0.655835926532745,0.493073910474777,0.647093117237091,0.466388672590256,0.642750024795532,0.472135126590729, +0.634712934494019,0.493073910474777,0.647093117237091,0.478400617837906,0.655835926532745,0.487176597118378,0.609778702259064,0.502324521541595,0.596214294433594,0.509602427482605,0.61336076259613,0.497061312198639,0.617858469486237,0.494866490364075,0.630170285701752,0.513980031013489,0.629042744636536,0.517416000366211,0.645749270915985,0.493073910474777,0.647093117237091,0.492069154977798,0.691675066947937,0.485781818628311,0.673746883869171,0.502986192703247,0.667705893516541,0.513021349906921,0.685287952423096,0.522321224212646,0.725589871406555,0.505321264266968,0.710566163063049,0.524445772171021,0.70257830619812,0.53643262386322,0.718061506748199,0.549966990947723,0.732137978076935,0.564980983734131,0.726028025150299,0.579671025276184,0.739134013652802,0.565521001815796,0.744884014129639,0.544670045375824,0.659137070178986,0.567915856838226,0.654111981391907,0.575174868106842,0.669176876544952,0.551980018615723,0.675202131271362,0.517416000366211,0.645749270915985,0.513980031013489,0.629042744636536,0.534453988075256,0.62664008140564,0.539131045341492,0.642912983894348,0.561115264892578,0.690740346908569,0.584118962287903,0.6839200258255,0.594794988632202,0.698274075984955,0.572122991085052,0.705381989479065,0.584828019142151,0.71929007768631,0.607093989849091,0.712188005447388,0.620903015136719,0.725612998008728,0.599045991897583,0.732631981372833,0.620903015136719,0.725612998008728,0.607093989849091,0.712188005447388,0.629364013671875,0.704985022544861,0.642503023147583,0.71831202507019,0.606793999671936,0.677321970462799,0.627283930778503,0.671248912811279,0.637830018997192,0.684718012809753,0.617353975772858,0.691262900829315,0.575174868106842,0.669176876544952,0.567915856838226,0.654111981391907,0.590801000595093,0.649165987968445,0.598002016544342,0.663336992263794,0.662331998348236,0.711160004138947,0.649700999259949,0.698105096817017,0.666168868541718,0.691969871520996,0.678876996040344,0.704591989517212,0.693635046482086,0.697936058044434,0.680759012699127,0.685822010040283,0.695461988449097,0.678898990154266, +0.708105027675629,0.690524995326996,0.643730998039246,0.66600102186203,0.658294081687927,0.66091114282608,0.668795883655548,0.673382937908173,0.654253005981445,0.679005980491638,0.618623852729797,0.657943904399872,0.61149400472641,0.64454197883606,0.628160893917084,0.640478909015656,0.63520485162735,0.65325790643692,0.721965074539185,0.682330012321472,0.709969043731689,0.671151995658875,0.723971009254456,0.662527978420258,0.734892904758453,0.673325836658478,0.673128962516785,0.655313014984131,0.687677979469299,0.648985028266907,0.698305010795593,0.660030007362366,0.683630883693695,0.667107880115509,0.698305010795593,0.660030007362366,0.687677979469299,0.648985028266907,0.701382040977478,0.641707003116608,0.712362945079803,0.651998996734619,0.745199978351593,0.663442015647888,0.735400915145874,0.652854025363922,0.742191970348358,0.641956925392151,0.751199007034302,0.652606010437012,0.649802088737488,0.648697137832642,0.642759084701538,0.636468052864075,0.657242000102997,0.632000029087067,0.664471030235291,0.643676996231079,0.754235148429871,0.641326010227203,0.745733022689819,0.631330132484436,0.747414112091064,0.62246710062027,0.755653977394104,0.630110025405884,0.724349975585938,0.643217861652374,0.713608980178833,0.63404107093811,0.723728895187378,0.626547873020172,0.732810020446777,0.633891880512238,0.756626904010773,0.620287895202637,0.747010886669159,0.612115025520325,0.754078984260559,0.605196952819824,0.758320927619934,0.613188982009888,0.747414112091064,0.62246710062027,0.745733022689819,0.631330132484436,0.738390862941742,0.625634908676147,0.741741001605988,0.620060980319977,0.701382040977478,0.641707003116608,0.687677979469299,0.648985028266907,0.678791105747223,0.638038098812103,0.692336857318878,0.63162088394165,0.704738020896912,0.624827027320862,0.697259068489075,0.615392029285431,0.708346009254456,0.608904957771301,0.715624094009399,0.618058979511261,0.741214990615845,0.600161015987396,0.735162138938904,0.589391112327576,0.743396937847137,0.582295000553131,0.749354898929596,0.594286918640137,0.72513210773468, +0.611615121364594,0.718199074268341,0.602313995361328,0.726949870586395,0.595936894416809,0.733401119709015,0.605793118476868,0.743396937847137,0.582295000553131,0.735162138938904,0.589391112327576,0.727735996246338,0.579699993133545,0.735453963279724,0.571054995059967,0.726949870586395,0.595936894416809,0.718199074268341,0.602313995361328,0.71151214838028,0.593243002891541,0.719964981079102,0.586858987808228,0.708346009254456,0.608904957771301,0.697259068489075,0.615392029285431,0.690688848495483,0.605551898479462,0.701745986938477,0.59956693649292,0.684804975986481,0.621454000473022,0.671346008777618,0.627016067504883,0.665046870708466,0.61574399471283,0.678361892700195,0.610922873020172,0.709233045578003,0.568549990653992,0.719052970409393,0.572337985038757,0.713168025016785,0.579563975334167,0.70728200674057,0.57505601644516,0.695912003517151,0.5903480052948,0.684998989105225,0.595677971839905,0.680160105228424,0.586140096187592,0.690932810306549,0.581553876399994,0.700784206390381,0.556457996368408,0.70400595664978,0.544688999652863,0.717397928237915,0.546486973762512,0.713599026203156,0.558399021625519,0.672869026660919,0.600344061851501,0.659739971160889,0.604453027248383,0.655269026756287,0.593369007110596,0.668188869953156,0.590036928653717,0.685412108898163,0.563893020153046,0.696402132511139,0.568480134010315,0.686537027359009,0.57427990436554,0.682453036308289,0.569616973400116,0.685412108898163,0.563893020153046,0.674444139003754,0.562327980995178,0.675490021705627,0.552179992198944,0.688177049160004,0.554225027561188,0.664713025093079,0.580205976963043,0.651917099952698,0.582540988922119,0.649968028068542,0.572019040584564,0.662836015224457,0.571056008338928,0.665046870708466,0.61574399471283,0.671346008777618,0.627016067504883,0.657242000102997,0.632000029087067,0.651027143001556,0.62008410692215,0.645828902721405,0.608108997344971,0.631500005722046,0.611322999000549,0.627604007720947,0.598752975463867,0.641650021076202,0.596258044242859,0.636604905128479,0.623951852321625,0.642759084701538,0.636468052864075, +0.628160893917084,0.640478909015656,0.622087001800537,0.627362012863159,0.638562023639679,0.584504008293152,0.624787926673889,0.586188971996307,0.622922003269196,0.573575973510742,0.636632978916168,0.572820007801056,0.597186923027039,0.603119909763336,0.594642996788025,0.589363992214203,0.610736072063446,0.587691068649292,0.613402009010315,0.600903034210205,0.605535984039307,0.630779027938843,0.61149400472641,0.64454197883606,0.590801000595093,0.649165987968445,0.585014879703522,0.63466888666153,0.554244995117188,0.608434021472931,0.551878988742828,0.593454957008362,0.5747429728508,0.591560006141663,0.577098071575165,0.605815052986145,0.534453988075256,0.62664008140564,0.513980031013489,0.629042744636536,0.509602427482605,0.61336076259613,0.529733061790466,0.610425174236298,0.551262021064758,0.578350961208344,0.551836013793945,0.563028991222382,0.572802126407623,0.562528014183044,0.573352932929993,0.57718700170517,0.505716979503632,0.57695597410202,0.510163068771362,0.56146901845932,0.530632019042969,0.562062978744507,0.5278679728508,0.577991962432861,0.482671022415161,0.588007926940918,0.468599021434784,0.583443999290466,0.470887988805771,0.575296998023987,0.48735499382019,0.576084971427917,0.476705014705658,0.553631007671356,0.480037033557892,0.540130853652954,0.497837007045746,0.536794006824493,0.495015978813171,0.549732029438019,0.513710021972656,0.547042012214661,0.51623797416687,0.533711910247803,0.535125851631165,0.532420992851257,0.533171117305756,0.546768128871918,0.48154404759407,0.529229998588562,0.482536554336548,0.518382847309113,0.499749183654785,0.513982117176056,0.499490052461624,0.525037050247192,0.592966020107269,0.575528025627136,0.591967940330505,0.561532974243164,0.607770025730133,0.56101405620575,0.608928143978119,0.574402093887329,0.553040981292725,0.547397017478943,0.554271936416626,0.532114028930664,0.573445856571198,0.531981885433197,0.572963118553162,0.547418117523193,0.481906116008759,0.507878124713898,0.480955958366394,0.497406989336014,0.495579898357391,0.493303924798965,0.498385012149811, +0.503148019313812,0.535125851631165,0.532420992851257,0.51623797416687,0.533711910247803,0.517625987529755,0.521514892578125,0.536139905452728,0.519337952136993,0.534042000770569,0.484479904174805,0.556427001953125,0.482971012592316,0.553013980388641,0.495386004447937,0.534825921058655,0.496587038040161,0.499125957489014,0.47408401966095,0.48811000585556,0.463795006275177,0.494423985481262,0.453774988651276,0.509528994560242,0.464825004339218,0.553013980388641,0.495386004447937,0.556427001953125,0.482971012592316,0.575701892375946,0.489001870155334,0.567655026912689,0.495447993278503,0.572502017021179,0.503251016139984,0.591762065887451,0.497911989688873,0.591908991336823,0.515802025794983,0.573862016201019,0.516344010829926,0.607052981853485,0.533136069774628,0.621411859989166,0.534424960613251,0.621167004108429,0.548025012016296,0.607057988643646,0.547508001327515,0.607052981853485,0.533136069774628,0.591441035270691,0.532248139381409,0.591908991336823,0.515802025794983,0.608016014099121,0.51715099811554,0.635650098323822,0.535893082618713,0.649653851985931,0.537439823150635,0.649001896381378,0.549793899059296,0.635197997093201,0.548826932907104,0.622874021530151,0.51945698261261,0.625830054283142,0.505088984966278,0.639774084091187,0.50823700428009,0.637175917625427,0.521782875061035,0.663312971591949,0.538964867591858,0.676838994026184,0.540642023086548,0.675490021705627,0.552179992198944,0.662431955337524,0.550807952880859,0.651045978069305,0.524082958698273,0.653109014034271,0.511236071586609,0.666160881519318,0.514141857624054,0.66460907459259,0.526312112808228,0.678139090538025,0.528627991676331,0.679237961769104,0.517117023468018,0.692646861076355,0.520321011543274,0.691910922527313,0.531189978122711,0.705291986465454,0.533410012722015,0.705263018608093,0.52276599407196,0.715963006019592,0.523461997509003,0.717645883560181,0.534698009490967,0.666160881519318,0.514141857624054,0.653109014034271,0.511236071586609,0.655768990516663,0.500409066677094,0.667809009552002,0.50375097990036,0.692646861076355,0.520321011543274, +0.679237961769104,0.517117023468018,0.679983019828796,0.507089972496033,0.692721128463745,0.510500073432922,0.704541981220245,0.512899994850159,0.703592121601105,0.504099011421204,0.711849987506866,0.504068970680237,0.713966906070709,0.513209998607635,0.733025014400482,0.517306089401245,0.739377975463867,0.510545015335083,0.74516898393631,0.518167018890381,0.737782955169678,0.52716201543808,0.74516898393631,0.518167018890381,0.739377975463867,0.510545015335083,0.743798136711121,0.502215981483459,0.750738024711609,0.507901012897491,0.721874177455902,0.511622130870819,0.71883088350296,0.502372860908508,0.725762009620667,0.499758005142212,0.729140877723694,0.508329927921295,0.767014026641846,0.491809010505676,0.765205025672913,0.503739953041077,0.755352258682251,0.498297989368439,0.759872853755951,0.49129194021225,0.746650099754333,0.476855009794235,0.745407998561859,0.464047968387604,0.755185961723328,0.457354992628098,0.756631851196289,0.470932930707932,0.743798136711121,0.502215981483459,0.739377975463867,0.510545015335083,0.735143065452576,0.504060983657837,0.739255130290985,0.499543011188507,0.702875971794128,0.496650993824005,0.701893985271454,0.491047024726868,0.706403970718384,0.488902032375336,0.709806084632874,0.496170997619629,0.692829012870789,0.501713991165161,0.681162118911743,0.498096108436584,0.683558106422424,0.48968306183815,0.693664908409119,0.493947923183441,0.715878963470459,0.493871986865997,0.712005972862244,0.485536992549896,0.718667984008789,0.482069045305252,0.722521126270294,0.491115033626556,0.729797005653381,0.487480044364929,0.726505935192108,0.477588951587677,0.735633909702301,0.471187949180603,0.737773001194,0.482549011707306,0.706203043460846,0.47678405046463,0.699347913265228,0.468443989753723,0.707303941249847,0.462745994329453,0.71345591545105,0.472288012504578,0.706403970718384,0.488902032375336,0.701893985271454,0.491047024726868,0.695901989936829,0.48724502325058,0.700217008590698,0.481646001338959,0.721992909908295,0.466927945613861,0.716436982154846,0.456409990787506,0.72666996717453, +0.448112934827805,0.731829881668091,0.459473967552185,0.742116093635559,0.451577991247177,0.737230062484741,0.439662009477615,0.747337996959686,0.432869046926498,0.751996994018555,0.44489198923111,0.710016906261444,0.446949005126953,0.702636122703552,0.438174039125443,0.713181972503662,0.428220063447952,0.720463037490845,0.437806040048599,0.707303941249847,0.462745994329453,0.699347913265228,0.468443989753723,0.692322015762329,0.461350947618484,0.700634002685547,0.454419046640396,0.735020995140076,0.386078000068665,0.745202898979187,0.399073958396912,0.734260976314545,0.408490002155304,0.725503146648407,0.396890014410019,0.747337996959686,0.432869046926498,0.737230062484741,0.439662009477615,0.731206893920898,0.428516924381256,0.741482973098755,0.420609027147293,0.694199025630951,0.429712951183319,0.684765934944153,0.421549946069717,0.695096969604492,0.410122990608215,0.70480090379715,0.419017910957336,0.674396932125092,0.413668990135193,0.662279009819031,0.405844002962112,0.670589089393616,0.392899066209793,0.683848977088928,0.401456952095032,0.69331693649292,0.388550996780396,0.678882002830505,0.379305928945541,0.687552869319916,0.365891009569168,0.702524065971375,0.375624060630798,0.6475989818573,0.39785099029541,0.630751132965088,0.390271097421646,0.636784911155701,0.376213014125824,0.654851734638214,0.38432589173317,0.661983013153076,0.370270013809204,0.642692983150482,0.361732989549637,0.64894300699234,0.347772985696793,0.669551014900208,0.35654604434967,0.621088027954102,0.353986024856567,0.596561372280121,0.345253050327301,0.60459303855896,0.332802057266235,0.626157999038696,0.339753985404968,0.60459303855896,0.332802057266235,0.596561372280121,0.345253050327301,0.582952439785004,0.337187349796295,0.587647080421448,0.327228009700775,0.621088027954102,0.353986024856567,0.642692983150482,0.361732989549637,0.636784911155701,0.376213014125824,0.616535902023315,0.369035005569458,0.612128973007202,0.383684009313583,0.630751132965088,0.390271097421646,0.624125957489014,0.402964979410172,0.607487976551056,0.396716982126236, +0.574460983276367,0.322975039482117,0.567469954490662,0.330958187580109,0.558840990066528,0.327784597873688,0.564176976680756,0.31998398900032,0.554401993751526,0.318329006433487,0.550303876399994,0.324851393699646,0.537354230880737,0.320733249187469,0.542740881443024,0.318083971738815,0.624125957489014,0.402964979410172,0.630751132965088,0.390271097421646,0.6475989818573,0.39785099029541,0.639666140079498,0.409982085227966,0.674396932125092,0.413668990135193,0.684765934944153,0.421549946069717,0.675406992435455,0.431737929582596,0.665235996246338,0.424509942531586,0.602810978889465,0.408582985401154,0.617404937744141,0.414728939533234,0.611082971096039,0.425998002290726,0.598296999931335,0.419729977846146,0.631626009941101,0.421305984258652,0.644840180873871,0.428059101104736,0.636560916900635,0.438823997974396,0.624050974845886,0.4324109852314,0.599322974681854,0.466454982757568,0.587401986122131,0.459475070238113,0.59706699848175,0.448226988315582,0.608682990074158,0.454806953668594,0.592935025691986,0.430442005395889,0.604516983032227,0.437065005302429,0.59706699848175,0.448226988315582,0.585714936256409,0.44100296497345,0.694199025630951,0.429712951183319,0.702636122703552,0.438174039125443,0.693201005458832,0.446747004985809,0.684759974479675,0.439168006181717,0.656413078308105,0.434733062982559,0.666732013225555,0.441397994756699,0.658452093601227,0.451245069503784,0.647970020771027,0.445090025663376,0.576653003692627,0.450862973928452,0.587401986122131,0.459475070238113,0.574191868305206,0.470803916454315,0.565765023231506,0.459468007087708,0.574191868305206,0.470803916454315,0.587401986122131,0.459475070238113,0.599322974681854,0.466454982757568,0.587293982505798,0.478594988584518,0.552274107933044,0.465778082609177,0.556427001953125,0.482971012592316,0.534042000770569,0.484479904174805,0.53540301322937,0.468753010034561,0.63984489440918,0.455693960189819,0.650613009929657,0.461398005485535,0.643263876438141,0.471978902816772,0.631974875926971,0.466654896736145,0.602401971817017,0.484225004911423,0.611825883388519, +0.472379922866821,0.624321937561035,0.477831929922104,0.616847991943359,0.489077985286713,0.481555134057999,0.443008780479431,0.475263178348541,0.451069891452789,0.464794665575027,0.439463496208191,0.472521007061005,0.432249993085861,0.467435657978058,0.458736717700958,0.46083664894104,0.466500401496887,0.452052175998688,0.457264959812164,0.456938236951828,0.447536796331406,0.466688990592957,0.424021005630493,0.453833103179932,0.426934123039246,0.448411047458649,0.418206989765167,0.461374014616013,0.414261996746063,0.446799069643021,0.436055064201355,0.44322606921196,0.448550015687943,0.435476005077362,0.442128956317902,0.440645009279251,0.428564995527267,0.457424998283386,0.403021991252899,0.443713903427124,0.408971011638641,0.439651101827621,0.399072051048279,0.455691039562225,0.390354990959167,0.439651101827621,0.399072051048279,0.443713903427124,0.408971011638641,0.434664934873581,0.420900940895081,0.428926020860672,0.413085043430328,0.455313891172409,0.378066897392273,0.435993015766144,0.38922706246376,0.432511001825333,0.380149006843567,0.455435991287231,0.367967039346695,0.407128065824509,0.415894985198975,0.400267988443375,0.408008009195328,0.412426024675369,0.388772040605545,0.41777303814888,0.396883010864258,0.393660962581635,0.400184005498886,0.387055039405823,0.392360061407089,0.402087062597275,0.373643100261688,0.407454997301102,0.381053000688553,0.450681984424591,0.342577993869781,0.472759872674942,0.319277882575989,0.483308970928192,0.328117996454239,0.469927996397018,0.341584026813507,0.483308970928192,0.328117996454239,0.472759872674942,0.319277882575989,0.495478957891464,0.316316992044449,0.495211005210876,0.322472006082535,0.495478957891464,0.316316992044449,0.472759872674942,0.319277882575989,0.482383012771606,0.305045008659363,0.500035107135773,0.305005073547363,0.431908994913101,0.337430000305176,0.445684969425201,0.32073301076889,0.455945998430252,0.321404993534088,0.439454942941666,0.340797007083893,0.379611968994141,0.384519010782242,0.372170001268387,0.376677989959717,0.388503015041351,0.359525084495544, +0.39554899930954,0.366452991962433,0.50722998380661,0.256805986166,0.514686942100525,0.253909975290298,0.520278990268707,0.289129972457886,0.505122005939484,0.290298014879227,0.490340024232864,0.262412995100021,0.499771952629089,0.25970196723938,0.490785956382751,0.290627002716064,0.478762030601501,0.291227012872696,0.47175008058548,0.265861064195633,0.48090797662735,0.265122950077057,0.467837065458298,0.291578054428101,0.456799000501633,0.291162997484207,0.482383012771606,0.305045008659363,0.472759872674942,0.319277882575989,0.455945998430252,0.321404993534088,0.469004988670349,0.305480003356934,0.453843027353287,0.265697002410889,0.462592929601669,0.266597986221313,0.446114003658295,0.290087997913361,0.43625009059906,0.288465023040771,0.457848012447357,0.305637985467911,0.445684969425201,0.32073301076889,0.435604989528656,0.319101989269257,0.446857035160065,0.30484801530838,0.436819016933441,0.262347042560577,0.445093005895615,0.264797002077103,0.426661014556885,0.286345988512039,0.416799962520599,0.283783942461014,0.41055703163147,0.349222958087921,0.403059929609299,0.34334996342659,0.414993941783905,0.329581946134567,0.423707008361816,0.333667010068893,0.366586029529572,0.369744002819061,0.361001014709473,0.362809985876083,0.374710947275162,0.346480995416641,0.381610989570618,0.352901011705399,0.436192005872726,0.303301066160202,0.425604999065399,0.316729933023453,0.415582001209259,0.313832998275757,0.426012992858887,0.301187992095947,0.73725700378418,0.186102002859116,0.696945011615753,0.162708014249802,0.683263897895813,0.167415976524353,0.718404948711395,0.188898995518684,0.355302035808563,0.354985028505325,0.34960201382637,0.347158968448639,0.360491991043091,0.333911001682281,0.367643058300018,0.340169072151184,0.395200103521347,0.337567090988159,0.3870629966259,0.33203798532486,0.396640986204147,0.320919007062912,0.405918002128601,0.325251996517181,0.416019946336746,0.298638999462128,0.405580997467041,0.310620009899139,0.395646035671234,0.30729803442955,0.405912011861801,0.295781999826431,0.378736048936844, +0.326925009489059,0.370257824659348,0.322029441595078,0.377997994422913,0.31284698843956,0.387329012155533,0.31682300567627,0.676186978816986,0.44812399148941,0.684731960296631,0.454809010028839,0.677081882953644,0.46322900056839,0.668179988861084,0.457320988178253,0.648190021514893,0.486893087625504,0.636533975601196,0.482704013586044,0.643263876438141,0.471978902816772,0.654047012329102,0.476771056652069,0.692322015762329,0.461350947618484,0.699347913265228,0.468443989753723,0.692643046379089,0.474831014871597,0.685083985328674,0.468879014253616,0.630553007125854,0.493288934230804,0.636533975601196,0.482704013586044,0.648190021514893,0.486893087625504,0.643438994884491,0.496993958950043,0.678949058055878,0.476941049098969,0.687332034111023,0.481909066438675,0.683558106422424,0.48968306183815,0.673943996429443,0.485475927591324,0.189672023057938,0.903910100460052,0.225939005613327,0.91139805316925,0.226205006241798,0.909170985221863,0.191124007105827,0.901875019073486,0.225799918174744,0.915289759635925,0.225672990083694,0.913625001907349,0.188220992684364,0.905944049358368,0.186330005526543,0.90768301486969,0.18444000184536,0.909421980381012,0.226444005966187,0.919111013412476,0.225927993655205,0.916956007480621,0.225799918174744,0.915289759635925,0.186330005526543,0.90768301486969,0.180418998003006,0.912024021148682,0.177646994590759,0.912968993186951,0.196866989135742,0.975121855735779,0.207958996295929,0.973142862319946,0.256705820560455,0.951196670532227,0.255028009414673,0.933886051177979,0.253239989280701,0.934482991695404,0.185775995254517,0.977100968360901,0.174874976277351,0.913913905620575,0.172063991427422,0.914073944091797,0.17587499320507,0.977180957794189,0.165974020957947,0.977261126041412,0.169252991676331,0.914233982563019,0.166767999529839,0.913775980472565,0.155960649251938,0.975762009620667,0.22699099779129,0.907029986381531,0.227776020765305,0.904890060424805,0.192974999547005,0.897108972072601,0.192049041390419,0.899492263793945,0.237080037593842,0.867586135864258,0.233624041080475,0.86744213104248, +0.237370014190674,0.895006000995636,0.239020004868507,0.894128859043121,0.169252991676331,0.914233982563019,0.165974020957947,0.977261126041412,0.17587499320507,0.977180957794189,0.172063991427422,0.914073944091797,0.120482049882412,0.966058373451233,0.157324999570847,0.909986019134521,0.154750004410744,0.908442974090576,0.110110998153687,0.961559891700745,0.120482049882412,0.966058373451233,0.131394892930984,0.970010161399841,0.159899994730949,0.911529004573822,0.157324999570847,0.909986019134521,0.159899994730949,0.911529004573822,0.131394892930984,0.970010161399841,0.145012021064758,0.973782062530518,0.16209203004837,0.912424147129059,0.191124007105827,0.901875019073486,0.226205006241798,0.909170985221863,0.22699099779129,0.907029986381531,0.192049041390419,0.899492263793945,0.475263178348541,0.451069891452789,0.48811000585556,0.463795006275177,0.479971051216125,0.471505045890808,0.467435657978058,0.458736717700958,0.156433001160622,0.87204384803772,0.158776998519897,0.870613098144531,0.148768991231918,0.850611984729767,0.146289989352226,0.85080498456955,0.157495975494385,0.84834885597229,0.154372006654739,0.849385023117065,0.163813978433609,0.868482887744904,0.166509002447128,0.867784976959229,0.265003025531769,0.85375702381134,0.263438940048218,0.856386005878448,0.311155021190643,0.862525105476379,0.266566932201385,0.851127803325653,0.306361973285675,0.882292866706848,0.308759033679962,0.872408986091614,0.263438940048218,0.856386005878448,0.243497997522354,0.892763018608093,0.239928990602493,0.867381989955902,0.237080037593842,0.867586135864258,0.24125899374485,0.893445909023285,0.249832004308701,0.722383975982666,0.24151599407196,0.717040002346039,0.213832020759583,0.809043109416962,0.217105001211166,0.806403875350952,0.265112996101379,0.814149022102356,0.267072975635529,0.816978812217712,0.306229829788208,0.795589685440063,0.216181993484497,0.815120995044708,0.218428984284401,0.812523901462555,0.213832020759583,0.809043109416962,0.211495935916901,0.81205677986145,0.21238599717617,0.820815026760101,0.213935032486916, +0.817717015743256,0.209158971905708,0.815070986747742,0.207443997263908,0.818596005439758,0.210107013583183,0.826874017715454,0.21083702147007,0.823913097381592,0.205727994441986,0.822121977806091,0.204675003886223,0.825841009616852,0.209319964051247,0.833224892616272,0.209377005696297,0.829833984375,0.203621998429298,0.829560041427612,0.203312993049622,0.833578884601593,0.209781005978584,0.839061975479126,0.209264025092125,0.836616098880768,0.203004002571106,0.837598979473114,0.203759014606476,0.840590000152588,0.211285978555679,0.844039916992188,0.210298031568527,0.841508150100708,0.204514995217323,0.843581974506378,0.206084996461868,0.846862852573395,0.213604003190994,0.848752021789551,0.212274998426437,0.846571981906891,0.207653999328613,0.850144982337952,0.209180995821953,0.852472126483917,0.216464027762413,0.852609992027283,0.214933976531029,0.850932002067566,0.210708975791931,0.854798853397369,0.212516993284225,0.856980979442596,0.220005005598068,0.855967879295349,0.217994004487991,0.854287028312683,0.214325994253159,0.85916405916214,0.21696600317955,0.860909879207611,0.224153995513916,0.858913004398346,0.222016006708145,0.857647955417633,0.219606995582581,0.862656116485596,0.221979975700378,0.863983869552612,0.228680998086929,0.861050009727478,0.226291969418526,0.860178887844086,0.22435300052166,0.865311980247498,0.227259993553162,0.866304993629456,0.237080037593842,0.867586135864258,0.236993849277496,0.862354218959808,0.23403200507164,0.862137854099274,0.233624041080475,0.86744213104248,0.24277800321579,0.867178022861481,0.242061972618103,0.861912906169891,0.239527970552444,0.862132847309113,0.239928990602493,0.867381989955902,0.244175001978874,0.861554980278015,0.242061972618103,0.861912906169891,0.24277800321579,0.867178022861481,0.245444998145103,0.866581976413727,0.248551994562149,0.860126972198486,0.246287003159523,0.861197113990784,0.248113036155701,0.865987122058868,0.251064002513885,0.864826023578644,0.252798974514008,0.857895016670227,0.250818014144897,0.859058022499084,0.254016011953354,0.863664984703064, +0.256269007921219,0.862170994281769,0.257052004337311,0.854552030563354,0.254781007766724,0.85673201084137,0.258522987365723,0.860678017139435,0.260980933904648,0.858531832695007,0.266566932201385,0.851127803325653,0.262223988771439,0.848085880279541,0.260773062705994,0.850229203701019,0.265003025531769,0.85375702381134,0.269590049982071,0.844852983951569,0.264643996953964,0.842594027519226,0.263434052467346,0.845340013504028,0.268077999353409,0.847990989685059,0.271135985851288,0.838708996772766,0.265763998031616,0.837370991706848,0.265204012393951,0.839982986450195,0.270363003015518,0.84178102016449,0.271797060966492,0.832202196121216,0.265906989574432,0.831700026988983,0.26583606004715,0.834535181522369,0.271467000246048,0.835456013679504,0.269980013370514,0.823638021945953,0.264470934867859,0.825060904026031,0.265188992023468,0.8283811211586,0.270889073610306,0.827920198440552,0.267072975635529,0.816978812217712,0.262057989835739,0.819720983505249,0.263265013694763,0.822391092777252,0.268527030944824,0.820309102535248,0.263154000043869,0.811320066452026,0.258221000432968,0.814388990402222,0.260140001773834,0.817054986953735,0.265112996101379,0.814149022102356,0.258332014083862,0.806807100772858,0.254416942596436,0.810924828052521,0.256319046020508,0.812657117843628,0.260743021965027,0.809063017368317,0.269980013370514,0.823638021945953,0.312473714351654,0.824710190296173,0.306229829788208,0.795589685440063,0.268527030944824,0.820309102535248,0.312473714351654,0.824710190296173,0.270889073610306,0.827920198440552,0.271797060966492,0.832202196121216,0.313039004802704,0.849131941795349,0.312473714351654,0.824710190296173,0.271467000246048,0.835456013679504,0.271135985851288,0.838708996772766,0.260743021965027,0.809063017368317,0.263154000043869,0.811320066452026,0.306229829788208,0.795589685440063,0.29674169421196,0.773239016532898,0.251473993062973,0.802634954452515,0.254903048276901,0.804720997810364,0.282282501459122,0.751516938209534,0.251473993062973,0.802634954452515,0.248842969536781,0.807769894599915,0.251630008220673, +0.809348046779633,0.254903048276901,0.804720997810364,0.248493000864983,0.80162501335144,0.251473993062973,0.802634954452515,0.282282501459122,0.751516938209534,0.245511993765831,0.800615012645721,0.243912994861603,0.805900931358337,0.246378004550934,0.806834876537323,0.248493000864983,0.80162501335144,0.239370003342628,0.799567997455597,0.238695964217186,0.805219888687134,0.241305023431778,0.805560111999512,0.242440938949585,0.800091981887817,0.236189007759094,0.805329978466034,0.238695964217186,0.805219888687134,0.239370003342628,0.799567997455597,0.235788002610207,0.79963493347168,0.242440938949585,0.800091981887817,0.245511993765831,0.800615012645721,0.273290008306503,0.740649998188019,0.239370003342628,0.799567997455597,0.231048032641411,0.80602502822876,0.233680963516235,0.805439889431,0.232207015156746,0.799700975418091,0.229324042797089,0.800420105457306,0.235788002610207,0.79963493347168,0.239370003342628,0.799567997455597,0.273290008306503,0.740649998188019,0.232207015156746,0.799700975418091,0.220377027988434,0.803765058517456,0.222981974482536,0.809110999107361,0.225697994232178,0.807860970497131,0.223408997058868,0.802452147006989,0.223408997058868,0.802452147006989,0.226442024111748,0.801139116287231,0.258148014545441,0.727727890014648,0.220377027988434,0.803765058517456,0.2345200330019,0.931463122367859,0.237109005451202,0.927883982658386,0.235772043466568,0.926684021949768,0.232864037156105,0.929947972297668,0.270363003015518,0.84178102016449,0.269590049982071,0.844852983951569,0.313039004802704,0.849131941795349,0.271135985851288,0.838708996772766,0.312097012996674,0.855827987194061,0.313039004802704,0.849131941795349,0.269590049982071,0.844852983951569,0.311155021190643,0.862525105476379,0.282572329044342,0.926736176013947,0.267842978239059,0.91951596736908,0.267268002033234,0.921169996261597,0.266292035579681,0.943053185939789,0.273232996463776,0.936672925949097,0.261308997869492,0.929839968681335,0.26002299785614,0.930912017822266,0.246123999357224,0.958252012729645,0.256705820560455,0.951196670532227, +0.249132007360458,0.935304999351501,0.246811002492905,0.935530006885529,0.266292035579681,0.943053185939789,0.26002299785614,0.930912017822266,0.258736997842789,0.93198299407959,0.207958996295929,0.973142862319946,0.229763001203537,0.926519989967346,0.228317007422447,0.924607038497925,0.24125899374485,0.893445909023285,0.237080037593842,0.867586135864258,0.239020004868507,0.894128859043121,0.256705820560455,0.951196670532227,0.253239989280701,0.934482991695404,0.251451998949051,0.93507993221283,0.138525992631912,0.848952054977417,0.148475006222725,0.882598996162415,0.149349004030228,0.880149006843567,0.151248008012772,0.85042005777359,0.148768991231918,0.850611984729767,0.158776998519897,0.870613098144531,0.161119997501373,0.869182109832764,0.268083989620209,0.91718602180481,0.267842978239059,0.91951596736908,0.282572329044342,0.926736176013947,0.289012014865875,0.916937112808228,0.185775995254517,0.977100968360901,0.196866989135742,0.975121855735779,0.177646994590759,0.912968993186951,0.174874976277351,0.913913905620575,0.154372006654739,0.849385023117065,0.151248008012772,0.85042005777359,0.161119997501373,0.869182109832764,0.163813978433609,0.868482887744904,0.188220992684364,0.905944049358368,0.225672990083694,0.913625001907349,0.225939005613327,0.91139805316925,0.189672023057938,0.903910100460052,0.129834026098251,0.835277199745178,0.130802005529404,0.836933851242065,0.147746995091438,0.808448433876038,0.229763001203537,0.926519989967346,0.231208026409149,0.928434073925018,0.234434023499489,0.925485014915466,0.233296006917953,0.92395293712616,0.238186001777649,0.933619976043701,0.240030035376549,0.929587185382843,0.238569036126137,0.928735136985779,0.236352995038033,0.932541906833649,0.207958996295929,0.973142862319946,0.228317007422447,0.924607038497925,0.227638959884644,0.922936797142029,0.243027985095978,0.935053825378418,0.243896037340164,0.930676162242889,0.241962999105453,0.93013197183609,0.240607038140297,0.934337139129639,0.226444005966187,0.919111013412476,0.226959943771362,0.921266913414001,0.231101974844933, +0.919762969017029,0.23069903254509,0.91803514957428,0.246811002492905,0.935530006885529,0.246904954314232,0.931023836135864,0.245400995016098,0.930850028991699,0.244919985532761,0.93529200553894,0.225799918174744,0.915289759635925,0.225927993655205,0.916956007480621,0.230295985937119,0.916307985782623,0.230206966400146,0.914988875389099,0.248721837997437,0.930771768093109,0.246904954314232,0.931023836135864,0.246811002492905,0.935530006885529,0.249132007360458,0.935304999351501,0.230482995510101,0.91015213727951,0.226205006241798,0.909170985221863,0.225939005613327,0.91139805316925,0.230382576584816,0.911921620368958,0.231719002127647,0.906756937503815,0.227776020765305,0.904890060424805,0.22699099779129,0.907029986381531,0.231206625699997,0.908484101295471,0.254866987466812,0.929034888744354,0.253387004137039,0.929762005805969,0.255028009414673,0.933886051177979,0.25688299536705,0.932933986186981,0.233275055885315,0.904149115085602,0.229725003242493,0.901616096496582,0.228751003742218,0.903253018856049,0.232497006654739,0.905453145503998,0.261308997869492,0.929839968681335,0.25835594534874,0.926553905010223,0.257351011037827,0.927430987358093,0.26002299785614,0.930912017822266,0.235490024089813,0.901332020759583,0.232582032680511,0.898118197917938,0.23115299642086,0.899866998195648,0.234382003545761,0.902740001678467,0.265087008476257,0.925692081451416,0.261381506919861,0.923273503780365,0.259663999080658,0.925291001796722,0.262930035591125,0.928244173526764,0.234151005744934,0.897000074386597,0.232582032680511,0.898118197917938,0.235490024089813,0.901332020759583,0.236755013465881,0.900473058223724,0.266692072153091,0.922824025154114,0.262612998485565,0.921012997627258,0.261381506919861,0.923273503780365,0.265087008476257,0.925692081451416,0.237370014190674,0.895006000995636,0.23572102189064,0.895883023738861,0.238020986318588,0.899613976478577,0.239341035485268,0.898918032646179,0.267842978239059,0.91951596736908,0.263523995876312,0.918420076370239,0.263068974018097,0.919716894626617,0.267268002033234,0.921169996261597, +0.24125899374485,0.893445909023285,0.239020004868507,0.894128859043121,0.24066099524498,0.898221909999847,0.242461740970612,0.897755563259125,0.26832503080368,0.914856016635895,0.263835936784744,0.914710998535156,0.263679951429367,0.916565895080566,0.268083989620209,0.91718602180481,0.245535999536514,0.892589867115021,0.243497997522354,0.892763018608093,0.244134515523911,0.897363543510437,0.245860770344734,0.897128164768219,0.263828992843628,0.913066148757935,0.263835936784744,0.914710998535156,0.26832503080368,0.914856016635895,0.268270999193192,0.912784993648529,0.250885993242264,0.897421896457672,0.251902014017105,0.893103897571564,0.249738022685051,0.892760097980499,0.249168217182159,0.897170126438141,0.263242065906525,0.909409999847412,0.26382303237915,0.911422193050385,0.268216013908386,0.910714089870453,0.267468065023422,0.9081911444664,0.253374010324478,0.898076057434082,0.255042999982834,0.893980026245117,0.253472983837128,0.893541812896729,0.252130001783371,0.897748947143555,0.261798024177551,0.905747175216675,0.262661993503571,0.907397985458374,0.266719996929169,0.90566885471344,0.265598952770233,0.903614819049835,0.255872964859009,0.899509906768799,0.258195072412491,0.895779132843018,0.25661900639534,0.894879937171936,0.254624038934708,0.89879310131073,0.260818988084793,0.897635102272034,0.257972985506058,0.901000022888184,0.259452998638153,0.902548909187317,0.26264899969101,0.899598002433777,0.260818988084793,0.897635102272034,0.25950700044632,0.896707057952881,0.256922960281372,0.900254964828491,0.257972985506058,0.901000022888184,0.132034987211227,0.845395863056183,0.134927004575729,0.842046022415161,0.133429035544395,0.84021133184433,0.130135998129845,0.843268990516663,0.127032995223999,0.839123010635376,0.128236025571823,0.841141104698181,0.131770968437195,0.838591873645782,0.130802005529404,0.836933851242065,0.13596199452877,0.847976982593536,0.138135001063347,0.84412693977356,0.136610954999924,0.842978835105896,0.13399900496006,0.846686124801636,0.125137001276016,0.834809899330139,0.125830993056297, +0.837104856967926,0.129834026098251,0.835277199745178,0.129281997680664,0.833395004272461,0.141091033816338,0.849927008152008,0.142287999391556,0.845679998397827,0.140211999416351,0.844904005527496,0.138525992631912,0.848952054977417,0.12424299120903,0.830189883708954,0.124442979693413,0.832515001296997,0.128730982542038,0.831514000892639,0.128589987754822,0.829637885093689,0.146289989352226,0.85080498456955,0.146494001150131,0.846335053443909,0.144391000270844,0.846006989479065,0.143690004944801,0.850366055965424,0.148495018482208,0.84620612859726,0.146494001150131,0.846335053443909,0.146289989352226,0.85080498456955,0.148768991231918,0.850611984729767,0.153038993477821,0.845255970954895,0.150496006011963,0.846076905727386,0.151248008012772,0.85042005777359,0.154372006654739,0.849385023117065,0.157514974474907,0.843210875988007,0.155581995844841,0.844434976577759,0.157495975494385,0.84834885597229,0.159863963723183,0.84681499004364,0.166390016674995,0.840671002864838,0.162771001458168,0.838183104991913,0.161109030246735,0.840085029602051,0.164311036467552,0.842976152896881,0.132789015769958,0.81522810459137,0.129454001784325,0.812444031238556,0.127483010292053,0.815995931625366,0.131081998348236,0.818454027175903,0.169002994894981,0.835688948631287,0.164875984191895,0.834120988845825,0.163823992013931,0.836151957511902,0.167695999145508,0.83817994594574,0.135776966810226,0.812216877937317,0.13316898047924,0.808791995048523,0.131311997771263,0.810617983341217,0.134283006191254,0.813722014427185,0.170426994562149,0.830426037311554,0.165986999869347,0.829843997955322,0.165430992841721,0.831982970237732,0.169715017080307,0.83305698633194,0.135568022727966,0.80739814043045,0.13316898047924,0.808791995048523,0.135776966810226,0.812216877937317,0.137743979692459,0.811105012893677,0.165947198867798,0.827751815319061,0.165986999869347,0.829843997955322,0.170426994562149,0.830426037311554,0.170503050088882,0.827834188938141,0.140457004308701,0.805267930030823,0.137966990470886,0.806003868579865,0.139712005853653,0.809993028640747, +0.14173299074173,0.809410989284515,0.165596455335617,0.823500275611877,0.166173025965691,0.825654983520508,0.170579001307487,0.82524299621582,0.170019000768661,0.822595000267029,0.145413994789124,0.804270148277283,0.142946004867554,0.804533004760742,0.143754988908768,0.80883002281189,0.145750999450684,0.80863893032074,0.164505004882813,0.819459855556488,0.165286034345627,0.82134211063385,0.169458046555519,0.819946110248566,0.168465003371239,0.817633986473083,0.15293200314045,0.809152007102966,0.154251992702484,0.804961025714874,0.151067018508911,0.804484069347382,0.150339007377625,0.808799862861633,0.162426978349686,0.815953016281128,0.163723036646843,0.817577064037323,0.167472004890442,0.815322995185852,0.165861025452614,0.813340067863464,0.157729983329773,0.811479866504669,0.160117000341415,0.807834923267365,0.157184958457947,0.80639785528183,0.155330970883369,0.810316026210785,0.157729983329773,0.811479866504669,0.159430980682373,0.812904000282288,0.162183001637459,0.809596002101898,0.160117000341415,0.807834923267365,0.188733026385307,0.895905137062073,0.192974999547005,0.897108972072601,0.193435966968536,0.894949972629547,0.189094007015228,0.894155919551849,0.189339846372604,0.890329122543335,0.189453974366188,0.892405986785889,0.19389696419239,0.892790913581848,0.193876951932907,0.890215814113617,0.187273994088173,0.899769008159637,0.191124007105827,0.901875019073486,0.192049041390419,0.899492263793945,0.188003987073898,0.897836923599243,0.188874810934067,0.886189818382263,0.189288169145584,0.888238489627838,0.19385701417923,0.88764101266861,0.193269997835159,0.885096073150635,0.184916004538536,0.903069019317627,0.188220992684364,0.905944049358368,0.189672023057938,0.903910100460052,0.186094999313354,0.90141898393631,0.187429994344711,0.881881952285767,0.188522011041641,0.884101986885071,0.19268199801445,0.882551074028015,0.191308006644249,0.879841029644012,0.181848004460335,0.905937016010284,0.18444000184536,0.909421980381012,0.186330005526543,0.90768301486969,0.183382004499435,0.904502987861633,0.187121003866196, +0.873919010162354,0.184024006128311,0.877098977565765,0.185181021690369,0.878381013870239,0.188528001308441,0.875524818897247,0.182429000735283,0.910722970962524,0.18444000184536,0.909421980381012,0.181848004460335,0.905937016010284,0.180205002427101,0.906988024711609,0.182636991143227,0.870575070381165,0.180338963866234,0.874393939971924,0.182181000709534,0.87574702501297,0.184879034757614,0.872247099876404,0.177646994590759,0.912968993186951,0.180418998003006,0.912024021148682,0.17856203019619,0.908038139343262,0.176264539361,0.908640146255493,0.177770033478737,0.868443131446838,0.176362991333008,0.872668862342834,0.17835097014904,0.873531818389893,0.180204004049301,0.869508922100067,0.172063991427422,0.914073944091797,0.174874976277351,0.913913905620575,0.174044981598854,0.909560859203339,0.171733915805817,0.909497380256653,0.171769991517067,0.867303013801575,0.171462967991829,0.871784508228302,0.17391300201416,0.872226893901825,0.174769997596741,0.867873013019562,0.470919996500015,0.478058010339737,0.476718842983246,0.487908959388733,0.464516490697861,0.493827283382416,0.46056604385376,0.485220015048981,0.169339001178741,0.871951997280121,0.171462967991829,0.871784508228302,0.171769991517067,0.867303013801575,0.169138997793198,0.867543995380402,0.161871999502182,0.907621026039124,0.159899994730949,0.911529004573822,0.16209203004837,0.912424147129059,0.163652002811432,0.908340096473694,0.165040999650955,0.872652053833008,0.167215034365654,0.872119188308716,0.166509002447128,0.867784976959229,0.163813978433609,0.868482887744904,0.157649993896484,0.905160009860992,0.154750004410744,0.908442974090576,0.157324999570847,0.909986019134521,0.159760981798172,0.906389892101288,0.160961985588074,0.874336004257202,0.162867993116379,0.873185992240906,0.161119997501373,0.869182109832764,0.158776998519897,0.870613098144531,0.155043035745621,0.90235710144043,0.151573985815048,0.904958009719849,0.153162002563477,0.906701147556305,0.156345993280411,0.90375804901123,0.152152016758919,0.876016020774841,0.155595004558563,0.878760993480682, +0.157324999570847,0.87712299823761,0.15429300069809,0.874029994010925,0.150177031755447,0.902763247489929,0.151573985815048,0.904958009719849,0.155043035745621,0.90235710144043,0.153923004865646,0.900560021400452,0.149349004030228,0.880149006843567,0.153314992785454,0.882128000259399,0.154578894376755,0.880492925643921,0.150749996304512,0.878081977367401,0.148002997040749,0.898060083389282,0.148780003190041,0.900569021701813,0.152803003787994,0.89876389503479,0.152192980051041,0.89671802520752,0.147601008415222,0.885048985481262,0.151911020278931,0.886118054389954,0.152736932039261,0.884171962738037,0.148475006222725,0.882598996162415,0.147065997123718,0.893099009990692,0.147225990891457,0.895551860332489,0.151582986116409,0.89467191696167,0.151482999324799,0.892673969268799,0.14690600335598,0.890645980834961,0.151382997632027,0.890676021575928,0.151647001504898,0.888396859169006,0.147254005074501,0.887848019599915,0.220377027988434,0.803765058517456,0.217105001211166,0.806403875350952,0.22070500254631,0.810817003250122,0.222981974482536,0.809110999107361,0.498829990625381,0.919524013996124,0.500948905944824,0.904640793800354,0.488929986953735,0.903916001319885,0.487617999315262,0.917948007583618,0.517988979816437,0.925292015075684,0.524829983711243,0.907918930053711,0.51288902759552,0.906279981136322,0.508409976959229,0.922408044338226,0.547867894172668,0.914427876472473,0.53634911775589,0.911174058914185,0.525695025920868,0.929835021495819,0.533399879932404,0.93437784910202,0.553385078907013,0.921999037265778,0.547867894172668,0.914427876472473,0.533399879932404,0.93437784910202,0.538412094116211,0.939016044139862,0.562579989433289,0.93781304359436,0.558902144432068,0.929570198059082,0.543422996997833,0.943652987480164,0.547267854213715,0.949870824813843,0.567255973815918,0.955087065696716,0.566256999969482,0.946056008338928,0.551113069057465,0.956089019775391,0.55285108089447,0.963500022888184,0.650957107543945,0.156525030732155,0.669582009315491,0.172124981880188,0.683263897895813,0.167415976524353,0.664981007575989, +0.154017999768257,0.622748017311096,0.162363976240158,0.640425980091095,0.177600979804993,0.655004024505615,0.174863025546074,0.636853039264679,0.159445002675056,0.627358973026276,0.181050986051559,0.640425980091095,0.177600979804993,0.622748017311096,0.162363976240158,0.611733019351959,0.164752975106239,0.601944029331207,0.186067014932632,0.614292025566101,0.184501007199287,0.600718021392822,0.167142003774643,0.593088030815125,0.168960005044937,0.577414989471436,0.188930988311768,0.58959698677063,0.187631994485855,0.585457980632782,0.170779004693031,0.573532998561859,0.173264995217323,0.553725004196167,0.191165000200272,0.565234124660492,0.190229013562202,0.561607003211975,0.175750985741615,0.55094701051712,0.177009001374245,0.385990977287292,0.0376245006918907,0.389232218265533,0.0375141203403473,0.393640697002411,0.0501981526613235,0.389293044805527,0.041069008409977,0.437647014856339,0.795888006687164,0.430916965007782,0.795754909515381,0.430529028177261,0.784605979919434,0.439597070217133,0.785275042057037,0.468432009220123,0.79364401102066,0.461397975683212,0.802904009819031,0.449523001909256,0.799395978450775,0.454014927148819,0.789458930492401,0.489603012800217,0.809594988822937,0.481497079133987,0.816199123859406,0.471447944641113,0.809551954269409,0.479016900062561,0.801620006561279,0.491209983825684,0.827916026115417,0.481497079133987,0.816199123859406,0.489603012800217,0.809594988822937,0.501441061496735,0.822685122489929,0.436819016933441,0.262347042560577,0.428543984889984,0.259896993637085,0.436257928609848,0.250396013259888,0.442268043756485,0.251747012138367,0.453843027353287,0.265697002410889,0.445093005895615,0.264797002077103,0.44827800989151,0.253098011016846,0.455271005630493,0.253883004188538,0.47175008058548,0.265861064195633,0.462592929601669,0.266597986221313,0.462264001369476,0.254667997360229,0.470162987709045,0.254211038351059,0.494451999664307,0.250153988599777,0.499771952629089,0.25970196723938,0.490340024232864,0.262412995100021,0.486257016658783,0.251954048871994,0.509017944335938, +0.244648933410645,0.514686942100525,0.253909975290298,0.50722998380661,0.256805986166,0.501734972000122,0.247402012348175,0.436257928609848,0.250396013259888,0.437591999769211,0.242970004677773,0.44362610578537,0.244361042976379,0.442268043756485,0.251747012138367,0.867806911468506,0.0491139963269234,0.883808016777039,0.0491140000522137,0.877876043319702,0.0410690009593964,0.861692011356354,0.0410690009593964,0.838576793670654,0.0491139926016331,0.851806879043579,0.0491139926016331,0.845507025718689,0.0410690009593964,0.831323027610779,0.0410690009593964,0.812729120254517,0.049114003777504,0.825348019599915,0.0491140000522137,0.817139029502869,0.0410690009593964,0.804130911827087,0.0410690009593964,0.788694798946381,0.0491139926016331,0.800110936164856,0.0491140000522137,0.791123151779175,0.041069008409977,0.779878973960876,0.0410690009593964,0.757879972457886,0.0491140075027943,0.767579019069672,0.0491140000522137,0.758975982666016,0.0410690009593964,0.749315977096558,0.0410690009593964,0.749078869819641,0.0491139963269234,0.757879972457886,0.0491140075027943,0.749315977096558,0.0410690009593964,0.741614878177643,0.0410690009593964,0.729753017425537,0.0491140075027943,0.740278124809265,0.0491140075027943,0.733915090560913,0.041069008409977,0.726037979125977,0.0410690009593964,0.69038450717926,0.0410689972341061,0.686543822288513,0.0491140000522137,0.705265879631042,0.0491139888763428,0.706225991249084,0.0410690009593964,0.590717077255249,0.041069008409977,0.583914995193481,0.049114003777504,0.613121747970581,0.0491140075027943,0.613384962081909,0.0410690009593964,0.53738397359848,0.0410690009593964,0.532811999320984,0.0491139963269234,0.558363974094391,0.0491140000522137,0.5640509724617,0.0410690009593964,0.490866899490356,0.0410690009593964,0.494315057992935,0.0491140075027943,0.513563990592957,0.0491140000522137,0.514124989509583,0.0410690009593964,0.438171982765198,0.0410690009593964,0.443565934896469,0.0491139926016331,0.468941062688828,0.0491140075027943,0.464518934488297,0.0410689935088158,0.409794002771378, +0.0491140000522137,0.426679998636246,0.0491140000522137,0.421612977981567,0.0410690009593964,0.405054986476898,0.0410690009593964,0.393640697002411,0.0501981526613235,0.409794002771378,0.0491140000522137,0.405054986476898,0.0410690009593964,0.389293044805527,0.041069008409977,0.948694884777069,0.0238009970635176,0.949233889579773,0.0341800004243851,0.970651984214783,0.0341800004243851,0.970381855964661,0.0238009989261627,0.897342085838318,0.023801002651453,0.90066385269165,0.0341800004243851,0.924949049949646,0.0341800004243851,0.923018872737885,0.0238009989261627,0.854223012924194,0.0341800004243851,0.87744402885437,0.0341800004243851,0.874817967414856,0.0238009989261627,0.85229504108429,0.0238010007888079,0.799744009971619,0.0238009989261627,0.797349989414215,0.0341800004243851,0.825787007808685,0.0341800004243851,0.826018989086151,0.0238010007888079,0.745012998580933,0.0238010007888079,0.741383016109467,0.0341800004243851,0.769366979598999,0.0341800004243851,0.772378027439117,0.0238010007888079,0.691024899482727,0.0238009970635176,0.683539986610413,0.0341800004243851,0.712460994720459,0.0341800004243851,0.718019008636475,0.023801002651453,0.659100890159607,0.0238009970635176,0.646286010742188,0.0341800004243851,0.66491287946701,0.0341800004243851,0.675063014030457,0.0238009989261627,0.620836973190308,0.0238010045140982,0.609089970588684,0.0341800004243851,0.627687931060791,0.0341800004243851,0.639968991279602,0.0238010007888079,0.585878014564514,0.0238010007888079,0.573730945587158,0.0341800004243851,0.591410994529724,0.0341800004243851,0.603357017040253,0.0238010007888079,0.553654909133911,0.0238009970635176,0.542249023914337,0.0341800004243851,0.557989954948425,0.0341799929738045,0.56976592540741,0.0238009989261627,0.527211427688599,0.0238010045140982,0.519651293754578,0.0341800004243851,0.532018005847931,0.0341800078749657,0.542890906333923,0.0238009970635176,0.504356026649475,0.0341800004243851,0.519651293754578,0.0341800004243851,0.527211427688599,0.0238010045140982,0.514581978321075,0.0238009989261627,0.475591003894806, +0.0341800004243851,0.486924946308136,0.0341800004243851,0.497038006782532,0.0238010007888079,0.486743062734604,0.0238010007888079,0.448850095272064,0.0341800078749657,0.46425598859787,0.0341800004243851,0.476447999477386,0.0238010007888079,0.463718056678772,0.023801002651453,0.413505971431732,0.0341800004243851,0.423475027084351,0.0341800004243851,0.438712000846863,0.0238009989261627,0.426438003778458,0.023801002651453,0.406159996986389,0.0341800004243851,0.413505971431732,0.0341800004243851,0.426438003778458,0.023801002651453,0.415139049291611,0.0238010063767433,0.395220011472702,0.0341800004243851,0.39881494641304,0.0341799929738045,0.403840005397797,0.023801002651453,0.3977330327034,0.0238010045140982,0.382688999176025,0.0341800004243851,0.391626000404358,0.0341800004243851,0.391626000404358,0.0238009989261627,0.382688999176025,0.0238009989261627,0.924870014190674,0.049114003777504,0.957599103450775,0.0491140075027943,0.953853964805603,0.0410690009593964,0.917379975318909,0.0410690009593964,0.229763001203537,0.926519989967346,0.207958996295929,0.973142862319946,0.231208026409149,0.928434073925018,0.219460994005203,0.969608068466187,0.232864037156105,0.929947972297668,0.231208026409149,0.928434073925018,0.207958996295929,0.973142862319946,0.233624041080475,0.86744213104248,0.230167999863625,0.867297053337097,0.23572102189064,0.895883023738861,0.237370014190674,0.895006000995636,0.16745799779892,0.909406900405884,0.163652002811432,0.908340096473694,0.16209203004837,0.912424147129059,0.166767999529839,0.913775980472565,0.16209203004837,0.912424147129059,0.145012021064758,0.973782062530518,0.155960649251938,0.975762009620667,0.166767999529839,0.913775980472565,0.228317007422447,0.924607038497925,0.229763001203537,0.926519989967346,0.233296006917953,0.92395293712616,0.232453674077988,0.922819972038269,0.481555134057999,0.443008780479431,0.492792010307312,0.437554985284805,0.499823987483978,0.442599982023239,0.494423985481262,0.453774988651276,0.475263178348541,0.451069891452789,0.481555134057999,0.443008780479431,0.494423985481262, +0.453774988651276,0.48811000585556,0.463795006275177,0.311155021190643,0.862525105476379,0.269590049982071,0.844852983951569,0.268077999353409,0.847990989685059,0.266566932201385,0.851127803325653,0.308759033679962,0.872408986091614,0.311155021190643,0.862525105476379,0.263438940048218,0.856386005878448,0.25950700044632,0.896707057952881,0.260818988084793,0.897635102272034,0.263438940048218,0.856386005878448,0.260980933904648,0.858531832695007,0.958945214748383,0.308513671159744,0.934149861335754,0.297612369060516,0.935762882232666,0.293914884328842,0.258148014545441,0.727727890014648,0.249832004308701,0.722383975982666,0.217105001211166,0.806403875350952,0.220377027988434,0.803765058517456,0.306229829788208,0.795589685440063,0.263154000043869,0.811320066452026,0.265112996101379,0.814149022102356,0.209158971905708,0.815070986747742,0.213935032486916,0.817717015743256,0.216181993484497,0.815120995044708,0.211495935916901,0.81205677986145,0.205727994441986,0.822121977806091,0.21083702147007,0.823913097381592,0.21238599717617,0.820815026760101,0.207443997263908,0.818596005439758,0.203621998429298,0.829560041427612,0.209377005696297,0.829833984375,0.210107013583183,0.826874017715454,0.204675003886223,0.825841009616852,0.203004002571106,0.837598979473114,0.209264025092125,0.836616098880768,0.209319964051247,0.833224892616272,0.203312993049622,0.833578884601593,0.204514995217323,0.843581974506378,0.210298031568527,0.841508150100708,0.209781005978584,0.839061975479126,0.203759014606476,0.840590000152588,0.207653999328613,0.850144982337952,0.212274998426437,0.846571981906891,0.211285978555679,0.844039916992188,0.206084996461868,0.846862852573395,0.210708975791931,0.854798853397369,0.214933976531029,0.850932002067566,0.213604003190994,0.848752021789551,0.209180995821953,0.852472126483917,0.214325994253159,0.85916405916214,0.217994004487991,0.854287028312683,0.216464027762413,0.852609992027283,0.212516993284225,0.856980979442596,0.219606995582581,0.862656116485596,0.222016006708145,0.857647955417633,0.220005005598068,0.855967879295349, +0.21696600317955,0.860909879207611,0.22435300052166,0.865311980247498,0.226291969418526,0.860178887844086,0.224153995513916,0.858913004398346,0.221979975700378,0.863983869552612,0.230167999863625,0.867297053337097,0.231069996953011,0.861922025680542,0.228680998086929,0.861050009727478,0.227259993553162,0.866304993629456,0.230167999863625,0.867297053337097,0.233624041080475,0.86744213104248,0.23403200507164,0.862137854099274,0.231069996953011,0.861922025680542,0.237080037593842,0.867586135864258,0.239928990602493,0.867381989955902,0.239527970552444,0.862132847309113,0.236993849277496,0.862354218959808,0.248113036155701,0.865987122058868,0.246287003159523,0.861197113990784,0.244175001978874,0.861554980278015,0.245444998145103,0.866581976413727,0.254016011953354,0.863664984703064,0.250818014144897,0.859058022499084,0.248551994562149,0.860126972198486,0.251064002513885,0.864826023578644,0.258522987365723,0.860678017139435,0.254781007766724,0.85673201084137,0.252798974514008,0.857895016670227,0.256269007921219,0.862170994281769,0.263438940048218,0.856386005878448,0.259321987628937,0.852372109889984,0.257052004337311,0.854552030563354,0.260980933904648,0.858531832695007,0.263438940048218,0.856386005878448,0.265003025531769,0.85375702381134,0.260773062705994,0.850229203701019,0.259321987628937,0.852372109889984,0.266566932201385,0.851127803325653,0.268077999353409,0.847990989685059,0.263434052467346,0.845340013504028,0.262223988771439,0.848085880279541,0.269590049982071,0.844852983951569,0.270363003015518,0.84178102016449,0.265204012393951,0.839982986450195,0.264643996953964,0.842594027519226,0.271135985851288,0.838708996772766,0.271467000246048,0.835456013679504,0.26583606004715,0.834535181522369,0.265763998031616,0.837370991706848,0.271797060966492,0.832202196121216,0.270889073610306,0.827920198440552,0.265188992023468,0.8283811211586,0.265906989574432,0.831700026988983,0.269980013370514,0.823638021945953,0.268527030944824,0.820309102535248,0.263265013694763,0.822391092777252,0.264470934867859,0.825060904026031,0.267072975635529, +0.816978812217712,0.265112996101379,0.814149022102356,0.260140001773834,0.817054986953735,0.262057989835739,0.819720983505249,0.263154000043869,0.811320066452026,0.260743021965027,0.809063017368317,0.256319046020508,0.812657117843628,0.258221000432968,0.814388990402222,0.306229829788208,0.795589685440063,0.267072975635529,0.816978812217712,0.268527030944824,0.820309102535248,0.269980013370514,0.823638021945953,0.270889073610306,0.827920198440552,0.312473714351654,0.824710190296173,0.29674169421196,0.773239016532898,0.258332014083862,0.806807100772858,0.260743021965027,0.809063017368317,0.258332014083862,0.806807100772858,0.254903048276901,0.804720997810364,0.251630008220673,0.809348046779633,0.254416942596436,0.810924828052521,0.245511993765831,0.800615012645721,0.248493000864983,0.80162501335144,0.282282501459122,0.751516938209534,0.273290008306503,0.740649998188019,0.251473993062973,0.802634954452515,0.248493000864983,0.80162501335144,0.246378004550934,0.806834876537323,0.248842969536781,0.807769894599915,0.232207015156746,0.799700975418091,0.273290008306503,0.740649998188019,0.265718996524811,0.734188854694366,0.229324042797089,0.800420105457306,0.245511993765831,0.800615012645721,0.242440938949585,0.800091981887817,0.241305023431778,0.805560111999512,0.243912994861603,0.805900931358337,0.232207015156746,0.799700975418091,0.233680963516235,0.805439889431,0.236189007759094,0.805329978466034,0.235788002610207,0.79963493347168,0.226442024111748,0.801139116287231,0.228413999080658,0.806609988212585,0.231048032641411,0.80602502822876,0.229324042797089,0.800420105457306,0.258148014545441,0.727727890014648,0.226442024111748,0.801139116287231,0.229324042797089,0.800420105457306,0.265718996524811,0.734188854694366,0.294414013624191,0.908240973949432,0.266719996929169,0.90566885471344,0.267468065023422,0.9081911444664,0.226442024111748,0.801139116287231,0.223408997058868,0.802452147006989,0.225697994232178,0.807860970497131,0.228413999080658,0.806609988212585,0.234434023499489,0.925485014915466,0.231208026409149,0.928434073925018, +0.232864037156105,0.929947972297668,0.235772043466568,0.926684021949768,0.268270999193192,0.912784993648529,0.294414013624191,0.908240973949432,0.268216013908386,0.910714089870453,0.238186001777649,0.933619976043701,0.230963960289955,0.966071963310242,0.23854398727417,0.962161898612976,0.243027985095978,0.935053825378418,0.240607038140297,0.934337139129639,0.246123999357224,0.958252012729645,0.246811002492905,0.935530006885529,0.244919985532761,0.93529200553894,0.243027985095978,0.935053825378418,0.23854398727417,0.962161898612976,0.236352995038033,0.932541906833649,0.2345200330019,0.931463122367859,0.232864037156105,0.929947972297668,0.219460994005203,0.969608068466187,0.230963960289955,0.966071963310242,0.238186001777649,0.933619976043701,0.499823987483978,0.442599982023239,0.503509998321533,0.429521948099136,0.512215971946716,0.435739010572433,0.514537990093231,0.450159996747971,0.2345200330019,0.931463122367859,0.236352995038033,0.932541906833649,0.238569036126137,0.928735136985779,0.237109005451202,0.927883982658386,0.231101974844933,0.919762969017029,0.226959943771362,0.921266913414001,0.227638959884644,0.922936797142029,0.231630027294159,0.921092092990875,0.238186001777649,0.933619976043701,0.240607038140297,0.934337139129639,0.241962999105453,0.93013197183609,0.240030035376549,0.929587185382843,0.230295985937119,0.916307985782623,0.225927993655205,0.916956007480621,0.226444005966187,0.919111013412476,0.23069903254509,0.91803514957428,0.243027985095978,0.935053825378418,0.244919985532761,0.93529200553894,0.245400995016098,0.930850028991699,0.243896037340164,0.930676162242889,0.230118006467819,0.913669884204865,0.225672990083694,0.913625001907349,0.225799918174744,0.915289759635925,0.230206966400146,0.914988875389099,0.251451998949051,0.93507993221283,0.249989479780197,0.930578112602234,0.248721837997437,0.930771768093109,0.249132007360458,0.935304999351501,0.230118006467819,0.913669884204865,0.230382576584816,0.911921620368958,0.225939005613327,0.91139805316925,0.225672990083694,0.913625001907349,0.255028009414673, +0.933886051177979,0.253387004137039,0.929762005805969,0.251950949430466,0.930142879486084,0.253239989280701,0.934482991695404,0.230482995510101,0.91015213727951,0.231206625699997,0.908484101295471,0.22699099779129,0.907029986381531,0.226205006241798,0.909170985221863,0.258736997842789,0.93198299407959,0.256346046924591,0.928307116031647,0.254866987466812,0.929034888744354,0.25688299536705,0.932933986186981,0.231719002127647,0.906756937503815,0.232497006654739,0.905453145503998,0.228751003742218,0.903253018856049,0.227776020765305,0.904890060424805,0.258736997842789,0.93198299407959,0.26002299785614,0.930912017822266,0.257351011037827,0.927430987358093,0.256346046924591,0.928307116031647,0.233275055885315,0.904149115085602,0.234382003545761,0.902740001678467,0.23115299642086,0.899866998195648,0.229725003242493,0.901616096496582,0.261308997869492,0.929839968681335,0.262930035591125,0.928244173526764,0.259663999080658,0.925291001796722,0.25835594534874,0.926553905010223,0.238020986318588,0.899613976478577,0.23572102189064,0.895883023738861,0.234151005744934,0.897000074386597,0.236755013465881,0.900473058223724,0.24066099524498,0.898221909999847,0.239020004868507,0.894128859043121,0.237370014190674,0.895006000995636,0.239341035485268,0.898918032646179,0.266692072153091,0.922824025154114,0.267268002033234,0.921169996261597,0.263068974018097,0.919716894626617,0.262612998485565,0.921012997627258,0.244134515523911,0.897363543510437,0.243497997522354,0.892763018608093,0.24125899374485,0.893445909023285,0.242461740970612,0.897755563259125,0.267842978239059,0.91951596736908,0.268083989620209,0.91718602180481,0.263679951429367,0.916565895080566,0.263523995876312,0.918420076370239,0.247449964284897,0.896917998790741,0.247573986649513,0.892416894435883,0.245535999536514,0.892589867115021,0.245860770344734,0.897128164768219,0.268216013908386,0.910714089870453,0.26382303237915,0.911422193050385,0.263828992843628,0.913066148757935,0.268270999193192,0.912784993648529,0.247449964284897,0.896917998790741,0.249168217182159,0.897170126438141, +0.249738022685051,0.892760097980499,0.247573986649513,0.892416894435883,0.266719996929169,0.90566885471344,0.262661993503571,0.907397985458374,0.263242065906525,0.909409999847412,0.267468065023422,0.9081911444664,0.250885993242264,0.897421896457672,0.252130001783371,0.897748947143555,0.253472983837128,0.893541812896729,0.251902014017105,0.893103897571564,0.264479011297226,0.901561975479126,0.260933995246887,0.904097080230713,0.261798024177551,0.905747175216675,0.265598952770233,0.903614819049835,0.253374010324478,0.898076057434082,0.254624038934708,0.89879310131073,0.25661900639534,0.894879937171936,0.255042999982834,0.893980026245117,0.264479011297226,0.901561975479126,0.26264899969101,0.899598002433777,0.259452998638153,0.902548909187317,0.260933995246887,0.904097080230713,0.255872964859009,0.899509906768799,0.256922960281372,0.900254964828491,0.25950700044632,0.896707057952881,0.258195072412491,0.895779132843018,0.131770968437195,0.838591873645782,0.128236025571823,0.841141104698181,0.130135998129845,0.843268990516663,0.133429035544395,0.84021133184433,0.129834026098251,0.835277199745178,0.125830993056297,0.837104856967926,0.127032995223999,0.839123010635376,0.130802005529404,0.836933851242065,0.132034987211227,0.845395863056183,0.13399900496006,0.846686124801636,0.136610954999924,0.842978835105896,0.134927004575729,0.842046022415161,0.128730982542038,0.831514000892639,0.124442979693413,0.832515001296997,0.125137001276016,0.834809899330139,0.129281997680664,0.833395004272461,0.13596199452877,0.847976982593536,0.138525992631912,0.848952054977417,0.140211999416351,0.844904005527496,0.138135001063347,0.84412693977356,0.128448992967606,0.827762126922607,0.124041989445686,0.827865958213806,0.12424299120903,0.830189883708954,0.128589987754822,0.829637885093689,0.141091033816338,0.849927008152008,0.143690004944801,0.850366055965424,0.144391000270844,0.846006989479065,0.142287999391556,0.845679998397827,0.128448992967606,0.827762126922607,0.129143506288528,0.823200345039368,0.125026673078537,0.822036325931549,0.124041989445686, +0.827865958213806,0.151248008012772,0.85042005777359,0.150496006011963,0.846076905727386,0.148495018482208,0.84620612859726,0.148768991231918,0.850611984729767,0.157495975494385,0.84834885597229,0.155581995844841,0.844434976577759,0.153038993477821,0.845255970954895,0.154372006654739,0.849385023117065,0.162231966853142,0.845281004905701,0.159446999430656,0.841986060142517,0.157514974474907,0.843210875988007,0.159863963723183,0.84681499004364,0.162231966853142,0.845281004905701,0.164311036467552,0.842976152896881,0.161109030246735,0.840085029602051,0.159446999430656,0.841986060142517,0.129143506288528,0.823200345039368,0.131081998348236,0.818454027175903,0.127483010292053,0.815995931625366,0.125026673078537,0.822036325931549,0.166390016674995,0.840671002864838,0.167695999145508,0.83817994594574,0.163823992013931,0.836151957511902,0.162771001458168,0.838183104991913,0.132789015769958,0.81522810459137,0.134283006191254,0.813722014427185,0.131311997771263,0.810617983341217,0.129454001784325,0.812444031238556,0.169002994894981,0.835688948631287,0.169715017080307,0.83305698633194,0.165430992841721,0.831982970237732,0.164875984191895,0.834120988845825,0.139712005853653,0.809993028640747,0.137966990470886,0.806003868579865,0.135568022727966,0.80739814043045,0.137743979692459,0.811105012893677,0.170579001307487,0.82524299621582,0.166173025965691,0.825654983520508,0.165947198867798,0.827751815319061,0.170503050088882,0.827834188938141,0.143754988908768,0.80883002281189,0.142946004867554,0.804533004760742,0.140457004308701,0.805267930030823,0.14173299074173,0.809410989284515,0.169458046555519,0.819946110248566,0.165286034345627,0.82134211063385,0.165596455335617,0.823500275611877,0.170019000768661,0.822595000267029,0.147746995091438,0.808448433876038,0.147883012890816,0.804007053375244,0.145413994789124,0.804270148277283,0.145750999450684,0.80863893032074,0.167472004890442,0.815322995185852,0.163723036646843,0.817577064037323,0.164505004882813,0.819459855556488,0.168465003371239,0.817633986473083,0.147746995091438,0.808448433876038, +0.150339007377625,0.808799862861633,0.151067018508911,0.804484069347382,0.147883012890816,0.804007053375244,0.164250001311302,0.811356961727142,0.161130964756012,0.814327836036682,0.162426978349686,0.815953016281128,0.165861025452614,0.813340067863464,0.15293200314045,0.809152007102966,0.155330970883369,0.810316026210785,0.157184958457947,0.80639785528183,0.154251992702484,0.804961025714874,0.164250001311302,0.811356961727142,0.162183001637459,0.809596002101898,0.159430980682373,0.812904000282288,0.161130964756012,0.814327836036682,0.19389696419239,0.892790913581848,0.189453974366188,0.892405986785889,0.189094007015228,0.894155919551849,0.193435966968536,0.894949972629547,0.19385701417923,0.88764101266861,0.189288169145584,0.888238489627838,0.189339846372604,0.890329122543335,0.193876951932907,0.890215814113617,0.188733026385307,0.895905137062073,0.188003987073898,0.897836923599243,0.192049041390419,0.899492263793945,0.192974999547005,0.897108972072601,0.19268199801445,0.882551074028015,0.188522011041641,0.884101986885071,0.188874810934067,0.886189818382263,0.193269997835159,0.885096073150635,0.187273994088173,0.899769008159637,0.186094999313354,0.90141898393631,0.189672023057938,0.903910100460052,0.191124007105827,0.901875019073486,0.189934000372887,0.877131879329681,0.186338007450104,0.879661917686462,0.187429994344711,0.881881952285767,0.191308006644249,0.879841029644012,0.184916004538536,0.903069019317627,0.183382004499435,0.904502987861633,0.186330005526543,0.90768301486969,0.188220992684364,0.905944049358368,0.189934000372887,0.877131879329681,0.188528001308441,0.875524818897247,0.185181021690369,0.878381013870239,0.186338007450104,0.879661917686462,0.17856203019619,0.908038139343262,0.180418998003006,0.912024021148682,0.182429000735283,0.910722970962524,0.180205002427101,0.906988024711609,0.187121003866196,0.873919010162354,0.184879034757614,0.872247099876404,0.182181000709534,0.87574702501297,0.184024006128311,0.877098977565765,0.174044981598854,0.909560859203339,0.174874976277351,0.913913905620575,0.177646994590759, +0.912968993186951,0.176264539361,0.908640146255493,0.182636991143227,0.870575070381165,0.180204004049301,0.869508922100067,0.17835097014904,0.873531818389893,0.180338963866234,0.874393939971924,0.169484034180641,0.909756124019623,0.169252991676331,0.914233982563019,0.172063991427422,0.914073944091797,0.171733915805817,0.909497380256653,0.177770033478737,0.868443131446838,0.174769997596741,0.867873013019562,0.17391300201416,0.872226893901825,0.176362991333008,0.872668862342834,0.169484034180641,0.909756124019623,0.16745799779892,0.909406900405884,0.166767999529839,0.913775980472565,0.169252991676331,0.914233982563019,0.166509002447128,0.867784976959229,0.167215034365654,0.872119188308716,0.169339001178741,0.871951997280121,0.169138997793198,0.867543995380402,0.161119997501373,0.869182109832764,0.162867993116379,0.873185992240906,0.165040999650955,0.872652053833008,0.163813978433609,0.868482887744904,0.161871999502182,0.907621026039124,0.159760981798172,0.906389892101288,0.157324999570847,0.909986019134521,0.159899994730949,0.911529004573822,0.156433001160622,0.87204384803772,0.15905599296093,0.875485002994537,0.160961985588074,0.874336004257202,0.158776998519897,0.870613098144531,0.157649993896484,0.905160009860992,0.156345993280411,0.90375804901123,0.153162002563477,0.906701147556305,0.154750004410744,0.908442974090576,0.156433001160622,0.87204384803772,0.15429300069809,0.874029994010925,0.157324999570847,0.87712299823761,0.15905599296093,0.875485002994537,0.152803003787994,0.89876389503479,0.148780003190041,0.900569021701813,0.150177031755447,0.902763247489929,0.153923004865646,0.900560021400452,0.152152016758919,0.876016020774841,0.150749996304512,0.878081977367401,0.154578894376755,0.880492925643921,0.155595004558563,0.878760993480682,0.151582986116409,0.89467191696167,0.147225990891457,0.895551860332489,0.148002997040749,0.898060083389282,0.152192980051041,0.89671802520752,0.149349004030228,0.880149006843567,0.148475006222725,0.882598996162415,0.152736932039261,0.884171962738037,0.153314992785454,0.882128000259399, +0.14690600335598,0.890645980834961,0.147065997123718,0.893099009990692,0.151482999324799,0.892673969268799,0.151382997632027,0.890676021575928,0.147601008415222,0.885048985481262,0.147254005074501,0.887848019599915,0.151647001504898,0.888396859169006,0.151911020278931,0.886118054389954,0.184024006128311,0.877098977565765,0.182181000709534,0.87574702501297,0.171462967991829,0.871784508228302,0.989481091499329,0.32054415345192,0.98834228515625,0.32353675365448,0.958945214748383,0.308513671159744,0.976289391517639,0.27773317694664,0.979305386543274,0.280641734600067,0.958945214748383,0.308513671159744,0.93331778049469,0.319255739450455,0.958945214748383,0.308513671159744,0.934687256813049,0.32258740067482,0.958945214748383,0.308513671159744,0.933202683925629,0.302246570587158,0.934149861335754,0.297612369060516,0.979653477668762,0.335122406482697,0.974914789199829,0.338147073984146,0.958945214748383,0.308513671159744,0.449660986661911,0.24575200676918,0.456225991249084,0.246564000844955,0.455271005630493,0.253883004188538,0.44827800989151,0.253098011016846,0.462792038917542,0.247375011444092,0.470054984092712,0.24702200293541,0.470162987709045,0.254211038351059,0.462264001369476,0.254667997360229,0.477317988872528,0.246667996048927,0.484845995903015,0.245103001594543,0.486257016658783,0.251954048871994,0.478062033653259,0.253755003213882,0.504427433013916,0.237697571516037,0.509017944335938,0.244648933410645,0.501734972000122,0.247402012348175,0.497912466526031,0.240251570940018,0.521490216255188,0.227996230125427,0.529126763343811,0.234602153301239,0.518692910671234,0.23992595076561,0.512776255607605,0.232542186975479,0.476404994726181,0.916370987892151,0.466200917959213,0.916217803955078,0.465090811252594,0.925256371498108,0.475810468196869,0.925846993923187,0.971887230873108,0.276029467582703,0.958945214748383,0.308513671159744,0.968048453330994,0.274119347333908,0.457788109779358,0.916652858257294,0.458849370479584,0.925424754619598,0.465090811252594,0.925256371498108,0.466200917959213,0.916217803955078,0.498829990625381, +0.919524013996124,0.487617999315262,0.917948007583618,0.484995007514954,0.926473021507263,0.495117008686066,0.927724957466125,0.512184023857117,0.932644009590149,0.517988979816437,0.925292015075684,0.508409976959229,0.922408044338226,0.503650009632111,0.93018501996994,0.533399879932404,0.93437784910202,0.525695025920868,0.929835021495819,0.519091010093689,0.936658978462219,0.525998950004578,0.940673887729645,0.534962058067322,0.94893205165863,0.543422996997833,0.943652987480164,0.538412094116211,0.939016044139862,0.530480980873108,0.94480299949646,0.542050004005432,0.960523962974548,0.551113069057465,0.956089019775391,0.547267854213715,0.949870824813843,0.538505971431732,0.954728007316589,0.542050004005432,0.960523962974548,0.543892979621887,0.967753052711487,0.55285108089447,0.963500022888184,0.551113069057465,0.956089019775391,0.437647014856339,0.795888006687164,0.435568004846573,0.803097009658813,0.428858041763306,0.803085088729858,0.430916965007782,0.795754909515381,0.958945214748383,0.308513671159744,0.935762882232666,0.293914884328842,0.937372505664825,0.290216207504272,0.932814121246338,0.316042840480804,0.932308077812195,0.312830179929733,0.958945214748383,0.308513671159744,0.932249903678894,0.306879699230194,0.958945214748383,0.308513671159744,0.932280242443085,0.309854984283447,0.461397975683212,0.802904009819031,0.45776504278183,0.809272050857544,0.44666600227356,0.806183993816376,0.449523001909256,0.799395978450775,0.481497079133987,0.816199123859406,0.476096987724304,0.820734977722168,0.4669309258461,0.815002918243408,0.471447944641113,0.809551954269409,0.481497079133987,0.816199123859406,0.491209983825684,0.827916026115417,0.484454065561295,0.831747114658356,0.476096987724304,0.820734977722168,0.679005026817322,0.151510000228882,0.667936027050018,0.144687995314598,0.654299020767212,0.147488996386528,0.664981007575989,0.154017999768257,0.958945214748383,0.308513671159744,0.957139730453491,0.275966286659241,0.960848927497864,0.275173604488373,0.650957107543945,0.156525030732155,0.640661001205444,0.150290012359619, +0.627624988555908,0.153221011161804,0.636853039264679,0.159445002675056,0.614588975906372,0.156151995062828,0.604407131671906,0.158278033137321,0.611733019351959,0.164752975106239,0.622748017311096,0.162363976240158,0.59422504901886,0.16040301322937,0.587234854698181,0.161921963095665,0.593088030815125,0.168960005044937,0.600718021392822,0.167142003774643,0.585457980632782,0.170779004693031,0.580245971679688,0.163441002368927,0.568976998329163,0.165389999747276,0.573532998561859,0.173264995217323,0.557708024978638,0.167338997125626,0.547753930091858,0.168069005012512,0.55094701051712,0.177009001374245,0.561607003211975,0.175750985741615,0.537800014019012,0.168120801448822,0.524708986282349,0.167145788669586,0.526793003082275,0.177669003605843,0.540287017822266,0.178265988826752,0.476910918951035,0.903189897537231,0.476404994726181,0.916370987892151,0.487617999315262,0.917948007583618,0.488929986953735,0.903916001319885,0.958945214748383,0.308513671159744,0.950121641159058,0.278326988220215,0.953429400920868,0.276756227016449,0.983426809310913,0.330823957920074,0.958945214748383,0.308513671159744,0.987205386161804,0.326529949903488,0.946812033653259,0.27989536523819,0.958945214748383,0.308513671159744,0.944007039070129,0.282421767711639,0.941199898719788,0.284946262836456,0.958945214748383,0.308513671159744,0.939287424087524,0.28758180141449,0.991849541664124,0.301544964313507,0.958945214748383,0.308513671159744,0.990837097167969,0.297960251569748,0.549119114875793,0.283560037612915,0.534769117832184,0.286010056734085,0.525038123130798,0.249454036355019,0.537480592727661,0.244022369384766,0.958945214748383,0.308513671159744,0.988710522651672,0.291981399059296,0.989827275276184,0.294374853372574,0.987594723701477,0.289587408304214,0.958945214748383,0.308513671159744,0.984957575798035,0.286229699850082,0.991849541664124,0.311111330986023,0.958945214748383,0.308513671159744,0.991847157478333,0.306328058242798,0.991849541664124,0.311111330986023,0.990663051605225,0.315827190876007,0.958945214748383,0.308513671159744,0.669582009315491, +0.172124981880188,0.655004024505615,0.174863025546074,0.683152079582214,0.195439025759697,0.700708031654358,0.191886022686958,0.713954865932465,0.202014982700348,0.725744128227234,0.211363047361374,0.745555996894836,0.209741994738579,0.733123183250427,0.199842065572739,0.745555996894836,0.209741994738579,0.768899023532867,0.210233002901077,0.753077983856201,0.198167994618416,0.733123183250427,0.199842065572739,0.753077983856201,0.198167994618416,0.73725700378418,0.186102002859116,0.718404948711395,0.188898995518684,0.733123183250427,0.199842065572739,0.614292025566101,0.184501007199287,0.633455991744995,0.211217001080513,0.650138020515442,0.204368993639946,0.627358973026276,0.181050986051559,0.0964563190937042,0.568715572357178,0.0541765205562115,0.537130296230316,0.0534786731004715,0.55276882648468,0.0912920087575912,0.591284394264221,0.776177048683167,0.216144993901253,0.768899023532867,0.210233002901077,0.745555996894836,0.209741994738579,0.755701124668121,0.21739199757576,0.680154085159302,0.209366023540497,0.693824112415314,0.218162029981613,0.708722114562988,0.214132040739059,0.696359932422638,0.205184981226921,0.708722114562988,0.214132040739059,0.725744128227234,0.211363047361374,0.713954865932465,0.202014982700348,0.696359932422638,0.205184981226921,0.713954865932465,0.202014982700348,0.700708031654358,0.191886022686958,0.683152079582214,0.195439025759697,0.696359932422638,0.205184981226921,0.760260045528412,0.236258029937744,0.777350008487701,0.247710004448891,0.792692899703979,0.244441956281662,0.778818070888519,0.234795048832893,0.792692899703979,0.244441956281662,0.813354969024658,0.245452001690865,0.798405051231384,0.23375503718853,0.778818070888519,0.234795048832893,0.729286968708038,0.241926997900009,0.705782055854797,0.225902035832405,0.693166017532349,0.231291994452477,0.716818988323212,0.246556997299194,0.736557960510254,0.219146966934204,0.725744128227234,0.211363047361374,0.708722114562988,0.214132040739059,0.72008204460144,0.221919000148773,0.58959698677063,0.187631994485855,0.598687887191772, +0.209730952978134,0.613956093788147,0.210284024477005,0.601944029331207,0.186067014932632,0.650138020515442,0.204368993639946,0.633455991744995,0.211217001080513,0.653496980667114,0.222157999873161,0.665151119232178,0.21457202732563,0.653496980667114,0.222157999873161,0.669553935527802,0.23089599609375,0.680386066436768,0.223562002182007,0.665151119232178,0.21457202732563,0.680386066436768,0.223562002182007,0.693824112415314,0.218162029981613,0.680154085159302,0.209366023540497,0.665151119232178,0.21457202732563,0.67010486125946,0.257404953241348,0.689944267272949,0.267028480768204,0.699417948722839,0.26028299331665,0.675747990608215,0.247396022081375,0.705782055854797,0.225902035832405,0.693824112415314,0.218162029981613,0.680386066436768,0.223562002182007,0.693166017532349,0.231291994452477,0.729286968708038,0.241926997900009,0.741931021213531,0.25118100643158,0.756885051727295,0.248537003993988,0.743758857250214,0.238563999533653,0.756885051727295,0.248537003993988,0.777350008487701,0.247710004448891,0.760260045528412,0.236258029937744,0.743758857250214,0.238563999533653,0.8058140873909,0.25620499253273,0.832390010356903,0.263554006814957,0.822871923446655,0.254503011703491,0.80608606338501,0.251632004976273,0.822871923446655,0.254503011703491,0.813354969024658,0.245452001690865,0.792692899703979,0.244441956281662,0.80608606338501,0.251632004976273,0.0547330006957054,0.523630976676941,0.0983220487833023,0.552909016609192,0.100517928600311,0.528115093708038,0.0556057170033455,0.504808902740479,0.706736028194427,0.252620011568069,0.718622982501984,0.260405004024506,0.729098081588745,0.255113989114761,0.716818988323212,0.246556997299194,0.729098081588745,0.255113989114761,0.741931021213531,0.25118100643158,0.729286968708038,0.241926997900009,0.716818988323212,0.246556997299194,0.721700429916382,0.285606265068054,0.73037713766098,0.280717730522156,0.710744976997375,0.267123013734818,0.704292118549347,0.274253010749817,0.854375898838043,0.306699901819229,0.875992059707642,0.311134994029999,0.859004020690918,0.292744010686874, +0.838329970836639,0.289550989866257,0.859004020690918,0.292744010686874,0.842015981674194,0.274354010820389,0.820916891098022,0.271835833787918,0.838329970836639,0.289550989866257,0.820916891098022,0.271835833787918,0.799286842346191,0.268679529428482,0.818339824676514,0.286892950534821,0.838329970836639,0.289550989866257,0.814671993255615,0.30000901222229,0.833792924880981,0.302718997001648,0.818339824676514,0.286892950534821,0.799717009067535,0.285304009914398,0.818339824676514,0.286892950534821,0.799286842346191,0.268679529428482,0.780579209327698,0.268187642097473,0.799717009067535,0.285304009914398,0.780579209327698,0.268187642097473,0.764561533927917,0.269233167171478,0.782972812652588,0.28507199883461,0.799717009067535,0.285304009914398,0.884895026683807,0.343131989240646,0.90755295753479,0.349373996257782,0.891772985458374,0.330255031585693,0.870013952255249,0.324571967124939,0.891772985458374,0.330255031585693,0.875992059707642,0.311134994029999,0.854375898838043,0.306699901819229,0.870013952255249,0.324571967124939,0.854375898838043,0.306699901819229,0.833792924880981,0.302718997001648,0.849000930786133,0.31954100728035,0.870013952255249,0.324571967124939,0.843689978122711,0.33236899971962,0.863541185855865,0.337092071771622,0.849000930786133,0.31954100728035,0.829477906227112,0.315814942121506,0.849000930786133,0.31954100728035,0.833792924880981,0.302718997001648,0.814671993255615,0.30000901222229,0.829477906227112,0.315814942121506,0.814671993255615,0.30000901222229,0.797487020492554,0.298797011375427,0.811922132968903,0.313626050949097,0.829477906227112,0.315814942121506,0.910988092422485,0.38159105181694,0.934700965881348,0.391272008419037,0.921126961708069,0.370323002338409,0.898669123649597,0.362346053123474,0.921126961708069,0.370323002338409,0.90755295753479,0.349373996257782,0.884895026683807,0.343131989240646,0.898669123649597,0.362346053123474,0.884895026683807,0.343131989240646,0.863541185855865,0.337092071771622,0.876990020275116,0.355100989341736,0.898669123649597,0.362346053123474,0.868884027004242, +0.366432011127472,0.889160871505737,0.373210936784744,0.876990020275116,0.355100989341736,0.856866002082825,0.349319040775299,0.876990020275116,0.355100989341736,0.863541185855865,0.337092071771622,0.843689978122711,0.33236899971962,0.856866002082825,0.349319040775299,0.843689978122711,0.33236899971962,0.82582700252533,0.32920503616333,0.838752090930939,0.345178991556168,0.856866002082825,0.349319040775299,0.930532217025757,0.418354988098145,0.952960848808289,0.429154932498932,0.943830966949463,0.410212993621826,0.921501994132996,0.400243014097214,0.943830966949463,0.410212993621826,0.934700965881348,0.391272008419037,0.910988092422485,0.38159105181694,0.921501994132996,0.400243014097214,0.910988092422485,0.38159105181694,0.889160871505737,0.373210936784744,0.899866998195648,0.391065001487732,0.921501994132996,0.400243014097214,0.917267024517059,0.425794988870621,0.924144983291626,0.442734003067017,0.945116996765137,0.453285992145538,0.938396751880646,0.435977876186371,0.945116996765137,0.453285992145538,0.967273831367493,0.46454992890358,0.960116982460022,0.446853011846542,0.938396751880646,0.435977876186371,0.960116982460022,0.446853011846542,0.952960848808289,0.429154932498932,0.930532217025757,0.418354988098145,0.938396751880646,0.435977876186371,0.889093995094299,0.400356948375702,0.909204006195068,0.408610939979553,0.899866998195648,0.391065001487732,0.879621207714081,0.383474051952362,0.899866998195648,0.391065001487732,0.889160871505737,0.373210936784744,0.868884027004242,0.366432011127472,0.879621207714081,0.383474051952362,0.868884027004242,0.366432011127472,0.850604057312012,0.361371070146561,0.86129093170166,0.377604961395264,0.879621207714081,0.383474051952362,0.929925084114075,0.459544986486435,0.934599101543427,0.476232051849365,0.955096006393433,0.48742800951004,0.950711011886597,0.470450013875961,0.955096006393433,0.48742800951004,0.976952016353607,0.499360024929047,0.972113013267517,0.48195493221283,0.950711011886597,0.470450013875961,0.972113013267517,0.48195493221283,0.967273831367493,0.46454992890358, +0.945116996765137,0.453285992145538,0.950711011886597,0.470450013875961,0.90438312292099,0.433459043502808,0.924144983291626,0.442734003067017,0.917267024517059,0.425794988870621,0.89731901884079,0.416992008686066,0.917267024517059,0.425794988870621,0.909204006195068,0.408610939979553,0.889093995094299,0.400356948375702,0.89731901884079,0.416992008686066,0.889093995094299,0.400356948375702,0.870806932449341,0.393777936697006,0.879145920276642,0.409786999225616,0.89731901884079,0.416992008686066,0.938154101371765,0.492801070213318,0.940731048583984,0.509362995624542,0.960290014743805,0.520960986614227,0.958187103271484,0.504174113273621,0.960290014743805,0.520960986614227,0.980614066123962,0.532685995101929,0.978782892227173,0.516022920608521,0.958187103271484,0.504174113273621,0.978782892227173,0.516022920608521,0.976952016353607,0.499360024929047,0.955096006393433,0.48742800951004,0.958187103271484,0.504174113273621,0.915315985679626,0.466140061616898,0.934599101543427,0.476232051849365,0.929925084114075,0.459544986486435,0.910372018814087,0.449837952852249,0.929925084114075,0.459544986486435,0.924144983291626,0.442734003067017,0.90438312292099,0.433459043502808,0.910372018814087,0.449837952852249,0.90438312292099,0.433459043502808,0.886377036571503,0.425695985555649,0.892567098140717,0.441573083400726,0.910372018814087,0.449837952852249,0.942471981048584,0.526031017303467,0.943222880363464,0.542814970016479,0.962199985980988,0.555469989776611,0.961710870265961,0.538057923316956,0.962199985980988,0.555469989776611,0.98232901096344,0.568279027938843,0.981471002101898,0.550481975078583,0.961710870265961,0.538057923316956,0.981471002101898,0.550481975078583,0.980614066123962,0.532685995101929,0.960290014743805,0.520960986614227,0.961710870265961,0.538057923316956,0.922213971614838,0.498582929372787,0.940731048583984,0.509362995624542,0.938154101371765,0.492801070213318,0.919246017932892,0.482376009225845,0.938154101371765,0.492801070213318,0.934599101543427,0.476232051849365,0.915315985679626,0.466140061616898,0.919246017932892, +0.482376009225845,0.915315985679626,0.466140061616898,0.897756218910217,0.457413077354431,0.901983022689819,0.473213016986847,0.919246017932892,0.482376009225845,0.942830979824066,0.559723973274231,0.941311061382294,0.576426029205322,0.959558010101318,0.590735971927643,0.961509883403778,0.573198974132538,0.959558010101318,0.590735971927643,0.979162991046906,0.606033027172089,0.980745911598206,0.587155997753143,0.961509883403778,0.573198974132538,0.980745911598206,0.587155997753143,0.98232901096344,0.568279027938843,0.962199985980988,0.555469989776611,0.961509883403778,0.573198974132538,0.925327003002167,0.531008958816528,0.943222880363464,0.542814970016479,0.942471981048584,0.526031017303467,0.924275994300842,0.514796018600464,0.942471981048584,0.526031017303467,0.940731048583984,0.509362995624542,0.922213971614838,0.498582929372787,0.924275994300842,0.514796018600464,0.922213971614838,0.498582929372787,0.905264019966125,0.488976925611496,0.907615959644318,0.504714012145996,0.924275994300842,0.514796018600464,0.93868100643158,0.592588007450104,0.935082972049713,0.608123004436493,0.951969027519226,0.623525023460388,0.956260919570923,0.607572019100189,0.951969027519226,0.623525023460388,0.969552755355835,0.640332937240601,0.974358022212982,0.623183012008667,0.956260919570923,0.607572019100189,0.974358022212982,0.623183012008667,0.979162991046906,0.606033027172089,0.959558010101318,0.590735971927643,0.956260919570923,0.607572019100189,0.924171149730682,0.563226103782654,0.941311061382294,0.576426029205322,0.942830979824066,0.559723973274231,0.925262868404388,0.547213912010193,0.942830979824066,0.559723973274231,0.943222880363464,0.542814970016479,0.925327003002167,0.531008958816528,0.925262868404388,0.547213912010193,0.925327003002167,0.531008958816528,0.908967852592468,0.52039498090744,0.90925008058548,0.53599214553833,0.925262868404388,0.547213912010193,0.930662989616394,0.622946977615356,0.925431966781616,0.637273013591766,0.941280901432037,0.652642011642456,0.947032928466797,0.638414978981018,0.941280901432037,0.652642011642456, +0.958240866661072,0.668592929840088,0.963896989822388,0.654462993144989,0.947032928466797,0.638414978981018,0.963896989822388,0.654462993144989,0.969552755355835,0.640332937240601,0.951969027519226,0.623525023460388,0.947032928466797,0.638414978981018,0.919170022010803,0.594022989273071,0.935082972049713,0.608123004436493,0.93868100643158,0.592588007450104,0.922136008739471,0.578858017921448,0.93868100643158,0.592588007450104,0.941311061382294,0.576426029205322,0.924171149730682,0.563226103782654,0.922136008739471,0.578858017921448,0.924171149730682,0.563226103782654,0.908576846122742,0.551422953605652,0.907058954238892,0.566604018211365,0.922136008739471,0.578858017921448,0.901292979717255,0.59577602148056,0.897112965583801,0.609780967235565,0.910574853420258,0.622847020626068,0.915282011032104,0.608636021614075,0.910574853420258,0.622847020626068,0.925431966781616,0.637273013591766,0.930662989616394,0.622946977615356,0.915282011032104,0.608636021614075,0.930662989616394,0.622946977615356,0.935082972049713,0.608123004436493,0.919170022010803,0.594022989273071,0.915282011032104,0.608636021614075,0.926918029785156,0.680264055728912,0.942016124725342,0.695973992347717,0.950127959251404,0.6822829246521,0.934542000293732,0.666604995727539,0.950127959251404,0.6822829246521,0.958240866661072,0.668592929840088,0.941280901432037,0.652642011642456,0.934542000293732,0.666604995727539,0.941280901432037,0.652642011642456,0.925431966781616,0.637273013591766,0.919401943683624,0.651315927505493,0.934542000293732,0.666604995727539,0.892228007316589,0.623564004898071,0.886572003364563,0.637187004089355,0.898926019668579,0.650562882423401,0.905151009559631,0.636806011199951,0.898926019668579,0.650562882423401,0.91253000497818,0.665102005004883,0.919401943683624,0.651315927505493,0.905151009559631,0.636806011199951,0.919401943683624,0.651315927505493,0.925431966781616,0.637273013591766,0.910574853420258,0.622847020626068,0.905151009559631,0.636806011199951,0.894969999790192,0.541304886341095,0.883381903171539,0.532896995544434,0.882631003856659, +0.547196984291077,0.893881976604462,0.556052088737488,0.882631003856659,0.547196984291077,0.881047070026398,0.561316013336182,0.891937017440796,0.570533871650696,0.893881976604462,0.556052088737488,0.891937017440796,0.570533871650696,0.904647886753082,0.581424951553345,0.907058954238892,0.566604018211365,0.893881976604462,0.556052088737488,0.878652989864349,0.575232982635498,0.875483870506287,0.58890289068222,0.885450899600983,0.598491013050079,0.88909900188446,0.584660887718201,0.885450899600983,0.598491013050079,0.897112965583801,0.609780967235565,0.901292979717255,0.59577602148056,0.88909900188446,0.584660887718201,0.901292979717255,0.59577602148056,0.904647886753082,0.581424951553345,0.891937017440796,0.570533871650696,0.88909900188446,0.584660887718201,0.909003913402557,0.70678585767746,0.92324697971344,0.721463024616241,0.932631969451904,0.708718001842499,0.918506979942322,0.69357693195343,0.932631969451904,0.708718001842499,0.942016124725342,0.695973992347717,0.926918029785156,0.680264055728912,0.918506979942322,0.69357693195343,0.926918029785156,0.680264055728912,0.91253000497818,0.665102005004883,0.904772996902466,0.67865401506424,0.918506979942322,0.69357693195343,0.880078017711639,0.650712013244629,0.872696042060852,0.664249062538147,0.883770108222961,0.677738130092621,0.891816973686218,0.664168953895569,0.883770108222961,0.677738130092621,0.896005988121033,0.692122936248779,0.904772996902466,0.67865401506424,0.891816973686218,0.664168953895569,0.904772996902466,0.67865401506424,0.91253000497818,0.665102005004883,0.898926019668579,0.650562882423401,0.891816973686218,0.664168953895569,0.8715740442276,0.602280974388123,0.866910994052887,0.615464985370636,0.875929951667786,0.625513970851898,0.881071925163269,0.612082004547119,0.875929951667786,0.625513970851898,0.886572003364563,0.637187004089355,0.892228007316589,0.623564004898071,0.881071925163269,0.612082004547119,0.892228007316589,0.623564004898071,0.897112965583801,0.609780967235565,0.885450899600983,0.598491013050079,0.881071925163269,0.612082004547119, +0.886088013648987,0.732926964759827,0.8975590467453,0.747945070266724,0.91040313243866,0.73470413684845,0.89809912443161,0.720131099224091,0.91040313243866,0.73470413684845,0.92324697971344,0.721463024616241,0.909003913402557,0.70678585767746,0.89809912443161,0.720131099224091,0.909003913402557,0.70678585767746,0.896005988121033,0.692122936248779,0.886105120182037,0.705655992031097,0.89809912443161,0.720131099224091,0.864377975463867,0.677909016609192,0.855153977870941,0.691522061824799,0.864715874195099,0.704779028892517,0.874732971191406,0.691380023956299,0.864715874195099,0.704779028892517,0.875140011310577,0.71875411272049,0.886105120182037,0.705655992031097,0.874732971191406,0.691380023956299,0.886105120182037,0.705655992031097,0.896005988121033,0.692122936248779,0.883770108222961,0.677738130092621,0.874732971191406,0.691380023956299,0.8614821434021,0.628551006317139,0.855168104171753,0.641739130020142,0.863183975219727,0.652272999286652,0.869991064071655,0.638870000839233,0.863183975219727,0.652272999286652,0.872696042060852,0.664249062538147,0.880078017711639,0.650712013244629,0.869991064071655,0.638870000839233,0.880078017711639,0.650712013244629,0.886572003364563,0.637187004089355,0.875929951667786,0.625513970851898,0.869991064071655,0.638870000839233,0.859609007835388,0.756128013134003,0.869791865348816,0.768453896045685,0.883675992488861,0.75819993019104,0.873267948627472,0.744490027427673,0.883675992488861,0.75819993019104,0.8975590467453,0.747945070266724,0.886088013648987,0.732926964759827,0.873267948627472,0.744490027427673,0.886088013648987,0.732926964759827,0.875140011310577,0.71875411272049,0.863179802894592,0.730915904045105,0.873267948627472,0.744490027427673,0.845055997371674,0.704913020133972,0.834200024604797,0.71825098991394,0.841974020004272,0.730394065380096,0.853729009628296,0.717616021633148,0.841974020004272,0.730394065380096,0.850422024726868,0.743056118488312,0.863179802894592,0.730915904045105,0.853729009628296,0.717616021633148,0.863179802894592,0.730915904045105,0.875140011310577, +0.71875411272049,0.864715874195099,0.704779028892517,0.853729009628296,0.717616021633148,0.847849011421204,0.65522700548172,0.839611887931824,0.668893873691559,0.846792995929718,0.679499983787537,0.855436265468597,0.665848135948181,0.846792995929718,0.679499983787537,0.855153977870941,0.691522061824799,0.864377975463867,0.677909016609192,0.855436265468597,0.665848135948181,0.864377975463867,0.677909016609192,0.872696042060852,0.664249062538147,0.863183975219727,0.652272999286652,0.855436265468597,0.665848135948181,0.856455028057098,0.586687982082367,0.853068232536316,0.599366128444672,0.859423160552979,0.606960117816925,0.863627016544342,0.594084024429321,0.859423160552979,0.606960117816925,0.866910994052887,0.615464985370636,0.8715740442276,0.602280974388123,0.863627016544342,0.594084024429321,0.8715740442276,0.602280974388123,0.875483870506287,0.58890289068222,0.867111921310425,0.580940008163452,0.863627016544342,0.594084024429321,0.848211109638214,0.611489117145538,0.843353986740112,0.623612999916077,0.848580002784729,0.632574021816254,0.854471981525421,0.619663000106812,0.848580002784729,0.632574021816254,0.855168104171753,0.641739130020142,0.8614821434021,0.628551006317139,0.854471981525421,0.619663000106812,0.8614821434021,0.628551006317139,0.866910994052887,0.615464985370636,0.859423160552979,0.606960117816925,0.854471981525421,0.619663000106812,0.878652989864349,0.575232982635498,0.881047070026398,0.561316013336182,0.871986985206604,0.553740978240967,0.869906008243561,0.567433953285217,0.871986985206604,0.553740978240967,0.864172875881195,0.546886920928955,0.862007021903992,0.560449004173279,0.869906008243561,0.567433953285217,0.862007021903992,0.560449004173279,0.85984194278717,0.574010968208313,0.867111921310425,0.580940008163452,0.869906008243561,0.567433953285217,0.835909903049469,0.637655973434448,0.828464865684509,0.65169894695282,0.833589911460876,0.659880876541138,0.841556131839752,0.646073997020721,0.833589911460876,0.659880876541138,0.839611887931824,0.668893873691559,0.847849011421204,0.65522700548172, +0.841556131839752,0.646073997020721,0.847849011421204,0.65522700548172,0.855168104171753,0.641739130020142,0.848580002784729,0.632574021816254,0.841556131839752,0.646073997020721,0.873844981193542,0.526225984096527,0.865848004817963,0.520551979541779,0.865010023117065,0.533720016479492,0.873333036899567,0.540035128593445,0.865010023117065,0.533720016479492,0.864172875881195,0.546886920928955,0.871986985206604,0.553740978240967,0.873333036899567,0.540035128593445,0.871986985206604,0.553740978240967,0.881047070026398,0.561316013336182,0.882631003856659,0.547196984291077,0.873333036899567,0.540035128593445,0.894600868225098,0.511314868927002,0.882312119007111,0.503850102424622,0.883274853229523,0.51843798160553,0.895236015319824,0.526380002498627,0.883274853229523,0.51843798160553,0.883381903171539,0.532896995544434,0.894969999790192,0.541304886341095,0.895236015319824,0.526380002498627,0.894969999790192,0.541304886341095,0.908576846122742,0.551422953605652,0.90925008058548,0.53599214553833,0.895236015319824,0.526380002498627,0.872184932231903,0.498078972101212,0.863401055335999,0.4931960105896,0.8646240234375,0.506874024868011,0.873423039913177,0.512224018573761,0.8646240234375,0.506874024868011,0.865848004817963,0.520551979541779,0.873844981193542,0.526225984096527,0.873423039913177,0.512224018573761,0.873844981193542,0.526225984096527,0.883381903171539,0.532896995544434,0.883274853229523,0.51843798160553,0.873423039913177,0.512224018573761,0.890405893325806,0.480901956558228,0.877767145633698,0.474411070346832,0.88049191236496,0.489161998033524,0.892983973026276,0.496143966913223,0.88049191236496,0.489161998033524,0.882312119007111,0.503850102424622,0.894600868225098,0.511314868927002,0.892983973026276,0.496143966913223,0.894600868225098,0.511314868927002,0.908967852592468,0.52039498090744,0.907615959644318,0.504714012145996,0.892983973026276,0.496143966913223,0.867474138736725,0.469560027122498,0.858857989311218,0.46551901102066,0.861129999160767,0.479357987642288,0.870248019695282,0.483844101428986,0.861129999160767, +0.479357987642288,0.863401055335999,0.4931960105896,0.872184932231903,0.498078972101212,0.870248019695282,0.483844101428986,0.872184932231903,0.498078972101212,0.882312119007111,0.503850102424622,0.88049191236496,0.489161998033524,0.870248019695282,0.483844101428986,0.88242506980896,0.450317025184631,0.869458913803101,0.444840967655182,0.874086856842041,0.459632933139801,0.886884927749634,0.465621948242188,0.874086856842041,0.459632933139801,0.877767145633698,0.474411070346832,0.890405893325806,0.480901956558228,0.886884927749634,0.465621948242188,0.890405893325806,0.480901956558228,0.905264019966125,0.488976925611496,0.901983022689819,0.473213016986847,0.886884927749634,0.465621948242188,0.858995974063873,0.44097501039505,0.850291132926941,0.43792599439621,0.854574978351593,0.451723009347916,0.863722026348114,0.455271005630493,0.854574978351593,0.451723009347916,0.858857989311218,0.46551901102066,0.867474138736725,0.469560027122498,0.863722026348114,0.455271005630493,0.867474138736725,0.469560027122498,0.877767145633698,0.474411070346832,0.874086856842041,0.459632933139801,0.863722026348114,0.455271005630493,0.870673000812531,0.419681012630463,0.857419013977051,0.41531902551651,0.863891005516052,0.430049061775208,0.877027094364166,0.434996008872986,0.863891005516052,0.430049061775208,0.869458913803101,0.444840967655182,0.88242506980896,0.450317025184631,0.877027094364166,0.434996008872986,0.88242506980896,0.450317025184631,0.897756218910217,0.457413077354431,0.892567098140717,0.441573083400726,0.877027094364166,0.434996008872986,0.846764981746674,0.412517011165619,0.837665021419525,0.410246014595032,0.843978106975555,0.424086034297943,0.853299021720886,0.426674008369446,0.843978106975555,0.424086034297943,0.850291132926941,0.43792599439621,0.858995974063873,0.44097501039505,0.853299021720886,0.426674008369446,0.858995974063873,0.44097501039505,0.869458913803101,0.444840967655182,0.863891005516052,0.430049061775208,0.853299021720886,0.426674008369446,0.854947924613953,0.389055967330933,0.841705024242401,0.386092990636826, +0.850078999996185,0.400713980197906,0.863342046737671,0.404393017292023,0.850078999996185,0.400713980197906,0.857419013977051,0.41531902551651,0.870673000812531,0.419681012630463,0.863342046737671,0.404393017292023,0.870673000812531,0.419681012630463,0.886377036571503,0.425695985555649,0.879145920276642,0.409786999225616,0.863342046737671,0.404393017292023,0.831262826919556,0.384786933660507,0.823010921478271,0.384545981884003,0.83033812046051,0.39739602804184,0.839529991149902,0.398651003837585,0.83033812046051,0.39739602804184,0.837665021419525,0.410246014595032,0.846764981746674,0.412517011165619,0.839529991149902,0.398651003837585,0.846764981746674,0.412517011165619,0.857419013977051,0.41531902551651,0.850078999996185,0.400713980197906,0.839529991149902,0.398651003837585,0.834767997264862,0.35814905166626,0.821521997451782,0.356599986553192,0.832127869129181,0.3713139295578,0.845404028892517,0.373594999313354,0.832127869129181,0.3713139295578,0.841705024242401,0.386092990636826,0.854947924613953,0.389055967330933,0.845404028892517,0.373594999313354,0.854947924613953,0.389055967330933,0.870806932449341,0.393777936697006,0.86129093170166,0.377604961395264,0.845404028892517,0.373594999313354,0.811012029647827,0.356557011604309,0.802039980888367,0.356959998607635,0.812525987625122,0.370752990245819,0.821632027626038,0.370633989572525,0.812525987625122,0.370752990245819,0.823010921478271,0.384545981884003,0.831262826919556,0.384786933660507,0.821632027626038,0.370633989572525,0.831262826919556,0.384786933660507,0.841705024242401,0.386092990636826,0.832127869129181,0.3713139295578,0.821632027626038,0.370633989572525,0.810437977313995,0.327840000391006,0.797675967216492,0.328067988157272,0.810060977935791,0.342170059680939,0.823102116584778,0.342858016490936,0.810060977935791,0.342170059680939,0.821521997451782,0.356599986553192,0.834767997264862,0.35814905166626,0.823102116584778,0.342858016490936,0.834767997264862,0.35814905166626,0.850604057312012,0.361371070146561,0.838752090930939,0.345178991556168,0.823102116584778, +0.342858016490936,0.787696003913879,0.329685986042023,0.779698014259338,0.331838995218277,0.790868997573853,0.344399988651276,0.799776017665863,0.342923998832703,0.790868997573853,0.344399988651276,0.802039980888367,0.356959998607635,0.811012029647827,0.356557011604309,0.799776017665863,0.342923998832703,0.811012029647827,0.356557011604309,0.821521997451782,0.356599986553192,0.810060977935791,0.342170059680939,0.799776017665863,0.342923998832703,0.782707989215851,0.299309968948364,0.770452797412872,0.301307946443558,0.784297943115234,0.314339995384216,0.796810030937195,0.313208997249603,0.784297943115234,0.314339995384216,0.797675967216492,0.328067988157272,0.810437977313995,0.327840000391006,0.796810030937195,0.313208997249603,0.810437977313995,0.327840000391006,0.82582700252533,0.32920503616333,0.811922132968903,0.313626050949097,0.796810030937195,0.313208997249603,0.760838985443115,0.304554998874664,0.752628087997437,0.307978987693787,0.766162991523743,0.319909036159515,0.774542152881622,0.316794067621231,0.766162991523743,0.319909036159515,0.779698014259338,0.331838995218277,0.787696003913879,0.329685986042023,0.774542152881622,0.316794067621231,0.787696003913879,0.329685986042023,0.797675967216492,0.328067988157272,0.784297943115234,0.314339995384216,0.774542152881622,0.316794067621231,0.750861525535583,0.271772146224976,0.739470839500427,0.275651395320892,0.756665885448456,0.289297014474869,0.768620848655701,0.286482930183411,0.756665885448456,0.289297014474869,0.770452797412872,0.301307946443558,0.782707989215851,0.299309968948364,0.768620848655701,0.286482930183411,0.782707989215851,0.299309968948364,0.797487020492554,0.298797011375427,0.782972812652588,0.28507199883461,0.768620848655701,0.286482930183411,0.756665885448456,0.289297014474869,0.739470839500427,0.275651395320892,0.73037713766098,0.280717730522156,0.747113943099976,0.293274998664856,0.73037713766098,0.280717730522156,0.721700429916382,0.285606265068054,0.738763093948364,0.297834992408752,0.747113943099976,0.293274998664856,0.738763093948364,0.297834992408752, +0.752628087997437,0.307978987693787,0.760838985443115,0.304554998874664,0.747113943099976,0.293274998664856,0.739470839500427,0.275651395320892,0.750861525535583,0.271772146224976,0.729098081588745,0.255113989114761,0.718622982501984,0.260405004024506,0.986315011978149,0.0191639997065067,0.991024971008301,0.00566700007766485,0.971789121627808,0.00600699987262487,0.969581127166748,0.0191440023481846,0.391721963882446,0.718421995639801,0.40599200129509,0.714070081710815,0.416014015674591,0.731798112392426,0.399500072002411,0.733842134475708,0.689944267272949,0.267028480768204,0.704292118549347,0.274253010749817,0.710744976997375,0.267123013734818,0.699417948722839,0.26028299331665,0.68292498588562,0.238364994525909,0.669553935527802,0.23089599609375,0.662476003170013,0.240725994110107,0.675747990608215,0.247396022081375,0.662476003170013,0.240725994110107,0.65753698348999,0.251572996377945,0.67010486125946,0.257404953241348,0.675747990608215,0.247396022081375,0.653496980667114,0.222157999873161,0.633455991744995,0.211217001080513,0.631656050682068,0.227355048060417,0.647337138652802,0.23347806930542,0.631656050682068,0.227355048060417,0.630312025547028,0.24175900220871,0.643923997879028,0.246666014194489,0.647337138652802,0.23347806930542,0.643923997879028,0.246666014194489,0.65753698348999,0.251572996377945,0.662476003170013,0.240725994110107,0.647337138652802,0.23347806930542,0.613956093788147,0.210284024477005,0.598687887191772,0.209730952978134,0.602262020111084,0.22223499417305,0.616760015487671,0.224061012268066,0.602262020111084,0.22223499417305,0.606253027915955,0.235253021121025,0.618282854557037,0.238505959510803,0.616760015487671,0.224061012268066,0.618282854557037,0.238505959510803,0.630312025547028,0.24175900220871,0.631656050682068,0.227355048060417,0.616760015487671,0.224061012268066,0.565234124660492,0.190229013562202,0.571205019950867,0.208968997001648,0.584446012973785,0.209253996610641,0.577414989471436,0.188930988311768,0.584446012973785,0.209253996610641,0.571205019950867,0.208968997001648,0.574028015136719, +0.219215005636215,0.587778031826019,0.22051802277565,0.574028015136719,0.219215005636215,0.575821042060852,0.229193061590195,0.591036975383759,0.232223004102707,0.587778031826019,0.22051802277565,0.591036975383759,0.232223004102707,0.606253027915955,0.235253021121025,0.602262020111084,0.22223499417305,0.587778031826019,0.22051802277565,0.546912908554077,0.209154963493347,0.558942019939423,0.20898999273777,0.553725004196167,0.191165000200272,0.542217135429382,0.192100048065186,0.558942019939423,0.20898999273777,0.546912908554077,0.209154963493347,0.549933016300201,0.218555018305779,0.561735868453979,0.218630969524384,0.549933016300201,0.218555018305779,0.553385972976685,0.227934971451759,0.564602971076965,0.228563994169235,0.561735868453979,0.218630969524384,0.564602971076965,0.228563994169235,0.575821042060852,0.229193061590195,0.574028015136719,0.219215005636215,0.561735868453979,0.218630969524384,0.474799007177353,0.888082921504974,0.476910918951035,0.903189897537231,0.488929986953735,0.903916001319885,0.488193988800049,0.887439906597137,0.0552729964256287,0.66948413848877,0.0473910793662071,0.670179188251495,0.0479943454265594,0.6573725938797,0.0554411560297012,0.661211490631104,0.541244983673096,0.228671997785568,0.553385972976685,0.227934971451759,0.549933016300201,0.218555018305779,0.537654995918274,0.218774020671844,0.457788109779358,0.916652858257294,0.466200917959213,0.916217803955078,0.464502930641174,0.903089880943298,0.454254746437073,0.905250072479248,0.524371147155762,0.209933191537857,0.526198744773865,0.2169049680233,0.537654995918274,0.218774020671844,0.53437602519989,0.209299981594086,0.472831010818481,0.880021989345551,0.470275044441223,0.871968030929565,0.456611037254333,0.873075127601624,0.459138065576553,0.881097137928009,0.500948905944824,0.904640793800354,0.51288902759552,0.906279981136322,0.515838027000427,0.886258900165558,0.5017991065979,0.886857032775879,0.500771045684814,0.877475023269653,0.499231070280075,0.868329048156738,0.484753012657166,0.870147943496704,0.486699104309082,0.878862202167511, +0.484753012657166,0.870147943496704,0.470275044441223,0.871968030929565,0.472831010818481,0.880021989345551,0.486699104309082,0.878862202167511,0.472831010818481,0.880021989345551,0.474799007177353,0.888082921504974,0.488193988800049,0.887439906597137,0.486699104309082,0.878862202167511,0.524829983711243,0.907918930053711,0.53634911775589,0.911174058914185,0.547447025775909,0.885420024394989,0.530867993831635,0.885747134685516,0.530173003673553,0.873739004135132,0.527594983577728,0.861613988876343,0.513412892818451,0.864971995353699,0.51507306098938,0.875721096992493,0.513412892818451,0.864971995353699,0.499231070280075,0.868329048156738,0.500771045684814,0.877475023269653,0.51507306098938,0.875721096992493,0.500771045684814,0.877475023269653,0.5017991065979,0.886857032775879,0.515838027000427,0.886258900165558,0.51507306098938,0.875721096992493,0.558902144432068,0.929570198059082,0.592494010925293,0.907221138477325,0.582705020904541,0.896932005882263,0.553385078907013,0.921999037265778,0.564121007919312,0.867978990077972,0.558965981006622,0.853538990020752,0.543280005455017,0.85757702589035,0.546635985374451,0.871672093868256,0.543280005455017,0.85757702589035,0.527594983577728,0.861613988876343,0.530173003673553,0.873739004135132,0.546635985374451,0.871672093868256,0.530173003673553,0.873739004135132,0.530867993831635,0.885747134685516,0.547447025775909,0.885420024394989,0.546635985374451,0.871672093868256,0.558902144432068,0.929570198059082,0.562579989433289,0.93781304359436,0.598708093166351,0.917160093784332,0.592494010925293,0.907221138477325,0.601770997047424,0.927052855491638,0.566256999969482,0.946056008338928,0.567255973815918,0.955087065696716,0.602105855941772,0.937202751636505,0.598989009857178,0.853337943553925,0.592002987861633,0.84154200553894,0.575484097003937,0.847540140151978,0.582288980484009,0.861117005348206,0.575484097003937,0.847540140151978,0.558965981006622,0.853538990020752,0.564121007919312,0.867978990077972,0.582288980484009,0.861117005348206,0.564121007919312,0.867978990077972,0.568441987037659, +0.885397136211395,0.589947998523712,0.874083995819092,0.582288980484009,0.861117005348206,0.614791989326477,0.876462876796722,0.606943011283875,0.86496102809906,0.589947998523712,0.874083995819092,0.599316895008087,0.885833740234375,0.589947998523712,0.874083995819092,0.568441987037659,0.885397136211395,0.582705020904541,0.896932005882263,0.599316895008087,0.885833740234375,0.582705020904541,0.896932005882263,0.592494010925293,0.907221138477325,0.608119010925293,0.896765947341919,0.599316895008087,0.885833740234375,0.537967026233673,0.800957024097443,0.51170289516449,0.834031343460083,0.501441061496735,0.822685122489929,0.522193133831024,0.790151178836823,0.633189976215363,0.920300960540771,0.63104784488678,0.909299850463867,0.617466986179352,0.917698085308075,0.618551969528198,0.928334832191467,0.617466986179352,0.917698085308075,0.601770997047424,0.927052855491638,0.602105855941772,0.937202751636505,0.618551969528198,0.928334832191467,0.602105855941772,0.937202751636505,0.600679993629456,0.947512984275818,0.618486046791077,0.939082980155945,0.618551969528198,0.928334832191467,0.627234995365143,0.898541986942291,0.621800065040588,0.887704193592072,0.608119010925293,0.896765947341919,0.614078998565674,0.90728098154068,0.608119010925293,0.896765947341919,0.592494010925293,0.907221138477325,0.598708093166351,0.917160093784332,0.614078998565674,0.90728098154068,0.598708093166351,0.917160093784332,0.601770997047424,0.927052855491638,0.617466986179352,0.917698085308075,0.614078998565674,0.90728098154068,0.646917939186096,0.925303936004639,0.659263432025909,0.918955445289612,0.656750977039337,0.907382011413574,0.644994974136353,0.913873970508575,0.656750977039337,0.907382011413574,0.653746008872986,0.896061062812805,0.642313063144684,0.902622103691101,0.644994974136353,0.913873970508575,0.642313063144684,0.902622103691101,0.63104784488678,0.909299850463867,0.633189976215363,0.920300960540771,0.644994974136353,0.913873970508575,0.674232125282288,0.910265147686005,0.690922021865845,0.900575995445251,0.685737192630768,0.89065808057785, +0.671244025230408,0.899151027202606,0.685737192630768,0.89065808057785,0.681989014148712,0.879739999771118,0.667828977108002,0.888011991977692,0.671244025230408,0.899151027202606,0.667828977108002,0.888011991977692,0.653746008872986,0.896061062812805,0.656750977039337,0.907382011413574,0.671244025230408,0.899151027202606,0.642313063144684,0.902622103691101,0.653746008872986,0.896061062812805,0.649344921112061,0.885072827339172,0.638113975524902,0.891726016998291,0.649344921112061,0.885072827339172,0.643958926200867,0.874019920825958,0.632714867591858,0.880784869194031,0.638113975524902,0.891726016998291,0.632714867591858,0.880784869194031,0.621800065040588,0.887704193592072,0.627234995365143,0.898541986942291,0.638113975524902,0.891726016998291,0.667828977108002,0.888011991977692,0.681989014148712,0.879739999771118,0.677937984466553,0.868338882923126,0.663557887077332,0.876822829246521,0.677937984466553,0.868338882923126,0.673538029193878,0.856565892696381,0.658630073070526,0.86542010307312,0.663557887077332,0.876822829246521,0.658630073070526,0.86542010307312,0.643958926200867,0.874019920825958,0.649344921112061,0.885072827339172,0.663557887077332,0.876822829246521,0.637996912002563,0.862504899501801,0.631676018238068,0.851005077362061,0.619480013847351,0.857968986034393,0.626432001590729,0.869399011135101,0.619480013847351,0.857968986034393,0.606943011283875,0.86496102809906,0.614791989326477,0.876462876796722,0.626432001590729,0.869399011135101,0.614791989326477,0.876462876796722,0.621800065040588,0.887704193592072,0.632714867591858,0.880784869194031,0.626432001590729,0.869399011135101,0.625213027000427,0.839999854564667,0.616869986057281,0.830447018146515,0.604436993598938,0.835994124412537,0.612071990966797,0.846892952919006,0.604436993598938,0.835994124412537,0.592002987861633,0.84154200553894,0.598989009857178,0.853337943553925,0.612071990966797,0.846892952919006,0.598989009857178,0.853337943553925,0.606943011283875,0.86496102809906,0.619480013847351,0.857968986034393,0.612071990966797,0.846892952919006,0.659069061279297, +0.821470141410828,0.6539586186409,0.810833811759949,0.63654100894928,0.820079922676086,0.642086029052734,0.830878973007202,0.63654100894928,0.820079922676086,0.616869986057281,0.830447018146515,0.625213027000427,0.839999854564667,0.642086029052734,0.830878973007202,0.625213027000427,0.839999854564667,0.631676018238068,0.851005077362061,0.647648990154266,0.841970026493073,0.642086029052734,0.830878973007202,0.658630073070526,0.86542010307312,0.673538029193878,0.856565892696381,0.668738961219788,0.844529867172241,0.653244972229004,0.85364305973053,0.668738961219788,0.844529867172241,0.663823008537292,0.832681000232697,0.647648990154266,0.841970026493073,0.653244972229004,0.85364305973053,0.647648990154266,0.841970026493073,0.631676018238068,0.851005077362061,0.637996912002563,0.862504899501801,0.653244972229004,0.85364305973053,0.685486018657684,0.805670976638794,0.681027889251709,0.795896887779236,0.668618977069855,0.802805006504059,0.672538936138153,0.813711881637573,0.668618977069855,0.802805006504059,0.6539586186409,0.810833811759949,0.659069061279297,0.821470141410828,0.672538936138153,0.813711881637573,0.659069061279297,0.821470141410828,0.663823008537292,0.832681000232697,0.676624953746796,0.824957013130188,0.672538936138153,0.813711881637573,0.685492992401123,0.849039018154144,0.697449862957001,0.840954005718231,0.69318699836731,0.828757047653198,0.681042790412903,0.836880683898926,0.69318699836731,0.828757047653198,0.689100027084351,0.816851079463959,0.676624953746796,0.824957013130188,0.681042790412903,0.836880683898926,0.676624953746796,0.824957013130188,0.663823008537292,0.832681000232697,0.668738961219788,0.844529867172241,0.681042790412903,0.836880683898926,0.693652987480164,0.872507989406586,0.705596029758453,0.864640891551971,0.701587021350861,0.853004932403564,0.689674973487854,0.860988020896912,0.701587021350861,0.853004932403564,0.697449862957001,0.840954005718231,0.685492992401123,0.849039018154144,0.689674973487854,0.860988020896912,0.685492992401123,0.849039018154144,0.673538029193878,0.856565892696381, +0.677937984466553,0.868338882923126,0.689674973487854,0.860988020896912,0.701264023780823,0.893925130367279,0.71160501241684,0.887274026870728,0.709475994110107,0.875594019889832,0.697493016719818,0.883378982543945,0.709475994110107,0.875594019889832,0.705596029758453,0.864640891551971,0.693652987480164,0.872507989406586,0.697493016719818,0.883378982543945,0.693652987480164,0.872507989406586,0.681989014148712,0.879739999771118,0.685737192630768,0.89065808057785,0.697493016719818,0.883378982543945,0.724242925643921,0.806470990180969,0.720407009124756,0.794780015945435,0.704294979572296,0.806414008140564,0.708203971385956,0.818220019340515,0.704294979572296,0.806414008140564,0.689100027084351,0.816851079463959,0.69318699836731,0.828757047653198,0.708203971385956,0.818220019340515,0.69318699836731,0.828757047653198,0.697449862957001,0.840954005718231,0.712360143661499,0.830426096916199,0.708203971385956,0.818220019340515,0.720595002174377,0.854461133480072,0.736741185188293,0.843146204948425,0.732542037963867,0.831045150756836,0.716494143009186,0.842624008655548,0.732542037963867,0.831045150756836,0.72836697101593,0.81868189573288,0.712360143661499,0.830426096916199,0.716494143009186,0.842624008655548,0.712360143661499,0.830426096916199,0.697449862957001,0.840954005718231,0.701587021350861,0.853004932403564,0.716494143009186,0.842624008655548,0.717094004154205,0.78397798538208,0.714494109153748,0.773750066757202,0.697761118412018,0.78482311964035,0.700899004936218,0.795416951179504,0.697761118412018,0.78482311964035,0.681027889251709,0.795896887779236,0.685486018657684,0.805670976638794,0.700899004936218,0.795416951179504,0.685486018657684,0.805670976638794,0.689100027084351,0.816851079463959,0.704294979572296,0.806414008140564,0.700899004936218,0.795416951179504,0.72868800163269,0.876351952552795,0.74576997756958,0.865430951118469,0.740938007831573,0.854571998119354,0.724651992321014,0.865584909915924,0.740938007831573,0.854571998119354,0.736741185188293,0.843146204948425,0.720595002174377,0.854461133480072,0.724651992321014, +0.865584909915924,0.720595002174377,0.854461133480072,0.705596029758453,0.864640891551971,0.709475994110107,0.875594019889832,0.724651992321014,0.865584909915924,0.746686100959778,0.760812222957611,0.744356989860535,0.750570058822632,0.729424893856049,0.762159883975983,0.732387006282806,0.772385954856873,0.729424893856049,0.762159883975983,0.714494109153748,0.773750066757202,0.717094004154205,0.78397798538208,0.732387006282806,0.772385954856873,0.717094004154205,0.78397798538208,0.720407009124756,0.794780015945435,0.735634982585907,0.783080875873566,0.732387006282806,0.772385954856873,0.743614971637726,0.806952059268951,0.758203983306885,0.795095980167389,0.753898978233337,0.78287798166275,0.739454984664917,0.794712901115417,0.753898978233337,0.78287798166275,0.749980926513672,0.771359980106354,0.735634982585907,0.783080875873566,0.739454984664917,0.794712901115417,0.735634982585907,0.783080875873566,0.720407009124756,0.794780015945435,0.724242925643921,0.806470990180969,0.739454984664917,0.794712901115417,0.763447880744934,0.759661018848419,0.776018857955933,0.747865855693817,0.772001028060913,0.738152027130127,0.759901940822601,0.749427139759064,0.772001028060913,0.738152027130127,0.768988966941833,0.728819012641907,0.756672978401184,0.739695012569427,0.759901940822601,0.749427139759064,0.756672978401184,0.739695012569427,0.744356989860535,0.750570058822632,0.746686100959778,0.760812222957611,0.759901940822601,0.749427139759064,0.752129018306732,0.83187198638916,0.767067015171051,0.820447981357574,0.762664139270782,0.807744145393372,0.747877955436707,0.819467842578888,0.762664139270782,0.807744145393372,0.758203983306885,0.795095980167389,0.743614971637726,0.806952059268951,0.747877955436707,0.819467842578888,0.743614971637726,0.806952059268951,0.72836697101593,0.81868189573288,0.732542037963867,0.831045150756836,0.747877955436707,0.819467842578888,0.760305047035217,0.855430006980896,0.774839997291565,0.84542989730835,0.771205127239227,0.832834124565125,0.756250023841858,0.843775987625122,0.771205127239227,0.832834124565125, +0.767067015171051,0.820447981357574,0.752129018306732,0.83187198638916,0.756250023841858,0.843775987625122,0.752129018306732,0.83187198638916,0.736741185188293,0.843146204948425,0.740938007831573,0.854571998119354,0.756250023841858,0.843775987625122,0.80147397518158,0.809252023696899,0.796260058879852,0.796330988407135,0.781864106655121,0.808681011199951,0.786420106887817,0.821382105350494,0.781864106655121,0.808681011199951,0.767067015171051,0.820447981357574,0.771205127239227,0.832834124565125,0.786420106887817,0.821382105350494,0.771205127239227,0.832834124565125,0.774839997291565,0.84542989730835,0.790853023529053,0.833955049514771,0.786420106887817,0.821382105350494,0.77223801612854,0.782975018024445,0.785664975643158,0.770596027374268,0.780633985996246,0.758734881877899,0.767631053924561,0.770898938179016,0.780633985996246,0.758734881877899,0.776018857955933,0.747865855693817,0.763447880744934,0.759661018848419,0.767631053924561,0.770898938179016,0.763447880744934,0.759661018848419,0.749980926513672,0.771359980106354,0.753898978233337,0.78287798166275,0.767631053924561,0.770898938179016,0.787672102451324,0.735859990119934,0.798842966556549,0.723353981971741,0.793540000915527,0.71497106552124,0.7829509973526,0.726909041404724,0.793540000915527,0.71497106552124,0.787966012954712,0.708631992340088,0.778478026390076,0.718725979328156,0.7829509973526,0.726909041404724,0.778478026390076,0.718725979328156,0.768988966941833,0.728819012641907,0.772001028060913,0.738152027130127,0.7829509973526,0.726909041404724,0.79093199968338,0.783286988735199,0.785664975643158,0.770596027374268,0.77223801612854,0.782975018024445,0.777059137821198,0.795724093914032,0.77223801612854,0.782975018024445,0.758203983306885,0.795095980167389,0.762664139270782,0.807744145393372,0.777059137821198,0.795724093914032,0.762664139270782,0.807744145393372,0.767067015171051,0.820447981357574,0.781864106655121,0.808681011199951,0.777059137821198,0.795724093914032,0.830316007137299,0.782789051532745,0.823468029499054,0.769593000411987,0.809996902942657, +0.783153891563416,0.815943002700806,0.796271085739136,0.809996902942657,0.783153891563416,0.796260058879852,0.796330988407135,0.80147397518158,0.809252023696899,0.815943002700806,0.796271085739136,0.80147397518158,0.809252023696899,0.806867122650146,0.822481095790863,0.821938991546631,0.809525012969971,0.815943002700806,0.796271085739136,0.798436939716339,0.757965981960297,0.81072598695755,0.745023012161255,0.804627120494843,0.733587265014648,0.792888998985291,0.746347010135651,0.804627120494843,0.733587265014648,0.798842966556549,0.723353981971741,0.787672102451324,0.735859990119934,0.792888998985291,0.746347010135651,0.787672102451324,0.735859990119934,0.776018857955933,0.747865855693817,0.780633985996246,0.758734881877899,0.792888998985291,0.746347010135651,0.809964120388031,0.710059106349945,0.820655882358551,0.696353912353516,0.815250933170319,0.687603890895844,0.804556131362915,0.701614022254944,0.815250933170319,0.687603890895844,0.811037123203278,0.679506123065948,0.799500942230225,0.694069027900696,0.804556131362915,0.701614022254944,0.799500942230225,0.694069027900696,0.787966012954712,0.708631992340088,0.793540000915527,0.71497106552124,0.804556131362915,0.701614022254944,0.816972076892853,0.757015109062195,0.81072598695755,0.745023012161255,0.798436939716339,0.757965981960297,0.804150998592377,0.770310997962952,0.798436939716339,0.757965981960297,0.785664975643158,0.770596027374268,0.79093199968338,0.783286988735199,0.804150998592377,0.770310997962952,0.79093199968338,0.783286988735199,0.796260058879852,0.796330988407135,0.809996902942657,0.783153891563416,0.804150998592377,0.770310997962952,0.859609007835388,0.756128013134003,0.850422024726868,0.743056118488312,0.837064027786255,0.756087005138397,0.845082104206085,0.769151031970978,0.837064027786255,0.756087005138397,0.823468029499054,0.769593000411987,0.830316007137299,0.782789051532745,0.845082104206085,0.769151031970978,0.830316007137299,0.782789051532745,0.837010979652405,0.796570062637329,0.853402018547058,0.782511949539185,0.845082104206085,0.769151031970978, +0.841974020004272,0.730394065380096,0.834200024604797,0.71825098991394,0.822702169418335,0.731703102588654,0.829651117324829,0.743618071079254,0.822702169418335,0.731703102588654,0.81072598695755,0.745023012161255,0.816972076892853,0.757015109062195,0.829651117324829,0.743618071079254,0.816972076892853,0.757015109062195,0.823468029499054,0.769593000411987,0.837064027786255,0.756087005138397,0.829651117324829,0.743618071079254,0.830542922019958,0.682618021965027,0.820655882358551,0.696353912353516,0.82703310251236,0.706736922264099,0.837298989295959,0.693132996559143,0.82703310251236,0.706736922264099,0.834200024604797,0.71825098991394,0.845055997371674,0.704913020133972,0.837298989295959,0.693132996559143,0.845055997371674,0.704913020133972,0.855153977870941,0.691522061824799,0.846792995929718,0.679499983787537,0.837298989295959,0.693132996559143,0.822702169418335,0.731703102588654,0.834200024604797,0.71825098991394,0.82703310251236,0.706736922264099,0.816076040267944,0.720301985740662,0.82703310251236,0.706736922264099,0.820655882358551,0.696353912353516,0.809964120388031,0.710059106349945,0.816076040267944,0.720301985740662,0.809964120388031,0.710059106349945,0.798842966556549,0.723353981971741,0.804627120494843,0.733587265014648,0.816076040267944,0.720301985740662,0.819751024246216,0.665603041648865,0.811037123203278,0.679506123065948,0.815250933170319,0.687603890895844,0.824874997138977,0.673708915710449,0.815250933170319,0.687603890895844,0.820655882358551,0.696353912353516,0.830542922019958,0.682618021965027,0.824874997138977,0.673708915710449,0.830542922019958,0.682618021965027,0.839611887931824,0.668893873691559,0.833589911460876,0.659880876541138,0.824874997138977,0.673708915710449,0.921917974948883,0.0201299991458654,0.945749998092651,0.0196369998157024,0.949217021465302,0.00675999978557229,0.92664510011673,0.00751300062984228,0.921917974948883,0.0201299991458654,0.92664510011673,0.00751300062984228,0.903762996196747,0.0084610003978014,0.900996088981628,0.0189290009438992,0.829451858997345,0.00964299775660038, +0.827093958854675,0.0173460002988577,0.853583931922913,0.017536997795105,0.855166971683502,0.00952500011771917,0.829451858997345,0.00964299775660038,0.806387066841125,0.00921399984508753,0.80320405960083,0.0172189995646477,0.827093958854675,0.0173460002988577,0.783321976661682,0.00878500007092953,0.762305974960327,0.00860800035297871,0.758427977561951,0.017043000087142,0.779312968254089,0.0170909985899925,0.741289019584656,0.00843000039458275,0.720457017421722,0.00827199965715408,0.717589974403381,0.0167820006608963,0.737541913986206,0.0169939994812012,0.69962602853775,0.00811299961060286,0.678897023200989,0.00761799979954958,0.677954077720642,0.0162979997694492,0.697638988494873,0.0165699981153011,0.658167004585266,0.00712200021371245,0.63612300157547,0.0069050001911819,0.635779142379761,0.0158410035073757,0.658268928527832,0.0160259995609522,0.614078044891357,0.00668800109997392,0.589733004570007,0.0067689991556108,0.589318990707397,0.0154360020533204,0.613288998603821,0.0156560000032187,0.517349004745483,0.00663299998268485,0.518700003623962,0.0156609993427992,0.542025029659271,0.015437999740243,0.541369020938873,0.00674099987372756,0.476448059082031,0.00661800056695938,0.477964997291565,0.01570999994874,0.498332917690277,0.015684999525547,0.496897995471954,0.00662600016221404,0.432633996009827,0.00672899931669235,0.43335497379303,0.0154969999566674,0.455659985542297,0.0156030021607876,0.454540967941284,0.00667400006204844,0.389147013425827,0.00693899998441339,0.39002200961113,0.0153339998796582,0.411689013242722,0.0154149997979403,0.410891056060791,0.0068340003490448,0.337830007076263,0.00647700019180775,0.338277012109756,0.0151599999517202,0.364149928092957,0.0152469966560602,0.363488972187042,0.00670799985527992,0.289784014225006,0.00636999914422631,0.290435016155243,0.0153209995478392,0.314356029033661,0.0152399996295571,0.313807010650635,0.00642400048673153,0.23150897026062,0.0074919993057847,0.233606994152069,0.0152329979464412,0.262021005153656,0.015277000144124,0.260645985603333,0.00693099945783615,0.179405003786087, +0.00710100028663874,0.181423991918564,0.0157970003783703,0.207515001296997,0.0155149977654219,0.205457001924515,0.00729699991643429,0.128158003091812,0.00729099893942475,0.13018000125885,0.0166059993207455,0.155801996588707,0.0162010006606579,0.153781965374947,0.00719599891453981,0.0840649977326393,0.00633500004187226,0.0847740024328232,0.0178989991545677,0.107476986944675,0.0172519963234663,0.106111988425255,0.0068129999563098,0.0840649977326393,0.00633500004187226,0.0591939985752106,0.00600899988785386,0.0601900070905685,0.0186529997736216,0.0847740024328232,0.0178989991545677,0.0343220010399818,0.00568300019949675,0.0217989981174469,0.00565299950540066,0.0201621539890766,0.01976702734828,0.0356049984693527,0.0194080043584108,0.25156843662262,0.57788872718811,0.256388008594513,0.585099995136261,0.283087015151978,0.584102094173431,0.282458990812302,0.573767006397247,0.271122008562088,0.609583020210266,0.273786008358002,0.61863386631012,0.284745991230011,0.620863974094391,0.284512013196945,0.611811995506287,0.277741998434067,0.628527164459229,0.280423939228058,0.641109585762024,0.286129772663116,0.635592997074127,0.285253047943115,0.628229022026062,0.281558007001877,0.554219007492065,0.236315369606018,0.56401252746582,0.244590029120445,0.571578025817871,0.281830012798309,0.563432991504669,0.280423939228058,0.641109585762024,0.286895632743835,0.642228007316589,0.286129772663116,0.635592997074127,0.234081983566284,0.519941210746765,0.279934912919998,0.514835119247437,0.279667019844055,0.497521996498108,0.233660250902176,0.506549000740051,0.192076176404953,0.531404972076416,0.181962996721268,0.535569071769714,0.199435338377953,0.541890025138855,0.192076176404953,0.531404972076416,0.199435338377953,0.541890025138855,0.23498871922493,0.528504550457001,0.234081983566284,0.519941210746765,0.278811007738113,0.467083990573883,0.278003990650177,0.449043989181519,0.232636496424675,0.461707472801208,0.233080744743347,0.479259759187698,0.279619008302689,0.485123008489609,0.278811007738113,0.467083990573883,0.233080744743347,0.479259759187698, +0.233413010835648,0.494899272918701,0.189520001411438,0.509221971035004,0.18945400416851,0.493795931339264,0.182348012924194,0.49734503030777,0.182511985301971,0.51588499546051,0.234081983566284,0.519941210746765,0.233660250902176,0.506549000740051,0.189451992511749,0.520060002803802,0.192076176404953,0.531404972076416,0.232636496424675,0.461707472801208,0.278003990650177,0.449043989181519,0.276962041854858,0.43118605017662,0.232050985097885,0.444320976734161,0.276962041854858,0.43118605017662,0.275918960571289,0.413327932357788,0.231372743844986,0.426821023225784,0.232050985097885,0.444320976734161,0.233413010835648,0.494899272918701,0.233080744743347,0.479259759187698,0.18945400416851,0.493795931339264,0.189520001411438,0.509221971035004,0.189273029565811,0.476176023483276,0.188994988799095,0.458761006593704,0.181941002607346,0.461403995752335,0.182184994220734,0.478803992271423,0.232636496424675,0.461707472801208,0.232050985097885,0.444320976734161,0.188994988799095,0.458761006593704,0.189273029565811,0.476176023483276,0.188653007149696,0.440822929143906,0.231372743844986,0.426821023225784,0.230652987957001,0.408928722143173,0.188279002904892,0.421634018421173,0.188653007149696,0.440822929143906,0.188279002904892,0.421634018421173,0.181403994560242,0.423830986022949,0.181697964668274,0.44400292634964,0.275918960571289,0.413327932357788,0.275092005729675,0.396380007266998,0.230652987957001,0.408928722143173,0.231372743844986,0.426821023225784,0.275092005729675,0.396380007266998,0.274264007806778,0.379431009292603,0.22988224029541,0.391220510005951,0.230652987957001,0.408928722143173,0.273387014865875,0.366026997566223,0.272509008646011,0.352622985839844,0.228338986635208,0.356299221515656,0.229055002331734,0.374271512031555,0.22988224029541,0.391220510005951,0.274264007806778,0.379431009292603,0.273387014865875,0.366026997566223,0.229055002331734,0.374271512031555,0.272116005420685,0.331628024578094,0.271723002195358,0.3106330037117,0.227719008922577,0.313837498426437,0.227904513478279,0.335521042346954,0.228338986635208, +0.356299221515656,0.272509008646011,0.352622985839844,0.272116005420685,0.331628024578094,0.227904513478279,0.335521042346954,0.187864974141121,0.401705950498581,0.22988224029541,0.391220510005951,0.229055002331734,0.374271512031555,0.187407001852989,0.381546974182129,0.187864974141121,0.401705950498581,0.187407001852989,0.381546974182129,0.180750012397766,0.382705986499786,0.181109964847565,0.403657972812653,0.272020936012268,0.289970934391022,0.272320002317429,0.269309043884277,0.228006035089493,0.272848546504974,0.22774975001812,0.293149530887604,0.227719008922577,0.313837498426437,0.271723002195358,0.3106330037117,0.272020936012268,0.289970934391022,0.22774975001812,0.293149530887604,0.228338986635208,0.356299221515656,0.227904513478279,0.335521042346954,0.186945006251335,0.337920010089874,0.187051028013229,0.360503047704697,0.273037999868393,0.249282002449036,0.273755997419357,0.229255020618439,0.229219749569893,0.232324749231339,0.228495270013809,0.252325266599655,0.228006035089493,0.272848546504974,0.272320002317429,0.269309043884277,0.273037999868393,0.249282002449036,0.228495270013809,0.252325266599655,0.187051028013229,0.360503047704697,0.186945006251335,0.337920010089874,0.180492967367172,0.338212937116623,0.180389001965523,0.36175400018692,0.227719008922577,0.313837498426437,0.22774975001812,0.293149530887604,0.187169969081879,0.294655978679657,0.187011003494263,0.315427958965302,0.27492493391037,0.211423963308334,0.27609395980835,0.193592995405197,0.231395751237869,0.195409744977951,0.230179727077484,0.213591977953911,0.229219749569893,0.232324749231339,0.273755997419357,0.229255020618439,0.27492493391037,0.211423963308334,0.230179727077484,0.213591977953911,0.187011003494263,0.315427958965302,0.187169969081879,0.294655978679657,0.180851966142654,0.294758975505829,0.180596977472305,0.314670950174332,0.228006035089493,0.272848546504974,0.228495270013809,0.252325266599655,0.18819697201252,0.253012001514435,0.187528982758522,0.274288952350616,0.277889013290405,0.17535699903965,0.279684990644455,0.157121002674103, +0.23463374376297,0.158529758453369,0.232887238264084,0.177060484886169,0.27609395980835,0.193592995405197,0.277889013290405,0.17535699903965,0.232887238264084,0.177060484886169,0.231395751237869,0.195409744977951,0.187528982758522,0.274288952350616,0.18819697201252,0.253012001514435,0.182027995586395,0.252833992242813,0.181106984615326,0.274846971035004,0.229219749569893,0.232324749231339,0.230179727077484,0.213591977953911,0.190062999725342,0.212817013263702,0.189074993133545,0.232098013162613,0.284110993146896,0.117067001760006,0.238393142819405,0.12119072675705,0.236614972352982,0.139801740646362,0.281898021697998,0.137094005942345,0.23463374376297,0.158529758453369,0.279684990644455,0.157121002674103,0.281898021697998,0.137094005942345,0.236614972352982,0.139801740646362,0.189074993133545,0.232098013162613,0.190062999725342,0.212817013263702,0.183988004922867,0.212266996502876,0.182949006557465,0.230820000171661,0.231395751237869,0.195409744977951,0.232887238264084,0.177060484886169,0.192723006010056,0.175260975956917,0.191249996423721,0.194195002317429,0.191249996423721,0.194195002317429,0.192723006010056,0.175260975956917,0.18665799498558,0.174398005008698,0.18502601981163,0.193714022636414,0.0829370021820068,0.599466979503632,0.0527559965848923,0.567956984043121,0.0522700063884258,0.579236030578613,0.0784720033407211,0.604887008666992,0.23463374376297,0.158529758453369,0.236614972352982,0.139801740646362,0.196287006139755,0.138300999999046,0.194422006607056,0.156475991010666,0.158642023801804,0.522616147994995,0.147695630788803,0.527009010314941,0.143860965967178,0.546185612678528,0.160901993513107,0.534439980983734,0.194422006607056,0.156475991010666,0.196287006139755,0.138300999999046,0.190208971500397,0.137288987636566,0.188289999961853,0.155083000659943,0.372170001268387,0.376677989959717,0.379611968994141,0.384519010782242,0.368171989917755,0.397065013647079,0.360050976276398,0.389032006263733,0.348441004753113,0.376753985881805,0.361001014709473,0.362809985876083,0.366586029529572,0.369744002819061,0.354246020317078, +0.382892996072769,0.904338955879211,0.0491139963269234,0.924870014190674,0.049114003777504,0.917379975318909,0.0410690009593964,0.897627949714661,0.0410689935088158,0.376293003559113,0.40509894490242,0.387055039405823,0.392360061407089,0.393660962581635,0.400184005498886,0.383394956588745,0.411773979663849,0.390496999025345,0.418449014425278,0.400267988443375,0.408008009195328,0.407128065824509,0.415894985198975,0.399356931447983,0.426525950431824,0.413989007472992,0.423781991004944,0.42085799574852,0.429744929075241,0.415618002414703,0.440520942211151,0.408217012882233,0.434603989124298,0.42772701382637,0.43570801615715,0.435476005077362,0.442128956317902,0.430737018585205,0.453019022941589,0.423020005226135,0.446438014507294,0.44322606921196,0.448550015687943,0.452052175998688,0.457264959812164,0.445976883172989,0.467098295688629,0.438454985618591,0.459599018096924,0.480955958366394,0.497406989336014,0.481906116008759,0.507878124713898,0.46739399433136,0.510975003242493,0.467361986637115,0.501918971538544,0.482536554336548,0.518382847309113,0.48154404759407,0.529229998588562,0.46568500995636,0.530856013298035,0.467424988746643,0.520031988620758,0.480037033557892,0.540130853652954,0.476705014705658,0.553631007671356,0.461184024810791,0.553142011165619,0.463946014642715,0.541680991649628,0.47317698597908,0.567149996757507,0.470887988805771,0.575296998023987,0.455494940280914,0.572210907936096,0.458422005176544,0.564603984355927,0.468599021434784,0.583443999290466,0.461205273866653,0.596072375774384,0.447560012340546,0.589537978172302,0.452566981315613,0.5798180103302,0.449318528175354,0.61651337146759,0.436107993125916,0.606384992599487,0.441000044345856,0.599582076072693,0.454167723655701,0.609226822853088,0.428348869085312,0.641636371612549,0.41541001200676,0.630945980548859,0.421755015850067,0.624117016792297,0.43597087264061,0.633282899856567,0.428348869085312,0.641636371612549,0.419885009527206,0.651203989982605,0.406286001205444,0.640424013137817,0.41541001200676,0.630945980548859,0.394753009080887,0.677007079124451, +0.382803022861481,0.662660002708435,0.389982044696808,0.656280994415283,0.402844965457916,0.66860294342041,0.378385007381439,0.692551016807556,0.373136013746262,0.671130001544952,0.377969980239868,0.666894972324371,0.386568963527679,0.684778988361359,0.0912920087575912,0.591284394264221,0.0534786731004715,0.55276882648468,0.0527559965848923,0.567956984043121,0.0829370021820068,0.599466979503632,0.0509599968791008,0.606418013572693,0.0666479989886284,0.621360003948212,0.0703279972076416,0.61583399772644,0.0513719990849495,0.598466992378235,0.0500969961285591,0.627819001674652,0.061039999127388,0.633642017841339,0.0638440027832985,0.627501010894775,0.0505279935896397,0.617118000984192,0.0666479989886284,0.621360003948212,0.0509599968791008,0.606418013572693,0.0505279935896397,0.617118000984192,0.0638440027832985,0.627501010894775,0.120416723191738,0.5649294257164,0.0983220487833023,0.552909016609192,0.0964563190937042,0.568715572357178,0.10719034075737,0.576332330703735,0.254903048276901,0.804720997810364,0.258332014083862,0.806807100772858,0.29674169421196,0.773239016532898,0.282282501459122,0.751516938209534,0.0983220487833023,0.552909016609192,0.0547330006957054,0.523630976676941,0.0541765205562115,0.537130296230316,0.0964563190937042,0.568715572357178,0.0584031008183956,0.641896963119507,0.0500419922173023,0.63565993309021,0.0492378026247025,0.644462943077087,0.0563770048320293,0.651134312152863,0.061039999127388,0.633642017841339,0.0500969961285591,0.627819001674652,0.0500419922173023,0.63565993309021,0.0584031008183956,0.641896963119507,0.0563770048320293,0.651134312152863,0.0492378026247025,0.644462943077087,0.0479943454265594,0.6573725938797,0.0554411560297012,0.661211490631104,0.281558007001877,0.554219007492065,0.281284987926483,0.545005917549133,0.238275244832039,0.548607230186462,0.236315369606018,0.56401252746582,0.613384962081909,0.0410690009593964,0.613121747970581,0.0491140075027943,0.641104519367218,0.0491139963269234,0.646642863750458,0.0410690009593964,0.10719034075737,0.576332330703735,0.0964563190937042, +0.568715572357178,0.0912920087575912,0.591284394264221,0.100517928600311,0.528115093708038,0.120416723191738,0.5649294257164,0.143860965967178,0.546185612678528,0.147695630788803,0.527009010314941,0.0569729916751385,0.46794193983078,0.056377999484539,0.484452992677689,0.1014054864645,0.499670714139938,0.102115496993065,0.480458796024323,0.0587619990110397,0.429754018783569,0.0578670091927052,0.448848068714142,0.103111736476421,0.460577756166458,0.104213759303093,0.440165281295776,0.150707006454468,0.483339011669159,0.102115496993065,0.480458796024323,0.1014054864645,0.499670714139938,0.150140017271042,0.503476977348328,0.0604120008647442,0.392053008079529,0.0595870018005371,0.410902976989746,0.105244010686874,0.419359028339386,0.106174498796463,0.39852374792099,0.150707006454468,0.483339011669159,0.150140017271042,0.503476977348328,0.159032002091408,0.502224981784821,0.159422993659973,0.481833934783936,0.152541995048523,0.443533033132553,0.104213759303093,0.440165281295776,0.103111736476421,0.460577756166458,0.151589006185532,0.463778048753738,0.06182000041008,0.352898955345154,0.0611159950494766,0.372475981712341,0.106977000832558,0.378025501966476,0.107668250799179,0.357983529567719,0.152541995048523,0.443533033132553,0.151589006185532,0.463778048753738,0.160441994667053,0.463162988424301,0.161460995674133,0.444492995738983,0.153940007090569,0.398703068494797,0.106174498796463,0.39852374792099,0.105244010686874,0.419359028339386,0.153323993086815,0.421341985464096,0.0625309944152832,0.314359962940216,0.0621749982237816,0.333629995584488,0.108264736831188,0.338517755270004,0.108737252652645,0.319373548030853,0.162495002150536,0.397377014160156,0.153940007090569,0.398703068494797,0.153323993086815,0.421341985464096,0.161978006362915,0.420935034751892,0.154742002487183,0.356654942035675,0.107668250799179,0.357983529567719,0.106977000832558,0.378025501966476,0.1543969810009,0.377115935087204,0.109192997217178,0.281228721141815,0.0625120028853416,0.275829017162323,0.0625210180878639,0.295095026493073,0.109054751694202, +0.300297737121582,0.154742002487183,0.356654942035675,0.1543969810009,0.377115935087204,0.162716969847679,0.376163899898529,0.162939995527267,0.354950964450836,0.155272006988525,0.318881988525391,0.108737252652645,0.319373548030853,0.108264736831188,0.338517755270004,0.155020996928215,0.33739098906517,0.10887023806572,0.242713749408722,0.0620020031929016,0.237028002738953,0.0622570067644119,0.256428003311157,0.109125748276711,0.262103736400604,0.16313399374485,0.317934989929199,0.155272006988525,0.318881988525391,0.155020996928215,0.33739098906517,0.163037002086639,0.33644300699234,0.155698984861374,0.282671928405762,0.109192997217178,0.281228721141815,0.109054751694202,0.300297737121582,0.155532985925674,0.300684988498688,0.0602330006659031,0.196431994438171,0.0611179918050766,0.216729998588562,0.108442008495331,0.222848981618881,0.107812486588955,0.20253124833107,0.16364398598671,0.282489955425262,0.155698984861374,0.282671928405762,0.155532985925674,0.300684988498688,0.16338899731636,0.300212979316711,0.155361995100975,0.246243000030518,0.10887023806572,0.242713749408722,0.109125748276711,0.262103736400604,0.155664995312691,0.264714002609253,0.0576950088143349,0.156589031219482,0.0589639917016029,0.176510989665985,0.106951996684074,0.181783258914948,0.105783216655254,0.160805463790894,0.16347399353981,0.247376978397369,0.155361995100975,0.246243000030518,0.155664995312691,0.264714002609253,0.163559034466743,0.264934003353119,0.15378500521183,0.206167995929718,0.107812486588955,0.20253124833107,0.108442008495331,0.222848981618881,0.15472300350666,0.226690992712975,0.161482006311417,0.207047998905182,0.15378500521183,0.206167995929718,0.15472300350666,0.226690992712975,0.162478029727936,0.227212026715279,0.151023000478745,0.163013994693756,0.105783216655254,0.160805463790894,0.106951996684074,0.181783258914948,0.152586027979851,0.184787034988403,0.151023000478745,0.163013994693756,0.152586027979851,0.184787034988403,0.15998999774456,0.185145005583763,0.158499002456665,0.163241997361183,0.153631001710892,0.119869999587536, +0.146071791648865,0.119640901684761,0.148993015289307,0.141314998269081,0.156064972281456,0.141555964946747,0.192129001021385,0.119494996964931,0.190208971500397,0.137288987636566,0.196287006139755,0.138300999999046,0.198815852403641,0.120532907545567,0.588109970092773,0.40310999751091,0.571051955223083,0.398711979389191,0.573796987533569,0.387768059968948,0.590300023555756,0.390854001045227,0.583096981048584,0.423958003520966,0.565932989120483,0.417081952095032,0.568491995334625,0.407896995544434,0.585604012012482,0.413534045219421,0.583096981048584,0.423958003520966,0.574496984481812,0.433459013700485,0.557286024093628,0.424566000699997,0.565932989120483,0.417081952095032,0.565895855426788,0.442958950996399,0.559674978256226,0.446357995271683,0.543654024600983,0.434915989637375,0.548639059066772,0.432049989700317,0.553454875946045,0.449757933616638,0.537593007087708,0.452968716621399,0.527737021446228,0.437902003526688,0.538668990135193,0.437782049179077,0.522218108177185,0.452676087617874,0.514537990093231,0.450159996747971,0.512215971946716,0.435739010572433,0.516804993152618,0.438023000955582,0.48127469420433,0.422952324151993,0.492312788963318,0.415511846542358,0.496255993843079,0.421613991260529,0.487694025039673,0.431688070297241,0.471274077892303,0.401226073503494,0.486205995082855,0.399402022361755,0.489059597253799,0.406928479671478,0.47594690322876,0.411376535892487,0.477504074573517,0.36734402179718,0.491823971271515,0.370835989713669,0.489015012979507,0.385119020938873,0.474388986825943,0.384285002946854,0.487402945756912,0.348780006170273,0.500191986560822,0.354223966598511,0.496007889509201,0.362529933452606,0.482453912496567,0.358061939477921,0.498961091041565,0.329626053571701,0.511240899562836,0.336691945791245,0.50571596622467,0.345457971096039,0.493182003498077,0.339203000068665,0.498961091041565,0.329626053571701,0.508248090744019,0.324314057826996,0.51875102519989,0.332316011190414,0.511240899562836,0.336691945791245,0.557126998901367,0.340887010097504,0.567469954490662,0.330958187580109,0.582952439785004, +0.337187349796295,0.569817006587982,0.345772981643677,0.544380068778992,0.336131036281586,0.550303876399994,0.324851393699646,0.558840990066528,0.327784597873688,0.550754070281982,0.338509023189545,0.544380068778992,0.336131036281586,0.535319983959198,0.332035005092621,0.537354230880737,0.320733249187469,0.550303876399994,0.324851393699646,0.489603012800217,0.809594988822937,0.479016900062561,0.801620006561279,0.492657959461212,0.771198987960815,0.507247984409332,0.779456973075867,0.514442980289459,0.766412019729614,0.521438002586365,0.755366027355194,0.539283990859985,0.765878021717072,0.531171083450317,0.776805996894836,0.539283990859985,0.765878021717072,0.557451128959656,0.774982094764709,0.547708988189697,0.787969946861267,0.531171083450317,0.776805996894836,0.547708988189697,0.787969946861267,0.537967026233673,0.800957024097443,0.522193133831024,0.790151178836823,0.531171083450317,0.776805996894836,0.439597070217133,0.785275042057037,0.441320091485977,0.761162042617798,0.45898300409317,0.76244193315506,0.454014927148819,0.789458930492401,0.529209971427917,0.746183931827545,0.538478970527649,0.738547027111053,0.555068016052246,0.75071108341217,0.54678601026535,0.757444024085999,0.555068016052246,0.75071108341217,0.569877982139587,0.761920869350433,0.563664078712463,0.768452048301697,0.54678601026535,0.757444024085999,0.563664078712463,0.768452048301697,0.557451128959656,0.774982094764709,0.539283990859985,0.765878021717072,0.54678601026535,0.757444024085999,0.479206055402756,0.751405119895935,0.481129944324493,0.739174008369446,0.502235054969788,0.746801972389221,0.497333943843842,0.757558941841125,0.502235054969788,0.746801972389221,0.521438002586365,0.755366027355194,0.514442980289459,0.766412019729614,0.497333943843842,0.757558941841125,0.514442980289459,0.766412019729614,0.507247984409332,0.779456973075867,0.492657959461212,0.771198987960815,0.497333943843842,0.757558941841125,0.439597070217133,0.785275042057037,0.430529028177261,0.784605979919434,0.426856994628906,0.760756015777588,0.441320091485977,0.761162042617798, +0.490785956382751,0.290627002716064,0.499771952629089,0.25970196723938,0.50722998380661,0.256805986166,0.505122005939484,0.290298014879227,0.408598005771637,0.749782979488373,0.402536928653717,0.739007949829102,0.419937938451767,0.739239931106567,0.423702001571655,0.749265015125275,0.419937938451767,0.739239931106567,0.437661945819855,0.738121867179871,0.440182954072952,0.748966872692108,0.423702001571655,0.749265015125275,0.440182954072952,0.748966872692108,0.441320091485977,0.761162042617798,0.426856994628906,0.760756015777588,0.423702001571655,0.749265015125275,0.460727155208588,0.736916542053223,0.481129944324493,0.739174008369446,0.479206055402756,0.751405119895935,0.459420025348663,0.74911105632782,0.479206055402756,0.751405119895935,0.477033942937851,0.765489935874939,0.45898300409317,0.76244193315506,0.459420025348663,0.74911105632782,0.45898300409317,0.76244193315506,0.441320091485977,0.761162042617798,0.440182954072952,0.748966872692108,0.459420025348663,0.74911105632782,0.420922994613647,0.709182977676392,0.433439046144485,0.729734063148499,0.416014015674591,0.731798112392426,0.40599200129509,0.714070081710815,0.433439046144485,0.729734063148499,0.420922994613647,0.709182977676392,0.439791977405548,0.702378153800964,0.4573575258255,0.727022528648376,0.433439046144485,0.729734063148499,0.437661945819855,0.738121867179871,0.419937938451767,0.739239931106567,0.416014015674591,0.731798112392426,0.399803012609482,0.703173041343689,0.412998020648956,0.69677197933197,0.420922994613647,0.709182977676392,0.40599200129509,0.714070081710815,0.4824498295784,0.722436368465424,0.4573575258255,0.727022528648376,0.439791977405548,0.702378153800964,0.45939514040947,0.700253367424011,0.4573575258255,0.727022528648376,0.4824498295784,0.722436368465424,0.481129944324493,0.739174008369446,0.460727155208588,0.736916542053223,0.438535630702972,0.678183436393738,0.45939514040947,0.700253367424011,0.439791977405548,0.702378153800964,0.427164077758789,0.688785195350647,0.420922994613647,0.709182977676392,0.412998020648956,0.69677197933197, +0.427164077758789,0.688785195350647,0.439791977405548,0.702378153800964,0.481129944324493,0.739174008369446,0.4824498295784,0.722436368465424,0.509053766727448,0.735249102115631,0.502235054969788,0.746801972389221,0.736557960510254,0.219146966934204,0.760260045528412,0.236258029937744,0.778818070888519,0.234795048832893,0.755701124668121,0.21739199757576,0.522321224212646,0.725589871406555,0.538478970527649,0.738547027111053,0.529209971427917,0.746183931827545,0.509053766727448,0.735249102115631,0.386568963527679,0.684778988361359,0.394753009080887,0.677007079124451,0.404106050729752,0.686321020126343,0.393272042274475,0.693636059761047,0.404106050729752,0.686321020126343,0.412998020648956,0.69677197933197,0.399803012609482,0.703173041343689,0.393272042274475,0.693636059761047,0.399803012609482,0.703173041343689,0.386983007192612,0.708170056343079,0.382684081792831,0.700360119342804,0.393272042274475,0.693636059761047,0.402844965457916,0.66860294342041,0.410937070846558,0.660198092460632,0.424794614315033,0.66933536529541,0.415432989597321,0.677824020385742,0.427164077758789,0.688785195350647,0.412998020648956,0.69677197933197,0.404106050729752,0.686321020126343,0.415432989597321,0.677824020385742,0.447214841842651,0.643701374530792,0.455084979534149,0.633414447307587,0.466388672590256,0.642750024795532,0.458428412675858,0.653533220291138,0.424794614315033,0.66933536529541,0.410937070846558,0.660198092460632,0.419885009527206,0.651203989982605,0.437996983528137,0.654747068881989,0.480234742164612,0.622585654258728,0.472135126590729,0.634712934494019,0.461049973964691,0.625458002090454,0.467026859521866,0.616052508354187,0.461049973964691,0.625458002090454,0.449318528175354,0.61651337146759,0.454167723655701,0.609226822853088,0.467026859521866,0.616052508354187,0.760260045528412,0.236258029937744,0.736557960510254,0.219146966934204,0.72008204460144,0.221919000148773,0.743758857250214,0.238563999533653,0.478400617837906,0.655835926532745,0.485781818628311,0.673746883869171,0.467003524303436,0.681717753410339,0.469277113676071, +0.661527156829834,0.467003524303436,0.681717753410339,0.449783951044083,0.665350794792175,0.458428412675858,0.653533220291138,0.469277113676071,0.661527156829834,0.513980031013489,0.629042744636536,0.494866490364075,0.630170285701752,0.497061312198639,0.617858469486237,0.509602427482605,0.61336076259613,0.449783951044083,0.665350794792175,0.467003524303436,0.681717753410339,0.45939514040947,0.700253367424011,0.438535630702972,0.678183436393738,0.517416000366211,0.645749270915985,0.52361536026001,0.663667380809784,0.502986192703247,0.667705893516541,0.493073910474777,0.647093117237091,0.505321264266968,0.710566163063049,0.4824498295784,0.722436368465424,0.45939514040947,0.700253367424011,0.492069154977798,0.691675066947937,0.502986192703247,0.667705893516541,0.52361536026001,0.663667380809784,0.531373560428619,0.680519938468933,0.513021349906921,0.685287952423096,0.531373560428619,0.680519938468933,0.54167366027832,0.696521520614624,0.524445772171021,0.70257830619812,0.513021349906921,0.685287952423096,0.524445772171021,0.70257830619812,0.505321264266968,0.710566163063049,0.492069154977798,0.691675066947937,0.513021349906921,0.685287952423096,0.524445772171021,0.70257830619812,0.54167366027832,0.696521520614624,0.551992952823639,0.712009966373444,0.53643262386322,0.718061506748199,0.551992952823639,0.712009966373444,0.564980983734131,0.726028025150299,0.549966990947723,0.732137978076935,0.53643262386322,0.718061506748199,0.549966990947723,0.732137978076935,0.538478970527649,0.738547027111053,0.522321224212646,0.725589871406555,0.53643262386322,0.718061506748199,0.579671025276184,0.739134013652802,0.592217028141022,0.752358973026276,0.581047058105469,0.757140040397644,0.565521001815796,0.744884014129639,0.581047058105469,0.757140040397644,0.569877982139587,0.761920869350433,0.555068016052246,0.75071108341217,0.565521001815796,0.744884014129639,0.555068016052246,0.75071108341217,0.538478970527649,0.738547027111053,0.549966990947723,0.732137978076935,0.565521001815796,0.744884014129639,0.575174868106842,0.669176876544952, +0.584118962287903,0.6839200258255,0.561115264892578,0.690740346908569,0.551980018615723,0.675202131271362,0.561115264892578,0.690740346908569,0.54167366027832,0.696521520614624,0.531373560428619,0.680519938468933,0.551980018615723,0.675202131271362,0.531373560428619,0.680519938468933,0.52361536026001,0.663667380809784,0.544670045375824,0.659137070178986,0.551980018615723,0.675202131271362,0.534453988075256,0.62664008140564,0.557875990867615,0.62348198890686,0.562291979789734,0.638794004917145,0.539131045341492,0.642912983894348,0.562291979789734,0.638794004917145,0.567915856838226,0.654111981391907,0.544670045375824,0.659137070178986,0.539131045341492,0.642912983894348,0.544670045375824,0.659137070178986,0.52361536026001,0.663667380809784,0.517416000366211,0.645749270915985,0.539131045341492,0.642912983894348,0.594794988632202,0.698274075984955,0.607093989849091,0.712188005447388,0.584828019142151,0.71929007768631,0.572122991085052,0.705381989479065,0.584828019142151,0.71929007768631,0.564980983734131,0.726028025150299,0.551992952823639,0.712009966373444,0.572122991085052,0.705381989479065,0.551992952823639,0.712009966373444,0.54167366027832,0.696521520614624,0.561115264892578,0.690740346908569,0.572122991085052,0.705381989479065,0.620903015136719,0.725612998008728,0.635823011398315,0.739022970199585,0.614019989967346,0.745691061019897,0.599045991897583,0.732631981372833,0.614019989967346,0.745691061019897,0.592217028141022,0.752358973026276,0.579671025276184,0.739134013652802,0.599045991897583,0.732631981372833,0.579671025276184,0.739134013652802,0.564980983734131,0.726028025150299,0.584828019142151,0.71929007768631,0.599045991897583,0.732631981372833,0.629364013671875,0.704985022544861,0.649700999259949,0.698105096817017,0.662331998348236,0.711160004138947,0.642503023147583,0.71831202507019,0.662331998348236,0.711160004138947,0.676594018936157,0.723859071731567,0.656208992004395,0.731441020965576,0.642503023147583,0.71831202507019,0.656208992004395,0.731441020965576,0.635823011398315,0.739022970199585,0.620903015136719, +0.725612998008728,0.642503023147583,0.71831202507019,0.637830018997192,0.684718012809753,0.649700999259949,0.698105096817017,0.629364013671875,0.704985022544861,0.617353975772858,0.691262900829315,0.629364013671875,0.704985022544861,0.607093989849091,0.712188005447388,0.594794988632202,0.698274075984955,0.617353975772858,0.691262900829315,0.594794988632202,0.698274075984955,0.584118962287903,0.6839200258255,0.606793999671936,0.677321970462799,0.617353975772858,0.691262900829315,0.590801000595093,0.649165987968445,0.61149400472641,0.64454197883606,0.618623852729797,0.657943904399872,0.598002016544342,0.663336992263794,0.618623852729797,0.657943904399872,0.627283930778503,0.671248912811279,0.606793999671936,0.677321970462799,0.598002016544342,0.663336992263794,0.606793999671936,0.677321970462799,0.584118962287903,0.6839200258255,0.575174868106842,0.669176876544952,0.598002016544342,0.663336992263794,0.666168868541718,0.691969871520996,0.680759012699127,0.685822010040283,0.693635046482086,0.697936058044434,0.678876996040344,0.704591989517212,0.693635046482086,0.697936058044434,0.707367122173309,0.710223078727722,0.691980004310608,0.717041015625,0.678876996040344,0.704591989517212,0.691980004310608,0.717041015625,0.676594018936157,0.723859071731567,0.662331998348236,0.711160004138947,0.678876996040344,0.704591989517212,0.695461988449097,0.678898990154266,0.709969043731689,0.671151995658875,0.721965074539185,0.682330012321472,0.708105027675629,0.690524995326996,0.721965074539185,0.682330012321472,0.734942018985748,0.693911015987396,0.721153974533081,0.702067017555237,0.708105027675629,0.690524995326996,0.721153974533081,0.702067017555237,0.707367122173309,0.710223078727722,0.693635046482086,0.697936058044434,0.708105027675629,0.690524995326996,0.668795883655548,0.673382937908173,0.680759012699127,0.685822010040283,0.666168868541718,0.691969871520996,0.654253005981445,0.679005980491638,0.666168868541718,0.691969871520996,0.649700999259949,0.698105096817017,0.637830018997192,0.684718012809753,0.654253005981445,0.679005980491638, +0.637830018997192,0.684718012809753,0.627283930778503,0.671248912811279,0.643730998039246,0.66600102186203,0.654253005981445,0.679005980491638,0.628160893917084,0.640478909015656,0.642759084701538,0.636468052864075,0.649802088737488,0.648697137832642,0.63520485162735,0.65325790643692,0.649802088737488,0.648697137832642,0.658294081687927,0.66091114282608,0.643730998039246,0.66600102186203,0.63520485162735,0.65325790643692,0.643730998039246,0.66600102186203,0.627283930778503,0.671248912811279,0.618623852729797,0.657943904399872,0.63520485162735,0.65325790643692,0.723971009254456,0.662527978420258,0.735400915145874,0.652854025363922,0.745199978351593,0.663442015647888,0.734892904758453,0.673325836658478,0.745199978351593,0.663442015647888,0.756002128124237,0.674610137939453,0.745472013950348,0.684260010719299,0.734892904758453,0.673325836658478,0.745472013950348,0.684260010719299,0.734942018985748,0.693911015987396,0.721965074539185,0.682330012321472,0.734892904758453,0.673325836658478,0.698305010795593,0.660030007362366,0.709969043731689,0.671151995658875,0.695461988449097,0.678898990154266,0.683630883693695,0.667107880115509,0.695461988449097,0.678898990154266,0.680759012699127,0.685822010040283,0.668795883655548,0.673382937908173,0.683630883693695,0.667107880115509,0.668795883655548,0.673382937908173,0.658294081687927,0.66091114282608,0.673128962516785,0.655313014984131,0.683630883693695,0.667107880115509,0.701382040977478,0.641707003116608,0.713608980178833,0.63404107093811,0.724349975585938,0.643217861652374,0.712362945079803,0.651998996734619,0.724349975585938,0.643217861652374,0.735400915145874,0.652854025363922,0.723971009254456,0.662527978420258,0.712362945079803,0.651998996734619,0.723971009254456,0.662527978420258,0.709969043731689,0.671151995658875,0.698305010795593,0.660030007362366,0.712362945079803,0.651998996734619,0.742191970348358,0.641956925392151,0.745733022689819,0.631330132484436,0.754235148429871,0.641326010227203,0.751199007034302,0.652606010437012,0.754235148429871,0.641326010227203,0.76403397321701, +0.65448397397995,0.760017991065979,0.664547026157379,0.751199007034302,0.652606010437012,0.760017991065979,0.664547026157379,0.756002128124237,0.674610137939453,0.745199978351593,0.663442015647888,0.751199007034302,0.652606010437012,0.657242000102997,0.632000029087067,0.671346008777618,0.627016067504883,0.678791105747223,0.638038098812103,0.664471030235291,0.643676996231079,0.678791105747223,0.638038098812103,0.687677979469299,0.648985028266907,0.673128962516785,0.655313014984131,0.664471030235291,0.643676996231079,0.673128962516785,0.655313014984131,0.658294081687927,0.66091114282608,0.649802088737488,0.648697137832642,0.664471030235291,0.643676996231079,0.747414112091064,0.62246710062027,0.747010886669159,0.612115025520325,0.756626904010773,0.620287895202637,0.755653977394104,0.630110025405884,0.756626904010773,0.620287895202637,0.766323029994965,0.626257002353668,0.765179038047791,0.640371084213257,0.755653977394104,0.630110025405884,0.765179038047791,0.640371084213257,0.76403397321701,0.65448397397995,0.754235148429871,0.641326010227203,0.755653977394104,0.630110025405884,0.723728895187378,0.626547873020172,0.731975078582764,0.619828999042511,0.738390862941742,0.625634908676147,0.732810020446777,0.633891880512238,0.738390862941742,0.625634908676147,0.745733022689819,0.631330132484436,0.742191970348358,0.641956925392151,0.732810020446777,0.633891880512238,0.742191970348358,0.641956925392151,0.735400915145874,0.652854025363922,0.724349975585938,0.643217861652374,0.732810020446777,0.633891880512238,0.754078984260559,0.605196952819824,0.762430906295776,0.601716995239258,0.764376997947693,0.613987028598785,0.758320927619934,0.613188982009888,0.764376997947693,0.613987028598785,0.766323029994965,0.626257002353668,0.756626904010773,0.620287895202637,0.758320927619934,0.613188982009888,0.738390862941742,0.625634908676147,0.731975078582764,0.619828999042511,0.738577902317047,0.614482998847961,0.741741001605988,0.620060980319977,0.738577902317047,0.614482998847961,0.747010886669159,0.612115025520325,0.747414112091064,0.62246710062027, +0.741741001605988,0.620060980319977,0.678791105747223,0.638038098812103,0.671346008777618,0.627016067504883,0.684804975986481,0.621454000473022,0.692336857318878,0.63162088394165,0.684804975986481,0.621454000473022,0.697259068489075,0.615392029285431,0.704738020896912,0.624827027320862,0.692336857318878,0.63162088394165,0.704738020896912,0.624827027320862,0.713608980178833,0.63404107093811,0.701382040977478,0.641707003116608,0.692336857318878,0.63162088394165,0.708346009254456,0.608904957771301,0.718199074268341,0.602313995361328,0.72513210773468,0.611615121364594,0.715624094009399,0.618058979511261,0.72513210773468,0.611615121364594,0.731975078582764,0.619828999042511,0.723728895187378,0.626547873020172,0.715624094009399,0.618058979511261,0.723728895187378,0.626547873020172,0.713608980178833,0.63404107093811,0.704738020896912,0.624827027320862,0.715624094009399,0.618058979511261,0.743396937847137,0.582295000553131,0.752884984016418,0.574867010116577,0.757658004760742,0.588292002677917,0.749354898929596,0.594286918640137,0.757658004760742,0.588292002677917,0.762430906295776,0.601716995239258,0.754078984260559,0.605196952819824,0.749354898929596,0.594286918640137,0.754078984260559,0.605196952819824,0.747010886669159,0.612115025520325,0.741214990615845,0.600161015987396,0.749354898929596,0.594286918640137,0.726949870586395,0.595936894416809,0.735162138938904,0.589391112327576,0.741214990615845,0.600161015987396,0.733401119709015,0.605793118476868,0.741214990615845,0.600161015987396,0.747010886669159,0.612115025520325,0.738577902317047,0.614482998847961,0.733401119709015,0.605793118476868,0.738577902317047,0.614482998847961,0.731975078582764,0.619828999042511,0.72513210773468,0.611615121364594,0.733401119709015,0.605793118476868,0.727735996246338,0.579699993133545,0.719052970409393,0.572337985038757,0.725522100925446,0.562460124492645,0.735453963279724,0.571054995059967,0.725522100925446,0.562460124492645,0.733406066894531,0.548467993736267,0.743146061897278,0.561667084693909,0.735453963279724,0.571054995059967,0.743146061897278, +0.561667084693909,0.752884984016418,0.574867010116577,0.743396937847137,0.582295000553131,0.735453963279724,0.571054995059967,0.71151214838028,0.593243002891541,0.705379009246826,0.584820985794067,0.713168025016785,0.579563975334167,0.719964981079102,0.586858987808228,0.713168025016785,0.579563975334167,0.719052970409393,0.572337985038757,0.727735996246338,0.579699993133545,0.719964981079102,0.586858987808228,0.727735996246338,0.579699993133545,0.735162138938904,0.589391112327576,0.726949870586395,0.595936894416809,0.719964981079102,0.586858987808228,0.690688848495483,0.605551898479462,0.684998989105225,0.595677971839905,0.695912003517151,0.5903480052948,0.701745986938477,0.59956693649292,0.695912003517151,0.5903480052948,0.705379009246826,0.584820985794067,0.71151214838028,0.593243002891541,0.701745986938477,0.59956693649292,0.71151214838028,0.593243002891541,0.718199074268341,0.602313995361328,0.708346009254456,0.608904957771301,0.701745986938477,0.59956693649292,0.665046870708466,0.61574399471283,0.659739971160889,0.604453027248383,0.672869026660919,0.600344061851501,0.678361892700195,0.610922873020172,0.672869026660919,0.600344061851501,0.684998989105225,0.595677971839905,0.690688848495483,0.605551898479462,0.678361892700195,0.610922873020172,0.690688848495483,0.605551898479462,0.697259068489075,0.615392029285431,0.684804975986481,0.621454000473022,0.678361892700195,0.610922873020172,0.713168025016785,0.579563975334167,0.705379009246826,0.584820985794067,0.700107991695404,0.577464997768402,0.70728200674057,0.57505601644516,0.700107991695404,0.577464997768402,0.696402132511139,0.568480134010315,0.709233045578003,0.568549990653992,0.70728200674057,0.57505601644516,0.680160105228424,0.586140096187592,0.676427006721497,0.577463865280151,0.686537027359009,0.57427990436554,0.690932810306549,0.581553876399994,0.686537027359009,0.57427990436554,0.696402132511139,0.568480134010315,0.700107991695404,0.577464997768402,0.690932810306549,0.581553876399994,0.700107991695404,0.577464997768402,0.705379009246826,0.584820985794067, +0.695912003517151,0.5903480052948,0.690932810306549,0.581553876399994,0.717397928237915,0.546486973762512,0.733406066894531,0.548467993736267,0.725522100925446,0.562460124492645,0.713599026203156,0.558399021625519,0.725522100925446,0.562460124492645,0.719052970409393,0.572337985038757,0.709233045578003,0.568549990653992,0.713599026203156,0.558399021625519,0.709233045578003,0.568549990653992,0.696402132511139,0.568480134010315,0.700784206390381,0.556457996368408,0.713599026203156,0.558399021625519,0.655269026756287,0.593369007110596,0.651917099952698,0.582540988922119,0.664713025093079,0.580205976963043,0.668188869953156,0.590036928653717,0.664713025093079,0.580205976963043,0.676427006721497,0.577463865280151,0.680160105228424,0.586140096187592,0.668188869953156,0.590036928653717,0.680160105228424,0.586140096187592,0.684998989105225,0.595677971839905,0.672869026660919,0.600344061851501,0.668188869953156,0.590036928653717,0.686537027359009,0.57427990436554,0.676427006721497,0.577463865280151,0.674057006835938,0.570173978805542,0.682453036308289,0.569616973400116,0.674057006835938,0.570173978805542,0.674444139003754,0.562327980995178,0.685412108898163,0.563893020153046,0.682453036308289,0.569616973400116,0.675490021705627,0.552179992198944,0.676838994026184,0.540642023086548,0.690445065498352,0.542646050453186,0.688177049160004,0.554225027561188,0.690445065498352,0.542646050453186,0.70400595664978,0.544688999652863,0.700784206390381,0.556457996368408,0.688177049160004,0.554225027561188,0.700784206390381,0.556457996368408,0.696402132511139,0.568480134010315,0.685412108898163,0.563893020153046,0.688177049160004,0.554225027561188,0.649968028068542,0.572019040584564,0.649101972579956,0.561277091503143,0.662195980548859,0.561589002609253,0.662836015224457,0.571056008338928,0.662195980548859,0.561589002609253,0.674444139003754,0.562327980995178,0.674057006835938,0.570173978805542,0.662836015224457,0.571056008338928,0.674057006835938,0.570173978805542,0.676427006721497,0.577463865280151,0.664713025093079,0.580205976963043,0.662836015224457, +0.571056008338928,0.657242000102997,0.632000029087067,0.642759084701538,0.636468052864075,0.636604905128479,0.623951852321625,0.651027143001556,0.62008410692215,0.636604905128479,0.623951852321625,0.631500005722046,0.611322999000549,0.645828902721405,0.608108997344971,0.651027143001556,0.62008410692215,0.645828902721405,0.608108997344971,0.659739971160889,0.604453027248383,0.665046870708466,0.61574399471283,0.651027143001556,0.62008410692215,0.627604007720947,0.598752975463867,0.624787926673889,0.586188971996307,0.638562023639679,0.584504008293152,0.641650021076202,0.596258044242859,0.638562023639679,0.584504008293152,0.651917099952698,0.582540988922119,0.655269026756287,0.593369007110596,0.641650021076202,0.596258044242859,0.655269026756287,0.593369007110596,0.659739971160889,0.604453027248383,0.645828902721405,0.608108997344971,0.641650021076202,0.596258044242859,0.628160893917084,0.640478909015656,0.61149400472641,0.64454197883606,0.605535984039307,0.630779027938843,0.622087001800537,0.627362012863159,0.605535984039307,0.630779027938843,0.600762009620667,0.616892993450165,0.617120921611786,0.614104986190796,0.622087001800537,0.627362012863159,0.617120921611786,0.614104986190796,0.631500005722046,0.611322999000549,0.636604905128479,0.623951852321625,0.622087001800537,0.627362012863159,0.622922003269196,0.573575973510742,0.621788024902344,0.560869991779327,0.63559889793396,0.560998022556305,0.636632978916168,0.572820007801056,0.63559889793396,0.560998022556305,0.649101972579956,0.561277091503143,0.649968028068542,0.572019040584564,0.636632978916168,0.572820007801056,0.649968028068542,0.572019040584564,0.651917099952698,0.582540988922119,0.638562023639679,0.584504008293152,0.636632978916168,0.572820007801056,0.610736072063446,0.587691068649292,0.624787926673889,0.586188971996307,0.627604007720947,0.598752975463867,0.613402009010315,0.600903034210205,0.627604007720947,0.598752975463867,0.631500005722046,0.611322999000549,0.617120921611786,0.614104986190796,0.613402009010315,0.600903034210205,0.617120921611786,0.614104986190796, +0.600762009620667,0.616892993450165,0.597186923027039,0.603119909763336,0.613402009010315,0.600903034210205,0.590801000595093,0.649165987968445,0.567915856838226,0.654111981391907,0.562291979789734,0.638794004917145,0.585014879703522,0.63466888666153,0.562291979789734,0.638794004917145,0.557875990867615,0.62348198890686,0.580497145652771,0.620125114917755,0.585014879703522,0.63466888666153,0.580497145652771,0.620125114917755,0.600762009620667,0.616892993450165,0.605535984039307,0.630779027938843,0.585014879703522,0.63466888666153,0.5747429728508,0.591560006141663,0.594642996788025,0.589363992214203,0.597186923027039,0.603119909763336,0.577098071575165,0.605815052986145,0.597186923027039,0.603119909763336,0.600762009620667,0.616892993450165,0.580497145652771,0.620125114917755,0.577098071575165,0.605815052986145,0.580497145652771,0.620125114917755,0.557875990867615,0.62348198890686,0.554244995117188,0.608434021472931,0.577098071575165,0.605815052986145,0.509602427482605,0.61336076259613,0.502324521541595,0.596214294433594,0.526895999908447,0.594223976135254,0.529733061790466,0.610425174236298,0.526895999908447,0.594223976135254,0.551878988742828,0.593454957008362,0.554244995117188,0.608434021472931,0.529733061790466,0.610425174236298,0.554244995117188,0.608434021472931,0.557875990867615,0.62348198890686,0.534453988075256,0.62664008140564,0.529733061790466,0.610425174236298,0.572802126407623,0.562528014183044,0.591967940330505,0.561532974243164,0.592966020107269,0.575528025627136,0.573352932929993,0.57718700170517,0.592966020107269,0.575528025627136,0.594642996788025,0.589363992214203,0.5747429728508,0.591560006141663,0.573352932929993,0.57718700170517,0.5747429728508,0.591560006141663,0.551878988742828,0.593454957008362,0.551262021064758,0.578350961208344,0.573352932929993,0.57718700170517,0.530632019042969,0.562062978744507,0.551836013793945,0.563028991222382,0.551262021064758,0.578350961208344,0.5278679728508,0.577991962432861,0.551262021064758,0.578350961208344,0.551878988742828,0.593454957008362,0.526895999908447, +0.594223976135254,0.5278679728508,0.577991962432861,0.526895999908447,0.594223976135254,0.502324521541595,0.596214294433594,0.505716979503632,0.57695597410202,0.5278679728508,0.577991962432861,0.470887988805771,0.575296998023987,0.47317698597908,0.567149996757507,0.491398990154266,0.56308501958847,0.48735499382019,0.576084971427917,0.491398990154266,0.56308501958847,0.510163068771362,0.56146901845932,0.505716979503632,0.57695597410202,0.48735499382019,0.576084971427917,0.505716979503632,0.57695597410202,0.502324521541595,0.596214294433594,0.482671022415161,0.588007926940918,0.48735499382019,0.576084971427917,0.497837007045746,0.536794006824493,0.51623797416687,0.533711910247803,0.513710021972656,0.547042012214661,0.495015978813171,0.549732029438019,0.513710021972656,0.547042012214661,0.510163068771362,0.56146901845932,0.491398990154266,0.56308501958847,0.495015978813171,0.549732029438019,0.491398990154266,0.56308501958847,0.47317698597908,0.567149996757507,0.476705014705658,0.553631007671356,0.495015978813171,0.549732029438019,0.535125851631165,0.532420992851257,0.554271936416626,0.532114028930664,0.553040981292725,0.547397017478943,0.533171117305756,0.546768128871918,0.553040981292725,0.547397017478943,0.551836013793945,0.563028991222382,0.530632019042969,0.562062978744507,0.533171117305756,0.546768128871918,0.530632019042969,0.562062978744507,0.510163068771362,0.56146901845932,0.513710021972656,0.547042012214661,0.533171117305756,0.546768128871918,0.499749183654785,0.513982117176056,0.517562031745911,0.51010799407959,0.517625987529755,0.521514892578125,0.499490052461624,0.525037050247192,0.517625987529755,0.521514892578125,0.51623797416687,0.533711910247803,0.497837007045746,0.536794006824493,0.499490052461624,0.525037050247192,0.497837007045746,0.536794006824493,0.480037033557892,0.540130853652954,0.48154404759407,0.529229998588562,0.499490052461624,0.525037050247192,0.607770025730133,0.56101405620575,0.621788024902344,0.560869991779327,0.622922003269196,0.573575973510742,0.608928143978119,0.574402093887329,0.622922003269196, +0.573575973510742,0.624787926673889,0.586188971996307,0.610736072063446,0.587691068649292,0.608928143978119,0.574402093887329,0.610736072063446,0.587691068649292,0.594642996788025,0.589363992214203,0.592966020107269,0.575528025627136,0.608928143978119,0.574402093887329,0.573445856571198,0.531981885433197,0.591441035270691,0.532248139381409,0.591459989547729,0.547299027442932,0.572963118553162,0.547418117523193,0.591459989547729,0.547299027442932,0.591967940330505,0.561532974243164,0.572802126407623,0.562528014183044,0.572963118553162,0.547418117523193,0.572802126407623,0.562528014183044,0.551836013793945,0.563028991222382,0.553040981292725,0.547397017478943,0.572963118553162,0.547418117523193,0.495579898357391,0.493303924798965,0.512603878974915,0.485853970050812,0.515734851360321,0.499143898487091,0.498385012149811,0.503148019313812,0.515734851360321,0.499143898487091,0.517562031745911,0.51010799407959,0.499749183654785,0.513982117176056,0.498385012149811,0.503148019313812,0.499749183654785,0.513982117176056,0.482536554336548,0.518382847309113,0.481906116008759,0.507878124713898,0.498385012149811,0.503148019313812,0.517625987529755,0.521514892578125,0.517562031745911,0.51010799407959,0.536084055900574,0.507424116134644,0.536139905452728,0.519337952136993,0.536084055900574,0.507424116134644,0.554625928401947,0.505336999893188,0.554923057556152,0.517835974693298,0.536139905452728,0.519337952136993,0.554923057556152,0.517835974693298,0.554271936416626,0.532114028930664,0.535125851631165,0.532420992851257,0.536139905452728,0.519337952136993,0.553013980388641,0.495386004447937,0.554625928401947,0.505336999893188,0.536084055900574,0.507424116134644,0.534825921058655,0.496587038040161,0.536084055900574,0.507424116134644,0.517562031745911,0.51010799407959,0.515734851360321,0.499143898487091,0.534825921058655,0.496587038040161,0.515734851360321,0.499143898487091,0.512603878974915,0.485853970050812,0.534042000770569,0.484479904174805,0.534825921058655,0.496587038040161,0.499125957489014,0.47408401966095,0.512603878974915,0.485853970050812, +0.495579898357391,0.493303924798965,0.488793760538101,0.48198664188385,0.495579898357391,0.493303924798965,0.480955958366394,0.497406989336014,0.476718842983246,0.487908959388733,0.488793760538101,0.48198664188385,0.575701892375946,0.489001870155334,0.591762065887451,0.497911989688873,0.572502017021179,0.503251016139984,0.567655026912689,0.495447993278503,0.572502017021179,0.503251016139984,0.554625928401947,0.505336999893188,0.553013980388641,0.495386004447937,0.567655026912689,0.495447993278503,0.591908991336823,0.515802025794983,0.591441035270691,0.532248139381409,0.573445856571198,0.531981885433197,0.573862016201019,0.516344010829926,0.573445856571198,0.531981885433197,0.554271936416626,0.532114028930664,0.554923057556152,0.517835974693298,0.573862016201019,0.516344010829926,0.554923057556152,0.517835974693298,0.554625928401947,0.505336999893188,0.572502017021179,0.503251016139984,0.573862016201019,0.516344010829926,0.621167004108429,0.548025012016296,0.621788024902344,0.560869991779327,0.607770025730133,0.56101405620575,0.607057988643646,0.547508001327515,0.607770025730133,0.56101405620575,0.591967940330505,0.561532974243164,0.591459989547729,0.547299027442932,0.607057988643646,0.547508001327515,0.591459989547729,0.547299027442932,0.591441035270691,0.532248139381409,0.607052981853485,0.533136069774628,0.607057988643646,0.547508001327515,0.591908991336823,0.515802025794983,0.591762065887451,0.497911989688873,0.610948085784912,0.50173807144165,0.608016014099121,0.51715099811554,0.610948085784912,0.50173807144165,0.625830054283142,0.505088984966278,0.622874021530151,0.51945698261261,0.608016014099121,0.51715099811554,0.622874021530151,0.51945698261261,0.621411859989166,0.534424960613251,0.607052981853485,0.533136069774628,0.608016014099121,0.51715099811554,0.649001896381378,0.549793899059296,0.649101972579956,0.561277091503143,0.63559889793396,0.560998022556305,0.635197997093201,0.548826932907104,0.63559889793396,0.560998022556305,0.621788024902344,0.560869991779327,0.621167004108429,0.548025012016296,0.635197997093201, +0.548826932907104,0.621167004108429,0.548025012016296,0.621411859989166,0.534424960613251,0.635650098323822,0.535893082618713,0.635197997093201,0.548826932907104,0.639774084091187,0.50823700428009,0.653109014034271,0.511236071586609,0.651045978069305,0.524082958698273,0.637175917625427,0.521782875061035,0.651045978069305,0.524082958698273,0.649653851985931,0.537439823150635,0.635650098323822,0.535893082618713,0.637175917625427,0.521782875061035,0.635650098323822,0.535893082618713,0.621411859989166,0.534424960613251,0.622874021530151,0.51945698261261,0.637175917625427,0.521782875061035,0.675490021705627,0.552179992198944,0.674444139003754,0.562327980995178,0.662195980548859,0.561589002609253,0.662431955337524,0.550807952880859,0.662195980548859,0.561589002609253,0.649101972579956,0.561277091503143,0.649001896381378,0.549793899059296,0.662431955337524,0.550807952880859,0.649001896381378,0.549793899059296,0.649653851985931,0.537439823150635,0.663312971591949,0.538964867591858,0.662431955337524,0.550807952880859,0.666160881519318,0.514141857624054,0.679237961769104,0.517117023468018,0.678139090538025,0.528627991676331,0.66460907459259,0.526312112808228,0.678139090538025,0.528627991676331,0.676838994026184,0.540642023086548,0.663312971591949,0.538964867591858,0.66460907459259,0.526312112808228,0.663312971591949,0.538964867591858,0.649653851985931,0.537439823150635,0.651045978069305,0.524082958698273,0.66460907459259,0.526312112808228,0.692646861076355,0.520321011543274,0.705263018608093,0.52276599407196,0.705291986465454,0.533410012722015,0.691910922527313,0.531189978122711,0.705291986465454,0.533410012722015,0.70400595664978,0.544688999652863,0.690445065498352,0.542646050453186,0.691910922527313,0.531189978122711,0.690445065498352,0.542646050453186,0.676838994026184,0.540642023086548,0.678139090538025,0.528627991676331,0.691910922527313,0.531189978122711,0.715963006019592,0.523461997509003,0.725100040435791,0.521835029125214,0.728601932525635,0.533224940299988,0.717645883560181,0.534698009490967,0.728601932525635,0.533224940299988, +0.733406066894531,0.548467993736267,0.717397928237915,0.546486973762512,0.717645883560181,0.534698009490967,0.717397928237915,0.546486973762512,0.70400595664978,0.544688999652863,0.705291986465454,0.533410012722015,0.717645883560181,0.534698009490967,0.655768990516663,0.500409066677094,0.659377992153168,0.490701943635941,0.6701899766922,0.494431018829346,0.667809009552002,0.50375097990036,0.6701899766922,0.494431018829346,0.681162118911743,0.498096108436584,0.679983019828796,0.507089972496033,0.667809009552002,0.50375097990036,0.679983019828796,0.507089972496033,0.679237961769104,0.517117023468018,0.666160881519318,0.514141857624054,0.667809009552002,0.50375097990036,0.679983019828796,0.507089972496033,0.681162118911743,0.498096108436584,0.692829012870789,0.501713991165161,0.692721128463745,0.510500073432922,0.692829012870789,0.501713991165161,0.703592121601105,0.504099011421204,0.704541981220245,0.512899994850159,0.692721128463745,0.510500073432922,0.704541981220245,0.512899994850159,0.705263018608093,0.52276599407196,0.692646861076355,0.520321011543274,0.692721128463745,0.510500073432922,0.711849987506866,0.504068970680237,0.71883088350296,0.502372860908508,0.721874177455902,0.511622130870819,0.713966906070709,0.513209998607635,0.721874177455902,0.511622130870819,0.725100040435791,0.521835029125214,0.715963006019592,0.523461997509003,0.713966906070709,0.513209998607635,0.715963006019592,0.523461997509003,0.705263018608093,0.52276599407196,0.704541981220245,0.512899994850159,0.713966906070709,0.513209998607635,0.74516898393631,0.518167018890381,0.752550005912781,0.526445031166077,0.742977976799011,0.537455976009369,0.737782955169678,0.52716201543808,0.742977976799011,0.537455976009369,0.733406066894531,0.548467993736267,0.728601932525635,0.533224940299988,0.737782955169678,0.52716201543808,0.728601932525635,0.533224940299988,0.725100040435791,0.521835029125214,0.733025014400482,0.517306089401245,0.737782955169678,0.52716201543808,0.743798136711121,0.502215981483459,0.747237980365753,0.490469992160797,0.755352258682251, +0.498297989368439,0.750738024711609,0.507901012897491,0.755352258682251,0.498297989368439,0.765205025672913,0.503739953041077,0.758876919746399,0.515092015266418,0.750738024711609,0.507901012897491,0.758876919746399,0.515092015266418,0.752550005912781,0.526445031166077,0.74516898393631,0.518167018890381,0.750738024711609,0.507901012897491,0.725762009620667,0.499758005142212,0.732474088668823,0.496379047632217,0.735143065452576,0.504060983657837,0.729140877723694,0.508329927921295,0.735143065452576,0.504060983657837,0.739377975463867,0.510545015335083,0.733025014400482,0.517306089401245,0.729140877723694,0.508329927921295,0.733025014400482,0.517306089401245,0.725100040435791,0.521835029125214,0.721874177455902,0.511622130870819,0.729140877723694,0.508329927921295,0.755352258682251,0.498297989368439,0.747237980365753,0.490469992160797,0.757729113101959,0.483090043067932,0.759872853755951,0.49129194021225,0.757729113101959,0.483090043067932,0.768822014331818,0.47987699508667,0.767014026641846,0.491809010505676,0.759872853755951,0.49129194021225,0.755185961723328,0.457354992628098,0.765509009361267,0.449916005134583,0.767166018486023,0.464896976947784,0.756631851196289,0.470932930707932,0.767166018486023,0.464896976947784,0.768822014331818,0.47987699508667,0.757729113101959,0.483090043067932,0.756631851196289,0.470932930707932,0.757729113101959,0.483090043067932,0.747237980365753,0.490469992160797,0.746650099754333,0.476855009794235,0.756631851196289,0.470932930707932,0.735143065452576,0.504060983657837,0.732474088668823,0.496379047632217,0.738796949386597,0.492389976978302,0.739255130290985,0.499543011188507,0.738796949386597,0.492389976978302,0.747237980365753,0.490469992160797,0.743798136711121,0.502215981483459,0.739255130290985,0.499543011188507,0.706403970718384,0.488902032375336,0.712005972862244,0.485536992549896,0.715878963470459,0.493871986865997,0.709806084632874,0.496170997619629,0.715878963470459,0.493871986865997,0.71883088350296,0.502372860908508,0.711849987506866,0.504068970680237,0.709806084632874,0.496170997619629, +0.711849987506866,0.504068970680237,0.703592121601105,0.504099011421204,0.702875971794128,0.496650993824005,0.709806084632874,0.496170997619629,0.683558106422424,0.48968306183815,0.687332034111023,0.481909066438675,0.695901989936829,0.48724502325058,0.693664908409119,0.493947923183441,0.695901989936829,0.48724502325058,0.701893985271454,0.491047024726868,0.702875971794128,0.496650993824005,0.693664908409119,0.493947923183441,0.702875971794128,0.496650993824005,0.703592121601105,0.504099011421204,0.692829012870789,0.501713991165161,0.693664908409119,0.493947923183441,0.718667984008789,0.482069045305252,0.726505935192108,0.477588951587677,0.729797005653381,0.487480044364929,0.722521126270294,0.491115033626556,0.729797005653381,0.487480044364929,0.732474088668823,0.496379047632217,0.725762009620667,0.499758005142212,0.722521126270294,0.491115033626556,0.725762009620667,0.499758005142212,0.71883088350296,0.502372860908508,0.715878963470459,0.493871986865997,0.722521126270294,0.491115033626556,0.735633909702301,0.471187949180603,0.745407998561859,0.464047968387604,0.746650099754333,0.476855009794235,0.737773001194,0.482549011707306,0.746650099754333,0.476855009794235,0.747237980365753,0.490469992160797,0.738796949386597,0.492389976978302,0.737773001194,0.482549011707306,0.738796949386597,0.492389976978302,0.732474088668823,0.496379047632217,0.729797005653381,0.487480044364929,0.737773001194,0.482549011707306,0.707303941249847,0.462745994329453,0.716436982154846,0.456409990787506,0.721992909908295,0.466927945613861,0.71345591545105,0.472288012504578,0.721992909908295,0.466927945613861,0.726505935192108,0.477588951587677,0.718667984008789,0.482069045305252,0.71345591545105,0.472288012504578,0.718667984008789,0.482069045305252,0.712005972862244,0.485536992549896,0.706203043460846,0.47678405046463,0.71345591545105,0.472288012504578,0.695901989936829,0.48724502325058,0.687332034111023,0.481909066438675,0.692643046379089,0.474831014871597,0.700217008590698,0.481646001338959,0.692643046379089,0.474831014871597,0.699347913265228, +0.468443989753723,0.706203043460846,0.47678405046463,0.700217008590698,0.481646001338959,0.706203043460846,0.47678405046463,0.712005972862244,0.485536992549896,0.706403970718384,0.488902032375336,0.700217008590698,0.481646001338959,0.72666996717453,0.448112934827805,0.737230062484741,0.439662009477615,0.742116093635559,0.451577991247177,0.731829881668091,0.459473967552185,0.742116093635559,0.451577991247177,0.745407998561859,0.464047968387604,0.735633909702301,0.471187949180603,0.731829881668091,0.459473967552185,0.735633909702301,0.471187949180603,0.726505935192108,0.477588951587677,0.721992909908295,0.466927945613861,0.731829881668091,0.459473967552185,0.747337996959686,0.432869046926498,0.757844090461731,0.427706062793732,0.761675953865051,0.438811004161835,0.751996994018555,0.44489198923111,0.761675953865051,0.438811004161835,0.765509009361267,0.449916005134583,0.755185961723328,0.457354992628098,0.751996994018555,0.44489198923111,0.755185961723328,0.457354992628098,0.745407998561859,0.464047968387604,0.742116093635559,0.451577991247177,0.751996994018555,0.44489198923111,0.713181972503662,0.428220063447952,0.724002003669739,0.417964994907379,0.731206893920898,0.428516924381256,0.720463037490845,0.437806040048599,0.731206893920898,0.428516924381256,0.737230062484741,0.439662009477615,0.72666996717453,0.448112934827805,0.720463037490845,0.437806040048599,0.72666996717453,0.448112934827805,0.716436982154846,0.456409990787506,0.710016906261444,0.446949005126953,0.720463037490845,0.437806040048599,0.692322015762329,0.461350947618484,0.684731960296631,0.454809010028839,0.693201005458832,0.446747004985809,0.700634002685547,0.454419046640396,0.693201005458832,0.446747004985809,0.702636122703552,0.438174039125443,0.710016906261444,0.446949005126953,0.700634002685547,0.454419046640396,0.710016906261444,0.446949005126953,0.716436982154846,0.456409990787506,0.707303941249847,0.462745994329453,0.700634002685547,0.454419046640396,0.734260976314545,0.408490002155304,0.724002003669739,0.417964994907379,0.715568125247955,0.407828062772751, +0.725503146648407,0.396890014410019,0.715568125247955,0.407828062772751,0.705480992794037,0.398045003414154,0.714994847774506,0.38590395450592,0.725503146648407,0.396890014410019,0.714994847774506,0.38590395450592,0.724838018417358,0.373081058263779,0.735020995140076,0.386078000068665,0.725503146648407,0.396890014410019,0.731206893920898,0.428516924381256,0.724002003669739,0.417964994907379,0.734260976314545,0.408490002155304,0.741482973098755,0.420609027147293,0.734260976314545,0.408490002155304,0.745202898979187,0.399073958396912,0.751523017883301,0.413389950990677,0.741482973098755,0.420609027147293,0.751523017883301,0.413389950990677,0.757844090461731,0.427706062793732,0.747337996959686,0.432869046926498,0.741482973098755,0.420609027147293,0.695096969604492,0.410122990608215,0.705480992794037,0.398045003414154,0.715568125247955,0.407828062772751,0.70480090379715,0.419017910957336,0.715568125247955,0.407828062772751,0.724002003669739,0.417964994907379,0.713181972503662,0.428220063447952,0.70480090379715,0.419017910957336,0.713181972503662,0.428220063447952,0.702636122703552,0.438174039125443,0.694199025630951,0.429712951183319,0.70480090379715,0.419017910957336,0.670589089393616,0.392899066209793,0.678882002830505,0.379305928945541,0.69331693649292,0.388550996780396,0.683848977088928,0.401456952095032,0.69331693649292,0.388550996780396,0.705480992794037,0.398045003414154,0.695096969604492,0.410122990608215,0.683848977088928,0.401456952095032,0.695096969604492,0.410122990608215,0.684765934944153,0.421549946069717,0.674396932125092,0.413668990135193,0.683848977088928,0.401456952095032,0.687552869319916,0.365891009569168,0.698361039161682,0.352290987968445,0.711599946022034,0.362685978412628,0.702524065971375,0.375624060630798,0.711599946022034,0.362685978412628,0.724838018417358,0.373081058263779,0.714994847774506,0.38590395450592,0.702524065971375,0.375624060630798,0.714994847774506,0.38590395450592,0.705480992794037,0.398045003414154,0.69331693649292,0.388550996780396,0.702524065971375,0.375624060630798,0.636784911155701, +0.376213014125824,0.642692983150482,0.361732989549637,0.661983013153076,0.370270013809204,0.654851734638214,0.38432589173317,0.661983013153076,0.370270013809204,0.678882002830505,0.379305928945541,0.670589089393616,0.392899066209793,0.654851734638214,0.38432589173317,0.670589089393616,0.392899066209793,0.662279009819031,0.405844002962112,0.6475989818573,0.39785099029541,0.654851734638214,0.38432589173317,0.64894300699234,0.347772985696793,0.656314015388489,0.333685994148254,0.677337884902954,0.342988967895508,0.669551014900208,0.35654604434967,0.677337884902954,0.342988967895508,0.698361039161682,0.352290987968445,0.687552869319916,0.365891009569168,0.669551014900208,0.35654604434967,0.687552869319916,0.365891009569168,0.678882002830505,0.379305928945541,0.661983013153076,0.370270013809204,0.669551014900208,0.35654604434967,0.60459303855896,0.332802057266235,0.606663107872009,0.31817501783371,0.631488025188446,0.325931012630463,0.626157999038696,0.339753985404968,0.631488025188446,0.325931012630463,0.656314015388489,0.333685994148254,0.64894300699234,0.347772985696793,0.626157999038696,0.339753985404968,0.64894300699234,0.347772985696793,0.642692983150482,0.361732989549637,0.621088027954102,0.353986024856567,0.626157999038696,0.339753985404968,0.582952439785004,0.337187349796295,0.567469954490662,0.330958187580109,0.574460983276367,0.322975039482117,0.587647080421448,0.327228009700775,0.574460983276367,0.322975039482117,0.580090045928955,0.311969071626663,0.593375980854034,0.315072000026703,0.587647080421448,0.327228009700775,0.593375980854034,0.315072000026703,0.606663107872009,0.31817501783371,0.60459303855896,0.332802057266235,0.587647080421448,0.327228009700775,0.636784911155701,0.376213014125824,0.630751132965088,0.390271097421646,0.612128973007202,0.383684009313583,0.616535902023315,0.369035005569458,0.612128973007202,0.383684009313583,0.592489004135132,0.378598988056183,0.595197975635529,0.36232402920723,0.616535902023315,0.369035005569458,0.595197975635529,0.36232402920723,0.596561372280121,0.345253050327301, +0.621088027954102,0.353986024856567,0.616535902023315,0.369035005569458,0.624125957489014,0.402964979410172,0.617404937744141,0.414728939533234,0.602810978889465,0.408582985401154,0.607487976551056,0.396716982126236,0.602810978889465,0.408582985401154,0.588109970092773,0.40310999751091,0.590300023555756,0.390854001045227,0.607487976551056,0.396716982126236,0.590300023555756,0.390854001045227,0.592489004135132,0.378598988056183,0.612128973007202,0.383684009313583,0.607487976551056,0.396716982126236,0.558840990066528,0.327784597873688,0.550303876399994,0.324851393699646,0.554401993751526,0.318329006433487,0.564176976680756,0.31998398900032,0.554401993751526,0.318329006433487,0.561287999153137,0.308959990739822,0.570689082145691,0.31046399474144,0.564176976680756,0.31998398900032,0.570689082145691,0.31046399474144,0.580090045928955,0.311969071626663,0.574460983276367,0.322975039482117,0.564176976680756,0.31998398900032,0.539385139942169,0.309820532798767,0.561287999153137,0.308959990739822,0.554401993751526,0.318329006433487,0.542740881443024,0.318083971738815,0.51929897069931,0.304008990526199,0.520278990268707,0.289129972457886,0.534769117832184,0.286010056734085,0.537513971328735,0.300711005926132,0.534769117832184,0.286010056734085,0.549119114875793,0.283560037612915,0.555203914642334,0.296259999275208,0.537513971328735,0.300711005926132,0.555203914642334,0.296259999275208,0.561287999153137,0.308959990739822,0.539385139942169,0.309820532798767,0.537513971328735,0.300711005926132,0.6475989818573,0.39785099029541,0.662279009819031,0.405844002962112,0.653554022312164,0.417314946651459,0.639666140079498,0.409982085227966,0.653554022312164,0.417314946651459,0.644840180873871,0.428059101104736,0.631626009941101,0.421305984258652,0.639666140079498,0.409982085227966,0.631626009941101,0.421305984258652,0.617404937744141,0.414728939533234,0.624125957489014,0.402964979410172,0.639666140079498,0.409982085227966,0.675406992435455,0.431737929582596,0.666732013225555,0.441397994756699,0.656413078308105,0.434733062982559,0.665235996246338, +0.424509942531586,0.656413078308105,0.434733062982559,0.644840180873871,0.428059101104736,0.653554022312164,0.417314946651459,0.665235996246338,0.424509942531586,0.653554022312164,0.417314946651459,0.662279009819031,0.405844002962112,0.674396932125092,0.413668990135193,0.665235996246338,0.424509942531586,0.611082971096039,0.425998002290726,0.604516983032227,0.437065005302429,0.592935025691986,0.430442005395889,0.598296999931335,0.419729977846146,0.592935025691986,0.430442005395889,0.583096981048584,0.423958003520966,0.585604012012482,0.413534045219421,0.598296999931335,0.419729977846146,0.585604012012482,0.413534045219421,0.588109970092773,0.40310999751091,0.602810978889465,0.408582985401154,0.598296999931335,0.419729977846146,0.636560916900635,0.438823997974396,0.628485023975372,0.449730068445206,0.616538047790527,0.443508088588715,0.624050974845886,0.4324109852314,0.616538047790527,0.443508088588715,0.604516983032227,0.437065005302429,0.611082971096039,0.425998002290726,0.624050974845886,0.4324109852314,0.611082971096039,0.425998002290726,0.617404937744141,0.414728939533234,0.631626009941101,0.421305984258652,0.624050974845886,0.4324109852314,0.59706699848175,0.448226988315582,0.604516983032227,0.437065005302429,0.616538047790527,0.443508088588715,0.608682990074158,0.454806953668594,0.616538047790527,0.443508088588715,0.628485023975372,0.449730068445206,0.620379984378815,0.460898995399475,0.608682990074158,0.454806953668594,0.620379984378815,0.460898995399475,0.611825883388519,0.472379922866821,0.599322974681854,0.466454982757568,0.608682990074158,0.454806953668594,0.59706699848175,0.448226988315582,0.587401986122131,0.459475070238113,0.576653003692627,0.450862973928452,0.585714936256409,0.44100296497345,0.576653003692627,0.450862973928452,0.565895855426788,0.442958950996399,0.574496984481812,0.433459013700485,0.585714936256409,0.44100296497345,0.574496984481812,0.433459013700485,0.583096981048584,0.423958003520966,0.592935025691986,0.430442005395889,0.585714936256409,0.44100296497345,0.693201005458832,0.446747004985809, +0.684731960296631,0.454809010028839,0.676186978816986,0.44812399148941,0.684759974479675,0.439168006181717,0.676186978816986,0.44812399148941,0.666732013225555,0.441397994756699,0.675406992435455,0.431737929582596,0.684759974479675,0.439168006181717,0.675406992435455,0.431737929582596,0.684765934944153,0.421549946069717,0.694199025630951,0.429712951183319,0.684759974479675,0.439168006181717,0.658452093601227,0.451245069503784,0.650613009929657,0.461398005485535,0.63984489440918,0.455693960189819,0.647970020771027,0.445090025663376,0.63984489440918,0.455693960189819,0.628485023975372,0.449730068445206,0.636560916900635,0.438823997974396,0.647970020771027,0.445090025663376,0.636560916900635,0.438823997974396,0.644840180873871,0.428059101104736,0.656413078308105,0.434733062982559,0.647970020771027,0.445090025663376,0.574191868305206,0.470803916454315,0.556427001953125,0.482971012592316,0.552274107933044,0.465778082609177,0.565765023231506,0.459468007087708,0.552274107933044,0.465778082609177,0.553454875946045,0.449757933616638,0.559674978256226,0.446357995271683,0.565765023231506,0.459468007087708,0.559674978256226,0.446357995271683,0.565895855426788,0.442958950996399,0.576653003692627,0.450862973928452,0.565765023231506,0.459468007087708,0.599322974681854,0.466454982757568,0.611825883388519,0.472379922866821,0.602401971817017,0.484225004911423,0.587293982505798,0.478594988584518,0.602401971817017,0.484225004911423,0.591762065887451,0.497911989688873,0.575701892375946,0.489001870155334,0.587293982505798,0.478594988584518,0.575701892375946,0.489001870155334,0.556427001953125,0.482971012592316,0.574191868305206,0.470803916454315,0.587293982505798,0.478594988584518,0.534042000770569,0.484479904174805,0.512603878974915,0.485853970050812,0.519653916358948,0.46842497587204,0.53540301322937,0.468753010034561,0.519653916358948,0.46842497587204,0.522218108177185,0.452676087617874,0.537593007087708,0.452968716621399,0.53540301322937,0.468753010034561,0.537593007087708,0.452968716621399,0.553454875946045,0.449757933616638,0.552274107933044, +0.465778082609177,0.53540301322937,0.468753010034561,0.643263876438141,0.471978902816772,0.636533975601196,0.482704013586044,0.624321937561035,0.477831929922104,0.631974875926971,0.466654896736145,0.624321937561035,0.477831929922104,0.611825883388519,0.472379922866821,0.620379984378815,0.460898995399475,0.631974875926971,0.466654896736145,0.620379984378815,0.460898995399475,0.628485023975372,0.449730068445206,0.63984489440918,0.455693960189819,0.631974875926971,0.466654896736145,0.624321937561035,0.477831929922104,0.636533975601196,0.482704013586044,0.630553007125854,0.493288934230804,0.616847991943359,0.489077985286713,0.630553007125854,0.493288934230804,0.625830054283142,0.505088984966278,0.610948085784912,0.50173807144165,0.616847991943359,0.489077985286713,0.610948085784912,0.50173807144165,0.591762065887451,0.497911989688873,0.602401971817017,0.484225004911423,0.616847991943359,0.489077985286713,0.514537990093231,0.450159996747971,0.522218108177185,0.452676087617874,0.519653916358948,0.46842497587204,0.509528994560242,0.464825004339218,0.519653916358948,0.46842497587204,0.512603878974915,0.485853970050812,0.499125957489014,0.47408401966095,0.509528994560242,0.464825004339218,0.46083664894104,0.466500401496887,0.470919996500015,0.478058010339737,0.46056604385376,0.485220015048981,0.453064620494843,0.475086212158203,0.46083664894104,0.466500401496887,0.467435657978058,0.458736717700958,0.479971051216125,0.471505045890808,0.470919996500015,0.478058010339737,0.470919996500015,0.478058010339737,0.479971051216125,0.471505045890808,0.488793760538101,0.48198664188385,0.476718842983246,0.487908959388733,0.464794665575027,0.439463496208191,0.453833103179932,0.426934123039246,0.466688990592957,0.424021005630493,0.472521007061005,0.432249993085861,0.466688990592957,0.424021005630493,0.48127469420433,0.422952324151993,0.487694025039673,0.431688070297241,0.472521007061005,0.432249993085861,0.487694025039673,0.431688070297241,0.492792010307312,0.437554985284805,0.481555134057999,0.443008780479431,0.472521007061005,0.432249993085861, +0.452052175998688,0.457264959812164,0.44322606921196,0.448550015687943,0.446799069643021,0.436055064201355,0.456938236951828,0.447536796331406,0.446799069643021,0.436055064201355,0.453833103179932,0.426934123039246,0.464794665575027,0.439463496208191,0.456938236951828,0.447536796331406,0.464794665575027,0.439463496208191,0.475263178348541,0.451069891452789,0.467435657978058,0.458736717700958,0.456938236951828,0.447536796331406,0.448411047458649,0.418206989765167,0.443713903427124,0.408971011638641,0.457424998283386,0.403021991252899,0.461374014616013,0.414261996746063,0.457424998283386,0.403021991252899,0.471274077892303,0.401226073503494,0.47594690322876,0.411376535892487,0.461374014616013,0.414261996746063,0.47594690322876,0.411376535892487,0.48127469420433,0.422952324151993,0.466688990592957,0.424021005630493,0.461374014616013,0.414261996746063,0.435476005077362,0.442128956317902,0.42772701382637,0.43570801615715,0.434664934873581,0.420900940895081,0.440645009279251,0.428564995527267,0.434664934873581,0.420900940895081,0.443713903427124,0.408971011638641,0.448411047458649,0.418206989765167,0.440645009279251,0.428564995527267,0.448411047458649,0.418206989765167,0.453833103179932,0.426934123039246,0.446799069643021,0.436055064201355,0.440645009279251,0.428564995527267,0.439651101827621,0.399072051048279,0.435993015766144,0.38922706246376,0.455313891172409,0.378066897392273,0.455691039562225,0.390354990959167,0.455313891172409,0.378066897392273,0.477504074573517,0.36734402179718,0.474388986825943,0.384285002946854,0.455691039562225,0.390354990959167,0.474388986825943,0.384285002946854,0.471274077892303,0.401226073503494,0.457424998283386,0.403021991252899,0.455691039562225,0.390354990959167,0.434664934873581,0.420900940895081,0.42772701382637,0.43570801615715,0.42085799574852,0.429744929075241,0.428926020860672,0.413085043430328,0.42085799574852,0.429744929075241,0.413989007472992,0.423781991004944,0.423328101634979,0.405088126659393,0.428926020860672,0.413085043430328,0.423328101634979,0.405088126659393,0.435993015766144, +0.38922706246376,0.439651101827621,0.399072051048279,0.428926020860672,0.413085043430328,0.432511001825333,0.380149006843567,0.430436015129089,0.367291986942291,0.459244012832642,0.356868058443069,0.455435991287231,0.367967039346695,0.459244012832642,0.356868058443069,0.487402945756912,0.348780006170273,0.482453912496567,0.358061939477921,0.455435991287231,0.367967039346695,0.482453912496567,0.358061939477921,0.477504074573517,0.36734402179718,0.455313891172409,0.378066897392273,0.455435991287231,0.367967039346695,0.412426024675369,0.388772040605545,0.430436015129089,0.367291986942291,0.432511001825333,0.380149006843567,0.41777303814888,0.396883010864258,0.432511001825333,0.380149006843567,0.435993015766144,0.38922706246376,0.423328101634979,0.405088126659393,0.41777303814888,0.396883010864258,0.423328101634979,0.405088126659393,0.413989007472992,0.423781991004944,0.407128065824509,0.415894985198975,0.41777303814888,0.396883010864258,0.402087062597275,0.373643100261688,0.417163014411926,0.355233013629913,0.42235204577446,0.361424058675766,0.407454997301102,0.381053000688553,0.42235204577446,0.361424058675766,0.430436015129089,0.367291986942291,0.412426024675369,0.388772040605545,0.407454997301102,0.381053000688553,0.412426024675369,0.388772040605545,0.400267988443375,0.408008009195328,0.393660962581635,0.400184005498886,0.407454997301102,0.381053000688553,0.483308970928192,0.328117996454239,0.498961091041565,0.329626053571701,0.493182003498077,0.339203000068665,0.469927996397018,0.341584026813507,0.493182003498077,0.339203000068665,0.487402945756912,0.348780006170273,0.459244012832642,0.356868058443069,0.469927996397018,0.341584026813507,0.459244012832642,0.356868058443069,0.430436015129089,0.367291986942291,0.450681984424591,0.342577993869781,0.469927996397018,0.341584026813507,0.519822239875793,0.317452162504196,0.520782053470612,0.319521129131317,0.508248090744019,0.324314057826996,0.495211005210876,0.322472006082535,0.508248090744019,0.324314057826996,0.498961091041565,0.329626053571701,0.483308970928192,0.328117996454239, +0.495211005210876,0.322472006082535,0.482383012771606,0.305045008659363,0.490785956382751,0.290627002716064,0.505122005939484,0.290298014879227,0.500035107135773,0.305005073547363,0.505122005939484,0.290298014879227,0.520278990268707,0.289129972457886,0.51929897069931,0.304008990526199,0.500035107135773,0.305005073547363,0.520159542560577,0.313009828329086,0.519822239875793,0.317452162504196,0.495211005210876,0.322472006082535,0.495478957891464,0.316316992044449,0.455945998430252,0.321404993534088,0.472759872674942,0.319277882575989,0.450681984424591,0.342577993869781,0.439454942941666,0.340797007083893,0.450681984424591,0.342577993869781,0.430436015129089,0.367291986942291,0.42235204577446,0.361424058675766,0.439454942941666,0.340797007083893,0.42235204577446,0.361424058675766,0.417163014411926,0.355233013629913,0.431908994913101,0.337430000305176,0.439454942941666,0.340797007083893,0.388503015041351,0.359525084495544,0.403059929609299,0.34334996342659,0.41055703163147,0.349222958087921,0.39554899930954,0.366452991962433,0.41055703163147,0.349222958087921,0.417163014411926,0.355233013629913,0.402087062597275,0.373643100261688,0.39554899930954,0.366452991962433,0.402087062597275,0.373643100261688,0.387055039405823,0.392360061407089,0.379611968994141,0.384519010782242,0.39554899930954,0.366452991962433,0.406877994537354,0.280514001846313,0.428543984889984,0.259896993637085,0.436819016933441,0.262347042560577,0.416799962520599,0.283783942461014,0.467837065458298,0.291578054428101,0.48090797662735,0.265122950077057,0.490340024232864,0.262412995100021,0.478762030601501,0.291227012872696,0.446114003658295,0.290087997913361,0.462592929601669,0.266597986221313,0.47175008058548,0.265861064195633,0.456799000501633,0.291162997484207,0.455945998430252,0.321404993534088,0.445684969425201,0.32073301076889,0.457848012447357,0.305637985467911,0.469004988670349,0.305480003356934,0.457848012447357,0.305637985467911,0.467837065458298,0.291578054428101,0.478762030601501,0.291227012872696,0.469004988670349,0.305480003356934,0.478762030601501, +0.291227012872696,0.490785956382751,0.290627002716064,0.482383012771606,0.305045008659363,0.469004988670349,0.305480003356934,0.426661014556885,0.286345988512039,0.445093005895615,0.264797002077103,0.453843027353287,0.265697002410889,0.43625009059906,0.288465023040771,0.435604989528656,0.319101989269257,0.425604999065399,0.316729933023453,0.436192005872726,0.303301066160202,0.446857035160065,0.30484801530838,0.436192005872726,0.303301066160202,0.446114003658295,0.290087997913361,0.456799000501633,0.291162997484207,0.446857035160065,0.30484801530838,0.456799000501633,0.291162997484207,0.467837065458298,0.291578054428101,0.457848012447357,0.305637985467911,0.446857035160065,0.30484801530838,0.414659023284912,0.760558009147644,0.426856994628906,0.760756015777588,0.430529028177261,0.784605979919434,0.421461045742035,0.783938109874725,0.414993941783905,0.329581946134567,0.425604999065399,0.316729933023453,0.435604989528656,0.319101989269257,0.423707008361816,0.333667010068893,0.435604989528656,0.319101989269257,0.445684969425201,0.32073301076889,0.431908994913101,0.337430000305176,0.423707008361816,0.333667010068893,0.431908994913101,0.337430000305176,0.417163014411926,0.355233013629913,0.41055703163147,0.349222958087921,0.423707008361816,0.333667010068893,0.374710947275162,0.346480995416641,0.3870629966259,0.33203798532486,0.395200103521347,0.337567090988159,0.381610989570618,0.352901011705399,0.395200103521347,0.337567090988159,0.403059929609299,0.34334996342659,0.388503015041351,0.359525084495544,0.381610989570618,0.352901011705399,0.388503015041351,0.359525084495544,0.372170001268387,0.376677989959717,0.366586029529572,0.369744002819061,0.381610989570618,0.352901011705399,0.415582001209259,0.313832998275757,0.405580997467041,0.310620009899139,0.416019946336746,0.298638999462128,0.426012992858887,0.301187992095947,0.416019946336746,0.298638999462128,0.426661014556885,0.286345988512039,0.43625009059906,0.288465023040771,0.426012992858887,0.301187992095947,0.43625009059906,0.288465023040771,0.446114003658295,0.290087997913361, +0.436192005872726,0.303301066160202,0.426012992858887,0.301187992095947,0.46138796210289,0.888859927654266,0.450418174266815,0.892598390579224,0.454254746437073,0.905250072479248,0.464502930641174,0.903089880943298,0.360491991043091,0.333911001682281,0.370257824659348,0.322029441595078,0.378736048936844,0.326925009489059,0.367643058300018,0.340169072151184,0.378736048936844,0.326925009489059,0.3870629966259,0.33203798532486,0.374710947275162,0.346480995416641,0.367643058300018,0.340169072151184,0.374710947275162,0.346480995416641,0.361001014709473,0.362809985876083,0.355302035808563,0.354985028505325,0.367643058300018,0.340169072151184,0.396640986204147,0.320919007062912,0.405580997467041,0.310620009899139,0.415582001209259,0.313832998275757,0.405918002128601,0.325251996517181,0.415582001209259,0.313832998275757,0.425604999065399,0.316729933023453,0.414993941783905,0.329581946134567,0.405918002128601,0.325251996517181,0.414993941783905,0.329581946134567,0.403059929609299,0.34334996342659,0.395200103521347,0.337567090988159,0.405918002128601,0.325251996517181,0.395646035671234,0.30729803442955,0.386279761791229,0.303198516368866,0.395745992660522,0.292773008346558,0.405912011861801,0.295781999826431,0.395745992660522,0.292773008346558,0.406877994537354,0.280514001846313,0.416799962520599,0.283783942461014,0.405912011861801,0.295781999826431,0.416799962520599,0.283783942461014,0.426661014556885,0.286345988512039,0.416019946336746,0.298638999462128,0.405912011861801,0.295781999826431,0.377997994422913,0.31284698843956,0.386279761791229,0.303198516368866,0.395646035671234,0.30729803442955,0.387329012155533,0.31682300567627,0.395646035671234,0.30729803442955,0.405580997467041,0.310620009899139,0.396640986204147,0.320919007062912,0.387329012155533,0.31682300567627,0.396640986204147,0.320919007062912,0.3870629966259,0.33203798532486,0.378736048936844,0.326925009489059,0.387329012155533,0.31682300567627,0.677081882953644,0.46322900056839,0.67026299238205,0.472025066614151,0.660784900188446,0.46684193611145,0.668179988861084, +0.457320988178253,0.660784900188446,0.46684193611145,0.650613009929657,0.461398005485535,0.658452093601227,0.451245069503784,0.668179988861084,0.457320988178253,0.658452093601227,0.451245069503784,0.666732013225555,0.441397994756699,0.676186978816986,0.44812399148941,0.668179988861084,0.457320988178253,0.643263876438141,0.471978902816772,0.650613009929657,0.461398005485535,0.660784900188446,0.46684193611145,0.654047012329102,0.476771056652069,0.660784900188446,0.46684193611145,0.67026299238205,0.472025066614151,0.664286017417908,0.48121103644371,0.654047012329102,0.476771056652069,0.664286017417908,0.48121103644371,0.659377992153168,0.490701943635941,0.648190021514893,0.486893087625504,0.654047012329102,0.476771056652069,0.692643046379089,0.474831014871597,0.687332034111023,0.481909066438675,0.678949058055878,0.476941049098969,0.685083985328674,0.468879014253616,0.678949058055878,0.476941049098969,0.67026299238205,0.472025066614151,0.677081882953644,0.46322900056839,0.685083985328674,0.468879014253616,0.677081882953644,0.46322900056839,0.684731960296631,0.454809010028839,0.692322015762329,0.461350947618484,0.685083985328674,0.468879014253616,0.648190021514893,0.486893087625504,0.659377992153168,0.490701943635941,0.655768990516663,0.500409066677094,0.643438994884491,0.496993958950043,0.655768990516663,0.500409066677094,0.653109014034271,0.511236071586609,0.639774084091187,0.50823700428009,0.643438994884491,0.496993958950043,0.639774084091187,0.50823700428009,0.625830054283142,0.505088984966278,0.630553007125854,0.493288934230804,0.643438994884491,0.496993958950043,0.683558106422424,0.48968306183815,0.681162118911743,0.498096108436584,0.6701899766922,0.494431018829346,0.673943996429443,0.485475927591324,0.6701899766922,0.494431018829346,0.659377992153168,0.490701943635941,0.664286017417908,0.48121103644371,0.673943996429443,0.485475927591324,0.664286017417908,0.48121103644371,0.67026299238205,0.472025066614151,0.678949058055878,0.476941049098969,0.673943996429443,0.485475927591324,0.55458801984787,0.970911979675293, +0.568253993988037,0.964118003845215,0.567255973815918,0.955087065696716,0.55285108089447,0.963500022888184,0.498829990625381,0.919524013996124,0.508409976959229,0.922408044338226,0.51288902759552,0.906279981136322,0.500948905944824,0.904640793800354,0.517988979816437,0.925292015075684,0.525695025920868,0.929835021495819,0.53634911775589,0.911174058914185,0.524829983711243,0.907918930053711,0.543422996997833,0.943652987480164,0.558902144432068,0.929570198059082,0.553385078907013,0.921999037265778,0.538412094116211,0.939016044139862,0.551113069057465,0.956089019775391,0.566256999969482,0.946056008338928,0.562579989433289,0.93781304359436,0.547267854213715,0.949870824813843,0.650957107543945,0.156525030732155,0.636853039264679,0.159445002675056,0.655004024505615,0.174863025546074,0.669582009315491,0.172124981880188,0.696945011615753,0.162708014249802,0.679005026817322,0.151510000228882,0.664981007575989,0.154017999768257,0.683263897895813,0.167415976524353,0.600718021392822,0.167142003774643,0.614292025566101,0.184501007199287,0.627358973026276,0.181050986051559,0.611733019351959,0.164752975106239,0.585457980632782,0.170779004693031,0.58959698677063,0.187631994485855,0.601944029331207,0.186067014932632,0.593088030815125,0.168960005044937,0.561607003211975,0.175750985741615,0.565234124660492,0.190229013562202,0.577414989471436,0.188930988311768,0.573532998561859,0.173264995217323,0.540287017822266,0.178265988826752,0.542217135429382,0.192100048065186,0.553725004196167,0.191165000200272,0.55094701051712,0.177009001374245,0.540287017822266,0.178265988826752,0.526793003082275,0.177669003605843,0.5293790102005,0.192465007305145,0.542217135429382,0.192100048065186,0.421461045742035,0.783938109874725,0.430529028177261,0.784605979919434,0.430916965007782,0.795754909515381,0.424187064170837,0.795623123645782,0.437647014856339,0.795888006687164,0.439597070217133,0.785275042057037,0.454014927148819,0.789458930492401,0.449523001909256,0.799395978450775,0.468432009220123,0.79364401102066,0.479016900062561,0.801620006561279,0.471447944641113, +0.809551954269409,0.461397975683212,0.802904009819031,0.51170289516449,0.834031343460083,0.50029069185257,0.838872313499451,0.491209983825684,0.827916026115417,0.501441061496735,0.822685122489929,0.44827800989151,0.253098011016846,0.445093005895615,0.264797002077103,0.436819016933441,0.262347042560577,0.442268043756485,0.251747012138367,0.462264001369476,0.254667997360229,0.462592929601669,0.266597986221313,0.453843027353287,0.265697002410889,0.455271005630493,0.253883004188538,0.478062033653259,0.253755003213882,0.48090797662735,0.265122950077057,0.47175008058548,0.265861064195633,0.470162987709045,0.254211038351059,0.478062033653259,0.253755003213882,0.486257016658783,0.251954048871994,0.490340024232864,0.262412995100021,0.48090797662735,0.265122950077057,0.494451999664307,0.250153988599777,0.501734972000122,0.247402012348175,0.50722998380661,0.256805986166,0.499771952629089,0.25970196723938,0.509017944335938,0.244648933410645,0.518692910671234,0.23992595076561,0.525038123130798,0.249454036355019,0.514686942100525,0.253909975290298,0.537480592727661,0.244022369384766,0.525038123130798,0.249454036355019,0.518692910671234,0.23992595076561,0.529126763343811,0.234602153301239,0.883808016777039,0.0491140000522137,0.904338955879211,0.0491139963269234,0.897627949714661,0.0410689935088158,0.877876043319702,0.0410690009593964,0.845507025718689,0.0410690009593964,0.851806879043579,0.0491139926016331,0.867806911468506,0.0491139963269234,0.861692011356354,0.0410690009593964,0.825348019599915,0.0491140000522137,0.838576793670654,0.0491139926016331,0.831323027610779,0.0410690009593964,0.817139029502869,0.0410690009593964,0.791123151779175,0.041069008409977,0.800110936164856,0.0491140000522137,0.812729120254517,0.049114003777504,0.804130911827087,0.0410690009593964,0.777279019355774,0.0491140000522137,0.788694798946381,0.0491139926016331,0.779878973960876,0.0410690009593964,0.768635988235474,0.0410690009593964,0.777279019355774,0.0491140000522137,0.768635988235474,0.0410690009593964,0.758975982666016,0.0410690009593964,0.767579019069672, +0.0491140000522137,0.733915090560913,0.041069008409977,0.740278124809265,0.0491140075027943,0.749078869819641,0.0491139963269234,0.741614878177643,0.0410690009593964,0.718159973621368,0.0410690009593964,0.719227015972137,0.0491140000522137,0.729753017425537,0.0491140075027943,0.726037979125977,0.0410690009593964,0.718159973621368,0.0410690009593964,0.706225991249084,0.0410690009593964,0.705265879631042,0.0491139888763428,0.719227015972137,0.0491140000522137,0.669098973274231,0.0410690009593964,0.646642863750458,0.0410690009593964,0.641104519367218,0.0491139963269234,0.663232088088989,0.0491140000522137,0.590717077255249,0.041069008409977,0.5640509724617,0.0410690009593964,0.558363974094391,0.0491140000522137,0.583914995193481,0.049114003777504,0.53738397359848,0.0410690009593964,0.514124989509583,0.0410690009593964,0.513563990592957,0.0491140000522137,0.532811999320984,0.0491139963269234,0.490866899490356,0.0410690009593964,0.464518934488297,0.0410689935088158,0.468941062688828,0.0491140075027943,0.494315057992935,0.0491140075027943,0.438171982765198,0.0410690009593964,0.421612977981567,0.0410690009593964,0.426679998636246,0.0491140000522137,0.443565934896469,0.0491139926016331,0.992069005966187,0.0341800004243851,0.992069005966187,0.0238010007888079,0.970381855964661,0.0238009989261627,0.970651984214783,0.0341800004243851,0.948694884777069,0.0238009970635176,0.923018872737885,0.0238009989261627,0.924949049949646,0.0341800004243851,0.949233889579773,0.0341800004243851,0.897342085838318,0.023801002651453,0.874817967414856,0.0238009989261627,0.87744402885437,0.0341800004243851,0.90066385269165,0.0341800004243851,0.854223012924194,0.0341800004243851,0.85229504108429,0.0238010007888079,0.826018989086151,0.0238010007888079,0.825787007808685,0.0341800004243851,0.799744009971619,0.0238009989261627,0.772378027439117,0.0238010007888079,0.769366979598999,0.0341800004243851,0.797349989414215,0.0341800004243851,0.745012998580933,0.0238010007888079,0.718019008636475,0.023801002651453,0.712460994720459,0.0341800004243851,0.741383016109467, +0.0341800004243851,0.691024899482727,0.0238009970635176,0.675063014030457,0.0238009989261627,0.66491287946701,0.0341800004243851,0.683539986610413,0.0341800004243851,0.659100890159607,0.0238009970635176,0.639968991279602,0.0238010007888079,0.627687931060791,0.0341800004243851,0.646286010742188,0.0341800004243851,0.620836973190308,0.0238010045140982,0.603357017040253,0.0238010007888079,0.591410994529724,0.0341800004243851,0.609089970588684,0.0341800004243851,0.585878014564514,0.0238010007888079,0.56976592540741,0.0238009989261627,0.557989954948425,0.0341799929738045,0.573730945587158,0.0341800004243851,0.553654909133911,0.0238009970635176,0.542890906333923,0.0238009970635176,0.532018005847931,0.0341800078749657,0.542249023914337,0.0341800004243851,0.486924946308136,0.0341800004243851,0.504356026649475,0.0341800004243851,0.514581978321075,0.0238009989261627,0.497038006782532,0.0238010007888079,0.476447999477386,0.0238010007888079,0.46425598859787,0.0341800004243851,0.475591003894806,0.0341800004243851,0.486743062734604,0.0238010007888079,0.450987011194229,0.023801002651453,0.433443933725357,0.0341800004243851,0.448850095272064,0.0341800078749657,0.463718056678772,0.023801002651453,0.450987011194229,0.023801002651453,0.438712000846863,0.0238009989261627,0.423475027084351,0.0341800004243851,0.433443933725357,0.0341800004243851,0.39881494641304,0.0341799929738045,0.406159996986389,0.0341800004243851,0.415139049291611,0.0238010063767433,0.403840005397797,0.023801002651453,0.391626000404358,0.0238009989261627,0.391626000404358,0.0341800004243851,0.395220011472702,0.0341800004243851,0.3977330327034,0.0238010045140982,0.957599103450775,0.0491140075027943,0.990328013896942,0.0491140000522137,0.990328013896942,0.0410690009593964,0.953853964805603,0.0410690009593964,0.217105001211166,0.806403875350952,0.213832020759583,0.809043109416962,0.218428984284401,0.812523901462555,0.22070500254631,0.810817003250122,0.579524993896484,0.363741040229797,0.582508027553558,0.350659012794495,0.596561372280121,0.345253050327301,0.595197975635529, +0.36232402920723,0.945749998092651,0.0196369998157024,0.969581127166748,0.0191440023481846,0.971789121627808,0.00600699987262487,0.949217021465302,0.00675999978557229,0.449660986661911,0.24575200676918,0.44827800989151,0.253098011016846,0.442268043756485,0.251747012138367,0.44362610578537,0.244361042976379,0.251950949430466,0.930142879486084,0.249989479780197,0.930578112602234,0.251451998949051,0.93507993221283,0.253239989280701,0.934482991695404,0.101075023412704,0.956023097038269,0.110110998153687,0.961559891700745,0.154750004410744,0.908442974090576,0.153162002563477,0.906701147556305,0.156433001160622,0.87204384803772,0.146289989352226,0.85080498456955,0.143690004944801,0.850366055965424,0.15429300069809,0.874029994010925,0.15429300069809,0.874029994010925,0.143690004944801,0.850366055965424,0.141091033816338,0.849927008152008,0.152152016758919,0.876016020774841,0.152152016758919,0.876016020774841,0.141091033816338,0.849927008152008,0.138525992631912,0.848952054977417,0.150749996304512,0.878081977367401,0.150749996304512,0.878081977367401,0.138525992631912,0.848952054977417,0.149349004030228,0.880149006843567,0.13596199452877,0.847976982593536,0.13399900496006,0.846686124801636,0.0593350008130074,0.916211009025574,0.0680930018424988,0.926612019538879,0.46138796210289,0.888859927654266,0.459138065576553,0.881097137928009,0.448221325874329,0.885800004005432,0.450418174266815,0.892598390579224,0.526793003082275,0.177669003605843,0.518274903297424,0.185296833515167,0.521223783493042,0.196973025798798,0.5293790102005,0.192465007305145,0.526793003082275,0.177669003605843,0.524708986282349,0.167145788669586,0.517031967639923,0.166038826107979,0.518274903297424,0.185296833515167,0.382688999176025,0.0341800004243851,0.382688999176025,0.0238009989261627,0.389232218265533,0.0375141203403473,0.385990977287292,0.0376245006918907,0.456611037254333,0.873075127601624,0.445911169052124,0.87880665063858,0.448221325874329,0.885800004005432,0.459138065576553,0.881097137928009,0.286895632743835,0.642228007316589,0.280423939228058, +0.641109585762024,0.281831413507462,0.650557518005371,0.287705928087234,0.65053117275238,0.132034987211227,0.845395863056183,0.0541170015931129,0.906945943832397,0.0593350008130074,0.916211009025574,0.13399900496006,0.846686124801636,0.227638959884644,0.922936797142029,0.228317007422447,0.924607038497925,0.232453674077988,0.922819972038269,0.231630027294159,0.921092092990875,0.245535999536514,0.892589867115021,0.24277800321579,0.867178022861481,0.239928990602493,0.867381989955902,0.243497997522354,0.892763018608093,0.253472983837128,0.893541812896729,0.255042999982834,0.893980026245117,0.254016011953354,0.863664984703064,0.251064002513885,0.864826023578644,0.251902014017105,0.893103897571564,0.253472983837128,0.893541812896729,0.251064002513885,0.864826023578644,0.248113036155701,0.865987122058868,0.249738022685051,0.892760097980499,0.251902014017105,0.893103897571564,0.248113036155701,0.865987122058868,0.245444998145103,0.866581976413727,0.247573986649513,0.892416894435883,0.245444998145103,0.866581976413727,0.24277800321579,0.867178022861481,0.245535999536514,0.892589867115021,0.247573986649513,0.892416894435883,0.249738022685051,0.892760097980499,0.245444998145103,0.866581976413727,0.228751003742218,0.903253018856049,0.193435966968536,0.894949972629547,0.192974999547005,0.897108972072601,0.227776020765305,0.904890060424805,0.229725003242493,0.901616096496582,0.19389696419239,0.892790913581848,0.193435966968536,0.894949972629547,0.228751003742218,0.903253018856049,0.23115299642086,0.899866998195648,0.193876951932907,0.890215814113617,0.19389696419239,0.892790913581848,0.229725003242493,0.901616096496582,0.22435300052166,0.865311980247498,0.19385701417923,0.88764101266861,0.193876951932907,0.890215814113617,0.23115299642086,0.899866998195648,0.232582032680511,0.898118197917938,0.227259993553162,0.866304993629456,0.221979975700378,0.863983869552612,0.193269997835159,0.885096073150635,0.19385701417923,0.88764101266861,0.22435300052166,0.865311980247498,0.219606995582581,0.862656116485596,0.19268199801445,0.882551074028015, +0.193269997835159,0.885096073150635,0.221979975700378,0.863983869552612,0.21696600317955,0.860909879207611,0.191308006644249,0.879841029644012,0.19268199801445,0.882551074028015,0.219606995582581,0.862656116485596,0.214325994253159,0.85916405916214,0.189934000372887,0.877131879329681,0.191308006644249,0.879841029644012,0.21696600317955,0.860909879207611,0.212516993284225,0.856980979442596,0.188528001308441,0.875524818897247,0.189934000372887,0.877131879329681,0.214325994253159,0.85916405916214,0.210708975791931,0.854798853397369,0.187121003866196,0.873919010162354,0.188528001308441,0.875524818897247,0.212516993284225,0.856980979442596,0.209180995821953,0.852472126483917,0.184879034757614,0.872247099876404,0.187121003866196,0.873919010162354,0.210708975791931,0.854798853397369,0.207653999328613,0.850144982337952,0.182636991143227,0.870575070381165,0.184879034757614,0.872247099876404,0.209180995821953,0.852472126483917,0.206084996461868,0.846862852573395,0.180204004049301,0.869508922100067,0.182636991143227,0.870575070381165,0.207653999328613,0.850144982337952,0.169138997793198,0.867543995380402,0.159863963723183,0.84681499004364,0.157495975494385,0.84834885597229,0.166509002447128,0.867784976959229,0.204514995217323,0.843581974506378,0.167695999145508,0.83817994594574,0.166390016674995,0.840671002864838,0.177770033478737,0.868443131446838,0.180204004049301,0.869508922100067,0.206084996461868,0.846862852573395,0.177770033478737,0.868443131446838,0.166390016674995,0.840671002864838,0.164311036467552,0.842976152896881,0.174769997596741,0.867873013019562,0.174769997596741,0.867873013019562,0.164311036467552,0.842976152896881,0.162231966853142,0.845281004905701,0.171769991517067,0.867303013801575,0.171769991517067,0.867303013801575,0.162231966853142,0.845281004905701,0.159863963723183,0.84681499004364,0.169138997793198,0.867543995380402,0.203759014606476,0.840590000152588,0.169002994894981,0.835688948631287,0.167695999145508,0.83817994594574,0.204514995217323,0.843581974506378,0.203004002571106,0.837598979473114,0.169715017080307, +0.83305698633194,0.169002994894981,0.835688948631287,0.203759014606476,0.840590000152588,0.203312993049622,0.833578884601593,0.170426994562149,0.830426037311554,0.169715017080307,0.83305698633194,0.203004002571106,0.837598979473114,0.203621998429298,0.829560041427612,0.170503050088882,0.827834188938141,0.170426994562149,0.830426037311554,0.203312993049622,0.833578884601593,0.204675003886223,0.825841009616852,0.170579001307487,0.82524299621582,0.170503050088882,0.827834188938141,0.203621998429298,0.829560041427612,0.205727994441986,0.822121977806091,0.170019000768661,0.822595000267029,0.170579001307487,0.82524299621582,0.204675003886223,0.825841009616852,0.207443997263908,0.818596005439758,0.169458046555519,0.819946110248566,0.170019000768661,0.822595000267029,0.205727994441986,0.822121977806091,0.209158971905708,0.815070986747742,0.168465003371239,0.817633986473083,0.169458046555519,0.819946110248566,0.207443997263908,0.818596005439758,0.211495935916901,0.81205677986145,0.167472004890442,0.815322995185852,0.168465003371239,0.817633986473083,0.209158971905708,0.815070986747742,0.232307940721512,0.712868869304657,0.211495935916901,0.81205677986145,0.213832020759583,0.809043109416962,0.24151599407196,0.717040002346039,0.223100006580353,0.708697915077209,0.165861025452614,0.813340067863464,0.167472004890442,0.815322995185852,0.211495935916901,0.81205677986145,0.232307940721512,0.712868869304657,0.210537001490593,0.705299019813538,0.164250001311302,0.811356961727142,0.165861025452614,0.813340067863464,0.223100006580353,0.708697915077209,0.198097974061966,0.703016042709351,0.162183001637459,0.809596002101898,0.164250001311302,0.811356961727142,0.210537001490593,0.705299019813538,0.18442602455616,0.701860308647156,0.160117000341415,0.807834923267365,0.162183001637459,0.809596002101898,0.198097974061966,0.703016042709351,0.173371255397797,0.701533079147339,0.157184958457947,0.80639785528183,0.160117000341415,0.807834923267365,0.18442602455616,0.701860308647156,0.160879924893379,0.702236175537109,0.154251992702484,0.804961025714874, +0.157184958457947,0.80639785528183,0.173371255397797,0.701533079147339,0.146392941474915,0.703449010848999,0.151067018508911,0.804484069347382,0.154251992702484,0.804961025714874,0.160879924893379,0.702236175537109,0.134965002536774,0.705901980400085,0.147883012890816,0.804007053375244,0.151067018508911,0.804484069347382,0.146392941474915,0.703449010848999,0.123164013028145,0.70915013551712,0.145413994789124,0.804270148277283,0.147883012890816,0.804007053375244,0.134965002536774,0.705901980400085,0.0460108146071434,0.786994814872742,0.129454001784325,0.812444031238556,0.131311997771263,0.810617983341217,0.0605276674032211,0.760319709777832,0.111861996352673,0.715136051177979,0.142946004867554,0.804533004760742,0.145413994789124,0.804270148277283,0.123164013028145,0.70915013551712,0.100559011101723,0.721121072769165,0.140457004308701,0.805267930030823,0.142946004867554,0.804533004760742,0.111861996352673,0.715136051177979,0.0903579965233803,0.728739023208618,0.137966990470886,0.806003868579865,0.140457004308701,0.805267930030823,0.100559011101723,0.721121072769165,0.0809444338083267,0.736749649047852,0.135568022727966,0.80739814043045,0.137966990470886,0.806003868579865,0.0903579965233803,0.728739023208618,0.0724149867892265,0.745230853557587,0.13316898047924,0.808791995048523,0.135568022727966,0.80739814043045,0.0809444338083267,0.736749649047852,0.0605276674032211,0.760319709777832,0.13316898047924,0.808791995048523,0.0724149867892265,0.745230853557587,0.0605276674032211,0.760319709777832,0.131311997771263,0.810617983341217,0.13316898047924,0.808791995048523,0.0357920005917549,0.840504050254822,0.124442979693413,0.832515001296997,0.12424299120903,0.830189883708954,0.0383166670799255,0.814040184020996,0.0383166670799255,0.814040184020996,0.12424299120903,0.830189883708954,0.124041989445686,0.827865958213806,0.0383166670799255,0.814040184020996,0.124041989445686,0.827865958213806,0.125026673078537,0.822036325931549,0.0460108146071434,0.786994814872742,0.0460108146071434,0.786994814872742,0.127483010292053,0.815995931625366, +0.129454001784325,0.812444031238556,0.0460108146071434,0.786994814872742,0.125026673078537,0.822036325931549,0.127483010292053,0.815995931625366,0.0449310019612312,0.886475086212158,0.0488980002701283,0.897680997848511,0.0541170015931129,0.906945943832397,0.132034987211227,0.845395863056183,0.130135998129845,0.843268990516663,0.0409640073776245,0.875269114971161,0.0449310019612312,0.886475086212158,0.130135998129845,0.843268990516663,0.128236025571823,0.841141104698181,0.0392679981887341,0.866784989833832,0.0409640073776245,0.875269114971161,0.128236025571823,0.841141104698181,0.127032995223999,0.839123010635376,0.0375719964504242,0.858301997184753,0.0392679981887341,0.866784989833832,0.127032995223999,0.839123010635376,0.125830993056297,0.837104856967926,0.0366819947957993,0.849402904510498,0.0375719964504242,0.858301997184753,0.125830993056297,0.837104856967926,0.125137001276016,0.834809899330139,0.0357920005917549,0.840504050254822,0.0366819947957993,0.849402904510498,0.125137001276016,0.834809899330139,0.124442979693413,0.832515001296997,0.151573985815048,0.904958009719849,0.0920389965176582,0.950485944747925,0.101075023412704,0.956023097038269,0.153162002563477,0.906701147556305,0.14690600335598,0.890645980834961,0.0680930018424988,0.926612019538879,0.0768510028719902,0.937012076377869,0.150177031755447,0.902763247489929,0.0920389965176582,0.950485944747925,0.151573985815048,0.904958009719849,0.148780003190041,0.900569021701813,0.0844449996948242,0.943748950958252,0.0920389965176582,0.950485944747925,0.150177031755447,0.902763247489929,0.148002997040749,0.898060083389282,0.0844449996948242,0.943748950958252,0.148780003190041,0.900569021701813,0.0768510028719902,0.937012076377869,0.0844449996948242,0.943748950958252,0.148002997040749,0.898060083389282,0.147225990891457,0.895551860332489,0.0768510028719902,0.937012076377869,0.147225990891457,0.895551860332489,0.147065997123718,0.893099009990692,0.14690600335598,0.890645980834961,0.0768510028719902,0.937012076377869,0.147065997123718,0.893099009990692,0.147254005074501, +0.887848019599915,0.0680930018424988,0.926612019538879,0.14690600335598,0.890645980834961,0.147601008415222,0.885048985481262,0.13596199452877,0.847976982593536,0.0680930018424988,0.926612019538879,0.147254005074501,0.887848019599915,0.258195072412491,0.895779132843018,0.25950700044632,0.896707057952881,0.260980933904648,0.858531832695007,0.258522987365723,0.860678017139435,0.25661900639534,0.894879937171936,0.258195072412491,0.895779132843018,0.258522987365723,0.860678017139435,0.256269007921219,0.862170994281769,0.255042999982834,0.893980026245117,0.25661900639534,0.894879937171936,0.256269007921219,0.862170994281769,0.254016011953354,0.863664984703064,0.300388038158417,0.895267009735107,0.306361973285675,0.882292866706848,0.263438940048218,0.856386005878448,0.300388038158417,0.895267009735107,0.263438940048218,0.856386005878448,0.260818988084793,0.897635102272034,0.26264899969101,0.899598002433777,0.300388038158417,0.895267009735107,0.26264899969101,0.899598002433777,0.264479011297226,0.901561975479126,0.300388038158417,0.895267009735107,0.264479011297226,0.901561975479126,0.265598952770233,0.903614819049835,0.294414013624191,0.908240973949432,0.300388038158417,0.895267009735107,0.265598952770233,0.903614819049835,0.266719996929169,0.90566885471344,0.23572102189064,0.895883023738861,0.230167999863625,0.867297053337097,0.234151005744934,0.897000074386597,0.227259993553162,0.866304993629456,0.232582032680511,0.898118197917938,0.234151005744934,0.897000074386597,0.230167999863625,0.867297053337097,0.249132007360458,0.935304999351501,0.256705820560455,0.951196670532227,0.251451998949051,0.93507993221283,0.266292035579681,0.943053185939789,0.258736997842789,0.93198299407959,0.25688299536705,0.932933986186981,0.256705820560455,0.951196670532227,0.266292035579681,0.943053185939789,0.25688299536705,0.932933986186981,0.255028009414673,0.933886051177979,0.261308997869492,0.929839968681335,0.273232996463776,0.936672925949097,0.262930035591125,0.928244173526764,0.273232996463776,0.936672925949097,0.282572329044342,0.926736176013947, +0.265087008476257,0.925692081451416,0.262930035591125,0.928244173526764,0.282572329044342,0.926736176013947,0.266692072153091,0.922824025154114,0.265087008476257,0.925692081451416,0.266692072153091,0.922824025154114,0.282572329044342,0.926736176013947,0.267268002033234,0.921169996261597,0.26832503080368,0.914856016635895,0.268083989620209,0.91718602180481,0.289012014865875,0.916937112808228,0.26832503080368,0.914856016635895,0.289012014865875,0.916937112808228,0.294414013624191,0.908240973949432,0.268270999193192,0.912784993648529,0.268216013908386,0.910714089870453,0.294414013624191,0.908240973949432,0.267468065023422,0.9081911444664,0.182429000735283,0.910722970962524,0.226959943771362,0.921266913414001,0.226444005966187,0.919111013412476,0.18444000184536,0.909421980381012,0.180418998003006,0.912024021148682,0.207958996295929,0.973142862319946,0.227638959884644,0.922936797142029,0.226959943771362,0.921266913414001,0.182429000735283,0.910722970962524,0.138525992631912,0.848952054977417,0.13596199452877,0.847976982593536,0.147601008415222,0.885048985481262,0.148475006222725,0.882598996162415,0.284512013196945,0.611811995506287,0.284278005361557,0.602760016918182,0.266557991504669,0.601144015789032,0.271122008562088,0.609583020210266,0.285253047943115,0.628229022026062,0.284745991230011,0.620863974094391,0.273786008358002,0.61863386631012,0.277741998434067,0.628527164459229,0.281830012798309,0.563432991504669,0.244590029120445,0.571578025817871,0.25156843662262,0.57788872718811,0.282458990812302,0.573767006397247,0.958945214748383,0.308513671159744,0.953357696533203,0.338901519775391,0.949023365974426,0.336995214223862,0.945053100585938,0.335703551769257,0.942295432090759,0.333572626113892,0.958945214748383,0.308513671159744,0.949023365974426,0.336995214223862,0.945053100585938,0.335703551769257,0.958945214748383,0.308513671159744,0.958945214748383,0.308513671159744,0.960848927497864,0.275173604488373,0.964162886142731,0.275086522102356,0.968048453330994,0.274119347333908,0.958945214748383,0.308513671159744,0.964162886142731, +0.275086522102356,0.971887230873108,0.276029467582703,0.976289391517639,0.27773317694664,0.958945214748383,0.308513671159744,0.93605375289917,0.325919896364212,0.958945214748383,0.308513671159744,0.938284575939178,0.329047203063965,0.938284575939178,0.329047203063965,0.958945214748383,0.308513671159744,0.939535856246948,0.331443816423416,0.969664812088013,0.340228140354156,0.962279200553894,0.340524882078171,0.958945214748383,0.308513671159744,0.23498871922493,0.528504550457001,0.199435338377953,0.541890025138855,0.217832267284393,0.550975978374481,0.236315369606018,0.56401252746582,0.238275244832039,0.548607230186462,0.217832267284393,0.550975978374481,0.312473714351654,0.824710190296173,0.271797060966492,0.832202196121216,0.271467000246048,0.835456013679504,0.502324521541595,0.596214294433594,0.487176597118378,0.609778702259064,0.474401295185089,0.601987242698669,0.482671022415161,0.588007926940918,0.487176597118378,0.609778702259064,0.480234742164612,0.622585654258728,0.467026859521866,0.616052508354187,0.474401295185089,0.601987242698669,0.43597087264061,0.633282899856567,0.443203955888748,0.624427616596222,0.455084979534149,0.633414447307587,0.447214841842651,0.643701374530792,0.8058140873909,0.25620499253273,0.777350008487701,0.247710004448891,0.799286842346191,0.268679529428482,0.820916891098022,0.271835833787918,0.461049973964691,0.625458002090454,0.455084979534149,0.633414447307587,0.443203955888748,0.624427616596222,0.449318528175354,0.61651337146759,0.419885009527206,0.651203989982605,0.428348869085312,0.641636371612549,0.437996983528137,0.654747068881989,0.428348869085312,0.641636371612549,0.43597087264061,0.633282899856567,0.447214841842651,0.643701374530792,0.437996983528137,0.654747068881989,0.437996983528137,0.654747068881989,0.447214841842651,0.643701374530792,0.458428412675858,0.653533220291138,0.449783951044083,0.665350794792175,0.669582009315491,0.172124981880188,0.700708031654358,0.191886022686958,0.718404948711395,0.188898995518684,0.683263897895813,0.167415976524353,0.798405051231384,0.23375503718853, +0.776177048683167,0.216144993901253,0.755701124668121,0.21739199757576,0.778818070888519,0.234795048832893,0.51929897069931,0.304008990526199,0.520159542560577,0.313009828329086,0.495478957891464,0.316316992044449,0.500035107135773,0.305005073547363,0.537513971328735,0.300711005926132,0.539385139942169,0.309820532798767,0.520159542560577,0.313009828329086,0.51929897069931,0.304008990526199,0.519822239875793,0.317452162504196,0.520159542560577,0.313009828329086,0.539385139942169,0.309820532798767,0.542740881443024,0.318083971738815,0.537354230880737,0.320733249187469,0.520782053470612,0.319521129131317,0.519822239875793,0.317452162504196,0.542740881443024,0.318083971738815,0.415432989597321,0.677824020385742,0.424794614315033,0.66933536529541,0.438535630702972,0.678183436393738,0.427164077758789,0.688785195350647,0.424794614315033,0.66933536529541,0.437996983528137,0.654747068881989,0.449783951044083,0.665350794792175,0.438535630702972,0.678183436393738,0.472135126590729,0.634712934494019,0.466388672590256,0.642750024795532,0.455084979534149,0.633414447307587,0.461049973964691,0.625458002090454,0.466388672590256,0.642750024795532,0.478400617837906,0.655835926532745,0.469277113676071,0.661527156829834,0.458428412675858,0.653533220291138,0.467003524303436,0.681717753410339,0.485781818628311,0.673746883869171,0.492069154977798,0.691675066947937,0.45939514040947,0.700253367424011,0.213604003190994,0.848752021789551,0.214933976531029,0.850932002067566,0.236993849277496,0.862354218959808,0.214933976531029,0.850932002067566,0.216464027762413,0.852609992027283,0.236993849277496,0.862354218959808,0.216464027762413,0.852609992027283,0.217994004487991,0.854287028312683,0.236993849277496,0.862354218959808,0.217994004487991,0.854287028312683,0.220005005598068,0.855967879295349,0.236993849277496,0.862354218959808,0.220005005598068,0.855967879295349,0.222016006708145,0.857647955417633,0.236993849277496,0.862354218959808,0.222016006708145,0.857647955417633,0.224153995513916,0.858913004398346,0.236993849277496,0.862354218959808,0.224153995513916, +0.858913004398346,0.226291969418526,0.860178887844086,0.236993849277496,0.862354218959808,0.226291969418526,0.860178887844086,0.228680998086929,0.861050009727478,0.236993849277496,0.862354218959808,0.228680998086929,0.861050009727478,0.231069996953011,0.861922025680542,0.236993849277496,0.862354218959808,0.231069996953011,0.861922025680542,0.23403200507164,0.862137854099274,0.236993849277496,0.862354218959808,0.239527970552444,0.862132847309113,0.242061972618103,0.861912906169891,0.236993849277496,0.862354218959808,0.242061972618103,0.861912906169891,0.244175001978874,0.861554980278015,0.236993849277496,0.862354218959808,0.244175001978874,0.861554980278015,0.246287003159523,0.861197113990784,0.236993849277496,0.862354218959808,0.246287003159523,0.861197113990784,0.248551994562149,0.860126972198486,0.236993849277496,0.862354218959808,0.248551994562149,0.860126972198486,0.250818014144897,0.859058022499084,0.236993849277496,0.862354218959808,0.250818014144897,0.859058022499084,0.252798974514008,0.857895016670227,0.236993849277496,0.862354218959808,0.252798974514008,0.857895016670227,0.254781007766724,0.85673201084137,0.236993849277496,0.862354218959808,0.254781007766724,0.85673201084137,0.257052004337311,0.854552030563354,0.236993849277496,0.862354218959808,0.257052004337311,0.854552030563354,0.259321987628937,0.852372109889984,0.236993849277496,0.862354218959808,0.259321987628937,0.852372109889984,0.260773062705994,0.850229203701019,0.236993849277496,0.862354218959808,0.260773062705994,0.850229203701019,0.262223988771439,0.848085880279541,0.236993849277496,0.862354218959808,0.262223988771439,0.848085880279541,0.263434052467346,0.845340013504028,0.236993849277496,0.862354218959808,0.263434052467346,0.845340013504028,0.264643996953964,0.842594027519226,0.236993849277496,0.862354218959808,0.264643996953964,0.842594027519226,0.265204012393951,0.839982986450195,0.236993849277496,0.862354218959808,0.265204012393951,0.839982986450195,0.265763998031616,0.837370991706848,0.236993849277496,0.862354218959808,0.265763998031616, +0.837370991706848,0.26583606004715,0.834535181522369,0.236993849277496,0.862354218959808,0.26583606004715,0.834535181522369,0.265906989574432,0.831700026988983,0.236993849277496,0.862354218959808,0.265906989574432,0.831700026988983,0.265188992023468,0.8283811211586,0.236993849277496,0.862354218959808,0.265188992023468,0.8283811211586,0.264470934867859,0.825060904026031,0.236993849277496,0.862354218959808,0.264470934867859,0.825060904026031,0.263265013694763,0.822391092777252,0.236993849277496,0.862354218959808,0.263265013694763,0.822391092777252,0.262057989835739,0.819720983505249,0.236993849277496,0.862354218959808,0.262057989835739,0.819720983505249,0.260140001773834,0.817054986953735,0.236993849277496,0.862354218959808,0.260140001773834,0.817054986953735,0.258221000432968,0.814388990402222,0.236993849277496,0.862354218959808,0.258221000432968,0.814388990402222,0.256319046020508,0.812657117843628,0.236993849277496,0.862354218959808,0.256319046020508,0.812657117843628,0.254416942596436,0.810924828052521,0.236993849277496,0.862354218959808,0.254416942596436,0.810924828052521,0.251630008220673,0.809348046779633,0.236993849277496,0.862354218959808,0.251630008220673,0.809348046779633,0.248842969536781,0.807769894599915,0.236993849277496,0.862354218959808,0.248842969536781,0.807769894599915,0.246378004550934,0.806834876537323,0.236993849277496,0.862354218959808,0.246378004550934,0.806834876537323,0.243912994861603,0.805900931358337,0.236993849277496,0.862354218959808,0.243912994861603,0.805900931358337,0.241305023431778,0.805560111999512,0.236993849277496,0.862354218959808,0.241305023431778,0.805560111999512,0.238695964217186,0.805219888687134,0.236993849277496,0.862354218959808,0.238695964217186,0.805219888687134,0.236189007759094,0.805329978466034,0.236993849277496,0.862354218959808,0.236189007759094,0.805329978466034,0.233680963516235,0.805439889431,0.236993849277496,0.862354218959808,0.233680963516235,0.805439889431,0.231048032641411,0.80602502822876,0.236993849277496,0.862354218959808,0.231048032641411,0.80602502822876, +0.228413999080658,0.806609988212585,0.236993849277496,0.862354218959808,0.228413999080658,0.806609988212585,0.225697994232178,0.807860970497131,0.236993849277496,0.862354218959808,0.225697994232178,0.807860970497131,0.222981974482536,0.809110999107361,0.236993849277496,0.862354218959808,0.222981974482536,0.809110999107361,0.22070500254631,0.810817003250122,0.236993849277496,0.862354218959808,0.22070500254631,0.810817003250122,0.218428984284401,0.812523901462555,0.236993849277496,0.862354218959808,0.218428984284401,0.812523901462555,0.216181993484497,0.815120995044708,0.236993849277496,0.862354218959808,0.216181993484497,0.815120995044708,0.213935032486916,0.817717015743256,0.236993849277496,0.862354218959808,0.213935032486916,0.817717015743256,0.21238599717617,0.820815026760101,0.236993849277496,0.862354218959808,0.21238599717617,0.820815026760101,0.21083702147007,0.823913097381592,0.236993849277496,0.862354218959808,0.21083702147007,0.823913097381592,0.210107013583183,0.826874017715454,0.236993849277496,0.862354218959808,0.210107013583183,0.826874017715454,0.209377005696297,0.829833984375,0.236993849277496,0.862354218959808,0.209377005696297,0.829833984375,0.209319964051247,0.833224892616272,0.236993849277496,0.862354218959808,0.209319964051247,0.833224892616272,0.209264025092125,0.836616098880768,0.236993849277496,0.862354218959808,0.209264025092125,0.836616098880768,0.209781005978584,0.839061975479126,0.236993849277496,0.862354218959808,0.209781005978584,0.839061975479126,0.210298031568527,0.841508150100708,0.236993849277496,0.862354218959808,0.210298031568527,0.841508150100708,0.211285978555679,0.844039916992188,0.236993849277496,0.862354218959808,0.211285978555679,0.844039916992188,0.212274998426437,0.846571981906891,0.236993849277496,0.862354218959808,0.212274998426437,0.846571981906891,0.213604003190994,0.848752021789551,0.236993849277496,0.862354218959808,0.238020986318588,0.899613976478577,0.236755013465881,0.900473058223724,0.249168217182159,0.897170126438141,0.236755013465881,0.900473058223724,0.235490024089813, +0.901332020759583,0.249168217182159,0.897170126438141,0.235490024089813,0.901332020759583,0.234382003545761,0.902740001678467,0.249168217182159,0.897170126438141,0.234382003545761,0.902740001678467,0.233275055885315,0.904149115085602,0.249168217182159,0.897170126438141,0.233275055885315,0.904149115085602,0.232497006654739,0.905453145503998,0.249168217182159,0.897170126438141,0.232497006654739,0.905453145503998,0.231719002127647,0.906756937503815,0.249168217182159,0.897170126438141,0.231719002127647,0.906756937503815,0.231206625699997,0.908484101295471,0.249168217182159,0.897170126438141,0.231206625699997,0.908484101295471,0.230482995510101,0.91015213727951,0.249168217182159,0.897170126438141,0.230482995510101,0.91015213727951,0.230382576584816,0.911921620368958,0.249168217182159,0.897170126438141,0.230382576584816,0.911921620368958,0.230118006467819,0.913669884204865,0.249168217182159,0.897170126438141,0.230118006467819,0.913669884204865,0.230206966400146,0.914988875389099,0.249168217182159,0.897170126438141,0.230206966400146,0.914988875389099,0.230295985937119,0.916307985782623,0.249168217182159,0.897170126438141,0.230295985937119,0.916307985782623,0.23069903254509,0.91803514957428,0.249168217182159,0.897170126438141,0.23069903254509,0.91803514957428,0.231101974844933,0.919762969017029,0.249168217182159,0.897170126438141,0.231101974844933,0.919762969017029,0.231630027294159,0.921092092990875,0.249168217182159,0.897170126438141,0.231630027294159,0.921092092990875,0.232453674077988,0.922819972038269,0.249168217182159,0.897170126438141,0.232453674077988,0.922819972038269,0.233296006917953,0.92395293712616,0.249168217182159,0.897170126438141,0.233296006917953,0.92395293712616,0.234434023499489,0.925485014915466,0.249168217182159,0.897170126438141,0.234434023499489,0.925485014915466,0.235772043466568,0.926684021949768,0.249168217182159,0.897170126438141,0.235772043466568,0.926684021949768,0.237109005451202,0.927883982658386,0.249168217182159,0.897170126438141,0.237109005451202,0.927883982658386,0.238569036126137,0.928735136985779, +0.249168217182159,0.897170126438141,0.238569036126137,0.928735136985779,0.240030035376549,0.929587185382843,0.249168217182159,0.897170126438141,0.240030035376549,0.929587185382843,0.241962999105453,0.93013197183609,0.249168217182159,0.897170126438141,0.241962999105453,0.93013197183609,0.243896037340164,0.930676162242889,0.249168217182159,0.897170126438141,0.243896037340164,0.930676162242889,0.245400995016098,0.930850028991699,0.249168217182159,0.897170126438141,0.245400995016098,0.930850028991699,0.246904954314232,0.931023836135864,0.249168217182159,0.897170126438141,0.246904954314232,0.931023836135864,0.248721837997437,0.930771768093109,0.249168217182159,0.897170126438141,0.248721837997437,0.930771768093109,0.249989479780197,0.930578112602234,0.249168217182159,0.897170126438141,0.249989479780197,0.930578112602234,0.251950949430466,0.930142879486084,0.249168217182159,0.897170126438141,0.251950949430466,0.930142879486084,0.253387004137039,0.929762005805969,0.249168217182159,0.897170126438141,0.253387004137039,0.929762005805969,0.254866987466812,0.929034888744354,0.249168217182159,0.897170126438141,0.254866987466812,0.929034888744354,0.256346046924591,0.928307116031647,0.249168217182159,0.897170126438141,0.256346046924591,0.928307116031647,0.257351011037827,0.927430987358093,0.249168217182159,0.897170126438141,0.257351011037827,0.927430987358093,0.25835594534874,0.926553905010223,0.249168217182159,0.897170126438141,0.25835594534874,0.926553905010223,0.259663999080658,0.925291001796722,0.249168217182159,0.897170126438141,0.259663999080658,0.925291001796722,0.261381506919861,0.923273503780365,0.249168217182159,0.897170126438141,0.261381506919861,0.923273503780365,0.262612998485565,0.921012997627258,0.249168217182159,0.897170126438141,0.262612998485565,0.921012997627258,0.263068974018097,0.919716894626617,0.249168217182159,0.897170126438141,0.263068974018097,0.919716894626617,0.263523995876312,0.918420076370239,0.249168217182159,0.897170126438141,0.263523995876312,0.918420076370239,0.263679951429367,0.916565895080566,0.249168217182159, +0.897170126438141,0.263679951429367,0.916565895080566,0.263835936784744,0.914710998535156,0.249168217182159,0.897170126438141,0.263835936784744,0.914710998535156,0.263828992843628,0.913066148757935,0.249168217182159,0.897170126438141,0.263828992843628,0.913066148757935,0.26382303237915,0.911422193050385,0.249168217182159,0.897170126438141,0.26382303237915,0.911422193050385,0.263242065906525,0.909409999847412,0.249168217182159,0.897170126438141,0.263242065906525,0.909409999847412,0.262661993503571,0.907397985458374,0.249168217182159,0.897170126438141,0.262661993503571,0.907397985458374,0.261798024177551,0.905747175216675,0.249168217182159,0.897170126438141,0.261798024177551,0.905747175216675,0.260933995246887,0.904097080230713,0.249168217182159,0.897170126438141,0.260933995246887,0.904097080230713,0.259452998638153,0.902548909187317,0.249168217182159,0.897170126438141,0.259452998638153,0.902548909187317,0.257972985506058,0.901000022888184,0.249168217182159,0.897170126438141,0.257972985506058,0.901000022888184,0.256922960281372,0.900254964828491,0.249168217182159,0.897170126438141,0.256922960281372,0.900254964828491,0.255872964859009,0.899509906768799,0.249168217182159,0.897170126438141,0.255872964859009,0.899509906768799,0.254624038934708,0.89879310131073,0.249168217182159,0.897170126438141,0.254624038934708,0.89879310131073,0.253374010324478,0.898076057434082,0.249168217182159,0.897170126438141,0.253374010324478,0.898076057434082,0.252130001783371,0.897748947143555,0.249168217182159,0.897170126438141,0.252130001783371,0.897748947143555,0.250885993242264,0.897421896457672,0.249168217182159,0.897170126438141,0.247449964284897,0.896917998790741,0.245860770344734,0.897128164768219,0.249168217182159,0.897170126438141,0.245860770344734,0.897128164768219,0.244134515523911,0.897363543510437,0.249168217182159,0.897170126438141,0.244134515523911,0.897363543510437,0.242461740970612,0.897755563259125,0.249168217182159,0.897170126438141,0.242461740970612,0.897755563259125,0.24066099524498,0.898221909999847,0.249168217182159,0.897170126438141, +0.24066099524498,0.898221909999847,0.239341035485268,0.898918032646179,0.249168217182159,0.897170126438141,0.239341035485268,0.898918032646179,0.238020986318588,0.899613976478577,0.249168217182159,0.897170126438141,0.182181000709534,0.87574702501297,0.180338963866234,0.874393939971924,0.171462967991829,0.871784508228302,0.180338963866234,0.874393939971924,0.17835097014904,0.873531818389893,0.171462967991829,0.871784508228302,0.17835097014904,0.873531818389893,0.176362991333008,0.872668862342834,0.171462967991829,0.871784508228302,0.176362991333008,0.872668862342834,0.17391300201416,0.872226893901825,0.171462967991829,0.871784508228302,0.169339001178741,0.871951997280121,0.167215034365654,0.872119188308716,0.171462967991829,0.871784508228302,0.167215034365654,0.872119188308716,0.165040999650955,0.872652053833008,0.171462967991829,0.871784508228302,0.165040999650955,0.872652053833008,0.162867993116379,0.873185992240906,0.171462967991829,0.871784508228302,0.162867993116379,0.873185992240906,0.160961985588074,0.874336004257202,0.171462967991829,0.871784508228302,0.160961985588074,0.874336004257202,0.15905599296093,0.875485002994537,0.171462967991829,0.871784508228302,0.15905599296093,0.875485002994537,0.157324999570847,0.87712299823761,0.171462967991829,0.871784508228302,0.157324999570847,0.87712299823761,0.155595004558563,0.878760993480682,0.171462967991829,0.871784508228302,0.155595004558563,0.878760993480682,0.154578894376755,0.880492925643921,0.171462967991829,0.871784508228302,0.154578894376755,0.880492925643921,0.153314992785454,0.882128000259399,0.171462967991829,0.871784508228302,0.153314992785454,0.882128000259399,0.152736932039261,0.884171962738037,0.171462967991829,0.871784508228302,0.152736932039261,0.884171962738037,0.151911020278931,0.886118054389954,0.171462967991829,0.871784508228302,0.151911020278931,0.886118054389954,0.151647001504898,0.888396859169006,0.171462967991829,0.871784508228302,0.151647001504898,0.888396859169006,0.151382997632027,0.890676021575928,0.171462967991829,0.871784508228302,0.151382997632027, +0.890676021575928,0.151482999324799,0.892673969268799,0.171462967991829,0.871784508228302,0.151482999324799,0.892673969268799,0.151582986116409,0.89467191696167,0.171462967991829,0.871784508228302,0.151582986116409,0.89467191696167,0.152192980051041,0.89671802520752,0.171462967991829,0.871784508228302,0.152192980051041,0.89671802520752,0.152803003787994,0.89876389503479,0.171462967991829,0.871784508228302,0.152803003787994,0.89876389503479,0.153923004865646,0.900560021400452,0.171462967991829,0.871784508228302,0.153923004865646,0.900560021400452,0.155043035745621,0.90235710144043,0.171462967991829,0.871784508228302,0.155043035745621,0.90235710144043,0.156345993280411,0.90375804901123,0.171462967991829,0.871784508228302,0.156345993280411,0.90375804901123,0.157649993896484,0.905160009860992,0.171462967991829,0.871784508228302,0.157649993896484,0.905160009860992,0.159760981798172,0.906389892101288,0.171462967991829,0.871784508228302,0.159760981798172,0.906389892101288,0.161871999502182,0.907621026039124,0.171462967991829,0.871784508228302,0.161871999502182,0.907621026039124,0.163652002811432,0.908340096473694,0.171462967991829,0.871784508228302,0.163652002811432,0.908340096473694,0.16745799779892,0.909406900405884,0.171462967991829,0.871784508228302,0.16745799779892,0.909406900405884,0.169484034180641,0.909756124019623,0.171462967991829,0.871784508228302,0.169484034180641,0.909756124019623,0.171733915805817,0.909497380256653,0.171462967991829,0.871784508228302,0.171733915805817,0.909497380256653,0.174044981598854,0.909560859203339,0.171462967991829,0.871784508228302,0.174044981598854,0.909560859203339,0.176264539361,0.908640146255493,0.171462967991829,0.871784508228302,0.176264539361,0.908640146255493,0.17856203019619,0.908038139343262,0.171462967991829,0.871784508228302,0.17856203019619,0.908038139343262,0.180205002427101,0.906988024711609,0.171462967991829,0.871784508228302,0.180205002427101,0.906988024711609,0.181848004460335,0.905937016010284,0.171462967991829,0.871784508228302,0.181848004460335,0.905937016010284, +0.183382004499435,0.904502987861633,0.171462967991829,0.871784508228302,0.183382004499435,0.904502987861633,0.184916004538536,0.903069019317627,0.171462967991829,0.871784508228302,0.184916004538536,0.903069019317627,0.186094999313354,0.90141898393631,0.171462967991829,0.871784508228302,0.186094999313354,0.90141898393631,0.187273994088173,0.899769008159637,0.171462967991829,0.871784508228302,0.187273994088173,0.899769008159637,0.188003987073898,0.897836923599243,0.171462967991829,0.871784508228302,0.188003987073898,0.897836923599243,0.188733026385307,0.895905137062073,0.171462967991829,0.871784508228302,0.188733026385307,0.895905137062073,0.189094007015228,0.894155919551849,0.171462967991829,0.871784508228302,0.189094007015228,0.894155919551849,0.189453974366188,0.892405986785889,0.171462967991829,0.871784508228302,0.189453974366188,0.892405986785889,0.189339846372604,0.890329122543335,0.171462967991829,0.871784508228302,0.189339846372604,0.890329122543335,0.189288169145584,0.888238489627838,0.171462967991829,0.871784508228302,0.189288169145584,0.888238489627838,0.188874810934067,0.886189818382263,0.171462967991829,0.871784508228302,0.188874810934067,0.886189818382263,0.188522011041641,0.884101986885071,0.171462967991829,0.871784508228302,0.188522011041641,0.884101986885071,0.187429994344711,0.881881952285767,0.171462967991829,0.871784508228302,0.187429994344711,0.881881952285767,0.186338007450104,0.879661917686462,0.171462967991829,0.871784508228302,0.186338007450104,0.879661917686462,0.185181021690369,0.878381013870239,0.171462967991829,0.871784508228302,0.185181021690369,0.878381013870239,0.184024006128311,0.877098977565765,0.171462967991829,0.871784508228302,0.130802005529404,0.836933851242065,0.131770968437195,0.838591873645782,0.147746995091438,0.808448433876038,0.131770968437195,0.838591873645782,0.133429035544395,0.84021133184433,0.147746995091438,0.808448433876038,0.133429035544395,0.84021133184433,0.134927004575729,0.842046022415161,0.147746995091438,0.808448433876038,0.134927004575729,0.842046022415161,0.136610954999924, +0.842978835105896,0.147746995091438,0.808448433876038,0.136610954999924,0.842978835105896,0.138135001063347,0.84412693977356,0.147746995091438,0.808448433876038,0.138135001063347,0.84412693977356,0.140211999416351,0.844904005527496,0.147746995091438,0.808448433876038,0.140211999416351,0.844904005527496,0.142287999391556,0.845679998397827,0.147746995091438,0.808448433876038,0.142287999391556,0.845679998397827,0.144391000270844,0.846006989479065,0.147746995091438,0.808448433876038,0.144391000270844,0.846006989479065,0.146494001150131,0.846335053443909,0.147746995091438,0.808448433876038,0.146494001150131,0.846335053443909,0.148495018482208,0.84620612859726,0.147746995091438,0.808448433876038,0.148495018482208,0.84620612859726,0.150496006011963,0.846076905727386,0.147746995091438,0.808448433876038,0.150496006011963,0.846076905727386,0.153038993477821,0.845255970954895,0.147746995091438,0.808448433876038,0.153038993477821,0.845255970954895,0.155581995844841,0.844434976577759,0.147746995091438,0.808448433876038,0.155581995844841,0.844434976577759,0.157514974474907,0.843210875988007,0.147746995091438,0.808448433876038,0.157514974474907,0.843210875988007,0.159446999430656,0.841986060142517,0.147746995091438,0.808448433876038,0.159446999430656,0.841986060142517,0.161109030246735,0.840085029602051,0.147746995091438,0.808448433876038,0.161109030246735,0.840085029602051,0.162771001458168,0.838183104991913,0.147746995091438,0.808448433876038,0.162771001458168,0.838183104991913,0.163823992013931,0.836151957511902,0.147746995091438,0.808448433876038,0.163823992013931,0.836151957511902,0.164875984191895,0.834120988845825,0.147746995091438,0.808448433876038,0.164875984191895,0.834120988845825,0.165430992841721,0.831982970237732,0.147746995091438,0.808448433876038,0.165430992841721,0.831982970237732,0.165986999869347,0.829843997955322,0.147746995091438,0.808448433876038,0.165986999869347,0.829843997955322,0.165947198867798,0.827751815319061,0.147746995091438,0.808448433876038,0.165947198867798,0.827751815319061,0.166173025965691,0.825654983520508, +0.147746995091438,0.808448433876038,0.166173025965691,0.825654983520508,0.165596455335617,0.823500275611877,0.147746995091438,0.808448433876038,0.165596455335617,0.823500275611877,0.165286034345627,0.82134211063385,0.147746995091438,0.808448433876038,0.165286034345627,0.82134211063385,0.164505004882813,0.819459855556488,0.147746995091438,0.808448433876038,0.164505004882813,0.819459855556488,0.163723036646843,0.817577064037323,0.147746995091438,0.808448433876038,0.163723036646843,0.817577064037323,0.162426978349686,0.815953016281128,0.147746995091438,0.808448433876038,0.162426978349686,0.815953016281128,0.161130964756012,0.814327836036682,0.147746995091438,0.808448433876038,0.161130964756012,0.814327836036682,0.159430980682373,0.812904000282288,0.147746995091438,0.808448433876038,0.159430980682373,0.812904000282288,0.157729983329773,0.811479866504669,0.147746995091438,0.808448433876038,0.157729983329773,0.811479866504669,0.155330970883369,0.810316026210785,0.147746995091438,0.808448433876038,0.155330970883369,0.810316026210785,0.15293200314045,0.809152007102966,0.147746995091438,0.808448433876038,0.15293200314045,0.809152007102966,0.150339007377625,0.808799862861633,0.147746995091438,0.808448433876038,0.145750999450684,0.80863893032074,0.143754988908768,0.80883002281189,0.147746995091438,0.808448433876038,0.143754988908768,0.80883002281189,0.14173299074173,0.809410989284515,0.147746995091438,0.808448433876038,0.14173299074173,0.809410989284515,0.139712005853653,0.809993028640747,0.147746995091438,0.808448433876038,0.139712005853653,0.809993028640747,0.137743979692459,0.811105012893677,0.147746995091438,0.808448433876038,0.137743979692459,0.811105012893677,0.135776966810226,0.812216877937317,0.147746995091438,0.808448433876038,0.135776966810226,0.812216877937317,0.134283006191254,0.813722014427185,0.147746995091438,0.808448433876038,0.134283006191254,0.813722014427185,0.132789015769958,0.81522810459137,0.147746995091438,0.808448433876038,0.132789015769958,0.81522810459137,0.131081998348236,0.818454027175903,0.147746995091438, +0.808448433876038,0.131081998348236,0.818454027175903,0.129143506288528,0.823200345039368,0.147746995091438,0.808448433876038,0.129143506288528,0.823200345039368,0.128448992967606,0.827762126922607,0.147746995091438,0.808448433876038,0.128448992967606,0.827762126922607,0.128589987754822,0.829637885093689,0.147746995091438,0.808448433876038,0.128589987754822,0.829637885093689,0.128730982542038,0.831514000892639,0.147746995091438,0.808448433876038,0.128730982542038,0.831514000892639,0.129281997680664,0.833395004272461,0.147746995091438,0.808448433876038,0.129281997680664,0.833395004272461,0.129834026098251,0.835277199745178,0.147746995091438,0.808448433876038,0.339965343475342,0.638088285923004,0.328281730413437,0.635804831981659,0.326365619897842,0.644906163215637,0.339075297117233,0.648137927055359,0.328281730413437,0.635804831981659,0.319494903087616,0.633053541183472,0.315216660499573,0.637995839118958,0.326365619897842,0.644906163215637,0.326365619897842,0.644906163215637,0.315216660499573,0.637995839118958,0.309785425662994,0.644286572933197,0.323134422302246,0.652537524700165,0.339075297117233,0.648137927055359,0.326365619897842,0.644906163215637,0.323134422302246,0.652537524700165,0.338345021009445,0.656393527984619,0.368587046861649,0.649491727352142,0.364345461130142,0.642343819141388,0.352155685424805,0.647188663482666,0.353997111320496,0.655269503593445,0.364345461130142,0.642343819141388,0.361002326011658,0.636728703975677,0.351868748664856,0.63789314031601,0.352155685424805,0.647188663482666,0.352155685424805,0.647188663482666,0.351868748664856,0.63789314031601,0.339965343475342,0.638088285923004,0.339075297117233,0.648137927055359,0.353997111320496,0.655269503593445,0.352155685424805,0.647188663482666,0.339075297117233,0.648137927055359,0.338345021009445,0.656393527984619,0.319494903087616,0.633053541183472,0.315551668405533,0.624716937541962,0.306816577911377,0.627910375595093,0.315216660499573,0.637995839118958,0.315551668405533,0.624716937541962,0.311682790517807,0.613452851772308,0.301842331886292, +0.615760505199432,0.306816577911377,0.627910375595093,0.306816577911377,0.627910375595093,0.301842331886292,0.615760505199432,0.293752133846283,0.617681443691254,0.299721002578735,0.632225632667542,0.315216660499573,0.637995839118958,0.306816577911377,0.627910375595093,0.299721002578735,0.632225632667542,0.309785425662994,0.644286572933197,0.38904482126236,0.626116693019867,0.381417721509933,0.622804284095764,0.37438639998436,0.633891582489014,0.380614042282104,0.63938581943512,0.381417721509933,0.622804284095764,0.372135728597641,0.618804216384888,0.366347938776016,0.629213392734528,0.37438639998436,0.633891582489014,0.37438639998436,0.633891582489014,0.366347938776016,0.629213392734528,0.361002326011658,0.636728703975677,0.364345461130142,0.642343819141388,0.380614042282104,0.63938581943512,0.37438639998436,0.633891582489014,0.364345461130142,0.642343819141388,0.368587046861649,0.649491727352142,0.311682790517807,0.613452851772308,0.310228884220123,0.60162752866745,0.300967872142792,0.602652728557587,0.301842331886292,0.615760505199432,0.310228884220123,0.60162752866745,0.310118973255157,0.592416048049927,0.304085999727249,0.589886128902435,0.300967872142792,0.602652728557587,0.300967872142792,0.602652728557587,0.304085999727249,0.589886128902435,0.296411991119385,0.586686968803406,0.292689979076385,0.601983428001404,0.301842331886292,0.615760505199432,0.300967872142792,0.602652728557587,0.292689979076385,0.601983428001404,0.293752133846283,0.617681443691254,0.34278005361557,0.606293916702271,0.325022846460342,0.610373497009277,0.327565938234329,0.62376594543457,0.341172993183136,0.624450504779816,0.325022846460342,0.610373497009277,0.311682790517807,0.613452851772308,0.315551668405533,0.624716937541962,0.327565938234329,0.62376594543457,0.327565938234329,0.62376594543457,0.315551668405533,0.624716937541962,0.319494903087616,0.633053541183472,0.328281730413437,0.635804831981659,0.341172993183136,0.624450504779816,0.327565938234329,0.62376594543457,0.328281730413437,0.635804831981659,0.339965343475342,0.638088285923004, +0.361002326011658,0.636728703975677,0.366347938776016,0.629213392734528,0.354688733816147,0.626166164875031,0.351868748664856,0.63789314031601,0.366347938776016,0.629213392734528,0.372135728597641,0.618804216384888,0.359543949365616,0.613428831100464,0.354688733816147,0.626166164875031,0.354688733816147,0.626166164875031,0.359543949365616,0.613428831100464,0.34278005361557,0.606293916702271,0.341172993183136,0.624450504779816,0.351868748664856,0.63789314031601,0.354688733816147,0.626166164875031,0.341172993183136,0.624450504779816,0.339965343475342,0.638088285923004,0.34278005361557,0.606293916702271,0.333408296108246,0.590660810470581,0.321460247039795,0.597213625907898,0.325022846460342,0.610373497009277,0.333408296108246,0.590660810470581,0.326355397701263,0.578917682170868,0.31683138012886,0.58607804775238,0.321460247039795,0.597213625907898,0.321460247039795,0.597213625907898,0.31683138012886,0.58607804775238,0.310118973255157,0.592416048049927,0.310228884220123,0.60162752866745,0.325022846460342,0.610373497009277,0.321460247039795,0.597213625907898,0.310228884220123,0.60162752866745,0.311682790517807,0.613452851772308,0.310118973255157,0.592416048049927,0.31683138012886,0.58607804775238,0.311090439558029,0.57875794172287,0.304085999727249,0.589886128902435,0.31683138012886,0.58607804775238,0.326355397701263,0.578917682170868,0.32113128900528,0.570259749889374,0.311090439558029,0.57875794172287,0.311090439558029,0.57875794172287,0.32113128900528,0.570259749889374,0.31682014465332,0.563144981861115,0.304793477058411,0.573345959186554,0.304085999727249,0.589886128902435,0.311090439558029,0.57875794172287,0.304793477058411,0.573345959186554,0.296411991119385,0.586686968803406,0.391870498657227,0.595136761665344,0.383754909038544,0.596938669681549,0.384581655263901,0.610054612159729,0.392847269773483,0.610849618911743,0.383754909038544,0.596938669681549,0.377371191978455,0.598368704319,0.375643879175186,0.607417345046997,0.384581655263901,0.610054612159729,0.384581655263901,0.610054612159729,0.375643879175186,0.607417345046997, +0.372135728597641,0.618804216384888,0.381417721509933,0.622804284095764,0.392847269773483,0.610849618911743,0.384581655263901,0.610054612159729,0.381417721509933,0.622804284095764,0.38904482126236,0.626116693019867,0.326355397701263,0.578917682170868,0.337161779403687,0.573897361755371,0.333355635404587,0.565382242202759,0.32113128900528,0.570259749889374,0.337161779403687,0.573897361755371,0.345908135175705,0.570950627326965,0.346486568450928,0.564421653747559,0.333355635404587,0.565382242202759,0.333355635404587,0.565382242202759,0.346486568450928,0.564421653747559,0.347222805023193,0.556098699569702,0.33147668838501,0.557269096374512,0.32113128900528,0.570259749889374,0.333355635404587,0.565382242202759,0.33147668838501,0.557269096374512,0.31682014465332,0.563144981861115,0.375914245843887,0.568375825881958,0.370420932769775,0.574622571468353,0.378813058137894,0.584753215312958,0.385962873697281,0.58053058385849,0.370420932769775,0.574622571468353,0.36375704407692,0.582227647304535,0.371876060962677,0.590950310230255,0.378813058137894,0.584753215312958,0.378813058137894,0.584753215312958,0.371876060962677,0.590950310230255,0.377371191978455,0.598368704319,0.383754909038544,0.596938669681549,0.385962873697281,0.58053058385849,0.378813058137894,0.584753215312958,0.383754909038544,0.596938669681549,0.391870498657227,0.595136761665344,0.34278005361557,0.606293916702271,0.35475093126297,0.592549741268158,0.344822466373444,0.583218395709991,0.333408296108246,0.590660810470581,0.35475093126297,0.592549741268158,0.36375704407692,0.582227647304535,0.354000747203827,0.575388073921204,0.344822466373444,0.583218395709991,0.344822466373444,0.583218395709991,0.354000747203827,0.575388073921204,0.345908135175705,0.570950627326965,0.337161779403687,0.573897361755371,0.333408296108246,0.590660810470581,0.344822466373444,0.583218395709991,0.337161779403687,0.573897361755371,0.326355397701263,0.578917682170868,0.377371191978455,0.598368704319,0.371876060962677,0.590950310230255,0.365362733602524,0.601100146770477,0.375643879175186, +0.607417345046997,0.371876060962677,0.590950310230255,0.36375704407692,0.582227647304535,0.35475093126297,0.592549741268158,0.365362733602524,0.601100146770477,0.365362733602524,0.601100146770477,0.35475093126297,0.592549741268158,0.34278005361557,0.606293916702271,0.359543949365616,0.613428831100464,0.375643879175186,0.607417345046997,0.365362733602524,0.601100146770477,0.359543949365616,0.613428831100464,0.372135728597641,0.618804216384888,0.36375704407692,0.582227647304535,0.370420932769775,0.574622571468353,0.359243214130402,0.56767338514328,0.354000747203827,0.575388073921204,0.370420932769775,0.574622571468353,0.375914245843887,0.568375825881958,0.362518310546875,0.560016870498657,0.359243214130402,0.56767338514328,0.359243214130402,0.56767338514328,0.362518310546875,0.560016870498657,0.347222805023193,0.556098699569702,0.346486568450928,0.564421653747559,0.354000747203827,0.575388073921204,0.359243214130402,0.56767338514328,0.346486568450928,0.564421653747559,0.345908135175705,0.570950627326965,0.833059012889862,0.978268980979919,0.837907016277313,0.97187602519989,0.835268020629883,0.968931972980499,0.82837700843811,0.973748981952667,0.833626985549927,0.957464993000031,0.826469004154205,0.955136001110077,0.824953973293304,0.961578011512756,0.832989990711212,0.961368024349213,0.832989990711212,0.961368024349213,0.824953973293304,0.961578011512756,0.825444996356964,0.968007028102875,0.833582997322083,0.965324997901917,0.838800013065338,0.981029987335205,0.84136301279068,0.9738450050354,0.837907016277313,0.97187602519989,0.833059012889862,0.978268980979919,0.845072984695435,0.982057988643646,0.845254004001617,0.974644005298615,0.84136301279068,0.9738450050354,0.838800013065338,0.981029987335205,0.835632026195526,0.954024016857147,0.829554975032806,0.949352025985718,0.826469004154205,0.955136001110077,0.833626985549927,0.957464993000031,0.8386390209198,0.951368987560272,0.834089994430542,0.944716989994049,0.829554975032806,0.949352025985718,0.835632026195526,0.954024016857147,0.857123017311096,0.978954017162323, +0.852809011936188,0.972328007221222,0.849196016788483,0.974077999591827,0.851350009441376,0.981379985809326,0.851350009441376,0.981379985809326,0.849196016788483,0.974077999591827,0.845254004001617,0.974644005298615,0.845072984695435,0.982057988643646,0.842284977436066,0.94982898235321,0.839953005313873,0.941721975803375,0.834089994430542,0.944716989994049,0.8386390209198,0.951368987560272,0.846237003803253,0.949398994445801,0.846396028995514,0.940801024436951,0.839953005313873,0.941721975803375,0.842284977436066,0.94982898235321,0.865217983722687,0.969187021255493,0.857629001140594,0.966123998165131,0.855708003044128,0.969574987888336,0.861881017684937,0.974734008312225,0.861881017684937,0.974734008312225,0.855708003044128,0.969574987888336,0.852809011936188,0.972328007221222,0.857123017311096,0.978954017162323,0.853627979755402,0.951870977878571,0.858371019363403,0.945856988430023,0.852670013904572,0.942387998104095,0.850160002708435,0.95007997751236,0.850160002708435,0.95007997751236,0.852670013904572,0.942387998104095,0.846396028995514,0.940801024436951,0.846237003803253,0.949398994445801,0.866117000579834,0.956306993961334,0.857806980609894,0.958383977413177,0.858304023742676,0.962279975414276,0.866728007793427,0.962777018547058,0.866728007793427,0.962777018547058,0.858304023742676,0.962279975414276,0.857629001140594,0.966123998165131,0.865217983722687,0.969187021255493,0.856212973594666,0.954777002334595,0.863092005252838,0.950582027435303,0.858371019363403,0.945856988430023,0.853627979755402,0.951870977878571,0.866117000579834,0.956306993961334,0.863092005252838,0.950582027435303,0.856212973594666,0.954777002334595,0.857806980609894,0.958383977413177,0.828827321529388,0.573723256587982,0.828371405601501,0.572754144668579,0.818204760551453,0.575706720352173,0.818348944187164,0.57676899433136,0.81383615732193,0.541882872581482,0.836917340755463,0.538958430290222,0.835337042808533,0.531739830970764,0.830765306949615,0.525928258895874,0.81383615732193,0.541882872581482,0.830765306949615,0.525928258895874,0.82523250579834, +0.521022439002991,0.81812310218811,0.519012868404388,0.81383615732193,0.541882872581482,0.81812310218811,0.519012868404388,0.810804784297943,0.518284201622009,0.803907990455627,0.52082622051239,0.81383615732193,0.541882872581482,0.803907990455627,0.52082622051239,0.797547996044159,0.524550259113312,0.79343718290329,0.530676543712616,0.81383615732193,0.541882872581482,0.834226131439209,0.553089618682861,0.837193489074707,0.546334445476532,0.836917340755463,0.538958430290222,0.796882808208466,0.557822048664093,0.81383615732193,0.541882872581482,0.790748059749603,0.544805586338043,0.792322158813477,0.552016258239746,0.81383615732193,0.541882872581482,0.823747277259827,0.562935948371887,0.830114305019379,0.559213817119598,0.834226131439209,0.553089618682861,0.790471851825714,0.537432432174683,0.780339419841766,0.535511136054993,0.779971361160278,0.546178102493286,0.790748059749603,0.544805586338043,0.81383615732193,0.541882872581482,0.809499144554138,0.564748644828796,0.816831529140472,0.565478205680847,0.823747277259827,0.562935948371887,0.81383615732193,0.541882872581482,0.796882808208466,0.557822048664093,0.802398681640625,0.562732100486755,0.809499144554138,0.564748644828796,0.79343718290329,0.530676543712616,0.790471851825714,0.537432432174683,0.790748059749603,0.544805586338043,0.81383615732193,0.541882872581482,0.79343718290329,0.530676543712616,0.783909976482391,0.52546089887619,0.780339419841766,0.535511136054993,0.790471851825714,0.537432432174683,0.797547996044159,0.524550259113312,0.790474653244019,0.517058789730072,0.783909976482391,0.52546089887619,0.79343718290329,0.530676543712616,0.803907990455627,0.52082622051239,0.799187958240509,0.511012196540833,0.790474653244019,0.517058789730072,0.797547996044159,0.524550259113312,0.810804784297943,0.518284201622009,0.809199094772339,0.508027732372284,0.799187958240509,0.511012196540833,0.803907990455627,0.52082622051239,0.81812310218811,0.519012868404388,0.819677174091339,0.508260250091553,0.809199094772339,0.508027732372284,0.810804784297943,0.518284201622009, +0.838443279266357,0.518359303474426,0.829791009426117,0.511862933635712,0.82523250579834,0.521022439002991,0.830765306949615,0.525928258895874,0.847632825374603,0.537576675415039,0.844538331031799,0.527269005775452,0.835337042808533,0.531739830970764,0.836917340755463,0.538958430290222,0.829791009426117,0.511862933635712,0.819677174091339,0.508260250091553,0.81812310218811,0.519012868404388,0.82523250579834,0.521022439002991,0.843710541725159,0.558313846588135,0.8472820520401,0.548262357711792,0.837193489074707,0.546334445476532,0.834226131439209,0.553089618682861,0.844538331031799,0.527269005775452,0.838443279266357,0.518359303474426,0.830765306949615,0.525928258895874,0.835337042808533,0.531739830970764,0.837139785289764,0.566716969013214,0.830114305019379,0.559213817119598,0.823747277259827,0.562935948371887,0.828371405601501,0.572754144668579,0.8472820520401,0.548262357711792,0.847632825374603,0.537576675415039,0.836917340755463,0.538958430290222,0.837193489074707,0.546334445476532,0.837139785289764,0.566716969013214,0.843710541725159,0.558313846588135,0.834226131439209,0.553089618682861,0.830114305019379,0.559213817119598,0.807607173919678,0.575433731079102,0.818204760551453,0.575706720352173,0.816831529140472,0.565478205680847,0.809499144554138,0.564748644828796,0.802398681640625,0.562732100486755,0.797546863555908,0.571797490119934,0.807607173919678,0.575433731079102,0.809499144554138,0.564748644828796,0.818204760551453,0.575706720352173,0.828371405601501,0.572754144668579,0.823747277259827,0.562935948371887,0.816831529140472,0.565478205680847,0.796882808208466,0.557822048664093,0.789016604423523,0.565296411514282,0.797546863555908,0.571797490119934,0.802398681640625,0.562732100486755,0.792322158813477,0.552016258239746,0.783011138439178,0.556432604789734,0.789016604423523,0.565296411514282,0.796882808208466,0.557822048664093,0.790748059749603,0.544805586338043,0.779971361160278,0.546178102493286,0.783011138439178,0.556432604789734,0.792322158813477,0.552016258239746,0.818348944187164,0.57676899433136,0.818204760551453, +0.575706720352173,0.807607173919678,0.575433731079102,0.807424247264862,0.576489329338074,0.797546863555908,0.571797490119934,0.797045409679413,0.572740197181702,0.807424247264862,0.576489329338074,0.807607173919678,0.575433731079102,0.789016604423523,0.565296411514282,0.788242399692535,0.566035807132721,0.797045409679413,0.572740197181702,0.797546863555908,0.571797490119934,0.844645440578461,0.558828413486481,0.843710541725159,0.558313846588135,0.837139785289764,0.566716969013214,0.837869226932526,0.567496418952942,0.837869226932526,0.567496418952942,0.837139785289764,0.566716969013214,0.828371405601501,0.572754144668579,0.828827321529388,0.573723256587982,0.783011138439178,0.556432604789734,0.782045125961304,0.556891441345215,0.788242399692535,0.566035807132721,0.789016604423523,0.565296411514282,0.779971361160278,0.546178102493286,0.77890807390213,0.546314299106598,0.782045125961304,0.556891441345215,0.783011138439178,0.556432604789734,0.848688125610352,0.537439584732056,0.847632825374603,0.537576675415039,0.8472820520401,0.548262357711792,0.848328828811646,0.548462510108948,0.848328828811646,0.548462510108948,0.8472820520401,0.548262357711792,0.843710541725159,0.558313846588135,0.844645440578461,0.558828413486481,0.780339419841766,0.535511136054993,0.77928763628006,0.535311222076416,0.77890807390213,0.546314299106598,0.779971361160278,0.546178102493286,0.783909976482391,0.52546089887619,0.782968997955322,0.524946331977844,0.77928763628006,0.535311222076416,0.780339419841766,0.535511136054993,0.839193284511566,0.517608284950256,0.838443279266357,0.518359303474426,0.844538331031799,0.527269005775452,0.845491290092468,0.526803314685822,0.845491290092468,0.526803314685822,0.844538331031799,0.527269005775452,0.847632825374603,0.537576675415039,0.848688125610352,0.537439584732056,0.790474653244019,0.517058789730072,0.789740264415741,0.516281425952911,0.782968997955322,0.524946331977844,0.783909976482391,0.52546089887619,0.799187958240509,0.511012196540833,0.798719048500061,0.510044395923615,0.789740264415741,0.516281425952911, +0.790474653244019,0.517058789730072,0.819815993309021,0.507196307182312,0.819677174091339,0.508260250091553,0.829791009426117,0.511862933635712,0.83025336265564,0.510908722877502,0.83025336265564,0.510908722877502,0.829791009426117,0.511862933635712,0.838443279266357,0.518359303474426,0.839193284511566,0.517608284950256,0.809199094772339,0.508027732372284,0.809023916721344,0.506961941719055,0.798719048500061,0.510044395923615,0.799187958240509,0.511012196540833,0.819815993309021,0.507196307182312,0.809023916721344,0.506961941719055,0.809199094772339,0.508027732372284,0.819677174091339,0.508260250091553,0.863754987716675,0.894842982292175,0.870020985603333,0.890870988368988,0.865773022174835,0.886182010173798,0.861240029335022,0.891915023326874,0.306894987821579,0.034935999661684,0.301001012325287,0.0360089987516403,0.300341993570328,0.0392649993300438,0.304143011569977,0.0398470014333725,0.295381993055344,0.0380799993872643,0.296508014202118,0.0423070006072521,0.300341993570328,0.0392649993300438,0.301001012325287,0.0360089987516403,0.300186008214951,0.0449850000441074,0.304143011569977,0.0398470014333725,0.300341993570328,0.0392649993300438,0.296508014202118,0.0423070006072521,0.285650998353958,0.0449879989027977,0.286700010299683,0.0505179986357689,0.291512995958328,0.0465870015323162,0.290217012166977,0.0411109998822212,0.286700010299683,0.0505179986357689,0.288594990968704,0.0578930005431175,0.295118987560272,0.0509940013289452,0.291512995958328,0.0465870015323162,0.291512995958328,0.0465870015323162,0.295118987560272,0.0509940013289452,0.300186008214951,0.0449850000441074,0.296508014202118,0.0423070006072521,0.290217012166977,0.0411109998822212,0.291512995958328,0.0465870015323162,0.296508014202118,0.0423070006072521,0.295381993055344,0.0380799993872643,0.317119002342224,0.0456559993326664,0.316935986280441,0.0398630015552044,0.310357004404068,0.0399289987981319,0.307339996099472,0.0457759983837605,0.316935986280441,0.0398630015552044,0.318791002035141,0.0359009988605976,0.312885999679565,0.03490199893713,0.310357004404068, +0.0399289987981319,0.310357004404068,0.0399289987981319,0.312885999679565,0.03490199893713,0.306894987821579,0.034935999661684,0.304143011569977,0.0398470014333725,0.307339996099472,0.0457759983837605,0.310357004404068,0.0399289987981319,0.304143011569977,0.0398470014333725,0.300186008214951,0.0449850000441074,0.329631000757217,0.0408940017223358,0.324425995349884,0.0379270017147064,0.321828007698059,0.0399970002472401,0.324364989995956,0.0428860001266003,0.318791002035141,0.0359009988605976,0.316935986280441,0.0398630015552044,0.321828007698059,0.0399970002472401,0.324425995349884,0.0379270017147064,0.317119002342224,0.0456559993326664,0.324364989995956,0.0428860001266003,0.321828007698059,0.0399970002472401,0.316935986280441,0.0398630015552044,0.288594990968704,0.0578930005431175,0.299618989229202,0.0616439990699291,0.303346991539001,0.0532610006630421,0.295118987560272,0.0509940013289452,0.299618989229202,0.0616439990699291,0.311242014169693,0.0644949972629547,0.313704013824463,0.0551940016448498,0.303346991539001,0.0532610006630421,0.303346991539001,0.0532610006630421,0.313704013824463,0.0551940016448498,0.317119002342224,0.0456559993326664,0.307339996099472,0.0457759983837605,0.295118987560272,0.0509940013289452,0.303346991539001,0.0532610006630421,0.307339996099472,0.0457759983837605,0.300186008214951,0.0449850000441074,0.285650998353958,0.0449879989027977,0.281825989484787,0.0495980009436607,0.283414006233215,0.0525150001049042,0.286700010299683,0.0505179986357689,0.278854012489319,0.0547959990799427,0.282433986663818,0.0573100000619888,0.283414006233215,0.0525150001049042,0.281825989484787,0.0495980009436607,0.288594990968704,0.0578930005431175,0.286700010299683,0.0505179986357689,0.283414006233215,0.0525150001049042,0.282433986663818,0.0573100000619888,0.275840014219284,0.0663399994373322,0.280362993478775,0.0708890035748482,0.281358003616333,0.0637990012764931,0.276845991611481,0.0604359991848469,0.280362993478775,0.0708890035748482,0.286680996417999,0.0764240026473999,0.28762298822403,0.0670759975910187, +0.281358003616333,0.0637990012764931,0.281358003616333,0.0637990012764931,0.28762298822403,0.0670759975910187,0.288594990968704,0.0578930005431175,0.282433986663818,0.0573100000619888,0.276845991611481,0.0604359991848469,0.281358003616333,0.0637990012764931,0.282433986663818,0.0573100000619888,0.278854012489319,0.0547959990799427,0.332100987434387,0.0551350004971027,0.334154009819031,0.05112100020051,0.329071998596191,0.0469439998269081,0.325143992900848,0.0509690009057522,0.334154009819031,0.05112100020051,0.338122010231018,0.0492799989879131,0.33424100279808,0.0447189994156361,0.329071998596191,0.0469439998269081,0.329071998596191,0.0469439998269081,0.33424100279808,0.0447189994156361,0.329631000757217,0.0408940017223358,0.324364989995956,0.0428860001266003,0.325143992900848,0.0509690009057522,0.329071998596191,0.0469439998269081,0.324364989995956,0.0428860001266003,0.317119002342224,0.0456559993326664,0.343214005231857,0.0600709989666939,0.341136008501053,0.0544530004262924,0.33781498670578,0.0543689988553524,0.337900996208191,0.0582120008766651,0.338122010231018,0.0492799989879131,0.334154009819031,0.05112100020051,0.33781498670578,0.0543689988553524,0.341136008501053,0.0544530004262924,0.332100987434387,0.0551350004971027,0.337900996208191,0.0582120008766651,0.33781498670578,0.0543689988553524,0.334154009819031,0.05112100020051,0.332702994346619,0.0703819990158081,0.33933299779892,0.071542002260685,0.338898003101349,0.0643460005521774,0.332403004169464,0.0620989985764027,0.33933299779892,0.071542002260685,0.344328999519348,0.0719510018825531,0.344287991523743,0.0659639984369278,0.338898003101349,0.0643460005521774,0.338898003101349,0.0643460005521774,0.344287991523743,0.0659639984369278,0.343214005231857,0.0600709989666939,0.337900996208191,0.0582120008766651,0.332403004169464,0.0620989985764027,0.338898003101349,0.0643460005521774,0.337900996208191,0.0582120008766651,0.332100987434387,0.0551350004971027,0.332702994346619,0.0703819990158081,0.330642998218536,0.0783500000834465,0.337733000516891,0.0785709992051125, +0.33933299779892,0.071542002260685,0.330642998218536,0.0783500000834465,0.327596992254257,0.0864529982209206,0.335750013589859,0.0844610035419464,0.337733000516891,0.0785709992051125,0.337733000516891,0.0785709992051125,0.335750013589859,0.0844610035419464,0.341295003890991,0.0834909975528717,0.343313008546829,0.0778520032763481,0.33933299779892,0.071542002260685,0.337733000516891,0.0785709992051125,0.343313008546829,0.0778520032763481,0.344328999519348,0.0719510018825531,0.286680996417999,0.0764240026473999,0.296743988990784,0.0782319977879524,0.297394990921021,0.0701820030808449,0.28762298822403,0.0670759975910187,0.296743988990784,0.0782319977879524,0.306910991668701,0.0808959975838661,0.308943003416061,0.0732090026140213,0.297394990921021,0.0701820030808449,0.297394990921021,0.0701820030808449,0.308943003416061,0.0732090026140213,0.311242014169693,0.0644949972629547,0.299618989229202,0.0616439990699291,0.28762298822403,0.0670759975910187,0.297394990921021,0.0701820030808449,0.299618989229202,0.0616439990699291,0.288594990968704,0.0578930005431175,0.276423007249832,0.0783620029687881,0.279020994901657,0.0838339999318123,0.27962800860405,0.0774850025773048,0.275871992111206,0.0723299980163574,0.279020994901657,0.0838339999318123,0.282045006752014,0.0890040025115013,0.28362101316452,0.082786001265049,0.27962800860405,0.0774850025773048,0.27962800860405,0.0774850025773048,0.28362101316452,0.082786001265049,0.286680996417999,0.0764240026473999,0.280362993478775,0.0708890035748482,0.275871992111206,0.0723299980163574,0.27962800860405,0.0774850025773048,0.280362993478775,0.0708890035748482,0.275840014219284,0.0663399994373322,0.334513992071152,0.0933099985122681,0.338330000638962,0.0886960029602051,0.335040003061295,0.088238999247551,0.330899000167847,0.0908470004796982,0.341295003890991,0.0834909975528717,0.335750013589859,0.0844610035419464,0.335040003061295,0.088238999247551,0.338330000638962,0.0886960029602051,0.327596992254257,0.0864529982209206,0.330899000167847,0.0908470004796982,0.335040003061295,0.088238999247551, +0.335750013589859,0.0844610035419464,0.327596992254257,0.0864529982209206,0.319743990898132,0.0913650020956993,0.325204998254776,0.094141997396946,0.330899000167847,0.0908470004796982,0.319743990898132,0.0913650020956993,0.314559012651443,0.0953259989619255,0.319900006055832,0.0973799973726273,0.325204998254776,0.094141997396946,0.325204998254776,0.094141997396946,0.319900006055832,0.0973799973726273,0.324772000312805,0.10020200163126,0.329943001270294,0.0971779972314835,0.330899000167847,0.0908470004796982,0.325204998254776,0.094141997396946,0.329943001270294,0.0971779972314835,0.334513992071152,0.0933099985122681,0.282045006752014,0.0890040025115013,0.285919010639191,0.0935729965567589,0.288089007139206,0.0883809998631477,0.28362101316452,0.082786001265049,0.285919010639191,0.0935729965567589,0.290522009134293,0.0974040031433105,0.292827993631363,0.0931390002369881,0.288089007139206,0.0883809998631477,0.288089007139206,0.0883809998631477,0.292827993631363,0.0931390002369881,0.294293999671936,0.0896760001778603,0.291584998369217,0.084977000951767,0.28362101316452,0.082786001265049,0.288089007139206,0.0883809998631477,0.291584998369217,0.084977000951767,0.286680996417999,0.0764240026473999,0.294293999671936,0.0896760001778603,0.298613995313644,0.0910189971327782,0.297733992338181,0.085148997604847,0.291584998369217,0.084977000951767,0.298613995313644,0.0910189971327782,0.3038389980793,0.0924559980630875,0.305247992277145,0.087117999792099,0.297733992338181,0.085148997604847,0.297733992338181,0.085148997604847,0.305247992277145,0.087117999792099,0.306910991668701,0.0808959975838661,0.296743988990784,0.0782319977879524,0.291584998369217,0.084977000951767,0.297733992338181,0.085148997604847,0.296743988990784,0.0782319977879524,0.286680996417999,0.0764240026473999,0.30136901140213,0.102380000054836,0.302569001913071,0.0974930003285408,0.29763600230217,0.0959300026297569,0.295727998018265,0.100362002849579,0.302569001913071,0.0974930003285408,0.3038389980793,0.0924559980630875,0.298613995313644,0.0910189971327782,0.29763600230217, +0.0959300026297569,0.29763600230217,0.0959300026297569,0.298613995313644,0.0910189971327782,0.294293999671936,0.0896760001778603,0.292827993631363,0.0931390002369881,0.295727998018265,0.100362002849579,0.29763600230217,0.0959300026297569,0.292827993631363,0.0931390002369881,0.290522009134293,0.0974040031433105,0.31326299905777,0.103363998234272,0.319153994321823,0.102283000946045,0.31692698597908,0.0998179987072945,0.312599986791611,0.0992909967899323,0.324772000312805,0.10020200163126,0.319900006055832,0.0973799973726273,0.31692698597908,0.0998179987072945,0.319153994321823,0.102283000946045,0.314559012651443,0.0953259989619255,0.312599986791611,0.0992909967899323,0.31692698597908,0.0998179987072945,0.319900006055832,0.0973799973726273,0.311242014169693,0.0644949972629547,0.322804987430573,0.067720003426075,0.32369801402092,0.05859399959445,0.313704013824463,0.0551940016448498,0.322804987430573,0.067720003426075,0.332702994346619,0.0703819990158081,0.332403004169464,0.0620989985764027,0.32369801402092,0.05859399959445,0.32369801402092,0.05859399959445,0.332403004169464,0.0620989985764027,0.332100987434387,0.0551350004971027,0.325143992900848,0.0509690009057522,0.313704013824463,0.0551940016448498,0.32369801402092,0.05859399959445,0.325143992900848,0.0509690009057522,0.317119002342224,0.0456559993326664,0.306910991668701,0.0808959975838661,0.317133992910385,0.083575002849102,0.320535987615585,0.0762469992041588,0.308943003416061,0.0732090026140213,0.317133992910385,0.083575002849102,0.327596992254257,0.0864529982209206,0.330642998218536,0.0783500000834465,0.320535987615585,0.0762469992041588,0.320535987615585,0.0762469992041588,0.330642998218536,0.0783500000834465,0.332702994346619,0.0703819990158081,0.322804987430573,0.067720003426075,0.308943003416061,0.0732090026140213,0.320535987615585,0.0762469992041588,0.322804987430573,0.067720003426075,0.311242014169693,0.0644949972629547,0.3038389980793,0.0924559980630875,0.309179991483688,0.0937879979610443,0.31283900141716,0.0891069993376732,0.305247992277145,0.087117999792099, +0.309179991483688,0.0937879979610443,0.314559012651443,0.0953259989619255,0.319743990898132,0.0913650020956993,0.31283900141716,0.0891069993376732,0.31283900141716,0.0891069993376732,0.319743990898132,0.0913650020956993,0.327596992254257,0.0864529982209206,0.317133992910385,0.083575002849102,0.305247992277145,0.087117999792099,0.31283900141716,0.0891069993376732,0.317133992910385,0.083575002849102,0.306910991668701,0.0808959975838661,0.30136901140213,0.102380000054836,0.307274997234344,0.103387996554375,0.307686001062393,0.0985639989376068,0.302569001913071,0.0974930003285408,0.307274997234344,0.103387996554375,0.31326299905777,0.103363998234272,0.312599986791611,0.0992909967899323,0.307686001062393,0.0985639989376068,0.307686001062393,0.0985639989376068,0.312599986791611,0.0992909967899323,0.314559012651443,0.0953259989619255,0.309179991483688,0.0937879979610443,0.302569001913071,0.0974930003285408,0.307686001062393,0.0985639989376068,0.309179991483688,0.0937879979610443,0.3038389980793,0.0924559980630875,0.0453409999608994,0.0964770019054413,0.0457700006663799,0.0906649976968765,0.0383550003170967,0.0922119989991188,0.0354069992899895,0.0962850004434586,0.0394200012087822,0.0838280022144318,0.0349650010466576,0.0899489969015121,0.0383550003170967,0.0922119989991188,0.0457700006663799,0.0906649976968765,0.0256769992411137,0.0958330035209656,0.0354069992899895,0.0962850004434586,0.0383550003170967,0.0922119989991188,0.0349650010466576,0.0899489969015121,0.0661809965968132,0.0956640020012856,0.0659869983792305,0.0890159979462624,0.0553359985351563,0.089648000895977,0.0556849986314774,0.0961470007896423,0.0659869983792305,0.0890159979462624,0.0666719973087311,0.0800409987568855,0.0555579997599125,0.0818829983472824,0.0553359985351563,0.089648000895977,0.0553359985351563,0.089648000895977,0.0555579997599125,0.0818829983472824,0.0394200012087822,0.0838280022144318,0.0457700006663799,0.0906649976968765,0.0556849986314774,0.0961470007896423,0.0553359985351563,0.089648000895977,0.0457700006663799,0.0906649976968765,0.0453409999608994, +0.0964770019054413,0.0661809965968132,0.0956640020012856,0.0765710026025772,0.0953959971666336,0.0766550004482269,0.0886219963431358,0.0659869983792305,0.0890159979462624,0.0765710026025772,0.0953959971666336,0.0867889970541,0.0952610000967979,0.0871749967336655,0.0883719995617867,0.0766550004482269,0.0886219963431358,0.0766550004482269,0.0886219963431358,0.0871749967336655,0.0883719995617867,0.0887280032038689,0.0792410001158714,0.0776410028338432,0.0807079970836639,0.0659869983792305,0.0890159979462624,0.0766550004482269,0.0886219963431358,0.0776410028338432,0.0807079970836639,0.0666719973087311,0.0800409987568855,0.0666719973087311,0.0800409987568855,0.064471997320652,0.0700870007276535,0.0569219999015331,0.0715830028057098,0.0555579997599125,0.0818829983472824,0.064471997320652,0.0700870007276535,0.0653190016746521,0.0601460002362728,0.058458000421524,0.0607930012047291,0.0569219999015331,0.0715830028057098,0.0569219999015331,0.0715830028057098,0.058458000421524,0.0607930012047291,0.05120600014925,0.0612920001149178,0.0482929982244968,0.0714489966630936,0.0555579997599125,0.0818829983472824,0.0569219999015331,0.0715830028057098,0.0482929982244968,0.0714489966630936,0.0394200012087822,0.0838280022144318,0.0867889970541,0.0952610000967979,0.0967670008540154,0.0951749980449677,0.0973820015788078,0.0881699994206429,0.0871749967336655,0.0883719995617867,0.0967670008540154,0.0951749980449677,0.106499001383781,0.0951239988207817,0.107267998158932,0.0879840031266212,0.0973820015788078,0.0881699994206429,0.0973820015788078,0.0881699994206429,0.107267998158932,0.0879840031266212,0.108276002109051,0.0797320008277893,0.0988920032978058,0.080035001039505,0.0871749967336655,0.0883719995617867,0.0973820015788078,0.0881699994206429,0.0988920032978058,0.080035001039505,0.0887280032038689,0.0792410001158714,0.0382269993424416,0.0608059987425804,0.0331909991800785,0.0652989968657494,0.0397510007023811,0.0695779994130135,0.0438469983637333,0.0616619996726513,0.0331909991800785,0.0652989968657494,0.026435999199748,0.069861002266407, +0.0342109985649586,0.077235996723175,0.0397510007023811,0.0695779994130135,0.0397510007023811,0.0695779994130135,0.0342109985649586,0.077235996723175,0.0394200012087822,0.0838280022144318,0.0482929982244968,0.0714489966630936,0.0438469983637333,0.0616619996726513,0.0397510007023811,0.0695779994130135,0.0482929982244968,0.0714489966630936,0.05120600014925,0.0612920001149178,0.0375740006566048,0.0465169996023178,0.030120000243187,0.0490269996225834,0.0305080004036427,0.0579439997673035,0.0378019995987415,0.0550410002470016,0.030120000243187,0.0490269996225834,0.0226719994097948,0.0520239993929863,0.0231950003653765,0.0613930001854897,0.0305080004036427,0.0579439997673035,0.0305080004036427,0.0579439997673035,0.0231950003653765,0.0613930001854897,0.026435999199748,0.069861002266407,0.0331909991800785,0.0652989968657494,0.0378019995987415,0.0550410002470016,0.0305080004036427,0.0579439997673035,0.0331909991800785,0.0652989968657494,0.0382269993424416,0.0608059987425804,0.030120000243187,0.0490269996225834,0.0311200004070997,0.0310779996216297,0.0238749999552965,0.0315090008080006,0.0226719994097948,0.0520239993929863,0.0450390018522739,0.0449809990823269,0.0460910014808178,0.0306800007820129,0.0384860001504421,0.0307630002498627,0.0375740006566048,0.0465169996023178,0.0524309985339642,0.0441330000758171,0.0537550002336502,0.0307490006089211,0.0460910014808178,0.0306800007820129,0.0450390018522739,0.0449809990823269,0.0667179971933365,0.04356300085783,0.068681001663208,0.0310660004615784,0.061294000595808,0.0308880005031824,0.0596669986844063,0.0436879992485046,0.0382269993424416,0.0608059987425804,0.0438469983637333,0.0616619996726513,0.0450560003519058,0.0532299987971783,0.0378019995987415,0.0550410002470016,0.0438469983637333,0.0616619996726513,0.05120600014925,0.0612920001149178,0.0522079989314079,0.0521799996495247,0.0450560003519058,0.0532299987971783,0.0450560003519058,0.0532299987971783,0.0522079989314079,0.0521799996495247,0.0524309985339642,0.0441330000758171,0.0450390018522739,0.0449809990823269,0.0378019995987415, +0.0550410002470016,0.0450560003519058,0.0532299987971783,0.0450390018522739,0.0449809990823269,0.0375740006566048,0.0465169996023178,0.0596669986844063,0.0436879992485046,0.061294000595808,0.0308880005031824,0.0537550002336502,0.0307490006089211,0.0524309985339642,0.0441330000758171,0.0735590010881424,0.0436760000884533,0.0758860036730766,0.0312479995191097,0.068681001663208,0.0310660004615784,0.0667179971933365,0.04356300085783,0.05120600014925,0.0612920001149178,0.058458000421524,0.0607930012047291,0.0591939985752106,0.0515579991042614,0.0522079989314079,0.0521799996495247,0.058458000421524,0.0607930012047291,0.0653190016746521,0.0601460002362728,0.0660049989819527,0.0512880012392998,0.0591939985752106,0.0515579991042614,0.0591939985752106,0.0515579991042614,0.0660049989819527,0.0512880012392998,0.0667179971933365,0.04356300085783,0.0596669986844063,0.0436879992485046,0.0522079989314079,0.0521799996495247,0.0591939985752106,0.0515579991042614,0.0596669986844063,0.0436879992485046,0.0524309985339642,0.0441330000758171,0.0801739990711212,0.0437959991395473,0.0828180015087128,0.0314159989356995,0.0758860036730766,0.0312479995191097,0.0735590010881424,0.0436760000884533,0.0926640033721924,0.0434850007295609,0.0956410020589828,0.0316589996218681,0.0893839970231056,0.0315520018339157,0.0865489989519119,0.0436940006911755,0.0653190016746521,0.0601460002362728,0.0715029984712601,0.0593309998512268,0.0726329982280731,0.0512970015406609,0.0660049989819527,0.0512880012392998,0.0715029984712601,0.0593309998512268,0.0771709978580475,0.0599999986588955,0.0790690034627914,0.0513360016047955,0.0726329982280731,0.0512970015406609,0.0726329982280731,0.0512970015406609,0.0790690034627914,0.0513360016047955,0.0801739990711212,0.0437959991395473,0.0735590010881424,0.0436760000884533,0.0660049989819527,0.0512880012392998,0.0726329982280731,0.0512970015406609,0.0735590010881424,0.0436760000884533,0.0667179971933365,0.04356300085783,0.0653190016746521,0.0601460002362728,0.064471997320652,0.0700870007276535,0.0697750002145767,0.0670659989118576, +0.0715029984712601,0.0593309998512268,0.0666719973087311,0.0800409987568855,0.073515996336937,0.0698300004005432,0.0697750002145767,0.0670659989118576,0.064471997320652,0.0700870007276535,0.0771709978580475,0.0599999986588955,0.0715029984712601,0.0593309998512268,0.0697750002145767,0.0670659989118576,0.073515996336937,0.0698300004005432,0.0887280032038689,0.0792410001158714,0.0878319963812828,0.0692899972200394,0.0804330036044121,0.0705149993300438,0.0776410028338432,0.0807079970836639,0.0878319963812828,0.0692899972200394,0.0897879973053932,0.0595050007104874,0.0834980010986328,0.0600089989602566,0.0804330036044121,0.0705149993300438,0.0804330036044121,0.0705149993300438,0.0834980010986328,0.0600089989602566,0.0771709978580475,0.0599999986588955,0.073515996336937,0.0698300004005432,0.0776410028338432,0.0807079970836639,0.0804330036044121,0.0705149993300438,0.073515996336937,0.0698300004005432,0.0666719973087311,0.0800409987568855,0.0865489989519119,0.0436940006911755,0.0893839970231056,0.0315520018339157,0.0828180015087128,0.0314159989356995,0.0801739990711212,0.0437959991395473,0.0984959974884987,0.0432859994471073,0.10164699703455,0.0317419990897179,0.0956410020589828,0.0316589996218681,0.0926640033721924,0.0434850007295609,0.0771709978580475,0.0599999986588955,0.0834980010986328,0.0600089989602566,0.0853039994835854,0.0511579997837543,0.0790690034627914,0.0513360016047955,0.0834980010986328,0.0600089989602566,0.0897879973053932,0.0595050007104874,0.0913079977035522,0.0508989989757538,0.0853039994835854,0.0511579997837543,0.0853039994835854,0.0511579997837543,0.0913079977035522,0.0508989989757538,0.0926640033721924,0.0434850007295609,0.0865489989519119,0.0436940006911755,0.0790690034627914,0.0513360016047955,0.0853039994835854,0.0511579997837543,0.0865489989519119,0.0436940006911755,0.0801739990711212,0.0437959991395473,0.104069001972675,0.0429870001971722,0.10734099894762,0.0317800007760525,0.10164699703455,0.0317419990897179,0.0984959974884987,0.0432859994471073,0.114510998129845,0.0419379994273186,0.117714002728462, +0.0316380001604557,0.112664997577667,0.0317529998719692,0.109406001865864,0.0424779988825321,0.0897879973053932,0.0595050007104874,0.0878319963812828,0.0692899972200394,0.0930240005254745,0.0663250014185905,0.0953480005264282,0.0586329996585846,0.0887280032038689,0.0792410001158714,0.0960429981350899,0.069020003080368,0.0930240005254745,0.0663250014185905,0.0878319963812828,0.0692899972200394,0.10020799934864,0.059128001332283,0.0953480005264282,0.0586329996585846,0.0930240005254745,0.0663250014185905,0.0960429981350899,0.069020003080368,0.0897879973053932,0.0595050007104874,0.0953480005264282,0.0586329996585846,0.0970510020852089,0.0506939999759197,0.0913079977035522,0.0508989989757538,0.0953480005264282,0.0586329996585846,0.10020799934864,0.059128001332283,0.102563999593258,0.0504029989242554,0.0970510020852089,0.0506939999759197,0.0970510020852089,0.0506939999759197,0.102563999593258,0.0504029989242554,0.104069001972675,0.0429870001971722,0.0984959974884987,0.0432859994471073,0.0913079977035522,0.0508989989757538,0.0970510020852089,0.0506939999759197,0.0984959974884987,0.0432859994471073,0.0926640033721924,0.0434850007295609,0.108276002109051,0.0797320008277893,0.109760999679565,0.0692579969763756,0.102193996310234,0.069641001522541,0.0988920032978058,0.080035001039505,0.109760999679565,0.0692579969763756,0.111428000032902,0.0584880001842976,0.105714000761509,0.0589409992098808,0.102193996310234,0.069641001522541,0.102193996310234,0.069641001522541,0.105714000761509,0.0589409992098808,0.10020799934864,0.059128001332283,0.0960429981350899,0.069020003080368,0.0988920032978058,0.080035001039505,0.102193996310234,0.069641001522541,0.0960429981350899,0.069020003080368,0.0887280032038689,0.0792410001158714,0.109406001865864,0.0424779988825321,0.112664997577667,0.0317529998719692,0.10734099894762,0.0317800007760525,0.104069001972675,0.0429870001971722,0.119384996592999,0.0415470004081726,0.122584998607635,0.0314100012183189,0.117714002728462,0.0316380001604557,0.114510998129845,0.0419379994273186,0.10020799934864,0.059128001332283, +0.105714000761509,0.0589409992098808,0.107878997921944,0.0498879998922348,0.102563999593258,0.0504029989242554,0.105714000761509,0.0589409992098808,0.111428000032902,0.0584880001842976,0.112983003258705,0.0493520013988018,0.107878997921944,0.0498879998922348,0.107878997921944,0.0498879998922348,0.112983003258705,0.0493520013988018,0.114510998129845,0.0419379994273186,0.109406001865864,0.0424779988825321,0.102563999593258,0.0504029989242554,0.107878997921944,0.0498879998922348,0.109406001865864,0.0424779988825321,0.104069001972675,0.0429870001971722,0.124075002968311,0.0412210002541542,0.127240002155304,0.0311990007758141,0.122584998607635,0.0314100012183189,0.119384996592999,0.0415470004081726,0.133054003119469,0.0406659990549088,0.135897994041443,0.0311019998043776,0.131644994020462,0.0311360005289316,0.128626003861427,0.0408780016005039,0.111428000032902,0.0584880001842976,0.116911999881268,0.0581879988312721,0.11786500364542,0.0489999987185001,0.112983003258705,0.0493520013988018,0.116911999881268,0.0581879988312721,0.121927998960018,0.0576880015432835,0.122580997645855,0.0487020015716553,0.11786500364542,0.0489999987185001,0.11786500364542,0.0489999987185001,0.122580997645855,0.0487020015716553,0.124075002968311,0.0412210002541542,0.119384996592999,0.0415470004081726,0.112983003258705,0.0493520013988018,0.11786500364542,0.0489999987185001,0.119384996592999,0.0415470004081726,0.114510998129845,0.0419379994273186,0.128626003861427,0.0408780016005039,0.131644994020462,0.0311360005289316,0.127240002155304,0.0311990007758141,0.124075002968311,0.0412210002541542,0.137373998761177,0.0407340005040169,0.140098005533218,0.030977999791503,0.135897994041443,0.0311019998043776,0.133054003119469,0.0406659990549088,0.108276002109051,0.0797320008277893,0.117302000522614,0.0794190019369125,0.117026999592781,0.0689409971237183,0.109760999679565,0.0692579969763756,0.117302000522614,0.0794190019369125,0.126734003424644,0.0779120028018951,0.122882999479771,0.0677059963345528,0.117026999592781,0.0689409971237183,0.117026999592781,0.0689409971237183, +0.122882999479771,0.0677059963345528,0.121927998960018,0.0576880015432835,0.116911999881268,0.0581879988312721,0.109760999679565,0.0692579969763756,0.117026999592781,0.0689409971237183,0.116911999881268,0.0581879988312721,0.111428000032902,0.0584880001842976,0.121927998960018,0.0576880015432835,0.126239001750946,0.0566349998116493,0.127186000347137,0.0483309999108315,0.122580997645855,0.0487020015716553,0.126239001750946,0.0566349998116493,0.130538001656532,0.0571289993822575,0.131681993603706,0.048080001026392,0.127186000347137,0.0483309999108315,0.127186000347137,0.0483309999108315,0.131681993603706,0.048080001026392,0.133054003119469,0.0406659990549088,0.128626003861427,0.0408780016005039,0.122580997645855,0.0487020015716553,0.127186000347137,0.0483309999108315,0.128626003861427,0.0408780016005039,0.124075002968311,0.0412210002541542,0.141636997461319,0.0409330017864704,0.144228994846344,0.0308379996567965,0.140098005533218,0.030977999791503,0.137373998761177,0.0407340005040169,0.150178998708725,0.0413810014724731,0.152317002415657,0.0306940004229546,0.14826999604702,0.030757000669837,0.145895004272461,0.0411190018057823,0.106499001383781,0.0951239988207817,0.115976996719837,0.0950950011610985,0.116827003657818,0.0877849981188774,0.107267998158932,0.0879840031266212,0.115976996719837,0.0950950011610985,0.125301003456116,0.0949949994683266,0.126175001263618,0.0875829979777336,0.116827003657818,0.0877849981188774,0.116827003657818,0.0877849981188774,0.126175001263618,0.0875829979777336,0.126734003424644,0.0779120028018951,0.117302000522614,0.0794190019369125,0.107267998158932,0.0879840031266212,0.116827003657818,0.0877849981188774,0.117302000522614,0.0794190019369125,0.108276002109051,0.0797320008277893,0.143959000706673,0.0945869982242584,0.144806995987892,0.0873079970479012,0.135428994894028,0.0873889997601509,0.134568005800247,0.0947360023856163,0.144806995987892,0.0873079970479012,0.145860001444817,0.077725000679493,0.135887995362282,0.0789439976215363,0.135428994894028,0.0873889997601509,0.135428994894028,0.0873889997601509, +0.135887995362282,0.0789439976215363,0.126734003424644,0.0779120028018951,0.126175001263618,0.0875829979777336,0.134568005800247,0.0947360023856163,0.135428994894028,0.0873889997601509,0.126175001263618,0.0875829979777336,0.125301003456116,0.0949949994683266,0.121927998960018,0.0576880015432835,0.122882999479771,0.0677059963345528,0.126221001148224,0.0645729973912239,0.126239001750946,0.0566349998116493,0.126734003424644,0.0779120028018951,0.129813000559807,0.0673400014638901,0.126221001148224,0.0645729973912239,0.122882999479771,0.0677059963345528,0.130538001656532,0.0571289993822575,0.126239001750946,0.0566349998116493,0.126221001148224,0.0645729973912239,0.129813000559807,0.0673400014638901,0.130538001656532,0.0571289993822575,0.135297000408173,0.0573900006711483,0.136069998145103,0.048140998929739,0.131681993603706,0.048080001026392,0.135297000408173,0.0573900006711483,0.140187993645668,0.0571440011262894,0.140408992767334,0.0483289994299412,0.136069998145103,0.048140998929739,0.136069998145103,0.048140998929739,0.140408992767334,0.0483289994299412,0.141636997461319,0.0409330017864704,0.137373998761177,0.0407340005040169,0.131681993603706,0.048080001026392,0.136069998145103,0.048140998929739,0.137373998761177,0.0407340005040169,0.133054003119469,0.0406659990549088,0.126734003424644,0.0779120028018951,0.135887995362282,0.0789439976215363,0.135539993643761,0.0683009997010231,0.129813000559807,0.0673400014638901,0.135887995362282,0.0789439976215363,0.145860001444817,0.077725000679493,0.141927003860474,0.0669189989566803,0.135539993643761,0.0683009997010231,0.135539993643761,0.0683009997010231,0.141927003860474,0.0669189989566803,0.140187993645668,0.0571440011262894,0.135297000408173,0.0573900006711483,0.129813000559807,0.0673400014638901,0.135539993643761,0.0683009997010231,0.135297000408173,0.0573900006711483,0.130538001656532,0.0571289993822575,0.145895004272461,0.0411190018057823,0.14826999604702,0.030757000669837,0.144228994846344,0.0308379996567965,0.141636997461319,0.0409330017864704,0.154521003365517,0.0418099984526634, +0.156468003988266,0.0306080002337694,0.152317002415657,0.0306940004229546,0.150178998708725,0.0413810014724731,0.140187993645668,0.0571440011262894,0.144889995455742,0.0561110004782677,0.144760996103287,0.0484599992632866,0.140408992767334,0.0483289994299412,0.144889995455742,0.0561110004782677,0.14852599799633,0.0538370013237,0.149146005511284,0.0486590005457401,0.144760996103287,0.0484599992632866,0.144760996103287,0.0484599992632866,0.149146005511284,0.0486590005457401,0.150178998708725,0.0413810014724731,0.145895004272461,0.0411190018057823,0.140408992767334,0.0483289994299412,0.144760996103287,0.0484599992632866,0.145895004272461,0.0411190018057823,0.141636997461319,0.0409330017864704,0.158986002206802,0.0422450006008148,0.160732999444008,0.0305480007082224,0.156468003988266,0.0306080002337694,0.154521003365517,0.0418099984526634,0.168532997369766,0.0427110008895397,0.169745996594429,0.0305080004036427,0.165123999118805,0.0305589996278286,0.16363599896431,0.042518999427557,0.145860001444817,0.077725000679493,0.152256995439529,0.0671560019254684,0.14750300347805,0.0626569986343384,0.141927003860474,0.0669189989566803,0.152256995439529,0.0671560019254684,0.156278997659683,0.0577550008893013,0.151610001921654,0.0564050003886223,0.14750300347805,0.0626569986343384,0.14750300347805,0.0626569986343384,0.151610001921654,0.0564050003886223,0.14852599799633,0.0538370013237,0.144889995455742,0.0561110004782677,0.141927003860474,0.0669189989566803,0.14750300347805,0.0626569986343384,0.144889995455742,0.0561110004782677,0.140187993645668,0.0571440011262894,0.14852599799633,0.0538370013237,0.151610001921654,0.0564050003886223,0.153588995337486,0.0490540005266666,0.149146005511284,0.0486590005457401,0.151610001921654,0.0564050003886223,0.156278997659683,0.0577550008893013,0.158159002661705,0.0494530014693737,0.153588995337486,0.0490540005266666,0.153588995337486,0.0490540005266666,0.158159002661705,0.0494530014693737,0.158986002206802,0.0422450006008148,0.154521003365517,0.0418099984526634,0.149146005511284,0.0486590005457401, +0.153588995337486,0.0490540005266666,0.154521003365517,0.0418099984526634,0.150178998708725,0.0413810014724731,0.16363599896431,0.042518999427557,0.165123999118805,0.0305589996278286,0.160732999444008,0.0305480007082224,0.158986002206802,0.0422450006008148,0.1737380027771,0.0428939983248711,0.174704998731613,0.0302610006183386,0.169745996594429,0.0305080004036427,0.168532997369766,0.0427110008895397,0.156278997659683,0.0577550008893013,0.161546006798744,0.0582210011780262,0.162925004959106,0.0496639981865883,0.158159002661705,0.0494530014693737,0.161546006798744,0.0582210011780262,0.167012006044388,0.0580569989979267,0.167940005660057,0.0498140007257462,0.162925004959106,0.0496639981865883,0.162925004959106,0.0496639981865883,0.167940005660057,0.0498140007257462,0.168532997369766,0.0427110008895397,0.16363599896431,0.042518999427557,0.158159002661705,0.0494530014693737,0.162925004959106,0.0496639981865883,0.16363599896431,0.042518999427557,0.158986002206802,0.0422450006008148,0.179352998733521,0.0429649986326694,0.180077999830246,0.0299759991466999,0.174704998731613,0.0302610006183386,0.1737380027771,0.0428939983248711,0.19225500524044,0.0425710007548332,0.192466005682945,0.0294599998742342,0.185945004224777,0.0298089999705553,0.185481995344162,0.0428159981966019,0.166581004858017,0.0780910030007362,0.165402993559837,0.0677739977836609,0.158807992935181,0.0686710029840469,0.156028002500534,0.0790619999170303,0.165402993559837,0.0677739977836609,0.167012006044388,0.0580569989979267,0.161546006798744,0.0582210011780262,0.158807992935181,0.0686710029840469,0.158807992935181,0.0686710029840469,0.161546006798744,0.0582210011780262,0.156278997659683,0.0577550008893013,0.152256995439529,0.0671560019254684,0.156028002500534,0.0790619999170303,0.158807992935181,0.0686710029840469,0.152256995439529,0.0671560019254684,0.145860001444817,0.077725000679493,0.143959000706673,0.0945869982242584,0.153653994202614,0.094818003475666,0.154522001743317,0.0874430015683174,0.144806995987892,0.0873079970479012,0.153653994202614,0.094818003475666, +0.163938999176025,0.0953729972243309,0.164887994527817,0.0878169983625412,0.154522001743317,0.0874430015683174,0.154522001743317,0.0874430015683174,0.164887994527817,0.0878169983625412,0.166581004858017,0.0780910030007362,0.156028002500534,0.0790619999170303,0.144806995987892,0.0873079970479012,0.154522001743317,0.0874430015683174,0.156028002500534,0.0790619999170303,0.145860001444817,0.077725000679493,0.167012006044388,0.0580569989979267,0.172275006771088,0.0575160011649132,0.173256993293762,0.0500309988856316,0.167940005660057,0.0498140007257462,0.172275006771088,0.0575160011649132,0.177483007311821,0.0583689995110035,0.178976997733116,0.0501650013029575,0.173256993293762,0.0500309988856316,0.173256993293762,0.0500309988856316,0.178976997733116,0.0501650013029575,0.179352998733521,0.0429649986326694,0.1737380027771,0.0428939983248711,0.167940005660057,0.0498140007257462,0.173256993293762,0.0500309988856316,0.1737380027771,0.0428939983248711,0.168532997369766,0.0427110008895397,0.185481995344162,0.0428159981966019,0.185945004224777,0.0298089999705553,0.180077999830246,0.0299759991466999,0.179352998733521,0.0429649986326694,0.19980600476265,0.0423500016331673,0.199799001216888,0.028626000508666,0.192466005682945,0.0294599998742342,0.19225500524044,0.0425710007548332,0.167012006044388,0.0580569989979267,0.165402993559837,0.0677739977836609,0.170288994908333,0.0650409981608391,0.172275006771088,0.0575160011649132,0.166581004858017,0.0780910030007362,0.173767000436783,0.0680190026760101,0.170288994908333,0.0650409981608391,0.165402993559837,0.0677739977836609,0.177483007311821,0.0583689995110035,0.172275006771088,0.0575160011649132,0.170288994908333,0.0650409981608391,0.173767000436783,0.0680190026760101,0.177483007311821,0.0583689995110035,0.184030994772911,0.0586169995367527,0.18520100414753,0.0500670000910759,0.178976997733116,0.0501650013029575,0.184030994772911,0.0586169995367527,0.191673994064331,0.0586949996650219,0.192050993442535,0.0499330013990402,0.18520100414753,0.0500670000910759,0.18520100414753,0.0500670000910759, +0.192050993442535,0.0499330013990402,0.19225500524044,0.0425710007548332,0.185481995344162,0.0428159981966019,0.178976997733116,0.0501650013029575,0.18520100414753,0.0500670000910759,0.185481995344162,0.0428159981966019,0.179352998733521,0.0429649986326694,0.208333998918533,0.0421999990940094,0.208114996552467,0.0280050002038479,0.199799001216888,0.028626000508666,0.19980600476265,0.0423500016331673,0.229252994060516,0.0423539988696575,0.228393003344536,0.0288549996912479,0.217584997415543,0.0282910000532866,0.218037992715836,0.0421690009534359,0.190081000328064,0.0805040001869202,0.191027998924255,0.0696099996566772,0.181117996573448,0.0691649988293648,0.178001001477242,0.0797609984874725,0.191027998924255,0.0696099996566772,0.191673994064331,0.0586949996650219,0.184030994772911,0.0586169995367527,0.181117996573448,0.0691649988293648,0.181117996573448,0.0691649988293648,0.184030994772911,0.0586169995367527,0.177483007311821,0.0583689995110035,0.173767000436783,0.0680190026760101,0.178001001477242,0.0797609984874725,0.181117996573448,0.0691649988293648,0.173767000436783,0.0680190026760101,0.166581004858017,0.0780910030007362,0.163938999176025,0.0953729972243309,0.17510099709034,0.0961939990520477,0.176217004656792,0.0884530022740364,0.164887994527817,0.0878169983625412,0.17510099709034,0.0961939990520477,0.187349006533623,0.0968080013990402,0.188798993825912,0.0892049968242645,0.176217004656792,0.0884530022740364,0.176217004656792,0.0884530022740364,0.188798993825912,0.0892049968242645,0.190081000328064,0.0805040001869202,0.178001001477242,0.0797609984874725,0.164887994527817,0.0878169983625412,0.176217004656792,0.0884530022740364,0.178001001477242,0.0797609984874725,0.166581004858017,0.0780910030007362,0.191673994064331,0.0586949996650219,0.200167000293732,0.0590410009026527,0.19964599609375,0.0499569997191429,0.192050993442535,0.0499330013990402,0.200167000293732,0.0590410009026527,0.209030002355576,0.0592229999601841,0.208171993494034,0.0500780008733273,0.19964599609375,0.0499569997191429,0.19964599609375,0.0499569997191429, +0.208171993494034,0.0500780008733273,0.208333998918533,0.0421999990940094,0.19980600476265,0.0423500016331673,0.192050993442535,0.0499330013990402,0.19964599609375,0.0499569997191429,0.19980600476265,0.0423500016331673,0.19225500524044,0.0425710007548332,0.218037992715836,0.0421690009534359,0.217584997415543,0.0282910000532866,0.208114996552467,0.0280050002038479,0.208333998918533,0.0421999990940094,0.242313995957375,0.0428530015051365,0.240722998976707,0.0290680006146431,0.228393003344536,0.0288549996912479,0.229252994060516,0.0423539988696575,0.256298989057541,0.0435080006718636,0.25381401181221,0.0291050001978874,0.240722998976707,0.0290680006146431,0.242313995957375,0.0428530015051365,0.209030002355576,0.0592229999601841,0.217779994010925,0.0588090009987354,0.217818006873131,0.0502379983663559,0.208171993494034,0.0500780008733273,0.217779994010925,0.0588090009987354,0.227908998727798,0.0604149997234344,0.228865996003151,0.0506800003349781,0.217818006873131,0.0502379983663559,0.217818006873131,0.0502379983663559,0.228865996003151,0.0506800003349781,0.229252994060516,0.0423539988696575,0.218037992715836,0.0421690009534359,0.208171993494034,0.0500780008733273,0.217818006873131,0.0502379983663559,0.218037992715836,0.0421690009534359,0.208333998918533,0.0421999990940094,0.190081000328064,0.0805040001869202,0.203749999403954,0.0816569998860359,0.20218400657177,0.0704850032925606,0.191027998924255,0.0696099996566772,0.203749999403954,0.0816569998860359,0.219904005527496,0.0822699964046478,0.212142005562782,0.0702790021896362,0.20218400657177,0.0704850032925606,0.20218400657177,0.0704850032925606,0.212142005562782,0.0702790021896362,0.209030002355576,0.0592229999601841,0.200167000293732,0.0590410009026527,0.191027998924255,0.0696099996566772,0.20218400657177,0.0704850032925606,0.200167000293732,0.0590410009026527,0.191673994064331,0.0586949996650219,0.227908998727798,0.0604149997234344,0.240385994315147,0.0622979998588562,0.24159599840641,0.0516479983925819,0.228865996003151,0.0506800003349781,0.240385994315147,0.0622979998588562, +0.254038989543915,0.0643199980258942,0.255169004201889,0.0528789982199669,0.24159599840641,0.0516479983925819,0.24159599840641,0.0516479983925819,0.255169004201889,0.0528789982199669,0.256298989057541,0.0435080006718636,0.242313995957375,0.0428530015051365,0.228865996003151,0.0506800003349781,0.24159599840641,0.0516479983925819,0.242313995957375,0.0428530015051365,0.229252994060516,0.0423539988696575,0.209030002355576,0.0592229999601841,0.212142005562782,0.0702790021896362,0.218459993600845,0.0674810037016869,0.217779994010925,0.0588090009987354,0.219904005527496,0.0822699964046478,0.226465001702309,0.0717080011963844,0.218459993600845,0.0674810037016869,0.212142005562782,0.0702790021896362,0.227908998727798,0.0604149997234344,0.217779994010925,0.0588090009987354,0.218459993600845,0.0674810037016869,0.226465001702309,0.0717080011963844,0.219904005527496,0.0822699964046478,0.236794993281364,0.0861909985542297,0.239401996135712,0.0751359984278679,0.226465001702309,0.0717080011963844,0.236794993281364,0.0861909985542297,0.250912994146347,0.0898400023579597,0.254806011915207,0.0781639963388443,0.239401996135712,0.0751359984278679,0.239401996135712,0.0751359984278679,0.254806011915207,0.0781639963388443,0.254038989543915,0.0643199980258942,0.240385994315147,0.0622979998588562,0.226465001702309,0.0717080011963844,0.239401996135712,0.0751359984278679,0.240385994315147,0.0622979998588562,0.227908998727798,0.0604149997234344,0.187349006533623,0.0968080013990402,0.200893998146057,0.0967419967055321,0.202921003103256,0.0899249985814095,0.188798993825912,0.0892049968242645,0.200893998146057,0.0967419967055321,0.216719001531601,0.0960469990968704,0.217317000031471,0.0906689986586571,0.202921003103256,0.0899249985814095,0.202921003103256,0.0899249985814095,0.217317000031471,0.0906689986586571,0.219904005527496,0.0822699964046478,0.203749999403954,0.0816569998860359,0.188798993825912,0.0892049968242645,0.202921003103256,0.0899249985814095,0.203749999403954,0.0816569998860359,0.190081000328064,0.0805040001869202,0.219904005527496, +0.0822699964046478,0.217317000031471,0.0906689986586571,0.23071700334549,0.0914909988641739,0.236794993281364,0.0861909985542297,0.216719001531601,0.0960469990968704,0.235805004835129,0.0947730019688606,0.23071700334549,0.0914909988641739,0.217317000031471,0.0906689986586571,0.250912994146347,0.0898400023579597,0.236794993281364,0.0861909985542297,0.23071700334549,0.0914909988641739,0.235805004835129,0.0947730019688606,0.329970002174377,0.200247004628181,0.348818004131317,0.186230003833771,0.342330008745193,0.173954993486404,0.31988999247551,0.180653005838394,0.340721994638443,0.160202994942665,0.316917985677719,0.158653005957603,0.31988999247551,0.180653005838394,0.342330008745193,0.173954993486404,0.343768000602722,0.146629005670547,0.321386992931366,0.136978998780251,0.316917985677719,0.158653005957603,0.340721994638443,0.160202994942665,0.388036012649536,0.225401997566223,0.385812014341354,0.201652005314827,0.371937990188599,0.200942993164063,0.366032004356384,0.223983004689217,0.366032004356384,0.223983004689217,0.371937990188599,0.200942993164063,0.359062999486923,0.195676997303963,0.345802009105682,0.215377002954483,0.42705300450325,0.205878004431725,0.410149991512299,0.189046993851662,0.399053007364273,0.197427004575729,0.409191012382507,0.218970000743866,0.359062999486923,0.195676997303963,0.364271998405457,0.187781006097794,0.356386005878448,0.180592998862267,0.348818004131317,0.186230003833771,0.364271998405457,0.187781006097794,0.368912994861603,0.180666998028755,0.363211005926132,0.175503000617027,0.356386005878448,0.180592998862267,0.356386005878448,0.180592998862267,0.363211005926132,0.175503000617027,0.359593003988266,0.168749004602432,0.351393014192581,0.171228006482124,0.348818004131317,0.186230003833771,0.356386005878448,0.180592998862267,0.351393014192581,0.171228006482124,0.342330008745193,0.173954993486404,0.359593003988266,0.168749004602432,0.358698010444641,0.161164000630379,0.350196003913879,0.160732001066208,0.351393014192581,0.171228006482124,0.358698010444641,0.161164000630379,0.360365003347397, +0.153666004538536,0.352548986673355,0.150364995002747,0.350196003913879,0.160732001066208,0.350196003913879,0.160732001066208,0.352548986673355,0.150364995002747,0.343768000602722,0.146629005670547,0.340721994638443,0.160202994942665,0.351393014192581,0.171228006482124,0.350196003913879,0.160732001066208,0.340721994638443,0.160202994942665,0.342330008745193,0.173954993486404,0.370370000600815,0.142388999462128,0.366443991661072,0.134786993265152,0.358206003904343,0.14138500392437,0.364434987306595,0.147171005606651,0.366443991661072,0.134786993265152,0.362127989530563,0.126294001936913,0.351240992546082,0.134890004992485,0.358206003904343,0.14138500392437,0.358206003904343,0.14138500392437,0.351240992546082,0.134890004992485,0.343768000602722,0.146629005670547,0.352548986673355,0.150364995002747,0.364434987306595,0.147171005606651,0.358206003904343,0.14138500392437,0.352548986673355,0.150364995002747,0.360365003347397,0.153666004538536,0.385812014341354,0.201652005314827,0.38476100564003,0.192217007279396,0.374148011207581,0.19174599647522,0.371937990188599,0.200942993164063,0.38476100564003,0.192217007279396,0.383733987808228,0.18375800549984,0.376060992479324,0.183478996157646,0.374148011207581,0.19174599647522,0.374148011207581,0.19174599647522,0.376060992479324,0.183478996157646,0.368912994861603,0.180666998028755,0.364271998405457,0.187781006097794,0.371937990188599,0.200942993164063,0.374148011207581,0.19174599647522,0.364271998405457,0.187781006097794,0.359062999486923,0.195676997303963,0.409191012382507,0.218970000743866,0.399053007364273,0.197427004575729,0.385812014341354,0.201652005314827,0.388036012649536,0.225401997566223,0.444471001625061,0.165763005614281,0.420720994472504,0.163723006844521,0.417593985795975,0.177289992570877,0.439179986715317,0.187314003705978,0.410149991512299,0.189046993851662,0.403293013572693,0.182466000318527,0.394858002662659,0.188923001289368,0.399053007364273,0.197427004575729,0.403293013572693,0.182466000318527,0.397074997425079,0.176620006561279,0.391012012958527,0.181325003504753, +0.394858002662659,0.188923001289368,0.394858002662659,0.188923001289368,0.391012012958527,0.181325003504753,0.383733987808228,0.18375800549984,0.38476100564003,0.192217007279396,0.399053007364273,0.197427004575729,0.394858002662659,0.188923001289368,0.38476100564003,0.192217007279396,0.385812014341354,0.201652005314827,0.439179986715317,0.187314003705978,0.417593985795975,0.177289992570877,0.410149991512299,0.189046993851662,0.42705300450325,0.205878004431725,0.431993991136551,0.123769000172615,0.41253200173378,0.137494996190071,0.418866991996765,0.149912998080254,0.441823989152908,0.143708005547523,0.420720994472504,0.163723006844521,0.411247998476028,0.163078993558884,0.408923000097275,0.173452004790306,0.417593985795975,0.177289992570877,0.411247998476028,0.163078993558884,0.402734994888306,0.162587001919746,0.401100009679794,0.170083999633789,0.408923000097275,0.173452004790306,0.408923000097275,0.173452004790306,0.401100009679794,0.170083999633789,0.397074997425079,0.176620006561279,0.403293013572693,0.182466000318527,0.417593985795975,0.177289992570877,0.408923000097275,0.173452004790306,0.403293013572693,0.182466000318527,0.410149991512299,0.189046993851662,0.441823989152908,0.143708005547523,0.418866991996765,0.149912998080254,0.420720994472504,0.163723006844521,0.444471001625061,0.165763005614281,0.395321011543274,0.0996380001306534,0.389366000890732,0.122680000960827,0.402218014001846,0.128105998039246,0.415735989809036,0.108569003641605,0.41253200173378,0.137494996190071,0.404882997274399,0.143103003501892,0.409770011901855,0.152548000216484,0.418866991996765,0.149912998080254,0.404882997274399,0.143103003501892,0.398065000772476,0.148209005594254,0.401625007390976,0.154997006058693,0.409770011901855,0.152548000216484,0.409770011901855,0.152548000216484,0.401625007390976,0.154997006058693,0.402734994888306,0.162587001919746,0.411247998476028,0.163078993558884,0.418866991996765,0.149912998080254,0.409770011901855,0.152548000216484,0.411247998476028,0.163078993558884,0.420720994472504,0.163723006844521,0.415735989809036, +0.108569003641605,0.402218014001846,0.128105998039246,0.41253200173378,0.137494996190071,0.431993991136551,0.123769000172615,0.35155001282692,0.104855999350548,0.362127989530563,0.126294001936913,0.37542000412941,0.122149996459484,0.373017996549606,0.0985070019960403,0.389366000890732,0.122680000960827,0.387163996696472,0.131910994648933,0.396979004144669,0.135989993810654,0.402218014001846,0.128105998039246,0.387163996696472,0.131910994648933,0.385271996259689,0.140224993228912,0.392349004745483,0.143119007349014,0.396979004144669,0.135989993810654,0.396979004144669,0.135989993810654,0.392349004745483,0.143119007349014,0.398065000772476,0.148209005594254,0.404882997274399,0.143103003501892,0.402218014001846,0.128105998039246,0.396979004144669,0.135989993810654,0.404882997274399,0.143103003501892,0.41253200173378,0.137494996190071,0.373017996549606,0.0985070019960403,0.37542000412941,0.122149996459484,0.389366000890732,0.122680000960827,0.395321011543274,0.0996380001306534,0.343768000602722,0.146629005670547,0.351240992546082,0.134890004992485,0.333635002374649,0.118363000452518,0.321386992931366,0.136978998780251,0.362127989530563,0.126294001936913,0.366443991661072,0.134786993265152,0.376540988683701,0.131568998098373,0.37542000412941,0.122149996459484,0.366443991661072,0.134786993265152,0.370370000600815,0.142388999462128,0.377629995346069,0.14002799987793,0.376540988683701,0.131568998098373,0.376540988683701,0.131568998098373,0.377629995346069,0.14002799987793,0.385271996259689,0.140224993228912,0.387163996696472,0.131910994648933,0.37542000412941,0.122149996459484,0.376540988683701,0.131568998098373,0.387163996696472,0.131910994648933,0.389366000890732,0.122680000960827,0.333635002374649,0.118363000452518,0.351240992546082,0.134890004992485,0.362127989530563,0.126294001936913,0.35155001282692,0.104855999350548,0.0375740006566048,0.0465169996023178,0.0384860001504421,0.0307630002498627,0.0311200004070997,0.0310779996216297,0.030120000243187,0.0490269996225834,0.386988401412964,0.516668438911438,0.37767505645752, +0.516830682754517,0.376960873603821,0.526204943656921,0.389744520187378,0.522671461105347,0.37767505645752,0.516830682754517,0.36568421125412,0.515700697898865,0.36370325088501,0.52572500705719,0.376960873603821,0.526204943656921,0.376960873603821,0.526204943656921,0.36370325088501,0.52572500705719,0.362087726593018,0.533973574638367,0.377948760986328,0.534528851509094,0.389744520187378,0.522671461105347,0.376960873603821,0.526204943656921,0.377948760986328,0.534528851509094,0.393242001533508,0.530288338661194,0.416343092918396,0.509063005447388,0.40903514623642,0.504912078380585,0.400757014751434,0.515279531478882,0.406425833702087,0.521454095840454,0.40903514623642,0.504912078380585,0.400141179561615,0.499880850315094,0.39318174123764,0.509710788726807,0.400757014751434,0.515279531478882,0.400757014751434,0.515279531478882,0.39318174123764,0.509710788726807,0.386988401412964,0.516668438911438,0.389744520187378,0.522671461105347,0.406425833702087,0.521454095840454,0.400757014751434,0.515279531478882,0.389744520187378,0.522671461105347,0.393242001533508,0.530288338661194,0.36568421125412,0.515700697898865,0.354184210300446,0.512119650840759,0.351270079612732,0.521079540252686,0.36370325088501,0.52572500705719,0.354184210300446,0.512119650840759,0.345787942409515,0.508405447006226,0.341120362281799,0.512930333614349,0.351270079612732,0.521079540252686,0.351270079612732,0.521079540252686,0.341120362281799,0.512930333614349,0.335288643836975,0.51870334148407,0.347200751304626,0.528426289558411,0.36370325088501,0.52572500705719,0.351270079612732,0.521079540252686,0.347200751304626,0.528426289558411,0.362087726593018,0.533973574638367,0.422591745853424,0.4782754778862,0.414231598377228,0.479190587997437,0.413615465164185,0.492454707622528,0.421839833259583,0.494157314300537,0.414231598377228,0.479190587997437,0.407657146453857,0.479922890663147,0.404921174049377,0.488824218511581,0.413615465164185,0.492454707622528,0.413615465164185,0.492454707622528,0.404921174049377,0.488824218511581,0.400141179561615,0.499880850315094, +0.40903514623642,0.504912078380585,0.421839833259583,0.494157314300537,0.413615465164185,0.492454707622528,0.40903514623642,0.504912078380585,0.416343092918396,0.509063005447388,0.345787942409515,0.508405447006226,0.342912435531616,0.499602168798447,0.334713339805603,0.501944422721863,0.341120362281799,0.512930333614349,0.342912435531616,0.499602168798447,0.340468943119049,0.487913578748703,0.331864178180695,0.489426612854004,0.334713339805603,0.501944422721863,0.334713339805603,0.501944422721863,0.331864178180695,0.489426612854004,0.325578689575195,0.490839660167694,0.328353047370911,0.505623340606689,0.341120362281799,0.512930333614349,0.334713339805603,0.501944422721863,0.328353047370911,0.505623340606689,0.335288643836975,0.51870334148407,0.386988401412964,0.516668438911438,0.39318174123764,0.509710788726807,0.381794214248657,0.505354762077332,0.37767505645752,0.516830682754517,0.39318174123764,0.509710788726807,0.400141179561615,0.499880850315094,0.388078033924103,0.493088632822037,0.381794214248657,0.505354762077332,0.381794214248657,0.505354762077332,0.388078033924103,0.493088632822037,0.372018218040466,0.484063386917114,0.368395328521729,0.502124845981598,0.37767505645752,0.516830682754517,0.381794214248657,0.505354762077332,0.368395328521729,0.502124845981598,0.36568421125412,0.515700697898865,0.372018218040466,0.484063386917114,0.353711545467377,0.486199617385864,0.354786932468414,0.499934941530228,0.368395328521729,0.502124845981598,0.353711545467377,0.486199617385864,0.340468943119049,0.487913578748703,0.342912435531616,0.499602168798447,0.354786932468414,0.499934941530228,0.354786932468414,0.499934941530228,0.342912435531616,0.499602168798447,0.345787942409515,0.508405447006226,0.354184210300446,0.512119650840759,0.368395328521729,0.502124845981598,0.354786932468414,0.499934941530228,0.354184210300446,0.512119650840759,0.36568421125412,0.515700697898865,0.340468943119049,0.487913578748703,0.340306341648102,0.475998908281326,0.332386255264282,0.476686000823975,0.331864178180695,0.489426612854004,0.340306341648102, +0.475998908281326,0.341463029384613,0.467134088277817,0.336608648300171,0.464705497026443,0.332386255264282,0.476686000823975,0.332386255264282,0.476686000823975,0.336608648300171,0.464705497026443,0.330926239490509,0.462056070566177,0.326150119304657,0.476009637117386,0.331864178180695,0.489426612854004,0.332386255264282,0.476686000823975,0.326150119304657,0.476009637117386,0.325578689575195,0.490839660167694,0.407657146453857,0.479922890663147,0.402955770492554,0.471862196922302,0.395286917686462,0.481340616941452,0.404921174049377,0.488824218511581,0.402955770492554,0.471862196922302,0.395766913890839,0.462194412946701,0.385571479797363,0.471572637557983,0.395286917686462,0.481340616941452,0.395286917686462,0.481340616941452,0.385571479797363,0.471572637557983,0.372018218040466,0.484063386917114,0.388078033924103,0.493088632822037,0.404921174049377,0.488824218511581,0.395286917686462,0.481340616941452,0.388078033924103,0.493088632822037,0.400141179561615,0.499880850315094,0.409542202949524,0.449649095535278,0.40331619977951,0.455300062894821,0.410618901252747,0.466405630111694,0.418278217315674,0.462959408760071,0.40331619977951,0.455300062894821,0.395766913890839,0.462194412946701,0.402955770492554,0.471862196922302,0.410618901252747,0.466405630111694,0.410618901252747,0.466405630111694,0.402955770492554,0.471862196922302,0.407657146453857,0.479922890663147,0.414231598377228,0.479190587997437,0.418278217315674,0.462959408760071,0.410618901252747,0.466405630111694,0.414231598377228,0.479190587997437,0.422591745853424,0.4782754778862,0.372018218040466,0.484063386917114,0.364334046840668,0.467326998710632,0.351591110229492,0.472587674856186,0.353711545467377,0.486199617385864,0.364334046840668,0.467326998710632,0.358928143978119,0.455095767974854,0.348585426807404,0.461283564567566,0.351591110229492,0.472587674856186,0.351591110229492,0.472587674856186,0.348585426807404,0.461283564567566,0.341463029384613,0.467134088277817,0.340306341648102,0.475998908281326,0.353711545467377,0.486199617385864,0.351591110229492,0.472587674856186, +0.340306341648102,0.475998908281326,0.340468943119049,0.487913578748703,0.341463029384613,0.467134088277817,0.348585426807404,0.461283564567566,0.344857335090637,0.454470664262772,0.336608648300171,0.464705497026443,0.348585426807404,0.461283564567566,0.358928143978119,0.455095767974854,0.355768859386444,0.446847558021545,0.344857335090637,0.454470664262772,0.344857335090637,0.454470664262772,0.355768859386444,0.446847558021545,0.353733420372009,0.44059032201767,0.340766906738281,0.44990485906601,0.336608648300171,0.464705497026443,0.344857335090637,0.454470664262772,0.340766906738281,0.44990485906601,0.330926239490509,0.462056070566177,0.38254326581955,0.434551119804382,0.380633056163788,0.442589432001114,0.392866194248199,0.447075486183167,0.39702981710434,0.439782798290253,0.380633056163788,0.442589432001114,0.379191398620605,0.448966085910797,0.386726260185242,0.454225897789001,0.392866194248199,0.447075486183167,0.392866194248199,0.447075486183167,0.386726260185242,0.454225897789001,0.395766913890839,0.462194412946701,0.40331619977951,0.455300062894821,0.39702981710434,0.439782798290253,0.392866194248199,0.447075486183167,0.40331619977951,0.455300062894821,0.409542202949524,0.449649095535278,0.379191398620605,0.448966085910797,0.37019145488739,0.45107489824295,0.37663060426712,0.461091578006744,0.386726260185242,0.454225897789001,0.37019145488739,0.45107489824295,0.358928143978119,0.455095767974854,0.364334046840668,0.467326998710632,0.37663060426712,0.461091578006744,0.37663060426712,0.461091578006744,0.364334046840668,0.467326998710632,0.372018218040466,0.484063386917114,0.385571479797363,0.471572637557983,0.386726260185242,0.454225897789001,0.37663060426712,0.461091578006744,0.385571479797363,0.471572637557983,0.395766913890839,0.462194412946701,0.379191398620605,0.448966085910797,0.380633056163788,0.442589432001114,0.36798107624054,0.442700296640396,0.37019145488739,0.45107489824295,0.380633056163788,0.442589432001114,0.38254326581955,0.434551119804382,0.367884516716003,0.435146659612656,0.36798107624054, +0.442700296640396,0.36798107624054,0.442700296640396,0.367884516716003,0.435146659612656,0.353733420372009,0.44059032201767,0.355768859386444,0.446847558021545,0.37019145488739,0.45107489824295,0.36798107624054,0.442700296640396,0.355768859386444,0.446847558021545,0.358928143978119,0.455095767974854,0.865230023860931,0.89842700958252,0.872783005237579,0.896538972854614,0.870020985603333,0.890870988368988,0.863754987716675,0.894842982292175,0.85452401638031,0.881094992160797,0.854075014591217,0.889258980751038,0.857887983322144,0.890052020549774,0.86045902967453,0.882722020149231,0.86045902967453,0.882722020149231,0.857887983322144,0.890052020549774,0.861240029335022,0.891915023326874,0.865773022174835,0.886182010173798,0.865462005138397,0.902254998683929,0.87364000082016,0.902935981750488,0.872783005237579,0.896538972854614,0.865230023860931,0.89842700958252,0.86455100774765,0.905992984771729,0.872413992881775,0.909223973751068,0.87364000082016,0.902935981750488,0.865462005138397,0.902254998683929,0.848411977291107,0.881909012794495,0.850179970264435,0.889544010162354,0.854075014591217,0.889258980751038,0.85452401638031,0.881094992160797,0.842603981494904,0.884617984294891,0.84662002325058,0.890945971012115,0.850179970264435,0.889544010162354,0.848411977291107,0.881909012794495,0.859759986400604,0.911893010139465,0.863889992237091,0.918522000312805,0.868925988674164,0.914566993713379,0.862595021724701,0.909304022789001,0.862595021724701,0.909304022789001,0.868925988674164,0.914566993713379,0.872413992881775,0.909223973751068,0.86455100774765,0.905992984771729,0.83406001329422,0.893894016742706,0.8418989777565,0.896833002567291,0.843815982341766,0.893501996994019,0.837577998638153,0.888674974441528,0.837577998638153,0.888674974441528,0.843815982341766,0.893501996994019,0.84662002325058,0.890945971012115,0.842603981494904,0.884617984294891,0.852344989776611,0.913856983184814,0.851814985275269,0.92103099822998,0.858021020889282,0.920647978782654,0.856211006641388,0.913461029529572,0.856211006641388,0.913461029529572, +0.858021020889282,0.920647978782654,0.863889992237091,0.918522000312805,0.859759986400604,0.911893010139465,0.832776010036469,0.900090992450714,0.841000974178314,0.900556981563568,0.8418989777565,0.896833002567291,0.83406001329422,0.893894016742706,0.833549976348877,0.906463980674744,0.841234982013702,0.904353976249695,0.841000974178314,0.900556981563568,0.832776010036469,0.900090992450714,0.848559975624084,0.912926971912384,0.845770001411438,0.91975599527359,0.851814985275269,0.92103099822998,0.852344989776611,0.913856983184814,0.845225989818573,0.910874009132385,0.840395987033844,0.916818976402283,0.845770001411438,0.91975599527359,0.848559975624084,0.912926971912384,0.83620697259903,0.912213981151581,0.842714011669159,0.907904982566833,0.841234982013702,0.904353976249695,0.833549976348877,0.906463980674744,0.845225989818573,0.910874009132385,0.842714011669159,0.907904982566833,0.83620697259903,0.912213981151581,0.840395987033844,0.916818976402283,0.567321598529816,0.356954008340836,0.561398863792419,0.375491201877594,0.557934939861298,0.373697370290756,0.5643669962883,0.35373067855835,0.5643669962883,0.35373067855835,0.557934939861298,0.373697370290756,0.552321135997772,0.371177792549133,0.560405611991882,0.351062685251236,0.541803300380707,0.342119067907333,0.534683346748352,0.362060397863388,0.526232481002808,0.357259720563889,0.533316135406494,0.338979691267014,0.549767971038818,0.345259964466095,0.540929853916168,0.365693628787994,0.534683346748352,0.362060397863388,0.541803300380707,0.342119067907333,0.949551999568939,0.131741002202034,0.951647996902466,0.155090004205704,0.959007441997528,0.15350840985775,0.960886716842651,0.13143926858902,0.561398863792419,0.375491201877594,0.567321598529816,0.356954008340836,0.569146931171417,0.36011216044426,0.563929259777069,0.37631818652153,0.515211760997772,0.350949972867966,0.523539364337921,0.33751380443573,0.527295291423798,0.337572455406189,0.518926620483398,0.352869480848312,0.540929853916168,0.365693628787994,0.537011086940765,0.373211532831192,0.530041694641113, +0.369170516729355,0.534683346748352,0.362060397863388,0.534683346748352,0.362060397863388,0.530041694641113,0.369170516729355,0.52200573682785,0.364875465631485,0.526232481002808,0.357259720563889,0.533316135406494,0.338979691267014,0.526232481002808,0.357259720563889,0.518926620483398,0.352869480848312,0.527295291423798,0.337572455406189,0.555705964565277,0.348205715417862,0.546518683433533,0.368551820516586,0.540929853916168,0.365693628787994,0.549767971038818,0.345259964466095,0.552321135997772,0.371177792549133,0.549462676048279,0.378855049610138,0.543164551258087,0.376329779624939,0.546518683433533,0.368551820516586,0.546518683433533,0.368551820516586,0.543164551258087,0.376329779624939,0.537011086940765,0.373211532831192,0.540929853916168,0.365693628787994,0.54102224111557,0.395800203084946,0.534508764743805,0.392738372087479,0.5391486287117,0.383714318275452,0.545622825622559,0.386489421129227,0.534508764743805,0.392738372087479,0.529206573963165,0.390233010053635,0.533350646495819,0.381053507328033,0.5391486287117,0.383714318275452,0.5391486287117,0.383714318275452,0.533350646495819,0.381053507328033,0.537011086940765,0.373211532831192,0.543164551258087,0.376329779624939,0.545622825622559,0.386489421129227,0.5391486287117,0.383714318275452,0.543164551258087,0.376329779624939,0.549462676048279,0.378855049610138,0.529206573963165,0.390233010053635,0.522957265377045,0.387314051389694,0.52712619304657,0.377748996019363,0.533350646495819,0.381053507328033,0.522957265377045,0.387314051389694,0.515003442764282,0.383554250001907,0.518555641174316,0.373380571603775,0.52712619304657,0.377748996019363,0.52712619304657,0.377748996019363,0.518555641174316,0.373380571603775,0.52200573682785,0.364875465631485,0.530041694641113,0.369170516729355,0.533350646495819,0.381053507328033,0.52712619304657,0.377748996019363,0.530041694641113,0.369170516729355,0.537011086940765,0.373211532831192,0.529206573963165,0.390233010053635,0.525236487388611,0.399618685245514,0.518907248973846,0.396548092365265,0.522957265377045,0.387314051389694, +0.518907248973846,0.396548092365265,0.513452768325806,0.41180419921875,0.50864177942276,0.408176690340042,0.51096910238266,0.393089681863785,0.5368971824646,0.40577620267868,0.529607057571411,0.419388592243195,0.523794114589691,0.417526006698608,0.530538082122803,0.40233188867569,0.522957265377045,0.387314051389694,0.518907248973846,0.396548092365265,0.51096910238266,0.393089681863785,0.515003442764282,0.383554250001907,0.54102224111557,0.395800203084946,0.5368971824646,0.40577620267868,0.530538082122803,0.40233188867569,0.534508764743805,0.392738372087479,0.530538082122803,0.40233188867569,0.523794114589691,0.417526006698608,0.518333554267883,0.414994269609451,0.525236487388611,0.399618685245514,0.540425181388855,0.421044528484344,0.535365343093872,0.420768767595291,0.543425023555756,0.409699290990829,0.547450542449951,0.412440210580826,0.534508764743805,0.392738372087479,0.530538082122803,0.40233188867569,0.525236487388611,0.399618685245514,0.529206573963165,0.390233010053635,0.504413366317749,0.390891969203949,0.503955781459808,0.404721915721893,0.500401616096497,0.401286602020264,0.500757217407227,0.390151858329773,0.511898040771484,0.35930123925209,0.50990104675293,0.358508974313736,0.513452291488647,0.349871456623077,0.515211760997772,0.350949972867966,0.515211760997772,0.350949972867966,0.513452291488647,0.349871456623077,0.520261645317078,0.337980717420578,0.523539364337921,0.33751380443573,0.754886984825134,0.150260999798775,0.768904983997345,0.152574002742767,0.760842978954315,0.131660997867584,0.746704995632172,0.131643995642662,0.768904983997345,0.152574002742767,0.785776972770691,0.15463599562645,0.778553009033203,0.131573006510735,0.760842978954315,0.131660997867584,0.785776972770691,0.15463599562645,0.802537977695465,0.155807003378868,0.795982003211975,0.131466999650002,0.778553009033203,0.131573006510735,0.802537977695465,0.155807003378868,0.816586017608643,0.156571999192238,0.810770988464355,0.131413996219635,0.795982003211975,0.131466999650002,0.82532000541687,0.157416000962257,0.830995976924896, +0.15828700363636,0.827507972717285,0.131521999835968,0.82056200504303,0.131482005119324,0.816586017608643,0.156571999192238,0.82532000541687,0.157416000962257,0.82056200504303,0.131482005119324,0.810770988464355,0.131413996219635,0.835870027542114,0.15913699567318,0.84102600812912,0.159967005252838,0.840407013893127,0.131255999207497,0.833763003349304,0.131381005048752,0.830995976924896,0.15828700363636,0.835870027542114,0.15913699567318,0.833763003349304,0.131381005048752,0.827507972717285,0.131521999835968,0.847545027732849,0.160782992839813,0.85452002286911,0.161476999521255,0.857502996921539,0.131466001272202,0.848518013954163,0.131344005465508,0.84102600812912,0.159967005252838,0.847545027732849,0.160782992839813,0.848518013954163,0.131344005465508,0.840407013893127,0.131255999207497,0.85452002286911,0.161476999521255,0.861043989658356,0.161945000290871,0.866771996021271,0.131441995501518,0.857502996921539,0.131466001272202,0.861043989658356,0.161945000290871,0.866896986961365,0.162202000617981,0.875232994556427,0.131396993994713,0.866771996021271,0.131441995501518,0.866896986961365,0.162202000617981,0.871856987476349,0.162264004349709,0.881790995597839,0.131452992558479,0.875232994556427,0.131396993994713,0.871856987476349,0.162264004349709,0.876631021499634,0.162248998880386,0.887754023075104,0.131561994552612,0.881790995597839,0.131452992558479,0.881923973560333,0.162269994616508,0.890681982040405,0.161896005272865,0.90327000617981,0.131790995597839,0.894428014755249,0.131676003336906,0.876631021499634,0.162248998880386,0.881923973560333,0.162269994616508,0.894428014755249,0.131676003336906,0.887754023075104,0.131561994552612,0.905852019786835,0.160695001482964,0.923451006412506,0.158940002322197,0.928960978984833,0.131953001022339,0.91574102640152,0.131901994347572,0.890681982040405,0.161896005272865,0.905852019786835,0.160695001482964,0.91574102640152,0.131901994347572,0.90327000617981,0.131790995597839,0.939496994018555,0.156905993819237,0.951647996902466,0.155090004205704,0.949551999568939,0.131741002202034, +0.940051019191742,0.131890997290611,0.923451006412506,0.158940002322197,0.939496994018555,0.156905993819237,0.940051019191742,0.131890997290611,0.928960978984833,0.131953001022339,0.52200573682785,0.364875465631485,0.515443027019501,0.361167252063751,0.518926620483398,0.352869480848312,0.526232481002808,0.357259720563889,0.742304444313049,0.146404653787613,0.754886984825134,0.150260999798775,0.746704995632172,0.131643995642662,0.718695998191833,0.128970995545387,0.518926620483398,0.352869480848312,0.515443027019501,0.361167252063751,0.511898040771484,0.35930123925209,0.515211760997772,0.350949972867966,0.555634737014771,0.381143510341644,0.557934939861298,0.373697370290756,0.561398863792419,0.375491201877594,0.559633195400238,0.382550209760666,0.52200573682785,0.364875465631485,0.518555641174316,0.373380571603775,0.511388123035431,0.370041817426682,0.515443027019501,0.361167252063751,0.518555641174316,0.373380571603775,0.515003442764282,0.383554250001907,0.508204162120819,0.380640506744385,0.511388123035431,0.370041817426682,0.511388123035431,0.370041817426682,0.508204162120819,0.380640506744385,0.504451632499695,0.379326909780502,0.507780134677887,0.368523925542831,0.515443027019501,0.361167252063751,0.511388123035431,0.370041817426682,0.507780134677887,0.368523925542831,0.511898040771484,0.35930123925209,0.552321135997772,0.371177792549133,0.557934939861298,0.373697370290756,0.555634737014771,0.381143510341644,0.549462676048279,0.378855049610138,0.559633195400238,0.382550209760666,0.55651068687439,0.391067445278168,0.552171766757965,0.389250487089157,0.555634737014771,0.381143510341644,0.55651068687439,0.391067445278168,0.552999079227448,0.402110248804092,0.548327147960663,0.39951565861702,0.552171766757965,0.389250487089157,0.552171766757965,0.389250487089157,0.548327147960663,0.39951565861702,0.54102224111557,0.395800203084946,0.545622825622559,0.386489421129227,0.555634737014771,0.381143510341644,0.552171766757965,0.389250487089157,0.545622825622559,0.386489421129227,0.549462676048279,0.378855049610138,0.552999079227448, +0.402110248804092,0.547450542449951,0.412440210580826,0.543425023555756,0.409699290990829,0.548327147960663,0.39951565861702,0.529607057571411,0.419388592243195,0.5368971824646,0.40577620267868,0.543425023555756,0.409699290990829,0.535365343093872,0.420768767595291,0.504413366317749,0.390891969203949,0.51096910238266,0.393089681863785,0.50864177942276,0.408176690340042,0.503955781459808,0.404721915721893,0.548327147960663,0.39951565861702,0.543425023555756,0.409699290990829,0.5368971824646,0.40577620267868,0.54102224111557,0.395800203084946,0.504413366317749,0.390891969203949,0.500757217407227,0.390151858329773,0.504451632499695,0.379326909780502,0.508204162120819,0.380640506744385,0.51096910238266,0.393089681863785,0.504413366317749,0.390891969203949,0.508204162120819,0.380640506744385,0.515003442764282,0.383554250001907,0.50864177942276,0.408176690340042,0.507477343082428,0.414525300264359,0.503858149051666,0.410514712333679,0.503955781459808,0.404721915721893,0.507477343082428,0.414525300264359,0.50635814666748,0.417604446411133,0.503709971904755,0.414006561040878,0.503858149051666,0.410514712333679,0.503858149051666,0.410514712333679,0.503709971904755,0.414006561040878,0.502124726772308,0.411038756370544,0.50113582611084,0.407614350318909,0.503955781459808,0.404721915721893,0.503858149051666,0.410514712333679,0.50113582611084,0.407614350318909,0.500401616096497,0.401286602020264,0.518333554267883,0.414994269609451,0.51587837934494,0.421406865119934,0.511396288871765,0.418323457241058,0.513452768325806,0.41180419921875,0.51587837934494,0.421406865119934,0.514544188976288,0.424276471138,0.510060906410217,0.421286344528198,0.511396288871765,0.418323457241058,0.511396288871765,0.418323457241058,0.510060906410217,0.421286344528198,0.50635814666748,0.417604446411133,0.507477343082428,0.414525300264359,0.513452768325806,0.41180419921875,0.511396288871765,0.418323457241058,0.507477343082428,0.414525300264359,0.50864177942276,0.408176690340042,0.518333554267883,0.414994269609451,0.523794114589691,0.417526006698608,0.521055400371552, +0.423261135816574,0.51587837934494,0.421406865119934,0.523794114589691,0.417526006698608,0.529607057571411,0.419388592243195,0.526531577110291,0.424209713935852,0.521055400371552,0.423261135816574,0.521055400371552,0.423261135816574,0.526531577110291,0.424209713935852,0.525120913982391,0.426671415567398,0.519751965999603,0.425954222679138,0.51587837934494,0.421406865119934,0.521055400371552,0.423261135816574,0.519751965999603,0.425954222679138,0.514544188976288,0.424276471138,0.529607057571411,0.419388592243195,0.535365343093872,0.420768767595291,0.531808197498322,0.424441576004028,0.526531577110291,0.424209713935852,0.535365343093872,0.420768767595291,0.540425181388855,0.421044528484344,0.535816729068756,0.424560517072678,0.531808197498322,0.424441576004028,0.531808197498322,0.424441576004028,0.535816729068756,0.424560517072678,0.532931566238403,0.425845295190811,0.529720723628998,0.426470398902893,0.526531577110291,0.424209713935852,0.531808197498322,0.424441576004028,0.529720723628998,0.426470398902893,0.525120913982391,0.426671415567398,0.507780134677887,0.368523925542831,0.505716979503632,0.367893546819687,0.50990104675293,0.358508974313736,0.511898040771484,0.35930123925209,0.500757217407227,0.390151858329773,0.498571515083313,0.389754861593246,0.502212345600128,0.378625243902206,0.504451632499695,0.379326909780502,0.507780134677887,0.368523925542831,0.504451632499695,0.379326909780502,0.502212345600128,0.378625243902206,0.505716979503632,0.367893546819687,0.50113582611084,0.407614350318909,0.498978346586227,0.40682452917099,0.498103678226471,0.399985522031784,0.500401616096497,0.401286602020264,0.500757217407227,0.390151858329773,0.500401616096497,0.401286602020264,0.498103678226471,0.399985522031784,0.498571515083313,0.389754861593246,0.503709971904755,0.414006561040878,0.502425491809845,0.415828973054886,0.500655174255371,0.411711275577545,0.502124726772308,0.411038756370544,0.50113582611084,0.407614350318909,0.502124726772308,0.411038756370544,0.500655174255371,0.411711275577545,0.498978346586227,0.40682452917099, +0.510060906410217,0.421286344528198,0.508799910545349,0.423396736383438,0.504946231842041,0.41955229640007,0.50635814666748,0.417604446411133,0.503709971904755,0.414006561040878,0.50635814666748,0.417604446411133,0.504946231842041,0.41955229640007,0.502425491809845,0.415828973054886,0.519751965999603,0.425954222679138,0.5189568400383,0.428077161312103,0.513465225696564,0.426434278488159,0.514544188976288,0.424276471138,0.510060906410217,0.421286344528198,0.514544188976288,0.424276471138,0.513465225696564,0.426434278488159,0.508799910545349,0.423396736383438,0.529720723628998,0.426470398902893,0.529478490352631,0.428354561328888,0.524675846099854,0.428714156150818,0.525120913982391,0.426671415567398,0.519751965999603,0.425954222679138,0.525120913982391,0.426671415567398,0.524675846099854,0.428714156150818,0.5189568400383,0.428077161312103,0.535816729068756,0.424560517072678,0.538067042827606,0.425485402345657,0.533767342567444,0.427193015813828,0.532931566238403,0.425845295190811,0.529720723628998,0.426470398902893,0.532931566238403,0.425845295190811,0.533767342567444,0.427193015813828,0.529478490352631,0.428354561328888,0.547450542449951,0.412440210580826,0.549844026565552,0.413979649543762,0.543265759944916,0.421642392873764,0.540425181388855,0.421044528484344,0.535816729068756,0.424560517072678,0.540425181388855,0.421044528484344,0.543265759944916,0.421642392873764,0.538067042827606,0.425485402345657,0.55651068687439,0.391067445278168,0.559186637401581,0.392299592494965,0.555770397186279,0.403620928525925,0.552999079227448,0.402110248804092,0.547450542449951,0.412440210580826,0.552999079227448,0.402110248804092,0.555770397186279,0.403620928525925,0.549844026565552,0.413979649543762,0.561398863792419,0.375491201877594,0.563929259777069,0.37631818652153,0.562221884727478,0.383571296930313,0.559633195400238,0.382550209760666,0.55651068687439,0.391067445278168,0.559633195400238,0.382550209760666,0.562221884727478,0.383571296930313,0.559186637401581,0.392299592494965,0.948836028575897,0.192094996571541,0.93756502866745, +0.19140200316906,0.939445972442627,0.202509000897408,0.952513992786407,0.202408000826836,0.93756502866745,0.19140200316906,0.926174998283386,0.190631002187729,0.925855994224548,0.202052995562553,0.939445972442627,0.202509000897408,0.939445972442627,0.202509000897408,0.925855994224548,0.202052995562553,0.925677001476288,0.215546995401382,0.94056898355484,0.215735003352165,0.952513992786407,0.202408000826836,0.939445972442627,0.202509000897408,0.94056898355484,0.215735003352165,0.95771598815918,0.215794995427132,0.925677001476288,0.215546995401382,0.925549983978271,0.229488000273705,0.938925981521606,0.229573994874954,0.94056898355484,0.215735003352165,0.925549983978271,0.229488000273705,0.92510598897934,0.243257001042366,0.936278998851776,0.24329200387001,0.938925981521606,0.229573994874954,0.938925981521606,0.229573994874954,0.936278998851776,0.24329200387001,0.948269009590149,0.242768004536629,0.952588975429535,0.229904994368553,0.94056898355484,0.215735003352165,0.938925981521606,0.229573994874954,0.952588975429535,0.229904994368553,0.95771598815918,0.215794995427132,0.925677001476288,0.215546995401382,0.910961985588074,0.216181993484497,0.911880016326904,0.229629993438721,0.925549983978271,0.229488000273705,0.910961985588074,0.216181993484497,0.897266983985901,0.217198997735977,0.89859801530838,0.229762002825737,0.911880016326904,0.229629993438721,0.911880016326904,0.229629993438721,0.89859801530838,0.229762002825737,0.901510000228882,0.241877004504204,0.913482010364532,0.242786005139351,0.925549983978271,0.229488000273705,0.911880016326904,0.229629993438721,0.913482010364532,0.242786005139351,0.92510598897934,0.243257001042366,0.925677001476288,0.215546995401382,0.925855994224548,0.202052995562553,0.91330498456955,0.202972993254662,0.910961985588074,0.216181993484497,0.925855994224548,0.202052995562553,0.926174998283386,0.190631002187729,0.916453003883362,0.191558003425598,0.91330498456955,0.202972993254662,0.91330498456955,0.202972993254662,0.916453003883362,0.191558003425598,0.906445026397705,0.19370000064373, +0.901201009750366,0.20473800599575,0.910961985588074,0.216181993484497,0.91330498456955,0.202972993254662,0.901201009750366,0.20473800599575,0.897266983985901,0.217198997735977,0.980108022689819,0.239545002579689,0.982389986515045,0.239201992750168,0.984737992286682,0.231439992785454,0.978680014610291,0.231075003743172,0.933192014694214,0.271333992481232,0.933304011821747,0.265832990407944,0.922860980033875,0.266014993190765,0.922396004199982,0.272583991289139,0.981683015823364,0.927330017089844,0.985565006732941,0.919973015785217,0.978080987930298,0.915861010551453,0.976170003414154,0.92205399274826,0.960591971874237,0.964078009128571,0.955735981464386,0.96086198091507,0.952409029006958,0.968221008777618,0.957063972949982,0.971893012523651,0.972249984741211,0.736198008060455,0.969554007053375,0.729336977005005,0.965121984481812,0.734206020832062,0.96773099899292,0.741796016693115,0.971110999584198,0.944518983364105,0.976391971111298,0.936085999011993,0.970273017883301,0.932816028594971,0.965537011623383,0.94139301776886,0.948836028575897,0.192094996571541,0.958202004432678,0.190933004021645,0.954043984413147,0.186012998223305,0.946676015853882,0.185356006026268,0.96415501832962,0.188669994473457,0.956140995025635,0.183753997087479,0.954043984413147,0.186012998223305,0.958202004432678,0.190933004021645,0.946779012680054,0.181319996714592,0.946676015853882,0.185356006026268,0.954043984413147,0.186012998223305,0.956140995025635,0.183753997087479,0.948836028575897,0.192094996571541,0.952513992786407,0.202408000826836,0.963495016098022,0.199818998575211,0.958202004432678,0.190933004021645,0.952513992786407,0.202408000826836,0.95771598815918,0.215794995427132,0.969169020652771,0.208998993039131,0.963495016098022,0.199818998575211,0.963495016098022,0.199818998575211,0.969169020652771,0.208998993039131,0.977019011974335,0.206098005175591,0.971283972263336,0.196827992796898,0.958202004432678,0.190933004021645,0.963495016098022,0.199818998575211,0.971283972263336,0.196827992796898,0.96415501832962,0.188669994473457,0.92720901966095, +0.178101003170013,0.926723003387451,0.182906001806259,0.936933994293213,0.183924004435539,0.936900019645691,0.179270997643471,0.926723003387451,0.182906001806259,0.926174998283386,0.190631002187729,0.93756502866745,0.19140200316906,0.936933994293213,0.183924004435539,0.936933994293213,0.183924004435539,0.93756502866745,0.19140200316906,0.948836028575897,0.192094996571541,0.946676015853882,0.185356006026268,0.936900019645691,0.179270997643471,0.936933994293213,0.183924004435539,0.946676015853882,0.185356006026268,0.946779012680054,0.181319996714592,0.980108022689819,0.239545002579689,0.978680014610291,0.231075003743172,0.967122972011566,0.230501994490623,0.962338984012604,0.241561993956566,0.978680014610291,0.231075003743172,0.980732023715973,0.222473993897438,0.971138000488281,0.221076995134354,0.967122972011566,0.230501994490623,0.967122972011566,0.230501994490623,0.971138000488281,0.221076995134354,0.95771598815918,0.215794995427132,0.952588975429535,0.229904994368553,0.962338984012604,0.241561993956566,0.967122972011566,0.230501994490623,0.952588975429535,0.229904994368553,0.948269009590149,0.242768004536629,0.95771598815918,0.215794995427132,0.971138000488281,0.221076995134354,0.974472999572754,0.214805006980896,0.969169020652771,0.208998993039131,0.980732023715973,0.222473993897438,0.980849027633667,0.214350000023842,0.974472999572754,0.214805006980896,0.971138000488281,0.221076995134354,0.977019011974335,0.206098005175591,0.969169020652771,0.208998993039131,0.974472999572754,0.214805006980896,0.980849027633667,0.214350000023842,0.909896016120911,0.179832994937897,0.909042000770569,0.185400992631912,0.917949974536896,0.183488994836807,0.918411016464233,0.178305000066757,0.909042000770569,0.185400992631912,0.906445026397705,0.19370000064373,0.916453003883362,0.191558003425598,0.917949974536896,0.183488994836807,0.917949974536896,0.183488994836807,0.916453003883362,0.191558003425598,0.926174998283386,0.190631002187729,0.926723003387451,0.182906001806259,0.918411016464233,0.178305000066757,0.917949974536896,0.183488994836807, +0.926723003387451,0.182906001806259,0.92720901966095,0.178101003170013,0.948269009590149,0.242768004536629,0.945088982582092,0.254970014095306,0.9566969871521,0.252737998962402,0.962338984012604,0.241561993956566,0.945088982582092,0.254970014095306,0.943228006362915,0.264203011989594,0.952291011810303,0.261469006538391,0.9566969871521,0.252737998962402,0.9566969871521,0.252737998962402,0.952291011810303,0.261469006538391,0.959339022636414,0.257773995399475,0.965978980064392,0.250885993242264,0.962338984012604,0.241561993956566,0.9566969871521,0.252737998962402,0.965978980064392,0.250885993242264,0.980108022689819,0.239545002579689,0.92510598897934,0.243257001042366,0.923974990844727,0.256233006715775,0.934394001960754,0.256159991025925,0.936278998851776,0.24329200387001,0.923974990844727,0.256233006715775,0.922860980033875,0.266014993190765,0.933304011821747,0.265832990407944,0.934394001960754,0.256159991025925,0.934394001960754,0.256159991025925,0.933304011821747,0.265832990407944,0.943228006362915,0.264203011989594,0.945088982582092,0.254970014095306,0.936278998851776,0.24329200387001,0.934394001960754,0.256159991025925,0.945088982582092,0.254970014095306,0.948269009590149,0.242768004536629,0.901510000228882,0.241877004504204,0.902315974235535,0.252992004156113,0.913191974163055,0.255116999149323,0.913482010364532,0.242786005139351,0.902315974235535,0.252992004156113,0.902077972888947,0.261290997266769,0.912239015102386,0.264405012130737,0.913191974163055,0.255116999149323,0.913191974163055,0.255116999149323,0.912239015102386,0.264405012130737,0.922860980033875,0.266014993190765,0.923974990844727,0.256233006715775,0.913482010364532,0.242786005139351,0.913191974163055,0.255116999149323,0.923974990844727,0.256233006715775,0.92510598897934,0.243257001042366,0.901510000228882,0.241877004504204,0.889289975166321,0.240529000759125,0.891617000102997,0.250041991472244,0.902315974235535,0.252992004156113,0.889289975166321,0.240529000759125,0.879730999469757,0.2394759953022,0.883386015892029,0.24770000576973,0.891617000102997, +0.250041991472244,0.891617000102997,0.250041991472244,0.883386015892029,0.24770000576973,0.887116014957428,0.25305500626564,0.893013000488281,0.2569600045681,0.902315974235535,0.252992004156113,0.891617000102997,0.250041991472244,0.893013000488281,0.2569600045681,0.902077972888947,0.261290997266769,0.897266983985901,0.217198997735977,0.885435998439789,0.218158006668091,0.886389970779419,0.229647994041443,0.89859801530838,0.229762002825737,0.885435998439789,0.218158006668091,0.876936018466949,0.218869000673294,0.877314984798431,0.229543998837471,0.886389970779419,0.229647994041443,0.886389970779419,0.229647994041443,0.877314984798431,0.229543998837471,0.879730999469757,0.2394759953022,0.889289975166321,0.240529000759125,0.89859801530838,0.229762002825737,0.886389970779419,0.229647994041443,0.889289975166321,0.240529000759125,0.901510000228882,0.241877004504204,0.897266983985901,0.217198997735977,0.901201009750366,0.20473800599575,0.888952016830444,0.206816002726555,0.885435998439789,0.218158006668091,0.901201009750366,0.20473800599575,0.906445026397705,0.19370000064373,0.894195973873138,0.196571007370949,0.888952016830444,0.206816002726555,0.888952016830444,0.206816002726555,0.894195973873138,0.196571007370949,0.883867979049683,0.198826998472214,0.879391014575958,0.208416000008583,0.885435998439789,0.218158006668091,0.888952016830444,0.206816002726555,0.879391014575958,0.208416000008583,0.876936018466949,0.218869000673294,0.906445026397705,0.19370000064373,0.909042000770569,0.185400992631912,0.898424983024597,0.188369005918503,0.894195973873138,0.196571007370949,0.909042000770569,0.185400992631912,0.909896016120911,0.179832994937897,0.901054978370667,0.182635992765427,0.898424983024597,0.188369005918503,0.898424983024597,0.188369005918503,0.901054978370667,0.182635992765427,0.894481003284454,0.185751006007195,0.889555990695953,0.190742000937462,0.894195973873138,0.196571007370949,0.898424983024597,0.188369005918503,0.889555990695953,0.190742000937462,0.883867979049683,0.198826998472214,0.960591971874237,0.964078009128571, +0.964021980762482,0.95687597990036,0.958966016769409,0.953953981399536,0.955735981464386,0.96086198091507,0.967127978801727,0.722227990627289,0.96483701467514,0.71499502658844,0.960026025772095,0.718180000782013,0.962562024593353,0.726276993751526,0.943243026733398,0.269479006528854,0.943228006362915,0.264203011989594,0.933304011821747,0.265832990407944,0.933192014694214,0.271333992481232,0.912239015102386,0.264405012130737,0.911749005317688,0.269829988479614,0.922396004199982,0.272583991289139,0.922860980033875,0.266014993190765,0.902077972888947,0.261290997266769,0.901636004447937,0.266306012868881,0.911749005317688,0.269829988479614,0.912239015102386,0.264405012130737,0.893013000488281,0.2569600045681,0.892592012882233,0.261245012283325,0.901636004447937,0.266306012868881,0.902077972888947,0.261290997266769,0.962562024593353,0.726276993751526,0.965121984481812,0.734206020832062,0.969554007053375,0.729336977005005,0.967127978801727,0.722227990627289,0.978734016418457,0.750208020210266,0.97528600692749,0.743070006370544,0.97018700838089,0.749040007591248,0.972292006015778,0.755928993225098,0.887116014957428,0.25305500626564,0.884895980358124,0.255048990249634,0.892592012882233,0.261245012283325,0.893013000488281,0.2569600045681,0.883386015892029,0.24770000576973,0.878829002380371,0.248124003410339,0.884895980358124,0.255048990249634,0.887116014957428,0.25305500626564,0.96773099899292,0.741796016693115,0.97018700838089,0.749040007591248,0.97528600692749,0.743070006370544,0.972249984741211,0.736198008060455,0.986522972583771,0.767206013202667,0.9825080037117,0.758092999458313,0.973869979381561,0.763173997402191,0.974747002124786,0.771484971046448,0.879730999469757,0.2394759953022,0.874535024166107,0.239949002861977,0.878829002380371,0.248124003410339,0.883386015892029,0.24770000576973,0.877314984798431,0.229543998837471,0.872157990932465,0.230004996061325,0.874535024166107,0.239949002861977,0.879730999469757,0.2394759953022,0.972292006015778,0.755928993225098,0.973869979381561,0.763173997402191,0.9825080037117,0.758092999458313, +0.978734016418457,0.750208020210266,0.992631018161774,0.786566972732544,0.990118026733398,0.776910006999969,0.97488397359848,0.780372977256775,0.974241971969604,0.789350986480713,0.876936018466949,0.218869000673294,0.871926009654999,0.219200998544693,0.872157990932465,0.230004996061325,0.877314984798431,0.229543998837471,0.879391014575958,0.208416000008583,0.874068975448608,0.208443000912666,0.871926009654999,0.219200998544693,0.876936018466949,0.218869000673294,0.974747002124786,0.771484971046448,0.97488397359848,0.780372977256775,0.990118026733398,0.776910006999969,0.986522972583771,0.767206013202667,0.973020970821381,0.798205018043518,0.971423983573914,0.806720972061157,0.994710028171539,0.805226981639862,0.994136989116669,0.796048998832703,0.883867979049683,0.198826998472214,0.878423988819122,0.198434993624687,0.874068975448608,0.208443000912666,0.879391014575958,0.208416000008583,0.889555990695953,0.190742000937462,0.88483202457428,0.18987600505352,0.878423988819122,0.198434993624687,0.883867979049683,0.198826998472214,0.974241971969604,0.789350986480713,0.973020970821381,0.798205018043518,0.994136989116669,0.796048998832703,0.992631018161774,0.786566972732544,0.994599997997284,0.814451992511749,0.994710028171539,0.805226981639862,0.971423983573914,0.806720972061157,0.969743013381958,0.814809024333954,0.894481003284454,0.185751006007195,0.892554998397827,0.183094993233681,0.88483202457428,0.18987600505352,0.889555990695953,0.190742000937462,0.901054978370667,0.182635992765427,0.900857985019684,0.17841799557209,0.892554998397827,0.183094993233681,0.894481003284454,0.185751006007195,0.969743013381958,0.814809024333954,0.968271970748901,0.822377979755402,0.994054973125458,0.824078023433685,0.994599997997284,0.814451992511749,0.993427991867065,0.833142995834351,0.994054973125458,0.824078023433685,0.968271970748901,0.822377979755402,0.967087984085083,0.82965499162674,0.909896016120911,0.179832994937897,0.909509003162384,0.175499007105827,0.900857985019684,0.17841799557209,0.901054978370667,0.182635992765427,0.918411016464233, +0.178305000066757,0.918280005455017,0.173991993069649,0.909509003162384,0.175499007105827,0.909896016120911,0.179832994937897,0.967087984085083,0.82965499162674,0.966265022754669,0.83686900138855,0.993067979812622,0.840690016746521,0.993427991867065,0.833142995834351,0.992905974388123,0.84750497341156,0.993067979812622,0.840690016746521,0.966265022754669,0.83686900138855,0.966105997562408,0.84417998790741,0.92720901966095,0.178101003170013,0.927296996116638,0.173847004771233,0.918280005455017,0.173991993069649,0.918411016464233,0.178305000066757,0.936900019645691,0.179270997643471,0.936689019203186,0.17501500248909,0.927296996116638,0.173847004771233,0.92720901966095,0.178101003170013,0.992870986461639,0.854376018047333,0.992905974388123,0.84750497341156,0.966105997562408,0.84417998790741,0.966915011405945,0.851746022701263,0.993113994598389,0.869934022426605,0.99294501543045,0.861715018749237,0.96884697675705,0.859586000442505,0.972063004970551,0.867716014385223,0.946779012680054,0.181319996714592,0.946776986122131,0.177491992712021,0.936689019203186,0.17501500248909,0.936900019645691,0.179270997643471,0.956140995025635,0.183753997087479,0.957881987094879,0.181273996829987,0.946776986122131,0.177491992712021,0.946779012680054,0.181319996714592,0.966915011405945,0.851746022701263,0.96884697675705,0.859586000442505,0.99294501543045,0.861715018749237,0.992870986461639,0.854376018047333,0.993004024028778,0.888034999370575,0.993193984031677,0.878789007663727,0.975468993186951,0.876118004322052,0.977976024150848,0.884772002696991,0.96415501832962,0.188669994473457,0.968249976634979,0.186938002705574,0.957881987094879,0.181273996829987,0.956140995025635,0.183753997087479,0.971283972263336,0.196827992796898,0.976123988628387,0.19505999982357,0.968249976634979,0.186938002705574,0.96415501832962,0.188669994473457,0.972063004970551,0.867716014385223,0.975468993186951,0.876118004322052,0.993193984031677,0.878789007663727,0.993113994598389,0.869934022426605,0.979512989521027,0.893371999263763,0.980011999607086,0.901610016822815, +0.990710973739624,0.905395984649658,0.992268025875092,0.89709597826004,0.977019011974335,0.206098005175591,0.981635987758636,0.20448100566864,0.976123988628387,0.19505999982357,0.971283972263336,0.196827992796898,0.980849027633667,0.214350000023842,0.984917998313904,0.214044004678726,0.981635987758636,0.20448100566864,0.977019011974335,0.206098005175591,0.977976024150848,0.884772002696991,0.979512989521027,0.893371999263763,0.992268025875092,0.89709597826004,0.993004024028778,0.888034999370575,0.979519009590149,0.90920102596283,0.988439977169037,0.913001000881195,0.990710973739624,0.905395984649658,0.980011999607086,0.901610016822815,0.980732023715973,0.222473993897438,0.985956013202667,0.223210006952286,0.984917998313904,0.214044004678726,0.980849027633667,0.214350000023842,0.965978980064392,0.250885993242264,0.970629990100861,0.251690000295639,0.98164302110672,0.240638002753258,0.980108022689819,0.239545002579689,0.975609004497528,0.923232018947601,0.970273017883301,0.932816028594971,0.976391971111298,0.936085999011993,0.981683015823364,0.927330017089844,0.964021980762482,0.95687597990036,0.967258989810944,0.950902998447418,0.962000012397766,0.947951972484589,0.958966016769409,0.953953981399536,0.959339022636414,0.257773995399475,0.96041601896286,0.260895997285843,0.970629990100861,0.251690000295639,0.965978980064392,0.250885993242264,0.952291011810303,0.261469006538391,0.951803028583527,0.266413003206253,0.96041601896286,0.260895997285843,0.959339022636414,0.257773995399475,0.965537011623383,0.94139301776886,0.962000012397766,0.947951972484589,0.967258989810944,0.950902998447418,0.971110999584198,0.944518983364105,0.943243026733398,0.269479006528854,0.951803028583527,0.266413003206253,0.952291011810303,0.261469006538391,0.943228006362915,0.264203011989594,0.978680014610291,0.231075003743172,0.984737992286682,0.231439992785454,0.985956013202667,0.223210006952286,0.980732023715973,0.222473993897438,0.82837700843811,0.973748981952667,0.835268020629883,0.968931972980499,0.833582997322083,0.965324997901917,0.825444996356964, +0.968007028102875,0.345802009105682,0.215377002954483,0.359062999486923,0.195676997303963,0.348818004131317,0.186230003833771,0.329970002174377,0.200247004628181,0.525236487388611,0.399618685245514,0.518333554267883,0.414994269609451,0.513452768325806,0.41180419921875,0.518907248973846,0.396548092365265,0.978080987930298,0.915861010551453,0.985565006732941,0.919973015785217,0.988439977169037,0.913001000881195,0.979519009590149,0.90920102596283,0.560405611991882,0.351062685251236,0.552321135997772,0.371177792549133,0.546518683433533,0.368551820516586,0.555705964565277,0.348205715417862 + } + UVIndex: *11977 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,18,17,16,19,22,21,20,23,26,25,24,27,30,29,28,31,34,33,32,35,37,36,38,41,40,39,42,45,44,43,46,49,48,47,50,53,52,51,54,57,56,55,58,61,60,59,62,65,64,63,66,69,68,67,70,72,71,73,75,74,76,79,78,77,80,83,82,81,84,87,86,85,88,91,90,89,92,94,93,95,97,96,98,101,100,99,102,105,104,103,106,109,108,107,110,113,112,111,114,117,116,115,118,121,120,119,122,124,123,125,127,126,128,130,129,131,133,132,134,136,135,137,139,138,140,142,141,143,145,144,146,148,147,149,152,151,150,153,156,155,154,157,160,159,158,161,164,163,162,165,168,167,166,169,172,171,170,173,176,175,174,177,180,179,178,181,184,183,182,185,188,187,186,189,192,191,190,193,196,195,194,197,200,199,198,201,204,203,202,205,208,207,206,209,212,211,210,213,216,215,214,217,220,219,218,221,224,223,222,225,228,227,226,229,232,231,230,233,236,235,234,237,240,239,238,241,244,243,242,245,248,247,246,249,252,251,250,253,256,255,254,257,260,259,258,261,264,263,262,265,268,267,266,269,272,271,270,273,276,275,274,277,280,279,278,281,284,283,282,285,288,287,286,289,292,291,290,293,296,295,294,297,300,299,298,301,304,303,302,305,308,307,306,309,312,311,310,313,316,315,314,317,320,319,318,321,324,323,322,325,328,327,326,329,332,331,330,333,336,335,334,337,340,339,338,341,344,343,342,345,348,347,346,349,352,351,350,353,356,355,354,357,360,359,358,361,364,363,362,365,368,367,366,369,372,371,370,373,376,375,374,377,380,379,378,381,384,383,382,385,388,387,386,389,392,391,390,393,396,395,394,397,400,399,398,401,404,403,402,405,408,407,406,409,412,411,410,413,416,415,414,417,420,419,418,421,424,423,422,425,428,427,426,429,432,431,430,433,436,435,434,437,440,439,438,441,444,443,442,445,448,447,446,449,452,451,450,453,456,455,454,457,460,459,458,461,464,463,462,465,468,467,466,469,472,471,470,473,476,475,474,477,480,479,478,481,484,483,482,485,488,487,486,489,492,491,490,493,496,495,494,497,500,499,498,501,504,503,502,505,508,507,506,509,512,511,510,513,516,515,514,517,520,519,518,521,524,523,522,525,528,527,526,529,532,531,530,533, +536,535,534,537,540,539,538,541,544,543,542,545,548,547,546,549,552,551,550,553,556,555,554,557,560,559,558,561,564,563,562,565,568,567,566,569,572,571,570,573,576,575,574,577,580,579,578,581,584,583,582,585,588,587,586,589,592,591,590,593,596,595,594,597,600,599,598,601,604,603,602,605,608,607,606,609,612,611,610,613,616,615,614,617,620,619,618,621,624,623,622,625,628,627,626,629,632,631,630,633,636,635,634,637,640,639,638,641,644,643,642,645,648,647,646,649,652,651,650,653,656,655,654,657,660,659,658,661,664,663,662,665,668,667,666,669,672,671,670,673,676,675,674,677,680,679,678,681,684,683,682,685,688,687,686,689,692,691,690,693,696,695,694,697,700,699,698,701,704,703,702,705,708,707,706,709,712,711,710,713,716,715,714,717,720,719,718,721,724,723,722,725,728,727,726,729,732,731,730,733,736,735,734,737,740,739,738,741,744,743,742,745,748,747,746,749,752,751,750,753,756,755,754,757,760,759,758,761,764,763,762,765,768,767,766,769,772,771,770,773,776,775,774,777,780,779,778,781,783,782,784,787,786,785,788,791,790,789,792,795,794,793,796,799,798,797,800,803,802,801,804,807,806,805,808,811,810,809,812,815,814,813,816,819,818,817,820,823,822,821,824,827,826,825,828,831,830,829,832,835,834,833,836,839,838,837,840,843,842,841,844,847,846,845,848,851,850,849,852,855,854,853,856,859,858,857,860,863,862,861,864,867,866,865,868,871,870,869,872,875,874,873,876,879,878,877,880,883,882,881,884,887,886,885,888,891,890,889,892,895,894,893,896,899,898,897,900,903,902,901,904,907,906,905,908,911,910,909,912,915,914,913,916,919,918,917,920,923,922,921,924,927,926,925,928,931,930,929,932,935,934,933,936,939,938,937,940,943,942,941,944,947,946,945,948,951,950,949,952,955,954,953,956,959,958,957,960,963,962,961,964,967,966,965,968,970,969,971,974,973,972,975,978,977,976,979,982,981,980,983,986,985,984,987,990,989,988,991,994,993,992,995,998,997,996,999,1002,1001,1000,1003,1006,1005,1004,1007,1010,1009,1008,1011,1014,1013,1012,1015,1018,1017,1016,1019,1022,1021,1020,1023,1026,1025,1024,1027,1030,1029,1028,1031,1034,1033,1032,1035,1038, +1037,1036,1039,1042,1041,1040,1043,1046,1045,1044,1047,1050,1049,1048,1051,1054,1053,1052,1055,1058,1057,1056,1059,1062,1061,1060,1063,1066,1065,1064,1067,1070,1069,1068,1071,1074,1073,1072,1075,1078,1077,1076,1079,1082,1081,1080,1083,1086,1085,1084,1087,1090,1089,1088,1091,1094,1093,1092,1095,1098,1097,1096,1099,1102,1101,1100,1103,1106,1105,1104,1107,1110,1109,1108,1111,1114,1113,1112,1115,1118,1117,1116,1119,1122,1121,1120,1123,1126,1125,1124,1127,1130,1129,1128,1131,1134,1133,1132,1135,1138,1137,1136,1139,1142,1141,1140,1143,1146,1145,1144,1147,1150,1149,1148,1151,1154,1153,1152,1155,1158,1157,1156,1159,1162,1161,1160,1163,1166,1165,1164,1167,1170,1169,1168,1171,1174,1173,1172,1175,1178,1177,1176,1179,1182,1181,1180,1183,1186,1185,1184,1187,1190,1189,1188,1191,1194,1193,1192,1195,1198,1197,1196,1199,1202,1201,1200,1203,1206,1205,1204,1207,1210,1209,1208,1211,1214,1213,1212,1215,1218,1217,1216,1219,1222,1221,1220,1223,1226,1225,1224,1227,1230,1229,1228,1231,1234,1233,1232,1235,1238,1237,1236,1239,1242,1241,1240,1243,1246,1245,1244,1247,1250,1249,1248,1251,1254,1253,1252,1255,1258,1257,1256,1259,1262,1261,1260,1263,1266,1265,1264,1267,1270,1269,1268,1271,1274,1273,1272,1275,1278,1277,1276,1279,1282,1281,1280,1283,1286,1285,1284,1287,1290,1289,1288,1291,1294,1293,1292,1295,1298,1297,1296,1299,1302,1301,1300,1303,1306,1305,1304,1307,1310,1309,1308,1311,1314,1313,1312,1315,1318,1317,1316,1319,1322,1321,1320,1323,1326,1325,1324,1327,1330,1329,1328,1331,1334,1333,1332,1335,1338,1337,1336,1339,1342,1341,1340,1343,1346,1345,1344,1347,1350,1349,1348,1351,1354,1353,1352,1355,1358,1357,1356,1359,1362,1361,1360,1363,1366,1365,1364,1367,1370,1369,1368,1371,1374,1373,1372,1375,1378,1377,1376,1379,1382,1381,1380,1383,1386,1385,1384,1387,1390,1389,1388,1391,1394,1393,1392,1395,1398,1397,1396,1399,1402,1401,1400,1403,1406,1405,1404,1407,1410,1409,1408,1411,1414,1413,1412,1415,1418,1417,1416,1419,1422,1421,1420,1423,1426,1425,1424,1427,1430,1429,1428,1431,1434,1433,1432,1435,1438,1437,1436,1439,1442,1441,1440,1443,1446,1445,1444, +1447,1450,1449,1448,1451,1454,1453,1452,1455,1458,1457,1456,1459,1462,1461,1460,1463,1466,1465,1464,1467,1470,1469,1468,1471,1474,1473,1472,1475,1478,1477,1476,1479,1482,1481,1480,1483,1486,1485,1484,1487,1490,1489,1488,1491,1494,1493,1492,1495,1498,1497,1496,1499,1502,1501,1500,1503,1506,1505,1504,1507,1510,1509,1508,1511,1514,1513,1512,1515,1518,1517,1516,1519,1522,1521,1520,1523,1526,1525,1524,1527,1530,1529,1528,1531,1534,1533,1532,1535,1538,1537,1536,1539,1542,1541,1540,1543,1546,1545,1544,1547,1550,1549,1548,1551,1554,1553,1552,1555,1558,1557,1556,1559,1562,1561,1560,1563,1566,1565,1564,1567,1570,1569,1568,1571,1574,1573,1572,1575,1578,1577,1576,1579,1582,1581,1580,1583,1586,1585,1584,1587,1590,1589,1588,1591,1594,1593,1592,1595,1598,1597,1596,1599,1602,1601,1600,1603,1606,1605,1604,1607,1610,1609,1608,1611,1614,1613,1612,1615,1618,1617,1616,1619,1622,1621,1620,1623,1626,1625,1624,1627,1630,1629,1628,1631,1634,1633,1632,1635,1638,1637,1636,1639,1642,1641,1640,1643,1646,1645,1644,1647,1650,1649,1648,1651,1654,1653,1652,1655,1658,1657,1656,1659,1662,1661,1660,1663,1666,1665,1664,1667,1670,1669,1668,1671,1674,1673,1672,1675,1678,1677,1676,1679,1682,1681,1680,1683,1686,1685,1684,1687,1690,1689,1688,1691,1694,1693,1692,1695,1698,1697,1696,1699,1702,1701,1700,1703,1706,1705,1704,1707,1710,1709,1708,1711,1714,1713,1712,1715,1718,1717,1716,1719,1722,1721,1720,1723,1726,1725,1724,1727,1730,1729,1728,1731,1734,1733,1732,1735,1738,1737,1736,1739,1742,1741,1740,1743,1746,1745,1744,1747,1750,1749,1748,1751,1754,1753,1752,1755,1758,1757,1756,1759,1762,1761,1760,1763,1766,1765,1764,1767,1770,1769,1768,1771,1774,1773,1772,1775,1778,1777,1776,1779,1782,1781,1780,1783,1786,1785,1784,1787,1790,1789,1788,1791,1794,1793,1792,1795,1798,1797,1796,1799,1802,1801,1800,1803,1806,1805,1804,1807,1810,1809,1808,1811,1814,1813,1812,1815,1818,1817,1816,1819,1822,1821,1820,1823,1826,1825,1824,1827,1830,1829,1828,1831,1834,1833,1832,1835,1838,1837,1836,1839,1842,1841,1840,1843,1846,1845,1844,1847,1850,1849,1848,1851,1854,1853,1852,1855,1858, +1857,1856,1859,1862,1861,1860,1863,1866,1865,1864,1867,1871,1870,1869,1868,1872,1875,1874,1873,1876,1878,1877,1879,1882,1881,1880,1883,1886,1885,1884,1887,1890,1889,1888,1891,1894,1893,1892,1895,1898,1897,1896,1899,1902,1901,1900,1903,1906,1905,1904,1907,1910,1909,1908,1911,1914,1913,1912,1915,1918,1917,1916,1919,1922,1921,1920,1923,1926,1925,1924,1927,1930,1929,1928,1931,1933,1932,1934,1937,1936,1935,1938,1941,1940,1939,1942,1944,1943,1945,1948,1947,1946,1949,1952,1951,1950,1953,1956,1955,1954,1957,1960,1959,1958,1961,1964,1963,1962,1965,1968,1967,1966,1969,1972,1971,1970,1973,1976,1975,1974,1977,1980,1979,1978,1981,1984,1983,1982,1985,1988,1987,1986,1989,1992,1991,1990,1993,1996,1995,1994,1997,2000,1999,1998,2001,2004,2003,2002,2005,2008,2007,2006,2009,2012,2011,2010,2013,2016,2015,2014,2017,2020,2019,2018,2021,2024,2023,2022,2025,2028,2027,2026,2029,2032,2031,2030,2033,2036,2035,2034,2037,2040,2039,2038,2041,2044,2043,2042,2045,2048,2047,2046,2049,2051,2050,2052,2055,2054,2053,2056,2059,2058,2057,2060,2062,2061,2063,2066,2065,2064,2067,2069,2068,2070,2073,2072,2071,2074,2077,2076,2075,2078,2081,2080,2079,2082,2085,2084,2083,2086,2089,2088,2087,2090,2093,2092,2091,2094,2097,2096,2095,2098,2101,2100,2099,2102,2105,2104,2103,2106,2109,2108,2107,2110,2113,2112,2111,2114,2116,2115,2117,2120,2119,2118,2121,2124,2123,2122,2125,2127,2126,2128,2130,2129,2131,2133,2132,2134,2136,2135,2137,2139,2138,2140,2143,2142,2141,2144,2147,2146,2145,2148,2151,2150,2149,2152,2155,2154,2153,2156,2159,2158,2157,2160,2162,2161,2163,2166,2165,2164,2167,2170,2169,2168,2171,2173,2172,2174,2177,2176,2175,2178,2181,2180,2179,2182,2185,2184,2183,2186,2189,2188,2187,2190,2193,2192,2191,2194,2197,2196,2195,2198,2201,2200,2199,2202,2205,2204,2203,2206,2209,2208,2207,2210,2213,2212,2211,2214,2217,2216,2215,2218,2221,2220,2219,2222,2225,2224,2223,2226,2229,2228,2227,2230,2233,2232,2231,2234,2237,2236,2235,2238,2241,2240,2239,2242,2245,2244,2243,2246,2249,2248,2247,2250,2253,2252,2251,2254,2257,2256,2255,2258,2261,2260,2259,2262,2265,2264,2263,2266, +2269,2268,2267,2270,2273,2272,2271,2274,2277,2276,2275,2278,2281,2280,2279,2282,2285,2284,2283,2286,2289,2288,2287,2290,2293,2292,2291,2294,2297,2296,2295,2298,2301,2300,2299,2302,2305,2304,2303,2306,2309,2308,2307,2310,2313,2312,2311,2314,2317,2316,2315,2318,2321,2320,2319,2322,2325,2324,2323,2326,2329,2328,2327,2330,2333,2332,2331,2334,2337,2336,2335,2338,2341,2340,2339,2342,2345,2344,2343,2346,2349,2348,2347,2350,2353,2352,2351,2354,2357,2356,2355,2358,2361,2360,2359,2362,2365,2364,2363,2366,2369,2368,2367,2370,2373,2372,2371,2374,2377,2376,2375,2378,2381,2380,2379,2382,2385,2384,2383,2386,2389,2388,2387,2390,2393,2392,2391,2394,2397,2396,2395,2398,2401,2400,2399,2402,2405,2404,2403,2406,2409,2408,2407,2410,2413,2412,2411,2414,2417,2416,2415,2418,2421,2420,2419,2422,2425,2424,2423,2426,2429,2428,2427,2430,2433,2432,2431,2434,2437,2436,2435,2438,2441,2440,2439,2442,2445,2444,2443,2446,2449,2448,2447,2450,2453,2452,2451,2454,2457,2456,2455,2458,2461,2460,2459,2462,2465,2464,2463,2466,2469,2468,2467,2470,2473,2472,2471,2474,2477,2476,2475,2478,2481,2480,2479,2482,2485,2484,2483,2486,2489,2488,2487,2490,2493,2492,2491,2494,2497,2496,2495,2498,2501,2500,2499,2502,2505,2504,2503,2506,2509,2508,2507,2510,2513,2512,2511,2514,2517,2516,2515,2518,2521,2520,2519,2522,2525,2524,2523,2526,2529,2528,2527,2530,2533,2532,2531,2534,2537,2536,2535,2538,2541,2540,2539,2542,2545,2544,2543,2546,2549,2548,2547,2550,2553,2552,2551,2554,2557,2556,2555,2558,2561,2560,2559,2562,2565,2564,2563,2566,2569,2568,2567,2570,2573,2572,2571,2574,2577,2576,2575,2578,2581,2580,2579,2582,2585,2584,2583,2586,2589,2588,2587,2590,2593,2592,2591,2594,2597,2596,2595,2598,2601,2600,2599,2602,2605,2604,2603,2606,2609,2608,2607,2610,2613,2612,2611,2614,2617,2616,2615,2618,2621,2620,2619,2622,2625,2624,2623,2626,2629,2628,2627,2630,2633,2632,2631,2634,2637,2636,2635,2638,2641,2640,2639,2642,2645,2644,2643,2646,2649,2648,2647,2650,2653,2652,2651,2654,2657,2656,2655,2658,2661,2660,2659,2662,2665,2664,2663,2666,2669,2668,2667,2670,2673,2672,2671,2674,2677,2676, +2675,2678,2681,2680,2679,2682,2685,2684,2683,2686,2689,2688,2687,2690,2693,2692,2691,2694,2697,2696,2695,2698,2701,2700,2699,2702,2705,2704,2703,2706,2709,2708,2707,2710,2713,2712,2711,2714,2717,2716,2715,2718,2721,2720,2719,2722,2724,2723,2725,2728,2727,2726,2729,2732,2731,2730,2733,2736,2735,2734,2737,2740,2739,2738,2741,2744,2743,2742,2745,2748,2747,2746,2749,2752,2751,2750,2753,2756,2755,2754,2757,2759,2758,2760,2763,2762,2761,2764,2766,2765,2767,2770,2769,2768,2771,2773,2772,2774,2777,2776,2775,2778,2781,2780,2779,2782,2785,2784,2783,2786,2789,2788,2787,2790,2793,2792,2791,2794,2797,2796,2795,2798,2801,2800,2799,2802,2805,2804,2803,2806,2809,2808,2807,2810,2813,2812,2811,2814,2817,2816,2815,2818,2821,2820,2819,2822,2825,2824,2823,2826,2829,2828,2827,2830,2833,2832,2831,2834,2837,2836,2835,2838,2841,2840,2839,2842,2845,2844,2843,2846,2849,2848,2847,2850,2853,2852,2851,2854,2857,2856,2855,2858,2861,2860,2859,2862,2865,2864,2863,2866,2869,2868,2867,2870,2873,2872,2871,2874,2876,2875,2877,2879,2878,2880,2882,2881,2883,2886,2885,2884,2887,2890,2889,2888,2891,2894,2893,2892,2895,2898,2897,2896,2899,2902,2901,2900,2903,2906,2905,2904,2907,2910,2909,2908,2911,2914,2913,2912,2915,2917,2916,2918,2921,2920,2919,2922,2925,2924,2923,2926,2928,2927,2929,2933,2932,2931,2930,2934,2938,2937,2936,2935,2939,2944,2943,2942,2941,2940,2945,2948,2947,2946,2949,2952,2951,2950,2953,2956,2955,2954,2957,2960,2959,2958,2961,2964,2963,2962,2965,2968,2967,2966,2969,2972,2971,2970,2973,2976,2975,2974,2977,2980,2979,2978,2981,2984,2983,2982,2985,2988,2987,2986,2989,2992,2991,2990,2993,2996,2995,2994,2997,3000,2999,2998,3001,3004,3003,3002,3005,3008,3007,3006,3009,3012,3011,3010,3013,3016,3015,3014,3017,3020,3019,3018,3021,3024,3023,3022,3025,3028,3027,3026,3029,3032,3031,3030,3033,3036,3035,3034,3037,3040,3039,3038,3041,3044,3043,3042,3045,3048,3047,3046,3049,3052,3051,3050,3053,3056,3055,3054,3057,3060,3059,3058,3061,3064,3063,3062,3065,3068,3067,3066,3069,3072,3071,3070,3073,3076,3075,3074,3077,3080,3079,3078,3081,3084,3083,3082,3085,3088, +3087,3086,3089,3092,3091,3090,3093,3096,3095,3094,3097,3100,3099,3098,3101,3104,3103,3102,3105,3108,3107,3106,3109,3112,3111,3110,3113,3116,3115,3114,3117,3120,3119,3118,3121,3124,3123,3122,3125,3128,3127,3126,3129,3132,3131,3130,3133,3136,3135,3134,3137,3140,3139,3138,3141,3144,3143,3142,3145,3148,3147,3146,3149,3152,3151,3150,3153,3156,3155,3154,3157,3160,3159,3158,3161,3164,3163,3162,3165,3168,3167,3166,3169,3172,3171,3170,3173,3176,3175,3174,3177,3180,3179,3178,3181,3184,3183,3182,3185,3188,3187,3186,3189,3192,3191,3190,3193,3196,3195,3194,3197,3200,3199,3198,3201,3204,3203,3202,3205,3208,3207,3206,3209,3212,3211,3210,3213,3216,3215,3214,3217,3220,3219,3218,3221,3224,3223,3222,3225,3228,3227,3226,3229,3232,3231,3230,3233,3236,3235,3234,3237,3240,3239,3238,3241,3244,3243,3242,3245,3248,3247,3246,3249,3252,3251,3250,3253,3256,3255,3254,3257,3260,3259,3258,3261,3264,3263,3262,3265,3268,3267,3266,3269,3272,3271,3270,3273,3276,3275,3274,3277,3279,3278,3280,3282,3281,3283,3285,3284,3286,3288,3287,3289,3291,3290,3292,3294,3293,3295,3298,3297,3296,3299,3302,3301,3300,3303,3306,3305,3304,3307,3310,3309,3308,3311,3314,3313,3312,3315,3318,3317,3316,3319,3321,3320,3322,3325,3324,3323,3326,3329,3328,3327,3330,3333,3332,3331,3334,3337,3336,3335,3338,3341,3340,3339,3342,3345,3344,3343,3346,3349,3348,3347,3350,3353,3352,3351,3354,3356,3355,3357,3359,3358,3360,3362,3361,3363,3366,3365,3364,3367,3370,3369,3368,3371,3374,3373,3372,3375,3378,3377,3376,3379,3381,3380,3382,3385,3384,3383,3386,3389,3388,3387,3390,3393,3392,3391,3394,3397,3396,3395,3398,3401,3400,3399,3402,3405,3404,3403,3406,3409,3408,3407,3410,3412,3411,3413,3415,3414,3416,3418,3417,3419,3421,3420,3422,3424,3423,3425,3428,3427,3426,3429,3431,3430,3432,3434,3433,3435,3437,3436,3438,3440,3439,3441,3444,3443,3442,3445,3448,3447,3446,3449,3452,3451,3450,3453,3456,3455,3454,3457,3460,3459,3458,3461,3464,3463,3462,3465,3468,3467,3466,3469,3472,3471,3470,3473,3476,3475,3474,3477,3480,3479,3478,3481,3484,3483,3482,3485,3488,3487,3486,3489,3492,3491,3490,3493,3496,3495,3494, +3497,3500,3499,3498,3501,3504,3503,3502,3505,3508,3507,3506,3509,3512,3511,3510,3513,3516,3515,3514,3517,3520,3519,3518,3521,3524,3523,3522,3525,3528,3527,3526,3529,3532,3531,3530,3533,3536,3535,3534,3537,3540,3539,3538,3541,3544,3543,3542,3545,3548,3547,3546,3549,3552,3551,3550,3553,3556,3555,3554,3557,3560,3559,3558,3561,3564,3563,3562,3565,3568,3567,3566,3569,3572,3571,3570,3573,3576,3575,3574,3577,3580,3579,3578,3581,3584,3583,3582,3585,3588,3587,3586,3589,3592,3591,3590,3593,3596,3595,3594,3597,3600,3599,3598,3601,3604,3603,3602,3605,3608,3607,3606,3609,3612,3611,3610,3613,3616,3615,3614,3617,3620,3619,3618,3621,3624,3623,3622,3625,3628,3627,3626,3629,3632,3631,3630,3633,3636,3635,3634,3637,3640,3639,3638,3641,3644,3643,3642,3645,3648,3647,3646,3649,3652,3651,3650,3653,3656,3655,3654,3657,3660,3659,3658,3661,3664,3663,3662,3665,3668,3667,3666,3669,3672,3671,3670,3673,3676,3675,3674,3677,3680,3679,3678,3681,3684,3683,3682,3685,3688,3687,3686,3689,3692,3691,3690,3693,3696,3695,3694,3697,3700,3699,3698,3701,3704,3703,3702,3705,3708,3707,3706,3709,3712,3711,3710,3713,3716,3715,3714,3717,3720,3719,3718,3721,3724,3723,3722,3725,3728,3727,3726,3729,3732,3731,3730,3733,3736,3735,3734,3737,3740,3739,3738,3741,3744,3743,3742,3745,3748,3747,3746,3749,3752,3751,3750,3753,3756,3755,3754,3757,3760,3759,3758,3761,3764,3763,3762,3765,3768,3767,3766,3769,3772,3771,3770,3773,3776,3775,3774,3777,3780,3779,3778,3781,3784,3783,3782,3785,3788,3787,3786,3789,3792,3791,3790,3793,3796,3795,3794,3797,3800,3799,3798,3801,3804,3803,3802,3805,3808,3807,3806,3809,3812,3811,3810,3813,3816,3815,3814,3817,3820,3819,3818,3821,3824,3823,3822,3825,3828,3827,3826,3829,3832,3831,3830,3833,3836,3835,3834,3837,3840,3839,3838,3841,3844,3843,3842,3845,3848,3847,3846,3849,3852,3851,3850,3853,3856,3855,3854,3857,3860,3859,3858,3861,3864,3863,3862,3865,3868,3867,3866,3869,3872,3871,3870,3873,3876,3875,3874,3877,3880,3879,3878,3881,3884,3883,3882,3885,3888,3887,3886,3889,3892,3891,3890,3893,3896,3895,3894,3897,3900,3899,3898,3901,3904,3903,3902,3905,3908, +3907,3906,3909,3912,3911,3910,3913,3916,3915,3914,3917,3920,3919,3918,3921,3924,3923,3922,3925,3928,3927,3926,3929,3932,3931,3930,3933,3936,3935,3934,3937,3940,3939,3938,3941,3944,3943,3942,3945,3948,3947,3946,3949,3952,3951,3950,3953,3956,3955,3954,3957,3960,3959,3958,3961,3964,3963,3962,3965,3968,3967,3966,3969,3972,3971,3970,3973,3976,3975,3974,3977,3980,3979,3978,3981,3984,3983,3982,3985,3988,3987,3986,3989,3992,3991,3990,3993,3996,3995,3994,3997,4000,3999,3998,4001,4004,4003,4002,4005,4008,4007,4006,4009,4012,4011,4010,4013,4016,4015,4014,4017,4020,4019,4018,4021,4024,4023,4022,4025,4028,4027,4026,4029,4032,4031,4030,4033,4036,4035,4034,4037,4040,4039,4038,4041,4044,4043,4042,4045,4048,4047,4046,4049,4052,4051,4050,4053,4056,4055,4054,4057,4060,4059,4058,4061,4064,4063,4062,4065,4068,4067,4066,4069,4072,4071,4070,4073,4076,4075,4074,4077,4080,4079,4078,4081,4084,4083,4082,4085,4088,4087,4086,4089,4092,4091,4090,4093,4096,4095,4094,4097,4100,4099,4098,4101,4104,4103,4102,4105,4108,4107,4106,4109,4112,4111,4110,4113,4116,4115,4114,4117,4120,4119,4118,4121,4124,4123,4122,4125,4128,4127,4126,4129,4132,4131,4130,4133,4136,4135,4134,4137,4140,4139,4138,4141,4144,4143,4142,4145,4148,4147,4146,4149,4152,4151,4150,4153,4156,4155,4154,4157,4160,4159,4158,4161,4164,4163,4162,4165,4168,4167,4166,4169,4172,4171,4170,4173,4176,4175,4174,4177,4180,4179,4178,4181,4184,4183,4182,4185,4188,4187,4186,4189,4192,4191,4190,4193,4196,4195,4194,4197,4200,4199,4198,4201,4204,4203,4202,4205,4208,4207,4206,4209,4212,4211,4210,4213,4216,4215,4214,4217,4220,4219,4218,4221,4224,4223,4222,4225,4228,4227,4226,4229,4232,4231,4230,4233,4236,4235,4234,4237,4240,4239,4238,4241,4244,4243,4242,4245,4248,4247,4246,4249,4252,4251,4250,4253,4256,4255,4254,4257,4260,4259,4258,4261,4264,4263,4262,4265,4268,4267,4266,4269,4272,4271,4270,4273,4276,4275,4274,4277,4280,4279,4278,4281,4284,4283,4282,4285,4288,4287,4286,4289,4292,4291,4290,4293,4296,4295,4294,4297,4300,4299,4298,4301,4304,4303,4302,4305,4308,4307,4306,4309,4312,4311,4310,4313,4316,4315,4314, +4317,4320,4319,4318,4321,4324,4323,4322,4325,4328,4327,4326,4329,4332,4331,4330,4333,4336,4335,4334,4337,4340,4339,4338,4341,4344,4343,4342,4345,4348,4347,4346,4349,4352,4351,4350,4353,4356,4355,4354,4357,4360,4359,4358,4361,4364,4363,4362,4365,4368,4367,4366,4369,4372,4371,4370,4373,4376,4375,4374,4377,4380,4379,4378,4381,4384,4383,4382,4385,4388,4387,4386,4389,4392,4391,4390,4393,4396,4395,4394,4397,4400,4399,4398,4401,4404,4403,4402,4405,4408,4407,4406,4409,4412,4411,4410,4413,4416,4415,4414,4417,4420,4419,4418,4421,4424,4423,4422,4425,4428,4427,4426,4429,4432,4431,4430,4433,4436,4435,4434,4437,4440,4439,4438,4441,4444,4443,4442,4445,4448,4447,4446,4449,4452,4451,4450,4453,4456,4455,4454,4457,4460,4459,4458,4461,4464,4463,4462,4465,4468,4467,4466,4469,4472,4471,4470,4473,4476,4475,4474,4477,4480,4479,4478,4481,4484,4483,4482,4485,4488,4487,4486,4489,4492,4491,4490,4493,4496,4495,4494,4497,4500,4499,4498,4501,4504,4503,4502,4505,4508,4507,4506,4509,4512,4511,4510,4513,4516,4515,4514,4517,4520,4519,4518,4521,4524,4523,4522,4525,4528,4527,4526,4529,4532,4531,4530,4533,4536,4535,4534,4537,4540,4539,4538,4541,4544,4543,4542,4545,4548,4547,4546,4549,4552,4551,4550,4553,4556,4555,4554,4557,4560,4559,4558,4561,4564,4563,4562,4565,4568,4567,4566,4569,4572,4571,4570,4573,4576,4575,4574,4577,4580,4579,4578,4581,4584,4583,4582,4585,4588,4587,4586,4589,4592,4591,4590,4593,4596,4595,4594,4597,4600,4599,4598,4601,4604,4603,4602,4605,4608,4607,4606,4609,4612,4611,4610,4613,4616,4615,4614,4617,4620,4619,4618,4621,4624,4623,4622,4625,4628,4627,4626,4629,4632,4631,4630,4633,4636,4635,4634,4637,4640,4639,4638,4641,4644,4643,4642,4645,4648,4647,4646,4649,4652,4651,4650,4653,4656,4655,4654,4657,4660,4659,4658,4661,4664,4663,4662,4665,4668,4667,4666,4669,4672,4671,4670,4673,4676,4675,4674,4677,4680,4679,4678,4681,4684,4683,4682,4685,4688,4687,4686,4689,4692,4691,4690,4693,4696,4695,4694,4697,4700,4699,4698,4701,4704,4703,4702,4705,4708,4707,4706,4709,4712,4711,4710,4713,4716,4715,4714,4717,4720,4719,4718,4721,4724,4723,4722,4725,4728, +4727,4726,4729,4732,4731,4730,4733,4736,4735,4734,4737,4740,4739,4738,4741,4744,4743,4742,4745,4748,4747,4746,4749,4752,4751,4750,4753,4756,4755,4754,4757,4760,4759,4758,4761,4764,4763,4762,4765,4768,4767,4766,4769,4772,4771,4770,4773,4776,4775,4774,4777,4780,4779,4778,4781,4784,4783,4782,4785,4788,4787,4786,4789,4792,4791,4790,4793,4796,4795,4794,4797,4800,4799,4798,4801,4804,4803,4802,4805,4808,4807,4806,4809,4812,4811,4810,4813,4816,4815,4814,4817,4820,4819,4818,4821,4824,4823,4822,4825,4828,4827,4826,4829,4832,4831,4830,4833,4836,4835,4834,4837,4840,4839,4838,4841,4844,4843,4842,4845,4848,4847,4846,4849,4852,4851,4850,4853,4856,4855,4854,4857,4860,4859,4858,4861,4864,4863,4862,4865,4868,4867,4866,4869,4872,4871,4870,4873,4876,4875,4874,4877,4880,4879,4878,4881,4884,4883,4882,4885,4888,4887,4886,4889,4892,4891,4890,4893,4896,4895,4894,4897,4900,4899,4898,4901,4904,4903,4902,4905,4908,4907,4906,4909,4912,4911,4910,4913,4916,4915,4914,4917,4920,4919,4918,4921,4924,4923,4922,4925,4928,4927,4926,4929,4932,4931,4930,4933,4936,4935,4934,4937,4940,4939,4938,4941,4944,4943,4942,4945,4948,4947,4946,4949,4952,4951,4950,4953,4956,4955,4954,4957,4960,4959,4958,4961,4964,4963,4962,4965,4968,4967,4966,4969,4971,4970,4972,4975,4974,4973,4976,4978,4977,4979,4982,4981,4980,4983,4986,4985,4984,4987,4990,4989,4988,4991,4994,4993,4992,4995,4998,4997,4996,4999,5002,5001,5000,5003,5006,5005,5004,5007,5010,5009,5008,5011,5014,5013,5012,5015,5018,5017,5016,5019,5022,5021,5020,5023,5026,5025,5024,5027,5030,5029,5028,5031,5034,5033,5032,5035,5038,5037,5036,5039,5042,5041,5040,5043,5046,5045,5044,5047,5050,5049,5048,5051,5054,5053,5052,5055,5058,5057,5056,5059,5062,5061,5060,5063,5066,5065,5064,5067,5070,5069,5068,5071,5074,5073,5072,5075,5078,5077,5076,5079,5082,5081,5080,5083,5086,5085,5084,5087,5090,5089,5088,5091,5094,5093,5092,5095,5098,5097,5096,5099,5102,5101,5100,5103,5106,5105,5104,5107,5110,5109,5108,5111,5114,5113,5112,5115,5118,5117,5116,5119,5122,5121,5120,5123,5126,5125,5124,5127,5130,5129,5128,5131,5134,5133,5132,5135,5138, +5137,5136,5139,5142,5141,5140,5143,5146,5145,5144,5147,5150,5149,5148,5151,5154,5153,5152,5155,5158,5157,5156,5159,5162,5161,5160,5163,5166,5165,5164,5167,5170,5169,5168,5171,5174,5173,5172,5175,5178,5177,5176,5179,5182,5181,5180,5183,5186,5185,5184,5187,5190,5189,5188,5191,5194,5193,5192,5195,5198,5197,5196,5199,5202,5201,5200,5203,5206,5205,5204,5207,5210,5209,5208,5211,5214,5213,5212,5215,5218,5217,5216,5219,5222,5221,5220,5223,5226,5225,5224,5227,5230,5229,5228,5231,5234,5233,5232,5235,5238,5237,5236,5239,5242,5241,5240,5243,5246,5245,5244,5247,5250,5249,5248,5251,5254,5253,5252,5255,5258,5257,5256,5259,5262,5261,5260,5263,5266,5265,5264,5267,5270,5269,5268,5271,5274,5273,5272,5275,5277,5276,5278,5281,5280,5279,5282,5285,5284,5283,5286,5289,5288,5287,5290,5293,5292,5291,5294,5297,5296,5295,5298,5301,5300,5299,5302,5305,5304,5303,5306,5309,5308,5307,5310,5313,5312,5311,5314,5317,5316,5315,5318,5321,5320,5319,5322,5325,5324,5323,5326,5329,5328,5327,5330,5333,5332,5331,5334,5337,5336,5335,5338,5341,5340,5339,5342,5345,5344,5343,5346,5349,5348,5347,5350,5353,5352,5351,5354,5357,5356,5355,5358,5361,5360,5359,5362,5365,5364,5363,5366,5369,5368,5367,5370,5373,5372,5371,5374,5377,5376,5375,5378,5381,5380,5379,5382,5385,5384,5383,5386,5389,5388,5387,5390,5393,5392,5391,5394,5397,5396,5395,5398,5401,5400,5399,5402,5405,5404,5403,5406,5409,5408,5407,5410,5413,5412,5411,5414,5417,5416,5415,5418,5421,5420,5419,5422,5425,5424,5423,5426,5429,5428,5427,5430,5433,5432,5431,5434,5437,5436,5435,5438,5441,5440,5439,5442,5445,5444,5443,5446,5449,5448,5447,5450,5453,5452,5451,5454,5457,5456,5455,5458,5461,5460,5459,5462,5465,5464,5463,5466,5469,5468,5467,5470,5473,5472,5471,5474,5477,5476,5475,5478,5481,5480,5479,5482,5485,5484,5483,5486,5489,5488,5487,5490,5493,5492,5491,5494,5497,5496,5495,5498,5501,5500,5499,5502,5505,5504,5503,5506,5509,5508,5507,5510,5513,5512,5511,5514,5517,5516,5515,5518,5521,5520,5519,5522,5525,5524,5523,5526,5529,5528,5527,5530,5533,5532,5531,5534,5537,5536,5535,5538,5541,5540,5539,5542,5545,5544,5543,5546, +5549,5548,5547,5550,5553,5552,5551,5554,5557,5556,5555,5558,5561,5560,5559,5562,5565,5564,5563,5566,5569,5568,5567,5570,5573,5572,5571,5574,5577,5576,5575,5578,5581,5580,5579,5582,5585,5584,5583,5586,5589,5588,5587,5590,5593,5592,5591,5594,5597,5596,5595,5598,5601,5600,5599,5602,5605,5604,5603,5606,5609,5608,5607,5610,5613,5612,5611,5614,5617,5616,5615,5618,5621,5620,5619,5622,5625,5624,5623,5626,5629,5628,5627,5630,5633,5632,5631,5634,5637,5636,5635,5638,5641,5640,5639,5642,5645,5644,5643,5646,5649,5648,5647,5650,5653,5652,5651,5654,5657,5656,5655,5658,5661,5660,5659,5662,5665,5664,5663,5666,5669,5668,5667,5670,5673,5672,5671,5674,5677,5676,5675,5678,5681,5680,5679,5682,5685,5684,5683,5686,5689,5688,5687,5690,5693,5692,5691,5694,5697,5696,5695,5698,5701,5700,5699,5702,5705,5704,5703,5706,5709,5708,5707,5710,5713,5712,5711,5714,5717,5716,5715,5718,5721,5720,5719,5722,5725,5724,5723,5726,5729,5728,5727,5730,5733,5732,5731,5734,5737,5736,5735,5738,5741,5740,5739,5742,5745,5744,5743,5746,5749,5748,5747,5750,5753,5752,5751,5754,5757,5756,5755,5758,5761,5760,5759,5762,5765,5764,5763,5766,5769,5768,5767,5770,5773,5772,5771,5774,5777,5776,5775,5778,5781,5780,5779,5782,5785,5784,5783,5786,5789,5788,5787,5790,5793,5792,5791,5794,5797,5796,5795,5798,5801,5800,5799,5802,5805,5804,5803,5806,5809,5808,5807,5810,5813,5812,5811,5814,5817,5816,5815,5818,5821,5820,5819,5822,5825,5824,5823,5826,5829,5828,5827,5830,5833,5832,5831,5834,5837,5836,5835,5838,5841,5840,5839,5842,5845,5844,5843,5846,5849,5848,5847,5850,5853,5852,5851,5854,5857,5856,5855,5858,5861,5860,5859,5862,5865,5864,5863,5866,5869,5868,5867,5870,5873,5872,5871,5874,5877,5876,5875,5878,5881,5880,5879,5882,5885,5884,5883,5886,5889,5888,5887,5890,5893,5892,5891,5894,5897,5896,5895,5898,5901,5900,5899,5902,5905,5904,5903,5906,5909,5908,5907,5910,5913,5912,5911,5914,5917,5916,5915,5918,5921,5920,5919,5922,5925,5924,5923,5926,5929,5928,5927,5930,5933,5932,5931,5934,5937,5936,5935,5938,5941,5940,5939,5942,5945,5944,5943,5946,5949,5948,5947,5950,5953,5952,5951,5954,5957,5956, +5955,5958,5961,5960,5959,5962,5965,5964,5963,5966,5969,5968,5967,5970,5973,5972,5971,5974,5977,5976,5975,5978,5981,5980,5979,5982,5985,5984,5983,5986,5989,5988,5987,5990,5993,5992,5991,5994,5997,5996,5995,5998,6001,6000,5999,6002,6005,6004,6003,6006,6009,6008,6007,6010,6013,6012,6011,6014,6017,6016,6015,6018,6021,6020,6019,6022,6025,6024,6023,6026,6029,6028,6027,6030,6033,6032,6031,6034,6037,6036,6035,6038,6041,6040,6039,6042,6045,6044,6043,6046,6049,6048,6047,6050,6053,6052,6051,6054,6057,6056,6055,6058,6061,6060,6059,6062,6065,6064,6063,6066,6069,6068,6067,6070,6073,6072,6071,6074,6077,6076,6075,6078,6081,6080,6079,6082,6085,6084,6083,6086,6089,6088,6087,6090,6093,6092,6091,6094,6097,6096,6095,6098,6101,6100,6099,6102,6105,6104,6103,6106,6109,6108,6107,6110,6113,6112,6111,6114,6117,6116,6115,6118,6121,6120,6119,6122,6125,6124,6123,6126,6129,6128,6127,6130,6133,6132,6131,6134,6137,6136,6135,6138,6141,6140,6139,6142,6145,6144,6143,6146,6149,6148,6147,6150,6153,6152,6151,6154,6157,6156,6155,6158,6161,6160,6159,6162,6165,6164,6163,6166,6169,6168,6167,6170,6173,6172,6171,6174,6177,6176,6175,6178,6181,6180,6179,6182,6185,6184,6183,6186,6189,6188,6187,6190,6193,6192,6191,6194,6197,6196,6195,6198,6201,6200,6199,6202,6205,6204,6203,6206,6209,6208,6207,6210,6213,6212,6211,6214,6217,6216,6215,6218,6221,6220,6219,6222,6225,6224,6223,6226,6229,6228,6227,6230,6233,6232,6231,6234,6237,6236,6235,6238,6241,6240,6239,6242,6245,6244,6243,6246,6249,6248,6247,6250,6253,6252,6251,6254,6257,6256,6255,6258,6261,6260,6259,6262,6265,6264,6263,6266,6269,6268,6267,6270,6273,6272,6271,6274,6277,6276,6275,6278,6281,6280,6279,6282,6285,6284,6283,6286,6289,6288,6287,6290,6293,6292,6291,6294,6297,6296,6295,6298,6301,6300,6299,6302,6305,6304,6303,6306,6309,6308,6307,6310,6313,6312,6311,6314,6317,6316,6315,6318,6321,6320,6319,6322,6325,6324,6323,6326,6329,6328,6327,6330,6333,6332,6331,6334,6337,6336,6335,6338,6341,6340,6339,6342,6345,6344,6343,6346,6349,6348,6347,6350,6353,6352,6351,6354,6357,6356,6355,6358,6361,6360,6359,6362,6365,6364,6363,6366, +6369,6368,6367,6370,6373,6372,6371,6374,6377,6376,6375,6378,6381,6380,6379,6382,6385,6384,6383,6386,6389,6388,6387,6390,6393,6392,6391,6394,6397,6396,6395,6398,6401,6400,6399,6402,6405,6404,6403,6406,6409,6408,6407,6410,6413,6412,6411,6414,6417,6416,6415,6418,6421,6420,6419,6422,6425,6424,6423,6426,6429,6428,6427,6430,6433,6432,6431,6434,6437,6436,6435,6438,6441,6440,6439,6442,6445,6444,6443,6446,6449,6448,6447,6450,6453,6452,6451,6454,6457,6456,6455,6458,6461,6460,6459,6462,6465,6464,6463,6466,6469,6468,6467,6470,6473,6472,6471,6474,6477,6476,6475,6478,6481,6480,6479,6482,6485,6484,6483,6486,6489,6488,6487,6490,6493,6492,6491,6494,6497,6496,6495,6498,6501,6500,6499,6502,6505,6504,6503,6506,6509,6508,6507,6510,6513,6512,6511,6514,6517,6516,6515,6518,6521,6520,6519,6522,6525,6524,6523,6526,6529,6528,6527,6530,6533,6532,6531,6534,6537,6536,6535,6538,6541,6540,6539,6542,6545,6544,6543,6546,6549,6548,6547,6550,6553,6552,6551,6554,6557,6556,6555,6558,6561,6560,6559,6562,6565,6564,6563,6566,6569,6568,6567,6570,6573,6572,6571,6574,6577,6576,6575,6578,6581,6580,6579,6582,6585,6584,6583,6586,6589,6588,6587,6590,6593,6592,6591,6594,6597,6596,6595,6598,6601,6600,6599,6602,6605,6604,6603,6606,6609,6608,6607,6610,6613,6612,6611,6614,6617,6616,6615,6618,6621,6620,6619,6622,6625,6624,6623,6626,6629,6628,6627,6630,6633,6632,6631,6634,6637,6636,6635,6638,6641,6640,6639,6642,6645,6644,6643,6646,6649,6648,6647,6650,6653,6652,6651,6654,6657,6656,6655,6658,6661,6660,6659,6662,6665,6664,6663,6666,6669,6668,6667,6670,6673,6672,6671,6674,6677,6676,6675,6678,6681,6680,6679,6682,6685,6684,6683,6686,6689,6688,6687,6690,6693,6692,6691,6694,6697,6696,6695,6698,6701,6700,6699,6702,6705,6704,6703,6706,6709,6708,6707,6710,6713,6712,6711,6714,6717,6716,6715,6718,6721,6720,6719,6722,6725,6724,6723,6726,6729,6728,6727,6730,6733,6732,6731,6734,6737,6736,6735,6738,6741,6740,6739,6742,6745,6744,6743,6746,6749,6748,6747,6750,6753,6752,6751,6754,6757,6756,6755,6758,6761,6760,6759,6762,6765,6764,6763,6766,6769,6768,6767,6770,6773,6772,6771,6774,6777,6776, +6775,6778,6781,6780,6779,6782,6785,6784,6783,6786,6789,6788,6787,6790,6793,6792,6791,6794,6797,6796,6795,6798,6801,6800,6799,6802,6805,6804,6803,6806,6809,6808,6807,6810,6813,6812,6811,6814,6817,6816,6815,6818,6821,6820,6819,6822,6825,6824,6823,6826,6829,6828,6827,6830,6833,6832,6831,6834,6837,6836,6835,6838,6841,6840,6839,6842,6845,6844,6843,6846,6849,6848,6847,6850,6853,6852,6851,6854,6857,6856,6855,6858,6861,6860,6859,6862,6865,6864,6863,6866,6869,6868,6867,6870,6873,6872,6871,6874,6877,6876,6875,6878,6881,6880,6879,6882,6885,6884,6883,6886,6889,6888,6887,6890,6893,6892,6891,6894,6897,6896,6895,6898,6901,6900,6899,6902,6905,6904,6903,6906,6909,6908,6907,6910,6913,6912,6911,6914,6917,6916,6915,6918,6921,6920,6919,6922,6925,6924,6923,6926,6929,6928,6927,6930,6933,6932,6931,6934,6937,6936,6935,6938,6941,6940,6939,6942,6945,6944,6943,6946,6949,6948,6947,6950,6953,6952,6951,6954,6957,6956,6955,6958,6961,6960,6959,6962,6965,6964,6963,6966,6969,6968,6967,6970,6973,6972,6971,6974,6977,6976,6975,6978,6981,6980,6979,6982,6985,6984,6983,6986,6989,6988,6987,6990,6993,6992,6991,6994,6997,6996,6995,6998,7001,7000,6999,7002,7005,7004,7003,7006,7009,7008,7007,7010,7013,7012,7011,7014,7017,7016,7015,7018,7021,7020,7019,7022,7025,7024,7023,7026,7029,7028,7027,7030,7033,7032,7031,7034,7037,7036,7035,7038,7041,7040,7039,7042,7045,7044,7043,7046,7049,7048,7047,7050,7053,7052,7051,7054,7057,7056,7055,7058,7061,7060,7059,7062,7065,7064,7063,7066,7069,7068,7067,7070,7073,7072,7071,7074,7077,7076,7075,7078,7081,7080,7079,7082,7085,7084,7083,7086,7089,7088,7087,7090,7093,7092,7091,7094,7097,7096,7095,7098,7101,7100,7099,7102,7105,7104,7103,7106,7109,7108,7107,7110,7113,7112,7111,7114,7117,7116,7115,7118,7121,7120,7119,7122,7125,7124,7123,7126,7129,7128,7127,7130,7133,7132,7131,7134,7137,7136,7135,7138,7141,7140,7139,7142,7145,7144,7143,7146,7149,7148,7147,7150,7153,7152,7151,7154,7157,7156,7155,7158,7161,7160,7159,7162,7165,7164,7163,7166,7169,7168,7167,7170,7173,7172,7171,7174,7177,7176,7175,7178,7181,7180,7179,7182,7185,7184,7183,7186, +7189,7188,7187,7190,7193,7192,7191,7194,7197,7196,7195,7198,7201,7200,7199,7202,7205,7204,7203,7206,7209,7208,7207,7210,7213,7212,7211,7214,7217,7216,7215,7218,7221,7220,7219,7222,7225,7224,7223,7226,7229,7228,7227,7230,7233,7232,7231,7234,7237,7236,7235,7238,7241,7240,7239,7242,7245,7244,7243,7246,7249,7248,7247,7250,7253,7252,7251,7254,7257,7256,7255,7258,7261,7260,7259,7262,7265,7264,7263,7266,7269,7268,7267,7270,7273,7272,7271,7274,7277,7276,7275,7278,7281,7280,7279,7282,7285,7284,7283,7286,7289,7288,7287,7290,7293,7292,7291,7294,7297,7296,7295,7298,7301,7300,7299,7302,7305,7304,7303,7306,7309,7308,7307,7310,7313,7312,7311,7314,7317,7316,7315,7318,7321,7320,7319,7322,7325,7324,7323,7326,7329,7328,7327,7330,7333,7332,7331,7334,7337,7336,7335,7338,7341,7340,7339,7342,7345,7344,7343,7346,7349,7348,7347,7350,7353,7352,7351,7354,7357,7356,7355,7358,7361,7360,7359,7362,7365,7364,7363,7366,7369,7368,7367,7370,7373,7372,7371,7374,7377,7376,7375,7378,7381,7380,7379,7382,7385,7384,7383,7386,7389,7388,7387,7390,7393,7392,7391,7394,7397,7396,7395,7398,7401,7400,7399,7402,7405,7404,7403,7406,7409,7408,7407,7410,7413,7412,7411,7414,7417,7416,7415,7418,7421,7420,7419,7422,7425,7424,7423,7426,7429,7428,7427,7430,7433,7432,7431,7434,7437,7436,7435,7438,7441,7440,7439,7442,7445,7444,7443,7446,7449,7448,7447,7450,7453,7452,7451,7454,7457,7456,7455,7458,7461,7460,7459,7462,7465,7464,7463,7466,7469,7468,7467,7470,7473,7472,7471,7474,7477,7476,7475,7478,7481,7480,7479,7482,7485,7484,7483,7486,7489,7488,7487,7490,7493,7492,7491,7494,7497,7496,7495,7498,7501,7500,7499,7502,7505,7504,7503,7506,7509,7508,7507,7510,7513,7512,7511,7514,7517,7516,7515,7518,7521,7520,7519,7522,7525,7524,7523,7526,7529,7528,7527,7530,7533,7532,7531,7534,7537,7536,7535,7538,7541,7540,7539,7542,7545,7544,7543,7546,7549,7548,7547,7550,7553,7552,7551,7554,7557,7556,7555,7558,7561,7560,7559,7562,7565,7564,7563,7566,7569,7568,7567,7570,7573,7572,7571,7574,7577,7576,7575,7578,7581,7580,7579,7582,7585,7584,7583,7586,7589,7588,7587,7590,7593,7592,7591,7594,7597,7596, +7595,7598,7601,7600,7599,7602,7604,7603,7605,7608,7607,7606,7609,7612,7611,7610,7613,7616,7615,7614,7617,7620,7619,7618,7621,7624,7623,7622,7625,7628,7627,7626,7629,7632,7631,7630,7633,7636,7635,7634,7637,7640,7639,7638,7641,7644,7643,7642,7645,7648,7647,7646,7649,7652,7651,7650,7653,7656,7655,7654,7657,7660,7659,7658,7661,7663,7662,7664,7667,7666,7665,7668,7671,7670,7669,7672,7675,7674,7673,7676,7681,7680,7679,7678,7677,7682,7685,7684,7683,7686,7689,7688,7687,7690,7693,7692,7691,7694,7697,7696,7695,7698,7701,7700,7699,7702,7705,7704,7703,7706,7709,7708,7707,7710,7713,7712,7711,7714,7717,7716,7715,7718,7721,7720,7719,7722,7727,7726,7725,7724,7723,7728,7731,7730,7729,7732,7735,7734,7733,7736,7739,7738,7737,7740,7743,7742,7741,7744,7747,7746,7745,7748,7751,7750,7749,7752,7755,7754,7753,7756,7759,7758,7757,7760,7763,7762,7761,7764,7767,7766,7765,7768,7771,7770,7769,7772,7775,7774,7773,7776,7779,7778,7777,7780,7784,7783,7782,7781,7785,7788,7787,7786,7789,7792,7791,7790,7793,7796,7795,7794,7797,7800,7799,7798,7801,7804,7803,7802,7805,7808,7807,7806,7809,7812,7811,7810,7813,7816,7815,7814,7817,7820,7819,7818,7821,7824,7823,7822,7825,7828,7827,7826,7829,7832,7831,7830,7833,7836,7835,7834,7837,7840,7839,7838,7841,7843,7842,7844,7846,7845,7847,7850,7849,7848,7851,7853,7852,7854,7857,7856,7855,7858,7860,7859,7861,7863,7862,7864,7868,7867,7866,7865,7869,7872,7871,7870,7873,7876,7875,7874,7877,7880,7879,7878,7881,7884,7883,7882,7885,7888,7887,7886,7889,7892,7891,7890,7893,7895,7894,7896,7898,7897,7899,7902,7901,7900,7903,7905,7904,7906,7909,7908,7907,7910,7912,7911,7913,7915,7914,7916,7918,7917,7919,7922,7921,7920,7923,7926,7925,7924,7927,7930,7929,7928,7931,7934,7933,7932,7935,7937,7936,7938,7941,7940,7939,7942,7944,7943,7945,7947,7946,7948,7951,7950,7949,7952,7954,7953,7955,7958,7957,7956,7959,7961,7960,7962,7964,7963,7965,7968,7967,7966,7969,7971,7970,7972,7975,7974,7973,7976,7978,7977,7979,7981,7980,7982,7984,7983,7985,7988,7987,7986,7989,7991,7990,7992,7995,7994,7993,7996,8000,7999,7998,7997,8001,8004,8003,8002,8005,8008, +8007,8006,8009,8012,8011,8010,8013,8016,8015,8014,8017,8019,8018,8020,8022,8021,8023,8025,8024,8026,8028,8027,8029,8031,8030,8032,8034,8033,8035,8037,8036,8038,8040,8039,8041,8043,8042,8044,8046,8045,8047,8049,8048,8050,8052,8051,8053,8056,8055,8054,8057,8060,8059,8058,8061,8064,8063,8062,8065,8068,8067,8066,8069,8072,8071,8070,8073,8075,8074,8076,8079,8078,8077,8080,8083,8082,8081,8084,8087,8086,8085,8088,8091,8090,8089,8092,8095,8094,8093,8096,8099,8098,8097,8100,8103,8102,8101,8104,8107,8106,8105,8108,8111,8110,8109,8112,8115,8114,8113,8116,8119,8118,8117,8120,8123,8122,8121,8124,8127,8126,8125,8128,8130,8129,8131,8133,8132,8134,8136,8135,8137,8139,8138,8140,8142,8141,8143,8145,8144,8146,8148,8147,8149,8151,8150,8152,8154,8153,8155,8157,8156,8158,8160,8159,8161,8163,8162,8164,8166,8165,8167,8169,8168,8170,8172,8171,8173,8175,8174,8176,8178,8177,8179,8181,8180,8182,8184,8183,8185,8187,8186,8188,8190,8189,8191,8193,8192,8194,8196,8195,8197,8199,8198,8200,8202,8201,8203,8205,8204,8206,8208,8207,8209,8211,8210,8212,8214,8213,8215,8217,8216,8218,8220,8219,8221,8223,8222,8224,8226,8225,8227,8229,8228,8230,8232,8231,8233,8235,8234,8236,8238,8237,8239,8241,8240,8242,8244,8243,8245,8247,8246,8248,8250,8249,8251,8253,8252,8254,8256,8255,8257,8259,8258,8260,8262,8261,8263,8265,8264,8266,8268,8267,8269,8271,8270,8272,8274,8273,8275,8277,8276,8278,8280,8279,8281,8283,8282,8284,8286,8285,8287,8289,8288,8290,8292,8291,8293,8295,8294,8296,8298,8297,8299,8301,8300,8302,8304,8303,8305,8307,8306,8308,8310,8309,8311,8313,8312,8314,8316,8315,8317,8319,8318,8320,8322,8321,8323,8325,8324,8326,8328,8327,8329,8331,8330,8332,8334,8333,8335,8337,8336,8338,8340,8339,8341,8343,8342,8344,8346,8345,8347,8349,8348,8350,8352,8351,8353,8355,8354,8356,8358,8357,8359,8361,8360,8362,8364,8363,8365,8367,8366,8368,8370,8369,8371,8373,8372,8374,8376,8375,8377,8379,8378,8380,8382,8381,8383,8385,8384,8386,8388,8387,8389,8391,8390,8392,8394,8393,8395,8397,8396,8398,8400,8399,8401,8403,8402,8404,8406,8405,8407,8409,8408,8410,8412,8411,8413,8415,8414,8416, +8418,8417,8419,8421,8420,8422,8424,8423,8425,8427,8426,8428,8430,8429,8431,8433,8432,8434,8436,8435,8437,8439,8438,8440,8442,8441,8443,8445,8444,8446,8448,8447,8449,8451,8450,8452,8454,8453,8455,8457,8456,8458,8460,8459,8461,8463,8462,8464,8466,8465,8467,8469,8468,8470,8472,8471,8473,8475,8474,8476,8478,8477,8479,8481,8480,8482,8484,8483,8485,8487,8486,8488,8490,8489,8491,8493,8492,8494,8496,8495,8497,8499,8498,8500,8502,8501,8503,8505,8504,8506,8508,8507,8509,8511,8510,8512,8514,8513,8515,8517,8516,8518,8520,8519,8521,8523,8522,8524,8526,8525,8527,8529,8528,8530,8532,8531,8533,8535,8534,8536,8538,8537,8539,8541,8540,8542,8544,8543,8545,8547,8546,8548,8550,8549,8551,8553,8552,8554,8556,8555,8557,8559,8558,8560,8562,8561,8563,8565,8564,8566,8568,8567,8569,8571,8570,8572,8574,8573,8575,8577,8576,8578,8580,8579,8581,8583,8582,8584,8586,8585,8587,8589,8588,8590,8592,8591,8593,8595,8594,8596,8598,8597,8599,8601,8600,8602,8604,8603,8605,8607,8606,8608,8610,8609,8611,8613,8612,8614,8616,8615,8617,8619,8618,8620,8622,8621,8623,8625,8624,8626,8628,8627,8629,8631,8630,8632,8634,8633,8635,8637,8636,8638,8640,8639,8641,8643,8642,8644,8646,8645,8647,8649,8648,8650,8652,8651,8653,8655,8654,8656,8658,8657,8659,8661,8660,8662,8664,8663,8665,8667,8666,8668,8670,8669,8671,8673,8672,8674,8676,8675,8677,8679,8678,8680,8682,8681,8683,8685,8684,8686,8688,8687,8689,8691,8690,8692,8694,8693,8695,8697,8696,8698,8700,8699,8701,8703,8702,8704,8706,8705,8707,8709,8708,8710,8712,8711,8713,8715,8714,8716,8718,8717,8719,8721,8720,8722,8724,8723,8725,8727,8726,8728,8730,8729,8731,8733,8732,8734,8736,8735,8737,8739,8738,8740,8742,8741,8743,8745,8744,8746,8748,8747,8749,8751,8750,8752,8754,8753,8755,8757,8756,8758,8760,8759,8761,8763,8762,8764,8766,8765,8767,8769,8768,8770,8772,8771,8773,8775,8774,8776,8778,8777,8779,8781,8780,8782,8784,8783,8785,8787,8786,8788,8790,8789,8791,8793,8792,8794,8796,8795,8797,8800,8799,8798,8801,8804,8803,8802,8805,8808,8807,8806,8809,8812,8811,8810,8813,8816,8815,8814,8817,8820,8819,8818,8821,8824,8823,8822,8825,8828, +8827,8826,8829,8832,8831,8830,8833,8836,8835,8834,8837,8840,8839,8838,8841,8844,8843,8842,8845,8848,8847,8846,8849,8852,8851,8850,8853,8856,8855,8854,8857,8860,8859,8858,8861,8864,8863,8862,8865,8868,8867,8866,8869,8872,8871,8870,8873,8876,8875,8874,8877,8880,8879,8878,8881,8884,8883,8882,8885,8888,8887,8886,8889,8892,8891,8890,8893,8896,8895,8894,8897,8900,8899,8898,8901,8904,8903,8902,8905,8908,8907,8906,8909,8912,8911,8910,8913,8916,8915,8914,8917,8920,8919,8918,8921,8924,8923,8922,8925,8928,8927,8926,8929,8932,8931,8930,8933,8936,8935,8934,8937,8940,8939,8938,8941,8944,8943,8942,8945,8948,8947,8946,8949,8952,8951,8950,8953,8956,8955,8954,8957,8960,8959,8958,8961,8964,8963,8962,8965,8968,8967,8966,8969,8972,8971,8970,8973,8976,8975,8974,8977,8980,8979,8978,8981,8984,8983,8982,8985,8988,8987,8986,8989,8992,8991,8990,8993,8996,8995,8994,8997,9000,8999,8998,9001,9004,9003,9002,9005,9008,9007,9006,9009,9012,9011,9010,9013,9016,9015,9014,9017,9020,9019,9018,9021,9024,9023,9022,9025,9028,9027,9026,9029,9032,9031,9030,9033,9036,9035,9034,9037,9040,9039,9038,9041,9044,9043,9042,9045,9048,9047,9046,9049,9052,9051,9050,9053,9056,9055,9054,9057,9060,9059,9058,9061,9064,9063,9062,9065,9068,9067,9066,9069,9072,9071,9070,9073,9076,9075,9074,9077,9080,9079,9078,9081,9084,9083,9082,9085,9088,9087,9086,9089,9092,9091,9090,9093,9096,9095,9094,9097,9100,9099,9098,9101,9104,9103,9102,9105,9108,9107,9106,9109,9112,9111,9110,9113,9116,9115,9114,9117,9120,9119,9118,9121,9124,9123,9122,9125,9128,9127,9126,9129,9132,9131,9130,9133,9136,9135,9134,9137,9140,9139,9138,9141,9144,9143,9142,9145,9148,9147,9146,9149,9152,9151,9150,9153,9156,9155,9154,9157,9160,9159,9158,9161,9164,9163,9162,9165,9168,9167,9166,9169,9172,9171,9170,9173,9176,9175,9174,9177,9180,9179,9178,9181,9184,9183,9182,9185,9188,9187,9186,9189,9192,9191,9190,9193,9196,9195,9194,9197,9200,9199,9198,9201,9204,9203,9202,9205,9208,9207,9206,9209,9212,9211,9210,9213,9216,9215,9214,9217,9220,9219,9218,9221,9224,9223,9222,9225,9228,9227,9226,9229,9232,9231,9230,9233,9236,9235,9234, +9237,9240,9239,9238,9241,9244,9243,9242,9245,9248,9247,9246,9249,9252,9251,9250,9253,9256,9255,9254,9257,9260,9259,9258,9261,9264,9263,9262,9265,9268,9267,9266,9269,9272,9271,9270,9273,9276,9275,9274,9277,9280,9279,9278,9281,9284,9283,9282,9285,9288,9287,9286,9289,9292,9291,9290,9293,9296,9295,9294,9297,9300,9299,9298,9301,9304,9303,9302,9305,9308,9307,9306,9309,9312,9311,9310,9313,9316,9315,9314,9317,9320,9319,9318,9321,9324,9323,9322,9325,9328,9327,9326,9329,9332,9331,9330,9333,9336,9335,9334,9337,9340,9339,9338,9341,9344,9343,9342,9345,9348,9347,9346,9349,9352,9351,9350,9353,9356,9355,9354,9357,9360,9359,9358,9361,9364,9363,9362,9365,9368,9367,9366,9369,9372,9371,9370,9373,9376,9375,9374,9377,9380,9379,9378,9381,9384,9383,9382,9385,9388,9387,9386,9389,9392,9391,9390,9393,9396,9395,9394,9397,9400,9399,9398,9401,9404,9403,9402,9405,9408,9407,9406,9409,9412,9411,9410,9413,9416,9415,9414,9417,9420,9419,9418,9421,9424,9423,9422,9425,9428,9427,9426,9429,9432,9431,9430,9433,9436,9435,9434,9437,9440,9439,9438,9441,9444,9443,9442,9445,9448,9447,9446,9449,9452,9451,9450,9453,9456,9455,9454,9457,9460,9459,9458,9461,9464,9463,9462,9465,9468,9467,9466,9469,9472,9471,9470,9473,9476,9475,9474,9477,9480,9479,9478,9481,9484,9483,9482,9485,9488,9487,9486,9489,9492,9491,9490,9493,9496,9495,9494,9497,9500,9499,9498,9501,9504,9503,9502,9505,9508,9507,9506,9509,9512,9511,9510,9513,9516,9515,9514,9517,9520,9519,9518,9521,9524,9523,9522,9525,9528,9527,9526,9529,9532,9531,9530,9533,9536,9535,9534,9537,9540,9539,9538,9541,9544,9543,9542,9545,9548,9547,9546,9549,9552,9551,9550,9553,9556,9555,9554,9557,9560,9559,9558,9561,9564,9563,9562,9565,9568,9567,9566,9569,9572,9571,9570,9573,9576,9575,9574,9577,9580,9579,9578,9581,9584,9583,9582,9585,9588,9587,9586,9589,9592,9591,9590,9593,9596,9595,9594,9597,9600,9599,9598,9601,9604,9603,9602,9605,9608,9607,9606,9609,9612,9611,9610,9613,9616,9615,9614,9617,9620,9619,9618,9621,9624,9623,9622,9625,9628,9627,9626,9629,9632,9631,9630,9633,9636,9635,9634,9637,9640,9639,9638,9641,9644,9643,9642,9645,9648, +9647,9646,9649,9652,9651,9650,9653,9656,9655,9654,9657,9660,9659,9658,9661,9664,9663,9662,9665,9668,9667,9666,9669,9672,9671,9670,9673,9676,9675,9674,9677,9680,9679,9678,9681,9684,9683,9682,9685,9688,9687,9686,9689,9692,9691,9690,9693,9696,9695,9694,9697,9700,9699,9698,9701,9704,9703,9702,9705,9708,9707,9706,9709,9712,9711,9710,9713,9716,9715,9714,9717,9720,9719,9718,9721,9724,9723,9722,9725,9728,9727,9726,9729,9732,9731,9730,9733,9736,9735,9734,9737,9740,9739,9738,9741,9744,9743,9742,9745,9748,9747,9746,9749,9752,9751,9750,9753,9756,9755,9754,9757,9760,9759,9758,9761,9764,9763,9762,9765,9768,9767,9766,9769,9772,9771,9770,9773,9776,9775,9774,9777,9780,9779,9778,9781,9784,9783,9782,9785,9788,9787,9786,9789,9792,9791,9790,9793,9796,9795,9794,9797,9800,9799,9798,9801,9804,9803,9802,9805,9808,9807,9806,9809,9812,9811,9810,9813,9816,9815,9814,9817,9820,9819,9818,9821,9824,9823,9822,9825,9828,9827,9826,9829,9832,9831,9830,9833,9836,9835,9834,9837,9840,9839,9838,9841,9844,9843,9842,9845,9848,9847,9846,9849,9852,9851,9850,9853,9856,9855,9854,9857,9860,9859,9858,9861,9864,9863,9862,9865,9868,9867,9866,9869,9872,9871,9870,9873,9876,9875,9874,9877,9880,9879,9878,9881,9884,9883,9882,9885,9888,9887,9886,9889,9892,9891,9890,9893,9896,9895,9894,9897,9900,9899,9898,9901,9904,9903,9902,9905,9908,9907,9906,9909,9912,9911,9910,9913,9916,9915,9914,9917,9920,9919,9918,9921,9924,9923,9922,9925,9928,9927,9926,9929,9932,9931,9930,9933,9936,9935,9934,9937,9940,9939,9938,9941,9944,9943,9942,9945,9948,9947,9946,9949,9952,9951,9950,9953,9956,9955,9954,9957,9960,9959,9958,9961,9964,9963,9962,9965,9968,9967,9966,9969,9972,9971,9970,9973,9976,9975,9974,9977,9980,9979,9978,9981,9984,9983,9982,9985,9988,9987,9986,9989,9992,9991,9990,9993,9996,9995,9994,9997,10000,9999,9998,10001,10004,10003,10002,10005,10008,10007,10006,10009,10012,10011,10010,10013,10016,10015,10014,10017,10020,10019,10018,10021,10024,10023,10022,10025,10028,10027,10026,10029,10032,10031,10030,10033,10036,10035,10034,10037,10040,10039,10038,10041,10044,10043,10042,10045,10048,10047, +10046,10049,10052,10051,10050,10053,10056,10055,10054,10057,10060,10059,10058,10061,10064,10063,10062,10065,10068,10067,10066,10069,10072,10071,10070,10073,10076,10075,10074,10077,10080,10079,10078,10081,10084,10083,10082,10085,10088,10087,10086,10089,10092,10091,10090,10093,10096,10095,10094,10097,10100,10099,10098,10101,10104,10103,10102,10105,10108,10107,10106,10109,10112,10111,10110,10113,10116,10115,10114,10117,10120,10119,10118,10121,10124,10123,10122,10125,10128,10127,10126,10129,10132,10131,10130,10133,10136,10135,10134,10137,10140,10139,10138,10141,10144,10143,10142,10145,10148,10147,10146,10149,10152,10151,10150,10153,10156,10155,10154,10157,10160,10159,10158,10161,10164,10163,10162,10165,10168,10167,10166,10169,10172,10171,10170,10173,10176,10175,10174,10177,10180,10179,10178,10181,10184,10183,10182,10185,10188,10187,10186,10189,10192,10191,10190,10193,10196,10195,10194,10197,10200,10199,10198,10201,10204,10203,10202,10205,10208,10207,10206,10209,10212,10211,10210,10213,10216,10215,10214,10217,10220,10219,10218,10221,10224,10223,10222,10225,10228,10227,10226,10229,10232,10231,10230,10233,10236,10235,10234,10237,10240,10239,10238,10241,10244,10243,10242,10245,10248,10247,10246,10249,10252,10251,10250,10253,10256,10255,10254,10257,10260,10259,10258,10261,10264,10263,10262,10265,10268,10267,10266,10269,10272,10271,10270,10273,10276,10275,10274,10277,10280,10279,10278,10281,10284,10283,10282,10285,10288,10287,10286,10289,10292,10291,10290,10293,10296,10295,10294,10297,10300,10299,10298,10301,10304,10303,10302,10305,10308,10307,10306,10309,10312,10311,10310,10313,10316,10315,10314,10317,10320,10319,10318,10321,10324,10323,10322,10325,10328,10327,10326,10329,10332,10331,10330,10333,10336,10335,10334,10337,10340,10339,10338,10341,10344,10343,10342,10345,10348,10347,10346,10349,10352,10351,10350,10353,10356,10355,10354,10357,10360,10359,10358,10361,10364,10363,10362,10365,10368,10367,10366,10369,10372,10371,10370,10373,10376,10375,10374,10377,10380,10379,10378,10381,10384,10383,10382,10385,10388,10387,10386,10389, +10392,10391,10390,10393,10396,10395,10394,10397,10400,10399,10398,10401,10404,10403,10402,10405,10408,10407,10406,10409,10412,10411,10410,10413,10416,10415,10414,10417,10420,10419,10418,10421,10424,10423,10422,10425,10428,10427,10426,10429,10432,10431,10430,10433,10436,10435,10434,10437,10440,10439,10438,10441,10444,10443,10442,10445,10448,10447,10446,10449,10452,10451,10450,10453,10456,10455,10454,10457,10460,10459,10458,10461,10464,10463,10462,10465,10468,10467,10466,10469,10472,10471,10470,10473,10476,10475,10474,10477,10480,10479,10478,10481,10484,10483,10482,10485,10488,10487,10486,10489,10492,10491,10490,10493,10496,10495,10494,10497,10500,10499,10498,10501,10504,10503,10502,10505,10508,10507,10506,10509,10512,10511,10510,10513,10516,10515,10514,10517,10520,10519,10518,10521,10524,10523,10522,10525,10528,10527,10526,10529,10532,10531,10530,10533,10536,10535,10534,10537,10540,10539,10538,10541,10544,10543,10542,10545,10548,10547,10546,10549,10552,10551,10550,10553,10556,10555,10554,10557,10560,10559,10558,10561,10564,10563,10562,10565,10568,10567,10566,10569,10572,10571,10570,10573,10576,10575,10574,10577,10580,10579,10578,10581,10584,10583,10582,10585,10588,10587,10586,10589,10592,10591,10590,10593,10596,10595,10594,10597,10600,10599,10598,10601,10604,10603,10602,10605,10608,10607,10606,10609,10612,10611,10610,10613,10616,10615,10614,10617,10620,10619,10618,10621,10624,10623,10622,10625,10628,10627,10626,10629,10632,10631,10630,10633,10636,10635,10634,10637,10640,10639,10638,10641,10644,10643,10642,10645,10648,10647,10646,10649,10652,10651,10650,10653,10656,10655,10654,10657,10660,10659,10658,10661,10664,10663,10662,10665,10668,10667,10666,10669,10672,10671,10670,10673,10676,10675,10674,10677,10680,10679,10678,10681,10684,10683,10682,10685,10688,10687,10686,10689,10692,10691,10690,10693,10696,10695,10694,10697,10700,10699,10698,10701,10704,10703,10702,10705,10708,10707,10706,10709,10712,10711,10710,10713,10716,10715,10714,10717,10720,10719,10718,10721,10724,10723,10722,10725,10728,10727,10726,10729,10732,10731, +10730,10733,10736,10735,10734,10737,10740,10739,10738,10741,10744,10743,10742,10745,10748,10747,10746,10749,10752,10751,10750,10753,10756,10755,10754,10757,10760,10759,10758,10761,10764,10763,10762,10765,10768,10767,10766,10769,10772,10771,10770,10773,10776,10775,10774,10777,10780,10779,10778,10781,10784,10783,10782,10785,10788,10787,10786,10789,10792,10791,10790,10793,10796,10795,10794,10797,10800,10799,10798,10801,10804,10803,10802,10805,10808,10807,10806,10809,10812,10811,10810,10813,10816,10815,10814,10817,10820,10819,10818,10821,10824,10823,10822,10825,10828,10827,10826,10829,10832,10831,10830,10833,10836,10835,10834,10837,10840,10839,10838,10841,10844,10843,10842,10845,10848,10847,10846,10849,10852,10851,10850,10853,10856,10855,10854,10857,10860,10859,10858,10861,10864,10863,10862,10865,10868,10867,10866,10869,10872,10871,10870,10873,10876,10875,10874,10877,10880,10879,10878,10881,10884,10883,10882,10885,10888,10887,10886,10889,10892,10891,10890,10893,10896,10895,10894,10897,10900,10899,10898,10901,10904,10903,10902,10905,10908,10907,10906,10909,10912,10911,10910,10913,10916,10915,10914,10917,10920,10919,10918,10921,10924,10923,10922,10925,10928,10927,10926,10929,10932,10931,10930,10933,10936,10935,10934,10937,10940,10939,10938,10941,10944,10943,10942,10945,10948,10947,10946,10949,10952,10951,10950,10953,10956,10955,10954,10957,10960,10959,10958,10961,10964,10963,10962,10965,10968,10967,10966,10969,10972,10971,10970,10973,10976,10975,10974,10977,10980,10979,10978,10981,10984,10983,10982,10985,10988,10987,10986,10989,10992,10991,10990,10993,10996,10995,10994,10997,11000,10999,10998,11001,11004,11003,11002,11005,11008,11007,11006,11009,11012,11011,11010,11013,11016,11015,11014,11017,11020,11019,11018,11021,11024,11023,11022,11025,11028,11027,11026,11029,11032,11031,11030,11033,11036,11035,11034,11037,11040,11039,11038,11041,11044,11043,11042,11045,11048,11047,11046,11049,11052,11051,11050,11053,11056,11055,11054,11057,11060,11059,11058,11061,11064,11063,11062,11065,11068,11067,11066,11069,11072,11071,11070,11073, +11076,11075,11074,11077,11080,11079,11078,11081,11084,11083,11082,11085,11088,11087,11086,11089,11092,11091,11090,11093,11096,11095,11094,11097,11100,11099,11098,11101,11104,11103,11102,11105,11108,11107,11106,11109,11112,11111,11110,11113,11116,11115,11114,11117,11120,11119,11118,11121,11124,11123,11122,11125,11128,11127,11126,11129,11132,11131,11130,11133,11136,11135,11134,11137,11140,11139,11138,11141,11144,11143,11142,11145,11148,11147,11146,11149,11152,11151,11150,11153,11156,11155,11154,11157,11160,11159,11158,11161,11164,11163,11162,11165,11168,11167,11166,11169,11172,11171,11170,11173,11176,11175,11174,11177,11180,11179,11178,11181,11184,11183,11182,11185,11188,11187,11186,11189,11192,11191,11190,11193,11196,11195,11194,11197,11200,11199,11198,11201,11204,11203,11202,11205,11208,11207,11206,11209,11212,11211,11210,11213,11216,11215,11214,11217,11220,11219,11218,11221,11224,11223,11222,11225,11228,11227,11226,11229,11232,11231,11230,11233,11236,11235,11234,11237,11240,11239,11238,11241,11244,11243,11242,11245,11248,11247,11246,11249,11252,11251,11250,11253,11256,11255,11254,11257,11260,11259,11258,11261,11264,11263,11262,11265,11268,11267,11266,11269,11272,11271,11270,11273,11276,11275,11274,11277,11280,11279,11278,11281,11284,11283,11282,11285,11288,11287,11286,11289,11292,11291,11290,11293,11296,11295,11294,11297,11300,11299,11298,11301,11304,11303,11302,11305,11308,11307,11306,11309,11312,11311,11310,11313,11316,11315,11314,11317,11320,11319,11318,11321,11324,11323,11322,11325,11328,11327,11326,11329,11332,11331,11330,11333,11336,11335,11334,11337,11340,11339,11338,11341,11344,11343,11342,11345,11348,11347,11346,11349,11352,11351,11350,11353,11356,11355,11354,11357,11360,11359,11358,11361,11364,11363,11362,11365,11368,11367,11366,11369,11372,11371,11370,11373,11376,11375,11374,11377,11380,11379,11378,11381,11384,11383,11382,11385,11388,11387,11386,11389,11392,11391,11390,11393,11396,11395,11394,11397,11400,11399,11398,11401,11404,11403,11402,11405,11408,11407,11406,11409,11412,11411,11410,11413,11416,11415, +11414,11417,11420,11419,11418,11421,11424,11423,11422,11425,11428,11427,11426,11429,11432,11431,11430,11433,11436,11435,11434,11437,11440,11439,11438,11441,11444,11443,11442,11445,11448,11447,11446,11449,11452,11451,11450,11453,11456,11455,11454,11457,11460,11459,11458,11461,11464,11463,11462,11465,11468,11467,11466,11469,11472,11471,11470,11473,11476,11475,11474,11477,11480,11479,11478,11481,11484,11483,11482,11485,11488,11487,11486,11489,11492,11491,11490,11493,11496,11495,11494,11497,11500,11499,11498,11501,11504,11503,11502,11505,11508,11507,11506,11509,11512,11511,11510,11513,11516,11515,11514,11517,11520,11519,11518,11521,11524,11523,11522,11525,11528,11527,11526,11529,11532,11531,11530,11533,11536,11535,11534,11537,11540,11539,11538,11541,11544,11543,11542,11545,11548,11547,11546,11549,11552,11551,11550,11553,11556,11555,11554,11557,11560,11559,11558,11561,11564,11563,11562,11565,11568,11567,11566,11569,11572,11571,11570,11573,11576,11575,11574,11577,11580,11579,11578,11581,11584,11583,11582,11585,11588,11587,11586,11589,11592,11591,11590,11593,11596,11595,11594,11597,11600,11599,11598,11601,11604,11603,11602,11605,11608,11607,11606,11609,11612,11611,11610,11613,11616,11615,11614,11617,11620,11619,11618,11621,11624,11623,11622,11625,11628,11627,11626,11629,11632,11631,11630,11633,11636,11635,11634,11637,11640,11639,11638,11641,11644,11643,11642,11645,11648,11647,11646,11649,11652,11651,11650,11653,11656,11655,11654,11657,11660,11659,11658,11661,11664,11663,11662,11665,11668,11667,11666,11669,11672,11671,11670,11673,11676,11675,11674,11677,11680,11679,11678,11681,11684,11683,11682,11685,11688,11687,11686,11689,11692,11691,11690,11693,11696,11695,11694,11697,11700,11699,11698,11701,11704,11703,11702,11705,11708,11707,11706,11709,11712,11711,11710,11713,11716,11715,11714,11717,11720,11719,11718,11721,11724,11723,11722,11725,11728,11727,11726,11729,11732,11731,11730,11733,11736,11735,11734,11737,11740,11739,11738,11741,11744,11743,11742,11745,11748,11747,11746,11749,11752,11751,11750,11753,11756,11755,11754,11757, +11760,11759,11758,11761,11764,11763,11762,11765,11768,11767,11766,11769,11772,11771,11770,11773,11776,11775,11774,11777,11780,11779,11778,11781,11784,11783,11782,11785,11788,11787,11786,11789,11792,11791,11790,11793,11796,11795,11794,11797,11800,11799,11798,11801,11804,11803,11802,11805,11808,11807,11806,11809,11812,11811,11810,11813,11816,11815,11814,11817,11820,11819,11818,11821,11824,11823,11822,11825,11828,11827,11826,11829,11832,11831,11830,11833,11836,11835,11834,11837,11840,11839,11838,11841,11844,11843,11842,11845,11848,11847,11846,11849,11852,11851,11850,11853,11856,11855,11854,11857,11860,11859,11858,11861,11864,11863,11862,11865,11868,11867,11866,11869,11872,11871,11870,11873,11876,11875,11874,11877,11880,11879,11878,11881,11884,11883,11882,11885,11888,11887,11886,11889,11892,11891,11890,11893,11896,11895,11894,11897,11900,11899,11898,11901,11904,11903,11902,11905,11908,11907,11906,11909,11912,11911,11910,11913,11916,11915,11914,11917,11920,11919,11918,11921,11924,11923,11922,11925,11928,11927,11926,11929,11932,11931,11930,11933,11936,11935,11934,11937,11940,11939,11938,11941,11944,11943,11942,11945,11948,11947,11946,11949,11952,11951,11950,11953,11956,11955,11954,11957,11960,11959,11958,11961,11964,11963,11962,11965,11968,11967,11966,11969,11972,11971,11970,11973,11976,11975,11974 + } + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: *6076 { + a: 1,1,0,1,0,1,1,0,1,1,1,0,0,1,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,1,1,0,1,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,1,0,1,1,0,1,0,1,0,1,0,0,1,0,1,1,0,1,0,1,0,1,0,1,1,0,1,1,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,0,1,0,1,0,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,0,1,1,0,1,0,1,0,0,1,0,1,0,0,1,1,1,0,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,1,1,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,1,1,0,1,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,1,0,1,0,1,1,1,1,0,1,0,0,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,0,1,0,1,1,1,1,1,1,0,0,1,0,1,0, +1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,0,0,1,1,1,0,1,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0,1,1,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,1,0,1,0,1,1,0,1,0,1,0,1,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,0,1,1,1,0,1,0,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,0,1,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,1,0,1,0,1,1,1,0,1,1,0,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,1,1,0,1,0,0,1,0,1,0,0, +1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,1,1,0,0,1,0,1,1,1,0,0,1,0,1,1,1,0,1,0,1,0,0,0,1,1,0,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,0,0,1,0,0,1,1,1,0,0,1,1,1,1,0,0,1,1,1,0,1,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,1,0,1,1,0,1,1,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,1,1,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,0,0,0,1,0,0,1,0,1,1,1,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,0,1,1,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,1,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0, +1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,1,1,0,0,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0, +0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,0,1,0,1,0,0,1,1,0,1,1,0,0,1,1,0,1,1,0,0,0,0,1,1,1,0,1,0,1,0,0,1,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0,1,0,1,1,1,1,0,0,1,1,1,1,1,0,1,0,0,0,0 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: *1 { + a: 0 + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementBinormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTangent" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementSmoothing" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + NodeAttribute: 2286474511328, "NodeAttribute::", "Null" { + TypeFlags: "Null" + } + NodeAttribute: 2286474508864, "NodeAttribute::", "Null" { + TypeFlags: "Null" + } + Model: 2287400095200, "Model::left_oculus_controller_world", "Root" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-1.11022302462516e-16,-2.77555756156289e-17,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",1,1,1 + P: "filmboxTypeID", "Short", "", "A+UH",2,2,2 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400065040, "Model::b_button_oculus", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.34457862377167,-0.0953068658709526,-1.56308150291443 + P: "Lcl Rotation", "Lcl Rotation", "", "A+L7",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",1,0.999999999999999,1 + P: "filmboxTypeID", "Short", "", "A+UH",5,5,5 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + P: "blendParent3", "Number", "", "A+U",1,0,1 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400097520, "Model::b_trigger_front", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+L7",-0.499064266737443,-0.947063207626343,2.72572286571723 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",6.36110936292704e-15,2.0996630514349e-15,-4.59689543805274e-16 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",1,1,1 + P: "filmboxTypeID", "Short", "", "A+UH",5,5,5 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + P: "blendParent3", "Number", "", "A+U",1,0,1 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400067360, "Model::b_trigger_grip", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+L7",0.494865477391153,-3.57376289367676,-1.3387129700951 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,-6.36110936292703e-15 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",1,1,1 + P: "filmboxTypeID", "Short", "", "A+UH",5,5,5 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + P: "blendParent3", "Number", "", "A+U",1,0,1 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400099840, "Model::b_button_y", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-1.26843535900116,0.123653829097748,0.0535726696252823 + P: "Lcl Rotation", "Lcl Rotation", "", "A+L7",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",0.999999999999999,1,1 + P: "filmboxTypeID", "Short", "", "A+UH",5,5,5 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + P: "blendParent1", "Number", "", "A+U",1,0,1 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400102160, "Model::b_button_x", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-0.522334814071655,0.0643590092658996,-1.30828988552093 + P: "Lcl Rotation", "Lcl Rotation", "", "A+L7",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",0.999999999999999,1,1 + P: "filmboxTypeID", "Short", "", "A+UH",5,5,5 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + P: "blendParent1", "Number", "", "A+U",1,0,1 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400072000, "Model::b_thumbstick", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+L7",0.9354755916908,-0.472996324300766,0.279859692074013 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",6.99722029921974e-14,6.36110936292704e-15,-3.18055468146351e-15 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",1,1,1 + P: "filmboxTypeID", "Short", "", "A+UH",5,5,5 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + P: "blendParent3", "Number", "", "A+U",1,0,1 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400104480, "Model::l_rainier_mesh", "Mesh" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",-19.0946314406652,-0.120237907449915,-0.622680262485757 + P: "ScalingPivot", "Vector3D", "Vector", "",-19.0946314406652,-0.120237907449915,-0.622680262485757 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "AL7",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "AL7",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "AL7",1,1,1 + P: "currentUVSet", "KString", "", "U", "DiffuseUV" + } + Shading: T + Culling: "CullingOff" + } + Model: 2287400106800, "Model::left_laser_begin", "Null" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",-0.9,-0.321028529853374,3.087 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,-6.5,-7 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400109120, "Model::pasted__laser_end_pointer", "Null" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "AL7",0,0,28.94798994644 + P: "Lcl Rotation", "Lcl Rotation", "", "AL7",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "AL7",1,1,1 + } + Shading: Y + Culling: "CullingOff" + } + Pose: 2286474509744, "Pose::skinCluster1", "BindPose" { + Type: "BindPose" + Version: 100 + NbPoseNodes: 8 + PoseNode: { + Node: 2287400104480 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1 + } + } + PoseNode: { + Node: 2287400095200 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-1.11022302462516e-16,-2.77555756156289e-17,0,1 + } + } + PoseNode: { + Node: 2287400065040 + Matrix: *16 { + a: 1,0,0,0,0,0.999999999999999,0,0,0,0,1,0,1.34457862377167,-0.0953068658709526,-1.56308150291443,1 + } + } + PoseNode: { + Node: 2287400097520 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-0.499064266737443,-0.947063207626343,2.72572286571723,1 + } + } + PoseNode: { + Node: 2287400067360 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,0.494865477391153,-3.57376289367676,-1.3387129700951,1 + } + } + PoseNode: { + Node: 2287400099840 + Matrix: *16 { + a: 0.999999999999999,0,0,0,0,1,0,0,0,0,1,0,-1.26843535900116,0.123653829097748,0.0535726696252823,1 + } + } + PoseNode: { + Node: 2287400102160 + Matrix: *16 { + a: 0.999999999999999,0,0,0,0,1,0,0,0,0,1,0,-0.522334814071655,0.0643590092658996,-1.30828988552093,1 + } + } + PoseNode: { + Node: 2287400072000 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,0.9354755916908,-0.472996324300766,0.279859692074013,1 + } + } + } + Material: 2286733916336, "Material::bothControllerMAT", "" { + Version: 102 + ShadingModel: "unknown" + MultiLayer: 0 + Properties70: { + P: "Maya", "Compound", "", "" + P: "Maya|TypeId", "int", "Integer", "",1166017 + P: "Maya|TEX_global_diffuse_cube", "Vector3D", "Vector", "",0,0,0 + P: "Maya|TEX_global_specular_cube", "Vector3D", "Vector", "",0,0,0 + P: "Maya|TEX_brdf_lut", "Vector3D", "Vector", "",0,0,0 + P: "Maya|use_normal_map", "float", "", "",0 + P: "Maya|uv_offset", "Vector2D", "Vector2", "",0,0 + P: "Maya|uv_scale", "Vector2D", "Vector2", "",1,1 + P: "Maya|TEX_normal_map", "Vector3D", "Vector", "",0,0,0 + P: "Maya|use_color_map", "float", "", "",1 + P: "Maya|TEX_color_map", "Vector3D", "Vector", "",0,0,0 + P: "Maya|base_color", "Vector3D", "Vector", "",1,1,1 + P: "Maya|use_metallic_map", "float", "", "",1 + P: "Maya|TEX_metallic_map", "Vector3D", "Vector", "",0,0,0 + P: "Maya|metallic", "float", "", "",1 + P: "Maya|use_roughness_map", "float", "", "",1 + P: "Maya|TEX_roughness_map", "Vector3D", "Vector", "",0,0,0 + P: "Maya|roughness", "float", "", "",1 + P: "Maya|use_emissive_map", "float", "", "",0 + P: "Maya|TEX_emissive_map", "Vector3D", "Vector", "",0,0,0 + P: "Maya|emissive", "Vector3D", "Vector", "",0,0,0 + P: "Maya|emissive_intensity", "float", "", "",0 + P: "Maya|use_ao_map", "float", "", "",0 + P: "Maya|TEX_ao_map", "Vector3D", "Vector", "",0,0,0 + } + } + Deformer: 2286905603984, "Deformer::", "Skin" { + Version: 101 + Link_DeformAcuracy: 50 + SkinningType: "Linear" + } + Deformer: 2286590745904, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *2136 { + 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,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037, +1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447, +1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857, +1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135 + } + Weights: *2136 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,1.11022302462516e-16,2.77555756156289e-17,0,1 + } + TransformLink: *16 { + a: 1,0,0,0,-0,1,0,0,0,-0,1,0,-1.11022302462516e-16,-2.77555756156289e-17,0,1 + } + } + Deformer: 2286590728608, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *61 { + a: 2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287 + } + Weights: *61 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-1.34457862377167,0.0953068658709527,1.56308150291443,1 + } + TransformLink: *16 { + a: 1,0,0,0,-0,0.999999999999999,0,0,0,-0,1,0,1.34457862377167,-0.0953068658709526,-1.56308150291443,1 + } + } + Deformer: 2286590736880, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *147 { + a: 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,2902,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,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007 + } + Weights: *147 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,0.499064266737443,0.947063207626343,-2.72572286571723,1 + } + TransformLink: *16 { + a: 1,0,0,0,-0,1,0,0,0,-0,1,0,-0.499064266737443,-0.947063207626343,2.72572286571723,1 + } + } + Deformer: 2286590730112, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *127 { + a: 2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860 + } + Weights: *127 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-0.494865477391153,3.57376289367676,1.3387129700951,1 + } + TransformLink: *16 { + a: 1,0,0,0,-0,1,0,0,0,-0,1,0,0.494865477391153,-3.57376289367676,-1.3387129700951,1 + } + } + Deformer: 2286590734624, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *91 { + a: 2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733 + } + Weights: *91 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,1.26843535900116,-0.123653829097748,-0.0535726696252823,1 + } + TransformLink: *16 { + a: 0.999999999999999,0,0,0,-0,1,0,0,0,-0,1,0,-1.26843535900116,0.123653829097748,0.0535726696252823,1 + } + } + Deformer: 2286590737632, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *91 { + a: 2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226 + } + Weights: *91 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,0.522334814071656,-0.0643590092658996,1.30828988552094,1 + } + TransformLink: *16 { + a: 0.999999999999999,0,0,0,-0,1,0,0,0,-0,1,0,-0.522334814071655,0.0643590092658996,-1.30828988552094,1 + } + } + Deformer: 2286590745152, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *355 { + a: 2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642 + } + Weights: *355 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-0.9354755916908,0.472996324300766,-0.279859692074013,1 + } + TransformLink: *16 { + a: 1,0,0,0,-0,1,0,0,0,-0,1,0,0.9354755916908,-0.472996324300766,0.279859692074013,1 + } + } + Video: 2286596655536, "Video::metallicRoughnessTexture", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "Z:/shows/avatarsdk/assets/prop/prp00003nextController/source/shade/texture/quest2_controllerBoth_properties512_gltf.tga" + P: "RelPath", "KString", "XRefUrl", "", "Z:\shows\avatarsdk\assets\prop\prp00003nextController\source\shade\texture\quest2_controllerBoth_properties512_gltf.tga" + } + UseMipMap: 0 + Filename: "Z:/shows/avatarsdk/assets/prop/prp00003nextController/source/shade/texture/quest2_controllerBoth_properties512_gltf.tga" + RelativeFilename: "Z:\shows\avatarsdk\assets\prop\prp00003nextController\source\shade\texture\quest2_controllerBoth_properties512_gltf.tga" + } + Video: 2286596660336, "Video::file6", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/midday/specular_cube.dds" + P: "RelPath", "KString", "XRefUrl", "", "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\midday\specular_cube.dds" + } + UseMipMap: 0 + Filename: "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/midday/specular_cube.dds" + RelativeFilename: "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\midday\specular_cube.dds" + } + Video: 2286596661776, "Video::file5", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/midday/diffuse_cube.dds" + P: "RelPath", "KString", "XRefUrl", "", "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\midday\diffuse_cube.dds" + } + UseMipMap: 0 + Filename: "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/midday/diffuse_cube.dds" + RelativeFilename: "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\midday\diffuse_cube.dds" + } + Video: 2286596662736, "Video::file7", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/ibl_brdf_lut.dds" + P: "RelPath", "KString", "XRefUrl", "", "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\ibl_brdf_lut.dds" + } + UseMipMap: 0 + Filename: "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/ibl_brdf_lut.dds" + RelativeFilename: "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\ibl_brdf_lut.dds" + } + Video: 2286553021584, "Video::file4", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "Z:/shows/avatarsdk/assets/prop/prp00003nextController/source/shade/texture/quest2_controllerBoth_color1k.png" + P: "RelPath", "KString", "XRefUrl", "", "Z:\shows\avatarsdk\assets\prop\prp00003nextController\source\shade\texture\quest2_controllerBoth_color1k.png" + } + UseMipMap: 0 + Filename: "Z:/shows/avatarsdk/assets/prop/prp00003nextController/source/shade/texture/quest2_controllerBoth_color1k.png" + RelativeFilename: "Z:\shows\avatarsdk\assets\prop\prp00003nextController\source\shade\texture\quest2_controllerBoth_color1k.png" + } + Texture: 2286596662256, "Texture::metallicRoughnessTexture", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::metallicRoughnessTexture" + Properties70: { + P: "UseMaterial", "bool", "", "",1 + } + Media: "Video::metallicRoughnessTexture" + FileName: "Z:/shows/avatarsdk/assets/prop/prp00003nextController/source/shade/texture/quest2_controllerBoth_properties512_gltf.tga" + RelativeFilename: "Z:\shows\avatarsdk\assets\prop\prp00003nextController\source\shade\texture\quest2_controllerBoth_properties512_gltf.tga" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Texture: 2286596659856, "Texture::file6", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::file6" + Properties70: { + P: "UseMaterial", "bool", "", "",1 + } + Media: "Video::file6" + FileName: "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/midday/specular_cube.dds" + RelativeFilename: "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\midday\specular_cube.dds" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Texture: 2286596665616, "Texture::file5", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::file5" + Properties70: { + P: "UseMaterial", "bool", "", "",1 + } + Media: "Video::file5" + FileName: "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/midday/diffuse_cube.dds" + RelativeFilename: "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\midday\diffuse_cube.dds" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Texture: 2286596656496, "Texture::file7", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::file7" + Properties70: { + P: "UseMaterial", "bool", "", "",1 + } + Media: "Video::file7" + FileName: "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/ibl_brdf_lut.dds" + RelativeFilename: "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\ibl_brdf_lut.dds" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Texture: 2286596660816, "Texture::file4", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::file4" + Properties70: { + P: "UseMaterial", "bool", "", "",1 + } + Media: "Video::file4" + FileName: "Z:/shows/avatarsdk/assets/prop/prp00003nextController/source/shade/texture/quest2_controllerBoth_color1k.png" + RelativeFilename: "Z:\shows\avatarsdk\assets\prop\prp00003nextController\source\shade\texture\quest2_controllerBoth_color1k.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Implementation: 2286443684784, "Implementation::bothControllerMAT_Implementation", "" { + Version: 100 + Properties70: { + P: "ShaderLanguage", "KString", "", "", "SFX" + P: "ShaderLanguageVersion", "KString", "", "", "28" + P: "RenderAPI", "KString", "", "", "SFX_PBS_SHADER" + P: "RootBindingName", "KString", "", "", "root" + P: "ShaderGraph", "Blob", "", "",32740 { + BinaryData: "U0ZCX1dJTiA9IHsgcGFyZW50X21hdGVyaWFsID0gImNvcmUvc3RpbmdyYXlfcmVuZGVyZXIvc2hhZGVyX2ltcG9ydC9zdGFuZGFyZCIgLyoKVmVyc2lvbj0yOApHcm91cFZlcnNpb249LTEuMDAwMDAwCkFkdmFuY2VkPTAKSGVscElEPTAKUGFyZW50TWF0ZXJpYWw9cHJlc2V0cy9TdGFuZGFyZApOdW1iZXJPZk5vZGVzPTMyCiNOVD0yMDE4OSAwCglQQz0zCgluYW1lPTEgdj01MDAwIE1ldGFsbGljX01hcF9Td2l0Y2gKCXBvc3g9MSB2PTIwMDMgMTAyMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgMjQwLjAwMDAwMAoJZ3JvdXA9LTEKCUlTQz00CgkJU1ZUPTUwMjIgMjAwMyAxIDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDIgMSAwIAoJCVNEVj0xLjAwMDAwMAoJCVNWVD01MDIyIDIwMDMgMyAwIDEgCgkJU0NTPXIKCQlTVlQ9NTAyMiAyMDAzIDQgMCAwIAoJT1NDPTEKCQlTVlQ9NTAyMiAyMDAzIDUgCgkJQ0M9MQoJCQlDPTAgMCA1IDUgNSA2IDAKCQkJQ1BDPTAKI05UPTIwMTg5IDAKCVBDPTMKCW5hbWU9MSB2PTUwMDAgRW1pc3NpdmVfTWFwX1N3aXRjaAoJcG9zeD0xIHY9MjAwMyA3NDAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDc4MC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9NAoJCVNWVD01MDIyIDIwMDMgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDEgMCAKCQlTRFY9MS4wMDAwMDAKCQlTVlQ9NTAyMiAzMDAyIDMgMCAxIAoJCVNDUz1yZ2IKCQlTVlQ9NTAyMiAzMDAyIDQgMCAwIAoJT1NDPTEKCQlTVlQ9NTAyMiAzMDAyIDUgCgkJQ0M9MQoJCQlDPTEgMCA1IDEwIDAgMSAwCgkJCUNQQz0wCiNOVD0yMDE4OSAwCglQQz0zCgluYW1lPTEgdj01MDAwIENvbG9yX01hcF9Td2l0Y2gKCXBvc3g9MSB2PTIwMDMgMTAyMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgLTM0MC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9NAoJCVNWVD01MDIyIDIwMDMgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDEgMCAKCQlTRFY9MS4wMDAwMDAKCQlTVlQ9NTAyMiAzMDAyIDMgMCAxIAoJCVNDUz1yZ2IKCQlTVlQ9NTAyMiAzMDAyIDQgMCAwIAoJT1NDPTEKCQlTVlQ9NTAyMiAzMDAyIDUgCgkJQ0M9MQoJCQlDPTIgMCA1IDUgMSAyIDAKCQkJQ1BDPTAKI05UPTIwMTg5IDAKCVBDPTMKCW5hbWU9MSB2PTUwMDAgTm9ybWFsX01hcF9Td2l0Y2gKCXBvc3g9MSB2PTIwMDMgMTAyMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgLTYwLjAwMDAwMAoJZ3JvdXA9LTEKCUlTQz00CgkJU1ZUPTUwMjIgMjAwMyAxIDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDIgMSAwIAoJCVNEVj0xLjAwMDAwMAoJCVNWVD01MDIyIDMwMDIgMyAwIDAgCgkJU1ZUPTUwMjIgMzAwMiA0IDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMiA1IAoJCUNDPTEKCQkJQz0zIDAgNSA1IDQgNSAwCgkJCUNQQz0wCiNOVD0yMDE4OSAwCglQQz0zCgluYW1lPTEgdj01MDAwIFJvdWdobmVzc19NYXBfU3dpdGNoCglwb3N4PTEgdj0yMDAzIDEwMjAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDU0MC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9NAoJCVNWVD01MDIyIDIwMDMgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDEgMCAKCQlTRFY9MS4wMDAwMDAKCQlTVlQ9NTAyMiAyMDAzIDMgMCAxIAoJCVNDUz1yCgkJU1ZUPTUwMjIgMjAwMyA0IDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyA1IAoJCUNDPTEKCQkJQz00IDAgNSA1IDYgNyAwCgkJCUNQQz0wCiNOVD0yMDE3NiAwCglQQz01Cglwb3N4PTEgdj0yMDAzIDEzNjAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDI2MC4wMDAwMDAKCXNoYWRlcnJlc291cmNlPTEgdj01MDAwIGNvcmUvc3RpbmdyYXlfcmVuZGVyZXIvc2hhZGVyX2ltcG9ydC9zdGFuZGFyZAoJcHJlc2V0X3BhdGg9MSB2PTUwMDAgcHJlc2V0cy9TdGFuZGFyZAoJbm9ybWFsc3BhY2U9MiBlPTAgdj01MDEyIDEKCWdyb3VwPS0xCglJU0M9MTMKCQlTVlQ9NTAyMiAzMDAyIDEgMCAwIAoJCVNWVD01MDIyIDMwMDIgMiAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAzIDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDQgMCAwIAoJCVNWVD01MDIyIDMwMDIgNSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyA2IDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDcgMCAwIAoJCVNWVD01MDIyIDMwMDIgOCAwIDAgCgkJU1ZUPTUwMjIgMjAwMyA5IDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDEwIDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDExIDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDE0IDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDE1IDAgMCAKCU9TQz0wCiNOVD0yMDE4OSAwCglQQz0zCgluYW1lPTEgdj01MDAwIEFvX01hcF9Td3RpY2gKCXBvc3g9MSB2PTIwMDMgMTAyMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgMTEwMC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9NAoJCVNWVD01MDIyIDIwMDMgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDEgMCAKCQlTRFY9MS4wMDAwMDAKCQlTVlQ9NTAyMiAyMDAzIDMgMCAxIAoJCVNDUz1yCgkJU1ZUPTUwMjIgMjAwMyA0IDEgMCAKCQlTRFY9MS4wMDAwMDAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyA1IAoJCUNDPTEKCQkJQz02IDAgNSA1IDggOSAwCgkJCUNQQz0wCiNOVD0yMDE3OCAwCglQQz0yCglwb3N4PTEgdj0yMDAzIC0yNjAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDQyMC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAzMDAxIDEgCgkJQ0M9MQoJCQlDPTcgMCAxIDI4IDEgMiAwCgkJCUNQQz0wCiNOVD0yMDE3NyAwCglQQz02Cglu", + "YW1lPTEgdj01MDAwIHJvdWdobmVzc19tYXAKCXBvc3g9MSB2PTIwMDMgNzAwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyA1NDAuMDAwMDAwCgl0ZXh0dXJlcGF0aD0yIGU9MSB2PTUwMDAgWjovc2hvd3MvYXZhdGFyc2RrL2Fzc2V0cy9wcm9wL3BycDAwMDAzbmV4dENvbnRyb2xsZXIvc291cmNlL3NoYWRlL3RleHR1cmUvbmV4dENvbnRyb2xsZXJCb3RoX3Byb3BlcnRpZXMxa19nbHRmLnBuZwoJZW5jb2Rpbmc9MiBlPTAgdj01MDEyIDAKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDQKCWdyb3VwPS0xCglJU0M9MgoJCVNWVD01MDIyIDMwMDEgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMyAzIAoJCUNDPTEKCQkJQz04IDAgMyA0IDIgMyAwCgkJCUNQQz0wCiNOVD0yMDE3NyAwCglQQz00CgluYW1lPTEgdj01MDAwIGVtaXNzaXZlX21hcAoJcG9zeD0xIHY9MjAwMyA0MjAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDc4MC4wMDAwMDAKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDUKCWdyb3VwPS0xCglJU0M9MgoJCVNWVD01MDIyIDMwMDEgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMyAzIAoJCUNDPTEKCQkJQz05IDAgMyAxIDIgMyAwCgkJCUNQQz0wCiNOVD0yMDE4NiAwCglQQz0yCglwb3N4PTEgdj0yMDAzIDEwMjAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDg0MC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9MgoJCVNWVD01MDIyIDMwMDIgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMiAzIAoJCUNDPTEKCQkJQz0xMCAwIDMgNSA3IDggMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NwoJbmFtZT0xIHY9NTAwMCB1c2VfY29sb3JfbWFwCglwb3N4PTEgdj0yMDAzIDcwMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgLTQwMC4wMDAwMDAKCXR5cGU9MiBlPTAgdj01MDEyIDAKCWRlZmF1bHRzY2FsYXI9MiBlPTAgdj0yMDAzIDEuMDAwMDAwCgl1aXR5cGU9MiBlPTAgdj01MDEyIDEKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDEwCglncm91cD0tMQoJSVNDPTAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyAxIAoJCUNDPTEKCQkJQz0xMSAwIDEgMiAwIDEgMAoJCQlDUEM9MAojTlQ9MjAxNzcgMAoJUEM9NQoJbmFtZT0xIHY9NTAwMCBjb2xvcl9tYXAKCXBvc3g9MSB2PTIwMDMgNzAwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyAtMzQwLjAwMDAwMAoJdGV4dHVyZXBhdGg9MiBlPTEgdj01MDAwIFo6L3Nob3dzL2F2YXRhcnNkay9hc3NldHMvcHJvcC9wcnAwMDAwM25leHRDb250cm9sbGVyL3NvdXJjZS9zaGFkZS90ZXh0dXJlL25leHRDb250cm9sbGVyQm90aF9jb2xvcjFrLnBuZwoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgMQoJZ3JvdXA9LTEKCUlTQz0yCgkJU1ZUPTUwMjIgMzAwMSAxIDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDIgMCAwIAoJT1NDPTEKCQlTVlQ9NTAyMiAzMDAzIDMgCgkJQ0M9MQoJCQlDPTEyIDAgMyAyIDIgMyAwCgkJCUNQQz0wCiNOVD0yMDE4NSAwCglQQz03CgluYW1lPTEgdj01MDAwIGJhc2VfY29sb3IKCXBvc3g9MSB2PTIwMDMgNzAwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyAtMjQwLjAwMDAwMAoJdHlwZT0yIGU9MCB2PTUwMTIgMgoJZGVmYXVsdHZlY3RocmVlPTIgZT0wIHY9MzAwMiAxLjAwMDAwMCwxLjAwMDAwMCwxLjAwMDAwMAoJZGVmYXVsdHZlY3Rvcj0yIGU9MCB2PTMwMDMgMC41MDAwMDAsMC41MDAwMDAsMC41MDAwMDAsMC4wMDAwMDAKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDIwCglncm91cD0tMQoJSVNDPTAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMiAxIAoJCUNDPTEKCQkJQz0xMyAwIDEgMiAzIDQgMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NgoJbmFtZT0xIHY9NTAwMCB1c2Vfbm9ybWFsX21hcAoJcG9zeD0xIHY9MjAwMyA3MDAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIC0xMjAuMDAwMDAwCgl0eXBlPTIgZT0wIHY9NTAxMiAwCgl1aXR5cGU9MiBlPTAgdj01MDEyIDEKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDExCglncm91cD0tMQoJSVNDPTAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyAxIAoJCUNDPTEKCQkJQz0xNCAwIDEgMyAwIDEgMAoJCQlDUEM9MAojTlQ9MjAxOTQgMAoJUEM9MgoJcG9zeD0xIHY9MjAwMyA2ODAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDYwLjAwMDAwMAoJZ3JvdXA9LTEKCUlTQz0wCglPU0M9MQoJCVNWVD01MDIyIDMwMDIgMSAKCQlDQz0xCgkJCUM9MTUgMCAxIDMgMyA0IDAKCQkJQ1BDPTAKI05UPTIwMTk1IDAKCVBDPTIKCXBvc3g9MSB2PTIwMDMgNzQwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyAtNjAuMDAwMDAwCglncm91cD0tMQoJSVNDPTEKCQlTVlQ9NTAyMiAzMDAyIDEgMCAxIAoJCVNDUz1yZ2IKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMiAyIAoJCUNDPTEKCQkJQz0xNiAwIDIgMyAyIDMgMAoJCQlDUEM9MAojTlQ9MjAxNzcgMAoJUEM9NQoJbmFtZT0xIHY9NTAwMCBub3JtYWxfbWFwCglwb3N4PTEgdj0yMDAzIDQ0MC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgLTYwLjAwMDAwMAoJZW5jb2Rpbmc9MiBlPTAgdj01MDEyIDIKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDIKCWdyb3VwPS0xCglJU0M9MgoJCVNWVD01MDIyIDMwMDEgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMyAzIAoJCUNDPTEKCQkJQz0xNyAwIDMgMTYgMCAxIDAKCQkJQ1BD", + "PTAKI05UPTIwMTc3IDAKCVBDPTcKCW5hbWU9MSB2PTUwMDAgbWV0YWxsaWNfbWFwCglwb3N4PTEgdj0yMDAzIDcwMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgMjQwLjAwMDAwMAoJdGV4dHVyZXBhdGg9MiBlPTEgdj01MDAwIFo6L3Nob3dzL2F2YXRhcnNkay9hc3NldHMvcHJvcC9wcnAwMDAwM25leHRDb250cm9sbGVyL3NvdXJjZS9zaGFkZS90ZXh0dXJlL25leHRDb250cm9sbGVyQm90aF9wcm9wZXJ0aWVzMWtfZ2x0Zi5wbmcKCWVuY29kaW5nPTIgZT0wIHY9NTAxMiAwCglmaWx0ZXI9MiBlPTAgdj01MDEyIDEKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDMKCWdyb3VwPS0xCglJU0M9MgoJCVNWVD01MDIyIDMwMDEgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMyAzIAoJCUNDPTEKCQkJQz0xOCAwIDMgMCAyIDMgMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NwoJbmFtZT0xIHY9NTAwMCB1c2VfbWV0YWxsaWNfbWFwCglwb3N4PTEgdj0yMDAzIDcwMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgMTgwLjAwMDAwMAoJdHlwZT0yIGU9MCB2PTUwMTIgMAoJZGVmYXVsdHNjYWxhcj0yIGU9MCB2PTIwMDMgMS4wMDAwMDAKCXVpdHlwZT0yIGU9MCB2PTUwMTIgMQoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgMTIKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAyMDAzIDEgCgkJQ0M9MQoJCQlDPTE5IDAgMSAwIDAgMSAwCgkJCUNQQz0wCiNOVD0yMDE4NSAwCglQQz02CgluYW1lPTEgdj01MDAwIG1ldGFsbGljCglwb3N4PTEgdj0yMDAzIDcwMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgMzQwLjAwMDAwMAoJdHlwZT0yIGU9MCB2PTUwMTIgMAoJZGVmYXVsdHNjYWxhcj0yIGU9MCB2PTIwMDMgMS4wMDAwMDAKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDIxCglncm91cD0tMQoJSVNDPTAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyAxIAoJCUNDPTEKCQkJQz0yMCAwIDEgMCAzIDQgMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NwoJbmFtZT0xIHY9NTAwMCB1c2Vfcm91Z2huZXNzX21hcAoJcG9zeD0xIHY9MjAwMyA3MDAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDQ4MC4wMDAwMDAKCXR5cGU9MiBlPTAgdj01MDEyIDAKCWRlZmF1bHRzY2FsYXI9MiBlPTAgdj0yMDAzIDEuMDAwMDAwCgl1aXR5cGU9MiBlPTAgdj01MDEyIDEKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDEzCglncm91cD0tMQoJSVNDPTAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyAxIAoJCUNDPTEKCQkJQz0yMSAwIDEgNCAwIDEgMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NgoJbmFtZT0xIHY9NTAwMCByb3VnaG5lc3MKCXBvc3g9MSB2PTIwMDMgNzAwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyA2NDAuMDAwMDAwCgl0eXBlPTIgZT0wIHY9NTAxMiAwCglkZWZhdWx0c2NhbGFyPTIgZT0wIHY9MjAwMyAxLjAwMDAwMAoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgMjIKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAyMDAzIDEgCgkJQ0M9MQoJCQlDPTIyIDAgMSA0IDMgNCAwCgkJCUNQQz0wCiNOVD0yMDE4NSAwCglQQz01CgluYW1lPTEgdj01MDAwIGVtaXNzaXZlCglwb3N4PTEgdj0yMDAzIDQyMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgODgwLjAwMDAwMAoJdHlwZT0yIGU9MCB2PTUwMTIgMgoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgMjMKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAzMDAyIDEgCgkJQ0M9MQoJCQlDPTIzIDAgMSAxIDMgNCAwCgkJCUNQQz0wCiNOVD0yMDE4NSAwCglQQz02CgluYW1lPTEgdj01MDAwIHVzZV9lbWlzc2l2ZV9tYXAKCXBvc3g9MSB2PTIwMDMgNDIwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyA3MjAuMDAwMDAwCgl0eXBlPTIgZT0wIHY9NTAxMiAwCgl1aXR5cGU9MiBlPTAgdj01MDEyIDEKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDE0Cglncm91cD0tMQoJSVNDPTAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyAxIAoJCUNDPTEKCQkJQz0yNCAwIDEgMSAwIDEgMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NgoJbmFtZT0xIHY9NTAwMCB1c2VfYW9fbWFwCglwb3N4PTEgdj0yMDAzIDcwMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgMTEwMC4wMDAwMDAKCXR5cGU9MiBlPTAgdj01MDEyIDAKCXVpdHlwZT0yIGU9MCB2PTUwMTIgMQoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgMTUKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAyMDAzIDEgCgkJQ0M9MQoJCQlDPTI1IDAgMSA2IDAgMSAwCgkJCUNQQz0wCiNOVD0yMDE3NyAwCglQQz02CgluYW1lPTEgdj01MDAwIGFvX21hcAoJcG9zeD0xIHY9MjAwMyA3MDAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDExNjAuMDAwMDAwCgllbmNvZGluZz0yIGU9MCB2PTUwMTIgMAoJZmlsdGVyPTIgZT0wIHY9NTAxMiAxCgl1aW9yZGVyPTIgZT0wIHY9MjAwMiA2Cglncm91cD0tMQoJSVNDPTIKCQlTVlQ9NTAyMiAzMDAxIDEgMCAwIAoJCVNWVD01MDIyIDIwMDMgMiAwIDAgCglPU0M9MQoJCVNWVD01MDIyIDMwMDMgMyAKCQlDQz0xCgkJCUM9MjYgMCAzIDYgMiAzIDAKCQkJQ1BDPTAKI05UPTIwMTg1IDAKCVBDPTYKCW5hbWU9MSB2PTUwMDAgZW1pc3NpdmVfaW50ZW5zaXR5Cglwb3N4PTEgdj0yMDAzIDc0MC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgOTIwLjAwMDAwMAoJdHlwZT0yIGU9MCB2PTUwMTIgMAoJbWF4cmFuZ2U9MiBlPTAgdj0yMDAzIDEwLjAwMDAw", + "MAoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgNTMKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAyMDAzIDEgCgkJQ0M9MQoJCQlDPTI3IDAgMSAxMCAxIDIgMAoJCQlDUEM9MAojTlQ9MjAxODYgMAoJUEM9MgoJcG9zeD0xIHY9MjAwMyAtNjAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDQwMC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9MgoJCVNWVD01MDIyIDMwMDEgMSAwIDAgCgkJU1ZUPTUwMjIgMzAwMSAyIDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMSAzIAoJCUNDPTEKCQkJQz0yOCAwIDMgMjkgMSAyIDAKCQkJQ1BDPTAKI05UPTIwMTg3IDAKCVBDPTIKCXBvc3g9MSB2PTIwMDMgMTIwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyA0MDAuMDAwMDAwCglncm91cD0tMQoJSVNDPTIKCQlTVlQ9NTAyMiAzMDAxIDEgMCAwIAoJCVNWVD01MDIyIDMwMDEgMiAwIDAgCglPU0M9MQoJCVNWVD01MDIyIDMwMDEgMyAKCQlDQz02CgkJCUM9MjkgMCAzIDEyIDAgMSAwCgkJCUNQQz0wCgkJCUM9MjkgMCAzIDE3IDAgMSAwCgkJCUNQQz0wCgkJCUM9MjkgMCAzIDE4IDAgMSAwCgkJCUNQQz0wCgkJCUM9MjkgMCAzIDggMCAxIDAKCQkJQ1BDPTAKCQkJQz0yOSAwIDMgOSAwIDEgMAoJCQlDUEM9MAoJCQlDPTI5IDAgMyAyNiAwIDEgMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NwoJbmFtZT0xIHY9NTAwMCB1dl9vZmZzZXQKCXBvc3g9MSB2PTIwMDMgLTYwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyAzNDAuMDAwMDAwCgl0eXBlPTIgZT0wIHY9NTAxMiAxCgltaW5yYW5nZT0yIGU9MCB2PTIwMDMgLTEwMDAwMS4wMDAwMDAKCW1heHJhbmdlPTIgZT0wIHY9MjAwMyAxMDAwMDEuMDAwMDAwCgl1aW9yZGVyPTIgZT0wIHY9MjAwMiA2MAoJZ3JvdXA9LTEKCUlTQz0wCglPU0M9MQoJCVNWVD01MDIyIDMwMDEgMSAKCQlDQz0xCgkJCUM9MzAgMCAxIDI5IDAgMSAwCgkJCUNQQz0wCiNOVD0yMDE4NSAwCglQQz05CgluYW1lPTEgdj01MDAwIHV2X3NjYWxlCglwb3N4PTEgdj0yMDAzIC0yNDAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDM0MC4wMDAwMDAKCXR5cGU9MiBlPTAgdj01MDEyIDEKCWRlZmF1bHR2ZWN0d289MiBlPTAgdj0zMDAxIDEuMDAwMDAwLDEuMDAwMDAwCglkZWZhdWx0dmVjdG9yPTIgZT0wIHY9MzAwMyAxLjAwMDAwMCwxLjAwMDAwMCwwLjAwMDAwMCwwLjAwMDAwMAoJbWlucmFuZ2U9MiBlPTAgdj0yMDAzIC0xMDAwMDEuMDAwMDAwCgltYXhyYW5nZT0yIGU9MCB2PTIwMDMgMTAwMDAxLjAwMDAwMAoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgNjEKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAzMDAxIDEgCgkJQ0M9MQoJCQlDPTMxIDAgMSAyOCAwIDEgMAoJCQlDUEM9MAoKICovIH0gCmNvbm5lY3Rpb25zID0gWwoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJhY2E2OTBjYi02MzA1LTRhMmYtYmYzZC02OTE4M2E0OTNkYjMiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjYiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIzIiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiQ0VEN0JCRjMtMEI0OC00MzM1LUI5MzMtMDk1QTQxQ0EwMjk0IiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIzIiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxMiIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjRDQkI0NDgwLTc5RTgtNENFNy1BQzBGLThCMDlCQUYxMjM5MCIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMyIgCgkJfSAKCQlzZWxlY3QgPSBbIAoJCQkicmdiIiAKCQkJXSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTMiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICIxZWU5YWYxZi02NWYyLTQ3MzktYWQyOC01ZWE2YTBlNjhmYzMiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTMiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjMwIiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiMWVlOWFmMWYtNjVmMi00NzM5LWFkMjgtNWVhNmEwZTY4ZmMzIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjE4IiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIzMCIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjFlZTlhZjFmLTY1ZjItNDczOS1hZDI4LTVlYTZhMGU2OGZjMyIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxOSIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9p", + "ZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMzAiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICIxZWU5YWYxZi02NWYyLTQ3MzktYWQyOC01ZWE2YTBlNjhmYzMiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjkiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjMwIiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiMWVlOWFmMWYtNjVmMi00NzM5LWFkMjgtNWVhNmEwZTY4ZmMzIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjEwIiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIzMCIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjFlZTlhZjFmLTY1ZjItNDczOS1hZDI4LTVlYTZhMGU2OGZjMyIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyNyIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMzAiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJmNzI1OTdjNC03NDg3LTQxOWEtYWZmYi1kZjY5MGU2NTgyZTEiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMzAiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjMxIiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiMDgwNmRiMGQtMmM0YS00M2NhLTk5Y2MtZjVhMmYwMzZhOGU4IiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjMwIiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyOSIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gImM1ODIzYzc1LTRhZTUtNGM3MS1iMDcwLTMxNWZhNGQwM2U4ZSIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyOSIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMzIiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICIyNDJkMTY0OC1hNjI2LTQ0NWItOTUzNC1iY2NlYzA5NDExMmYiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMjkiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI4IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiRjJGNzRFNTgtNDAyRC00NzJCLTg3REQtMzMxRTAwREI0MTZDIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIzIiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxNCIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gImIxYzg2NDA4LWFhY2ItNDQ2Ni1iNzU0LWRkY2YzN2EzYTJjOCIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNiIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjQiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJDRUQ3QkJGMy0wQjQ4LTQzMzUtQjkzMy0wOTVBNDFDQTAyOTQiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjQiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjE1IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiNENCQjQ0ODAtNzlFOC00Q0U3LUFDMEYtOEIwOUJBRjEyMzkwIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI0IiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxNyIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gImY3MjU5N2M0LTc0ODctNDE5YS1hZmZiLWRmNjkwZTY1ODJlMSIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxNyIgCgkJfSAKCQlzZWxlY3QgPSBbIAoJCQkicmdiIiAKCQkJXSAKCQlzb3VyY2Ug", + "PSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTgiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJGMkY3NEU1OC00MDJELTQ3MkItODdERC0zMzFFMDBEQjQxNkMiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjQiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjE2IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiYWQ1ZTA1MmYtZDMxNi00YTBmLThiNzktNTNjMzgyMDRkNjFiIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI2IiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMSIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIkNFRDdCQkYzLTBCNDgtNDMzNS1COTMzLTA5NUE0MUNBMDI5NCIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMSIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMjAiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICI0Q0JCNDQ4MC03OUU4LTRDRTctQUMwRi04QjA5QkFGMTIzOTAiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjEiIAoJCX0gCgkJc2VsZWN0ID0gWyAKCQkJInIiIAoJCQldIAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxOSIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIkYyRjc0RTU4LTQwMkQtNDcyQi04N0RELTMzMUUwMERCNDE2QyIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMSIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMjEiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICIzNmJhNDZkMi1mNmVhLTRlNjAtYTQyOC1mZGMxN2M3NWJjNjIiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjYiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI1IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiQ0VEN0JCRjMtMEI0OC00MzM1LUI5MzMtMDk1QTQxQ0EwMjk0IiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI1IiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyMiIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjRDQkI0NDgwLTc5RTgtNENFNy1BQzBGLThCMDlCQUYxMjM5MCIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNSIgCgkJfSAKCQlzZWxlY3QgPSBbIAoJCQkiciIgCgkJCV0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI5IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiRjJGNzRFNTgtNDAyRC00NzJCLTg3REQtMzMxRTAwREI0MTZDIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI1IiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyMyIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjExNjRhNWVmLTQ1NjMtNDc5NS1iM2I1LTQyODI1ZDZkZjAzNyIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNiIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTEiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJjNTgyM2M3NS00YWU1LTRjNzEtYjA3MC0zMTVmYTRkMDNlOGUiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTEiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIyIiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiQ0VEN0JCRjMtMEI0OC00MzM1LUI5MzMtMDk1QTQxQ0EwMjk0IiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEt", + "YWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIyIiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyNSIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjRDQkI0NDgwLTc5RTgtNENFNy1BQzBGLThCMDlCQUYxMjM5MCIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMiIgCgkJfSAKCQlzZWxlY3QgPSBbIAoJCQkicmdiIiAKCQkJXSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTAiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJGMkY3NEU1OC00MDJELTQ3MkItODdERC0zMzFFMDBEQjQxNkMiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjIiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjI0IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiMjQyZDE2NDgtYTYyNi00NDViLTk1MzQtYmNjZWMwOTQxMTJmIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjExIiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyOCIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjU5ZmQxY2Y0LWY3MzYtNDcwZC04NTEwLTFkZDdjMDE2NjM5ZSIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNiIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjciIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJDRUQ3QkJGMy0wQjQ4LTQzMzUtQjkzMy0wOTVBNDFDQTAyOTQiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjciIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjI2IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiNENCQjQ0ODAtNzlFOC00Q0U3LUFDMEYtOEIwOUJBRjEyMzkwIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI3IiAKCQl9IAoJCXNlbGVjdCA9IFsgCgkJCSJyIiAKCQkJXSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMjciIAoJCX0gCgl9IApdCmNvbnN0YW50cyA9IFsKCXsgCgkJY29ubmVjdG9yX2lkID0gIjM5QkM3NjE5LTI3NjgtNDgwQi1BQ0ZELTYzRkE2NkVGNjkwNSIgCgkJaWQgPSAiMWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIzIiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjMiIAoJCXZhbHVlID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKCXsgCgkJY29ubmVjdG9yX2lkID0gIjM5QkM3NjE5LTI3NjgtNDgwQi1BQ0ZELTYzRkE2NkVGNjkwNSIgCgkJaWQgPSAiMWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI0IiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjQiIAoJCXZhbHVlID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKCXsgCgkJY29ubmVjdG9yX2lkID0gIjM5QkM3NjE5LTI3NjgtNDgwQi1BQ0ZELTYzRkE2NkVGNjkwNSIgCgkJaWQgPSAiMWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIxIiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjEiIAoJCXZhbHVlID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKCXsgCgkJY29ubmVjdG9yX2lkID0gIjM5QkM3NjE5LTI3NjgtNDgwQi1BQ0ZELTYzRkE2NkVGNjkwNSIgCgkJaWQgPSAiMWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI1IiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjUiIAoJCXZhbHVlID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKCXsgCgkJY29ubmVjdG9yX2lkID0gIjM5QkM3NjE5LTI3NjgtNDgwQi1BQ0ZELTYzRkE2NkVGNjkwNSIgCgkJaWQgPSAiMWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIyIiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjIiIAoJCXZhbHVlID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKCXsgCgkJY29ubmVjdG9yX2lkID0gIjM5QkM3NjE5LTI3NjgtNDgwQi1BQ0ZELTYzRkE2NkVGNjkwNSIgCgkJaWQgPSAiMWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI3IiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjciIAoJCXZhbHVl", + "ID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKCXsgCgkJY29ubmVjdG9yX2lkID0gIkYyRjc0RTU4LTQwMkQtNDcyQi04N0RELTMzMUUwMERCNDE2QyIgCgkJaWQgPSAiM2JiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI3IiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjciIAoJCXZhbHVlID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKXQpub2RlcyA9IFsKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNiIgCgkJb3B0aW9ucyA9IFsgCgkJCSIyYjEzNjQ0Ny02NzZlLTQ5NDMtOTk3Yi0wNGEyOGFlNjg0OTciCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTEzNjAgCgkJCTI2MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIlN0YW5kYXJkIEJhc2UiIAoJCXR5cGUgPSAiY29yZS9zdGluZ3JheV9yZW5kZXJlci9vdXRwdXRfbm9kZXMvc3RhbmRhcmRfYmFzZSIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIzIiAKCQlvcHRpb25zID0gWyAKCQkJIjlBODQyODJCLUYxQTItNDZENC05RkM0LTVBNzZGQzlCMzBERCIKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJMTAyMCAKCQkJLTM0MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIkNvbG9yIE1hcCBTd2l0Y2giIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvaWYiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQkJbWF0ZXJpYWxfdmFyaWFibGUgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIlVzZSBDb2xvciBNYXAiIAoJCQkJbmFtZSA9ICJ1c2VfY29sb3JfbWFwIiAKCQkJCXVpID0geyAKCQkJCQltYXggPSAxIAoJCQkJCW1pbiA9IDAuMDAwMDAwIAoJCQkJCXN0ZXAgPSAxIAoJCQkJCW9yZGVyID0gMTAgCgkJCQkJdWlfdHlwZSA9ICJjaGVja2JveCIgCgkJCQl9IAoJCQkJdHlwZSA9ICJmbG9hdCIgCgkJCQl2YWx1ZSA9IDEuMDAwMDAwIAoJCQl9IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjEyIiAKCQlvcHRpb25zID0gWyAKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNzAwIAoJCQktNDAwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiVXNlIENvbG9yIE1hcCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9tYXRlcmlhbF92YXJpYWJsZSIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjEzIiAKCQlvcHRpb25zID0gWyAKCQkJIjFlMDY3NDY0LTEyZDgtNDgyNi05YjcyLWNmZDU3NjUwMDNlMyIKCQkJImZiM2Y3MDliLWE1NGEtNGU5My1hYzlmLWU5ZmM3NmZiOGJjZCIKCQkJIjVkZDU5YjNkLTE3NjItNGExNC05OTMwLTc1MDAyMzBlZjNkYiIKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNzAwIAoJCQktMzQwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCQl0ZXh0dXJlX21hcCA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiQ29sb3IgTWFwIiAKCQkJCXNsb3RfbmFtZSA9ICJjb2xvcl9tYXAiIAoJCQkJdWkgPSB7IAoJCQkJCW9yZGVyID0gMSAKCQkJCX0gCgkJCX0gCgkJfSAKCQl0aXRsZSA9ICJDb2xvciBNYXAiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvc2FtcGxlX3RleHR1cmUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIzMCIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTEyMCAKCQkJNDAwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiQWRkIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL2FkZCIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCQltYXRlcmlhbF92YXJpYWJsZSA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiVXYgT2Zmc2V0IiAKCQkJCW5hbWUgPSAidXZfb2Zmc2V0IiAKCQkJCXVpID0geyAKCQkJCQltYXggPSBbIDEwMDAwMS4wMDAwMDAgMTAwMDAxLjAwMDAwMCBdIAoJCQkJCW1pbiA9IFsgLTEwMDAwMS4wMDAwMDAgLTEwMDAwMS4wMDAwMDAgXSAKCQkJCQlzdGVwID0gWyAwLjAxIDAuMDEgXSAKCQkJCQlvcmRlciA9IDYwIAoJCQkJfSAKCQkJCXR5cGUgPSAiZmxvYXQyIiAKCQkJCXZhbHVlID0gWzAuMDAwMDAwIDAuMDAwMDAwXSAKCQkJfSAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIzMSIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCS02MCAKCQkJMzQwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiVXYgT2Zmc2V0IiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL21hdGVyaWFsX3ZhcmlhYmxlIiAKCX0gCgl7IAoJ", + "CWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMjkiIAoJCW9wdGlvbnMgPSBbIAoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQktNjAgCgkJCTQwMCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIk11bHRpcGx5IiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL211bCIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCQltYXRlcmlhbF92YXJpYWJsZSA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiVXYgU2NhbGUiIAoJCQkJbmFtZSA9ICJ1dl9zY2FsZSIgCgkJCQl1aSA9IHsgCgkJCQkJbWF4ID0gWyAxMDAwMDEuMDAwMDAwIDEwMDAwMS4wMDAwMDAgXSAKCQkJCQltaW4gPSBbIC0xMDAwMDEuMDAwMDAwIC0xMDAwMDEuMDAwMDAwIF0gCgkJCQkJc3RlcCA9IFsgMC4wMSAwLjAxIF0gCgkJCQkJb3JkZXIgPSA2MSAKCQkJCX0gCgkJCQl0eXBlID0gImZsb2F0MiIgCgkJCQl2YWx1ZSA9IFsxLjAwMDAwMCAxLjAwMDAwMF0gCgkJCX0gCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMzIiIAoJCW9wdGlvbnMgPSBbIAoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQktMjQwIAoJCQkzNDAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJVdiBTY2FsZSIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9tYXRlcmlhbF92YXJpYWJsZSIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI4IiAKCQlvcHRpb25zID0gWyAKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJLTI2MCAKCQkJNDIwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiVGV4Y29vcmQwIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL3RleHR1cmVfY29vcmRpbmF0ZTAiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQkJbWF0ZXJpYWxfdmFyaWFibGUgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIkJhc2UgQ29sb3IiIAoJCQkJbmFtZSA9ICJiYXNlX2NvbG9yIiAKCQkJCXVpID0geyAKCQkJCQltYXggPSBbIDEuMDAwMDAwIDEuMDAwMDAwIDEuMDAwMDAwIF0gCgkJCQkJbWluID0gWyAwLjAwMDAwMCAwLjAwMDAwMCAwLjAwMDAwMCBdIAoJCQkJCXN0ZXAgPSBbIDAuMDEgMC4wMSAwLjAxIF0gCgkJCQkJb3JkZXIgPSAyMCAKCQkJCQl1aV90eXBlID0gImNvbG9yIiAKCQkJCX0gCgkJCQl0eXBlID0gImZsb2F0MyIgCgkJCQl2YWx1ZSA9IFsxLjAwMDAwMCAxLjAwMDAwMCAxLjAwMDAwMF0gCgkJCX0gCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTQiIAoJCW9wdGlvbnMgPSBbIAoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQk3MDAgCgkJCS0yNDAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJCYXNlIENvbG9yIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL21hdGVyaWFsX3ZhcmlhYmxlIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjQiIAoJCW9wdGlvbnMgPSBbIAoJCQkiOUE4NDI4MkItRjFBMi00NkQ0LTlGQzQtNUE3NkZDOUIzMEREIgoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQkxMDIwIAoJCQktNjAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJOb3JtYWwgTWFwIFN3aXRjaCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9pZiIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCQltYXRlcmlhbF92YXJpYWJsZSA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiVXNlIE5vcm1hbCBNYXAiIAoJCQkJbmFtZSA9ICJ1c2Vfbm9ybWFsX21hcCIgCgkJCQl1aSA9IHsgCgkJCQkJbWF4ID0gMSAKCQkJCQltaW4gPSAwLjAwMDAwMCAKCQkJCQlzdGVwID0gMSAKCQkJCQlvcmRlciA9IDExIAoJCQkJCXVpX3R5cGUgPSAiY2hlY2tib3giIAoJCQkJfSAKCQkJCXR5cGUgPSAiZmxvYXQiIAoJCQkJdmFsdWUgPSAwLjAwMDAwMCAKCQkJfSAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxNSIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTcwMCAKCQkJLTEyMCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIlVzZSBOb3JtYWwgTWFwIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL21hdGVyaWFsX3ZhcmlhYmxlIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTciIAoJCW9wdGlvbnMgPSBbIAoJCQkiMGEwZmI1YWQtMTQ1ZC00MjI5LWFiZDQtNWIzNjU2MjYwN2IzIgoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQk3NDAgCgkJCS02MCAKCQldIAoJCXNh", + "bXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIlRhbmdlbnQgVG8gV29ybGQiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvdGFuZ2VudF90b193b3JsZCIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjE4IiAKCQlvcHRpb25zID0gWyAKCQkJIjFlMDY3NDY0LTEyZDgtNDgyNi05YjcyLWNmZDU3NjUwMDNlMyIKCQkJIjkwZTIwODI2LTg2ODktNDJmYS04ZTI0LWY0ODRlYzY0YzVjMyIKCQkJIjVkZDU5YjNkLTE3NjItNGExNC05OTMwLTc1MDAyMzBlZjNkYiIKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNDQwIAoJCQktNjAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJCXRleHR1cmVfbWFwID0geyAKCQkJCWRpc3BsYXlfbmFtZSA9ICJOb3JtYWwgTWFwIiAKCQkJCXNsb3RfbmFtZSA9ICJub3JtYWxfbWFwIiAKCQkJCXVpID0geyAKCQkJCQlvcmRlciA9IDIgCgkJCQl9IAoJCQl9IAoJCX0gCgkJdGl0bGUgPSAiTm9ybWFsIE1hcCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9zYW1wbGVfdGV4dHVyZSIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjE2IiAKCQlvcHRpb25zID0gWyAKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNjgwIAoJCQk2MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIldvcmxkIE5vcm1hbCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy93b3JsZF9zcGFjZV9ub3JtYWwiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMSIgCgkJb3B0aW9ucyA9IFsgCgkJCSI5QTg0MjgyQi1GMUEyLTQ2RDQtOUZDNC01QTc2RkM5QjMwREQiCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTEwMjAgCgkJCTI0MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIk1ldGFsbGljIE1hcCBTd2l0Y2giIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvaWYiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQkJbWF0ZXJpYWxfdmFyaWFibGUgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIlVzZSBNZXRhbGxpYyBNYXAiIAoJCQkJbmFtZSA9ICJ1c2VfbWV0YWxsaWNfbWFwIiAKCQkJCXVpID0geyAKCQkJCQltYXggPSAxIAoJCQkJCW1pbiA9IDAuMDAwMDAwIAoJCQkJCXN0ZXAgPSAxIAoJCQkJCW9yZGVyID0gMTIgCgkJCQkJdWlfdHlwZSA9ICJjaGVja2JveCIgCgkJCQl9IAoJCQkJdHlwZSA9ICJmbG9hdCIgCgkJCQl2YWx1ZSA9IDEuMDAwMDAwIAoJCQl9IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjIwIiAKCQlvcHRpb25zID0gWyAKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNzAwIAoJCQkxODAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJVc2UgTWV0YWxsaWMgTWFwIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL21hdGVyaWFsX3ZhcmlhYmxlIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTkiIAoJCW9wdGlvbnMgPSBbIAoJCQkiZjY2OWEzYTYtMDM3Ni00MTg3LTg0MGUtODAwMDBlMjkzOWQ1IgoJCQkiZTk0ZTUzZTYtNDliNi00MTk0LWE3NDctOGYwNjRhNTkzMmUwIgoJCQkiNWRkNTliM2QtMTc2Mi00YTE0LTk5MzAtNzUwMDIzMGVmM2RiIgoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQk3MDAgCgkJCTI0MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQkJdGV4dHVyZV9tYXAgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIk1ldGFsbGljIE1hcCIgCgkJCQlzbG90X25hbWUgPSAibWV0YWxsaWNfbWFwIiAKCQkJCXVpID0geyAKCQkJCQlvcmRlciA9IDMgCgkJCQl9IAoJCQl9IAoJCX0gCgkJdGl0bGUgPSAiTWV0YWxsaWMgTWFwIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL3NhbXBsZV90ZXh0dXJlIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJCW1hdGVyaWFsX3ZhcmlhYmxlID0geyAKCQkJCWRpc3BsYXlfbmFtZSA9ICJNZXRhbGxpYyIgCgkJCQluYW1lID0gIm1ldGFsbGljIiAKCQkJCXVpID0geyAKCQkJCQltYXggPSAxLjAwMDAwMCAKCQkJCQltaW4gPSAwLjAwMDAwMCAKCQkJCQlzdGVwID0gMC4wMSAKCQkJCQlvcmRlciA9IDIxIAoJCQkJfSAKCQkJCXR5cGUgPSAiZmxvYXQiIAoJCQkJdmFsdWUgPSAxLjAwMDAwMCAKCQkJfSAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyMSIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTcwMCAKCQkJMzQwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiTWV0YWxsaWMiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvbWF0ZXJpYWxfdmFy", + "aWFibGUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNSIgCgkJb3B0aW9ucyA9IFsgCgkJCSI5QTg0MjgyQi1GMUEyLTQ2RDQtOUZDNC01QTc2RkM5QjMwREQiCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTEwMjAgCgkJCTU0MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIlJvdWdobmVzcyBNYXAgU3dpdGNoIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL2lmIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJCW1hdGVyaWFsX3ZhcmlhYmxlID0geyAKCQkJCWRpc3BsYXlfbmFtZSA9ICJVc2UgUm91Z2huZXNzIE1hcCIgCgkJCQluYW1lID0gInVzZV9yb3VnaG5lc3NfbWFwIiAKCQkJCXVpID0geyAKCQkJCQltYXggPSAxIAoJCQkJCW1pbiA9IDAuMDAwMDAwIAoJCQkJCXN0ZXAgPSAxIAoJCQkJCW9yZGVyID0gMTMgCgkJCQkJdWlfdHlwZSA9ICJjaGVja2JveCIgCgkJCQl9IAoJCQkJdHlwZSA9ICJmbG9hdCIgCgkJCQl2YWx1ZSA9IDEuMDAwMDAwIAoJCQl9IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjIyIiAKCQlvcHRpb25zID0gWyAKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNzAwIAoJCQk0ODAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJVc2UgUm91Z2huZXNzIE1hcCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9tYXRlcmlhbF92YXJpYWJsZSIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI5IiAKCQlvcHRpb25zID0gWyAKCQkJIjFlMDY3NDY0LTEyZDgtNDgyNi05YjcyLWNmZDU3NjUwMDNlMyIKCQkJImU5NGU1M2U2LTQ5YjYtNDE5NC1hNzQ3LThmMDY0YTU5MzJlMCIKCQkJIjVkZDU5YjNkLTE3NjItNGExNC05OTMwLTc1MDAyMzBlZjNkYiIKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNzAwIAoJCQk1NDAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJCXRleHR1cmVfbWFwID0geyAKCQkJCWRpc3BsYXlfbmFtZSA9ICJSb3VnaG5lc3MgTWFwIiAKCQkJCXNsb3RfbmFtZSA9ICJyb3VnaG5lc3NfbWFwIiAKCQkJCXVpID0geyAKCQkJCQlvcmRlciA9IDQgCgkJCQl9IAoJCQl9IAoJCX0gCgkJdGl0bGUgPSAiUm91Z2huZXNzIE1hcCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9zYW1wbGVfdGV4dHVyZSIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCQltYXRlcmlhbF92YXJpYWJsZSA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiUm91Z2huZXNzIiAKCQkJCW5hbWUgPSAicm91Z2huZXNzIiAKCQkJCXVpID0geyAKCQkJCQltYXggPSAxLjAwMDAwMCAKCQkJCQltaW4gPSAwLjAwMDAwMCAKCQkJCQlzdGVwID0gMC4wMSAKCQkJCQlvcmRlciA9IDIyIAoJCQkJfSAKCQkJCXR5cGUgPSAiZmxvYXQiIAoJCQkJdmFsdWUgPSAxLjAwMDAwMCAKCQkJfSAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyMyIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTcwMCAKCQkJNjQwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiUm91Z2huZXNzIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL21hdGVyaWFsX3ZhcmlhYmxlIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTEiIAoJCW9wdGlvbnMgPSBbIAoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQkxMDIwIAoJCQk4NDAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJNdWx0aXBseSIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9tdWwiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMiIgCgkJb3B0aW9ucyA9IFsgCgkJCSI5QTg0MjgyQi1GMUEyLTQ2RDQtOUZDNC01QTc2RkM5QjMwREQiCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTc0MCAKCQkJNzgwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiRW1pc3NpdmUgTWFwIFN3aXRjaCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9pZiIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCQltYXRlcmlhbF92YXJpYWJsZSA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiVXNlIEVtaXNzaXZlIE1hcCIgCgkJCQluYW1lID0gInVzZV9lbWlzc2l2ZV9tYXAiIAoJCQkJdWkgPSB7IAoJCQkJCW1heCA9IDEgCgkJCQkJbWluID0gMC4wMDAwMDAgCgkJCQkJc3RlcCA9IDEgCgkJCQkJb3JkZXIgPSAxNCAKCQkJCQl1aV90eXBlID0gImNoZWNrYm94IiAKCQkJCX0gCgkJCQl0eXBlID0gImZsb2F0IiAKCQkJCXZh", + "bHVlID0gMC4wMDAwMDAgCgkJCX0gCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMjUiIAoJCW9wdGlvbnMgPSBbIAoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQk0MjAgCgkJCTcyMCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIlVzZSBFbWlzc2l2ZSBNYXAiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvbWF0ZXJpYWxfdmFyaWFibGUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxMCIgCgkJb3B0aW9ucyA9IFsgCgkJCSIxZTA2NzQ2NC0xMmQ4LTQ4MjYtOWI3Mi1jZmQ1NzY1MDAzZTMiCgkJCSJmYjNmNzA5Yi1hNTRhLTRlOTMtYWM5Zi1lOWZjNzZmYjhiY2QiCgkJCSI1ZGQ1OWIzZC0xNzYyLTRhMTQtOTkzMC03NTAwMjMwZWYzZGIiCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTQyMCAKCQkJNzgwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCQl0ZXh0dXJlX21hcCA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiRW1pc3NpdmUgTWFwIiAKCQkJCXNsb3RfbmFtZSA9ICJlbWlzc2l2ZV9tYXAiIAoJCQkJdWkgPSB7IAoJCQkJCW9yZGVyID0gNSAKCQkJCX0gCgkJCX0gCgkJfSAKCQl0aXRsZSA9ICJFbWlzc2l2ZSBNYXAiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvc2FtcGxlX3RleHR1cmUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQkJbWF0ZXJpYWxfdmFyaWFibGUgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIkVtaXNzaXZlIiAKCQkJCW5hbWUgPSAiZW1pc3NpdmUiIAoJCQkJdWkgPSB7IAoJCQkJCW1heCA9IFsgMS4wMDAwMDAgMS4wMDAwMDAgMS4wMDAwMDAgXSAKCQkJCQltaW4gPSBbIDAuMDAwMDAwIDAuMDAwMDAwIDAuMDAwMDAwIF0gCgkJCQkJc3RlcCA9IFsgMC4wMSAwLjAxIDAuMDEgXSAKCQkJCQlvcmRlciA9IDIzIAoJCQkJCXVpX3R5cGUgPSAiY29sb3IiIAoJCQkJfSAKCQkJCXR5cGUgPSAiZmxvYXQzIiAKCQkJCXZhbHVlID0gWzAuMDAwMDAwIDAuMDAwMDAwIDAuMDAwMDAwXSAKCQkJfSAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyNCIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTQyMCAKCQkJODgwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiRW1pc3NpdmUiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvbWF0ZXJpYWxfdmFyaWFibGUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQkJbWF0ZXJpYWxfdmFyaWFibGUgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIkVtaXNzaXZlIEludGVuc2l0eSIgCgkJCQluYW1lID0gImVtaXNzaXZlX2ludGVuc2l0eSIgCgkJCQl1aSA9IHsgCgkJCQkJbWF4ID0gMTAuMDAwMDAwIAoJCQkJCW1pbiA9IDAuMDAwMDAwIAoJCQkJCXN0ZXAgPSAwLjAxIAoJCQkJCW9yZGVyID0gNTMgCgkJCQl9IAoJCQkJdHlwZSA9ICJmbG9hdCIgCgkJCQl2YWx1ZSA9IDAuMDAwMDAwIAoJCQl9IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjI4IiAKCQlvcHRpb25zID0gWyAKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNzQwIAoJCQk5MjAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJFbWlzc2l2ZSBJbnRlbnNpdHkiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvbWF0ZXJpYWxfdmFyaWFibGUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNyIgCgkJb3B0aW9ucyA9IFsgCgkJCSI5QTg0MjgyQi1GMUEyLTQ2RDQtOUZDNC01QTc2RkM5QjMwREQiCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTEwMjAgCgkJCTExMDAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJBbyBNYXAgU3d0aWNoIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL2lmIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJCW1hdGVyaWFsX3ZhcmlhYmxlID0geyAKCQkJCWRpc3BsYXlfbmFtZSA9ICJVc2UgQW8gTWFwIiAKCQkJCW5hbWUgPSAidXNlX2FvX21hcCIgCgkJCQl1aSA9IHsgCgkJCQkJbWF4ID0gMSAKCQkJCQltaW4gPSAwLjAwMDAwMCAKCQkJCQlzdGVwID0gMSAKCQkJCQlvcmRlciA9IDE1IAoJCQkJCXVpX3R5cGUgPSAiY2hlY2tib3giIAoJCQkJfSAKCQkJCXR5cGUgPSAiZmxvYXQiIAoJCQkJdmFsdWUgPSAwLjAwMDAwMCAKCQkJfSAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyNiIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTcwMCAKCQkJMTEwMCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIlVzZSBBbyBNYXAiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvbWF0ZXJpYWxfdmFyaWFibGUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYw", + "IAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyNyIgCgkJb3B0aW9ucyA9IFsgCgkJCSJmNjY5YTNhNi0wMzc2LTQxODctODQwZS04MDAwMGUyOTM5ZDUiCgkJCSJlOTRlNTNlNi00OWI2LTQxOTQtYTc0Ny04ZjA2NGE1OTMyZTAiCgkJCSI1ZGQ1OWIzZC0xNzYyLTRhMTQtOTkzMC03NTAwMjMwZWYzZGIiCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTcwMCAKCQkJMTE2MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQkJdGV4dHVyZV9tYXAgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIkFvIE1hcCIgCgkJCQlzbG90X25hbWUgPSAiYW9fbWFwIiAKCQkJCXVpID0geyAKCQkJCQlvcmRlciA9IDYgCgkJCQl9IAoJCQl9IAoJCX0gCgkJdGl0bGUgPSAiQW8gTWFwIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL3NhbXBsZV90ZXh0dXJlIiAKCX0gCl0KdmVyc2lvbiA9IDMKAA==" + } + } + } + BindingTable: 2285967148752, "BindingTable::root 6", "" { + Version: 100 + Properties70: { + P: "TargetName", "KString", "", "", "root" + P: "TargetType", "KString", "", "", "shader" + } + Entry: "Maya|use_metallic_map", "FbxPropertyEntry", "use_metallic_map", "FbxSemanticEntry" + Entry: "Maya|base_color", "FbxPropertyEntry", "base_color", "FbxSemanticEntry" + Entry: "Maya|use_ao_map", "FbxPropertyEntry", "use_ao_map", "FbxSemanticEntry" + Entry: "Maya|TEX_emissive_map", "FbxPropertyEntry", "TEX_emissive_map", "FbxSemanticEntry" + Entry: "Maya|TEX_metallic_map", "FbxPropertyEntry", "TEX_metallic_map", "FbxSemanticEntry" + Entry: "Maya|TEX_ao_map", "FbxPropertyEntry", "TEX_ao_map", "FbxSemanticEntry" + Entry: "Maya|uv_offset", "FbxPropertyEntry", "uv_offset", "FbxSemanticEntry" + Entry: "Maya|emissive_intensity", "FbxPropertyEntry", "emissive_intensity", "FbxSemanticEntry" + Entry: "Maya|metallic", "FbxPropertyEntry", "metallic", "FbxSemanticEntry" + Entry: "Maya|TEX_global_specular_cube", "FbxPropertyEntry", "TEX_global_specular_cube", "FbxSemanticEntry" + Entry: "Maya|use_roughness_map", "FbxPropertyEntry", "use_roughness_map", "FbxSemanticEntry" + Entry: "Maya|use_normal_map", "FbxPropertyEntry", "use_normal_map", "FbxSemanticEntry" + Entry: "Maya|use_color_map", "FbxPropertyEntry", "use_color_map", "FbxSemanticEntry" + Entry: "Maya|emissive", "FbxPropertyEntry", "emissive", "FbxSemanticEntry" + Entry: "Maya|use_emissive_map", "FbxPropertyEntry", "use_emissive_map", "FbxSemanticEntry" + Entry: "Maya|uv_scale", "FbxPropertyEntry", "uv_scale", "FbxSemanticEntry" + Entry: "Maya|TEX_global_diffuse_cube", "FbxPropertyEntry", "TEX_global_diffuse_cube", "FbxSemanticEntry" + Entry: "Maya|TEX_roughness_map", "FbxPropertyEntry", "TEX_roughness_map", "FbxSemanticEntry" + Entry: "Maya|roughness", "FbxPropertyEntry", "roughness", "FbxSemanticEntry" + Entry: "Maya|TEX_brdf_lut", "FbxPropertyEntry", "TEX_brdf_lut", "FbxSemanticEntry" + Entry: "Maya|TEX_color_map", "FbxPropertyEntry", "TEX_color_map", "FbxSemanticEntry" + Entry: "Maya|TEX_normal_map", "FbxPropertyEntry", "TEX_normal_map", "FbxSemanticEntry" + } + AnimationStack: 2286557690288, "AnimStack::Take 001", "" { + Properties70: { + P: "LocalStop", "KTime", "Time", "",83135084400 + P: "ReferenceStop", "KTime", "Time", "",83135084400 + } + } + AnimationCurve: 2286733919216, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286733929456, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.347383,1.347383,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579,1.344579 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529839776, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.1447486,-0.1447486,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687,-0.09530687 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529837856, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.556179,-1.556179,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082,-1.563082 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529843776, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529844736, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,19.9997,19.9997,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529844096, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,0.1002117,0.1002117,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15,2.099663e-15 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529838496, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-0.03026834,-0.03026834,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16,-4.596895e-16 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529840416, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529845696, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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,1.340817,1.340817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529854176, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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,-7.364182,-7.364182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529855136, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-4.117923,-4.117923,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529838336, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529854816, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.255555,-1.255555,-1.268435,-1.268435,-1.254347,-1.254347,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435,-1.268435 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529847776, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,-0.03542955,-0.03542955,0.1236538,0.1236538,-0.05034362,-0.05034362,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538,0.1236538 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529847936, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.0648231,0.0648231,0.05357267,0.05357267,0.06587783,0.06587783,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267,0.05357267 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529840736, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529850336, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5104619,-0.5104619,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5104619,-0.5104619,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348,-0.5223348 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529845376, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,-0.1143322,-0.1143322,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,-0.1143322,-0.1143322,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901,0.06435901 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529850816, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.290166,-1.290166,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.290166,-1.290166,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529848096, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529855456, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,6.997221e-14,22.31703,22.31703,-22.3401,-22.3401,0.3703204,0.3703204,0.6744151,0.6744151,-14.68388,-14.68388,14.85129,14.85129,16.19623,16.19623,-15.47399,-15.47399,6.997221e-14,6.997221e-14,6.997221e-14 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529850016, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,6.361109e-15,2.8932,2.8932,-2.699247,-2.699247,-2.673588,-2.673588,2.613539,2.613539,-8.04482,-8.04482,4.425328,4.425328,-0.4860009,-0.4860009,4.218134,4.218134,6.361109e-15,6.361109e-15,6.361109e-15 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529845536, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,-3.180555e-15,0.06029885,0.06029885,1.043604,1.043604,-22.34823,-22.34823,22.35498,22.35498,-14.22861,-14.22861,-15.92415,-15.92415,15.72487,15.72487,15.40157,15.40157,-3.180555e-15,-3.180555e-15,-3.180555e-15 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529849536, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529853056, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529851936, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529861536, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529864416, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529857376, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529862816, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529859936, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529862336, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529863136, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529862656, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529861696, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurveNode: 2286557686544, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",2 + } + } + AnimationCurveNode: 2286557697152, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2286557690704, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",5 + } + } + AnimationCurveNode: 2286557688624, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2286557696112, "AnimCurveNode::blendParent3", "" { + Properties70: { + P: "d|blendParent3", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557692992, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",5 + } + } + AnimationCurveNode: 2286557687376, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2286557692784, "AnimCurveNode::blendParent3", "" { + Properties70: { + P: "d|blendParent3", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557697360, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",5 + } + } + AnimationCurveNode: 2286557690912, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2286557688832, "AnimCurveNode::blendParent3", "" { + Properties70: { + P: "d|blendParent3", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557695488, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",5 + } + } + AnimationCurveNode: 2286557696320, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2286557691744, "AnimCurveNode::blendParent1", "" { + Properties70: { + P: "d|blendParent1", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557689456, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",5 + } + } + AnimationCurveNode: 2286557693200, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2286557686336, "AnimCurveNode::blendParent1", "" { + Properties70: { + P: "d|blendParent1", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557693616, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",5 + } + } + AnimationCurveNode: 2286557694032, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2286557694240, "AnimCurveNode::blendParent3", "" { + Properties70: { + P: "d|blendParent3", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557686960, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-1.11022302462516e-16 + P: "d|Y", "Number", "", "A",-2.77555756156289e-17 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 2286557694656, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557687792, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 2286557688000, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 2286557711504, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",1.34457862377167 + P: "d|Y", "Number", "", "A",-0.0953068658709526 + P: "d|Z", "Number", "", "A",-1.56308150291443 + } + } + AnimationCurveNode: 2286557703808, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",0.999999999999999 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557704224, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 2286557707968, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 2286557708384, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-0.499064266737443 + P: "d|Y", "Number", "", "A",-0.947063207626343 + P: "d|Z", "Number", "", "A",2.72572286571723 + } + } + AnimationCurveNode: 2286557699232, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557699440, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",6.36110936292704e-15 + P: "d|Y", "Number", "", "A",2.0996630514349e-15 + P: "d|Z", "Number", "", "A",-4.59689543805274e-16 + } + } + AnimationCurveNode: 2286557699648, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 2286557704848, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.494865477391153 + P: "d|Y", "Number", "", "A",-3.57376289367676 + P: "d|Z", "Number", "", "A",-1.3387129700951 + } + } + AnimationCurveNode: 2286557710048, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557705888, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",-6.36110936292703e-15 + } + } + AnimationCurveNode: 2286557700272, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 2286557699856, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-1.26843535900116 + P: "d|Y", "Number", "", "A",0.123653829097748 + P: "d|Z", "Number", "", "A",0.0535726696252823 + } + } + AnimationCurveNode: 2286557700480, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.999999999999999 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557706096, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 2286557708592, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 2286557700688, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-0.522334814071655 + P: "d|Y", "Number", "", "A",0.0643590092658996 + P: "d|Z", "Number", "", "A",-1.30828988552093 + } + } + AnimationCurveNode: 2286557700896, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.999999999999999 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557701104, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 2286557720656, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 2286557712544, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.9354755916908 + P: "d|Y", "Number", "", "A",-0.472996324300766 + P: "d|Z", "Number", "", "A",0.279859692074013 + } + } + AnimationCurveNode: 2286557723360, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2286557713792, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",6.99722029921974e-14 + P: "d|Y", "Number", "", "A",6.36110936292704e-15 + P: "d|Z", "Number", "", "A",-3.18055468146351e-15 + } + } + AnimationLayer: 2286602626400, "AnimLayer::BaseLayer", "" { + } + CollectionExclusive: 2286905600720, "DisplayLayer::leftLayer", "DisplayLayer" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::left_oculus_controller_world, Model::RootNode + C: "OO",2287400095200,0 + + ;Model::l_rainier_mesh, Model::RootNode + C: "OO",2287400104480,0 + + ;Model::left_laser_begin, Model::RootNode + C: "OO",2287400106800,0 + + ;AnimLayer::BaseLayer, AnimStack::Take 001 + C: "OO",2286602626400,2286557690288 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2286557686544,2286602626400 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2286557697152,2286602626400 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2286557690704,2286602626400 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2286557688624,2286602626400 + + ;AnimCurveNode::blendParent3, AnimLayer::BaseLayer + C: "OO",2286557696112,2286602626400 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2286557692992,2286602626400 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2286557687376,2286602626400 + + ;AnimCurveNode::blendParent3, AnimLayer::BaseLayer + C: "OO",2286557692784,2286602626400 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2286557697360,2286602626400 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2286557690912,2286602626400 + + ;AnimCurveNode::blendParent3, AnimLayer::BaseLayer + C: "OO",2286557688832,2286602626400 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2286557695488,2286602626400 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2286557696320,2286602626400 + + ;AnimCurveNode::blendParent1, AnimLayer::BaseLayer + C: "OO",2286557691744,2286602626400 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2286557689456,2286602626400 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2286557693200,2286602626400 + + ;AnimCurveNode::blendParent1, AnimLayer::BaseLayer + C: "OO",2286557686336,2286602626400 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2286557693616,2286602626400 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2286557694032,2286602626400 + + ;AnimCurveNode::blendParent3, AnimLayer::BaseLayer + C: "OO",2286557694240,2286602626400 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2286557686960,2286602626400 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2286557694656,2286602626400 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2286557687792,2286602626400 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",2286557688000,2286602626400 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2286557711504,2286602626400 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2286557703808,2286602626400 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2286557704224,2286602626400 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",2286557707968,2286602626400 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2286557708384,2286602626400 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2286557699232,2286602626400 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2286557699440,2286602626400 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",2286557699648,2286602626400 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2286557704848,2286602626400 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2286557710048,2286602626400 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2286557705888,2286602626400 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",2286557700272,2286602626400 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2286557699856,2286602626400 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2286557700480,2286602626400 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2286557706096,2286602626400 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",2286557708592,2286602626400 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2286557700688,2286602626400 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2286557700896,2286602626400 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2286557701104,2286602626400 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",2286557720656,2286602626400 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2286557712544,2286602626400 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2286557723360,2286602626400 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2286557713792,2286602626400 + + ;NodeAttribute::, Model::left_oculus_controller_world + C: "OO",2286905599952,2287400095200 + + ;Model::b_button_oculus, Model::left_oculus_controller_world + C: "OO",2287400065040,2287400095200 + + ;Model::b_trigger_front, Model::left_oculus_controller_world + C: "OO",2287400097520,2287400095200 + + ;Model::b_trigger_grip, Model::left_oculus_controller_world + C: "OO",2287400067360,2287400095200 + + ;Model::b_button_y, Model::left_oculus_controller_world + C: "OO",2287400099840,2287400095200 + + ;Model::b_button_x, Model::left_oculus_controller_world + C: "OO",2287400102160,2287400095200 + + ;Model::b_thumbstick, Model::left_oculus_controller_world + C: "OO",2287400072000,2287400095200 + + ;AnimCurveNode::T, Model::left_oculus_controller_world + C: "OP",2286557686960,2287400095200, "Lcl Translation" + + ;AnimCurveNode::R, Model::left_oculus_controller_world + C: "OP",2286557687792,2287400095200, "Lcl Rotation" + + ;AnimCurveNode::S, Model::left_oculus_controller_world + C: "OP",2286557694656,2287400095200, "Lcl Scaling" + + ;AnimCurveNode::filmboxTypeID, Model::left_oculus_controller_world + C: "OP",2286557686544,2287400095200, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::left_oculus_controller_world + C: "OP",2286557697152,2287400095200, "lockInfluenceWeights" + + ;NodeAttribute::, Model::b_button_oculus + C: "OO",2286905603024,2287400065040 + + ;AnimCurveNode::T, Model::b_button_oculus + C: "OP",2286557711504,2287400065040, "Lcl Translation" + + ;AnimCurveNode::R, Model::b_button_oculus + C: "OP",2286557704224,2287400065040, "Lcl Rotation" + + ;AnimCurveNode::S, Model::b_button_oculus + C: "OP",2286557703808,2287400065040, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::b_button_oculus + C: "OP",2286557688000,2287400065040, "Visibility" + + ;AnimCurveNode::filmboxTypeID, Model::b_button_oculus + C: "OP",2286557690704,2287400065040, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::b_button_oculus + C: "OP",2286557688624,2287400065040, "lockInfluenceWeights" + + ;AnimCurveNode::blendParent3, Model::b_button_oculus + C: "OP",2286557696112,2287400065040, "blendParent3" + + ;NodeAttribute::, Model::b_trigger_front + C: "OO",2286905601296,2287400097520 + + ;AnimCurveNode::T, Model::b_trigger_front + C: "OP",2286557708384,2287400097520, "Lcl Translation" + + ;AnimCurveNode::R, Model::b_trigger_front + C: "OP",2286557699440,2287400097520, "Lcl Rotation" + + ;AnimCurveNode::S, Model::b_trigger_front + C: "OP",2286557699232,2287400097520, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::b_trigger_front + C: "OP",2286557707968,2287400097520, "Visibility" + + ;AnimCurveNode::filmboxTypeID, Model::b_trigger_front + C: "OP",2286557692992,2287400097520, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::b_trigger_front + C: "OP",2286557687376,2287400097520, "lockInfluenceWeights" + + ;AnimCurveNode::blendParent3, Model::b_trigger_front + C: "OP",2286557692784,2287400097520, "blendParent3" + + ;NodeAttribute::, Model::b_trigger_grip + C: "OO",2286905600912,2287400067360 + + ;AnimCurveNode::T, Model::b_trigger_grip + C: "OP",2286557704848,2287400067360, "Lcl Translation" + + ;AnimCurveNode::R, Model::b_trigger_grip + C: "OP",2286557705888,2287400067360, "Lcl Rotation" + + ;AnimCurveNode::S, Model::b_trigger_grip + C: "OP",2286557710048,2287400067360, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::b_trigger_grip + C: "OP",2286557699648,2287400067360, "Visibility" + + ;AnimCurveNode::filmboxTypeID, Model::b_trigger_grip + C: "OP",2286557697360,2287400067360, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::b_trigger_grip + C: "OP",2286557690912,2287400067360, "lockInfluenceWeights" + + ;AnimCurveNode::blendParent3, Model::b_trigger_grip + C: "OP",2286557688832,2287400067360, "blendParent3" + + ;NodeAttribute::, Model::b_button_y + C: "OO",2286905609168,2287400099840 + + ;AnimCurveNode::T, Model::b_button_y + C: "OP",2286557699856,2287400099840, "Lcl Translation" + + ;AnimCurveNode::R, Model::b_button_y + C: "OP",2286557706096,2287400099840, "Lcl Rotation" + + ;AnimCurveNode::S, Model::b_button_y + C: "OP",2286557700480,2287400099840, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::b_button_y + C: "OP",2286557700272,2287400099840, "Visibility" + + ;AnimCurveNode::filmboxTypeID, Model::b_button_y + C: "OP",2286557695488,2287400099840, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::b_button_y + C: "OP",2286557696320,2287400099840, "lockInfluenceWeights" + + ;AnimCurveNode::blendParent1, Model::b_button_y + C: "OP",2286557691744,2287400099840, "blendParent1" + + ;NodeAttribute::, Model::b_button_x + C: "OO",2286905610320,2287400102160 + + ;AnimCurveNode::T, Model::b_button_x + C: "OP",2286557700688,2287400102160, "Lcl Translation" + + ;AnimCurveNode::R, Model::b_button_x + C: "OP",2286557701104,2287400102160, "Lcl Rotation" + + ;AnimCurveNode::S, Model::b_button_x + C: "OP",2286557700896,2287400102160, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::b_button_x + C: "OP",2286557708592,2287400102160, "Visibility" + + ;AnimCurveNode::filmboxTypeID, Model::b_button_x + C: "OP",2286557689456,2287400102160, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::b_button_x + C: "OP",2286557693200,2287400102160, "lockInfluenceWeights" + + ;AnimCurveNode::blendParent1, Model::b_button_x + C: "OP",2286557686336,2287400102160, "blendParent1" + + ;NodeAttribute::, Model::b_thumbstick + C: "OO",2286905610128,2287400072000 + + ;AnimCurveNode::T, Model::b_thumbstick + C: "OP",2286557712544,2287400072000, "Lcl Translation" + + ;AnimCurveNode::R, Model::b_thumbstick + C: "OP",2286557713792,2287400072000, "Lcl Rotation" + + ;AnimCurveNode::S, Model::b_thumbstick + C: "OP",2286557723360,2287400072000, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::b_thumbstick + C: "OP",2286557720656,2287400072000, "Visibility" + + ;AnimCurveNode::filmboxTypeID, Model::b_thumbstick + C: "OP",2286557693616,2287400072000, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::b_thumbstick + C: "OP",2286557694032,2287400072000, "lockInfluenceWeights" + + ;AnimCurveNode::blendParent3, Model::b_thumbstick + C: "OP",2286557694240,2287400072000, "blendParent3" + + ;Deformer::, Geometry:: + C: "OO",2286905603984,2286601949872 + + ;Texture::file5, Material::bothControllerMAT + C: "OP",2286596665616,2286733916336, "Maya|TEX_global_diffuse_cube" + + ;Texture::file6, Material::bothControllerMAT + C: "OP",2286596659856,2286733916336, "Maya|TEX_global_specular_cube" + + ;Texture::file7, Material::bothControllerMAT + C: "OP",2286596656496,2286733916336, "Maya|TEX_brdf_lut" + + ;Texture::file4, Material::bothControllerMAT + C: "OP",2286596660816,2286733916336, "Maya|TEX_color_map" + + ;Texture::metallicRoughnessTexture, Material::bothControllerMAT + C: "OP",2286596662256,2286733916336, "Maya|TEX_metallic_map" + + ;Texture::metallicRoughnessTexture, Material::bothControllerMAT + C: "OP",2286596662256,2286733916336, "Maya|TEX_roughness_map" + + ;Material::bothControllerMAT, Implementation::bothControllerMAT_Implementation + C: "OO",2286733916336,2286443684784 + + ;BindingTable::root 6, Implementation::bothControllerMAT_Implementation + C: "OO",2285967148752,2286443684784 + + ;Video::metallicRoughnessTexture, Texture::metallicRoughnessTexture + C: "OO",2286596655536,2286596662256 + + ;Video::file6, Texture::file6 + C: "OO",2286596660336,2286596659856 + + ;Video::file5, Texture::file5 + C: "OO",2286596661776,2286596665616 + + ;Video::file7, Texture::file7 + C: "OO",2286596662736,2286596656496 + + ;Video::file4, Texture::file4 + C: "OO",2286553021584,2286596660816 + + ;Geometry::, Model::l_rainier_mesh + C: "OO",2286601949872,2287400104480 + + ;Material::bothControllerMAT, Model::l_rainier_mesh + C: "OO",2286733916336,2287400104480 + + ;NodeAttribute::, Model::left_laser_begin + C: "OO",2286474511328,2287400106800 + + ;Model::pasted__laser_end_pointer, Model::left_laser_begin + C: "OO",2287400109120,2287400106800 + + ;NodeAttribute::, Model::pasted__laser_end_pointer + C: "OO",2286474508864,2287400109120 + + ;AnimCurve::, AnimCurveNode::lockInfluenceWeights + C: "OP",2286529849536,2286557688624, "d|lockInfluenceWeights" + + ;AnimCurve::, AnimCurveNode::blendParent3 + C: "OP",2286529853056,2286557696112, "d|blendParent3" + + ;AnimCurve::, AnimCurveNode::lockInfluenceWeights + C: "OP",2286529851936,2286557687376, "d|lockInfluenceWeights" + + ;AnimCurve::, AnimCurveNode::blendParent3 + C: "OP",2286529861536,2286557692784, "d|blendParent3" + + ;AnimCurve::, AnimCurveNode::lockInfluenceWeights + C: "OP",2286529864416,2286557690912, "d|lockInfluenceWeights" + + ;AnimCurve::, AnimCurveNode::blendParent3 + C: "OP",2286529857376,2286557688832, "d|blendParent3" + + ;AnimCurve::, AnimCurveNode::lockInfluenceWeights + C: "OP",2286529862816,2286557696320, "d|lockInfluenceWeights" + + ;AnimCurve::, AnimCurveNode::blendParent1 + C: "OP",2286529859936,2286557691744, "d|blendParent1" + + ;AnimCurve::, AnimCurveNode::lockInfluenceWeights + C: "OP",2286529862336,2286557693200, "d|lockInfluenceWeights" + + ;AnimCurve::, AnimCurveNode::blendParent1 + C: "OP",2286529863136,2286557686336, "d|blendParent1" + + ;AnimCurve::, AnimCurveNode::lockInfluenceWeights + C: "OP",2286529862656,2286557694032, "d|lockInfluenceWeights" + + ;AnimCurve::, AnimCurveNode::blendParent3 + C: "OP",2286529861696,2286557694240, "d|blendParent3" + + ;Model::left_oculus_controller_world, DisplayLayer::leftLayer + C: "OO",2287400095200,2286905600720 + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",2286733919216,2286557688000, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286733929456,2286557711504, "d|X" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286529839776,2286557711504, "d|Y" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286529837856,2286557711504, "d|Z" + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",2286529843776,2286557707968, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286529844736,2286557699440, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286529844096,2286557699440, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286529838496,2286557699440, "d|Z" + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",2286529840416,2286557699648, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286529845696,2286557705888, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286529854176,2286557705888, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286529855136,2286557705888, "d|Z" + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",2286529838336,2286557700272, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286529854816,2286557699856, "d|X" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286529847776,2286557699856, "d|Y" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286529847936,2286557699856, "d|Z" + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",2286529840736,2286557708592, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286529850336,2286557700688, "d|X" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286529845376,2286557700688, "d|Y" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286529850816,2286557700688, "d|Z" + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",2286529848096,2286557720656, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286529855456,2286557713792, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286529850016,2286557713792, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286529845536,2286557713792, "d|Z" + + ;SubDeformer::, Deformer:: + C: "OO",2286590745904,2286905603984 + + ;SubDeformer::, Deformer:: + C: "OO",2286590728608,2286905603984 + + ;SubDeformer::, Deformer:: + C: "OO",2286590736880,2286905603984 + + ;SubDeformer::, Deformer:: + C: "OO",2286590730112,2286905603984 + + ;SubDeformer::, Deformer:: + C: "OO",2286590734624,2286905603984 + + ;SubDeformer::, Deformer:: + C: "OO",2286590737632,2286905603984 + + ;SubDeformer::, Deformer:: + C: "OO",2286590745152,2286905603984 + + ;Model::left_oculus_controller_world, SubDeformer:: + C: "OO",2287400095200,2286590745904 + + ;Model::b_button_oculus, SubDeformer:: + C: "OO",2287400065040,2286590728608 + + ;Model::b_trigger_front, SubDeformer:: + C: "OO",2287400097520,2286590736880 + + ;Model::b_trigger_grip, SubDeformer:: + C: "OO",2287400067360,2286590730112 + + ;Model::b_button_y, SubDeformer:: + C: "OO",2287400099840,2286590734624 + + ;Model::b_button_x, SubDeformer:: + C: "OO",2287400102160,2286590737632 + + ;Model::b_thumbstick, SubDeformer:: + C: "OO",2287400072000,2286590745152 +} +;Takes section +;---------------------------------------------------- + +Takes: { + Current: "Take 001" + Take: "Take 001" { + FileName: "Take_001.tak" + LocalTime: 0,83135084400 + ReferenceTime: 0,83135084400 + } +} diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Left.fbx.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Left.fbx.meta new file mode 100644 index 00000000..df5bdf2a --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Left.fbx.meta @@ -0,0 +1,1073 @@ +fileFormatVersion: 2 +guid: 8b83018900d13bb4f8e0ad895cb004e5 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: b_button_oculus + 100002: b_button_x + 100004: b_button_y + 100006: b_thumbstick + 100008: b_trigger_front + 100010: b_trigger_grip + 100012: left_laser_begin + 100014: left_oculus_controller_world + 100016: //RootNode + 100018: left_quest2_mesh + 100020: pasted__laser_end_pointer + 100022: l_rainier_mesh + 400000: b_button_oculus + 400002: b_button_x + 400004: b_button_y + 400006: b_thumbstick + 400008: b_trigger_front + 400010: b_trigger_grip + 400012: left_laser_begin + 400014: left_oculus_controller_world + 400016: //RootNode + 400018: left_quest2_mesh + 400020: pasted__laser_end_pointer + 400022: l_rainier_mesh + 2100000: bothControllerMAT + 4300000: left_quest2_mesh + 4300002: l_rainier_mesh + 7400000: left_quest2_controller_animation + 7400002: left_quest2_controller_stickW + 7400004: left_quest2_controller_stickE + 7400006: left_quest2_controller_trigger + 7400008: left_quest2_controller_stickN + 7400010: left_quest2_controller_stickSE + 7400012: left_quest2_controller_stickSW + 7400014: left_quest2_controller_stickNW + 7400016: left_quest2_controller_stickNE + 7400018: left_quest2_controller_grip + 7400020: left_quest2_controller_stickS + 7400022: left_quest2_controller_button01 + 7400024: left_quest2_controller_button02 + 7400026: left_quest2_controller_button03 + 7400028: left_quest2_controller_button01_neutral + 7400030: left_quest2_controller_button03_neutral + 7400032: left_quest2_controller_button02_neutral + 7400034: left_quest2_controller_trigger_neutral + 7400036: left_quest2_controller_grip_neutral + 9500000: //RootNode + 13700000: left_quest2_mesh + 13700002: l_rainier_mesh + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: bothControllerMAT + second: {fileID: 2100000, guid: d7292a5e1ae17a64c95f3081d2c6be5a, type: 2} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: + - serializedVersion: 16 + name: left_quest2_controller_animation + takeName: Take 001 + firstFrame: 0 + lastFrame: 54 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_stickW + takeName: Take 001 + firstFrame: 40 + lastFrame: 41 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 1 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_stickE + takeName: Take 001 + firstFrame: 42 + lastFrame: 43 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 1 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_trigger + takeName: Take 001 + firstFrame: 20 + lastFrame: 21 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 0 + - path: left_oculus_controller_world/b_trigger_front + weight: 1 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_stickN + takeName: Take 001 + firstFrame: 36 + lastFrame: 37 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 1 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_stickSE + takeName: Take 001 + firstFrame: 50 + lastFrame: 51 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 1 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_stickSW + takeName: Take 001 + firstFrame: 44 + lastFrame: 45 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 1 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_stickNW + takeName: Take 001 + firstFrame: 46 + lastFrame: 47 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 1 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_stickNE + takeName: Take 001 + firstFrame: 48 + lastFrame: 49 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 1 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_grip + takeName: Take 001 + firstFrame: 26 + lastFrame: 27 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 0 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 1 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_stickS + takeName: Take 001 + firstFrame: 38 + lastFrame: 39 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 1 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_button01 + takeName: Take 001 + firstFrame: 6 + lastFrame: 7 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 1 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 0 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_button02 + takeName: Take 001 + firstFrame: 10 + lastFrame: 11 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 1 + - path: left_oculus_controller_world/b_thumbstick + weight: 0 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_button03 + takeName: Take 001 + firstFrame: 30 + lastFrame: 31 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 1 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 0 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_button01_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 1 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 0 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_button02_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 1 + - path: left_oculus_controller_world/b_thumbstick + weight: 0 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_button03_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 1 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 0 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_trigger_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 0 + - path: left_oculus_controller_world/b_trigger_front + weight: 1 + - path: left_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest2_controller_grip_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_rainier_mesh + weight: 0 + - path: left_laser_begin + weight: 0 + - path: left_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: left_oculus_controller_world + weight: 0 + - path: left_oculus_controller_world/b_button_oculus + weight: 0 + - path: left_oculus_controller_world/b_button_x + weight: 0 + - path: left_oculus_controller_world/b_button_y + weight: 0 + - path: left_oculus_controller_world/b_thumbstick + weight: 0 + - path: left_oculus_controller_world/b_trigger_front + weight: 0 + - path: left_oculus_controller_world/b_trigger_grip + weight: 1 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 0.01 + hasPreviousCalculatedGlobalScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 2 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Right.fbx b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Right.fbx new file mode 100644 index 00000000..3878ff24 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Right.fbx @@ -0,0 +1,3785 @@ +; FBX 7.5.0 project file +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7500 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 11 + Day: 12 + Hour: 14 + Minute: 44 + Second: 16 + Millisecond: 519 + } + 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", "", "C:\open\ovrsource\Software\AvatarSDK\PackageAssets\UnityAssetProcessing\Assets\Oculus\VR\Meshes\OculusTouchForQuest2\OculusTouchForQuest2_Right.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "C:\open\ovrsource\Software\AvatarSDK\PackageAssets\UnityAssetProcessing\Assets\Oculus\VR\Meshes\OculusTouchForQuest2\OculusTouchForQuest2_Right.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "Autodesk" + P: "Original|ApplicationName", "KString", "", "", "Maya" + P: "Original|ApplicationVersion", "KString", "", "", "201804" + P: "Original|DateTime_GMT", "DateTime", "", "", "12/11/2020 22:44:16.516" + P: "Original|FileName", "KString", "", "", "C:\open\ovrsource\Software\AvatarSDK\PackageAssets\UnityAssetProcessing\Assets\Oculus\VR\Meshes\OculusTouchForQuest2\OculusTouchForQuest2_Right.fbx" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk" + P: "LastSaved|ApplicationName", "KString", "", "", "Maya" + P: "LastSaved|ApplicationVersion", "KString", "", "", "201804" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "12/11/2020 22:44:16.516" + P: "Original|ApplicationActiveProject", "KString", "", "", "C:\open\ovrsource\Software\AvatarSDK\PackageAssets\UnityAssetProcessing\Assets\Oculus\VR\Meshes\OculusTouchForQuest2" + P: "Original|ApplicationNativeFile", "KString", "", "", "Z:\shows\avatarsdk\assets\prop\prp00003nextController\working\Quest2_Controller_Optimized.1020.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", "", "",6 + P: "TimeProtocol", "enum", "", "",2 + P: "SnapOnFrameMode", "enum", "", "",0 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",83135084400 + P: "CustomFrameRate", "double", "Number", "",-1 + P: "TimeMarker", "Compound", "", "" + P: "CurrentTimeMarker", "int", "Integer", "",-1 + } +} + +; Documents Description +;------------------------------------------------------------------ + +Documents: { + Count: 1 + Document: 2285106497392, "", "Scene" { + Properties70: { + P: "SourceObject", "object", "", "" + P: "ActiveAnimStackName", "KString", "", "", "Take 001" + } + RootNode: 0 + } +} + +; Document References +;------------------------------------------------------------------ + +References: { +} + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 117 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "AnimationStack" { + Count: 1 + PropertyTemplate: "FbxAnimStack" { + Properties70: { + P: "Description", "KString", "", "", "" + P: "LocalStart", "KTime", "Time", "",0 + P: "LocalStop", "KTime", "Time", "",0 + P: "ReferenceStart", "KTime", "Time", "",0 + P: "ReferenceStop", "KTime", "Time", "",0 + } + } + } + ObjectType: "AnimationLayer" { + Count: 1 + PropertyTemplate: "FbxAnimLayer" { + Properties70: { + P: "Weight", "Number", "", "A",100 + P: "Mute", "bool", "", "",0 + P: "Solo", "bool", "", "",0 + P: "Lock", "bool", "", "",0 + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BlendMode", "enum", "", "",0 + P: "RotationAccumulationMode", "enum", "", "",0 + P: "ScaleAccumulationMode", "enum", "", "",0 + P: "BlendModeBypass", "ULongLong", "", "",0 + } + } + } + ObjectType: "NodeAttribute" { + Count: 9 + PropertyTemplate: "FbxSkeleton" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "Size", "double", "Number", "",100 + P: "LimbLength", "double", "Number", "H",1 + } + } + } + ObjectType: "Model" { + Count: 10 + 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: "Geometry" { + Count: 1 + 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: 1 + PropertyTemplate: "FbxSurfaceMaterial" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Unknown" + P: "MultiLayer", "bool", "", "",0 + } + } + } + ObjectType: "Implementation" { + Count: 1 + PropertyTemplate: "FbxImplementation" { + Properties70: { + P: "ShaderLanguage", "KString", "", "", "MentalRaySL" + P: "ShaderLanguageVersion", "KString", "", "", "" + P: "RenderAPI", "KString", "", "", "MentalRay" + P: "RenderAPIVersion", "KString", "", "", "" + P: "RootBindingName", "KString", "", "", "" + P: "Constants", "Compound", "", "" + } + } + } + ObjectType: "BindingTable" { + Count: 1 + PropertyTemplate: "FbxBindingTable" { + Properties70: { + P: "TargetName", "KString", "", "", "" + P: "TargetType", "KString", "", "", "" + P: "CodeAbsoluteURL", "KString", "XRefUrl", "", "" + P: "CodeRelativeURL", "KString", "XRefUrl", "", "" + P: "CodeTAG", "KString", "", "", "shader" + P: "DescAbsoluteURL", "KString", "XRefUrl", "", "" + P: "DescRelativeURL", "KString", "XRefUrl", "", "" + P: "DescTAG", "KString", "", "", "shader" + } + } + } + ObjectType: "Texture" { + Count: 5 + 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: "AnimationCurveNode" { + Count: 41 + PropertyTemplate: "FbxAnimCurveNode" { + Properties70: { + P: "d", "Compound", "", "" + } + } + } + ObjectType: "CollectionExclusive" { + Count: 1 + PropertyTemplate: "FbxDisplayLayer" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "Show", "bool", "", "",1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + } + } + } + ObjectType: "AnimationCurve" { + Count: 30 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "Deformer" { + Count: 8 + } + ObjectType: "Video" { + Count: 5 + 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: { + NodeAttribute: 2287478674016, "NodeAttribute::", "Root" { + TypeFlags: "Null", "Skeleton", "Root" + } + NodeAttribute: 2287478715296, "NodeAttribute::", "LimbNode" { + TypeFlags: "Skeleton" + } + NodeAttribute: 2287478714720, "NodeAttribute::", "LimbNode" { + TypeFlags: "Skeleton" + } + NodeAttribute: 2287478712800, "NodeAttribute::", "LimbNode" { + TypeFlags: "Skeleton" + } + NodeAttribute: 2287478708000, "NodeAttribute::", "LimbNode" { + TypeFlags: "Skeleton" + } + NodeAttribute: 2287478713760, "NodeAttribute::", "LimbNode" { + TypeFlags: "Skeleton" + } + NodeAttribute: 2287478717984, "NodeAttribute::", "LimbNode" { + TypeFlags: "Skeleton" + } + Geometry: 2285110195968, "Geometry::", "Mesh" { + Vertices: *9024 { + a: -0.0395362377166748,-0.613035678863525,2.81370854377747,0.533121943473816,-1.7238655090332,1.66402626037598,0.0813183784484863,-3.14897799491882,1.23593986034393,0.571051418781281,-3.15479779243469,1.18145716190338,1.22551226615906,-2.84177494049072,1.14327800273895,1.47127640247345,-2.59162712097168,1.18888473510742,1.84371209144592,-2.19877028465271,1.55925893783569,1.64233922958374,-2.33428525924683,1.28089237213135,0.978309750556946,-3.15611410140991,1.29969215393066,0.607649087905884,-3.26768779754639,1.3416006565094,1.10928249359131,-0.815725743770599,2.96061134338379,1.42186284065247,-0.956381440162659,2.79930281639099,1.6718647480011,-1.14093387126923,2.58466339111328,1.62925386428833,-1.01132965087891,2.43878626823425,1.83870053291321,-1.35754227638245,2.328289270401,1.85839438438416,-1.44716095924377,1.94649720191956,1.85614550113678,-1.73621916770935,1.67579448223114,-0.580197274684906,-2.99509644508362,1.45826196670532,-1.07665503025055,-1.41830027103424,2.1114981174469,-0.824150204658508,-1.01615345478058,2.26615214347839,-0.603580117225647,-0.830373108386993,2.49376916885376,-0.66564154624939,-0.946240663528442,2.64482021331787,-0.433065533638,-0.833071649074554,2.80617666244507,-0.0717393159866333,-0.733034610748291,2.9706654548645,0.33645498752594,-0.566633999347687,2.90416765213013,-0.384602308273315,-0.714753031730652,2.65221881866455,-0.998247981071472,-1.31058180332184,1.96194839477539,-1.07768774032593,-1.66699314117432,1.68334364891052,-1.06213366985321,-1.99309802055359,1.50610876083374,-0.908514380455017,-2.47044086456299,1.3599545955658,-0.540672123432159,-2.89910459518433,1.28522729873657,0.915320992469788,-3.04507327079773,1.14615643024445,1.76781105995178,-2.07792568206787,1.41959190368652,1.78551125526428,-1.22470498085022,2.18893003463745,1.39217603206635,-0.829886138439178,2.64731407165527,1.09328734874725,-0.689301252365112,2.80736374855042,-1.93020176887512,-1.30660223960876,1.48322510719299,-1.41923451423645,-1.1346423625946,2.12981271743774,-1.43141674995422,-1.60279953479767,1.79891335964203, +-1.87566876411438,-0.804797649383545,1.94297766685486,-2.34807968139648,-0.862551271915436,1.22186350822449,-2.32669258117676,-0.376371681690216,1.76206541061401,-1.67784368991852,-0.37055516242981,2.44519519805908,-2.19683504104614,0.0630306974053383,2.27078199386597,-1.26097416877747,-0.00345692038536072,2.96263146400452,-0.921490550041199,-0.579550743103027,2.82095837593079,-1.92888486385345,0.490325689315796,2.75473809242249,-2.95358991622925,0.282998472452164,1.2310916185379,-3.23494791984558,0.7342369556427,0.930755734443665,-3.19404983520508,0.381522059440613,0.354611188173294,-2.90481662750244,0.763562440872192,1.80311012268066,-3.20300531387329,1.17876470088959,1.48663377761841,-3.5770001411438,1.43024551868439,0.367841333150864,-3.46824169158936,1.03204417228699,-0.156791850924492,-3.56309080123901,1.86209404468536,0.933375597000122,-3.74786782264709,2.11865496635437,-0.242072373628616,-3.6285514831543,1.70520865917206,-0.76552402973175,-3.73729038238525,2.55940580368042,0.32815882563591,-3.75848865509033,2.8254771232605,-0.894744992256165,-3.63344240188599,2.41178703308105,-1.42441689968109,-3.73511362075806,3.27085876464844,-0.319948047399521,-3.59877490997314,3.4855432510376,-1.53213214874268,-3.55504894256592,3.94029474258423,-0.962869226932526,-3.27652835845947,4.06655025482178,-2.12653803825378,-3.20674538612366,4.53222513198853,-1.56808876991272,-2.80296206474304,4.56703519821167,-2.67248296737671,-2.70220422744751,5.03622055053711,-2.12279009819031,-2.19136333465576,4.97507619857788,-3.16089916229248,-2.06317043304443,5.43464088439941,-2.61520624160767,-1.45771193504333,5.27151775360107,-3.5918755531311,-1.31533491611481,5.72100353240967,-3.03499627113342,-0.606190085411072,5.44326829910278,-3.93866515159607,0.215871512889862,4.91310930252075,-4.60931015014648,-0.474551677703857,5.88242483139038,-3.35955333709717,0.289265275001526,5.47599458694458,-4.16923666000366,0.410170435905457,5.88834667205811,-3.56772661209106,1.17346954345703,5.37404823303223,-4.27669811248779,2.04299449920654,5.13943147659302,-4.26754570007324, +1.83550763130188,4.58749341964722,-4.69622278213501,1.30030870437622,5.78931188583374,-3.66879034042358,0.538474977016449,6.12869024276733,-2.92340731620789,2.88590383529663,4.76587915420532,-4.12986087799072,2.18311214447021,5.58237314224243,-3.66910862922668,1.39099979400635,6.03071451187134,-3.02195954322815,3.68582987785339,4.24537038803101,-3.84428453445435,3.03957414627075,5.2183985710144,-3.53313493728638,2.22660827636719,5.81774854660034,-3.0108757019043,4.35597610473633,3.59733891487122,-3.41896820068359,4.030189037323,3.14955902099609,-3.86474204063416,3.84470248222351,4.70109272003174,-3.25413012504578,3.03868103027344,5.48135948181152,-2.87732911109924,1.44710659980774,6.09269380569458,-2.40414714813232,2.20681190490723,5.89994382858276,-2.40186142921448,3.81871461868286,4.99560070037842,-2.60427594184875,-0.298994660377502,6.10845375061035,-2.71955633163452,-0.117259621620178,6.17050170898438,-2.13116025924683,-1.09221482276917,5.96731233596802,-2.41078495979309,-0.837607860565186,6.04426097869873,-1.83033239841461,-1.81634163856506,5.70570516586304,-2.01402878761292,-2.44027256965637,5.3379373550415,-1.5364054441452,-2.11508226394653,5.47797060012817,-1.01655745506287,-2.94003343582153,4.86845207214355,-0.991783320903778,-3.29645109176636,4.31091451644897,-0.400820672512054,-2.92503833770752,4.55309057235718,0.0679357051849365,-3.49303293228149,3.66790866851807,0.236334264278412,-3.11599016189575,3.95083999633789,0.702450394630432,-3.5140233039856,2.98071718215942,0.867234528064728,-3.35100078582764,2.29723215103149,1.46144020557404,-2.99501729011536,2.66363048553467,1.88572895526886,-2.65738248825073,1.99567234516144,2.4252781867981,-3.00045537948608,1.62105047702789,1.99211251735687,-2.71218872070313,1.21868181228638,2.28670620918274,-0.610584139823914,-0.0696625709533691,3.22971487045288,-0.522268176078796,-0.487791061401367,3.04445481300354,-0.0639191865921021,-0.145020872354507,3.34768486022949,0.475778520107269,0.0912880897521973,3.53594326972961,-0.0759022235870361,-0.457469671964645,3.18680143356323, +0.430740058422089,-0.2056685090065,3.38514590263367,1.36869657039642,-0.327887713909149,3.27742457389832,1.62074458599091,-0.697783827781677,2.99326276779175,1.43102312088013,-0.018877387046814,3.42991375923157,1.80411052703857,-0.394105821847916,3.14124464988708,1.98091816902161,-0.845614194869995,2.77037262916565,2.28212213516235,-0.466069340705872,2.92123937606812,2.90212392807007,-0.573178112506866,2.50608968734741,2.95974206924438,0.118907630443573,2.91456890106201,3.1123514175415,-1.07416498661041,1.87396907806396,2.34565877914429,-1.37858927249908,2.12458038330078,3.67014694213867,-0.238048911094666,2.14845037460327,3.52029228210449,0.305811762809753,2.60197615623474,3.73267555236816,-0.736547589302063,1.59905517101288,3.05109024047852,-1.47947573661804,1.39772486686707,2.8170120716095,-1.88970708847046,1.06844210624695,3.36250400543213,-1.54856371879578,0.592835307121277,3.6248152256012,-1.1497848033905,1.06172490119934,4.01423454284668,-0.854303240776062,0.725784599781036,3.73544812202454,-1.22210514545441,0.186481714248657,4.153639793396,-0.455068320035934,1.3014155626297,4.42927312850952,-0.437545418739319,0.234299719333649,4.13068103790283,0.0425299406051636,1.84215521812439,4.66377544403076,0.472186625003815,1.33462429046631,4.50214338302612,0.985076904296875,1.74993944168091,4.64187812805176,-0.0371572375297546,0.801179051399231,5.00800609588623,0.893222451210022,0.865343630313873,4.86996746063232,1.40404510498047,1.2532594203949,4.97367763519287,0.38157045841217,0.341886043548584,4.7278265953064,-0.0251297354698181,-0.213054955005646,4.40616035461426,-0.331169903278351,-0.73048347234726,5.27463674545288,1.0356673002243,-0.32173228263855,5.29629421234131,1.53753304481506,0.203515768051147,5.13743305206299,2.00846171379089,0.61418205499649,5.01696014404297,0.604166686534882,-0.859728753566742,5.39761590957642,2.25176239013672,-0.485021531581879,5.21803379058838,2.68233108520508,-0.0438597202301025,5.39837074279785,1.76885843276978,-1.01634359359741,5.15658187866211,1.30463933944702,-1.53348541259766,4.77017736434937,1.62758874893188,-2.62380886077881, +5.29838275909424,2.96755743026733,-1.12763047218323,5.10793447494507,2.05981492996216,-2.20836591720581,5.31841278076172,2.53695130348206,-1.6845178604126,5.00591564178467,3.67446184158325,-1.68800473213196,4.35605001449585,4.5686559677124,-1.63806796073914,4.84499549865723,2.83327126502991,-2.85085725784302,5.03357362747192,3.30692863464355,-2.29694247245789,4.53202724456787,4.05476856231689,-2.83536720275879,4.49896287918091,4.38265895843506,-2.20217895507813,-3.16711902618408,1.0781055688858,-0.351472824811935,-3.37172269821167,1.67612075805664,-0.866854667663574,-3.474196434021,3.04614663124084,-2.03917503356934,-3.22132015228271,2.98921775817871,-2.0819103717804,-3.18009328842163,3.57672786712646,-2.59918069839478,-2.75431609153748,4.03721284866333,-3.11630892753601,-2.20754647254944,4.43306255340576,-3.57968783378601,-1.51493406295776,4.71594381332397,-4.00957775115967,-0.671924948692322,4.87749481201172,-4.37437438964844,-0.599998831748962,4.67194557189941,-4.25736618041992,1.02506184577942,4.81528520584106,-4.7086615562439,2.61246776580811,4.23730373382568,-4.56125497817993,3.24193572998047,3.63642001152039,-4.1545934677124,3.3976674079895,3.74897193908691,-4.27902364730835,4.51200771331787,2.37405967712402,-3.27124857902527,4.79983806610107,0.907143175601959,-1.96307635307312,4.67182350158691,0.274159461259842,-1.34613585472107,1.42387676239014,5.96101427078247,-2.16196417808533,2.14568996429443,5.7704119682312,-2.15170955657959,2.83947610855103,5.48992013931274,-2.04426217079163,4.14772367477417,4.51800155639648,-1.43387043476105,4.9740309715271,2.822833776474,0.0053669810295105,4.66898250579834,1.61175131797791,1.22963976860046,3.68247842788696,-0.027259886264801,1.25567317008972,3.77946615219116,0.776343762874603,2.22424149513245,3.34755063056946,0.551187098026276,2.53666710853577,2.86608672142029,0.386484980583191,2.81417036056519,3.41977119445801,-0.207746565341949,1.48808538913727,3.94600009918213,0.156852781772614,0.940010964870453,2.16231751441956,0.0511816740036011,2.81262803077698,2.37037634849548,0.281270980834961,3.03536629676819, +1.64306354522705,0.128627300262451,3.04113793373108,1.86394619941711,0.234542310237885,3.19152617454529,1.42208743095398,0.22688215970993,3.312087059021,4.13517189025879,0.360630035400391,0.745321989059448,3.89423036575317,-0.298719227313995,-0.256026268005371,3.74974775314331,-0.426351428031921,-0.476789474487305,4.06961059570313,-0.155044436454773,-0.836138188838959,4.44113540649414,0.776594042778015,0.300702750682831,4.14159393310547,-0.00107994675636292,-0.695560991764069,4.68867111206055,1.34299540519714,-0.273849248886108,4.4212851524353,0.522511839866638,-1.23737215995789,4.39826107025146,0.380459398031235,-1.40974426269531,4.57080698013306,1.11721253395081,-1.81845545768738,4.56540012359619,0.972676753997803,-1.99213349819183,4.79056930541992,1.95982646942139,-0.871231973171234,4.72037029266357,2.59166193008423,-1.44986081123352,4.48001337051392,3.18215560913086,-1.96697926521301,4.54296636581421,1.79303288459778,-2.43475103378296,4.54953908920288,1.65790522098541,-2.61539602279663,4.00390386581421,3.84748935699463,-2.48261690139771,4.30272960662842,2.48367524147034,-3.02793264389038,4.31419038772583,2.36841607093811,-3.22218132019043,3.39200115203857,4.39832162857056,-2.86238813400269,3.82748985290527,3.18535733222961,-3.56891274452209,3.83763885498047,3.07874631881714,-3.76758503913879,2.67542219161987,4.83399248123169,-3.11347484588623,3.23071932792664,3.73795056343079,-3.95388507843018,1.96235132217407,5.12904262542725,-3.22801876068115,2.49390339851379,4.19948816299438,-4.21741724014282,2.49581718444824,4.10665130615234,-4.41939735412598,1.76052844524384,4.50713682174683,-4.34130907058716,1.75502240657806,4.41967630386353,-4.54649591445923,1.22204208374023,5.32049322128296,-3.23454976081848,0.993720948696136,4.70463800430298,-4.35018062591553,0.257402360439301,4.80899810791016,-4.25275945663452,0.976581931114197,4.61991930007935,-4.55558681488037,4.15108203887939,-0.726208686828613,-0.335997819900513,3.84780263900757,-0.75692343711853,-1.30923390388489,3.25943326950073,-0.492891848087311,-1.74929976463318, +2.94163274765015,-0.497342646121979,-2.16170048713684,2.24059772491455,-0.682857394218445,-3.09866046905518,1.75443959236145,-0.661738097667694,-3.32286882400513,1.6331570148468,-0.437119692564011,-3.04066729545593,1.16417980194092,-0.608290374279022,-3.47783160209656,1.10670816898346,-0.392294675111771,-3.17395186424255,0.291627407073975,-0.51462584733963,-3.53468751907349,-0.216848909854889,-0.456911504268646,-3.47300720214844,-0.727427661418915,-0.387834638357162,-3.32899022102356,-1.27616536617279,-0.302758812904358,-3.06287431716919,-1.12920117378235,-0.113887943327427,-2.76958513259888,-1.68346893787384,-0.249548316001892,-2.80152535438538,-1.48028373718262,-0.052417129278183,-2.52124166488647,-2.0034339427948,0.0567370355129242,-1.95612525939941,-2.33221554756165,-0.123544663190842,-2.11996150016785,-2.15114068984985,0.0923959463834763,-1.74447238445282,-2.48356556892395,-0.0915001630783081,-1.89831435680389,-2.39997243881226,0.165703356266022,-1.2457447052002,-2.76127147674561,-0.025083601474762,-1.34880566596985,-2.97660732269287,0.044348269701004,-0.707001686096191,-2.58299255371094,0.240131869912148,-0.658610999584198,-3.06568002700806,0.0913203507661819,-0.0778974592685699,-3.06080198287964,0.13227790594101,0.519718706607819,3.64830470085144,-0.452985495328903,-0.880512177944183,3.68239569664001,-0.299611985683441,0.813497602939606,3.78613543510437,-0.381907820701599,0.042542040348053,3.50575518608093,-0.474928885698318,-1.28036236763,-2.33826160430908,5.01067495346069,-0.379891514778137,-2.86359095573425,3.37209057807922,1.31136465072632,-2.7160267829895,2.74961042404175,1.87049162387848,-2.37923169136047,2.12650227546692,2.37981581687927,-0.897215008735657,0.853858709335327,3.25345015525818,-1.38625311851501,0.408461779356003,2.53560638427734,-0.996235609054565,0.38991117477417,2.78836154937744,-0.57940137386322,0.363225519657135,2.98483371734619,-1.70872187614441,0.415436625480652,2.23682641983032,-0.129352450370789,0.327382206916809,3.12146425247192,-0.470242619514465,0.652517795562744,3.34701919555664, +0.0591362714767456,0.465832501649857,3.40022397041321,-2.26583862304688,0.866811215877533,1.80705571174622,-2.31126666069031,0.401904940605164,1.39331698417664,-2.55034708976746,1.19981861114502,1.4846705198288,-2.76781749725342,0.581015706062317,0.404669374227524,-2.82431793212891,0.50992077589035,0.0675426423549652,-3.14046287536621,1.21104550361633,-0.159796863794327,-3.32405233383179,1.81449294090271,-0.683195233345032,-3.34314727783203,2.4953281879425,-1.30145847797394,-3.40247249603271,2.3696026802063,-1.48595142364502,-3.18268156051636,3.10389757156372,-1.88988852500916,-2.89103364944458,3.59675788879395,-2.41109108924866,-2.9279727935791,3.48629951477051,-2.60146522521973,-2.49376153945923,4.00006294250488,-2.88972473144531,-2.54217433929443,3.89394283294678,-3.08257555961609,-1.98984599113464,4.32953023910522,-3.3210916519165,-2.05041122436523,4.23082828521729,-3.52003955841064,-1.33874452114105,4.59356355667114,-3.71702837944031,-1.38866901397705,4.50417995452881,-3.92096400260925,0.466065585613251,5.42106819152832,-3.15583682060242,-0.564757227897644,4.75267887115479,-4.04802083969116,0.220288753509521,4.70383310317993,-4.4646635055542,0.158472001552582,-3.60199451446533,-2.27252435684204,-0.0131074190139771,-4.04353618621826,-1.58506095409393,-0.10092681646347,-3.69418334960938,-1.78929829597473,0.274709761142731,-3.35011839866638,-2.83049011230469,0.553998112678528,-3.55160903930664,-2.95822811126709,0.259935528039932,-3.11441969871521,-3.28103756904602,0.54740971326828,-3.25150632858276,-3.46812915802002,0.218024149537086,-2.80635356903076,-3.52440142631531,0.446776151657104,-2.51714277267456,-3.86137342453003,0.183167010545731,-2.50582957267761,-3.54615473747253,0.462555259466171,-2.11725163459778,-3.66679239273071,0.198333233594894,-2.20130944252014,-3.41533660888672,0.66659951210022,-1.91053438186646,-3.28183460235596,0.337882280349731,-2.0206413269043,-3.1091365814209,0.455278247594833,-2.02801871299744,-2.9092493057251,0.584531903266907,-2.11555862426758,-2.6317081451416,0.936675906181335,-2.03370070457458,-2.71209812164307, +0.664663136005402,-2.30586409568787,-2.18636393547058,0.66045606136322,-2.48288130760193,-1.77036547660828,1.02128767967224,-2.48216938972473,-1.68433094024658,0.56548410654068,-2.64040374755859,-1.3239049911499,0.897289097309113,-2.67890787124634,-1.16713130474091,0.518769919872284,-2.8321385383606,-0.798775732517242,0.28327751159668,-2.74651193618774,-1.03229105472565,-0.178827345371246,-3.31505966186523,-1.31874370574951,-0.0267290472984314,-2.96589493751526,-1.12488782405853,-0.710429966449738,-3.18433332443237,1.34635090827942,-0.902128994464874,-2.78694581985474,0.42936110496521,-1.14007890224457,-2.65901732444763,-0.281069695949554,-1.50486421585083,-2.40253353118896,0.678415417671204,-1.80935597419739,-1.79265213012695,1.1188884973526,-1.3872663974762,-2.02915239334106,1.58142495155334,-2.22844314575195,-1.41536033153534,0.687099993228912,-1.93101465702057,-2.11741876602173,0.0402396321296692,-2.85756230354309,-0.218346893787384,0.756570339202881,-2.79767894744873,-0.513864874839783,0.137490034103394,-2.64802479743958,-0.77099072933197,-1.07049477100372,-2.41829824447632,-0.833772718906403,-2.04315447807312,-1.93389964103699,-0.206252008676529,-2.58323240280151,-2.52601718902588,-1.54188144207001,-1.38941049575806,-1.92472791671753,-0.953605532646179,-3.08804893493652,-2.35547471046448,-1.62245547771454,-2.69157981872559,-2.13419723510742,-2.23828053474426,-0.762293577194214,-2.46345186233521,-2.22844290733337,-2.07924652099609,-1.35510206222534,-2.95761632919312,-0.781308710575104,-2.16167426109314,-2.89799928665161,-1.52856278419495,-1.52031517028809,-3.5122389793396,-1.27074372768402,-0.689391613006592,-3.92131519317627,-1.25371360778809,-2.46540760993958,-3.09374570846558,-2.96966981887817,-2.23102378845215,-3.73299360275269,-2.4258496761322,-1.65958106517792,-4.3520336151123,-2.06109666824341,-0.802088558673859,-4.78541898727417,-2.01877975463867,-0.8990079164505,-5.56976652145386,-2.81906795501709,-2.24237084388733,-4.56134033203125,-3.34534645080566,-1.71102702617645,-5.16589212417603,-2.93520402908325, +-0.890218734741211,-6.13561964035034,-3.46900987625122,-2.45887494087219,-3.95566558837891,-3.87463212013245,-1.69955480098724,-5.77274513244629,-3.62456941604614,-2.21290802955627,-5.18067073822021,-4.04413604736328,-1.6129070520401,-6.3714656829834,-4.32847881317139,-2.12824463844299,-5.80224514007568,-4.74194145202637,-1.42865359783173,-6.89401149749756,-5.07477855682373,-2.41960978507996,-4.60124158859253,-4.56407880783081,-1.35429489612579,-7.06697082519531,-5.74989223480225,-0.780984222888947,-7.26629686355591,-5.96711397171021,-1.94610786437988,-6.37037086486816,-5.43098640441895,-1.32568466663361,-7.02537202835083,-6.25505781173706,-0.822742462158203,-7.14823150634766,-6.49161338806152,-1.67973351478577,-6.75124502182007,-5.97798538208008,-2.16166853904724,-5.80962800979614,-5.86813640594482,-1.45839858055115,-6.63449478149414,-6.80714797973633,-0.791492819786072,-6.82845497131348,-7.02331304550171,-1.87307798862457,-6.28597021102905,-6.41067028045654,-0.809232711791992,-6.24427127838135,-7.45376443862915,-1.51984870433807,-6.05418014526367,-7.19590711593628,-1.87318921089172,-5.76154041290283,-6.84625339508057,-2.33610844612122,-5.22136116027832,-5.23000812530518,-2.1522650718689,-5.27179908752441,-6.35659551620483,-1.65618348121643,-5.32337951660156,-7.21558475494385,-0.865300238132477,-5.39437437057495,-7.60710954666138,-1.94088208675385,-4.8158106803894,-6.78180694580078,-2.31911325454712,-4.67439556121826,-5.76552104949951,-1.5992556810379,-4.59523725509644,-7.10270404815674,-2.07877612113953,-4.19745826721191,-6.26574277877808,-2.39623475074768,-4.04010581970215,-5.13016557693481,-1.6162041425705,-3.89019680023193,-6.67303800582886,-2.42398905754089,-3.38311266899109,-4.46041870117188,-2.13368964195251,-3.55987310409546,-5.67757797241211,-2.14392375946045,-2.90027332305908,-5.02424049377441,-2.40008473396301,-2.51334738731384,-3.56816816329956,-2.08890867233276,-2.0324227809906,-4.11681747436523,-1.55739164352417,-1.73773467540741,-4.60608577728271,-1.35317945480347,-0.943399608135223,-3.78232097625732, +-0.772020041942596,-0.989632964134216,-4.0903205871582,-1.61275470256805,-2.55530095100403,-5.47086715698242,-0.845895230770111,-1.67026805877686,-4.88071060180664,-0.259702384471893,-1.13149642944336,-4.08583641052246,-0.224518328905106,-1.8112108707428,-4.76813888549805,0.249047607183456,-1.31703042984009,-3.81844282150269,0.15321758389473,-2.1086208820343,-4.5146336555481,-0.0317259132862091,-2.63252329826355,-5.35222148895264,-0.870709836483002,-2.40801429748535,-5.6626501083374,-1.61453020572662,-3.21475958824158,-6.1130633354187,-0.885104358196259,-3.07027506828308,-6.30066204071045,-0.0806547850370407,-3.34019756317139,-6.05649042129517,-0.896632552146912,-3.76550579071045,-6.88900947570801,-0.883872807025909,-4.52235889434814,-7.3684983253479,-0.10602693259716,-3.98383736610413,-6.60217714309692,-0.107877090573311,-4.6884970664978,-7.03886651992798,-0.139001354575157,-5.49763870239258,-7.31202268600464,0.195309966802597,-4.92049837112427,-6.51477527618408,-0.175412073731422,-6.20051193237305,-7.23538589477539,0.157102420926094,-5.57332897186279,-6.78643321990967,-0.198789685964584,-6.7091236114502,-6.89848613739014,0.141848862171173,-6.09462785720825,-6.7418966293335,-0.173737034201622,-7.01650619506836,-6.3541111946106,0.0748539417982101,-6.57710886001587,-6.55984687805176,0.269913017749786,-5.61821746826172,-6.38881969451904,0.281123906373978,-5.97503805160522,-6.24212789535522,0.225204646587372,-6.47152185440063,-6.02060317993164,-0.0922876670956612,-7.03977203369141,-5.62493515014648,-0.729744434356689,-7.20500612258911,-5.3022723197937,0.375397741794586,-5.69970512390137,-5.69130563735962,0.310601472854614,-6.26261425018311,-5.37392997741699,-0.0763085782527924,-6.84572172164917,-4.92936706542969,-0.716289460659027,-7.02152061462402,-4.79020357131958,0.359604299068451,-5.96162128448486,-4.78421354293823,-0.0875951573252678,-6.52438259124756,-4.30209636688232,-0.821619808673859,-6.64059782028198,-4.13661479949951,-0.0990105718374252,-6.10076427459717,-3.67574262619019,0.397595643997192,-5.57635927200317,-4.19673728942871, +-0.0710518807172775,-5.53032445907593,-3.00265312194824,0.429380774497986,-5.10810279846191,-3.58689045906067,-0.0348125398159027,-4.82946920394897,-2.28525161743164,0.460025250911713,-4.5082859992981,-2.91867733001709,-0.529539465904236,-3.37344169616699,-0.921032786369324,0.430863976478577,-3.82897138595581,-2.31791925430298,0.00908923149108887,-3.46060752868652,-1.15250957012177,-0.278491675853729,-2.92762494087219,-0.498674660921097,0.144182622432709,-3.11038994789124,-0.92211776971817,-0.0455213189125061,-2.95030903816223,0.282693564891815,0.558541536331177,-4.06542205810547,-3.51506662368774,0.523050427436829,-4.56284379959106,-4.11581659317017,0.528853058815002,-3.60986185073853,-4.0391640663147,0.486547827720642,-2.84670400619507,-3.81108808517456,0.480981975793839,-4.99906969070435,-4.68277835845947,0.482653856277466,-4.00685358047485,-4.61802434921265,0.416039824485779,-3.02062582969666,-4.4503321647644,0.432850480079651,-5.37968444824219,-5.20461893081665,0.337632417678833,-3.38365769386292,-5.06817007064819,0.948042154312134,-1.26992416381836,-3.33644819259644,0.795932173728943,-1.92277789115906,-3.05643939971924,1.37178778648376,-1.33398199081421,-3.02121591567993,1.73432421684265,-1.42733633518219,-2.68457341194153,1.03159880638123,-2.27945566177368,-2.15778636932373,2.08180713653564,-1.54447686672211,-2.22938561439514,2.68558096885681,-0.708575189113617,-2.80432772636414,3.16259407997131,-0.749661862850189,-2.36863422393799,2.35227870941162,-1.67283892631531,-1.68174910545349,3.55378341674805,-0.775991439819336,-1.84334373474121,1.61564958095551,-2.53518414497375,-0.537113606929779,2.9386522769928,-1.62350606918335,-1.08399963378906,0.64110255241394,-3.00236225128174,0.2432941198349,0.644057273864746,-3.4961678981781,1.18526744842529,1.06181871891022,-3.37220191955566,1.13349235057831,1.32972764968872,-2.9672486782074,0.310357511043549,1.86460971832275,-2.783123254776,0.422087669372559,1.79067087173462,-2.803866147995,1.1459379196167,2.35670566558838,-2.28614473342896,-0.295851111412048,2.27401614189148,-2.49903225898743,0.590204060077667, +3.25859427452087,-1.52809071540833,-0.617695689201355,4.02558898925781,-0.741598129272461,-0.834814429283142,2.77883386611938,-2.05545878410339,-0.0189860463142395,2.56376218795776,-2.20417475700378,0.798838913440704,3.50615072250366,-1.3966019153595,-0.192299902439117,3.0963773727417,-1.80675041675568,0.274589717388153,0.433206915855408,-4.42578983306885,-5.16512775421143,0.384706139564514,-4.84641218185425,-5.64285182952881,0.273452311754227,-3.85119152069092,-5.64476680755615,0.231278628110886,-4.36592626571655,-6.11982822418213,0.332310318946838,-5.24666833877563,-6.05318641662598,-0.941832542419434,0.00662407279014587,-1.26081621646881,-0.898148894309998,-0.00559994578361511,-1.34164357185364,-0.940278351306915,-0.0421454757452011,-1.78389978408813,0.265242874622345,-0.163646399974823,-1.68726134300232,-0.649996042251587,-0.186445385217667,-2.99825978279114,-0.157480120658875,-0.254414856433868,-3.15771055221558,-0.897078335285187,-0.0391929894685745,-1.70194983482361,-0.170799851417542,0.0255817696452141,-0.140311390161514,0.304452508687973,-0.310625374317169,-3.22586345672607,0.494956940412521,-0.193496406078339,-1.73861455917358,2.08600854873657,-0.468829363584518,-2.83976149559021,0.941021800041199,-0.218509346246719,-1.48219752311707,1.01405167579651,-0.205635547637939,-1.25681436061859,2.49852871894836,-0.48614501953125,-2.56390523910522,-0.0771628022193909,0.0427689850330353,0.153378129005432,0.980628490447998,-0.180375829339027,-1.02327299118042,1.01073575019836,-0.194279164075851,-1.13798880577087,0.847610473632813,-0.14791351556778,-0.829497039318085,0.925294697284698,-0.164648115634918,-0.91862940788269,-1.64271593093872,0.213880181312561,0.161921203136444,-2.64212799072266,0.290523141622543,-0.186058178544044,-1.55817484855652,0.177218556404114,-0.132740676403046,-1.66532683372498,0.0904581546783447,-1.19882345199585,-1.59426379203796,0.0883147716522217,-1.13935768604279,-1.36715221405029,0.134189277887344,-0.371436387300491,-1.33332669734955,0.0678415223956108,-1.05664539337158,-1.24158811569214,0.0572114139795303,-1.06450605392456, +-1.15332126617432,0.0453031063079834,-1.09015572071075,-1.09872913360596,0.0913432389497757,-0.517826735973358,3.06333351135254,-0.116183519363403,2.05984354019165,2.64290022850037,-0.032414436340332,2.47052192687988,0.977215766906738,0.212523996829987,3.17042207717896,0.469433069229126,0.270314395427704,3.202556848526,-0.350338578224182,0.136595904827118,0.841185867786407,-0.269812941551208,0.033780425786972,0.565787076950073,-0.222039937973022,0.017220214009285,0.444040358066559,-0.0747749805450439,0.0569050312042236,0.307828187942505,-0.281977355480194,-0.0221331752836704,-0.0656323432922363,-0.356828451156616,-0.0233518593013287,-0.174143075942993,-0.498704195022583,0.0312714464962482,-0.461990535259247,-0.683432400226593,-0.00503656081855297,-0.387267172336578,-0.943296372890472,0.0228153504431248,-0.410551100969315,-1.64032793045044,0.228016212582588,0.316371262073517,-1.52846479415894,0.157241180539131,0.326984137296677,-1.60790419578552,0.23859278857708,0.467689484357834,-1.50043845176697,0.165677309036255,0.455522507429123,-1.4590402841568,0.247594118118286,0.738013863563538,-1.37314057350159,0.171817928552628,0.684879899024963,-1.34832048416138,0.245672941207886,0.846631646156311,-1.27876114845276,0.169286459684372,0.776884615421295,-2.55849695205688,0.36398121714592,0.701080918312073,-2.64759588241577,0.322313904762268,0.148968189954758,-2.04874014854431,0.413931488990784,1.82665920257568,-1.04653680324554,0.153502643108368,0.898003876209259,-0.477219223976135,0.158462196588516,0.927693367004395,-1.00050723552704,0.0195139199495316,-1.19023370742798,-1.76677751541138,0.0870932042598724,-1.35286664962769,-1.72357773780823,0.090045690536499,-1.27091670036316,-1.80202651023865,0.0741153061389923,-1.53348207473755,-1.79272079467773,0.0645885765552521,-1.62520670890808,-1.72202348709106,0.0412761867046356,-1.79400026798248,-1.66917443275452,-0.0154451727867126,-2.34468388557434,0.727453708648682,-0.0310313701629639,0.276387691497803,0.772963404655457,-0.0249104499816895,0.393247783184052,0.711076736450195,-0.0410696119070053,0.152307510375977, +-1.11265683174133,-0.067014753818512,-1.16359543800354,0.724784314632416,-0.0544418171048164,0.0282180905342102,1.73799419403076,-0.145960360765457,0.245288908481598,1.51821303367615,-0.171277821063995,-0.274653673171997,1.73002195358276,-0.165841668844223,0.0279143452644348,1.68451225757599,-0.171962589025497,-0.0889456868171692,0.837564706802368,-0.08793094009161,-0.191559910774231,1.29667139053345,-0.0567966997623444,0.666850090026855,1.41751766204834,-0.0730462819337845,0.636899888515472,1.28559875488281,-0.153905987739563,-0.362585783004761,-0.931385636329651,-0.11119481921196,-1.42862200737,-0.930012166500092,-0.126621544361115,-1.59312677383423,-0.92260879278183,-0.119767621159554,-1.5107262134552,-1.57463407516479,-0.0830631256103516,-1.87327659130096,-1.42226791381836,-0.00931119918823242,-1.99031043052673,0.751613557338715,-0.131041839718819,-0.760508596897125,0.52533233165741,-0.100356467068195,-0.696073114871979,1.61991095542908,-0.108942091464996,0.495861947536469,1.05038726329803,-0.0323611050844193,0.637010812759399,1.17187702655792,-0.0429670512676239,0.666887760162354,1.63800609111786,-0.223524659872055,0.382208049297333,1.57437145709991,-0.207506358623505,0.475987732410431,1.27967929840088,-0.159932598471642,0.631790339946747,0.802331805229187,-0.130822896957397,0.382267951965332,0.867943167686462,-0.129141926765442,0.47603839635849,0.745964467525482,-0.145555943250656,0.162616908550262,0.760869026184082,-0.13640233874321,0.275730311870575,1.68974280357361,-0.250249743461609,0.162549316883087,0.797701358795166,-0.172281011939049,-0.0570418834686279,0.861335933208466,-0.188299313187599,-0.150821536779404,0.945690035820007,-0.204875737428665,-0.226387232542038,1.67483842372894,-0.259403377771378,0.0494359135627747,1.26978802680969,-0.248492509126663,-0.306632310152054,0.927523732185364,-0.277012407779694,-1.03630244731903,0.808342933654785,-0.247561931610107,-0.85877537727356,0.955748558044434,-0.299783021211624,-1.24907493591309,0.721672177314758,-0.232199817895889,-0.795117497444153,0.933152437210083,-0.307120472192764,-1.35507357120514, +0.516459882259369,-0.204152628779411,-0.73438435792923,0.408584445714951,-0.192925363779068,-0.740465879440308,0.88722550868988,-0.311201184988022,-1.45343112945557,0.63859236240387,-0.302684187889099,-1.65508008003235,0.270665884017944,-0.260491937398911,-1.63367104530334,0.0512858629226685,-0.215339094400406,-1.40478920936584,0.129687547683716,-0.176929995417595,-0.897034883499146,0.0274943113327026,-0.183340698480606,-1.08704197406769,-1.17926967144012,-0.128683626651764,-1.90500402450562,-1.25805306434631,-0.12254273891449,-1.93044233322144,-0.956005394458771,-0.101232558488846,-1.34996938705444,-1.34716546535492,-0.0355015695095062,-1.09682428836823,-1.69568037986755,-0.015882596373558,-1.29061150550842,-1.64385235309601,-0.0154538601636887,-1.22576308250427,-1.508021235466,-0.0213942676782608,-1.1318678855896,-1.58048748970032,-0.0173149108886719,-1.17216193675995,-0.015119731426239,-0.0995362624526024,-1.32543087005615,-0.0252048373222351,-0.0874820649623871,-1.20705676078796,0.0214940309524536,-0.11396785825491,-1.43817234039307,0.0827335119247437,-0.13002672791481,-1.53942108154297,0.165415644645691,-0.146878197789192,-1.62391471862793,0.377026706933975,-0.179459795355797,-1.72616863250732,0.669959485530853,-0.209658786654472,-1.70663833618164,0.776524543762207,-0.216355413198471,-1.65317344665527,0.868471622467041,-0.219357594847679,-1.57704067230225,0.990404009819031,-0.213854670524597,-1.37357354164124,0.642293453216553,-0.114910006523132,-0.71524977684021,0.406809240579605,-0.0881377011537552,-0.703975260257721,0.292884588241577,-0.0788887590169907,-0.738545477390289,0.18947970867157,-0.0730903670191765,-0.797986924648285,0.101969361305237,-0.0710439234972,-0.879210114479065,-0.00823706388473511,-0.0784317553043365,-1.08920228481293,0.953839182853699,-0.28957000374794,-1.140944480896,0.878169894218445,-0.262762844562531,-0.940587759017944,0.622662484645844,-0.217474922537804,-0.752922773361206,0.304643154144287,-0.184376671910286,-0.770851254463196,0.820354759693146,-0.311812877655029,-1.53903532028198, +0.210038363933563,-0.178950846195221,-0.823961138725281,0.736015796661377,-0.308923840522766,-1.6074366569519,0.479122340679169,-0.287795513868332,-1.68253469467163,0.371975690126419,-0.274935722351074,-1.67011058330536,0.180458724498749,-0.245214879512787,-1.5751097202301,0.106042802333832,-0.229898557066917,-1.49747085571289,0.0190340876579285,-0.202293276786804,-1.30188262462616,0.0109637975692749,-0.191439047455788,-1.19409954547882,0.0677666664123535,-0.178419068455696,-0.986274659633636,0.0349017381668091,-0.0728557631373405,-0.977993369102478,-0.109586536884308,0.0321924164891243,0.00205987691879272,-0.102514736354351,0.0740572959184647,0.459474802017212,-0.159315943717957,0.0935666561126709,0.60249000787735,-0.242995738983154,0.114683367311954,0.731378078460693,-0.618761539459229,0.17944198846817,0.987576007843018,-0.769526481628418,0.198728904128075,1.01853311061859,-0.923719882965088,0.21558190882206,1.01937448978424,-1.07541656494141,0.229353249073029,0.990068078041077,-1.21878659725189,0.239513725042343,0.931740045547485,-1.54669106006622,0.24520343542099,0.610060811042786,-1.61497604846954,0.196727901697159,0.0102746486663818,-1.47449505329132,0.15610183775425,-0.261628687381744,-1.24027156829834,0.112322993576527,-0.457943886518478,-0.947964131832123,0.0720562562346458,-0.548783719539642,-0.793770790100098,0.0552032850682735,-0.549625158309937,-0.642074227333069,0.0414319336414337,-0.520318627357483,-0.369170308113098,0.0251122526824474,-0.376882255077362,-0.258450567722321,0.0231910906732082,-0.268264502286911,-0.431260585784912,0.0708684474229813,0.76927250623703,-0.340458273887634,0.0518952161073685,0.675604641437531,-0.53873074054718,0.0899709463119507,0.843191623687744,-0.658738732337952,0.108468681573868,0.894520938396454,-0.786672592163086,0.125650718808174,0.921287894248962,-0.91761589050293,0.140856832265854,0.922463893890381,-1.16848051548004,0.163102135062218,0.84884786605835,-1.44799160957336,0.17059925198555,0.576369166374207,-1.53099393844604,0.145615085959435,0.195693641901016,-1.50792908668518,0.131245851516724,0.0666963756084442, +-1.46015608310699,0.114685647189617,-0.0550503432750702,-1.29870855808258,0.0775976479053497,-0.258535832166672,-1.19123816490173,0.0584951192140579,-0.332454800605774,-0.812353074550629,0.00760924443602562,-0.4117271900177,-0.561488509178162,-0.0146360602229834,-0.338111162185669,-0.229530513286591,-0.0172112360596657,0.0552142262458801,-0.201504170894623,-0.00877510756254196,0.183752596378326,-0.198974907398224,0.0028509721159935,0.315043091773987,-0.451207935810089,-0.020820377394557,-0.266147881746292,-1.07123029232025,0.039997398853302,-0.383784204721451,0.767779946327209,-0.0703708529472351,-0.0886687040328979,0.930083036422729,-0.106101587414742,-0.274475932121277,1.0399581193924,-0.123826757073402,-0.332597941160202,1.16080439090729,-0.140076354146004,-0.362548053264618,1.4070885181427,-0.164511919021606,-0.332708895206451,1.61251449584961,-0.173810422420502,-0.191794127225876,1.74639904499054,-0.155803427100182,0.151994585990906,1.68969583511353,-0.126502171158791,0.392970681190491,1.52739262580872,-0.0907714366912842,0.578777968883514,0.939262628555298,-0.0255952179431915,0.57895565032959,0.844961225986481,-0.023062601685524,0.496096134185791,1.68206286430359,-0.241272747516632,0.247593402862549,1.49001741409302,-0.190929919481277,0.55155348777771,1.38984608650208,-0.174758747220039,0.604513704776764,1.05517768859863,-0.137633815407753,0.604537546634674,0.953890085220337,-0.131457075476646,0.55159193277359,0.758484482765198,-0.157751753926277,0.0495015978813171,1.04586136341095,-0.221046924591064,-0.27934741973877,1.15602815151215,-0.235873058438301,-0.306624203920364,1.63337564468384,-0.264982789754868,-0.0571017265319824,1.3805296421051,-0.258171856403351,-0.279371410608292,1.56776428222656,-0.266663759946823,-0.15087217092514,1.4818172454834,-0.264348596334457,-0.226425647735596,1.16591930389404,-0.147313162684441,0.631798565387726,-0.871135175228119,-0.016688346862793,-1.42960977554321,-0.861829519271851,-0.026215061545372,-1.52133429050446,-0.870589375495911,-0.0338139533996582,-1.61329233646393,-0.998529136180878,-0.0425579100847244,-1.85599303245544, +-1.06959223747253,-0.0404145270586014,-1.91545867919922,-1.15073692798615,-0.035797655582428,-1.96001195907593,-1.23884451389313,-0.0288846790790558,-1.98794054985046,-1.33052933216095,-0.0199413001537323,-1.99817097187042,-1.51053476333618,0.00259712338447571,-1.96466064453125,-1.59193778038025,0.0153260231018066,-1.92220771312714,-1.66334891319275,0.0283863246440887,-1.86458265781403,-1.77354264259338,0.056357204914093,-1.69152438640594,-1.7932665348053,0.0817141830921173,-1.44152414798737,-1.51311922073364,0.0836978927254677,-1.09480452537537,-1.42501151561737,0.0767849162220955,-1.06687593460083,-1.07191824913025,0.0325742214918137,-1.13260877132416,-1.73397970199585,-0.0185847282409668,-1.36421489715576,-1.75727868080139,-0.0234563648700714,-1.44374513626099,-1.26495766639709,-0.0449874103069305,-1.10342133045197,-1.04841661453247,-0.0787097811698914,-1.21485996246338,-1.76468205451965,-0.0303103029727936,-1.52614557743073,-1.75590515136719,-0.0388830900192261,-1.60824990272522,-1.73840808868408,-0.0462793707847595,-1.66755187511444,-1.69176912307739,-0.0598141849040985,-1.75908136367798,-0.995521903038025,-0.090263694524765,-1.27779066562653,-0.953311264514923,-0.131493136286736,-1.67265701293945,-0.991610765457153,-0.134195283055305,-1.74626064300537,-1.63887453079224,-0.0713681280612946,-1.82201194763184,-1.42233335971832,-0.105090498924255,-1.93345057964325,-1.3401255607605,-0.11457633972168,-1.94004762172699,-1.10680329799652,-0.132763028144836,-1.86470997333527,1.25274705886841,-0.5814089179039,3.14708113670349,2.28094601631165,-1.05862045288086,2.46638584136963,1.91996562480927,-1.5811505317688,2.08114790916443,2.30192947387695,-1.7398020029068,1.77548265457153,1.92554485797882,-1.8654373884201,1.81128823757172,2.1718807220459,-2.13354349136353,1.46345710754395,-1.15679097175598,-1.76325309276581,1.84007716178894,-0.896916389465332,-1.12957298755646,2.41431140899658,-1.22745072841644,-0.808651745319366,2.49315309524536,0.378247380256653,-0.456945598125458,3.2524106502533,0.32142186164856,-0.690316677093506,3.05983304977417, +-1.13901078701019,-2.07676076889038,1.67108774185181,-1.18463134765625,-2.64575386047363,1.41159987449646,-0.974436044692993,-2.54724144935608,1.53212511539459,0.0773749947547913,-3.26485633850098,1.40018391609192,0.0462380051612854,-3.4872350692749,1.26412463188171,2.01361560821533,-2.47211170196533,1.26436471939087,1.7241837978363,-2.44714760780334,1.4239068031311,1.55553078651428,-2.69951128959656,1.33433997631073,1.47383618354797,-3.12087202072144,1.10123610496521,1.30467200279236,-2.94959354400635,1.29160857200623,-0.0339716672897339,6.04201078414917,-1.90017354488373,0.660600066184998,6.05944156646729,-2.07942771911621,-0.70098078250885,5.92220830917358,-1.6280859708786,-1.34069764614105,5.71175098419189,-1.28123068809509,-1.527095079422,5.81148767471313,-1.46810173988342,-1.88344085216522,5.40324020385742,-0.858145296573639,-2.58490943908691,5.05167293548584,-0.486591100692749,-2.66913080215454,4.53162670135498,0.154312044382095,-2.83934593200684,3.97061324119568,0.732868313789368,-3.15519428253174,3.31045937538147,1.30311906337738,-2.42723941802979,1.6839200258255,2.65832901000977,-2.15114736557007,1.83563756942749,2.60393810272217,-1.63396787643433,0.983441829681396,3.15630006790161,-1.39008319377899,1.1546413898468,3.08174896240234,-1.10070526599884,0.658043622970581,3.35068321228027,-0.598450422286987,0.423510581254959,3.46463441848755,-0.01939857006073,0.209013491868973,3.52755761146545,0.513757526874542,0.352256536483765,3.39816951751709,0.649231731891632,6.1864857673645,-2.3148820400238,2.93792295455933,5.59914112091064,-2.27795696258545,3.53967523574829,5.07388544082642,-1.80944728851318,3.69500255584717,5.14113569259644,-2.01089668273926,4.60868215560913,3.89739751815796,-0.954534769058228,4.86644649505615,3.88994979858398,-1.1278623342514,4.85482025146484,3.408123254776,-0.527131974697113,5.12193298339844,3.30989217758179,-0.638345301151276,4.91714811325073,2.19444966316223,0.617354094982147,4.27223491668701,1.16295516490936,1.73544836044312,3.98342514038086,0.556794345378876,2.2647180557251,2.40841817855835,0.0223802924156189,3.15555739402771, +1.90663599967957,-0.0293816328048706,3.31649684906006,-0.917997539043427,0.000398650765419006,-1.3001354932785,-0.0235440135002136,-0.0931695252656937,-1.26656651496887,-0.864230275154114,-0.0216713845729828,-1.47522068023682,-0.967649579048157,-0.0426725149154663,-1.82136178016663,-1.03261947631836,-0.0418028682470322,-1.88745951652527,0.213492512702942,-0.155327826738358,-1.65846526622772,-0.882477819919586,-0.0113139599561691,-1.38494062423706,-0.881665706634521,-0.0367959886789322,-1.6582510471344,-1.10909152030945,-0.0384063571691513,-1.93972063064575,-1.28445816040039,-0.0246469974517822,-1.9953088760376,0.435602784156799,-0.186748415231705,-1.73577284812927,-0.870926141738892,0.0632825642824173,-0.552998244762421,0.554315328598022,-0.199615806341171,-1.73465704917908,1.38342142105103,-0.41665917634964,-3.11559438705444,0.824644982814789,-0.218332707881927,-1.61771869659424,1.86682081222534,-0.454780250787735,-2.94837284088135,1.00555396080017,-0.210168093442917,-1.31583774089813,3.3941490650177,-0.484999626874924,-1.5143187046051,0.968799471855164,-0.216647237539291,-1.4292688369751,2.72680902481079,-0.493025779724121,-2.37207460403442,-1.63257217407227,0.205642312765121,0.0853780210018158,-2.62575531005859,0.268610179424286,-0.402380615472794,-2.50323081016541,0.203841164708138,-0.955852627754211,-1.42354321479797,0.145192742347717,-0.319200575351715,3.21320009231567,-0.153468936681747,1.83233261108398,1.90269041061401,0.0899045467376709,2.92688274383545,0.722720742225647,0.242540240287781,3.19782638549805,0.170040249824524,0.298847794532776,3.16201066970825,-0.354377150535583,0.345303475856781,3.05314826965332,-0.293947458267212,0.125592455267906,0.788949906826019,-0.78781795501709,0.376568824052811,2.88659763336182,-0.383541107177734,0.0613196492195129,0.724698543548584,-0.1979740858078,0.103973716497421,0.669024527072906,-0.302426636219025,0.0426859110593796,0.622463583946228,-0.0849186182022095,0.065142884850502,0.384371399879456,-0.207340598106384,0.00972496718168259,0.380142569541931,-0.0721813440322876,0.0494230389595032,0.230582475662231, +-0.197023034095764,-0.00333558022975922,0.249368906021118,-0.0896713733673096,0.0370069369673729,0.0769586563110352,-0.136716365814209,0.0283717587590218,-0.0705966949462891,-0.25280624628067,-0.0201265551149845,-0.00646990537643433,-0.211508572101593,0.0238493159413338,-0.206412851810455,-0.311173737049103,0.0236134305596352,-0.325270652770996,-0.568993866443634,0.0358724668622017,-0.494667530059814,-0.877886950969696,0.0149267315864563,-0.414364159107208,-1.02414309978485,0.0814399495720863,-0.537022173404694,-1.17100405693054,0.101670749485493,-0.491382449865341,-1.30586504936218,0.123197421431541,-0.417833030223846,-1.51951658725739,0.166811466217041,-0.199275240302086,-1.59009718894958,0.187222808599472,-0.0626657605171204,-1.64530944824219,0.22136215865612,0.239166915416718,-1.62781929969788,0.23377825319767,0.392790764570236,-1.47716283798218,0.168592631816864,0.517206609249115,-1.58077454566956,0.242413461208344,0.540346086025238,-1.32818114757538,0.171018213033676,0.733182907104492,-1.40631711483002,0.247171759605408,0.795020043849945,-1.50598204135895,0.246935874223709,0.676162242889404,-2.10988473892212,-0.884100317955017,-2.71650052070618,-1.285609126091,0.243112042546272,0.892351806163788,-1.10868215560913,0.158709168434143,0.876416444778442,-1.1484968662262,0.234912753105164,0.964416921138763,-1.00024974346161,0.222888916730881,1.00844633579254,-0.982642889022827,0.14753270149231,0.913402438163757,-0.852082014083862,0.133539348840714,0.925100922584534,-0.846564531326294,0.207502633333206,1.02274751663208,-0.693347573280334,0.189345240592957,1.00677156448364,-1.19124484062195,0.399186611175537,2.66198348999023,-0.546486854553223,0.169114470481873,0.961131811141968,-0.411625862121582,0.147587791085243,0.887582421302795,-2.28788590431213,0.129841729998589,-1.50096321105957,-1.79962587356567,0.0695716291666031,-1.5795955657959,-1.62907409667969,0.0218460261821747,-1.89516615867615,-1.55229735374451,0.00888904929161072,-1.9454470872879,-1.22479343414307,-0.0501880943775177,-1.11274075508118,-1.14827442169189,-0.06125508248806,-1.14297330379486, +0.742738664150238,-0.0621417090296745,-0.0315647721290588,0.714178800582886,-0.0473834872245789,0.0898082852363586,1.56783628463745,-0.173088416457176,-0.236054360866547,1.6515965461731,-0.173433303833008,-0.142518401145935,0.799543023109436,-0.0790092423558235,-0.142260938882828,-0.717240989208221,0.0478962883353233,-0.538696885108948,1.22316086292267,-0.147347778081894,-0.366347432136536,0.983230531215668,-0.115085557103157,-0.306883782148361,-0.92429119348526,-0.123427599668503,-1.5520886182785,1.09943854808807,-0.132197707891464,-0.351243317127228,-0.431881785392761,0.0276731513440609,-0.422602355480194,1.01578652858734,-0.20031613111496,-1.19727253913879,-1.37661361694336,-0.0148129174485803,-1.99649953842163,0.801608800888062,-0.139439642429352,-0.79223370552063,0.698276698589325,-0.122829601168633,-0.734735250473022,0.348892748355865,-0.0831080079078674,-0.718007445335388,0.239515006542206,-0.0755349695682526,-0.765321671962738,-1.11155867576599,0.0390112027525902,-1.1093692779541,-1.03478193283081,0.0260542035102844,-1.15965044498444,-0.40178781747818,-0.0225521624088287,-0.222446233034134,-0.316762983798981,-0.0232117436826229,-0.121703386306763,-0.212374925613403,-0.0134152173995972,0.118825912475586,-0.242931067943573,0.0252645164728165,0.506121158599854,-0.597446441650391,0.0993406921625137,0.871824622154236,-0.722017168998718,0.117266900837421,0.911061704158783,-1.41320598125458,0.171677812933922,0.632440149784088,-1.5175940990448,0.161881282925606,0.391910821199417,-1.52262842655182,0.138741105794907,0.130594164133072,-1.53294587135315,0.151801645755768,0.261367797851563,-1.48703789710999,0.123201556503773,0.00461557507514954,-1.13252246379852,0.0491253584623337,-0.361087918281555,-0.12739360332489,0.0835623890161514,0.532415151596069,-1.46972894668579,0.0805137678980827,-1.0786794424057,0.465879142284393,-0.0939122885465622,-0.696631908416748,1.6579327583313,-0.117863789200783,0.446562886238098,1.23431491851807,-0.049525260925293,0.670649409294128,1.44156289100647,-0.182733744382858,0.581084907054901, +1.53450322151184,-0.199227809906006,0.516349911689758,1.33562135696411,-0.167121231555939,0.621497929096222,1.10976040363312,-0.142066359519958,0.621514201164246,1.00296711921692,-0.134080111980438,0.581116318702698,0.832326531410217,-0.129483550786972,0.431110978126526,0.748804569244385,-0.151314154267311,0.105644106864929,0.826666414737701,-0.180160790681839,-0.105889141559601,0.774863004684448,-0.164774850010872,-0.00499194860458374,0.994144558906555,-0.213071942329407,-0.255918681621552,0.901204228401184,-0.196577876806259,-0.191183745861053,1.10008597373962,-0.228684425354004,-0.296331793069839,1.65731120109558,-0.262665271759033,-0.00505518913269043,1.32594704627991,-0.253739297389984,-0.296347975730896,1.60338091850281,-0.266322106122971,-0.105944812297821,1.43274021148682,-0.261725574731827,-0.255950093269348,1.52704501152039,-0.266002714633942,-0.191228628158569,0.943675935268402,-0.283545970916748,-1.08783984184265,0.905593156814575,-0.270054429769516,-0.987004220485687,0.957880914211273,-0.295005977153778,-1.19492387771606,0.947469711303711,-0.303838789463043,-1.3026909828186,0.570120751857758,-0.210593044757843,-0.740606546401978,0.85621452331543,-0.311946928501129,-1.49812388420105,0.255851864814758,-0.181251749396324,-0.794711887836456,0.688636183738708,-0.306206554174423,-1.63403487205505,0.533148169517517,-0.293418347835541,-1.67948889732361,0.223864912986755,-0.252908498048782,-1.60699081420898,0.0760031342506409,-0.222475573420525,-1.45272469520569,0.167800068855286,-0.177503973245621,-0.858217597007751,0.0322133302688599,-0.208582311868668,-1.3542891740799,0.0119199156761169,-0.196553871035576,-1.24825310707092,0.0447657108306885,-0.180462718009949,-1.0355339050293,-1.19412708282471,-0.0326135456562042,-1.9761369228363,-0.970664978027344,-0.133123904466629,-1.7103830575943,-0.916678845882416,-0.0409818738698959,-1.74396765232086,-1.46705198287964,-0.00348913669586182,-1.97966337203979,-0.863956093788147,-0.0302755981683731,-1.56750643253326,-1.60802745819092,-0.0772261321544647,-1.84923720359802, +-0.941760301589966,-0.106364533305168,-1.38867092132568,-1.66687846183777,-0.0655454397201538,-1.79186320304871,-1.69443166255951,0.0348838865756989,-1.83075213432312,-0.973983645439148,-0.095848336815834,-1.31289029121399,-1.71330738067627,-0.0542295575141907,-1.72398161888123,-1.74585843086243,0.0475015938282013,-1.75468099117279,-0.969424247741699,0.0130163282155991,-1.22406423091888,-1.0792635679245,-0.0728517174720764,-1.18763470649719,-1.76230978965759,-0.0344009697437286,-1.56743371486664,-1.76299977302551,-0.0266503095626831,-1.48478329181671,-1.79989993572235,0.0781758427619934,-1.48731005191803,-1.19680404663086,0.0513893961906433,-1.0751531124115,-1.78219020366669,0.0846962034702301,-1.3965653181076,-1.28724241256714,0.0627131387591362,-1.05831694602966,-1.30587983131409,-0.0400761365890503,-1.09809875488281,-1.74717736244202,0.0888821184635162,-1.31084883213043,-1.37939786911011,0.0725472345948219,-1.0595076084137,-1.69620645046234,0.0905727446079254,-1.23345470428467,-1.63123643398285,0.0897030830383301,-1.16735684871674,-1.55476450920105,0.0863066092133522,-1.11509561538696,1.46436882019043,-0.168405026197433,-0.307029217481613,1.71078181266785,-0.169419676065445,-0.0318573117256165,1.34720730781555,-0.159655302762985,-0.35131824016571,1.68570184707642,-0.255244642496109,0.105576992034912,1.74195241928101,-0.161280751228333,0.0894976258277893,1.21287178993225,-0.242507994174957,-0.310074508190155,0.88129061460495,-0.0970058292150497,-0.235846877098083,1.71473705768585,-0.134731307625771,0.335866808891296,1.66084444522858,-0.231030836701393,0.330158114433289,1.60904097557068,-0.215644866228104,0.43105536699295,1.57618522644043,-0.0998671799898148,0.540148913860321,0.715523302555084,-0.0355922877788544,0.214804410934448,1.47424519062042,-0.0817874521017075,0.611185789108276,0.746693909168243,-0.0274533480405807,0.336159348487854,1.35803723335266,-0.0646753311157227,0.655545294284821,0.805879235267639,-0.0234397202730179,0.446820378303528,1.22283565998077,-0.153297677636147,0.635240614414215,0.889639496803284,-0.0237846225500107,0.540356338024139, +0.908662259578705,-0.129802972078323,0.516394734382629,1.11026835441589,-0.0372177362442017,0.655620217323303,0.993106961250305,-0.0284679979085922,0.611331164836884,-0.0200801491737366,-0.0825480371713638,-1.14767718315125,-4.14848327636719e-05,-0.106499306857586,-1.38288235664368,0.0101702809333801,-0.0751869082450867,-1.03239417076111,0.0492061376571655,-0.121844567358494,-1.49057960510254,0.0656350255012512,-0.0714687556028366,-0.926709175109863,0.0961975455284119,-0.177236348390579,-0.939906895160675,0.12163907289505,-0.138407692313194,-1.58406007289886,0.141013264656067,-0.237511426210403,-1.53844380378723,0.143431067466736,-0.0715868249535561,-0.836115479469299,0.320251643657684,-0.267866432666779,-1.65480279922485,0.319992244243622,-0.171725481748581,-1.7099277973175,0.355776250362396,-0.188284859061241,-0.752690315246582,0.425163716077805,-0.281607776880264,-1.67939496040344,0.462379425764084,-0.198237717151642,-0.734337329864502,0.584393739700317,-0.107386261224747,-0.702306091785431,0.612904071807861,-0.205026760697365,-1.72395181655884,0.586536824703217,-0.298402845859528,-1.67029762268066,0.673400104045868,-0.224708631634712,-0.771172285079956,0.724737644195557,-0.213451489806175,-1.68294262886047,0.766849458217621,-0.23985081911087,-0.824445962905884,0.780113577842712,-0.310800820589066,-1.57563197612762,0.845611691474915,-0.255232572555542,-0.897658228874207,0.889019072055817,-0.156353026628494,-0.87181282043457,0.907433211803436,-0.219416737556458,-1.5316698551178,0.95596444606781,-0.172690659761429,-0.96933650970459,0.912983417510986,-0.309585332870483,-1.40553951263428,0.998965263366699,-0.187603414058685,-1.07973575592041,-1.67134404182434,-0.0153809925541282,-1.25692796707153,-1.61346936225891,-0.0161005556583405,-1.19741678237915,-1.4292379617691,-0.0275351703166962,-1.10642957687378,-1.71662592887878,-0.0169540047645569,-1.32648885250092,-1.74757409095764,-0.0207592248916626,-1.40342617034912,-1.1857738494873,-0.0556280910968781,-1.12596714496613,-1.02041292190552,-0.0845324546098709,-1.24500870704651, +-0.939716696739197,-0.129318714141846,-1.6334456205368,-1.38141131401062,-0.110001772642136,-1.9387731552124,-1.21805644035339,-0.125857919454575,-1.91965508460999,-1.04343867301941,-0.134624019265175,-1.81110882759094,0.142203390598297,-0.583107650279999,2.86754989624023,0.34925103187561,-3.17296409606934,1.20817565917969,0.754466950893402,-3.11085915565491,1.16049718856812,1.70849049091339,-2.21301555633545,1.33969187736511,1.56365633010864,-2.46120548248291,1.23046636581421,1.4421159029007,-2.82771730422974,1.30591154098511,1.3591890335083,-2.72041177749634,1.15922856330872,1.07418298721313,-2.95302772521973,1.1395308971405,0.933784484863281,-0.641849458217621,2.86109566688538,1.24761116504669,-0.751886188983917,2.73557186126709,1.51972556114197,-0.916675627231598,2.54860234260559,1.88807952404022,-1.46598637104034,2.20505404472351,1.93367671966553,-1.71402430534363,1.94835591316223,1.89434576034546,-2.03521013259888,1.6741931438446,1.82160007953644,-1.90999484062195,1.53671085834503,1.86807382106781,-1.58176755905151,1.81391453742981,-1.08250260353088,-1.82218325138092,1.58846199512482,-0.815903067588806,-2.78141570091248,1.48990416526794,-0.76011735200882,-2.70033431053162,1.31569671630859,-0.238256275653839,-3.05966854095459,1.26128625869751,-0.25810033082962,-3.17109894752502,1.42952108383179,-1.0499119758606,-1.48969900608063,1.81137561798096,-0.999166667461395,-1.26128280162811,2.26658129692078,-0.922967493534088,-1.15004432201385,2.11850380897522,-0.557114839553833,-0.886452198028564,2.72751617431641,-0.264458894729614,-0.777923583984375,2.89355182647705,0.551287055015564,-0.572708964347839,2.91713714599609,-1.00727319717407,-2.21893525123596,1.42493891716003,1.71879386901855,-1.11565017700195,2.31598162651062,1.83056449890137,-1.33198988437653,2.06858730316162,-0.714010953903198,-0.911332011222839,2.39124774932861,-0.501482248306274,-0.769396781921387,2.57494807243347,-0.224041342735291,-0.658353805541992,2.73829770088196,-1.90775537490845,-1.04539561271667,1.71023488044739,-2.13057613372803,-0.83839476108551,1.6075382232666, +-2.09886002540588,-0.600754141807556,1.86371898651123,-2.3421802520752,-0.619357407093048,1.49582266807556,-1.80030119419098,-0.577346324920654,2.19172215461731,-2.53927564620972,-0.400046467781067,1.36251413822174,-2.54068851470947,-0.155200615525246,1.6310727596283,-2.53774547576904,-0.641071140766144,1.07826352119446,-2.03300476074219,-0.37411293387413,2.12149000167847,-1.92709529399872,-0.160653904080391,2.37829279899597,-2.28014278411865,-0.153210371732712,2.01632952690125,-2.74273729324341,-0.167406857013702,1.17903435230255,-2.76828813552856,0.0836605578660965,1.43851947784424,-2.87918949127197,-0.0073326975107193,1.02013087272644,-2.5133969783783,0.0670192390680313,1.88228476047516,-2.45260095596313,0.287372022867203,2.13385105133057,-1.08654034137726,-0.679143786430359,2.66786217689514,-1.50449073314667,-0.191937699913979,2.6921272277832,-1.77522218227386,0.0374441295862198,2.63156747817993,-1.61317431926727,0.252550005912781,2.8677453994751,-2.07086706161499,0.273190557956696,2.52384448051453,-2.35321950912476,0.508123219013214,2.382244348526,-2.22672414779663,0.735093832015991,2.61340045928955,-2.76227903366089,0.322182208299637,1.69800364971161,-2.72092866897583,0.553954303264618,1.95339107513428,-2.94170999526978,0.533561527729034,1.54204189777374,-2.95870614051819,0.0675895214080811,0.855302095413208,-3.02621173858643,0.220316842198372,0.858754456043243,-3.21831703186035,0.549803972244263,0.643525958061218,-2.64045238494873,0.784775197505951,2.20058941841125,-2.52745580673218,1.01649916172028,2.42819762229919,-2.8265905380249,0.992281019687653,2.05502557754517,-3.23684787750244,0.955678820610046,1.21359467506409,-3.39500641822815,0.899502873420715,0.373458325862885,-3.52745294570923,1.22818779945374,0.0998413115739822,-3.33729887008667,0.692791223526001,0.120098531246185,-3.44098329544067,1.10967183113098,0.637479543685913,-3.4523754119873,1.32504522800446,0.915837407112122,-3.59200191497803,1.6427413225174,0.649468719959259,-3.42141938209534,1.54474472999573,1.19624543190002,-3.62655258178711,1.56439077854156,-0.195746049284935, +-3.68967032432556,1.90920436382294,-0.508985638618469,-3.56373524665833,1.36578941345215,-0.453009843826294,-3.68071699142456,1.76865804195404,0.0720936805009842,-3.69853377342224,1.98348617553711,0.354747116565704,-3.76683044433594,2.33744859695435,0.0408881045877934,-3.67022228240967,2.20399641990662,0.640632390975952,-3.71416735649109,2.26372146606445,-0.835564792156219,-3.69860339164734,2.61463379859924,-1.1640237569809,-3.7741858959198,2.47398018836975,-0.56696605682373,-3.79175114631653,2.69479990005493,-0.282889425754547,-3.77289390563965,3.04818391799927,-0.610218465328217,-3.75877070426941,2.91726994514465,0.00609599426388741,-3.6415388584137,2.94863319396973,-1.48289954662323,-3.54445743560791,3.26223087310791,-1.79062259197235,-3.57013130187988,2.74148535728455,-1.73929274082184,-3.69959759712219,3.16398954391479,-1.21756553649902,-3.40884828567505,3.55193495750427,-2.08561897277832,-3.45728445053101,3.78616523742676,-1.83515310287476,-3.23626279830933,3.82065010070801,-2.36891984939575,-3.34465956687927,3.32312059402466,-2.324622631073,-3.70985078811646,3.3902485370636,-0.934729635715485,-3.60378789901733,3.71663093566895,-1.25256431102753,-3.66676807403564,3.61343741416931,-0.64436799287796,-3.0282506942749,4.07127904891968,-2.64155268669128,-3.05790853500366,4.32739162445068,-2.40619897842407,-2.78625154495239,4.30335855484009,-2.90138459205627,-2.9821515083313,3.81373047828674,-2.86442184448242,-3.45586442947388,4.02296733856201,-1.55986607074738,-3.26736998558044,4.30895662307739,-1.85572040081024,-3.40126895904541,4.2467212677002,-1.27115976810455,-2.51170301437378,4.51642608642578,-3.14628171920776,-2.51321935653687,4.7838282585144,-2.92373943328857,-2.20455861091614,4.7055811882019,-3.37865710258484,-2.49735379219055,4.24597787857056,-3.35322523117065,-3.03958654403687,4.57429647445679,-2.13921046257019,-2.77470135688782,4.81653022766113,-2.40886116027832,-2.97279262542725,4.79631996154785,-1.85250282287598,-1.86477673053741,4.86592960357666,-3.60092306137085,-1.8400753736496,5.13808631896973,-3.38489365577698, +-1.49013483524323,4.99662637710571,-3.80911803245544,-2.47489738464355,5.03320026397705,-2.66319346427917,-2.14384841918945,5.22302913665771,-2.90204000473022,-2.39777135848999,5.24914455413818,-2.37733960151672,-1.07841169834137,5.09682655334473,-3.9992823600769,-1.04263424873352,5.37402582168579,-3.77799654006958,-0.642588376998901,5.16521692276001,-4.1645884513855,-1.1073807477951,4.81179809570313,-4.20533657073975,-1.78522622585297,5.38473701477051,-3.1252338886261,-1.39849495887756,5.51721239089966,-3.329185962677,-1.70208132266998,5.59225511550903,-2.83544421195984,-0.195643901824951,5.20048236846924,-4.29821300506592,-0.159731388092041,5.47690153121948,-4.06928777694702,0.249068796634674,5.2019157409668,-4.3993501663208,-0.983123302459717,5.61933946609497,-3.51030898094177,-0.548433780670166,5.68599367141724,-3.66488552093506,-0.903764605522156,5.81990623474121,-3.21080446243286,0.678199708461761,5.16880369186401,-4.46719551086426,0.733320593833923,5.44161367416382,-4.23788452148438,1.10019946098328,5.10158443450928,-4.50424909591675,0.625935792922974,4.88004970550537,-4.67340183258057,-0.103752143681049,5.71204662322998,-3.78919792175293,0.345521509647369,5.70379543304443,-3.88399028778076,-0.0348787307739258,5.90202903747559,-3.47792744636536,0.793982982635498,5.66753721237183,-3.95000791549683,0.855510473251343,5.85101222991943,-3.6307487487793,1.24072444438934,5.60295009613037,-3.98889517784119,1.52352261543274,5.00069141387939,-4.513014793396,1.94242346286774,4.86730527877808,-4.49239873886108,1.61074161529541,5.27358198165894,-4.28714275360107,1.68483591079712,5.5097188949585,-4.00229501724243,1.74373042583466,5.70253372192383,-3.68364429473877,2.12436723709106,5.38244485855103,-3.98583054542542,0.0397175550460815,6.04296255111694,-3.15546035766602,-0.389775991439819,6.02160024642944,-3.03897047042847,0.115918517112732,6.13353681564331,-2.83476376533508,0.475547611713409,6.03267908096313,-3.24455904960632,0.913226842880249,5.99648475646973,-3.307293176651,0.965056300163269,6.09421539306641,-2.98598837852478, +1.35056054592133,5.93415307998657,-3.34433698654175,2.35115766525269,4.70260286331177,-4.44130563735962,2.75534820556641,4.50318479537964,-4.35547828674316,2.46808385848999,4.97081232070923,-4.21623277664185,2.55737328529358,5.21573352813721,-3.93512201309204,2.61578941345215,5.42052173614502,-3.61898040771484,2.98169326782227,5.0100564956665,-3.8487594127655,1.7853524684906,5.84545946121216,-3.35636448860168,1.81164014339447,5.93878841400146,-3.03077340126038,2.2157998085022,5.72524118423462,-3.33923625946045,3.16061687469482,4.26565265655518,-4.23065423965454,3.54632019996643,3.99591279029846,-4.0706729888916,3.29635190963745,4.52278709411621,-4.00508594512939,3.39516973495483,4.7658863067627,-3.72533130645752,3.4522762298584,4.97742176055908,-3.41144800186157,3.78745174407959,4.48654747009277,-3.56582570075989,2.64009618759155,5.56833362579346,-3.28881454467773,2.63553237915039,5.66690921783447,-2.96070909500122,3.0564022064209,5.37359189987183,-3.20395112037659,3.89181327819824,3.69987630844116,-3.87937021255493,4.19772481918335,3.36865186691284,-3.64957094192505,4.04074287414551,3.93745994567871,-3.64983320236206,4.14819049835205,4.17537021636963,-3.37123107910156,4.20765829086304,4.39291763305664,-3.06139087677002,4.4694766998291,3.83350658416748,-3.14192271232605,3.4628758430481,5.13986921310425,-3.08349776268005,3.43631935119629,5.25618743896484,-2.75779509544373,3.85109806060791,4.87064743041992,-2.92803311347961,1.82452976703644,5.98281478881836,-2.71719169616699,2.21971416473389,5.8665919303894,-2.69868516921997,1.42114531993866,6.07224369049072,-2.70808362960815,2.60733842849731,5.72398710250854,-2.65074491500854,2.99291467666626,5.54742813110352,-2.56939458847046,1.00892210006714,6.1344690322876,-2.67317962646484,0.595771551132202,6.16827535629272,-2.61318492889404,1.04917800426483,6.15288209915161,-2.36963105201721,3.38195610046387,5.32934093475342,-2.45065832138062,3.32003951072693,5.3880181312561,-2.15944385528564,3.75962352752686,5.07633972167969,-2.29959678649902,0.189608931541443,6.17244291305542,-2.52880048751831, +-0.207096457481384,6.14792680740356,-2.41772413253784,0.259681820869446,6.1923975944519,-2.2380895614624,-0.808443069458008,5.96286058425903,-2.89406633377075,-1.21108329296112,5.87018585205078,-2.72325015068054,-0.702650427818298,6.05313968658447,-2.57728624343872,-0.591875195503235,6.0956768989563,-2.27765464782715,-0.965204954147339,6.01494026184082,-2.1144425868988,-1.59249174594879,5.74701023101807,-2.52902364730835,-1.95048332214355,5.59511280059814,-2.31352162361145,-1.46485483646393,5.85068511962891,-2.22288703918457,-1.32756578922272,5.90495920181274,-1.93394505977631,-1.67129826545715,5.76768159866333,-1.73376786708832,-1.18970990180969,5.94100952148438,-1.65700817108154,-2.28287124633789,5.41626405715942,-2.07887554168701,-2.58620572090149,5.2104811668396,-1.82654404640198,-2.14244532585144,5.53481483459473,-1.78465020656586,-1.98874008655548,5.605055809021,-1.51151657104492,-2.27796983718872,5.4172101020813,-1.26865875720978,-2.85703802108765,4.977783203125,-1.55798923969269,-3.09261202812195,4.72071027755737,-1.27526807785034,-2.70692682266235,5.11499738693237,-1.27094829082489,-2.53706502914429,5.20426654815674,-1.00665712356567,-2.76407527923584,4.96948909759521,-0.73216050863266,-3.2901725769043,4.44180345535278,-0.980439305305481,-3.44810962677002,4.14133596420288,-0.674001812934875,-3.13721823692322,4.60076236724854,-0.702419340610504,-2.95705103874207,4.71613693237305,-0.45181742310524,-3.11355113983154,4.44018697738647,-0.158185973763466,-3.56481552124023,3.81957912445068,-0.356456279754639,-3.63844227790833,3.48160457611084,-0.0334368422627449,-3.41570091247559,3.9978985786438,-0.0849547386169434,-3.23113536834717,4.13761615753174,0.156177863478661,-3.30903959274292,3.81725549697876,0.476383090019226,-3.03984475135803,4.26200675964355,0.38181871175766,-3.66714644432068,3.132483959198,0.289422512054443,-3.64998149871826,2.77834534645081,0.607999622821808,-3.52651119232178,3.3271381855011,0.554200887680054,-3.34650063514709,3.48793292045593,0.787540555000305,-3.33853149414063,3.15297102928162,1.09268510341644, +-3.15696287155151,3.63337635993958,1.0068781375885,-3.58600425720215,2.4253146648407,0.918171346187592,-3.48089981079102,2.08472108840942,1.20821797847748,-3.45345592498779,2.63376998901367,1.17402589321136,-3.2801513671875,2.81569170951843,1.39485490322113,-3.17896294593811,2.48623752593994,1.68048691749573,-3.34035396575928,1.76789045333862,1.46641945838928,-3.12317609786987,1.40345466136932,1.74899303913116,-3.21284914016724,1.98204052448273,1.71634793281555,-3.04257535934448,2.17475080490112,1.93602299690247,-2.83793115615845,1.82285106182098,2.20743060112,-2.56676912307739,1.44173276424408,2.48706674575806,-2.38854265213013,1.25098252296448,2.62481951713562,-2.08474254608154,0.973951041698456,2.81358790397644,-1.7921736240387,0.736175060272217,2.95361852645874,-1.92756843566895,1.20551037788391,3.00776362419128,-1.47674679756165,0.517036437988281,3.07325959205627,-1.18434202671051,0.348815351724625,3.16871523857117,-1.35678064823151,0.802566945552826,3.26738810539246,-0.898971796035767,0.245805472135544,3.26263785362244,-0.902764439582825,-0.0363219976425171,3.12646436691284,-0.614570260047913,0.174014896154404,3.34369421005249,-0.325071096420288,0.0994556248188019,3.40055108070374,-0.330120205879211,-0.107676602900028,3.30131506919861,-0.046048641204834,0.0321435034275055,3.43685293197632,-0.308789730072021,0.308232218027115,3.50319743156433,-0.300742745399475,-0.469059199094772,3.12483167648315,0.206925392150879,-0.0179061591625214,3.45624542236328,0.185476005077362,-0.176351875066757,3.37524652481079,0.451974987983704,-0.0576661825180054,3.46008062362671,0.707226395606995,-0.0941077172756195,3.44971108436584,0.684546232223511,-0.236971825361252,3.37853026390076,0.72555947303772,0.0546540021896362,3.52018523216248,1.15528082847595,-0.29795715212822,3.32391595840454,1.18331110477448,-0.15227422118187,3.39578437805176,1.40218937397003,-0.175054967403412,3.35295104980469,1.5836329460144,-0.360300630331039,3.21743392944336,1.4388906955719,-0.635685920715332,3.07876348495483,1.62735748291016,-0.196625918149948,3.29736661911011, +1.85981237888336,-0.213575452566147,3.22762751579285,1.66484034061432,-0.0313984751701355,3.37934875488281,2.03415250778198,-0.428214371204376,3.04615879058838,2.10055136680603,-0.222491651773453,3.14232730865479,2.35759019851685,-0.227538853883743,3.03219842910767,2.5563817024231,-0.511111557483673,2.75554895401001,2.63894748687744,-0.232880502939224,2.88796901702881,2.94709968566895,-0.20232892036438,2.72270035743713,2.67868161201477,0.0626649260520935,3.04615473747253,2.33755660057068,-1.20864939689636,2.2983021736145,3.04435586929321,-0.843800187110901,2.16468524932861,3.11092925071716,-1.28204083442688,1.61795735359192,2.33269429206848,-1.55591952800751,1.94841289520264,3.28452825546265,-0.0996952652931213,2.54945421218872,3.59885740280151,0.0332595705986023,2.38236284255981,3.3333854675293,-0.394109785556793,2.31553363800049,3.40118837356567,-0.660462558269501,2.03305053710938,3.71865320205688,-0.496783435344696,1.88050842285156,3.44755029678345,-0.900027275085449,1.73863995075226,2.94383859634399,-1.67851948738098,1.21434807777405,2.24542570114136,-1.93734288215637,1.60885214805603,3.24875116348267,-1.51035761833191,1.01150131225586,3.50822019577026,-1.34287428855896,0.814942419528961,3.36305856704712,-1.31379151344299,1.22590124607086,3.43208265304565,-1.11407518386841,1.4689359664917,3.70051455497742,-0.950944840908051,1.3246111869812,3.70427632331848,-1.19798719882965,0.64214289188385,3.55972003936768,-1.3850302696228,0.384642779827118,3.88220024108887,-1.03768336772919,0.453624606132507,3.82776308059692,-1.00835585594177,0.906405746936798,4.08727598190308,-0.823950052261353,0.20991176366806,3.9319634437561,-0.987639844417572,-0.0605530738830566,4.28353500366211,-0.598344385623932,-0.0406914949417114,4.2265625,-0.652422547340393,0.485703587532043,3.90911412239075,-0.813549280166626,1.18419420719147,4.10462522506714,-0.664202153682709,1.01195216178894,3.94928789138794,-0.602057874202728,1.46713244915009,4.33379650115967,-0.465215861797333,0.772152185440063,4.55386304855347,-0.25162798166275,0.517072081565857, +4.40198612213135,-0.254085630178452,1.06044912338257,3.94924473762512,-0.362374067306519,1.74684238433838,4.16154623031616,-0.214588463306427,1.58346545696259,3.91128635406494,-0.106195151805878,2.00807094573975,3.8377161026001,0.154775619506836,2.2355625629425,4.06338357925415,0.301581978797913,2.0615382194519,3.74995040893555,0.414756715297699,2.44831824302673,4.33814001083374,0.510405957698822,1.8127772808075,4.60139608383179,0.735927939414978,1.54512119293213,4.25089359283447,0.761288583278656,2.01719117164612,4.40220642089844,0.249206900596619,1.59846377372742,4.42413902282715,-0.0107835531234741,1.3417866230011,4.67789268493652,0.209303259849548,1.08016991615295,4.79256439208984,0.932829022407532,1.31440806388855,4.94684171676636,1.15181827545166,1.06970655918121,4.85329532623291,0.669820308685303,1.10826373100281,4.86367130279541,0.405934512615204,0.85697865486145,4.82086849212646,0.157669723033905,0.580554604530334,5.01836776733398,0.630668759346008,0.61612868309021,4.72206115722656,-0.0584748387336731,0.29899275302887,4.58689308166504,-0.24450358748436,0.0197106599807739,4.86968612670898,0.163339793682098,0.0624393820762634,4.43500375747681,-0.402420520782471,-0.249875903129578,4.27713251113892,-0.546747922897339,-0.513606190681458,4.56952953338623,-0.184947043657303,-0.47544276714325,5.17887020111084,0.93506395816803,0.301535606384277,5.31530952453613,1.28467488288879,-0.0494078397750854,5.16514205932617,1.19350814819336,0.551823914051056,5.13502836227417,0.685718476772308,0.0284864902496338,5.02803230285645,0.46291446685791,-0.248059391975403,4.88047647476196,0.268744945526123,-0.518990278244019,5.16766452789307,0.807021796703339,-0.594808042049408,5.09942865371704,1.44360935688019,0.760083794593811,5.22420454025269,1.7777247428894,0.418389618396759,5.02276754379272,1.68268585205078,0.948153436183929,4.71495294570923,0.105305731296539,-0.775193333625793,4.55160188674927,-0.0453431904315948,-1.02134966850281,4.84509038925171,0.43252632021904,-1.10758829116821,5.29504585266113,2.12368774414063,0.0774716734886169, +5.31518602371216,2.47202157974243,-0.256361037492752,5.37305545806885,1.89215171337128,-0.143770784139633,5.39781475067139,1.64505743980408,-0.399311006069183,5.36221313476563,1.39696526527405,-0.670855760574341,5.42781257629395,2.01342749595642,-0.744293332099915,5.28785753250122,2.81324815750122,-0.576798915863037,5.3721718788147,2.61076307296753,-0.815225422382355,5.21621036529541,3.14539408683777,-0.875528275966644,5.25914239883423,1.16243696212769,-0.940107583999634,5.1093921661377,0.94818127155304,-1.19690632820129,5.30188274383545,1.52990102767944,-1.2833366394043,4.93375444412231,0.760905623435974,-1.43109011650085,4.75226497650146,0.585048913955688,-1.65459871292114,4.98070001602173,1.10115528106689,-1.75499773025513,4.98568248748779,1.46399188041687,-2.08861136436462,4.94149303436279,1.83932435512543,-2.42355155944824,5.15733337402344,1.67739260196686,-1.87242865562439,4.8107442855835,1.25983941555023,-2.28997564315796,5.40673589706421,2.38700151443481,-1.08047366142273,5.38372278213501,2.15058994293213,-1.35565388202667,5.33548307418823,2.76251745223999,-1.40258252620697,5.10339403152466,3.46648454666138,-1.14423525333405,5.17790699005127,3.32054901123047,-1.41548895835876,4.93827342987061,3.79284977912903,-1.40092957019806,5.29530048370361,1.91015601158142,-1.62387466430664,5.23806762695313,2.29753732681274,-1.95756614208221,4.84092617034912,2.2170627117157,-2.75143575668335,4.68248844146729,2.6006031036377,-3.06927943229675,5.00466203689575,2.44527816772461,-2.53592348098755,4.67032241821289,1.99560678005219,-2.95085072517395,5.21495485305786,3.13671278953552,-1.70535326004028,5.20258903503418,2.92273473739624,-1.99866485595703,5.0424656867981,3.50960302352905,-1.9917494058609,4.70971012115479,4.14081811904907,-1.66362392902374,4.77757835388184,4.03402137756348,-1.9543844461441,4.42991018295288,4.48375940322876,-1.91088283061981,5.1288537979126,2.68637990951538,-2.28026103973389,4.96488666534424,3.07509922981262,-2.58836269378662,4.46468544006348,2.99334740638733,-3.37409973144531,4.62641334533691,3.22328305244446,-3.14892435073853, +4.7434024810791,3.46211266517639,-2.87827444076538,4.80869197845459,3.6885232925415,-2.57819795608521,4.21265029907227,4.56941270828247,-2.73813557624817,4.17613506317139,4.70380449295044,-2.41893982887268,4.537428855896,4.23874044418335,-2.5162296295166,4.81532859802246,3.88120818138123,-2.26473784446716,4.1110782623291,4.79503917694092,-2.12127208709717,-3.28420567512512,1.36987590789795,-0.599889636039734,-3.65541696548462,2.05977964401245,-1.09460353851318,-3.41936922073364,2.01924014091492,-1.16850805282593,-3.3295316696167,2.6945104598999,-1.79317831993103,-3.08700394630432,3.25135707855225,-2.34881019592285,-2.3140721321106,4.0698299407959,-3.30648016929626,-1.88095414638519,4.59040355682373,-3.7991898059845,-0.223927140235901,4.91236877441406,-4.50994682312012,1.43221175670624,4.71741151809692,-4.71697807312012,2.22404098510742,4.42854881286621,-4.64538764953613,2.1259605884552,4.28027153015137,-4.49845552444458,3.01365661621094,4.00787162780762,-4.43809747695923,3.73350834846497,3.46940398216248,-4.09153270721436,3.55563116073608,3.37276983261108,-3.97856640815735,4.29561376571655,2.77167963981628,-3.58468675613403,4.46212816238403,2.01059293746948,-2.9233512878418,2.4921543598175,5.64359188079834,-2.11155128479004,3.85986614227295,4.81197786331177,-1.63908016681671,4.96984100341797,2.50871086120605,0.304052472114563,3.11250877380371,0.463094413280487,2.67760753631592,2.85311698913574,-0.0742989778518677,2.26518321037292,2.40260887145996,0.0093841552734375,2.64157509803772,1.30953657627106,0.171696603298187,3.11711740493774,4.02682447433472,-0.164333075284958,-0.522028207778931,3.91338467597961,-0.331971406936646,-0.629255056381226,4.32245540618896,0.586762964725494,0.503059566020966,4.57256031036377,1.04049324989319,0.0297127962112427,4.24911594390869,0.0931282043457031,-1.11111211776733,4.28459215164185,0.23972561955452,-0.947436451911926,4.51714372634888,0.811706185340881,-1.52508473396301,4.50266075134277,0.669039249420166,-1.69944584369659,4.76140689849854,1.64863383769989,-0.573920011520386,4.77595996856689,2.2789900302887,-1.16651737689972, +4.58091449737549,1.44893217086792,-2.12536525726318,4.58304977416992,1.30693864822388,-2.30086636543274,4.62659358978271,2.8833794593811,-1.71134674549103,4.4524621963501,2.13568305969238,-2.73555517196655,4.26601123809814,3.51600313186646,-2.23276162147522,4.08709716796875,2.84380125999451,-3.31204056739807,3.71300792694092,4.13918018341064,-2.6904673576355,4.09992647171021,2.73469948768616,-3.51019096374512,3.54583120346069,3.47764039039612,-3.7795832157135,3.03956079483032,4.6321587562561,-3.00445294380188,2.87075066566467,3.98358726501465,-4.10164737701416,2.31931972503662,4.99712181091309,-3.1862690448761,2.8789370059967,3.88726711273193,-4.30409479141235,2.12815570831299,4.37059116363525,-4.29574012756348,1.5956130027771,5.23725175857544,-3.24390935897827,0.844573378562927,5.37750768661499,-3.20054841041565,1.37803936004639,4.61936473846436,-4.358811378479,0.620600879192352,4.76031732559204,-4.31735181808472,1.36648714542389,4.53403806686401,-4.56524324417114,0.601315140724182,4.67537069320679,-4.52198314666748,3.70172071456909,-0.440117418766022,-0.680210709571838,3.58669471740723,-0.464416801929474,-1.07472765445709,3.71449375152588,-0.769300162792206,-1.57124948501587,3.11359333992004,-0.497151970863342,-1.95939064025879,3.37101483345032,-0.768297553062439,-2.11250710487366,2.92755484580994,-0.728210031986237,-2.60345602035522,2.29048132896423,-0.478659689426422,-2.71529865264893,2.46113348007202,-0.693338751792908,-2.96420359611511,0.812873244285583,-0.364303171634674,-3.21297478675842,0.543511152267456,-0.336740136146545,-3.22944402694702,0.550689399242401,-0.54544872045517,-3.54002785682678,0.0751386880874634,-0.283740431070328,-3.20264220237732,-0.40058845281601,-0.221683144569397,-3.0886664390564,-0.901467561721802,-0.14947310090065,-2.88934969902039,-1.0113810300827,-0.341744005680084,-3.20255851745605,-1.31094074249268,-0.0832073986530304,-2.65265035629272,-1.4801607131958,-0.277002662420273,-2.9428768157959,-2.2744312286377,-0.854634582996368,-2.35942935943604,-1.85074925422668,0.0226552188396454,-2.14549446105957, +-3.03786706924438,0.0706306099891663,-0.388764649629593,-3.07108640670776,0.110935881733894,0.223620384931564,-2.64762711524963,0.307642966508865,-0.00860369205474854,0.305706739425659,6.06464767456055,-2.00204348564148,-0.369087338447571,5.99342155456543,-1.77388668060303,-1.02917218208313,5.82914590835571,-1.4644627571106,-1.6242481470108,5.56912422180176,-1.07815730571747,-2.77374505996704,4.25851440429688,0.441176205873489,-2.86994409561157,3.67558932304382,1.02241969108582,-2.57394504547119,2.44440388679504,2.12498784065247,-0.687296390533447,0.748225808143616,3.30553960800171,-0.208541512489319,0.552888154983521,3.38144207000732,0.290604889392853,0.402050316333771,3.40415978431702,-2.035719871521,0.656603574752808,2.00591635704041,-2.81601047515869,1.66176676750183,1.16368079185486,-2.94804191589355,1.96742284297943,0.915523409843445,-3.0471339225769,2.28154325485229,0.642952263355255,-2.99148178100586,0.906493782997131,0.0811402201652527,-3.10828971862793,2.60081028938293,0.353346049785614,-3.12651681900024,2.92190909385681,0.0540850274264812,-3.00509214401245,0.779612898826599,-0.119445413351059,-3.25181245803833,1.50708770751953,-0.410955429077148,-3.10224914550781,3.23600506782532,-0.247081145644188,-3.03592205047607,3.534264087677,-0.542401850223541,-3.35570812225342,2.15313506126404,-0.987370610237122,-2.93044710159302,3.81190848350525,-0.827841520309448,-2.78873729705811,4.06415939331055,-1.09936201572418,-3.28273701667786,2.81338405609131,-1.60343098640442,-2.61521506309509,4.29481554031372,-1.3581714630127,-2.41430139541626,4.50767612457275,-1.60547840595245,-3.05118274688721,3.36346125602722,-2.15743327140808,-2.18634104728699,4.70096921920776,-1.83988761901855,-1.93167746067047,4.87292289733887,-2.06000304222107,-2.70502710342407,3.80847072601318,-2.65589499473572,-1.65026450157166,5.02324628829956,-2.26678967475891,-1.34205222129822,5.15164709091187,-2.46121096611023,-2.74595069885254,3.69979166984558,-2.84642744064331,-2.25783824920654,4.17300176620483,-3.11046504974365,-1.00988864898682,5.25608110427856,-2.64082074165344, +-0.656619191169739,5.33450508117676,-2.80317354202271,-1.68237948417664,4.47189474105835,-3.52458190917969,-0.289008617401123,5.38625383377075,-2.94313216209412,0.0861797332763672,5.41066551208496,-3.05556154251099,-1.73986268043518,4.37782716751099,-3.72593593597412,-0.96225106716156,4.6880087852478,-3.89452266693115,-1.00498735904694,4.60437154769897,-4.10199451446533,-0.158124327659607,4.7850227355957,-4.16848087310791,-0.186030507087708,4.70434856414795,-4.37800884246826,0.228282704949379,-3.95312905311584,-1.97028923034668,-0.0445379018783569,-3.69293642044067,-1.90125417709351,0.261602193117142,-3.46644258499146,-2.59145021438599,0.559857428073883,-3.41105365753174,-3.22997283935547,0.270483076572418,-3.23957967758179,-3.06518220901489,0.240423277020454,-2.96442103385925,-3.43926000595093,0.519163310527802,-3.05419015884399,-3.67719292640686,0.19874681532383,-2.65804171562195,-3.55400848388672,0.464634299278259,-2.68574786186218,-3.86154007911682,0.179044097661972,-2.34323978424072,-3.49871373176575,0.43704292178154,-2.29337096214294,-3.79164028167725,0.237673044204712,-2.10278677940369,-3.31440663337708,0.286500811576843,-2.04568862915039,-3.20928049087524,0.594602584838867,-1.941330909729,-3.40016388893127,0.393007695674896,-2.01647925376892,-3.01223945617676,0.868392109870911,-1.96381270885468,-2.90430378913879,0.520734667778015,-2.05754470825195,-2.79025888442993,0.999188125133514,-2.14879488945007,-2.44436407089233,0.636339426040649,-2.20649075508118,-2.41914892196655,0.671291649341583,-2.39493370056152,-1.97329092025757,0.973168015480042,-2.5842297077179,-1.4245879650116,0.630829215049744,-2.57134008407593,-1.55203008651733,0.44616636633873,-2.68945980072021,-1.13421940803528,0.771885573863983,-2.74209451675415,-0.950137376785278,-0.19251874089241,-3.55427408218384,-1.50617289543152,-0.026686429977417,-3.73903107643127,-1.3440568447113,-0.112218081951141,-3.1169228553772,-1.22336387634277,0.0686401128768921,-3.26831007003784,-1.02458810806274,0.109467767179012,-2.83793067932129,-1.03815484046936,-0.489718675613403,-2.89203715324402,0.362143754959106, +-0.337247848510742,-3.38157486915588,1.30946099758148,-0.595322966575623,-2.75619626045227,-0.0616056323051453,-1.01689374446869,-2.6604585647583,0.0522118210792542,-0.71015727519989,-2.81411361694336,-0.376982778310776,-1.24078702926636,-2.62387132644653,0.530998826026917,-0.990013957023621,-2.93306088447571,1.37462306022644,-0.839189946651459,-2.99104619026184,-0.656431198120117,-1.25681185722351,-2.77714848518372,-0.544557273387909,-0.941499888896942,-3.19500517845154,-0.839874625205994,-0.417118668556213,-3.17197251319885,-0.776415586471558,-1.39956700801849,-2.50091814994812,0.185214996337891,-1.69942498207092,-2.25873184204102,0.367140531539917,-1.54608988761902,-2.44334888458252,-0.133131921291351,-1.31810534000397,-2.32323122024536,1.48093521595001,-1.68988418579102,-2.10443520545959,0.891191005706787,-1.87678897380829,-1.5302619934082,1.31106996536255,-2.09094452857971,-1.34903264045715,1.13557767868042,-2.14522123336792,-1.08153533935547,1.3521534204483,-2.29426765441895,-1.13675665855408,0.965743362903595,-2.01464319229126,-1.63387417793274,0.899463176727295,-1.89429092407227,-1.95340609550476,0.624270021915436,-2.10188484191895,-1.77393400669098,0.325286328792572,-2.47965240478516,-0.902105331420898,0.804198801517487,-2.42502784729004,-1.15747427940369,0.502799570560455,-2.67081832885742,-0.618497490882874,0.626751184463501,-2.82400155067444,-0.370568871498108,0.465064972639084,-2.63396334648132,-0.816506624221802,0.312366276979446,-2.70140528678894,-0.424747288227081,0.919548511505127,-2.31723165512085,-1.50470006465912,0.09079509973526,-2.57572317123413,-1.06012344360352,-0.0996690988540649,-2.7585654258728,-0.654854774475098,-0.239949449896812,-1.66398680210114,-2.49504327774048,-0.450235694646835,-1.75606417655945,-2.65092945098877,-0.75514805316925,-2.10495138168335,-1.9961724281311,-0.382589787244797,-2.95208930969238,-0.128196731209755,0.336133569478989,-2.9359815120697,-0.211576297879219,0.0166123509407043,-2.95918226242065,-0.0430344939231873,0.638144612312317,-2.90184736251831,-0.291390508413315,-0.337926864624023, +-2.84921550750732,-0.34497332572937,-0.660994350910187,-2.73216104507446,-0.399216920137405,-1.16680335998535,-2.62532782554626,-0.433160245418549,-1.53276944160461,-2.57842516899109,-0.789657592773438,-1.44548082351685,-2.88051652908325,0.0105526447296143,-1.03244113922119,-2.62964487075806,-0.0584318935871124,-1.63827657699585,-2.37303972244263,-0.485859304666519,-2.08295011520386,-2.01770830154419,-0.52959018945694,-2.67301607131958,-1.73855555057526,-0.567689657211304,-2.99199914932251,-2.23130249977112,-0.510587275028229,-2.33077573776245,-2.16211175918579,-0.158818811178207,-2.33459329605103,-2.4875819683075,-1.34979856014252,-0.546992540359497,-2.429044008255,-1.80396914482117,-1.04747462272644,-2.55206990242004,-1.22842335700989,-1.02719604969025,-2.56839060783386,-1.04232358932495,-1.38460326194763,-2.52790951728821,-1.19785404205322,-1.62354350090027,-2.15916705131531,-1.13073742389679,-2.80554056167603,-2.18871736526489,-1.35282683372498,-2.95009708404541,-2.32270669937134,-1.25881028175354,-2.48003625869751,-2.45143985748291,-1.34948527812958,-2.05371451377869,-2.45516562461853,-1.91390204429626,-2.3930881023407,-2.4871928691864,-1.86752104759216,-1.71788954734802,-2.36842584609985,-2.21406435966492,-1.40883469581604,-2.36376190185547,-2.56263780593872,-1.77868330478668,-2.1351203918457,-2.5565710067749,-1.16816771030426,-1.81816303730011,-2.89359283447266,-1.04476583003998,-1.87749743461609,-3.22047853469849,-1.36018311977386,-1.43960320949554,-3.19769144058228,-1.007000207901,-1.03375673294067,-3.44555330276489,-1.01808142662048,-1.11836767196655,-3.76340746879578,-1.24704122543335,-2.3766987323761,-2.97131752967834,-2.2128324508667,-2.38895177841187,-3.41050338745117,-2.68318462371826,-2.2033326625824,-3.30191659927368,-1.9559428691864,-2.45805144309998,-2.64616751670837,-2.50641345977783,-2.4526572227478,-2.34198260307312,-2.81432509422302,-2.36661458015442,-2.05130243301392,-3.11278939247131,-2.46673917770386,-2.79364776611328,-3.26996088027954,-1.94198071956635,-3.62264490127563,-1.75718653202057, +-1.9870285987854,-4.05674886703491,-2.2128643989563,-1.60077548027039,-3.91529202461243,-1.6299774646759,-1.19386267662048,-4.17066526412964,-1.58275127410889,-1.25637567043304,-4.60332059860229,-1.98823952674866,-0.746041059494019,-4.35675048828125,-1.63273203372955,-1.29934346675873,-5.01879692077637,-2.41471266746521,-1.69321990013123,-4.77521657943726,-2.5091757774353,-1.32609367370605,-5.39893913269043,-2.82198905944824,-2.01025485992432,-4.48241186141968,-2.67853808403015,-2.01883316040039,-4.87628936767578,-3.11623096466064,-2.24295520782471,-4.16522932052612,-2.90266752243042,-2.39129757881165,-3.85047960281372,-3.15903353691101,-2.46731019020081,-3.54287266731262,-3.43896722793579,-2.38366889953613,-4.25464057922363,-3.59993624687195,-1.33212459087372,-5.71459627151489,-3.17458820343018,-1.71264719963074,-5.48427677154541,-3.29381561279297,-1.32047760486603,-5.99896335601807,-3.50364542007446,-0.895595192909241,-5.85809516906738,-3.1393461227417,-1.29166078567505,-6.2811861038208,-3.84418320655823,-1.66867315769196,-6.07001352310181,-3.97080397605896,-1.23743116855621,-6.55647087097168,-4.19221925735474,-2.01446652412415,-5.19674253463745,-3.47950792312622,-1.99826073646545,-5.48878145217896,-3.81214737892151,-2.23207592964172,-4.8852481842041,-3.71103954315186,-2.36868977546692,-4.58618927001953,-3.96510481834412,-2.44256973266602,-4.29587078094482,-4.23618602752686,-2.34663343429565,-4.886634349823,-4.29632616043091,-1.15902018547058,-6.810875415802,-4.54970645904541,-1.5236713886261,-6.66283798217773,-4.69966411590576,-1.09024107456207,-7.00943517684937,-4.90523767471313,-1.96666550636292,-5.79430723190308,-4.16023778915405,-1.91376531124115,-6.10517311096191,-4.51938152313232,-2.17969942092896,-5.49057626724243,-4.39014053344727,-1.82932567596436,-6.40802812576294,-4.88489723205566,-2.05116748809814,-6.10254859924316,-5.09476184844971,-1.72486531734467,-6.66049766540527,-5.24586963653564,-1.07052624225616,-7.13088607788086,-5.23697805404663,-1.38061463832855,-7.01929569244385,-5.43457794189453,-1.07465004920959,-7.19246292114258,-5.5487380027771, +-0.722874939441681,-7.12543296813965,-5.04187822341919,-2.31336665153503,-5.19697523117065,-4.63626289367676,-2.38618397712708,-4.91143226623535,-4.89734935760498,-2.26277565956116,-5.50730276107788,-4.9787540435791,-1.08358812332153,-7.2067756652832,-5.84355783462524,-1.33095812797546,-7.0711145401001,-5.99423789978027,-1.06430077552795,-7.19472312927246,-6.08743143081665,-1.62792527675629,-6.82392311096191,-5.58172941207886,-1.82035791873932,-6.58553791046143,-5.73042106628418,-1.54018676280975,-6.91511487960815,-5.85248851776123,-0.999660849571228,-7.18515920639038,-6.25220203399658,-1.08724868297577,-7.10226440429688,-6.42899322509766,-0.803344368934631,-7.22693634033203,-6.23373460769653,-1.47109496593475,-6.96036052703857,-6.02318859100342,-1.5349223613739,-6.87608432769775,-6.15520811080933,-2.18796753883362,-5.80852603912354,-5.31820201873779,-2.26263117790222,-5.52510786056519,-5.55635404586792,-2.08478832244873,-6.08682727813721,-5.63943529129028,-1.95422804355621,-6.33038091659546,-5.92793464660645,-2.03197121620178,-6.06419277191162,-6.15566396713257,-1.79774570465088,-6.53731060028076,-6.1771068572998,-1.13325774669647,-6.96723079681396,-6.68206405639648,-1.15693426132202,-6.76453256607056,-6.95546531677246,-0.810174405574799,-7.01226377487183,-6.77131462097168,-1.41053760051727,-6.84929370880127,-6.54432392120361,-1.62095177173615,-6.70593881607056,-6.37885999679565,-1.68651401996613,-6.47338104248047,-6.625075340271,-1.18066620826721,-6.49505281448364,-7.19585657119751,-1.49284863471985,-6.36384248733521,-7.03341293334961,-1.21141505241394,-6.16383457183838,-7.37679052352905,-1.71565866470337,-6.20719051361084,-6.84917211532593,-1.89770150184631,-6.02096366882324,-6.6395206451416,-1.71407878398895,-5.94157314300537,-7.01885032653809,-2.05534720420837,-5.7953052520752,-6.39132499694824,-2.18410348892212,-5.53558254241943,-6.11232662200928,-2.02472758293152,-5.53466939926147,-6.62079429626465,-2.28328990936279,-5.24815940856934,-5.81181240081787,-2.35516214370728,-4.94242572784424,-5.49643325805664,-2.24959635734558,-4.98214769363403,-6.06992530822754, +-1.7032425403595,-5.71983671188354,-7.11481475830078,-1.80792260169983,-5.52705526351929,-7.0181827545166,-1.56099009513855,-5.72234392166138,-7.26902675628662,-1.94270038604736,-5.29347896575928,-6.83232831954956,-2.06761384010315,-5.02461099624634,-6.5863676071167,-1.83580791950226,-5.07970237731934,-6.98728847503662,-1.26231944561005,-5.77675580978394,-7.47262001037598,-0.839197635650635,-5.83280277252197,-7.58165645599365,-1.29547154903412,-5.35552167892456,-7.48437356948853,-2.16153645515442,-4.73063230514526,-6.31451797485352,-2.2271454334259,-4.42033672332764,-6.02376651763916,-2.02251052856445,-4.51558971405029,-6.53830528259277,-1.7534989118576,-4.90622043609619,-7.05632066726685,-1.79590225219727,-4.66532039642334,-6.93254089355469,-1.60289371013641,-4.93926525115967,-7.21457290649414,-1.295534491539,-4.93869256973267,-7.41722917556763,-1.28381431102753,-4.53974866867065,-7.27646160125732,-0.8768709897995,-4.95007228851318,-7.53082847595215,-1.84268975257874,-4.35825777053833,-6.73578357696533,-1.87718653678894,-4.0222339630127,-6.48394680023193,-1.60872280597687,-4.24295711517334,-6.91539859771729,-2.40425395965576,-4.62945461273193,-5.17201614379883,-2.43661212921143,-4.31515741348267,-4.84523153305054,-2.36586141586304,-4.35776329040527,-5.44983720779419,-2.26964282989502,-4.10383701324463,-5.72107410430908,-2.29554986953735,-3.78610825538635,-5.41135787963867,-2.1133074760437,-3.87761306762695,-5.97719573974609,-2.45819354057312,-4.00591897964478,-4.5222225189209,-2.47200632095337,-3.6626615524292,-4.16455507278442,-2.41489219665527,-3.72873210906982,-4.81274795532227,-1.89566218852997,-3.69104433059692,-6.20947456359863,-1.90465211868286,-3.36532306671143,-5.91953277587891,-1.61592090129852,-3.54740214347839,-6.40188789367676,-2.31007719039917,-3.47351431846619,-5.10032892227173,-2.14383554458618,-3.24614477157593,-5.37194490432739,-2.31486678123474,-3.12856888771057,-4.74956226348877,-2.47617506980896,-3.24661540985107,-3.73351669311523,-2.42077946662903,-2.9675145149231,-4.0317850112915,-2.30629920959473,-2.71598148345947,-4.31942129135132, +-2.13161015510559,-2.49179077148438,-4.59269094467163,-2.27238512039185,-2.25543594360352,-3.84887456893921,-2.21075248718262,-1.76760101318359,-3.37718796730042,-1.99916458129883,-1.53417301177979,-3.63671159744263,-1.89619565010071,-2.30271697044373,-4.84178018569946,-1.60193073749542,-2.15845322608948,-5.05183410644531,-1.90837514400482,-2.7068190574646,-5.27101612091064,-1.84952449798584,-1.8577915430069,-4.37687015533447,-1.74844622612,-1.39372742176056,-3.92105650901794,-1.45921492576599,-1.32230973243713,-4.18415403366089,-1.6296718120575,-0.962200880050659,-3.51441502571106,-1.5437034368515,-0.603800714015961,-3.20168042182922,-1.29797780513763,-0.615472078323364,-3.40977239608765,-1.0242965221405,-0.644343495368958,-3.58109927177429,-0.74587744474411,-0.685567617416382,-3.70395278930664,-1.06214118003845,-0.950584053993225,-3.97754621505737,-1.1357216835022,-1.297926902771,-4.37695360183716,-0.810564458370209,-1.31978750228882,-4.48245000839233,-1.20637059211731,-1.68191456794739,-4.77821588516235,-0.4859419465065,-0.73429673910141,-3.76662516593933,-0.238478600978851,-0.786292433738708,-3.78085899353027,-0.504282057285309,-1.0564181804657,-4.11832475662231,-0.467230439186096,-0.426026821136475,-3.41577696800232,-1.90943896770477,-3.04983139038086,-5.6179313659668,-1.61462783813477,-2.89643931388855,-5.81321144104004,-1.24739563465118,-2.06891489028931,-5.20788240432739,-0.862968802452087,-2.0411581993103,-5.28248310089111,-1.26196813583374,-2.45242071151733,-5.60603857040405,0.0025215744972229,-0.837315201759338,-3.75840091705322,0.222462117671967,-0.88184916973114,-3.71228456497192,-0.0231167078018188,-1.19013369083405,-4.02790117263794,0.0370900630950928,-0.485270589590073,-3.51183223724365,-0.512934446334839,-1.38127422332764,-4.4895486831665,-0.253728151321411,-1.46597445011139,-4.42772817611694,-0.504409193992615,-1.72422206401825,-4.86499500274658,-0.0499493181705475,-1.56161761283875,-4.32275867462158,-0.0408707559108734,-1.88871121406555,-4.63649940490723,0.138343125581741,-1.70969605445862,-4.18389415740967, +0.486859828233719,-0.920437812805176,-3.62685251235962,0.43617832660675,-1.29104232788086,-3.67836332321167,-0.0321311354637146,-2.16557598114014,-4.90142679214478,0.0884087979793549,-2.40473794937134,-4.93108320236206,-0.16743403673172,-2.17607736587524,-5.08391332626343,-0.46665295958519,-2.09423279762268,-5.23723125457764,-0.425761491060257,-2.4683198928833,-5.59265041351318,-1.2675393819809,-2.79024720191956,-5.94082403182983,-1.27082788944244,-3.11178135871887,-6.24246311187744,-0.877913475036621,-2.74374437332153,-5.99438714981079,-0.424831330776215,-2.81293988227844,-5.92396879196167,-0.0570721328258514,-3.01976490020752,-5.74401092529297,-0.439362466335297,-3.14394116401672,-6.23691368103027,-1.2799334526062,-3.45110416412354,-6.53703594207764,-1.2841078042984,-3.80138444900513,-6.81777381896973,-0.892671406269073,-3.41184997558594,-6.60146999359131,-0.450886785984039,-3.48015928268433,-6.5346941947937,-0.0976678878068924,-3.65848064422607,-6.34220886230469,-0.454863905906677,-3.82543087005615,-6.81450605392456,-1.2846747636795,-4.16262626647949,-7.06992340087891,-0.890292704105377,-4.13225269317627,-7.1491494178772,-0.452638685703278,-4.1847095489502,-7.06829977035522,-0.107201129198074,-4.32410621643066,-6.83400917053223,-0.439521372318268,-4.57406377792358,-7.28391361236572,-0.444453656673431,-5.00184297561646,-7.45381355285645,-0.117133423686028,-5.09028148651123,-7.21064853668213,-0.458562791347504,-5.44823360443115,-7.53726482391357,-0.464943468570709,-5.86291790008545,-7.51381492614746,-0.157108992338181,-5.86843347549438,-7.31380414962769,-0.470791071653366,-6.23345184326172,-7.40214872360229,0.0851316004991531,-4.46988582611084,-6.58124256134033,0.0975908264517784,-4.1639838218689,-6.36333990097046,0.21256098151207,-4.63196611404419,-6.32690620422363,0.0752853155136108,-4.80013370513916,-6.77525520324707,0.0623944848775864,-5.17068195343018,-6.94289016723633,0.176489874720573,-5.2489161491394,-6.68087244033813,0.0435853376984596,-5.53928709030151,-7.04697179794312,0.031149297952652,-5.86031103134155,-7.05703592300415, +0.148564636707306,-5.8470983505249,-6.7944917678833,0.0189479291439056,-6.14751482009888,-6.99928665161133,-0.476361572742462,-6.54344177246094,-7.22496891021729,-0.472687602043152,-6.79340553283691,-6.99822425842285,-0.817206203937531,-6.56001806259155,-7.2678279876709,-0.192421182990074,-6.48282480239868,-7.0923376083374,-0.461954683065414,-6.98458862304688,-6.73814678192139,-0.18975704908371,-6.87713432312012,-6.66953134536743,-0.484033942222595,-7.11867141723633,-6.48196029663086,-0.00346426665782928,-6.40944719314575,-6.89338827133179,0.119000002741814,-6.34181499481201,-6.66267871856689,-0.0346140116453171,-6.62289142608643,-6.76064729690552,-0.564079821109772,-7.2002420425415,-6.28861999511719,-0.455248415470123,-7.21145153045654,-6.11328125,-0.406657725572586,-7.21995830535889,-5.80773973464966,-0.399761259555817,-7.18417501449585,-5.4535698890686,-0.755981862545013,-7.26212978363037,-5.63211154937744,-0.108735352754593,-7.0494647026062,-5.98826599121094,-0.0619060918688774,-6.76935529708862,-6.62715864181519,0.00229312479496002,-6.79181432723999,-6.43887281417847,0.221768066287041,-5.831627368927,-6.56052398681641,0.2772296667099,-5.77477264404297,-6.33498668670654,0.220461204648018,-6.04710626602173,-6.49542045593262,0.227233126759529,-5.6057915687561,-6.56226491928101,0.250398099422455,-5.33980512619019,-6.4497332572937,0.277250707149506,-5.06845283508301,-6.27252864837646,0.298576891422272,-5.46219444274902,-6.2535285949707,0.202914446592331,-6.28083753585815,-6.41577291488647,0.266987532377243,-6.20701742172241,-6.1459436416626,0.159830287098885,-6.53201007843018,-6.31017875671387,0.0700856000185013,-6.79919624328613,-6.16220426559448,0.121482342481613,-6.77338218688965,-5.8335165977478,0.320224761962891,-6.09963941574097,-5.84442567825317,0.360797792673111,-5.96920347213745,-5.54117584228516,0.275258839130402,-6.38020372390747,-5.69893932342529,0.333736568689346,-5.85128688812256,-5.96558952331543,0.325682818889618,-5.63570785522461,-6.09705877304077,0.364658772945404,-5.45800113677979,-5.86059617996216, +0.159107968211174,-6.69666576385498,-5.48676252365112,0.180493891239166,-6.58461427688599,-5.14441633224487,-0.0819750279188156,-6.96760511398315,-5.27037525177002,-0.392729938030243,-7.09936475753784,-5.12845516204834,-0.397199124097824,-6.97757244110107,-4.81483459472656,0.195601508021355,-6.44264936447144,-4.82832431793213,0.207353517413139,-6.27925443649292,-4.52688884735107,-0.0814400687813759,-6.69829988479614,-4.61135959625244,0.336919814348221,-6.12309169769287,-5.07345485687256,0.391169279813766,-5.82502603530884,-5.26557350158691,0.406501322984695,-5.54487943649292,-5.44464302062988,0.417190074920654,-5.66417121887207,-5.00007390975952,-0.468614846467972,-6.41519117355347,-3.85765075683594,-0.445005685091019,-6.63119554519653,-4.17730522155762,-0.0936913788318634,-6.32599449157715,-3.99359226226807,-0.482474744319916,-6.17153453826904,-3.53268241882324,-0.856900155544281,-6.39560890197754,-3.79722881317139,-0.417005956172943,-6.82024431228638,-4.49709606170654,-0.769512951374054,-6.8449387550354,-4.45534086227417,0.218216836452484,-6.09104251861572,-4.22445297241211,0.227878749370575,-5.87897205352783,-3.91770386695862,0.379754960536957,-5.77875280380249,-4.49245738983154,0.241651639342308,-5.63478088378906,-3.60246610641479,0.256450891494751,-5.35761451721191,-3.27321004867554,-0.0879687964916229,-5.83394050598145,-3.34654116630554,0.413642346858978,-5.35609817504883,-3.89864349365234,-0.481173455715179,-5.89755916595459,-3.19981288909912,-0.465941071510315,-5.58642578125,-2.85171508789063,0.270687788724899,-5.04432106018066,-2.92548704147339,0.285238802433014,-4.7059531211853,-2.57741260528564,-0.0532532930374146,-5.19174528121948,-2.64433288574219,0.444839239120483,-4.82178401947021,-3.25273180007935,-0.439394354820251,-5.23062086105347,-2.48257255554199,-0.406599581241608,-4.84448528289795,-2.10891008377075,-0.851702034473419,-5.18508625030518,-2.41143751144409,-0.385478436946869,-4.40239143371582,-1.79087424278259,-0.344087600708008,-4.02404403686523,-1.47225642204285,-0.0100620687007904,-4.45411825180054,-1.94035363197327, +-0.28971266746521,-3.69884634017944,-1.23556458950043,-0.224864900112152,-3.43079710006714,-1.05881667137146,-0.609366059303284,-3.65045738220215,-1.08233237266541,0.218785673379898,-4.31476449966431,-2.28629732131958,0.413638234138489,-4.16544008255005,-2.61890530586243,0.548157513141632,-3.99519538879395,-2.93221378326416,0.533643305301666,-4.29165077209473,-3.22734141349792,0.572383642196655,-3.8073456287384,-3.23176527023315,0.516222238540649,-3.68851947784424,-2.65201139450073,-0.147337675094604,-3.23247647285461,-0.907902657985687,-0.0353028774261475,-3.07112431526184,-0.825362682342529,0.134308069944382,-2.92255043983459,-0.775083303451538,0.292243182659149,-2.95300340652466,-0.821462452411652,0.173591136932373,-2.85012793540955,-0.546452820301056,0.225902229547501,-2.82329177856445,-0.206031143665314,0.637198567390442,-2.81014847755432,-0.216363251209259,0.29548192024231,-2.98927068710327,0.267130076885223,-0.162393033504486,-2.81641364097595,-0.168602883815765,0.517887055873871,-4.57663059234619,-3.54300498962402,0.500589311122894,-4.84074449539185,-3.85990715026855,0.542096316814423,-4.31940174102783,-3.81457757949829,0.482269525527954,-5.07396602630615,-4.15884876251221,0.462719112634659,-5.28573179244995,-4.4451847076416,0.502604842185974,-4.78858232498169,-4.40490865707397,0.56931471824646,-3.62586855888367,-3.50678634643555,0.553825199604034,-3.8442018032074,-3.78599786758423,0.548924148082733,-3.42777943611145,-3.75462031364441,0.535338044166565,-4.06679201126099,-4.07728242874146,0.514580309391022,-4.28860235214233,-4.36954355239868,0.506435513496399,-3.80405044555664,-4.32928133010864,0.455014050006866,-3.51725554466248,-4.56728649139404,0.484070241451263,-3.34456586837769,-4.27264404296875,0.425906419754028,-3.70764803886414,-4.85640621185303,0.374607533216476,-3.18225717544556,-4.76312446594238,0.492849349975586,-3.19185829162598,-3.96925210952759,0.438031554222107,-2.91880989074707,-4.12408304214478,0.441059738397598,-5.48339748382568,-4.72618675231934,0.457630097866058,-5.19692277908325,-4.95000553131104, +0.492577373981476,-4.50416326522827,-4.65203762054443,0.469412952661514,-4.71314477920532,-4.92256546020508,0.457829236984253,-4.21479082107544,-4.89823293685913,0.367348968982697,-2.61229157447815,-4.18669319152832,0.314840018749237,-2.61090016365051,-4.53504133224487,0.313066005706787,-2.29341626167297,-4.14531946182251,0.248212933540344,-2.77503275871277,-4.88773679733276,0.201496362686157,-3.02867293357849,-5.23474454879761,0.307445049285889,-1.98329877853394,-3.98819708824158,0.347541451454163,-1.74940967559814,-3.80001211166382,0.397092163562775,-3.91494846343994,-5.14068222045898,0.370007038116455,-4.13524723052979,-5.41003227233887,0.303216844797134,-3.60905909538269,-5.36543703079224,0.162381500005722,-3.30002069473267,-5.55973672866821,0.133098050951958,-3.58338642120361,-5.85682964324951,0.430408716201782,-1.65921783447266,-3.66545033454895,0.516556859016418,-2.01156616210938,-3.53954577445984,0.746813893318176,-0.940090894699097,-3.53376436233521,0.841286897659302,-0.576641917228699,-3.52292633056641,0.68788206577301,-1.28093028068542,-3.51210117340088,0.641121864318848,-1.61973834037781,-3.45807862281799,0.820149183273315,-1.57199454307556,-3.28131818771362,1.06295430660248,-0.96458625793457,-3.41019010543823,0.962346732616425,-1.58540511131287,-3.12121963500977,1.16367721557617,-1.2986364364624,-3.1760048866272,1.07948231697083,-1.60436844825745,-2.99723100662231,0.726039886474609,-1.90605902671814,-3.1827700138092,1.33440661430359,-0.998767912387848,-3.28900957107544,1.47498083114624,-0.638383030891418,-3.40946412086487,1.61532473564148,-1.04133474826813,-3.13755321502686,1.23552703857422,-1.64580905437469,-2.85184049606323,1.55102348327637,-1.37186443805695,-2.88757634162903,1.38456988334656,-1.71458148956299,-2.62851572036743,1.81296694278717,-1.07055735588074,-3.00737261772156,2.00708293914795,-0.674756526947021,-3.21851921081543,2.02075242996216,-1.10130298137665,-2.85061502456665,1.52012455463409,-1.80366277694702,-2.38237524032593,1.9146853685379,-1.48853826522827,-2.47012257575989,1.62488770484924,-1.89041543006897,-2.12266063690186, +2.23124194145203,-1.1345534324646,-2.6658148765564,2.44607615470886,-1.16580092906952,-2.45555281639099,1.69902229309082,-1.96486592292786,-1.85588526725769,2.23385429382324,-1.59837424755096,-1.96489524841309,1.71139740943909,-2.08709812164307,-1.58389484882355,1.03759372234344,-2.38506960868835,-1.91699004173279,2.66689157485962,-1.19054090976715,-2.22240567207336,2.87954711914063,-1.20775187015533,-1.9751170873642,3.06989812850952,-1.21641087532043,-1.72242558002472,3.24243307113647,-1.21256983280182,-1.46568369865417,2.75526189804077,-1.64977443218231,-1.31848800182343,1.53992211818695,-2.30213069915771,-1.2295663356781,1.28550934791565,-2.50559711456299,-0.923192620277405,2.06317806243896,-2.15534114837646,-1.06621563434601,1.05613243579865,-2.61555075645447,-0.804546892642975,1.10381138324738,-2.66167688369751,-0.566693186759949,1.06717681884766,-2.79224395751953,-0.179506957530975,1.47538280487061,-2.74702334403992,-0.109087876975536,0.995430827140808,-3.00693583488464,0.260209560394287,2.40744304656982,-2.05666542053223,-0.881490588188171,2.06989932060242,-2.3923032283783,-0.435406386852264,2.64055132865906,-1.97856616973877,-0.68771767616272,3.40163731575012,-1.19227862358093,-1.20624232292175,3.54140090942383,-1.16231918334961,-0.954351723194122,3.10749292373657,-1.58147799968719,-0.848241806030273,0.375346064567566,-3.51631164550781,1.22123908996582,0.85968542098999,-3.44769740104675,1.15780067443848,1.61618113517761,-2.89120745658875,0.361642897129059,1.27363908290863,-3.26074242591858,1.11088681221008,1.81568193435669,-2.66608381271362,-0.0247926115989685,2.09568619728088,-2.55463910102844,0.0725904107093811,2.08483171463013,-2.64730358123779,0.499712765216827,1.64534902572632,-2.96685338020325,1.11325764656067,2.33002281188965,-2.42597055435181,0.176927804946899,2.58768701553345,-2.17336177825928,-0.158317148685455,2.52653241157532,-2.28888916969299,0.288641035556793,2.42933106422424,-2.35359215736389,0.689246356487274,1.91264855861664,-2.63789010047913,1.19618105888367,2.84151029586792,-1.90018510818481,-0.499486774206161, +3.0136296749115,-1.81383144855499,-0.313502192497253,3.65561008453369,-1.12946951389313,-0.72026115655899,3.75355005264282,-1.0903068780899,-0.497053474187851,3.3887631893158,-1.46774637699127,-0.398843169212341,3.94804239273071,-0.74804025888443,-1.06940650939941,2.6930615901947,-2.15220332145691,0.408151566982269,2.94613552093506,-1.93393695354462,0.125961005687714,2.84011483192444,-2.01104211807251,0.535691440105438,2.69029521942139,-2.04396772384644,0.920982003211975,3.84450435638428,-1.04140722751617,-0.277812242507935,3.61890530586243,-1.31081402301788,0.0013156533241272,4.09226036071777,-0.734669089317322,-0.588469684123993,3.16515398025513,-1.72084414958954,-0.129903078079224,3.30274057388306,-1.61867725849152,0.0484207272529602,2.97820067405701,-1.86053156852722,0.671489536762238,3.23634552955627,-1.67184829711914,0.424964010715485,3.11180353164673,-1.70534873008728,0.811417520046234,3.43304991722107,-1.50478553771973,0.218574047088623,0.44550821185112,-4.91549634933472,-5.1786732673645,0.420683801174164,-5.10738325119019,-5.41850185394287,0.408952504396439,-4.63815879821777,-5.41346168518066,0.34590271115303,-4.36413717269897,-5.65483570098877,0.323322743177414,-4.5960865020752,-5.87815189361572,0.250470161437988,-4.10439729690552,-5.89443302154541,0.394708454608917,-5.28506278991699,-5.64006853103638,0.359788239002228,-5.04533576965332,-5.85283422470093,0.112431608140469,-3.86994624137878,-6.1231255531311,0.300655424594879,-4.82568883895874,-6.08297157287598,-1.53901660442352,-0.0888228118419647,-1.89389860630035,-0.621286988258362,-0.0102430991828442,-0.365679621696472,-0.747326195240021,0.000933382660150528,-0.402665793895721,-0.504612982273102,-0.0181731805205345,-0.30482691526413,-1.00795185565948,0.0311991646885872,-0.40032497048378,1.05553352832794,-0.535950362682343,3.19664669036865,0.942612886428833,-0.77130138874054,3.01069688796997,1.27060699462891,-0.877162933349609,2.88984537124634,1.80049848556519,-0.767401456832886,2.89146327972412,1.55594789981842,-1.04482781887054,2.69747161865234,2.15407085418701,-0.938632130622864,2.62681746482849, +1.76708698272705,-1.24685478210449,2.45866060256958,-1.44253766536713,-1.36252963542938,1.95209038257599,-1.1292450428009,-1.59221649169922,1.96406769752502,-1.34312176704407,-0.955915093421936,2.31133222579956,-0.782013177871704,-1.02604615688324,2.54066753387451,-0.731707692146301,-0.519583344459534,2.94493341445923,0.11855286359787,-0.703824460506439,3.02545833587646,0.148150324821472,-0.452859103679657,3.22995400428772,0.614362001419067,-0.472817331552505,3.25073575973511,0.544184625148773,-0.70121955871582,3.06756591796875,-1.16087198257446,-1.91180229187012,1.74946117401123,-1.4158022403717,-1.80822479724884,1.68365001678467,-1.08034133911133,-2.29793882369995,1.59368515014648,0.0161778926849365,-0.187015429139137,-1.14012801647186,0.778396189212799,-0.133140414953232,0.33022141456604,-1.22535598278046,0.166639238595963,0.815563678741455,1.78752386569977,-2.32964777946472,1.48122012615204,2.09660482406616,-2.30791664123535,1.35141515731812,1.64740598201752,-2.57102632522583,1.37474846839905,-0.48315703868866,0.0804496109485626,0.80889755487442,-1.01594662666321,-0.134696930646896,-1.77994394302368,1.14657974243164,-3.06224966049194,1.29017353057861,0.805708944797516,-3.22331762313843,1.31732368469238,0.365243971347809,-3.28711843490601,1.37065815925598,-1.38841724395752,-0.0313078016042709,-1.09961009025574,-0.481439232826233,6.12082576751709,-1.99156415462494,-1.83655035495758,5.65695095062256,-1.25544905662537,-2.36461114883423,5.27495813369751,-0.756049513816833,-2.12256193161011,5.21700763702393,-0.625301957130432,-2.77232789993286,4.81329107284546,-0.21681946516037,-2.52293825149536,4.78257942199707,-0.12003930658102,-1.24681210517883,0.068016454577446,-0.298160761594772,-3.09949779510498,2.98378682136536,1.60037326812744,-2.8129940032959,3.05833220481873,1.59970617294312,-1.46249771118164,-0.0998898148536682,-1.92413115501404,-2.85060977935791,2.33943200111389,2.15755367279053,-1.50151705741882,-0.0944497883319855,-1.91090476512909,-1.91729176044464,1.59290289878845,2.7826087474823,-2.19123077392578,1.43665158748627,2.84138417243958, +-1.66085731983185,1.36329483985901,2.94417595863342,-1.07382154464722,-0.133977323770523,-1.83945512771606,-1.1336567401886,0.987338781356812,3.18166899681091,-1.1420658826828,-0.130992755293846,-1.88662981987,-1.29887366294861,-0.118770092725754,-1.93726181983948,-0.854789853096008,0.536449909210205,3.41482710838318,0.750005602836609,-0.140561044216156,0.219589293003082,0.233935356140137,0.139996767044067,3.5381908416748,-1.38951086997986,0.0965708494186401,-0.16486781835556,0.751370489597321,0.309779286384583,3.38556551933289,-1.42754232883453,0.10578016191721,-0.111726760864258,1.04036664962769,6.02421092987061,-2.13309001922607,1.83232951164246,6.0083909034729,-2.41613674163818,1.79088366031647,5.87599992752075,-2.16798686981201,2.57097721099854,5.76622581481934,-2.3573157787323,-1.34642803668976,0.0871464386582375,-0.213961809873581,3.19416093826294,5.30047607421875,-1.94437980651855,4.04052877426147,4.87028646469116,-1.84083032608032,4.64098644256592,4.22934007644653,-1.39096796512604,4.40334224700928,4.1995096206665,-1.19671666622162,5.01855087280273,3.59375238418579,-0.885893523693085,4.75068283081055,3.64878678321838,-0.741645693778992,5.18984127044678,3.00473809242249,-0.354341506958008,4.9335765838623,3.12845325469971,-0.274801552295685,5.20233726501465,2.34643507003784,0.281767070293427,-1.54522514343262,-0.0190851241350174,-1.15024209022522,-1.46923422813416,-0.0242200046777725,-1.11721682548523,4.81444263458252,1.88561058044434,0.937829911708832,4.70210218429565,1.18724632263184,1.5063807964325,4.48942279815674,1.37871336936951,1.48519599437714,4.03033876419067,0.957699000835419,1.98957347869873,3.55636405944824,0.646606266498566,2.3988094329834,3.24876070022583,0.202210187911987,2.76213121414185,2.62040519714355,0.325583815574646,2.93464708328247,2.11330699920654,0.252420723438263,3.11839628219604,2.15260720252991,-0.00967538356781006,3.24358916282654,1.63583660125732,0.224860608577728,3.2581615447998,-0.924981296062469,-0.115676917135715,-1.46943831443787,1.2092661857605,0.244091153144836,3.3477942943573, +1.20338976383209,0.0012747049331665,3.46714329719543,0.756786644458771,-0.602082490921021,2.89975357055664,0.757717370986938,-0.733076691627502,3.04735684394836,0.919913530349731,-0.267464518547058,3.35122323036194,0.945268750190735,-0.123190939426422,3.42274737358093,0.970301568508148,0.0258689522743225,3.49592256546021,0.84251993894577,-0.499799817800522,3.23017358779907,0.986886978149414,0.273442447185516,3.36963295936584,-2.48707580566406,-0.462998926639557,-1.84587097167969,-2.70414328575134,-0.728202104568481,-0.630884766578674,0.568481862545013,-2.8229079246521,-0.554300606250763,0.535338640213013,-2.82906198501587,-0.717293739318848,-2.49113583564758,-0.815095782279968,-1.78762888908386,0.163589954376221,0.09276182949543,-0.923815011978149,0.456573307514191,0.120619669556618,-0.945657253265381,0.416356325149536,0.0791111588478088,-0.777492761611938,0.705109834671021,0.045204795897007,-0.80696964263916,0.267609477043152,0.124556973576546,-1.01738274097443,0.65591037273407,0.0904560685157776,-0.933597683906555,0.919558942317963,0.00399208813905716,-1.00098776817322,0.215290069580078,0.121803373098373,-1.21253132820129,0.521759033203125,0.123057387769222,-1.24682521820068,0.223151445388794,0.0925803780555725,-1.41225695610046,0.782084167003632,0.0720266550779343,-1.09023237228394,0.97778856754303,-0.0287831481546164,-1.28544020652771,0.391679495573044,0.0739433914422989,-1.52204418182373,0.851436793804169,0.0374030843377113,-1.27668881416321,0.583977460861206,0.0387154594063759,-1.57251644134521,0.741978228092194,0.0431796312332153,-1.44645881652832,0.348036468029022,0.127390518784523,-0.980958461761475,0.221620082855225,0.11395388096571,-0.97597861289978,0.278911948204041,0.0889379754662514,-0.831245124340057,0.434771776199341,0.102443061769009,-0.85258674621582,0.678271412849426,0.0738505423069,-0.87744414806366,0.569470047950745,0.107944153249264,-0.933178663253784,0.563247680664063,0.0639668554067612,-0.769893765449524,0.239517748355865,0.127923354506493,-1.10098791122437,0.120231628417969,0.103987023234367,-1.20048785209656, +0.859111130237579,0.0390968546271324,-1.04105591773987,0.715871632099152,0.0860893353819847,-0.998202681541443,0.827464401721954,0.0245242491364479,-0.887244701385498,0.214164435863495,0.109687753021717,-1.32616949081421,0.169335842132568,0.0763479620218277,-1.44035840034485,0.050508439540863,0.0664832964539528,-1.33701491355896,0.346718668937683,0.129164204001427,-1.22778916358948,0.485148280858994,0.128485172986984,-1.07467794418335,0.671900153160095,0.10060615837574,-1.15762376785278,0.447916865348816,0.101705990731716,-1.40536272525787,0.293496966362,0.0881619080901146,-1.46537470817566,0.350175529718399,0.041595384478569,-1.60397100448608,0.908215284347534,0.0114590376615524,-1.28092837333679,0.827373027801514,0.0558345541357994,-1.19385468959808,0.970639705657959,-0.0143239982426167,-1.13847398757935,0.499262690544128,0.0574457198381424,-1.55676507949829,0.593676209449768,0.0130027588456869,-1.62882852554321,0.80682772397995,0.0014909622259438,-1.50543689727783,0.809334933757782,0.0428600013256073,-1.35407102108002,0.938085079193115,-0.0377391129732132,-1.42762339115143,0.648890376091003,0.0840555354952812,-1.36199831962585,0.656813502311707,0.0436091460287571,-1.52276992797852,0.742237329483032,-0.0367777943611145,-1.6442437171936,0.318868398666382,0.110728986561298,-0.897915601730347,0.558642029762268,0.0896718204021454,-0.846178710460663,0.153712868690491,0.111540056765079,-1.08058822154999,0.781449735164642,0.0564109534025192,-0.945138216018677,0.126260697841644,0.0917942225933075,-1.32441973686218,0.355630576610565,0.133790627121925,-1.09674525260925,0.61116635799408,0.111348703503609,-1.04160606861115,0.32637345790863,0.112746886909008,-1.35660576820374,0.246997237205505,0.0590349733829498,-1.53627705574036,0.902186214923859,0.0236507132649422,-1.15699553489685,0.46980494260788,0.0257740970700979,-1.63523650169373,0.874734044075012,0.00390488468110561,-1.40082716941833,0.563827872276306,0.077299490571022,-1.46207070350647,0.739840149879456,0.0764357522130013,-1.26739013195038,0.709579467773438,0.00471584033221006,-1.58349990844727, +0.951929867267609,-0.352199614048004,-1.25643599033356,0.857559144496918,-0.0406026393175125,-1.55167388916016,0.828795075416565,-0.364304542541504,-1.52910101413727,0.89229279756546,-0.318631917238235,-0.965111315250397,0.604792773723602,-0.0269518382847309,-1.69799721240997,0.672664165496826,-0.276425361633301,-0.766405761241913,0.56992244720459,-0.350323796272278,-1.67896032333374,0.274191439151764,-0.315598428249359,-1.64877033233643,0.376932203769684,-0.241698771715164,-0.73621666431427,0.316038370132446,0.00695561245083809,-1.66852021217346,0.0545629858970642,-0.273391008377075,-1.45006370544434,0.101590223610401,0.0481671020388603,-1.47450113296509,0.118059687316418,-0.227718144655228,-0.886074900627136,-0.00507426261901855,-0.239824146032333,-1.15874028205872,0.0433595180511475,0.0809425711631775,-1.1900497674942,0.944608390331268,-0.337391674518585,-1.10591912269592,0.710686862468719,-0.360387653112411,-1.62390768527985,0.797974526882172,-0.297604978084564,-0.848619341850281,0.457900434732437,-0.0118074342608452,-1.70559620857239,0.419480621814728,-0.334814071655273,-1.68674254417419,0.527374029159546,-0.257209599018097,-0.728433609008789,0.193683683872223,0.0276351608335972,-1.58824515342712,0.148881137371063,-0.294417798519135,-1.56655669212341,0.236167907714844,-0.23163503408432,-0.791268289089203,0.0022473931312561,-0.254631251096725,-1.30925595760345,0.083063006401062,0.0898985266685486,-1.04786646366119,0.0355879664421082,-0.230650201439857,-1.01312255859375,0.911267757415771,-0.361372590065002,-1.40205359458923,-1.2883243560791,-0.0227228999137878,-1.7869645357132,-1.45256471633911,-0.00501886010169983,-1.76709687709808,-1.14290618896484,-0.0301333665847778,-1.70626187324524,-1.5728931427002,0.0162163972854614,-1.65424656867981,-1.07185673713684,-0.0244192332029343,-1.55581426620483,-1.60334920883179,0.032872200012207,-1.49151909351349,-1.10231184959412,-0.00776354968547821,-1.3930869102478,-1.53229904174805,0.0385861247777939,-1.34107077121735,-1.22264134883881,0.0134718269109726,-1.28023660182953, +-1.38688182830811,0.0311758667230606,-1.26036906242371,-1.33982336521149,-0.0169170498847961,-1.52188873291016,-0.991934716701508,0.0101389437913895,-1.33516311645508,-1.40702617168427,0.0669384077191353,-1.14157211780548,-1.5028350353241,0.0141432881355286,-1.88071668148041,-1.06835532188416,-0.0170868784189224,-1.47082591056824,-1.52572846412659,0.00622013211250305,-1.72465550899506,-1.09016561508179,-0.0291049480438232,-1.63908529281616,-1.37283825874329,-0.0147010385990143,-1.79596042633057,-1.20646750926971,-0.0281940251588821,-1.76327633857727,-0.951399862766266,-0.00349433720111847,-1.45024633407593,-1.06688702106476,0.0255262404680252,-1.23918104171753,-1.28483915328979,0.0553505048155785,-1.13753247261047,-1.6877977848053,0.0758841782808304,-1.3611626625061,-1.71888864040375,0.0587515830993652,-1.60102331638336,-1.60340261459351,0.0297311246395111,-1.81208860874176,-1.58493089675903,0.0385962277650833,-1.40833532810211,-1.4686291217804,0.0376853197813034,-1.28414440155029,-1.30225920677185,0.0241923034191132,-1.25145924091339,-1.14936804771423,0.00327125191688538,-1.32276618480682,-1.60674107074738,0.0265781581401825,-1.57659482955933,-1.51879382133484,-0.096796065568924,-1.88237690925598,-1.27183270454407,-0.12341645359993,-1.9122519493103,-1.69972777366638,-0.0648654997348785,-1.71268820762634,-1.74552226066589,-0.0398218929767609,-1.46800255775452,-1.63868820667267,-0.0312293916940689,-1.24178111553192,-1.42003035545349,-0.0423715114593506,-1.12043273448944,-1.1730694770813,-0.068992868065834,-1.15030789375305,-0.992134511470795,-0.100922636687756,-1.31999564170837,-0.946338951587677,-0.125967368483543,-1.56468141078949,-1.05317497253418,-0.13455967605114,-1.79090285301208,-1.26326358318329,-0.0116809010505676,-1.90969848632813,-1.67835402488708,0.0451182276010513,-1.71610546112061,-1.72277927398682,0.0694129765033722,-1.47874188423157,-1.61914122104645,0.0777475386857986,-1.2592887878418,-1.16745436191559,0.0411140620708466,-1.17055296897888,-0.947510421276093,-0.0141555666923523,-1.57252764701843,-1.05114841461182,-0.0224901586771011,-1.7919807434082, +-1.38545155525208,-9.28938388824463e-05,-1.91373801231384,-1.397789478302,-0.111470460891724,-1.91641581058502,-1.14828431606293,-0.0193279087543488,-1.8671452999115,-1.15330696105957,-0.131299242377281,-1.86838638782501,-1.62246346473694,-0.0807272493839264,-1.81163156032562,-0.982491910457611,-0.0206267982721329,-1.69010674953461,-0.982400476932526,-0.132638186216354,-1.68588662147522,-1.74151277542114,-0.0508114397525787,-1.59405636787415,-0.950350224971771,-0.114976637065411,-1.43862748146057,-1.70946264266968,-0.0331499874591827,-1.34679627418518,-1.0693986415863,-0.0850619077682495,-1.22105240821838,-1.52200531959534,0.0745853930711746,-1.18412518501282,-1.53855609893799,-0.0344898104667664,-1.16429758071899,-1.29407346248627,-0.0543176233768463,-1.11626791954041,-0.688789844512939,0.845436692237854,0.780888080596924,-0.575175404548645,0.868028044700623,0.596990823745728,-0.87854790687561,0.907183945178986,0.606128096580505,-0.899591326713562,0.86778336763382,0.77811324596405,-1.09738290309906,0.882148206233978,0.702985525131226,-0.384884834289551,0.829963564872742,0.351355701684952,-0.222612023353577,0.758889853954315,0.396922171115875,-0.185548424720764,0.735478401184082,0.189551919698715,-1.16033601760864,0.917677342891693,0.45436492562294,-1.36327171325684,0.880467772483826,0.380859851837158,-1.19298815727234,0.902491092681885,0.180953025817871,-1.36204481124878,0.841182708740234,-0.0347616970539093,-0.37688946723938,0.797334969043732,0.0164220929145813,-0.212576150894165,0.718294978141785,-0.0218979716300964,-0.326371788978577,0.713681936264038,-0.202995091676712,-1.12409460544586,0.865813732147217,-0.114045739173889,-1.09427571296692,0.782675623893738,-0.349404990673065,-0.533057332038879,0.787843644618988,-0.210864394903183,-0.487348914146423,0.717914462089539,-0.341033846139908,-0.903316140174866,0.820071280002594,-0.287625432014465,-0.896057665348053,0.754635214805603,-0.418958991765976,-0.7990802526474,0.875953018665314,0.260064214468002,-0.744445323944092,0.841698348522186,-0.0410431921482086,-0.706841230392456,0.80941915512085,-0.250841915607452, +-0.586506605148315,0.831904053688049,0.754918932914734,-0.510078549385071,0.843788623809814,0.639232039451599,-0.641775131225586,0.863032281398773,0.692166447639465,-0.347262978553772,0.811375856399536,0.48085805773735,-0.491755604743958,0.855384707450867,0.483321368694305,-0.403717517852783,0.802502453327179,0.651994705200195,-0.869326829910278,0.888955891132355,0.707569658756256,-0.703223466873169,0.888419151306152,0.591991305351257,-1.00162851810455,0.876111567020416,0.749119281768799,-1.00513231754303,0.899454951286316,0.662968635559082,-0.585833787918091,0.85646665096283,0.297251850366592,-0.830188393592834,0.895392060279846,0.430815488100052,-0.281300187110901,0.792363941669464,0.355158537626266,-0.264050602912903,0.766152620315552,0.11092870682478,-0.380255579948425,0.815268278121948,0.18507394194603,-1.19094836711884,0.90673166513443,0.528195738792419,-1.02994179725647,0.916910290718079,0.520530104637146,-1.31885540485382,0.884724915027618,0.477512955665588,-1.2673145532608,0.903599500656128,0.40692538022995,-1.31181252002716,0.888895511627197,0.170572102069855,-1.17584812641144,0.914660692214966,0.329675406217575,-1.16726195812225,0.885977625846863,0.0350218415260315,-1.26592433452606,0.859089016914368,-0.0639910697937012,-0.557676196098328,0.824917435646057,-0.00543305277824402,-0.770092129707336,0.857758641242981,0.100091487169266,-0.265933871269226,0.715361416339874,-0.115363329648972,-0.338248729705811,0.754668593406677,-0.0958988070487976,-1.18884837627411,0.839499711990356,-0.183098539710045,-0.990174889564514,0.843611121177673,-0.212063401937485,-1.00225150585175,0.807237863540649,-0.312662065029144,-1.18114447593689,0.797590374946594,-0.289859265089035,-0.400969386100769,0.714508295059204,-0.278958976268768,-0.515595316886902,0.761537134647369,-0.27018266916275,-0.476442098617554,0.795830070972443,-0.131345361471176,-0.61104953289032,0.800916194915771,-0.23140649497509,-0.723358511924744,0.828663408756256,-0.155279368162155,-0.694904088973999,0.774732053279877,-0.335956305265427,-0.998257160186768,0.768173396587372,-0.392838567495346, +-0.875781297683716,0.789530456066132,-0.355268895626068,-1.0117712020874,0.894736289978027,0.216041922569275,-0.932239413261414,0.858571171760559,-0.0768486857414246,-0.804554104804993,0.818302154541016,-0.268300712108612,-0.575210332870483,0.847861766815186,0.697514414787292,-0.426684617996216,0.829890012741089,0.556855857372284,-0.752063989639282,0.878308057785034,0.698458015918732,-0.9568110704422,0.890241324901581,0.710680365562439,-0.641036629676819,0.877089083194733,0.452995091676712,-0.294047355651855,0.793452322483063,0.441709160804749,-0.270645976066589,0.783025443553925,0.237938284873962,-1.09453499317169,0.905623495578766,0.596488654613495,-1.26029670238495,0.900761783123016,0.475044578313828,-1.29385221004486,0.899055123329163,0.298658490180969,-1.29309797286987,0.874889254570007,0.0429956018924713,-0.557946681976318,0.838698387145996,0.14053937792778,-0.263485670089722,0.742461562156677,-0.00498956441879272,-1.25850963592529,0.843544363975525,-0.130304232239723,-1.09203827381134,0.825686693191528,-0.249221593141556,-0.424476623535156,0.759214878082275,-0.190867707133293,-0.585321545600891,0.816261291503906,-0.128960996866226,-0.605029106140137,0.76706874370575,-0.314132422208786,-0.953657865524292,0.78928554058075,-0.357410788536072,-1.01487624645233,0.910678267478943,0.381718724966049,-0.983062386512756,0.876892685890198,0.05948606133461,-0.86279559135437,0.841191589832306,-0.18186528980732,-0.787342429161072,0.78344863653183,-0.348893016576767,-0.913568139076233,0.323625892400742,0.573891520500183,-0.690838098526001,0.457380592823029,0.578750252723694,-0.523483753204346,0.260880649089813,0.354244351387024,-0.462852478027344,0.419259071350098,0.338864475488663,-0.472208559513092,0.395161718130112,0.0723546743392944,-0.397552251815796,0.515838027000427,0.593168973922729,-0.64307165145874,0.387199640274048,-0.111592262983322,-0.525688290596008,0.562000334262848,0.725557088851929,-0.709843277931213,0.565726637840271,0.775861144065857,-0.488255023956299,0.679099321365356,0.756948828697205,-0.490456819534302,0.817414224147797,0.711653709411621, +-0.328678250312805,0.787512540817261,0.578118443489075,-0.316578269004822,0.647278606891632,0.615448355674744,-0.204205274581909,0.617035031318665,0.423174917697906,-0.286651492118835,0.486629247665405,0.413523465394974,-0.164750814437866,0.592081785202026,0.203271389007568,-0.251810073852539,0.465281635522842,0.226775318384171,-0.202903389930725,0.575360834598541,-0.0177177786827087,-0.283672094345093,0.44930836558342,0.0207512676715851,-0.377117991447449,0.443668633699417,-0.146058440208435,-0.314131617546082,0.568960666656494,-0.213129341602325,-0.484959304332733,0.573579132556915,-0.359428465366364,-0.685256123542786,0.732321739196777,-0.415844947099686,-0.53772634267807,0.447416752576828,-0.283078044652939,-0.69482433795929,0.588733077049255,-0.438914448022842,-0.918393731117249,0.612522184848785,-0.442068129777908,-0.734522581100464,0.462231159210205,-0.358031868934631,-0.884839951992035,0.416593372821808,-0.172374427318573,-0.911532044410706,0.258428931236267,-0.115875571966171,-1.11909079551697,0.291815280914307,0.000995844602584839,-0.924638152122498,0.482597857713699,-0.359400182962418,-1.12869679927826,0.642147660255432,-0.368436753749847,-1.12225198745728,0.511259317398071,-0.284808844327927,-1.30040001869202,0.673968076705933,-0.226969033479691,-1.25627017021179,0.812575578689575,-0.216131076216698,-1.12843382358551,0.455672681331635,-0.0385407209396362,-1.27671122550964,0.557255566120148,-0.184311553835869,-1.41273629665375,0.704210102558136,-0.034673660993576,-1.45223140716553,0.72916567325592,0.185222387313843,-1.39944124221802,0.864624738693237,0.172544568777084,-1.35512447357178,0.5621417760849,-0.0111719965934753,-1.22201418876648,0.490265876054764,0.22382527589798,-1.39761340618134,0.585943222045898,0.196372747421265,-1.41403758525848,0.745881974697113,0.40620356798172,-1.30284559726715,0.752287685871124,0.601636052131653,-1.25857722759247,0.88642817735672,0.565203189849854,-1.36643099784851,0.600303649902344,0.384497553110123,-1.12591648101807,0.492701381444931,0.455778479576111,-1.12041962146759,0.334368705749512,0.451210349798203, +-1.26187229156494,0.605643033981323,0.567835569381714,-1.13199257850647,0.747664272785187,0.747902870178223,-0.922141313552856,0.732515215873718,0.827428579330444,-0.696889758110046,0.709465622901917,0.840269148349762,-1.10163819789886,0.60197639465332,0.705294370651245,-0.922736287117004,0.588943600654602,0.77168869972229,-0.917845845222473,0.493517011404037,0.594358325004578,-1.22076535224915,0.658018827438354,-0.305232435464859,-1.21375584602356,0.529244840145111,-0.230094835162163,-1.29462504386902,0.600755512714386,-0.207942083477974,-1.36495757102966,0.689524829387665,-0.135798752307892,-1.31706142425537,0.827288269996643,-0.130150154232979,-1.25470077991486,0.510908961296082,-0.0188312828540802,-1.31505990028381,0.551379561424255,-0.111056447029114,-1.40374767780304,0.630113422870636,-0.0211907923221588,-1.38975167274475,0.853714108467102,0.0671882927417755,-1.44203698635101,0.717546343803406,0.0734544694423676,-1.3830498456955,0.573964715003967,0.0928730368614197,-1.44208383560181,0.654363334178925,0.192377597093582,-1.44269680976868,0.738701403141022,0.297264277935028,-1.39037418365479,0.87365448474884,0.278152704238892,-1.31373083591461,0.535946607589722,0.193392962217331,-1.19361543655396,0.465803176164627,0.0927630960941315,-1.19195592403412,0.405392080545425,0.217040449380875,-1.39758861064911,0.597174108028412,0.294625461101532,-1.40501153469086,0.670586109161377,0.407003372907639,-1.36685979366302,0.750439524650574,0.508662343025208,-1.29627048969269,0.546450018882751,0.324875742197037,-1.32168555259705,0.603678584098816,0.478534370660782,-1.29700076580048,0.676819622516632,0.596799254417419,-1.22368037700653,0.751344203948975,0.682124376296997,-1.1838926076889,0.885578036308289,0.641019940376282,-1.19056081771851,0.549766540527344,0.509060144424438,-1.18559288978577,0.489357382059097,0.351989030838013,-1.11078906059265,0.417955756187439,0.443294733762741,-1.18551564216614,0.604539155960083,0.643504023551941,-1.1310795545578,0.672317087650299,0.738873898983002,-1.03041112422943,0.741305708885193,0.796750009059906, +-0.810386896133423,0.721537113189697,0.838700294494629,-0.794231295585632,0.85747766494751,0.78866183757782,-1.01926648616791,0.599564433097839,0.752963185310364,-0.927260279655457,0.657615900039673,0.816089034080505,-1.03529953956604,0.490307420492172,0.534069836139679,-1.02971458435059,0.548133552074432,0.647809147834778,-0.818272829055786,0.577532410621643,0.777102530002594,-0.903852343559265,0.538536369800568,0.689963102340698,-0.791760563850403,0.476652652025223,0.592313766479492,-0.685275435447693,0.510498940944672,0.670473694801331,-1.02725517749786,0.331757694482803,0.530112028121948,-0.913567781448364,0.415461838245392,0.567011713981628,-0.782576560974121,0.394226223230362,0.567011296749115,-0.658557772636414,0.369939059019089,0.52664589881897,-0.513853192329407,0.344466686248779,0.346328616142273,-0.536688446998596,0.42892324924469,0.453075498342514,-0.585049152374268,0.277317702770233,0.458281219005585,-0.513145804405212,0.321824282407761,0.1067750826478,-0.455709099769592,0.39708000421524,0.207715213298798,-0.377015471458435,0.45379438996315,0.393312841653824,-0.335911989212036,0.499944746494293,0.505496203899384,-0.504872679710388,0.485685288906097,0.57153332233429,-0.666397929191589,0.320855975151062,-0.0788894295692444,-0.551766633987427,0.384655088186264,-0.0341087281703949,-0.604966878890991,0.555866241455078,0.749225974082947,-0.4687260389328,0.533952057361603,0.672512650489807,-0.590119481086731,0.694420039653778,0.802920699119568,-0.708492636680603,0.635211408138275,0.828592836856842,-0.505869269371033,0.605739235877991,0.747638881206512,-0.396201491355896,0.663228392601013,0.693730354309082,-0.339122891426086,0.574819326400757,0.610228717327118,-0.267728567123413,0.77278858423233,0.492199748754501,-0.252001285552979,0.631720781326294,0.524285852909088,-0.230000138282776,0.545461475849152,0.423477411270142,-0.1749267578125,0.603700339794159,0.315046221017838,-0.195076823234558,0.746376693248749,0.294968128204346,-0.252617478370667,0.47624859213829,0.321279883384705,-0.191663026809692,0.521211445331573,0.209908932447433, +-0.348576426506042,0.43857216835022,0.264275968074799,-0.368755340576172,0.42161700129509,0.0611928999423981,-0.262070178985596,0.456002742052078,0.123533189296722,-0.194453477859497,0.726425290107727,0.0838892757892609,-0.17426586151123,0.58254474401474,0.0912221968173981,-0.228736162185669,0.504988729953766,-0.00471678376197815,-0.2500981092453,0.570806622505188,-0.12016299366951,-0.430010616779327,0.417098432779312,-0.0568772554397583,-0.316888570785522,0.446094542741776,-0.0723717510700226,-0.336747050285339,0.498755186796188,-0.194512695074081,-0.592354416847229,0.419058263301849,-0.193867295980453,-0.451241910457611,0.444099873304367,-0.21930980682373,-0.393287122249603,0.569902181625366,-0.293635547161102,-0.502669274806976,0.503257751464844,-0.336586236953735,-0.58654397726059,0.579939484596252,-0.408253967761993,-0.583134889602661,0.723970293998718,-0.386999011039734,-0.635037064552307,0.453645795583725,-0.328316777944565,-0.706487596035004,0.51795893907547,-0.413802415132523,-0.790643513202667,0.742613852024078,-0.426563203334808,-0.806582272052765,0.599710047245026,-0.450207322835922,-0.754625082015991,0.395191669464111,-0.154422461986542,-0.789795160293579,0.43578439950943,-0.270262211561203,-0.827528119087219,0.472616374492645,-0.375226348638535,-0.923620581626892,0.541079103946686,-0.416846513748169,-1.0268349647522,0.626824736595154,-0.414429843425751,-0.790175020694733,0.245568484067917,-0.113508433103561,-0.901900470256805,0.342014849185944,-0.123791366815567,-1.109459400177,0.375401258468628,-0.00691995024681091,-1.01111173629761,0.42592641711235,-0.121688686311245,-1.02546811103821,0.274535059928894,-0.0752879083156586,-0.921989977359772,0.45035046339035,-0.266925275325775,-1.02437961101532,0.495594918727875,-0.328585743904114,-1.12787842750549,0.569835603237152,-0.345352232456207,-1.12143135070801,0.481789737939835,-0.175429999828339,-0.744055032730103,0.361225992441177,0.562870681285858,-0.575418472290039,0.360904723405838,0.450365602970123,-0.493081510066986,0.330970734357834,0.226838171482086, +-0.43976104259491,0.465808779001236,0.477038860321045,-0.574092388153076,0.318432092666626,0.00102108716964722,-0.565799713134766,0.513297319412231,0.668949902057648,-0.604801416397095,0.620612621307373,0.792298436164856,-0.416459083557129,0.590317010879517,0.686247944831848,-0.276413679122925,0.55971747636795,0.52168595790863,-0.201554656028748,0.532502412796021,0.318462282419205,-0.323184847831726,0.449768722057343,0.328199237585068,-0.36285400390625,0.428233802318573,0.166177600622177,-0.200913429260254,0.511956751346588,0.101087540388107,-0.369016468524933,0.421589016914368,-0.0233901143074036,-0.274565756320953,0.500556349754333,-0.104218900203705,-0.504052221775055,0.416151195764542,-0.123666703701019,-0.41362851858139,0.499678492546082,-0.272694140672684,-0.601328790187836,0.509427189826965,-0.384016543626785,-0.696129858493805,0.426128268241882,-0.237586125731468,-0.81502640247345,0.528627276420593,-0.42476087808609,-0.780544519424438,0.329154521226883,-0.12142413854599,-1.01583671569824,0.358121991157532,-0.0832035839557648,-0.847766578197479,0.446453630924225,-0.307332932949066,-1.02894628047943,0.55496221780777,-0.390011847019196,-1.01619672775269,0.462166666984558,-0.221313759684563,-1.21728885173798,0.585257828235626,-0.283961296081543,-1.22873950004578,0.509109199047089,-0.134205192327499,-1.35733413696289,0.615857303142548,-0.119399338960648,-1.43219304084778,0.643072485923767,0.0838243365287781,-1.28409910202026,0.520703434944153,0.0934861600399017,-1.16987466812134,0.391779035329819,0.0977996289730072,-1.43283450603485,0.663618147373199,0.301199078559875,-1.34039354324341,0.554093420505524,0.271530330181122,-1.35918200016022,0.675018489360809,0.506505489349365,-1.24989128112793,0.547124922275543,0.413116276264191,-1.17058062553406,0.414378196001053,0.336890548467636,-1.22011923789978,0.675896346569061,0.674980759620667,-1.03242003917694,0.666147768497467,0.786303222179413,-1.10758531093597,0.548023760318756,0.585519552230835,-0.818721413612366,0.646947622299194,0.827047526836395,-0.985697507858276,0.556333541870117,0.701245665550232, +-0.800052881240845,0.523761749267578,0.679911255836487,-1.01762449741364,0.415344685316086,0.522196352481842,-0.821099042892456,0.427225589752197,0.571151852607727,-0.151598513126373,-0.29138845205307,0.0103124380111694,-0.331632971763611,0.0335284918546677,0.0572999119758606,-0.50294017791748,-0.29360830783844,-0.415339052677155,-0.15322083234787,-0.239478439092636,0.559507489204407,-0.583301246166229,0.0319385752081871,-0.247597903013229,-1.04284906387329,-0.24509859085083,-0.518278956413269,-0.332794487476349,0.0707125216722488,0.450692772865295,-0.522776186466217,0.238238245248795,0.114690780639648,-0.676028430461884,0.237269952893257,-0.0709737241268158,-0.67781925201416,0.294603079557419,0.535597681999207,-0.970041334629059,0.0666852742433548,-0.321335256099701,-1.51869451999664,-0.168558746576309,-0.250341296195984,-1.31089329719543,0.121512532234192,-0.129408925771713,-1.70782351493835,-0.0998014658689499,0.26310333609581,-1.44636845588684,0.170763269066811,0.23837548494339,-1.20158720016479,0.321806132793427,0.224956303834915,-1.52174091339111,-0.0709998235106468,0.781808853149414,-1.31307709217072,0.191394627094269,0.609929084777832,-1.04751706123352,-0.0956297591328621,1.06306600570679,-0.973385572433472,0.173752292990685,0.811395645141602,-0.507046222686768,-0.162167191505432,0.97527289390564,-0.586242198944092,0.126090466976166,0.748508930206299,-0.431717038154602,0.0279585309326649,-0.116369552910328,-0.291321456432343,-0.29916387796402,-0.232136189937592,-0.298682332038879,0.0485498681664467,0.254466235637665,-0.105598509311676,-0.270417481660843,0.285566806793213,-0.770751297473907,0.0455668345093727,-0.317447125911713,-0.764629900455475,-0.274581551551819,-0.512851357460022,-0.628634572029114,0.144621998071671,-0.160026073455811,-0.583721816539764,0.234845966100693,0.00893673300743103,-0.426279008388519,0.145900562405586,0.0851277709007263,-0.50271201133728,0.247384667396545,0.234753906726837,-0.427213430404663,0.175797879695892,0.401438057422638,-0.630998611450195,0.220325142145157,0.640898823738098, +-0.433896064758301,0.0977063179016113,0.62154084444046,-0.939595580101013,0.17256036400795,-0.219315320253372,-1.15714752674103,0.0931361466646194,-0.25468122959137,-1.30405652523041,-0.208173543214798,-0.425226807594299,-1.21365869045258,0.21664372086525,-0.0649955868721008,-1.41010618209839,0.148407697677612,0.0425589382648468,-1.6571991443634,-0.131010740995407,-0.0102646946907043,-1.32258820533752,0.256244391202927,0.230723768472672,-1.17950534820557,0.308193027973175,0.105715356767178,-1.41126561164856,0.185519263148308,0.435192883014679,-1.65881705284119,-0.0792009085416794,0.537869215011597,-1.21541464328766,0.272833645343781,0.529472947120667,-1.18021130561829,0.330791175365448,0.344806164503098,-1.16008293628693,0.187106370925903,0.739501655101776,-1.30815482139587,-0.07698605209589,0.96269816160202,-0.942283868789673,0.258647382259369,0.691463351249695,-0.774088501930237,0.152426168322563,0.813096165657043,-0.769289135932922,-0.125401481986046,1.06543910503387,-0.792207002639771,0.310639202594757,0.574926853179932,-0.294362843036652,-0.201793506741524,0.798019468784332,-0.50675231218338,0.141421541571617,-0.0545108616352081,-0.399785399436951,0.157978296279907,0.243660807609558,-0.508504509925842,0.197502300143242,0.538809657096863,-0.779354393482208,0.155579507350922,-0.216188937425613,-1.09003818035126,0.193828403949738,-0.165721446275711,-1.29343104362488,0.23826989531517,0.0732762813568115,-1.29436349868774,0.268109828233719,0.388975858688354,-1.09239876270294,0.269386023283005,0.63365638256073,-0.782037973403931,0.241501212120056,0.692830264568329,1.01235723495483,0.137330174446106,0.538261830806732,1.28797221183777,0.152256548404694,0.462406873703003,1.29705190658569,0.112327009439468,0.599691569805145,1.5615998506546,0.0728352963924408,0.48219245672226,1.10121202468872,0.175339847803116,0.388897359371185,0.816261768341064,0.138292700052261,0.321368217468262,1.45650577545166,0.133620083332062,0.352627396583557,0.943217694759369,0.170874834060669,0.262832343578339,1.25549602508545,0.171370357275009,0.12216979265213, +0.953276991844177,0.160797476768494,0.061313807964325,1.58046340942383,0.0960468053817749,0.197778701782227,1.67236065864563,0.0104935169219971,-0.0588670372962952,1.02263987064362,0.126172304153442,-0.125138372182846,1.52815389633179,0.0932923555374146,0.00262844562530518,1.47626614570618,0.0114559233188629,-0.27576071023941,1.21714186668396,0.110088527202606,-0.177414059638977,1.41647887229919,0.0799256563186646,-0.165343284606934,1.6364119052887,0.0719213783740997,0.212105393409729,1.53174591064453,0.116012781858444,0.268508911132813,0.942016839981079,0.170906752347946,0.174585700035095,0.859509170055389,0.140150383114815,0.0444701910018921,0.77768486738205,0.129186287522316,0.178885817527771,1.37160658836365,0.156538248062134,0.253749310970306,1.16776740550995,0.180474609136581,0.274557650089264,1.08289456367493,0.172129943966866,0.086617112159729,0.987307906150818,0.145414292812347,-0.0466595888137817,0.980398118495941,0.107349067926407,-0.16765421628952,1.56397068500519,0.0978747606277466,0.111093521118164,1.41271257400513,0.133401960134506,0.0529478192329407,1.60892474651337,0.052150547504425,-0.0320340394973755,1.7109375,0.0195999145507813,0.0836153626441956,1.23427867889404,0.143037766218185,-0.0503458976745605,1.10598456859589,0.122607991099358,-0.154029935598373,1.20348620414734,0.0740468800067902,-0.266737878322601,1.05002021789551,0.0552918463945389,-0.298982262611389,1.44356286525726,0.0529622882604599,-0.214935928583145,1.47045612335205,0.0886815637350082,-0.0959818959236145,1.59085965156555,0.00779470801353455,-0.182284206151962,1.33057653903961,0.0962359309196472,-0.176957249641418,1.20515334606171,0.166830569505692,0.435728371143341,1.05235922336578,0.159109354019165,0.471511483192444,1.29243505001068,0.13802582025528,0.523313641548157,1.51552295684814,0.104722797870636,0.42422890663147,1.36494898796082,0.148066401481628,0.419416308403015,1.43860220909119,0.0934932231903076,0.561484336853027,1.00855267047882,0.177448123693466,0.32191926240921,0.886996388435364,0.159921184182167,0.288609683513641, +1.16860806941986,0.150700002908707,0.515920281410217,1.41180229187012,0.122143179178238,0.491093873977661,0.955724895000458,0.162196829915047,0.392683863639832,1.59241390228271,0.0874337553977966,0.327688336372375,0.854465126991272,0.1522416472435,0.168457388877869,1.277991771698,0.168538004159927,0.345162808895111,1.0511132478714,0.180790528655052,0.213825106620789,0.903507173061371,0.124637991189957,-0.0711126923561096,1.47047662734985,0.131547331809998,0.171015202999115,1.64145600795746,0.0598300993442535,0.088118314743042,1.10338044166565,0.151372328400612,-0.0414931774139404,1.08411979675293,0.089928463101387,-0.234518259763718,1.54019725322723,0.0498747974634171,-0.13610827922821,1.36256062984467,0.120937943458557,-0.0679512023925781,1.32731294631958,0.0613717287778854,-0.259344667196274,0.969606220722198,-0.183240532875061,0.578251302242279,0.768773078918457,-0.182255238294601,0.356118023395538,1.26117825508118,-0.208846986293793,0.641165137290955,0.735390365123749,-0.206265971064568,0.0596109628677368,0.783666729927063,0.11484757065773,0.0318551063537598,1.53211879730225,-0.249292999505997,0.52082747220993,0.927022457122803,0.0759499371051788,-0.219691455364227,1.67893862724304,-0.289129912853241,0.263204097747803,0.882210195064545,-0.246102899312973,-0.198012441396713,1.70495557785034,0.0339386463165283,0.230646073818207,1.19157147407532,0.0364581048488617,-0.337190538644791,1.15315043926239,-0.286549776792526,-0.318351179361343,1.6455557346344,-0.313141644001007,-0.0333030819892883,1.44472277164459,-0.312155365943909,-0.255436301231384,0.89776337146759,0.140990555286407,0.444784164428711,0.852243542671204,-0.17949067056179,0.482516467571259,1.15021157264709,0.127357333898544,0.590924143791199,1.11079025268555,-0.193454205989838,0.632185637950897,0.729264080524445,-0.19158062338829,0.210193574428558,1.40614950656891,-0.228136569261551,0.602034509181976,0.78882622718811,-0.225106224417686,-0.0807633996009827,0.83584189414978,0.0964519679546356,-0.10520812869072,1.65278029441833,0.052333265542984,0.367709219455719, +1.62550258636475,-0.270290791988373,0.403579294681549,1.00817930698395,-0.267260313034058,-0.279219567775726,1.68506479263306,-0.303815275430679,0.112621493637562,1.33841168880463,0.0214277803897858,-0.328423142433167,1.30353760719299,-0.301942437887192,-0.309371680021286,1.56208539009094,-0.315905213356018,-0.159701466560364,-0.362136006355286,-3.29503130912781,-1.13886308670044,-0.391253530979156,-3.62402987480164,-1.37135314941406,-0.358894526958466,-3.84813570976257,-1.6056854724884,-0.23376190662384,-2.96576952934265,-0.911403298377991,0.227874457836151,-2.66725659370422,-1.01277589797974,0.434573650360107,-2.38126826286316,-1.75760519504547,0.400167644023895,-2.05103158950806,-2.53137874603271,0.25797313451767,-1.93412637710571,-2.95355224609375,0.113639086484909,-1.99721908569336,-3.25988817214966,0.0184538662433624,-2.29899930953979,-3.54173040390015,0.0505369305610657,-2.7750391960144,-3.56294631958008,0.0881865620613098,-3.06459903717041,-3.38283038139343,0.0997593998908997,-3.30179667472839,-3.03768277168274,0.0400303602218628,-3.59576630592346,-2.43028450012207,-0.118224769830704,-3.79461193084717,-1.95434927940369,0.610633015632629,-3.18578767776489,-1.12457597255707,0.810405433177948,-3.11057448387146,-1.37165379524231,0.504431366920471,-3.46963858604431,-1.29982614517212,0.427804827690125,-3.75437593460083,-1.46381008625031,0.722954630851746,-3.39949774742126,-1.52503061294556,0.663368701934814,-3.70020723342896,-1.65884780883789,0.960283756256104,-3.4605450630188,-2.26665854454041,0.971319556236267,-3.15640234947205,-2.11831188201904,1.03157699108124,-2.85419154167175,-1.98734772205353,1.10634183883667,-2.5230655670166,-2.92006516456604,1.06787931919098,-2.75059747695923,-3.09210538864136,1.0969066619873,-3.02841711044312,-3.18179607391357,-0.0255366563796997,-2.83177661895752,-0.801891982555389,0.70605194568634,-2.97127604484558,-0.981582820415497,0.899965226650238,-2.90467071533203,-1.22955906391144,1.10611093044281,-2.635094165802,-1.91175007820129,1.16714024543762,-2.34905624389648,-2.70677852630615, +1.12297010421753,-2.2880232334137,-3.01077222824097,1.07446265220642,-2.37006664276123,-3.20468640327454,1.04829907417297,-2.59704804420471,-3.41172051429749,1.08463656902313,-2.89362978935242,-3.47508692741394,1.10942780971527,-3.10937786102295,-3.42127323150635,1.10851073265076,-3.300128698349,-3.18438839912415,0.950549125671387,-3.68625497817993,-2.39768075942993,0.604586958885193,-3.93475103378296,-1.75753569602966,0.378612965345383,-3.96977281570435,-1.60049724578857,-0.0241786241531372,-3.71027064323425,-2.17180252075195,0.665212869644165,-3.06284737586975,-1.04288148880005,0.860732793807983,-2.99154019355774,-1.29187977313995,1.07304763793945,-2.72762751579285,-1.94188356399536,1.01139962673187,-2.78550386428833,-1.53344988822937,0.631742000579834,-3.83501482009888,-1.71497178077698,0.783403217792511,-3.83488988876343,-2.03209853172302,0.956384658813477,-3.59096574783325,-2.34020829200745,1.05156373977661,-3.50171279907227,-2.80144572257996,1.15382373332977,-2.48055028915405,-2.31434082984924,1.13779616355896,-2.42408967018127,-2.82268071174622,1.09172391891479,-2.43009662628174,-3.11454296112061,1.10116648674011,-2.31152534484863,-3.09786868095398,1.14623010158539,-2.29684138298035,-2.90981912612915,1.05897998809814,-2.6477222442627,-3.31316423416138,1.05456292629242,-2.46857738494873,-3.31758761405945,1.09482192993164,-2.93609809875488,-3.37786197662354,1.0625,-2.74546813964844,-3.46223759651184,1.10715770721436,-3.16615676879883,-3.20069313049316,1.11603057384491,-3.18355655670166,-3.3548002243042,1.10217952728271,-3.02132153511047,-3.45621633529663,-0.125194907188416,-2.87773966789246,-0.841630041599274,0.0775101780891418,-2.77984189987183,-0.795510172843933,0.70678049325943,-2.88985657691956,-0.946955382823944,0.899786829948425,-2.82611846923828,-1.19661569595337,1.09961652755737,-2.55738210678101,-1.88756108283997,1.15114855766296,-2.27900767326355,-2.65029335021973,1.09865486621857,-2.23313570022583,-3.01874709129333,1.03900635242462,-2.31139278411865,-3.25295686721802,1.01120448112488,-2.56176614761353,-3.48022317886353, +1.04672408103943,-2.88488006591797,-3.54586815834045,1.07853496074677,-3.1335015296936,-3.46526861190796,1.06785273551941,-3.37855529785156,-3.19728326797485,0.914512574672699,-3.74653816223145,-2.44406080245972,0.565380811691284,-3.99021053314209,-1.80922031402588,-0.384431004524231,-3.46626782417297,-1.25712180137634,-0.394647806882858,-3.76210427284241,-1.48108148574829,-0.312327980995178,-3.11653280258179,-1.01705300807953,-0.288497716188431,-3.84917545318604,-1.70677995681763,0.555310785770416,-3.32398295402527,-1.21193730831146,0.763505637645721,-3.24939131736755,-1.44996047019958,0.463182777166367,-3.61496138572693,-1.38310551643372,0.394539952278137,-3.88230395317078,-1.54397797584534,0.691674113273621,-3.55240178108215,-1.59509754180908,0.96233206987381,-3.312748670578,-2.19192218780518,0.854730665683746,-3.29235792160034,-1.78891634941101,0.819283425807953,-3.59978628158569,-1.92531704902649,0.996034145355225,-3.00033211708069,-2.04813933372498,0.928867399692535,-2.99521064758301,-1.64637660980225,1.04530227184296,-3.01163077354431,-2.47531127929688,1.09093737602234,-2.71365809440613,-2.35866093635559,1.04891359806061,-3.29580807685852,-2.63891267776489,1.08007216453552,-2.63067102432251,-3.01317477226257,1.0786520242691,-2.88653779029846,-3.14695596694946,0.339651465415955,-4.01700115203857,-1.65980100631714,0.341963648796082,-2.54318165779114,-1.34048938751221,0.443788588047028,-2.20330715179443,-2.17322301864624,0.334272861480713,-1.96617233753204,-2.77611231803894,0.183138281106949,-1.94029116630554,-3.10982704162598,0.0533448457717896,-2.11746525764465,-3.41868877410889,0.0251637697219849,-2.53979563713074,-3.58451414108276,0.071633368730545,-2.93991565704346,-3.49293351173401,0.0999307036399841,-3.1792573928833,-3.24098896980286,0.0805679857730865,-3.45012044906616,-2.74317979812622,0.834646821022034,-3.44924712181091,-1.85905694961548,0.88745641708374,-3.13789081573486,-1.7167364358902,1.06258189678192,-2.86027193069458,-2.40884733200073,1.04369568824768,-3.15908861160278,-2.55314254760742,0.975006818771362,-2.87368273735046,-1.58169674873352, +0.800719738006592,-3.73520565032959,-1.98585629463196,1.05210781097412,-3.41495227813721,-2.7291944026947,1.1257688999176,-2.58043742179871,-2.32966709136963,1.12204599380493,-2.35240578651428,-2.99892497062683,1.0679726600647,-2.52842807769775,-3.22501230239868,1.07293152809143,-2.78829860687256,-3.36182475090027,1.10964202880859,-3.07705545425415,-3.36814165115356,1.00862526893616,-2.7079541683197,-1.50451409816742,1.1438353061676,-2.40090155601501,-2.29556322097778,1.13142466545105,-2.23219323158264,-2.87352132797241,1.06683325767517,-2.25451374053955,-3.1394681930542,1.01822113990784,-2.41883897781372,-3.37648344039917,1.02468132972717,-2.72508811950684,-3.53435206413269,1.06540679931641,-3.01721858978271,-3.52177095413208,1.08391797542572,-3.24512457847595,-3.37957167625427,1.01663887500763,-3.5602605342865,-2.85100555419922,0.74571418762207,-3.89368748664856,-2.07977437973022,0.530892550945282,-0.772210478782654,2.8714599609375,1.04084324836731,-0.856585025787354,2.75734281539917,1.45442223548889,-1.04149436950684,2.4898099899292,1.7476053237915,-1.34752690792084,2.06770849227905,1.81578993797302,-1.8315372467041,1.54847049713135,1.61419200897217,-2.34520721435547,1.20201122760773,1.21634709835052,-2.77229905128479,1.07265543937683,0.667028665542603,-3.0420880317688,1.07834911346436,0.20139867067337,-3.08114385604858,1.10573470592499,-0.244756042957306,-2.96296763420105,1.13804697990417,-0.690060973167419,-2.64286279678345,1.20341992378235,-0.990624964237213,-2.15697431564331,1.36745619773865,-1.0712171792984,-1.69782304763794,1.66155350208282,-0.941146969795227,-1.31487417221069,2.06082439422607,-0.495182752609253,-0.957957983016968,2.56812858581543,-0.047735333442688,-0.810096740722656,2.80314421653748,-0.176589906215668,-2.83662629127502,2.30795311927795,-0.36051219701767,-2.19828248023987,2.32268333435059,0.395947724580765,-2.92218947410583,2.43958353996277,0.437460571527481,-2.27707481384277,2.5173487663269,-0.122248411178589,-1.56351459026337,2.65085911750793,0.469867825508118,-1.59567308425903,2.75052857398987, +1.08064520359039,-1.61874222755432,2.65883350372314,1.16597521305084,-2.2303991317749,2.43066668510437,0.911243617534637,-2.84774255752563,2.38907265663147,0.553590536117554,-0.938042163848877,3.04771518707275,0.541150093078613,-1.06148540973663,3.00859093666077,1.09586250782013,-1.04902160167694,2.91682744026184,1.08585214614868,-1.16100239753723,2.88485479354858,1.50290620326996,-1.27975392341614,2.67382597923279,1.45786809921265,-1.32935881614685,2.68378376960754,1.73892855644226,-1.61837029457092,2.42258787155151,1.62659740447998,-1.6409592628479,2.47449946403503,1.78001165390015,-2.13998103141785,2.23108267784119,1.67533922195435,-2.15952348709106,2.28437256813049,1.60024464130402,-2.68393278121948,2.17601823806763,1.4857577085495,-2.69233560562134,2.23590469360352,1.23557031154633,-3.09192752838135,2.23757290840149,1.2059588432312,-3.04402852058411,2.27403259277344,0.800895571708679,-3.2946343421936,2.32876205444336,0.806695699691772,-3.20997667312622,2.36363959312439,0.33882275223732,-3.32595086097717,2.37768340110779,0.349037021398544,-3.2455677986145,2.40916132926941,-0.144528150558472,-3.19388103485107,2.27852439880371,-0.147011339664459,-3.12057137489319,2.30729961395264,-0.598095893859863,-2.90004420280457,2.0325722694397,-0.530125558376312,-2.87579202651978,2.10511612892151,-0.897066116333008,-2.39631986618042,1.94965672492981,-0.809172511100769,-2.37708473205566,2.0273551940918,-1.00155091285706,-1.9033215045929,2.05925369262695,-0.894773781299591,-1.94435679912567,2.1216402053833,-0.742381632328033,-1.52420473098755,2.41093802452087,-0.874281346797943,-1.49828219413757,2.34837126731873,-0.431107997894287,-1.12427341938019,2.78570556640625,-0.40809154510498,-1.1901843547821,2.76620745658875,0.00526249408721924,-0.967946827411652,2.99111413955688,-0.000391840934753418,-1.08270847797394,2.94829082489014,0.0976302027702332,-3.19766592979431,2.37758350372314,-0.673697888851166,-2.01666378974915,2.21885633468628,-0.464572966098785,-1.54329240322113,2.52619457244873,-0.896227717399597,-2.15096998214722,2.04221296310425, +0.836285471916199,-3.06688714027405,2.37789821624756,0.581278026103973,-3.24861669540405,2.39976596832275,-0.0452127456665039,-1.28790819644928,2.81989669799805,-0.235341668128967,-1.12709212303162,2.86709523200989,-0.563356757164001,-1.31988382339478,2.62067365646362,0.506715059280396,-1.28879046440125,2.89480185508728,0.26276969909668,-1.05876505374908,2.99900531768799,1.07157731056213,-1.35457372665405,2.78777360916138,0.82175886631012,-1.09709548950195,2.9664032459259,1.38942885398865,-1.63298797607422,2.56182646751404,1.54592680931091,-1.44833016395569,2.59230995178223,1.3146835565567,-1.24861097335815,2.7763569355011,1.46496629714966,-2.19149351119995,2.35220718383789,1.67608690261841,-1.8864278793335,2.36658000946045,1.22549057006836,-2.76313185691833,2.31116318702698,1.60530126094818,-2.43503761291504,2.24369668960571,1.03762996196747,-3.13281011581421,2.31502747535706,1.33649373054504,-2.91078424453735,2.25234532356262,0.269590973854065,-0.93745619058609,3.03948545455933,0.834798157215118,-0.976547837257385,3.00269603729248,1.31943368911743,-1.15150856971741,2.80250787734985,1.64367306232452,-1.42950367927551,2.54486751556396,1.7858681678772,-1.86396408081055,2.31394028663635,1.71688210964203,-2.42011737823486,2.1861777305603,1.43386745452881,-2.9109890460968,2.19739937782288,1.02317070960999,-3.21738624572754,2.28379011154175,0.572973191738129,-3.33093619346619,2.36519408226013,0.0978633761405945,-3.27933740615845,2.35082364082336,-0.382975280284882,-3.07236957550049,2.15469455718994,-0.77050769329071,-2.66214609146118,1.96539580821991,-0.974623143672943,-2.14021396636963,1.98184418678284,-0.671401798725128,-1.29540300369263,2.57357120513916,-0.216928720474243,-1.02267074584961,2.91570377349854,-0.737412214279175,-1.12120175361633,2.32583045959473,0.104099810123444,-2.8818531036377,2.39314699172974,0.418824434280396,-2.62391710281372,2.46441340446472,0.0608700513839722,-2.24730849266052,2.46163606643677,-0.249420046806335,-2.55772280693054,2.30533385276794,0.450629323720932,-1.92971396446228,2.61871480941772, +0.180505156517029,-1.58103060722351,2.72572898864746,-0.229562878608704,-1.86207115650177,2.48423504829407,0.814651548862457,-2.26518297195435,2.49636912345886,1.14333844184875,-1.91446506977081,2.52915120124817,0.772019505500793,-1.60727310180664,2.7249813079834,0.64986252784729,-2.90578985214233,2.43505334854126,1.05487561225891,-2.55520296096802,2.39531826972961,-0.848173260688782,-1.73389744758606,2.24457120895386,-0.976217091083527,-1.69513261318207,2.17918109893799,0.798587381839752,-0.800173997879028,2.83583950996399,1.26003444194794,-0.936331748962402,2.64256763458252,1.62226569652557,-1.1741509437561,2.29736375808716,1.81447815895081,-1.57484817504883,1.80332350730896,1.74444305896759,-2.09301853179932,1.34740948677063,1.43878972530365,-2.57401514053345,1.11414837837219,0.944974780082703,-2.93291282653809,1.06637287139893,0.424863189458847,-3.08606052398682,1.09163522720337,-0.0204448699951172,-3.04365158081055,1.1201479434967,-0.475623607635498,-2.82847881317139,1.16260433197021,-0.865083634853363,-2.40879821777344,1.27009212970734,-1.05661916732788,-1.91807866096497,1.50034260749817,-1.04257154464722,-1.50191819667816,1.84388959407806,-0.278273701667786,-0.86220121383667,2.71694254875183,0.235385835170746,-0.777809321880341,2.85760617256165,-0.39703494310379,-2.83835864067078,2.19620895385742,-0.358951151371002,-3.02994108200073,2.20057702064514,-0.138043463230133,-3.01884365081787,2.31740665435791,-0.631147503852844,-2.33206868171692,2.14640998840332,-0.683668911457062,-2.63843274116516,2.04785013198853,0.370056003332138,-3.12384247779846,2.42252969741821,0.0739582180976868,-2.5883994102478,2.40969777107239,0.109932601451874,-1.90731143951416,2.57658672332764,0.802409112453461,-1.92821967601776,2.59536290168762,0.742389321327209,-2.60646486282349,2.45218658447266,-0.310464262962341,-2.98022437095642,2.23640275001526,-0.508521556854248,-2.58969974517822,2.16861248016357,0.106201410293579,-3.07893943786621,2.3843560218811,-0.577737987041473,-1.79505443572998,2.35691690444946,-0.751134216785431,-2.16328620910645,2.12239861488342, +0.601310849189758,-3.11688470840454,2.41720604896545,-0.335522174835205,-1.30620992183685,2.71630191802979,0.231948673725128,-1.28109073638916,2.88024234771729,0.789841175079346,-1.314040184021,2.86103749275208,1.34217298030853,-1.40812420845032,2.6838366985321,1.45148324966431,-1.90008533000946,2.44269728660583,1.36650717258453,-2.48929047584534,2.31611061096191,1.11130273342133,-2.9826774597168,2.31412053108215 + } + PolygonVertexIndex: *11977 { + a: 28,1,-1017,1,1002,-32,1,4,-1007,30,1,-1019,32,1014,-2,5,738,2063,-1005,4,740,1005,-1007,8,2066,1007,-32,2067,8,31,-1003,2068,9,3,-1002,1019,2,-2,2128,1263,1261,-2128,2041,10,35,-1010,2043,11,34,-1011,2045,12,13,-1029,1011,14,33,-1030,1012,722,15,-1016,6,1013,1014,-33,1016,27,726,-2056,1,5,-1005,13,1010,-2,1027,28,731,-2058,1018,29,733,-1018,2,1019,1020,-735,18,2047,1021,-27,1,7,-1004,1,34,-1010,19,727,1022,-1024,20,21,2049,-1031,22,1024,1031,-26,0,23,1025,-1033,24,730,2051,-1001,720,2039,2040,-11,29,1,-1028,1,15,-1030,33,1028,-2,1,20,-1031,1,25,-1032,1,0,-1033,1,19,-1024,27,1,-1022,0,1,-1001,42,1037,2048,-729,1033,39,1035,-1035,1050,42,728,-1050,1036,41,1039,-1039,1037,42,1042,-1042,1048,1057,1056,-1048,1043,43,1048,-1048,1251,44,45,-2051,1042,42,1050,-1052,1053,46,1055,-1055,1055,1063,1062,-1055,1046,47,1060,-1060,1065,48,47,-1059,1063,1055,1244,-1244,110,111,1242,-1242,1069,52,1067,-1067,1072,54,1071,-1071,1076,55,1074,-1074,1079,57,1078,-1078,1082,58,1081,-1081,1085,60,1084,-1084,1089,61,1087,-1087,1087,61,1091,-1091,1096,62,1095,-1095,1092,63,1098,-1098,1103,64,1102,-1102,1099,65,1105,-1105,1110,66,1109,-1109,1106,67,1112,-1112,1116,68,1115,-1115,1113,69,1118,-1118,1123,70,1122,-1122,1119,71,1125,-1125,1129,73,1128,-1128,1126,74,1131,-1131,1136,75,1135,-1135,1135,75,1138,-1138,1142,77,1141,-1141,1139,79,1144,-1144,1136,73,1147,-1147,1149,80,1151,-1151,1155,81,1154,-1154,1145,82,1157,-1157,1152,83,1160,-1160,1164,84,1163,-1163,1158,85,1166,-1166,1161,86,1169,-1169,1173,87,1172,-1172,1167,89,1175,-1175,1170,90,1178,-1178,1182,91,2096,-1181,1181,92,2098,-1184,1182,83,1151,-1186,1184,760,1189,-1189,1148,94,1192,-1192,1129,70,1195,-1195,1196,96,1198,-1198,1123,68,1200,-1200,1201,98,1203,-1203,1116,66,1206,-1206,1207,99,1209,-1209,1110,64,1211,-1211,1212,101,1214,-1214,1103,62,1216,-1216,1217,102,1219,-1219,1096,60,1221,-1221,1222,104,1224,-1224,1085,57,1227,-1227,1228,106,1230,-1230,1079,54,1233,-1233,1234,107,1236,-1236,1072,51,1238,-1238,1236,107,1239,-1241,51,50,1064,-1239,1242,111,1063,-1244, +1245,46,1052,-1248,1248,44,1251,-1251,1254,112,113,-1258,1252,112,1254,-1254,1259,114,116,-2053,1255,114,1259,-1259,1262,117,729,-2054,1260,117,1262,-1262,118,1264,2039,-721,119,121,1267,-1269,1264,118,1266,-1266,122,123,1272,-2043,1267,121,1270,-1270,124,1275,2044,-722,1272,123,1274,-1274,1280,124,721,-1280,1275,124,1277,-1277,131,1281,1282,-724,132,1289,1290,-726,1285,128,1284,-1284,1288,130,1287,-1287,322,323,1544,-1546,2022,133,1292,-1292,1293,134,1295,-1295,1292,133,1297,-1297,1298,136,1301,-1301,1295,134,1299,-1305,1305,135,1303,-1308,1306,137,1311,-1311,1312,139,1314,-1314,1319,140,1317,-1317,1311,137,1309,-1321,1324,143,1323,-1323,1321,142,1326,-1326,1308,138,1329,-1329,1302,233,1332,-1332,1337,148,1335,-1335,1330,146,1339,-1339,1336,149,1342,-1342,1333,147,1345,-1345,1349,152,1348,-1348,1335,148,1351,-1351,1348,152,1354,-1354,1340,151,1357,-1357,1346,182,1360,-1360,1365,156,1363,-1363,1352,154,1367,-1367,1355,157,1370,-1370,1364,158,1373,-1373,1377,180,1375,-1375,1368,159,1379,-1379,1371,160,1382,-1382,1376,162,1385,-1385,1409,88,1172,-1387,1387,87,1176,-1389,1179,93,1391,-1391,1380,163,1389,-1394,1190,762,2101,-1395,147,203,1422,-1346,167,1395,1075,-57,1397,167,56,-1397,168,169,1398,-1089,170,286,1399,-1094,171,288,1503,-1101,172,290,1400,-1108,173,292,1510,-1402,174,175,1512,-1121,1514,175,174,-1403,1447,295,72,-1134,1446,232,176,-1404,1405,228,78,-1405,1440,226,177,-1407,1408,178,179,-1408,1435,221,88,-1410,1410,218,180,-1378,1429,215,156,-1366,1425,210,181,-1361,233,202,1419,-1333,233,2017,1448,-203,190,2114,194,-190,507,1416,196,-2118,2113,188,204,-1421,742,1470,1509,-294,189,194,-261,1419,202,201,-1419,207,208,1422,-1424,204,205,1418,-1421,206,207,1423,-1422,209,210,1425,-1425,1426,211,209,-1425,1427,212,214,-1429,214,215,1429,-1429,213,217,1431,-1431,217,218,1410,-1432,216,220,1433,-1433,220,221,1435,-1434,219,223,1436,-1435,223,178,1408,-1437,222,225,1438,-1438,225,226,1440,-1439,224,227,1441,-1440,227,228,1405,-1442,229,230,1444,-1443,230,232,1446,-1445,267,269,838,-2087,231,1445,1443,-294,1481,277, +278,-1485,1484,278,279,-1488,258,1060,1061,-50,259,1448,2017,-468,234,262,1449,-2011,235,789,1450,-456,236,1451,1452,-454,452,490,791,-1454,237,487,1454,-1456,238,239,787,-1963,240,241,785,-1957,1528,1944,1943,-1949,242,485,1457,-1459,243,482,1459,-1770,244,481,1460,-1761,245,246,1461,-1463,247,248,1463,-1465,1601,1465,829,-1600,1466,538,334,-1594,251,249,250,-253,841,251,252,-1589,255,256,794,-1588,793,256,255,-1468,1469,497,257,-1469,277,275,-277,269,267,1477,-803,109,751,752,-267,51,1065,1058,-51,266,277,1481,-1477,265,1482,1483,-2079,231,293,1509,-1514,264,1485,1486,-1476,194,2114,768,-201,1483,1482,280,-1489,749,1489,1490,-1475,1488,280,166,-1396,1486,1485,281,-1492,748,1492,1493,-2076,1491,281,167,-1398,1490,1489,282,-1495,263,1495,1496,-2074,1494,282,283,-1399,1493,1492,284,-1498,1499,1473,746,-1499,1497,284,169,-1400,1496,1495,285,-1501,1472,744,1501,-1503,1500,285,286,-1504,1499,1498,287,-1505,743,1505,1506,-1472,1504,287,288,-1401,1502,1501,289,-1508,741,1508,1509,-1471,1507,289,290,-1511,1506,1505,291,-1512,2117,192,1415,-508,1511,291,292,-1513,1509,1508,294,-1514,1513,294,175,-1515,205,203,1419,-1419,1517,296,432,-1899,1519,299,300,-1519,440,303,1520,-1522,304,305,1522,-1524,306,307,1524,-1526,1947,1777,1776,-1946,308,309,1527,-1529,1529,309,308,-1955,1531,310,447,-1531,1533,311,312,-1533,1534,313,450,-1973,1536,314,315,-1536,318,319,1537,-1539,1540,297,298,-1540,1542,433,320,-1542,318,1902,1543,-320,432,296,1516,-1516,325,1549,1550,-733,1544,323,1547,-1547,1559,325,732,-1559,1548,324,1552,-1552,1549,325,1556,-1556,458,459,1992,-1907,2053,2129,2126,-1263,1560,36,1562,-1562,1564,328,1566,-1566,1563,40,1040,-1568,1572,330,1570,-1570,1566,328,1568,-1574,338,1577,1576,-1579,1552,324,1557,-1577,1581,258,1468,-1580,1580,257,1467,-1583,333,1465,1601,-1603,334,247,1591,-1591,1593,334,1590,-1593,1604,335,1598,-1603,2135,333,1602,-1599,829,336,1600,-1600,1601,337,1603,-1603,1595,335,1604,-1606,1577,338,1607,-1609,1610,342,1612,-1612,1616,344,1614,-1614,1603,337,1618,-1618,1615,345,1621,-1621,1622,346,1624,-1624, +1624,346,1627,-1627,1631,349,1630,-1630,1614,344,1633,-1633,1628,350,1636,-1636,1637,353,1640,-1640,1644,354,1643,-1643,1634,352,1646,-1646,1641,355,1649,-1649,1653,356,1652,-1652,1652,356,1655,-1655,1650,357,1658,-1658,1647,358,1662,-1662,1659,359,1665,-1665,1656,361,1668,-1668,1666,362,1671,-1671,1665,359,1669,-1674,1655,356,1663,-1676,1677,365,1679,-1679,1684,366,1682,-1682,1680,368,1686,-1686,1682,366,1688,-1688,1686,368,1691,-1691,1679,365,1694,-1694,1676,372,1697,-1697,1701,370,1692,-1700,1695,373,1703,-1703,1707,375,1706,-1706,1698,377,1709,-1709,1713,374,1704,-1712,1713,378,1715,-1715,1710,379,1718,-1718,1697,372,1662,-1721,1722,380,1724,-1724,1721,358,1646,-1727,1725,383,1730,-1730,1734,384,1733,-1733,1727,352,1633,-1736,1739,386,1738,-1738,1618,337,1600,-1741,1745,387,1743,-1743,1748,388,1747,-1747,1591,247,1464,-1750,1462,244,1752,-1752,1753,389,1755,-1755,1760,243,1758,-1758,1744,390,1762,-1762,1756,391,1764,-1764,1769,242,1767,-1767,1755,389,1759,-1771,1775,395,1774,-1774,1777,1947,1948,-1944,1774,395,1779,-1779,1780,396,1782,-1782,1785,399,1784,-1784,1785,397,1782,-1787,1791,401,1790,-1790,1788,400,1793,-1793,1796,402,1715,-1796,1794,403,1798,-1798,1799,404,1801,-1801,1802,405,1804,-1804,1798,403,1807,-1807,1801,404,1809,-1811,1812,408,1814,-1814,1819,409,1817,-1817,1817,409,1821,-1821,1815,410,1824,-1824,1672,363,1822,-1827,1831,416,1829,-1829,1821,409,1825,-1833,1837,413,1835,-1835,1811,406,1839,-1839,1836,414,1842,-1842,1843,415,1845,-1845,1849,418,1847,-1847,1835,413,1840,-1851,1848,419,1853,-1853,1854,420,1856,-1856,1860,422,1858,-1858,1847,418,1862,-1862,1868,424,1865,-1865,1856,420,1859,-1870,1873,426,1872,-1872,1877,428,1875,-1875,1876,427,1879,-1879,1883,430,1881,-1881,1882,429,1885,-1885,1889,297,1888,-1888,1888,297,1540,-1891,1889,429,1881,-1894,1894,430,1896,-1896,1891,433,1542,-1900,1900,435,1902,-1902,1896,430,1883,-1909,1877,426,1912,-1912,1897,437,1915,-1915,1910,438,1918,-1918,1923,443,1921,-1921,1916,439,1921,-1925,1873,422,1863,-1927,1913,441,1929,-1929,1925,443,1932,-1932,1932,443, +1923,-1935,1933,395,1775,-1937,1930,472,1939,-1939,1935,445,1940,-1942,1949,446,1952,-1952,1950,240,1956,-1956,1953,448,1959,-1959,1957,238,1962,-1962,1960,449,1965,-1965,1965,449,1963,-1968,1966,451,1970,-1970,1453,453,1974,-1974,1452,455,1976,-1976,1980,456,1979,-1979,1979,456,1982,-1982,1982,456,1984,-1984,1988,464,1987,-1987,1450,234,1990,-1990,1993,459,458,-1986,1995,460,461,-1995,1999,739,462,-1999,1984,456,1987,-1997,2004,463,465,-2004,1997,464,2001,-2001,2062,736,469,-2015,1991,466,2006,-2006,2010,467,2008,-2008,2002,468,2012,-2012,36,38,2046,-1034,2017,233,1301,-2016,2009,470,2019,-2019,2013,471,2021,-2021,2016,136,1297,-2024,1927,444,2025,-2025,2029,474,1939,-2028,1862,418,1851,-2031,1942,474,2029,-2033,2031,476,1839,-2034,965,919,690,-599,779,691,599,-969,600,917,483,779,-969,480,972,1460,-482,538,698,-845,482,601,782,-1460,485,486,784,-1458,774,689,596,-964,640,783,865,-705,486,485,1459,-783,785,980,603,-240,785,241,602,-981,602,241,1456,-978,598,690,774,-964,446,1947,1945,-1951,494,860,856,-669,666,854,861,-607,821,498,497,-638,256,793,-499,504,817,640,-865,802,270,630,-802,827,523,-277,805,646,630,-805,869,511,629,-879,807,512,628,-807,809,662,513,-809,868,661,491,-811,812,660,627,-812,867,514,484,-814,866,515,644,-815,2037,663,643,-858,2035,659,516,-816,2036,517,642,-853,640,518,816,-784,505,664,2038,-818,877,664,505,-819,2076,657,639,-820,2099,656,501,-796,2094,2092,638,-821,637,654,876,-822,496,653,874,-793,519,520,875,-823,521,522,873,-824,636,652,824,-826,523,524,872,-829,525,526,826,-828,635,651,2060,-831,636,527,276,-829,527,825,-522,528,527,823,-520,830,525,276,-530,634,832,-272,634,530,831,-833,833,634,-272,633,650,834,-834,632,649,835,-837,871,649,632,-838,836,633,268,-633,870,648,631,-840,837,632,268,-632,510,645,2064,-841,840,531,269,-511,694,588,2087,-781,822,496,528,-520,1469,528,496,-498,251,535,-843,1466,249,537,-924,248,538,918,-557,1466,923,-700,481,776,-693,864,640,-705,538,844,-698,943,988,-493,667,856,860,-558,931,535,251,-842,482,1460,972,-602,854,667,557,-862,599,691,919,-966,684, +897,-565,776,693,719,-2086,695,589,998,-916,481,692,-776,696,718,2088,-782,917,479,715,-917,556,717,997,-860,779,483,714,-997,2079,717,556,-919,554,690,919,-856,552,689,774,-2122,920,555,698,-844,590,478,778,-922,537,712,922,-924,713,477,772,-925,700,711,925,-927,927,477,713,-996,536,710,711,-701,865,532,708,-929,535,709,929,-843,864,704,542,-847,701,706,930,-932,932,504,994,-846,993,706,701,-934,591,502,934,-936,992,705,533,-937,991,703,937,-2070,989,592,534,-939,594,702,879,-2111,500,595,990,-940,500,940,2109,-596,545,687,899,-850,850,670,686,-898,669,685,898,-942,942,547,684,-896,551,574,896,-944,945,546,573,-945,668,683,946,-854,894,683,668,-857,892,682,667,-855,893,572,666,-948,665,570,890,-852,562,672,948,-950,543,681,891,-848,563,559,881,-951,541,567,889,-849,951,559,563,-885,2090,567,541,-953,953,673,677,-884,2059,568,539,-955,955,550,678,-886,888,565,540,-957,688,561,882,-958,959,566,675,-959,679,560,960,-887,679,887,961,-561,623,596,773,-914,2058,624,597,-963,585,598,963,-913,914,587,611,-965,622,599,965,-911,967,625,626,-967,621,600,968,-970,609,617,911,-971,777,600,621,-910,608,615,906,-864,972,480,584,-972,607,581,973,-863,782,601,620,-975,558,580,975,-881,1946,1458,1457,-1457,904,580,558,-977,583,602,977,-979,979,614,606,-862,618,603,980,-908,981,578,557,-861,616,604,786,-983,495,613,983,-985,985,604,616,-906,492,575,901,-987,790,488,582,-988,493,612,900,-989,788,605,579,-904,489,577,902,-859,510,801,803,-646,11,119,1268,-2042,12,122,2042,-2044,721,2044,2045,-15,1279,721,14,-1012,1282,127,722,-1013,1290,723,724,-1014,18,37,2046,-2048,727,728,2048,-1023,1049,728,727,-2050,2050,45,21,-1025,1257,113,22,-1026,2052,116,23,-2052,2128,2130,2093,-1264,731,2055,2056,-328,732,733,2057,-1559,322,17,1017,-1551,1020,17,322,-1546,2062,725,6,-2062,2004,736,737,-2064,1999,463,738,-1006,8,460,1995,-2067,9,459,1993,-2068,6,32,1003,-2062,1472,743,97,-1205,1473,744,745,-2072,2073,746,100,-2073,2075,263,747,-2075,749,1474,1225,-106,1475,749,105,-1232,2078,264,750,-2078,109,266,1476,-2081,753,754,2084,-1247,755,267,2086,-1250, +756,273,1477,-2090,757,274,1478,-1257,758,1479,2091,-116,2093,758,115,-1264,183,91,1187,-2096,184,92,2096,-2098,760,2098,1411,-186,761,762,1189,-2101,186,161,2101,-1413,763,764,2102,-2104,765,766,2104,-2106,187,153,2106,-2108,767,150,2108,-1414,188,144,1343,-2112,768,141,2112,-2114,1318,141,768,-2115,1315,769,190,-2116,2116,129,191,-1415,770,1278,2117,-197,2119,770,196,-2119,1271,771,198,-2121,2123,120,199,-2123,741,1470,1193,-96,776,481,-694,1461,780,693,-482,783,641,532,-866,908,978,977,-785,977,1456,1457,-785,692,776,2085,-1000,1949,308,1528,-1949,446,1949,1948,-1948,497,496,792,-638,793,497,-499,940,500,498,-821,1,16,-1016,269,802,801,-511,276,525,-828,629,511,805,-805,628,512,869,-879,513,662,807,-807,491,661,809,-809,627,660,868,-811,484,514,812,-812,644,515,867,-814,643,663,866,-815,516,659,2037,-858,642,517,2035,-816,641,658,2036,-853,641,783,816,-659,640,817,2038,-519,639,657,877,-819,501,656,2076,-820,638,2092,2099,-796,498,655,2094,-821,498,821,876,-656,637,792,874,-655,496,822,875,-654,519,823,873,-521,521,825,824,-523,636,828,872,-653,523,827,826,-525,525,830,2060,-527,276,523,-829,636,825,-528,529,635,-831,635,832,831,-652,633,833,271,-269,634,833,834,-531,631,268,838,-840,633,836,835,-651,631,648,871,-838,531,647,870,-840,269,531,839,-839,253,534,-937,531,840,2064,-648,719,693,780,-2088,933,253,-534,695,246,1463,696,-782,248,556,859,696,-1464,915,694,780,1461,246,-696,1528,1527,1526,-1945,694,915,998,-589,715,479,775,-2066,695,781,2088,-590,714,483,917,-917,696,859,997,-719,553,691,779,-997,697,2081,2079,-919,553,855,919,-692,698,555,2034,-845,554,2121,774,-691,699,716,920,-844,552,921,778,-690,699,923,922,-717,590,924,772,-479,537,926,925,-713,708,532,927,-996,542,704,865,-929,536,842,929,-711,994,504,864,-847,535,931,930,-710,707,503,932,-846,533,705,993,-934,707,935,934,-504,534,592,992,-937,591,2069,937,-503,499,593,989,-939,991,2110,879,-704,499,939,990,-594,594,2109,940,-703,686,670,849,-900,684,547,850,-898,545,941,898,-688,573,546,942,-896,669,943,896,-686,569,671,945,-945,551,853,946,-575,569, +676,544,-672,667,682,894,-857,666,572,892,-855,548,571,893,-948,548,851,890,-572,676,949,948,-545,665,847,891,-571,562,950,881,-673,543,848,889,-682,677,673,951,-885,539,568,2090,-953,678,550,953,-884,540,565,2059,-955,564,549,955,-886,675,566,888,-957,564,957,882,-550,674,680,959,-959,688,886,960,-562,674,961,887,-681,597,624,913,-774,611,587,2058,-963,623,912,963,-597,626,625,914,-965,585,910,965,-599,610,586,967,-967,622,969,968,-600,610,970,911,-587,584,480,777,-910,609,863,906,-618,620,601,972,-972,608,862,973,-616,619,486,782,-975,607,880,975,-582,619,908,784,-487,606,614,904,-977,557,578,979,-862,583,907,980,-603,494,576,981,-861,618,982,786,-604,494,984,983,-577,582,488,985,-906,495,986,901,-614,579,605,790,-988,492,988,900,-576,489,788,903,-578,493,858,902,-613,617,906,-581,27,1016,-2,24,1000,-2,5,1,-1007,1,1014,-17,29,1018,-2,7,1004,2063,-738,5,1006,1005,-739,4,1007,2066,-741,3,9,2067,-1003,2,734,2068,-1002,10,2040,1008,-36,1026,1,-2125,2125,2124,1008,-2041,11,2041,1009,-35,13,12,2043,-1011,14,2045,1028,-34,15,722,1011,-1030,16,724,1012,-1016,16,1014,1013,-725,731,28,1016,-2056,1,1015,-16,1004,7,-2,32,1,-1004,733,29,1027,-2058,17,30,1018,-1018,17,1020,1019,-31,726,27,1021,-2048,1,1009,-36,18,26,1023,-1023,19,1030,2049,-728,20,1031,1024,-22,22,25,1032,-1026,0,1000,2051,-24,24,1026,2054,-731,720,10,2041,-1269,1,1010,-35,1027,1,-29,13,1,-1029,33,1,-1030,19,1,-1031,436,1906,1992,-736,1,1031,-21,25,1,-1033,26,1,-1024,26,1021,-2,37,2048,1037,-40,1035,41,1036,-1035,1036,40,1562,-1035,1562,36,1033,-1035,45,44,1050,-1050,1480,2082,2084,-272,1040,40,1036,-1039,1042,43,1043,-1042,1043,41,1035,-1042,1035,39,1037,-1042,1045,47,1046,-1045,1046,330,1572,-1045,1057,1048,1054,-1063,1039,41,1043,-1048,113,112,1251,-2051,1050,44,1052,-1052,1052,46,1053,-1052,1053,43,1042,-1052,1246,2083,1243,-1245,1048,43,1053,-1055,1057,50,1058,-1057,1058,47,1045,-1057,1060,258,1581,-1060,1581,330,1046,-1060,752,275,277,-267,1063,111,1064,-1063,1064,50,1057,-1063,109,1241,1242,-752,1067,53,1068,-1067,1068,49,1061,-1067,1061,48,1069,-1067, +1071,52,1069,-1071,1069,48,1065,-1071,1065,51,1072,-1071,1074,56,1075,-1074,1075,53,1067,-1074,1067,52,1076,-1074,1078,55,1076,-1078,1076,52,1071,-1078,1071,54,1079,-1078,1081,59,1396,-1081,1396,56,1074,-1081,1074,55,1082,-1081,1084,58,1082,-1084,1082,55,1078,-1084,1078,57,1085,-1084,1087,168,1088,-1087,1088,59,1081,-1087,1081,58,1089,-1087,1091,63,1092,-1091,1092,170,1093,-1091,1093,168,1087,-1091,1095,61,1089,-1095,1089,58,1084,-1095,1084,60,1096,-1095,1098,65,1099,-1098,1099,171,1100,-1098,1100,170,1092,-1098,1102,63,1091,-1102,1091,61,1095,-1102,1095,62,1103,-1102,1105,67,1106,-1105,1106,172,1107,-1105,1107,171,1099,-1105,1109,65,1098,-1109,1098,63,1102,-1109,1102,64,1110,-1109,1112,69,1113,-1112,1113,173,1401,-1112,1401,172,1106,-1112,1115,67,1105,-1115,1105,65,1109,-1115,1109,66,1116,-1115,1118,71,1119,-1118,1119,174,1120,-1118,1120,173,1113,-1118,1122,69,1112,-1122,1112,67,1115,-1122,1115,68,1123,-1122,1125,74,1126,-1125,1126,72,1402,-1125,1402,174,1119,-1125,1128,71,1118,-1128,1118,69,1122,-1128,1122,70,1129,-1128,1131,76,1132,-1131,1132,176,1133,-1131,1133,72,1126,-1131,1135,74,1125,-1135,1125,71,1128,-1135,1128,73,1136,-1135,1138,79,1139,-1138,1139,76,1131,-1138,1131,74,1135,-1138,1141,78,1403,-1141,1403,176,1132,-1141,1132,76,1142,-1141,1144,82,1145,-1144,1145,77,1142,-1144,1142,76,1139,-1144,1147,94,1148,-1147,1148,80,1149,-1147,1149,75,1136,-1147,1151,83,1152,-1151,1152,79,1138,-1151,1138,75,1149,-1151,1154,177,1404,-1154,1404,78,1141,-1154,1141,77,1155,-1154,1157,85,1158,-1157,1158,81,1155,-1157,1155,77,1145,-1157,1160,86,1161,-1160,1161,82,1144,-1160,1144,79,1152,-1160,1163,179,1406,-1163,1406,177,1154,-1163,1154,81,1164,-1163,1166,89,1167,-1166,1167,84,1164,-1166,1164,81,1158,-1166,1169,90,1170,-1169,1170,85,1157,-1169,1157,82,1161,-1169,1172,88,1407,-1172,1407,179,1163,-1172,1163,84,1173,-1172,1175,164,1176,-1175,1176,87,1173,-1175,1173,84,1167,-1175,1178,93,1179,-1178,1179,89,1166,-1178,1166,85,1170,-1178,2096,92,1181,-1181,1181,86,1160,-1181,1160,83,1182,-1181,2098,760,1184,-1184,1184,90,1169,-1184, +1169,86,1181,-1184,1151,80,1186,-1186,1186,759,1187,-1186,1187,91,1182,-1186,1189,762,1190,-1189,1190,93,1178,-1189,1178,90,1184,-1189,1192,95,1193,-1192,1193,759,1186,-1192,1186,80,1148,-1192,1195,96,1196,-1195,1196,94,1147,-1195,1147,73,1129,-1195,1198,97,2070,-1198,2070,95,1192,-1198,1192,94,1196,-1198,1200,98,1201,-1200,1201,96,1195,-1200,1195,70,1123,-1200,1203,745,1204,-1203,1204,97,1198,-1203,1198,96,1201,-1203,1206,99,1207,-1206,1207,98,1200,-1206,1200,68,1116,-1206,1209,100,2071,-1209,2071,745,1203,-1209,1203,98,1207,-1209,1211,101,1212,-1211,1212,99,1206,-1211,1206,66,1110,-1211,1214,747,2072,-1214,2072,100,1209,-1214,1209,99,1212,-1214,1216,102,1217,-1216,1217,101,1211,-1216,1211,64,1103,-1216,1219,103,2074,-1219,2074,747,1214,-1219,1214,101,1217,-1219,1221,104,1222,-1221,1222,102,1216,-1221,1216,62,1096,-1221,1224,105,1225,-1224,1225,103,1219,-1224,1219,102,1222,-1224,1227,106,1228,-1227,1228,104,1221,-1227,1221,60,1085,-1227,1230,750,1231,-1230,1231,105,1224,-1230,1224,104,1228,-1230,1233,107,1234,-1233,1234,106,1227,-1233,1227,57,1079,-1233,1236,108,2077,-1236,2077,750,1230,-1236,1230,106,1234,-1236,1238,110,1239,-1238,1239,107,1233,-1238,1233,54,1072,-1238,1239,110,1241,-1241,1241,109,2080,-1241,2080,108,1236,-1241,110,1238,1064,-112,528,258,49,-280,1572,1569,1567,-1041,2083,751,1242,-1244,1055,46,1245,-1245,1245,753,1246,-1245,1052,44,1248,-1248,1248,755,1249,-1248,1249,753,1245,-1248,1251,112,1252,-1251,1252,756,2089,-1251,2089,755,1248,-1251,116,114,1254,-1258,1254,114,1255,-1254,1255,757,1256,-1254,1256,756,1252,-1254,117,1259,2052,-730,1259,117,1260,-1259,1260,115,2091,-1259,2091,757,1255,-1259,118,720,1268,-1268,2130,508,798,-2094,1263,115,1260,-1262,2125,2040,2039,-2130,2126,2127,1261,-1263,1266,120,2123,-1266,119,2042,1272,-122,1270,771,1271,-1270,1271,120,1266,-1270,1266,118,1267,-1270,122,2044,1275,-124,1274,770,2119,-1274,2119,771,1270,-1274,1270,121,1272,-1274,127,126,1280,-1280,1277,125,1278,-1277,1278,770,1274,-1277,1274,123,1275,-1277,127,1282,1281,-127,131,723,1290,-1290,1284,129,2116, +-1284,2116,125,1277,-1284,1277,124,1285,-1284,1287,128,1285,-1287,1285,124,1280,-1287,1280,126,1288,-1287,436,735,1545,-1545,1292,134,1293,-1292,1293,131,1289,-1292,1289,132,2022,-1292,1295,130,1288,-1295,1288,126,1281,-1295,1281,131,1293,-1295,1297,136,1298,-1297,1298,135,1299,-1297,1299,134,1292,-1297,1301,233,1302,-1301,1302,138,1303,-1301,1303,135,1298,-1301,1299,135,1305,-1305,1305,137,1306,-1305,1306,130,1295,-1305,1303,138,1308,-1308,1308,142,1309,-1308,1309,137,1305,-1308,1311,139,1312,-1311,1312,128,1287,-1311,1287,130,1306,-1311,1314,769,1315,-1314,1315,129,1284,-1314,1284,128,1312,-1314,1317,141,1318,-1317,1318,769,1314,-1317,1314,139,1319,-1317,1309,142,1321,-1321,1321,140,1319,-1321,1319,139,1311,-1321,1323,144,2112,-1323,2112,141,1317,-1323,1317,140,1324,-1323,1326,145,1327,-1326,1327,143,1324,-1326,1324,140,1321,-1326,1329,146,1330,-1329,1330,145,1326,-1329,1326,142,1308,-1329,1332,147,1333,-1332,1333,146,1329,-1332,1329,138,1302,-1332,1335,149,1336,-1335,1336,143,1327,-1335,1327,145,1337,-1335,1339,151,1340,-1339,1340,148,1337,-1339,1337,145,1330,-1339,1342,150,1343,-1342,1343,144,1323,-1342,1323,143,1336,-1342,1345,182,1346,-1345,1346,151,1339,-1345,1339,146,1333,-1345,1348,153,2108,-1348,2108,150,1342,-1348,1342,149,1349,-1348,1351,154,1352,-1351,1352,152,1349,-1351,1349,149,1335,-1351,1354,157,1355,-1354,1355,766,2106,-1354,2106,153,1348,-1354,1357,155,1358,-1357,1358,154,1351,-1357,1351,148,1340,-1357,1360,181,1361,-1360,1361,155,1357,-1360,1357,151,1346,-1360,1363,158,1364,-1363,1364,155,1361,-1363,1361,181,1365,-1363,1367,159,1368,-1367,1368,157,1354,-1367,1354,152,1352,-1367,1370,160,1371,-1370,1371,764,2104,-1370,2104,766,1355,-1370,1373,159,1367,-1373,1367,154,1358,-1373,1358,155,1364,-1373,1375,162,1376,-1375,1376,158,1363,-1375,1363,156,1377,-1375,1379,163,1380,-1379,1380,160,1370,-1379,1370,157,1368,-1379,1382,165,1383,-1382,1383,161,2102,-1382,2102,764,1371,-1382,1385,163,1379,-1385,1379,159,1373,-1385,1373,158,1376,-1385,1172,87,1387,-1387,1387,162,1375,-1387,1375,180,1409,-1387,1176, +164,1389,-1389,1389,163,1385,-1389,1385,162,1387,-1389,1391,165,1392,-1391,1392,164,1175,-1391,1175,89,1179,-1391,1389,164,1392,-1394,1392,165,1382,-1394,1382,160,1380,-1394,2101,161,1383,-1395,1383,165,1391,-1395,1391,93,1190,-1395,166,1487,1068,-54,166,53,1075,-1396,59,283,1397,-1397,59,1088,1398,-284,168,1093,1399,-170,170,1100,1503,-287,171,1107,1400,-289,172,1401,1510,-291,173,1120,1512,-293,72,295,1514,-1403,176,232,1447,-1134,78,228,1446,-1404,177,226,1405,-1405,179,178,1440,-1407,88,221,1408,-1408,180,218,1435,-1410,156,215,1410,-1378,181,210,1429,-1366,182,208,1425,-1361,182,1345,1422,-209,147,1332,1419,-204,506,1415,192,-1415,195,797,198,-2119,197,1417,199,-2121,2115,193,796,-192,1417,2122,-200,200,768,2113,-1421,201,202,-262,201,261,194,-201,2111,767,206,-1422,188,2111,1421,-205,205,1423,1422,-204,200,1420,1418,-202,206,767,1413,-1427,1413,187,211,-1427,204,1421,1423,-206,207,1424,1425,-209,206,1426,1424,-208,209,211,1427,-1429,209,1428,1429,-211,187,2107,1427,-212,2107,765,212,-1428,2105,763,213,-1431,212,765,2105,-1431,2103,186,216,-1433,213,763,2103,-1433,214,212,1430,-1432,214,1431,1410,-216,1412,761,219,-1435,216,186,1412,-1435,213,1432,1433,-218,2100,185,222,-1438,219,761,2100,-1438,217,1433,1435,-219,216,1434,1436,-221,1411,184,224,-1440,222,185,1411,-1440,220,1436,1408,-222,219,1437,1438,-224,2097,183,229,-1443,184,2097,1442,-225,223,1438,1440,-179,222,1439,1441,-226,742,293,1443,-2096,229,183,2095,-1444,225,1441,1405,-227,224,1442,1444,-228,227,1444,1446,-229,268,754,2086,-839,229,1443,1445,-231,279,278,527,-529,230,1445,1447,-233,234,1450,789,-263,259,467,2010,-1450,1471,741,95,-2071,235,455,1452,-1452,236,453,1453,-792,452,1455,1454,-491,237,1962,787,-488,238,1956,785,-240,242,1769,1459,-486,243,1760,1460,-483,244,1462,1461,-482,245,1464,1463,-247,247,334,538,-249,250,249,1466,-1594,254,253,841,-1589,254,1587,794,-254,257,497,793,-1468,258,528,1469,-1469,271,2084,754,-269,273,270,802,-1478,274,272,800,-1479,270,273,1478,-801,276,275,1480,-530,832,635,529,-272,275,752,2082,-1481,799,1479,758,-510, +272,274,1479,-800,509,758,2093,-799,2115,190,189,-194,1246,2084,2082,-2084,529,1480,-272,277,276,527,-279,265,1476,1481,-1483,264,2078,1483,-1486,280,1482,1481,-1485,749,1475,1486,-1490,280,1484,1487,-167,281,1485,1483,-1489,748,1474,1490,-1493,281,1488,1395,-168,282,1489,1486,-1492,263,2075,1493,-1496,283,282,1491,-1398,284,1492,1490,-1495,1498,746,2073,-1497,284,1494,1398,-170,285,1495,1493,-1498,1501,744,1473,-1500,286,285,1497,-1400,287,1498,1496,-1501,743,1472,1502,-1506,288,287,1500,-1504,289,1501,1499,-1505,741,1471,1506,-1509,290,289,1504,-1401,291,1505,1502,-1508,292,291,1507,-1511,294,1508,1506,-1512,294,1511,1512,-176,295,231,1513,-1515,295,1447,1445,-232,300,299,1517,-1899,302,301,1519,-1519,302,1521,1520,-302,440,1523,1522,-304,304,1525,1524,-306,306,1944,1526,-308,447,310,1529,-1955,312,311,1531,-1531,450,313,1533,-1533,315,314,1534,-1973,317,316,1536,-1536,317,1538,1537,-317,320,433,1540,-1540,321,435,1542,-1542,321,1543,1902,-436,322,1550,1549,-324,1547,324,1548,-1547,1548,434,1907,-1547,1907,436,1544,-1547,327,326,1559,-1559,1552,340,1553,-1552,1553,431,1554,-1552,1554,434,1548,-1552,1556,329,1557,-1556,1557,324,1547,-1556,1547,323,1549,-1556,327,2056,1560,-327,461,460,1993,-1986,1562,40,1563,-1562,1563,328,1564,-1562,1564,326,1560,-1562,1566,329,1556,-1566,1556,325,1559,-1566,1559,326,1564,-1566,1571,1568,1567,-1570,1568,1571,1574,-1574,1568,328,1563,-1568,1570,331,1571,-1570,1578,1573,1574,-1595,1573,1578,329,-1567,2132,1594,1574,-1576,1571,331,1575,-1575,329,1578,1576,-1558,1039,1045,1044,-1039,1577,340,1552,-1577,1468,257,1580,-1580,1580,331,1570,-1580,1570,330,1581,-1580,1467,255,1583,-1583,1575,331,1580,-1583,1585,2131,2135,-1587,1583,255,1587,-1585,1465,333,1589,-1593,1589,250,1593,-1593,1045,1039,1047,-1057,1598,335,1596,-1598,1596,332,1586,-1598,337,1601,1599,-1601,332,1596,1594,-2133,1603,339,1604,-1603,338,1578,1594,-1596,1604,339,1606,-1606,1606,341,1607,-1606,1607,338,1595,-1606,1607,341,1609,-1609,1609,342,1610,-1609,1610,340,1577,-1609,1612,343,1892,-1612,1892,431,1553,-1612,1553,340, +1610,-1612,1614,345,1615,-1614,1615,341,1606,-1614,1606,339,1616,-1614,1618,385,1619,-1618,1619,344,1616,-1618,1616,339,1603,-1618,1621,346,1622,-1621,1622,342,1609,-1621,1609,341,1615,-1621,1624,347,1625,-1624,1625,343,1612,-1624,1612,342,1622,-1624,1627,350,1628,-1627,1628,348,1886,-1627,1886,347,1624,-1627,1630,350,1627,-1630,1627,346,1621,-1630,1621,345,1631,-1630,1633,352,1634,-1633,1634,349,1631,-1633,1631,345,1614,-1633,1636,353,1637,-1636,1637,351,1638,-1636,1638,348,1628,-1636,1640,355,1641,-1640,1641,424,1868,-1640,1868,351,1637,-1640,1643,353,1636,-1643,1636,350,1630,-1643,1630,349,1644,-1643,1646,358,1647,-1646,1647,354,1644,-1646,1644,349,1634,-1646,1649,357,1650,-1649,1650,421,1870,-1649,1870,424,1641,-1649,1652,355,1640,-1652,1640,353,1643,-1652,1643,354,1653,-1652,1655,361,1656,-1655,1656,357,1649,-1655,1649,355,1652,-1655,1658,359,1659,-1658,1659,417,1660,-1658,1660,421,1650,-1658,1662,372,1663,-1662,1663,356,1653,-1662,1653,354,1647,-1662,1665,362,1666,-1665,1666,360,1830,-1665,1830,417,1659,-1665,1668,364,1669,-1668,1669,359,1658,-1668,1658,357,1656,-1668,1671,363,1672,-1671,1672,360,1666,-1671,1669,364,1674,-1674,1674,362,1665,-1674,1663,372,1676,-1676,1676,365,1677,-1676,1677,361,1655,-1676,1679,368,1680,-1679,1680,364,1668,-1679,1668,361,1677,-1679,1682,367,1683,-1682,1683,363,1671,-1682,1671,362,1684,-1682,1686,366,1684,-1686,1684,362,1674,-1686,1674,364,1680,-1686,1688,370,1689,-1688,1689,369,1818,-1688,1818,367,1682,-1688,1691,371,1692,-1691,1692,370,1688,-1691,1688,366,1686,-1691,1694,373,1695,-1694,1695,371,1691,-1694,1691,368,1679,-1694,1697,377,1698,-1697,1698,373,1694,-1697,1694,365,1676,-1697,1692,371,1700,-1700,1700,374,1701,-1700,1703,376,1704,-1703,1704,374,1700,-1703,1700,371,1695,-1703,1706,369,1689,-1706,1689,370,1701,-1706,1701,374,1707,-1706,1709,379,1710,-1709,1710,376,1703,-1709,1703,373,1698,-1709,1704,376,1712,-1712,1712,378,1713,-1712,1715,402,1716,-1715,1716,375,1707,-1715,1707,374,1713,-1715,1718,381,1719,-1718,1719,378,1712,-1718,1712,376,1710,-1718,1662,358,1721,-1721, +1721,380,1722,-1721,1722,377,1697,-1721,1724,383,1725,-1724,1725,379,1709,-1724,1709,377,1722,-1724,1646,352,1727,-1727,1727,382,1728,-1727,1728,380,1721,-1727,1730,398,1731,-1730,1731,381,1718,-1730,1718,379,1725,-1730,1733,383,1724,-1733,1724,380,1728,-1733,1728,382,1734,-1733,1633,344,1619,-1736,1619,385,1736,-1736,1736,382,1727,-1736,1738,384,1734,-1738,1734,382,1736,-1738,1736,385,1739,-1738,1600,336,1741,-1741,1741,386,1739,-1741,1739,385,1618,-1741,1743,390,1744,-1743,1744,384,1738,-1743,1738,386,1745,-1743,1747,387,1745,-1747,1745,386,1741,-1747,1741,336,1748,-1747,1464,245,1750,-1750,1750,388,1748,-1750,1748,336,1591,-1750,1752,389,1753,-1752,1753,388,1750,-1752,1750,245,1462,-1752,1755,391,1756,-1755,1756,387,1747,-1755,1747,388,1753,-1755,1758,392,1759,-1758,1759,389,1752,-1758,1752,244,1760,-1758,1762,398,1730,-1762,1730,383,1733,-1762,1733,384,1744,-1762,1764,397,1765,-1764,1765,390,1743,-1764,1743,387,1756,-1764,1767,394,1768,-1767,1768,392,1758,-1767,1758,243,1769,-1767,1759,392,1771,-1771,1771,393,1772,-1771,1772,391,1755,-1771,1774,393,1771,-1774,1771,392,1768,-1774,1768,394,1775,-1774,1777,394,1767,-1777,1767,242,1458,-1777,1779,396,1780,-1779,1780,393,1774,-1779,1782,397,1764,-1782,1764,391,1772,-1782,1772,393,1780,-1782,1784,398,1762,-1784,1762,390,1765,-1784,1765,397,1785,-1784,1782,396,1787,-1787,1787,400,1788,-1787,1788,399,1785,-1787,1790,381,1731,-1790,1731,398,1784,-1790,1784,399,1791,-1790,1793,403,1794,-1793,1794,401,1791,-1793,1791,399,1788,-1793,1715,378,1719,-1796,1719,381,1790,-1796,1790,401,1796,-1796,1798,404,1799,-1798,1799,402,1796,-1798,1796,401,1794,-1798,1801,405,1802,-1801,1802,375,1716,-1801,1716,402,1799,-1801,1804,407,1805,-1804,1805,369,1706,-1804,1706,375,1802,-1804,1807,475,1808,-1807,1808,406,1809,-1807,1809,404,1798,-1807,1809,406,1811,-1811,1811,408,1812,-1811,1812,405,1801,-1811,1814,410,1815,-1814,1815,407,1804,-1814,1804,405,1812,-1814,1817,367,1818,-1817,1818,369,1805,-1817,1805,407,1819,-1817,1821,411,1822,-1821,1822,363,1683,-1821,1683,367,1817,-1821,1824,412, +1825,-1824,1825,409,1819,-1824,1819,407,1815,-1824,1822,411,1827,-1827,1827,360,1672,-1827,1829,417,1830,-1829,1830,360,1827,-1829,1827,411,1831,-1829,1825,412,1833,-1833,1833,411,1821,-1833,1835,414,1836,-1835,1836,410,1814,-1835,1814,408,1837,-1835,1839,476,1840,-1839,1840,413,1837,-1839,1837,408,1811,-1839,1842,415,1843,-1842,1843,412,1824,-1842,1824,410,1836,-1842,1845,416,1831,-1845,1831,411,1833,-1845,1833,412,1843,-1845,1847,419,1848,-1847,1848,415,1842,-1847,1842,414,1849,-1847,1840,476,1851,-1851,1851,418,1849,-1851,1849,414,1835,-1851,1853,420,1854,-1853,1854,416,1845,-1853,1845,415,1848,-1853,1856,421,1660,-1856,1660,417,1829,-1856,1829,416,1854,-1856,1858,423,1859,-1858,1859,420,1853,-1858,1853,419,1860,-1858,1862,444,1863,-1862,1863,422,1860,-1862,1860,419,1847,-1862,1865,423,1866,-1865,1866,425,1867,-1865,1867,351,1868,-1865,1859,423,1865,-1870,1865,424,1870,-1870,1870,421,1856,-1870,1872,425,1866,-1872,1866,423,1858,-1872,1858,422,1873,-1872,1875,427,1876,-1875,1876,425,1872,-1875,1872,426,1877,-1875,1879,348,1638,-1879,1638,351,1867,-1879,1867,425,1876,-1879,1881,429,1882,-1881,1882,427,1875,-1881,1875,428,1883,-1881,1885,347,1886,-1885,1886,348,1879,-1885,1879,427,1882,-1885,1888,343,1625,-1888,1625,347,1885,-1888,1885,429,1889,-1888,1540,433,1891,-1891,1891,431,1892,-1891,1892,343,1888,-1891,1881,430,1894,-1894,1894,432,1515,-1894,1515,297,1889,-1894,1896,437,1897,-1896,1897,300,1898,-1896,1898,432,1894,-1896,1542,435,1900,-1900,1900,434,1554,-1900,1554,431,1891,-1900,1903,434,1900,-1902,1905,458,1906,-1905,1906,436,1907,-1905,1907,434,1903,-1905,1883,428,1909,-1909,1909,438,1910,-1909,1910,437,1896,-1909,1912,441,1913,-1912,1913,438,1909,-1912,1909,428,1877,-1912,1915,439,1916,-1915,1916,302,1518,-1915,1518,300,1897,-1915,1918,442,1919,-1918,1919,439,1915,-1918,1915,437,1910,-1918,1921,439,1919,-1921,1919,442,1922,-1921,1922,445,1923,-1921,1921,443,1925,-1925,1925,440,1521,-1925,1521,302,1916,-1925,1863,444,1927,-1927,1927,441,1912,-1927,1912,426,1873,-1927,1929,472,1930,-1929,1930,442,1918,-1929, +1918,438,1913,-1929,1932,395,1933,-1932,1933,304,1523,-1932,1523,440,1925,-1932,1923,445,1935,-1935,1935,396,1779,-1935,1779,395,1932,-1935,1775,394,1937,-1937,1937,306,1525,-1937,1525,304,1933,-1937,1939,474,1940,-1939,1940,445,1922,-1939,1922,442,1930,-1939,1940,474,1942,-1942,1942,400,1787,-1942,1787,396,1935,-1942,1944,306,1937,-1944,1937,394,1777,-1944,240,1946,1456,-242,240,1950,1945,-1947,1946,1945,1776,-1459,1952,448,1953,-1952,1953,447,1954,-1952,1954,308,1949,-1952,1956,238,1957,-1956,1957,448,1952,-1956,1952,446,1950,-1956,1959,449,1960,-1959,1960,312,1530,-1959,1530,447,1953,-1959,1962,237,1963,-1962,1963,449,1959,-1962,1959,448,1957,-1962,1965,451,1966,-1965,1966,450,1532,-1965,1532,312,1960,-1965,1963,237,1455,-1968,1455,452,1968,-1968,1968,451,1965,-1968,1970,454,1971,-1970,1971,315,1972,-1970,1972,450,1966,-1970,1974,454,1970,-1974,1970,451,1968,-1974,1968,452,1453,-1974,1976,457,1977,-1976,1977,454,1974,-1976,1974,453,1452,-1976,1979,317,1535,-1979,1535,315,1971,-1979,1971,454,1980,-1979,2134,318,1538,-1982,1538,317,1979,-1982,1984,461,1985,-1984,1985,458,1905,-1984,2133,2134,1981,-1983,1987,456,1980,-1987,1980,454,1977,-1987,1977,457,1988,-1987,1990,466,1991,-1990,1991,457,1976,-1990,1976,455,1450,-1990,132,725,2062,-2015,462,739,1995,-1995,465,463,1999,-1999,1987,464,1997,-1997,1997,462,1994,-1997,1994,461,1984,-1997,469,736,2004,-2004,2001,468,2002,-2001,2002,465,1998,-2001,1998,462,1997,-2001,36,1560,2056,-39,2006,468,2001,-2006,2001,464,1988,-2006,1988,457,1991,-2006,2008,470,2009,-2008,2009,466,1990,-2008,1990,234,2010,-2008,2012,471,2013,-2012,2013,469,2003,-2012,2003,465,2002,-2012,1264,2126,2129,-2040,1301,136,2016,-2016,2016,470,2008,-2016,2008,467,2017,-2016,2019,471,2012,-2019,2012,468,2006,-2019,2006,466,2009,-2019,2021,133,2022,-2021,2022,132,2014,-2021,2014,469,2013,-2021,1297,133,2021,-2024,2021,471,2019,-2024,2019,470,2016,-2024,2025,473,2026,-2025,2026,472,1929,-2025,1929,441,1927,-2025,1939,472,2026,-2028,2026,473,2028,-2028,2028,475,2029,-2028,1851,476,2031,-2031,2031,473,2025, +-2031,2025,444,1862,-2031,2029,475,1807,-2033,1807,403,1793,-2033,1793,400,1942,-2033,1839,406,1808,-2034,1808,475,2028,-2034,2028,473,2031,-2034,6,725,1290,-1014,11,2043,2042,-120,12,2045,2044,-123,722,127,1279,-1012,724,723,1282,-1013,18,1022,2048,-38,38,726,2047,-2047,21,45,1049,-2050,22,113,2050,-1025,23,116,1257,-1026,730,729,2052,-2052,730,2054,2053,-730,38,2056,2055,-727,731,327,1558,-2058,732,1550,1017,-734,735,734,1020,-1546,737,736,2062,-2062,738,463,2004,-2064,740,739,1999,-1006,740,2066,1995,-740,8,2067,1993,-461,9,2068,1992,-460,735,1992,2068,-735,743,1471,2070,-98,745,744,1472,-1205,746,1473,2071,-101,747,263,2073,-2073,748,2075,2074,-104,748,103,1225,-1475,750,264,1475,-1232,108,265,2078,-2078,108,2080,1476,-266,751,2083,2082,-753,753,1249,2086,-755,755,2089,1477,-268,756,1256,1478,-274,757,2091,1479,-275,759,742,2095,-1188,183,2097,2096,-92,184,1411,2098,-93,760,185,2100,-1190,761,1412,2101,-763,186,2103,2102,-162,763,2105,2104,-765,765,2107,2106,-767,187,1413,2108,-154,767,2111,1343,-151,188,2113,2112,-145,769,1318,2114,-191,191,129,1315,-2116,192,125,2116,-1415,192,2117,1278,-126,771,2119,2118,-199,199,120,1271,-2121,1470,742,759,-1194,801,630,646,-804,1516,298,297,-1516,1487,279,49,-1069,7,737,2061,-1004,2034,2081,697,-845,787,239,603,-787,494,668,853,-985,984,853,551,-496,495,551,943,-987,986,943,-493,669,941,236,-792,1264,1265,2127,-2127,2054,2125,2129,-2054,2054,1026,2124,-2126,2123,2122,2130,-2129,2123,2128,2127,-1266,2122,1417,508,-2131,545,1451,236,-942,775,692,999,-2066,932,505,817,-505,937,703,501,-820,502,937,819,-640,934,502,639,-819,503,818,505,-933,503,934,-819,778,773,596,-690,478,597,773,-779,772,962,597,-479,642,611,962,772,477,-853,815,964,611,-643,516,626,964,-816,857,966,626,-517,643,610,966,-858,814,970,610,-644,644,609,970,-815,813,863,609,-645,484,608,863,-814,811,862,608,-485,976,947,666,-607,627,847,665,607,862,-812,607,665,851,-881,880,851,548,-559,558,548,947,-977,810,543,847,-628,491,848,543,-811,808,541,848,-492,513,952,541,-809,806,539,952,-514,628,954,539,-807,878,540, +954,-629,629,956,540,-879,804,675,956,-630,800,804,630,-271,272,958,675,804,-801,799,674,958,-273,509,961,674,-800,798,560,961,-510,508,960,560,-799,1417,561,960,-509,197,882,561,-1418,797,549,882,-198,195,955,549,-798,260,672,881,-194,1416,550,955,-196,507,953,550,-1417,1415,673,953,-508,506,951,673,-1416,796,559,951,-507,193,559,-797,193,881,-560,202,546,945,-262,261,945,-672,261,671,544,-261,260,948,-673,260,544,-949,789,235,1451,545,-850,262,789,849,-671,1449,262,670,-851,259,1449,850,-548,1448,259,547,-943,202,1448,942,-547,604,487,787,-787,489,791,-491,985,487,-605,488,1454,487,-986,790,1454,-489,490,1454,790,-606,490,605,-789,489,490,-789,858,791,-490,493,669,791,-859,702,940,820,-639,879,702,638,-796,703,879,795,-502,794,256,-499,794,498,500,-940,794,939,-500,794,499,-939,253,794,938,-535,532,641,-928,852,477,927,-642,918,538,-698,1466,699,-844,538,1466,843,-699,537,249,-927,249,251,700,-927,251,536,-701,536,251,-843,701,931,-842,701,841,253,-934,533,253,-937,777,479,917,-601,480,481,775,479,-778,943,669,493,-989,2118,196,1416,-196,2120,198,797,-198,191,796,506,-1415,1,2,-1002,3,1002,-2,1001,3,-2,1,35,-1009,2124,1,-1009,1026,24,-2,4,1,-1008,1007,1,-32,30,1019,-2,194,261,-261,193,189,-261,527,521,-824,336,829,1590,-1592,829,1465,1592,-1591,1588,252,2131,-1586,1060,47,48,-1062,1589,2131,252,-251,1587,254,-1585,254,1588,1585,-1585,1584,1585,1586,-333,37,39,1033,-2047,1572,1040,1038,-1045,1905,2133,1982,-1984,1904,1903,2133,-1906,2134,2133,1903,-1902,1902,318,2134,-1902,1582,1583,2132,-1576,1583,1584,332,-2133,333,2135,2131,-1590,2135,1598,1597,-1587,1596,335,1595,-1595,867,515,-519,515,866,-519,866,663,-519,663,2037,-519,2037,659,-519,659,2035,-519,2035,517,-519,517,2036,-519,2036,658,-519,658,816,-519,2038,664,-519,664,877,-519,877,657,-519,657,2076,-519,2076,656,-519,656,2099,-519,2099,2092,-519,2092,2094,-519,2094,655,-519,655,876,-519,876,654,-519,654,874,-519,874,653,-519,653,875,-519,875,520,-519,520,873,-519,873,522,-519,522,824,-519,824,652,-519,652,872,-519,872,524,-519,524,826,-519,826,526,-519,526, +2060,-519,2060,651,-519,651,831,-519,831,530,-519,530,834,-519,834,650,-519,650,835,-519,835,649,-519,649,871,-519,871,648,-519,648,870,-519,870,647,-519,647,2064,-519,2064,645,-519,645,803,-519,803,646,-519,646,805,-519,805,511,-519,511,869,-519,869,512,-519,512,807,-519,807,662,-519,662,809,-519,809,661,-519,661,868,-519,868,660,-519,660,812,-519,812,514,-519,514,867,-519,708,995,-936,995,713,-936,713,924,-936,924,590,-936,590,921,-936,921,552,-936,552,2121,-936,2121,554,-936,554,855,-936,855,553,-936,553,996,-936,996,714,-936,714,916,-936,916,715,-936,715,2065,-936,2065,999,-936,999,2085,-936,2085,719,-936,719,2087,-936,2087,588,-936,588,998,-936,998,589,-936,589,2088,-936,2088,718,-936,718,997,-936,997,717,-936,717,2079,-936,2079,2081,-936,2081,2034,-936,2034,555,-936,555,920,-936,920,716,-936,716,922,-936,922,712,-936,712,925,-936,925,711,-936,711,710,-936,710,929,-936,929,709,-936,709,930,-936,930,706,-936,706,993,-936,993,705,-936,705,992,-936,992,592,-936,592,989,-936,989,593,-936,593,990,-936,990,595,-936,595,2109,-936,2109,594,-936,594,2110,-936,2110,991,-936,991,2069,-936,2069,591,-936,707,845,-936,845,994,-936,994,846,-936,846,542,-936,542,928,-936,928,708,-936,906,615,-581,615,973,-581,973,581,-581,581,975,-581,904,614,-581,614,979,-581,979,578,-581,578,981,-581,981,576,-581,576,983,-581,983,613,-581,613,901,-581,901,575,-581,575,900,-581,900,612,-581,612,902,-581,902,577,-581,577,903,-581,903,579,-581,579,987,-581,987,582,-581,582,905,-581,905,616,-581,616,982,-581,982,618,-581,618,907,-581,907,583,-581,583,978,-581,978,908,-581,908,619,-581,619,974,-581,974,620,-581,620,971,-581,971,584,-581,584,909,-581,909,621,-581,621,969,-581,969,622,-581,622,910,-581,910,585,-581,585,912,-581,912,623,-581,623,913,-581,913,624,-581,624,2058,-581,2058,587,-581,587,914,-581,914,625,-581,625,967,-581,967,586,-581,586,911,-581,911,617,-581,897,686,-565,686,899,-565,899,687,-565,687,898,-565,898,685,-565,685,896,-565,896,574,-565,574,946,-565,946,683,-565,683,894,-565,894,682,-565,682,892,-565,892,572,-565,572,893,-565, +893,571,-565,571,890,-565,890,570,-565,570,891,-565,891,681,-565,681,889,-565,889,567,-565,567,2090,-565,2090,568,-565,568,2059,-565,2059,565,-565,565,888,-565,888,566,-565,566,959,-565,959,680,-565,680,887,-565,887,679,-565,679,886,-565,886,688,-565,688,957,-565,885,678,-565,678,883,-565,883,677,-565,677,884,-565,884,563,-565,563,950,-565,950,562,-565,562,949,-565,949,676,-565,676,569,-565,569,944,-565,944,573,-565,573,895,-565,895,684,-565,2137,2152,2184,-2156,2152,2140,2153,-2185,2184,2153,2136,-2155,2155,2184,2154,-2139,2139,2156,2185,-2159,2156,2141,2157,-2186,2185,2157,2137,-2156,2158,2185,2155,-2139,2140,2159,2186,-2154,2159,2143,2160,-2187,2186,2160,2213,-2225,2153,2186,2224,-2137,2142,2161,2187,-2164,2161,2146,2162,-2188,2187,2162,2141,-2157,2163,2187,2156,-2140,2143,2164,2188,-2161,2164,2145,2165,-2189,2188,2165,2210,-2167,2160,2188,2166,-2214,2144,2167,2189,-2169,2167,2143,2159,-2190,2189,2159,2140,-2153,2168,2189,2152,-2138,2141,2162,2190,-2158,2162,2146,2169,-2191,2190,2169,2144,-2169,2157,2190,2168,-2138,2144,2170,2191,-2168,2170,2148,2171,-2192,2191,2171,2145,-2165,2167,2191,2164,-2144,2145,2171,2192,-2166,2171,2148,2172,-2193,2192,2172,2208,-2221,2165,2192,2220,-2211,2147,2173,2193,-2176,2173,2149,2174,-2194,2193,2174,2146,-2162,2175,2193,2161,-2143,2148,2176,2194,-2173,2176,2150,2177,-2195,2194,2177,2203,-2218,2172,2194,2217,-2209,2200,2178,2195,-2181,2178,2151,2179,-2196,2195,2179,2149,-2174,2180,2195,2173,-2148,2144,2181,2196,-2171,2181,2151,2182,-2197,2196,2182,2150,-2177,2170,2196,2176,-2149,2149,2179,2197,-2175,2179,2151,2181,-2198,2197,2181,2144,-2170,2174,2197,2169,-2147,2151,2178,2198,-2183,2178,2200,2183,-2199,2198,2183,2203,-2178,2182,2198,2177,-2151,2201,2200,2180,-2227,2142,2202,2214,-2176,2175,2214,2199,-2148,2215,2183,2200,-2202,2205,2203,2183,-2216,2163,2216,2202,-2143,2139,2204,2216,-2164,2206,2208,2217,-2219,2218,2217,2203,-2206,2158,2219,2204,-2140,2138,2207,2219,-2159,2209,2210,2220,-2222,2221,2220,2208,-2207,2136,2211,2222,-2155,2154,2222,2207,-2139,2212,2213,2166,-2224,2223,2166, +2210,-2210,2224,2225,2211,-2137,2212,2225,2224,-2214,2257,2240,2274,-2276,2237,2232,2252,-2235,2237,2234,2253,-2237,2237,2236,2254,-2236,2237,2235,2255,-2234,2237,2230,2256,-2233,2229,2237,2231,-2244,2237,2228,2242,-2231,2241,2246,2272,-2232,2237,2227,2244,-2229,2237,2229,2245,-2228,2233,2241,2231,-2238,2233,2238,2246,-2242,2255,2247,2238,-2234,2235,2271,2247,-2256,2254,2248,2271,-2236,2236,2239,2248,-2255,2270,2285,2253,-2235,2269,2249,2252,-2233,2285,2239,2236,-2254,2268,2250,2256,-2231,2249,2270,2234,-2253,2251,2242,2228,-2241,2250,2269,2232,-2257,2251,2268,2230,-2243,2267,2274,2244,-2228,2245,2276,2267,-2228,2274,2240,2228,-2245,2229,2273,2276,-2246,2243,2279,2273,-2230,2231,2272,2279,-2244,2275,2274,2267,-2259,2276,2277,2258,-2268,2273,2266,2277,-2277,2259,2268,2251,-2279,2278,2251,2240,-2258,2279,2280,2266,-2274,2272,2265,2280,-2280,2260,2269,2250,-2282,2281,2250,2268,-2260,2246,2282,2265,-2273,2238,2264,2282,-2247,2261,2270,2249,-2284,2283,2249,2269,-2261,2247,2284,2264,-2239,2271,2263,2284,-2248,2262,2239,2285,-2287,2286,2285,2270,-2262,2248,2287,2263,-2272,2262,2287,2248,-2240,2719,2720,2705,-2644,2288,2312,2354,-2315,2387,2313,2354,-2313,2289,2314,2354,-2314,2388,2315,2355,-2318,2315,2293,2316,-2356,2355,2316,2289,-2314,2317,2355,2313,-2388,2290,2318,2356,-2320,2318,2291,2465,-2357,2356,2465,2288,-2315,2319,2356,2314,-2290,2292,2320,2357,-2322,2291,2318,2357,-2321,2290,2321,2357,-2319,2293,2322,2358,-2317,2322,2309,2323,-2359,2358,2323,2290,-2320,2316,2358,2319,-2290,2388,2495,2359,-2316,2294,2324,2359,-2496,2293,2315,2359,-2325,2295,2325,2360,-2500,2325,2300,2326,-2361,2360,2326,2293,-2325,2499,2360,2324,-2295,2296,2327,2361,-2329,2327,2422,2457,-2362,2361,2457,2292,-2322,2328,2361,2321,-2291,2297,2329,2362,-2331,2422,2327,2362,-2330,2296,2330,2362,-2328,2298,2331,2363,-2333,2331,2416,2446,-2364,2363,2446,2297,-2331,2332,2363,2330,-2297,2298,2333,2364,-2332,2333,2303,2334,-2365,2364,2334,2299,-2442,2331,2364,2441,-2417,2300,2335,2365,-2327,2335,2310,2336,-2366,2365,2336,2309,-2323,2326,2365,2322,-2294,2301, +2337,2366,-2506,2337,2302,2338,-2367,2366,2338,2300,-2326,2505,2366,2325,-2296,2411,2437,2367,-2340,2299,2334,2367,-2438,2303,2339,2367,-2335,2303,2340,2368,-2340,2340,2307,2341,-2369,2368,2341,2304,-2343,2339,2368,2342,-2412,2302,2343,2369,-2339,2343,2306,2344,-2370,2369,2344,2305,-2346,2338,2369,2345,-2301,2305,2346,2370,-2346,2346,2311,2347,-2371,2370,2347,2310,-2336,2345,2370,2335,-2301,2399,2348,2371,-2518,2348,2311,2346,-2372,2371,2346,2305,-2345,2517,2371,2344,-2307,2308,2349,2372,-2351,2304,2341,2372,-2350,2307,2350,2372,-2342,2309,2351,2373,-2324,2351,2298,2332,-2374,2373,2332,2296,-2329,2323,2373,2328,-2291,2310,2352,2374,-2337,2352,2303,2333,-2375,2374,2333,2298,-2352,2336,2374,2351,-2310,2311,2353,2375,-2348,2353,2307,2340,-2376,2375,2340,2303,-2353,2347,2375,2352,-2311,2399,2520,2376,-2349,2520,2308,2350,-2377,2376,2350,2307,-2354,2348,2376,2353,-2312,2589,2477,2536,-2633,2378,2476,2536,-2478,2377,2632,2536,-2477,2379,2478,2537,-2481,2478,2380,2479,-2538,2537,2479,2378,-2478,2480,2537,2477,-2590,2379,2611,2538,-2479,2611,2587,2481,-2539,2538,2481,2381,-2483,2478,2538,2482,-2381,2380,2483,2539,-2480,2483,2391,2484,-2540,2539,2484,2382,-2486,2479,2539,2485,-2379,2587,2609,2540,-2482,2609,2588,2486,-2541,2540,2486,2383,-2488,2481,2540,2487,-2382,2384,2488,2541,-2490,2488,2385,2473,-2542,2541,2473,2378,-2486,2489,2541,2485,-2383,2386,2490,2542,-2493,2490,2429,2491,-2543,2542,2491,2385,-2489,2492,2542,2488,-2385,2490,2312,2288,-2430,2493,2317,2387,-2387,2389,2388,2317,-2494,2390,2294,2495,-2497,2384,2489,2543,-2493,2489,2382,2494,-2544,2543,2494,2389,-2494,2492,2543,2493,-2387,2496,2495,2388,-2390,2498,2499,2294,-2391,2382,2484,2544,-2495,2484,2391,2497,-2545,2544,2497,2390,-2497,2494,2544,2496,-2390,2392,2295,2499,-2499,2394,2301,2505,-2507,2391,2500,2545,-2498,2500,2393,2501,-2546,2545,2501,2392,-2499,2497,2545,2498,-2391,2391,2483,2546,-2501,2380,2502,2546,-2484,2393,2500,2546,-2503,2381,2503,2547,-2483,2503,2395,2504,-2548,2547,2504,2393,-2503,2482,2547,2502,-2381,2506,2505,2295,-2393,2508,2337,2301,-2395, +2393,2504,2548,-2502,2504,2395,2507,-2549,2548,2507,2394,-2507,2501,2548,2506,-2393,2397,2302,2337,-2509,2398,2306,2343,-2515,2395,2503,2549,-2511,2381,2509,2549,-2504,2396,2510,2549,-2510,2395,2510,2550,-2508,2510,2396,2511,-2551,2550,2511,2397,-2509,2507,2550,2508,-2395,2383,2512,2551,-2488,2512,2400,2513,-2552,2551,2513,2396,-2510,2487,2551,2509,-2382,2514,2343,2302,-2398,2516,2517,2306,-2399,2396,2513,2552,-2512,2513,2400,2515,-2553,2552,2515,2398,-2515,2511,2552,2514,-2398,2401,2399,2517,-2517,2402,2308,2520,-2522,2400,2518,2553,-2516,2518,2403,2519,-2554,2553,2519,2401,-2517,2515,2553,2516,-2399,2521,2520,2399,-2402,2526,2349,2308,-2403,2383,2522,2554,-2513,2522,2404,2523,-2555,2554,2523,2403,-2519,2512,2554,2518,-2401,2403,2524,2555,-2520,2524,2407,2525,-2556,2555,2525,2402,-2522,2519,2555,2521,-2402,2408,2304,2349,-2527,2410,2411,2342,-2434,2588,2527,2556,-2487,2527,2405,2528,-2557,2556,2528,2404,-2523,2486,2556,2522,-2384,2406,2529,2557,-2532,2529,2412,2530,-2558,2557,2530,2404,-2529,2531,2557,2528,-2406,2403,2523,2558,-2525,2404,2532,2558,-2524,2407,2524,2558,-2533,2407,2533,2559,-2526,2533,2409,2534,-2560,2559,2534,2408,-2527,2525,2559,2526,-2403,2404,2530,2560,-2533,2530,2412,2535,-2561,2560,2535,2409,-2534,2532,2560,2533,-2408,2433,2342,2304,-2409,2436,2437,2411,-2411,2409,2434,2561,-2535,2434,2413,2435,-2562,2561,2435,2410,-2434,2534,2561,2433,-2409,2414,2299,2437,-2437,2415,2416,2441,-2443,2412,2438,2562,-2536,2438,2417,2439,-2563,2562,2439,2413,-2435,2535,2562,2434,-2410,2413,2439,2563,-2436,2439,2417,2440,-2564,2563,2440,2414,-2437,2435,2563,2436,-2411,2442,2441,2299,-2415,2445,2446,2416,-2416,2417,2443,2564,-2441,2443,2419,2444,-2565,2564,2444,2415,-2443,2440,2564,2442,-2415,2420,2297,2446,-2446,2421,2422,2329,-2453,2418,2447,2565,-2449,2447,2419,2443,-2566,2565,2443,2417,-2439,2448,2565,2438,-2413,2406,2622,2566,-2530,2622,2595,2449,-2567,2566,2449,2418,-2449,2529,2566,2448,-2413,2419,2450,2567,-2445,2450,2423,2451,-2568,2567,2451,2420,-2446,2444,2567,2445,-2416,2452,2329,2297,-2421,2456,2457,2422, +-2422,2419,2447,2568,-2451,2418,2453,2568,-2448,2423,2450,2568,-2454,2423,2454,2569,-2452,2454,2426,2455,-2570,2569,2455,2421,-2453,2451,2569,2452,-2421,2427,2292,2457,-2457,2428,2291,2320,-2464,2424,2458,2570,-2460,2458,2426,2454,-2571,2570,2454,2423,-2454,2459,2570,2453,-2419,2595,2626,2571,-2450,2626,2425,2460,-2572,2571,2460,2424,-2460,2449,2571,2459,-2419,2426,2461,2572,-2456,2461,2430,2462,-2573,2572,2462,2427,-2457,2455,2572,2456,-2422,2463,2320,2292,-2428,2464,2465,2291,-2429,2429,2288,2465,-2465,2430,2466,2573,-2463,2466,2431,2467,-2574,2573,2467,2428,-2464,2462,2573,2463,-2428,2424,2468,2574,-2459,2468,2432,2469,-2575,2574,2469,2430,-2462,2458,2574,2461,-2427,2431,2470,2575,-2468,2470,2385,2491,-2576,2575,2491,2429,-2465,2467,2575,2464,-2429,2430,2469,2576,-2467,2432,2471,2576,-2470,2431,2466,2576,-2472,2432,2472,2577,-2472,2472,2378,2473,-2578,2577,2473,2385,-2471,2471,2577,2470,-2432,2425,2474,2578,-2461,2474,2377,2475,-2579,2578,2475,2432,-2469,2460,2578,2468,-2425,2432,2475,2579,-2473,2377,2476,2579,-2476,2378,2472,2579,-2477,2603,2602,2581,-2581,2604,2605,2580,-2582,2586,2583,2605,-2605,2585,2590,2606,-2608,2607,2606,2584,-2583,2591,2592,2616,-2618,2584,2608,2634,-2603,2608,2588,2609,-2635,2634,2609,2587,-2611,2602,2634,2610,-2582,2587,2611,2635,-2611,2611,2379,2612,-2636,2635,2612,2586,-2605,2610,2635,2604,-2582,2589,2613,2636,-2481,2613,2601,2614,-2637,2636,2614,2586,-2613,2480,2636,2612,-2380,2590,2615,2637,-2607,2615,2405,2527,-2638,2637,2527,2588,-2609,2606,2637,2608,-2585,2617,2616,2590,-2586,2593,2594,2619,-2621,2592,2618,2638,-2617,2618,2406,2531,-2639,2638,2531,2405,-2616,2616,2638,2615,-2591,2620,2619,2592,-2592,2596,2597,2623,-2625,2594,2621,2639,-2620,2621,2595,2622,-2640,2639,2622,2406,-2619,2619,2639,2618,-2593,2624,2623,2594,-2594,2598,2599,2627,-2629,2597,2625,2640,-2624,2625,2425,2626,-2641,2640,2626,2595,-2622,2623,2640,2621,-2595,2628,2627,2597,-2597,2600,2601,2630,-2632,2599,2629,2641,-2628,2629,2377,2474,-2642,2641,2474,2425,-2626,2627,2641,2625,-2598,2631,2630,2599,-2599,2586,2614, +2633,-2584,2601,2613,2642,-2631,2613,2589,2632,-2643,2642,2632,2377,-2630,2630,2642,2629,-2600,2633,2614,2601,-2601,2386,2387,2312,-2491,2644,2682,2690,-2685,2682,2647,2683,-2691,2690,2683,2643,-2722,2684,2690,2721,-2646,2646,2685,2691,-2688,2685,2649,2686,-2692,2691,2686,2644,-2685,2687,2691,2684,-2646,2647,2688,2692,-2684,2688,2650,2689,-2693,2692,2689,2648,-2720,2683,2692,2719,-2644,2714,2660,2693,-2728,2660,2653,2661,-2694,2693,2661,2649,-2686,2727,2693,2685,-2647,2650,2662,2694,-2690,2662,2652,2663,-2695,2694,2663,2709,-2665,2689,2694,2664,-2649,2644,2686,2695,-2683,2686,2649,2665,-2696,2695,2665,2651,-2667,2682,2695,2666,-2648,2651,2667,2696,-2667,2667,2652,2662,-2697,2696,2662,2650,-2689,2666,2696,2688,-2648,2652,2668,2697,-2664,2668,2655,2669,-2698,2697,2669,2711,-2727,2663,2697,2726,-2710,2653,2670,2698,-2662,2670,2656,2671,-2699,2698,2671,2651,-2666,2661,2698,2665,-2650,2654,2672,2699,-2674,2672,2656,2670,-2700,2699,2670,2653,-2661,2673,2699,2660,-2715,2651,2674,2700,-2668,2674,2658,2675,-2701,2700,2675,2655,-2669,2667,2700,2668,-2653,2655,2675,2701,-2670,2675,2658,2676,-2702,2701,2676,2715,-2678,2669,2701,2677,-2712,2657,2678,2702,-2681,2678,2659,2679,-2703,2702,2679,2656,-2673,2680,2702,2672,-2655,2659,2681,2703,-2680,2681,2658,2674,-2704,2703,2674,2651,-2672,2679,2703,2671,-2657,2659,2678,2704,-2682,2678,2657,2731,-2705,2704,2731,2715,-2677,2681,2704,2676,-2659,2648,2706,2720,-2720,2707,2645,2721,-2723,2722,2721,2643,-2706,2664,2723,2706,-2649,2709,2708,2723,-2665,2724,2687,2645,-2708,2710,2646,2687,-2725,2711,2713,2725,-2727,2726,2725,2708,-2710,2712,2714,2727,-2729,2728,2727,2646,-2711,2715,2716,2729,-2678,2677,2729,2713,-2712,2730,2673,2714,-2713,2717,2654,2673,-2731,2731,2732,2716,-2716,2657,2718,2732,-2732,2733,2680,2654,-2718,2657,2680,2733,-2719,2736,2774,2817,-2812,2811,2817,2752,-2736,2812,2814,2749,-2738,2734,2751,2814,-2813,2748,2809,2829,-2814,2774,2736,2813,-2830,2762,2761,2796,-2777,2751,2753,2815,-2815,2814,2815,2750,-2750,2737,2749,2776,-2797,2810,2816,2751,-2735,2752,2754,2818,-2817,2816, +2818,2753,-2752,2755,2819,2839,-2822,2819,2756,2820,-2840,2839,2820,2753,-2819,2821,2839,2818,-2755,2756,2822,2840,-2821,2822,2757,2823,-2841,2840,2823,2750,-2816,2820,2840,2815,-2754,2756,2824,2841,-2823,2841,2827,2758,-2826,2826,2760,2828,-2843,2822,2841,2825,-2758,2755,2826,2842,-2820,2842,2828,2759,-2825,2771,2793,2845,-2784,2819,2842,2824,-2757,2846,2785,2765,-2785,2763,2799,2798,-2763,2762,2798,2797,-2762,2799,2851,2830,-2739,2851,2800,2739,-2831,2800,2852,2831,-2740,2852,2801,2740,-2832,2853,2802,2741,-2833,2801,2853,2832,-2741,2854,2803,2742,-2834,2802,2854,2833,-2742,2855,2804,2743,-2835,2803,2855,2834,-2743,2804,2856,2835,-2744,2856,2805,2744,-2836,2805,2857,2836,-2745,2857,2806,2745,-2837,2858,2807,2746,-2838,2806,2858,2837,-2746,2859,2808,2747,-2839,2807,2859,2838,-2747,2860,2809,2748,-2776,2808,2860,2775,-2748,2750,2777,2776,-2750,2798,2799,2738,-2798,2776,2777,2763,-2763,2780,2817,2774,-2774,2750,2823,2843,-2778,2823,2757,2778,-2844,2843,2778,2764,-2780,2777,2843,2779,-2764,2752,2817,2780,-2755,2773,2781,2844,-2781,2781,2772,2782,-2845,2844,2782,2755,-2822,2780,2844,2821,-2755,2772,2783,2845,-2783,2760,2826,2845,-2794,2846,2825,2758,-2786,2782,2845,2826,-2756,2846,2784,2764,-2779,2825,2846,2778,-2758,2758,2786,2847,-2786,2786,2767,2787,-2848,2847,2787,2766,-2789,2785,2847,2788,-2766,2759,2789,2848,-2828,2789,2768,2790,-2849,2848,2790,2767,-2787,2827,2848,2786,-2759,2759,2828,2849,-2790,2828,2760,2791,-2850,2849,2791,2769,-2793,2789,2849,2792,-2769,2760,2793,2850,-2792,2793,2771,2794,-2851,2850,2794,2770,-2796,2791,2850,2795,-2770,2779,2851,2799,-2764,2784,2852,2800,-2765,2779,2764,2800,-2852,2788,2853,2801,-2766,2784,2765,2801,-2853,2787,2854,2802,-2767,2788,2766,2802,-2854,2790,2855,2803,-2768,2787,2767,2803,-2855,2792,2856,2804,-2769,2790,2768,2804,-2856,2795,2857,2805,-2770,2792,2769,2805,-2857,2794,2858,2806,-2771,2795,2770,2806,-2858,2783,2859,2807,-2772,2794,2771,2807,-2859,2781,2860,2808,-2773,2783,2772,2808,-2860,2774,2829,2809,-2774,2781,2773,2809,-2861,2877,2956,2991,-2960,2956,2879,2957,-2992, +2991,2957,2880,-2959,2959,2991,2958,-2879,2880,2960,2992,-2959,2960,2882,2961,-2993,2992,2961,2881,-2963,2958,2992,2962,-2879,2880,2963,2993,-2961,2963,2884,2964,-2994,2993,2964,2883,-2966,2960,2993,2965,-2883,2880,2957,2994,-2964,2957,2879,2966,-2995,2994,2966,2885,-2968,2963,2994,2967,-2885,2912,2913,2969,-2969,2940,2928,2887,-2887,2874,2982,2969,-2914,2984,2940,2886,-2862,2971,2862,2888,-2943,2875,2955,2953,-2915,2877,2985,2995,-2988,2907,2986,2995,-2986,2905,2987,2995,-2987,2877,2959,2996,-2986,2959,2878,2988,-2997,2996,2988,2909,-2990,2985,2996,2989,-2908,2903,2990,2997,-2919,2990,2879,2956,-2998,2997,2956,2877,-2988,2918,2997,2987,-2906,2912,2968,2998,-2921,2968,2911,2919,-2999,2998,2919,2878,-2963,2920,2998,2962,-2882,2878,2919,2999,-2989,2911,2921,2999,-2920,2909,2988,2999,-2922,2901,2922,3000,-2924,2922,2885,2966,-3001,3000,2966,2879,-2991,2923,3000,2990,-2904,2881,2924,3001,-2921,2924,2917,2925,-3002,3001,2925,2915,-2927,2920,3001,2926,-2913,2882,2927,3002,-2962,2927,2887,2928,-3003,3002,2928,2917,-2925,2961,3002,2924,-2882,2883,2929,3003,-2966,2929,2889,2930,-3004,3003,2930,2887,-2928,2965,3003,2927,-2883,2883,2931,3004,-2930,2931,2893,2932,-3005,3004,2932,2891,-2934,2929,3004,2933,-2890,2884,2934,3005,-2965,2934,2895,2935,-3006,3005,2935,2893,-2932,2964,3005,2931,-2884,2884,2967,3006,-2935,2967,2885,2936,-3007,3006,2936,2897,-2938,2934,3006,2937,-2896,2885,2922,3007,-2937,2922,2901,2938,-3008,3007,2938,2899,-2940,2936,3007,2939,-2898,2984,2876,2916,-2941,2970,2861,2886,-2942,2916,2917,2928,-2941,2930,2941,2886,-2888,2889,2888,2941,-2931,2933,2942,2888,-2890,2941,2888,2862,-2971,2972,2863,2890,-2944,2891,2890,2942,-2934,2932,2943,2890,-2892,2942,2890,2863,-2972,2973,2864,2892,-2945,2893,2892,2943,-2933,2935,2944,2892,-2894,2943,2892,2864,-2973,2974,2865,2894,-2946,2895,2894,2944,-2936,2937,2945,2894,-2896,2944,2894,2865,-2974,2896,2946,2975,-2867,2897,2896,2945,-2938,2939,2946,2896,-2898,2945,2896,2866,-2975,2867,2975,2946,-2899,2899,2898,2946,-2940,2938,2947,2898,-2900,2898,2947,2976,-2868,2868,2976,2947, +-2901,2901,2900,2947,-2939,2923,2948,2900,-2902,2900,2948,2977,-2869,2869,2977,2948,-2903,2903,2902,2948,-2924,2918,2949,2902,-2904,2978,2869,2902,-2950,2979,2870,2904,-2951,2905,2904,2949,-2919,2986,2950,2904,-2906,2949,2904,2870,-2979,2980,2871,2906,-2952,2907,2906,2950,-2987,2989,2951,2906,-2908,2950,2906,2871,-2980,2908,2952,2981,-2873,2909,2908,2951,-2990,2921,2952,2908,-2910,2951,2908,2872,-2981,2910,2873,2981,-2953,2911,2910,2952,-2922,2926,2953,2913,-2913,2913,2953,2955,-2875,2876,2983,2954,-2917,2915,2914,2953,-2927,2925,2954,2914,-2916,2914,2954,2983,-2876,2916,2954,2925,-2918,2968,2969,2910,-2912,2226,2180,2147,-2200,2582,2584,2602,-2604,2824,2759,2827,-2842,2969,2982,2873,-2911,2735,2752,2816,-2811 + } + Edges: *6076 { + a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,23,24,25,26,27,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,65,66,67,68,69,70,72,73,74,75,76,77,78,79,80,81,82,83,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,133,134,136,137,139,140,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,166,167,168,169,170,171,172,173,174,176,177,178,179,180,183,184,185,186,187,188,189,190,191,193,194,195,196,197,198,199,200,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,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,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,438,439,440,441,442,443,446,448,449,450,451,452,453,455,456,457,458,459,460,461,463,464,465,466,467,468,469,471,472,473,474,475,476,477,479,480,481,482,484,485,486,487,488,490,491,492,493,494,495,496,498,499,500,501,502,503,504,506,507,508,509,511,512,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,546,547,548,549,550,551,552,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569, +570,571,572,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,614,615,616,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,685,686,687,688,689,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,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,744,745,746,748,749,750,752,753,754,755,756,757,758,759,761,762,763,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,782,783,785,786,787,788,789,790,791,792,793,794,796,798,799,800,802,803,804,805,807,808,809,810,811,812,814,816,817,818,819,820,822,824,825,826,827,828,830,832,833,834,835,836,838,840,841,842,843,844,846,848,849,850,851,852,854,856,857,858,859,860,862,864,865,866,867,868,869,870,871,872,873,874,875,877,878,879,880,881,882,883,884,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,954,955,956,957,958,959,960,962,963,964,965,966,967,968,969,970,972,973,974,975,976,977,978,979,981,983,985,986,987,988,989,990,993,994,995,996,997,998,1000,1001,1002,1004,1005,1006,1007,1008,1009,1010,1012,1013,1014,1016,1017,1018,1019,1020,1021,1022,1024,1026,1028,1029,1030,1031,1032,1033,1034,1036,1037,1038,1040,1041,1042,1043,1044,1045,1046,1048,1049,1050,1052,1053,1054,1055,1056,1057,1058,1060,1061,1062,1064,1065,1066,1067,1068,1069,1070,1072,1073,1074,1076,1077,1078,1079,1080,1082,1084,1085,1086,1088,1089,1090,1091,1092,1093,1096,1097,1098,1100,1101,1104,1106,1107,1108,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,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,1176,1177,1178,1179,1180,1181,1182,1184,1185,1186,1187,1189,1190,1191,1192,1193,1194,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1224,1225,1226,1227,1228,1229,1230,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1245,1246,1247,1248,1249,1250,1253,1254,1255,1256,1257,1258,1259,1262,1263,1264,1265,1267,1268,1269,1271,1273,1274,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1300,1301,1302,1303,1304,1305,1306,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1360,1361,1362,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1380,1381,1382,1384,1385,1386,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,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,1492,1493,1494,1495,1496,1497,1498,1500,1502,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1544,1545,1546,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572, +1573,1574,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1616,1617,1618,1619,1620,1621,1622,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1665,1666,1667,1668,1669,1670,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,1709,1710,1711,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1729,1730,1731,1732,1733,1734,1735,1737,1738,1739,1740,1741,1742,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1764,1765,1766,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,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,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1848,1849,1850,1851,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1871,1872,1873,1875,1876,1877,1878,1879,1880,1881,1883,1884,1885,1887,1888,1889,1890,1891,1892,1893,1894,1896,1898,1899,1900,1901,1902,1904,1905,1908,1909,1910,1912,1914,1915,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1993,1994,1995,1996,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2017,2018,2019,2020, +2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2067,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2080,2081,2082,2083,2084,2086,2087,2088,2089,2092,2093,2094,2095,2096,2097,2098,2099,2100,2102,2103,2104,2105,2106,2107,2110,2112,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2126,2127,2128,2129,2130,2133,2135,2136,2137,2138,2139,2140,2142,2143,2144,2147,2148,2150,2152,2154,2157,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2187,2188,2189,2190,2193,2194,2196,2197,2198,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2214,2215,2216,2217,2218,2219,2220,2221,2222,2224,2225,2226,2227,2229,2230,2231,2232,2233,2234,2235,2236,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2313,2314,2315,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,2344,2345,2346,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2382,2383,2384,2385,2386,2387,2388,2389,2390,2392,2393,2394,2395,2396,2397,2398,2400,2401,2402,2403,2404,2405,2406,2408,2409,2410,2411,2412,2413,2414,2416,2417,2418,2419,2420,2421,2423,2424,2425,2426,2427,2428,2429,2431,2432,2433,2434,2435,2436,2437,2438,2440,2441,2442,2444,2445,2446,2448,2449,2450,2451,2453,2454,2456,2457,2458,2459,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,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,2498,2500,2501,2502,2504,2505,2507,2508,2509,2513,2514,2515,2517,2518,2519,2520,2521,2522,2523,2524,2526,2528,2532,2533,2535,2536,2537,2539,2540,2541,2543,2544,2545,2546,2547,2548,2550,2551,2552,2553,2554,2555,2556,2558,2559,2560,2561,2562,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2580,2582,2584,2585,2587,2588,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2607,2608,2609,2610,2612,2613,2614,2615,2616,2617,2620,2621,2622,2623,2624,2625,2626,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2644,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2705,2706,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2719,2720,2721,2723,2725,2726,2728,2729,2730,2733,2735,2736,2743,2744,2745,2748,2755,2757,2761,2762,2763,2764,2765,2766,2775,2777,2779,2781,2783,2785,2787,2789,2791,2793,2795,2797,2799,2801,2803,2805,2807,2809,2811,2813,2814,2815,2817,2820,2824,2827,2829,2831,2833,2835,2837,2838,2839,2844,2848,2852,2856,2860,2864,2868,2872,2880,2883,2885,2889,2893,2896,2897,2901,2904,2907,2908,2910,2915,2916,2917,2920,2925,2926,2927,2928,2929,2930,2931,2933,2936,2939,2946,2947,2951,2954,2955,2956,2959,2964,2967,2969,2972,2973,2974,2976,2977,2982,2983,2985,2989,2990,2992,2993,2995,2999,3001,3003,3005,3007,3010,3012,3016,3017,3019,3024,3027,3029,3030,3032,3034,3037,3039,3042,3045,3047,3049,3050,3052,3053,3055,3057,3059,3061,3063,3066,3068,3070,3073,3075,3078,3080,3081,3083,3085,3086,3088,3089,3091,3093,3094,3095,3098,3102,3105,3106,3108,3109,3111,3113,3115,3117,3119,3121,3123,3125,3127,3130,3132,3134,3136,3138,3140,3142,3144,3145,3146,3148,3150,3152,3153,3155,3157,3158,3160,3161,3163,3165,3167,3170,3172,3174,3176,3177,3182,3184,3185,3189,3190,3192,3193,3197,3199,3202,3204,3205, +3207,3212,3213,3215,3217,3220,3221,3223,3225,3230,3232,3234,3237,3241,3242,3245,3247,3249,3251,3254,3256,3257,3259,3262,3264,3267,3269,3271,3273,3275,3278,3279,3285,3288,3290,3295,3298,3303,3305,3310,3312,3314,3316,3317,3319,3320,3321,3322,3323,3325,3339,3342,3343,3367,3373,3378,3381,3383,3385,3386,3390,3395,3402,3403,3404,3409,3425,3427,3428,3435,3441,3443,3444,3445,3447,3449,3450,3451,3458,3460,3461,3462,3463,3464,3468,3469,3471,3473,3475,3481,3483,3484,3485,3487,3490,3492,3496,3498,3500,3502,3503,3507,3509,3513,3514,3516,3521,3523,3527,3531,3533,3537,3542,3543,3549,3551,3553,3554,3555,3557,3559,3561,3562,3565,3567,3571,3577,3579,3581,3583,3586,3589,3591,3595,3601,3602,3603,3607,3610,3613,3615,3619,3625,3627,3629,3631,3634,3637,3639,3641,3643,3645,3649,3651,3655,3661,3663,3665,3667,3669,3673,3675,3679,3685,3687,3689,3691,3693,3697,3699,3703,3709,3711,3713,3715,3717,3721,3723,3727,3733,3735,3737,3739,3741,3745,3747,3751,3757,3759,3761,3762,3763,3769,3771,3775,3781,3782,3783,3785,3786,3787,3793,3795,3799,3805,3807,3809,3811,3817,3818,3819,3823,3826,3829,3831,3833,3835,3841,3843,3845,3847,3849,3855,3857,3859,3865,3866,3867,3871,3874,3877,3879,3881,3883,3889,3891,3893,3895,3901,3902,3903,3907,3910,3913,3915,3917,3919,3925,3927,3929,3931,3938,3939,3943,3946,3949,3950,3951,3955,3961,3963,3965,3967,3975,3977,3979,3987,3989,3991,3998,3999,4001,4002,4003,4011,4013,4015,4021,4023,4025,4027,4033,4035,4037,4039,4045,4046,4047,4049,4051,4057,4059,4061,4063,4069,4070,4071,4075,4081,4083,4085,4087,4093,4094,4095,4099,4105,4107,4109,4111,4117,4118,4119,4123,4129,4131,4133,4135,4141,4142,4143,4147,4153,4155,4157,4159,4165,4167,4169,4171,4177,4179,4181,4183,4189,4190,4191,4195,4201,4203,4205,4207,4213,4214,4215,4219,4225,4226,4227,4231,4239,4243,4245,4253,4255,4256,4258,4260,4261,4267,4269,4275,4277,4279,4281,4287,4289,4291,4293,4298,4300,4303,4305,4307,4309,4313,4315,4319,4321,4323,4325,4332,4333,4334,4335,4343,4344,4345,4349,4351,4353,4355,4357,4359,4361,4363,4369,4371,4373,4375,4377,4379,4385,4386,4388,4389,4390,4391,4395,4403, +4408,4409,4411,4413,4415,4418,4421,4423,4427,4430,4434,4436,4437,4439,4441,4443,4446,4449,4451,4455,4463,4465,4466,4467,4475,4477,4478,4479,4487,4489,4491,4493,4499,4501,4502,4503,4509,4511,4513,4515,4521,4523,4525,4527,4533,4535,4537,4539,4542,4547,4549,4551,4557,4558,4559,4563,4566,4569,4570,4571,4573,4575,4581,4583,4585,4587,4593,4595,4597,4599,4605,4607,4609,4611,4614,4617,4619,4621,4623,4629,4630,4631,4635,4641,4643,4645,4647,4653,4654,4655,4659,4662,4665,4667,4669,4671,4677,4679,4681,4682,4683,4689,4690,4691,4693,4695,4702,4703,4705,4707,4713,4715,4717,4719,4722,4725,4727,4729,4731,4737,4739,4741,4742,4743,4749,4751,4755,4761,4763,4765,4767,4770,4773,4775,4777,4779,4785,4786,4787,4789,4790,4791,4797,4799,4803,4811,4813,4815,4818,4822,4823,4827,4833,4834,4835,4837,4839,4847,4851,4859,4863,4869,4870,4872,4877,4878,4906,4910,4914,4918,4922,4926,4930,4934,4938,4941,4942,4953,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4975,4977,4978,4980,4982,4983,4984,4986,4989,4991,5001,5002,5003,5004,5011,5020,5022,5028,5031,5032,5035,5036,5038,5042,5043,5044,5046,5050,5054,5059,5060,5062,5066,5069,5071,5072,5074,5078,5085,5087,5088,5090,5094,5101,5103,5104,5106,5109,5117,5121,5122,5126,5133,5139,5140,5145,5148,5152,5157,5162,5163,5166,5170,5174,5175,5177,5179,5181,5183,5199,5210,5211,5212,5214,5215,5217,5231,5235,5236,5237,5240,5242,5244,5245,5249,5252,5255,5257,5258,5260,5262,5266,5269,5273,5282,5284,5288,5293,5296,5305,5306,5308,5317,5320,5329,5333,5341,5345,5353,5356,5365,5368,5377,5385,5390,5399,5401,5402,5403,5405,5406,5408,5410,5412,5414,5416,5418,5420,5423,5425,5427,5429,5431,5433,5435,5437,5438,5439,5441,5442,5444,5447,5449,5450,5451,5453,5454,5460,5462,5464,5466,5467,5468,5470,5474,5475,5477,5478,5479,5480,5482,5483,5484,5486,5490,5491,5492,5496,5503,5504,5507,5509,5512,5514,5516,5518,5522,5524,5528,5534,5535,5537,5539,5540,5546,5547,5550,5552,5553,5555,5558,5560,5561,5563,5570,5572,5574,5580,5582,5584,5591,5592,5597,5598,5599,5600,5601,5604,5605,5607,5608,5609,5610,5619,5620,5621,5622, +5623,5624,5631,5633,5634,5635,5640,5641,5643,5644,5646,5647,5648,5655,5656,5658,5660,5662,5666,5667,5668,5670,5672,5678,5680,5682,5684,5687,5690,5691,5692,5694,5696,5702,5704,5706,5708,5714,5715,5716,5718,5720,5726,5728,5730,5731,5732,5734,5738,5740,5744,5747,5752,5754,5756,5762,5764,5766,5767,5768,5770,5774,5776,5778,5780,5782,5786,5788,5792,5795,5800,5802,5804,5810,5812,5814,5815,5816,5818,5822,5824,5828,5831,5834,5836,5838,5840,5846,5848,5850,5851,5852,5854,5859,5860,5864,5870,5872,5874,5875,5876,5878,5882,5883,5884,5888,5894,5896,5898,5903,5904,5906,5912,5914,5916,5918,5922,5924,5926,5928,5934,5935,5936,5938,5940,5943,5946,5948,5952,5958,5959,5960,5962,5963,5964,5966,5970,5971,5972,5976,5982,5984,5986,5988,5994,5996,5998,6000,6007,6008,6010,6011,6014,6015,6016,6020,6026,6028,6032,6035,6038,6040,6042,6044,6051,6052,6054,6059,6060,6062,6064,6070,6071,6072,6074,6076,6084,6086,6088,6090,6094,6096,6098,6100,6108,6110,6111,6112,6114,6118,6119,6120,6122,6124,6130,6132,6136,6139,6144,6147,6148,6150,6154,6156,6160,6163,6167,6168,6170,6172,6178,6180,6182,6184,6187,6190,6192,6196,6199,6203,6204,6206,6208,6211,6214,6216,6218,6220,6226,6228,6230,6232,6238,6239,6240,6244,6250,6252,6256,6262,6263,6264,6266,6268,6274,6275,6276,6278,6280,6287,6288,6290,6291,6292,6294,6298,6300,6304,6307,6310,6312,6316,6318,6320,6322,6328,6332,6338,6340,6344,6351,6352,6354,6356,6358,6362,6364,6368,6371,6374,6376,6378,6380,6388,6392,6395,6398,6400,6402,6404,6410,6412,6414,6416,6422,6423,6424,6426,6428,6434,6435,6436,6438,6439,6440,6448,6450,6452,6454,6458,6460,6462,6464,6470,6472,6476,6479,6482,6483,6484,6488,6494,6495,6496,6500,6507,6508,6510,6514,6516,6520,6523,6527,6528,6530,6534,6536,6538,6540,6543,6547,6548,6552,6558,6560,6562,6564,6570,6572,6576,6582,6584,6586,6588,6591,6595,6596,6600,6606,6608,6610,6612,6618,6620,6624,6630,6631,6632,6636,6639,6642,6643,6644,6648,6654,6655,6656,6658,6659,6660,6662,6668,6672,6678,6680,6684,6690,6692,6694,6696,6702,6704,6708,6716,6718,6720,6723,6726,6728,6732,6738,6740,6744,6752,6754,6756,6764,6766,6768,6770, +6774,6776,6778,6780,6788,6790,6792,6798,6801,6802,6804,6805,6808,6812,6815,6816,6818,6820,6822,6826,6828,6830,6832,6838,6840,6842,6844,6850,6851,6852,6854,6856,6864,6867,6868,6870,6871,6876,6878,6880,6888,6890,6892,6898,6900,6902,6904,6910,6912,6914,6916,6924,6926,6928,6935,6936,6938,6940,6947,6948,6952,6960,6962,6964,6972,6978,6984,6990,6992,6994,6996,7004,7006,7008,7014,7016,7018,7020,7027,7028,7032,7038,7040,7042,7044,7052,7055,7056,7058,7062,7063,7064,7066,7068,7074,7076,7080,7086,7087,7088,7090,7092,7098,7100,7104,7107,7110,7112,7113,7118,7120,7124,7126,7129,7132,7136,7139,7142,7144,7146,7148,7157,7159,7161,7165,7168,7170,7172,7181,7182,7184,7186,7188,7196,7198,7200,7204,7210,7212,7214,7216,7222,7224,7226,7228,7234,7240,7242,7244,7250,7252,7256,7262,7264,7268,7276,7280,7286,7287,7288,7290,7292,7300,7303,7304,7306,7307,7312,7314,7316,7324,7328,7336,7340,7370,7386,7391,7406,7413,7418,7431,7457,7466,7494,7546,7568,7570,7582,7589,7592,7596,7600,7606,7608,7610,7613,7622,7624,7630,7633,7639,7641,7646,7648,7652,7656,7657,7664,7668,7672,7676,7680,7682,7686,7690,7694,7698,7702,7706,7710,7714,7718,7722,7724,7730,7734,7740,7744,7748,7752,7756,7760,7764,7768,7772,7776,7780,7785,7789,7793,7797,7801,7805,7809,7812,7813,7817,7819,7820,7821,7824,7825,7829,7833,7837,7840,7841,7847,7849,7853,7856,7857,7858,7868,7872,7876,7880,7884,7889,7893,7895,7896,7899,7903,7909,7912,7916,7919,7926,7930,7937,7941,7944,7947,7953,7964,7970,7973,7976,7984,7992,8019,8022,8028,8036,8054,8062,8064,8069,8074,8078,8083,8092,8097,8103,8109,8129,8130,8132,8135,8138,8141,8144,8147,8150,8153,8159,8162,8165,8168,8171,8174,8177,8180,8183,8186,8189,8192,8195,8198,8201,8204,8207,8210,8213,8216,8219,8222,8225,8228,8231,8234,8237,8240,8243,8246,8249,8252,8255,8258,8261,8264,8267,8270,8273,8276,8279,8282,8285,8288,8291,8294,8297,8300,8303,8306,8309,8315,8316,8318,8321,8324,8327,8330,8333,8336,8339,8342,8345,8348,8351,8354,8357,8360,8363,8366,8369,8372,8375,8378,8381,8384,8387,8390,8393,8396,8399,8402,8405,8408,8411,8414,8417,8420,8423,8426,8429,8432,8435,8438, +8441,8444,8447,8450,8453,8456,8459,8462,8465,8468,8471,8474,8480,8483,8486,8489,8492,8498,8501,8504,8510,8513,8516,8519,8522,8525,8528,8531,8534,8537,8540,8543,8546,8549,8552,8555,8558,8561,8564,8567,8570,8573,8576,8579,8582,8585,8588,8591,8594,8597,8600,8603,8606,8609,8612,8615,8618,8621,8624,8627,8630,8633,8636,8639,8642,8645,8648,8654,8657,8660,8663,8666,8669,8672,8675,8678,8681,8684,8687,8690,8693,8696,8699,8702,8705,8708,8711,8714,8717,8720,8723,8726,8729,8732,8735,8738,8741,8744,8747,8750,8756,8759,8762,8765,8768,8771,8774,8777,8780,8783,8786,8789,8792,8797,8798,8799,8800,8801,8802,8803,8806,8807,8808,8811,8812,8813,8814,8815,8816,8817,8818,8819,8822,8824,8828,8829,8830,8831,8833,8834,8835,8838,8839,8840,8843,8845,8846,8847,8848,8849,8850,8851,8854,8856,8860,8861,8862,8863,8865,8866,8867,8870,8871,8872,8875,8877,8878,8879,8880,8881,8883,8888,8892,8894,8895,8898,8899,8902,8904,8909,8910,8911,8913,8914,8915,8918,8920,8926,8927,8930,8931,8934,8935,8936,8939,8941,8942,8943,8944,8945,8946,8947,8950,8952,8956,8957,8958,8959,8961,8962,8963,8966,8967,8968,8971,8973,8974,8975,8976,8977,8978,8979,8982,8984,8988,8989,8990,8991,8993,8994,8995,8998,9000,9006,9007,9011,9016,9022,9023,9026,9027,9030,9032,9037,9039,9040,9041,9042,9043,9046,9047,9049,9052,9053,9056,9057,9058,9061,9062,9065,9067,9068,9072,9073,9074,9077,9078,9081,9083,9084,9088,9089,9090,9091,9094,9097,9099,9100,9104,9105,9106,9109,9113,9114,9115,9116,9117,9118,9119,9120,9122,9123,9124,9126,9127,9128,9130,9131,9132,9133,9134,9135,9137,9138,9139,9140,9141,9142,9143,9145,9146,9147,9148,9149,9150,9151,9154,9155,9157,9161,9162,9165,9166,9169,9170,9173,9174,9177,9178,9181,9182,9184,9185,9186,9188,9189,9193,9194,9196,9197,9201,9203,9204,9205,9209,9213,9214,9216,9217,9218,9225,9226,9229,9230,9234,9239,9240,9241,9242,9245,9246,9249,9251,9252,9256,9257,9258,9261,9262,9265,9267,9268,9272,9273,9274,9277,9278,9281,9283,9284,9288,9289,9290,9293,9294,9297,9299,9300,9304,9305,9306,9309,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9324,9325,9328,9329,9330,9331,9332,9333, +9334,9335,9338,9340,9344,9345,9346,9347,9348,9349,9350,9351,9354,9356,9360,9361,9362,9363,9364,9366,9368,9369,9373,9374,9375,9377,9378,9379,9382,9384,9389,9390,9391,9393,9394,9396,9400,9401,9402,9403,9404,9405,9406,9407,9410,9412,9416,9417,9418,9419,9420,9421,9422,9423,9426,9428,9432,9433,9434,9435,9436,9438,9440,9441,9445,9446,9447,9448,9449,9450,9451,9454,9456,9460,9461,9462,9463,9465,9466,9467,9470,9471,9472,9475,9477,9478,9479,9481,9482,9483,9486,9488,9493,9494,9495,9496,9497,9498,9499,9502,9504,9508,9509,9510,9511,9512,9514,9516,9517,9521,9522,9523,9525,9526,9527,9530,9531,9532,9535,9537,9538,9539,9541,9542,9543,9546,9547,9548,9551,9553,9554,9555,9557,9558,9559,9562,9564,9569,9570,9571,9572,9573,9575,9580,9584,9585,9586,9587,9588,9590,9592,9593,9597,9598,9599,9601,9603,9608,9613,9614,9615,9617,9619,9624,9629,9630,9631,9633,9635,9640,9645,9646,9647,9649,9651,9656,9661,9662,9663,9664,9665,9666,9668,9669,9672,9673,9674,9675,9676,9677,9678,9679,9682,9684,9688,9689,9690,9691,9693,9694,9695,9698,9699,9700,9703,9705,9706,9707,9709,9710,9711,9714,9715,9716,9719,9721,9722,9723,9725,9726,9727,9730,9731,9732,9735,9737,9738,9739,9740,9741,9742,9743,9746,9748,9752,9753,9754,9755,9756,9757,9758,9759,9762,9764,9768,9769,9771,9773,9775,9776,9777,9780,9781,9783,9784,9786,9787,9790,9791,9794,9796,9804,9805,9808,9810,9811,9814,9815,9818,9820,9825,9828,9829,9831,9832,9833,9834,9835,9837,9838,9839,9842,9844,9850,9851,9853,9854,9860,9861,9862,9863,9865,9866,9867,9870,9872,9880,9881,9884,9886,9887,9890,9891,9894,9896,9901,9904,9905,9907,9908,9910,9911,9912,9913,9914,9917,9920,9922,9923,9926,9927,9930,9932,9937,9938,9939,9941,9942,9943,9946,9948,9956,9957,9960,9962,9963,9966,9967,9970,9972,9977,9980,9981,9983,9984,9985,9986,9987,9989,9990,9991,9994,9996,10004,10005,10008,10009,10010,10011,10013,10014,10015,10018,10020,10025,10026,10027,10029,10030,10031,10034,10036,10041,10044,10045,10047,10048,10049,10050,10051,10053,10054,10055,10058,10060,10065,10066,10067,10068,10069,10070,10071,10074,10076,10080,10082,10083,10085,10086,10092,10093, +10094,10095,10097,10098,10099,10102,10104,10110,10111,10114,10115,10118,10120,10128,10129,10132,10133,10134,10135,10137,10138,10139,10142,10144,10149,10152,10153,10155,10156,10157,10158,10159,10161,10162,10163,10166,10168,10174,10175,10178,10179,10182,10184,10192,10193,10196,10197,10198,10199,10201,10202,10203,10206,10208,10213,10216,10217,10219,10220,10221,10222,10223,10224,10225,10227,10232,10236,10237,10238,10239,10241,10242,10243,10246,10248,10253,10254,10255,10257,10258,10259,10262,10264,10272,10273,10276,10278,10279,10281,10282,10288,10289,10290,10291,10293,10294,10295,10298,10300,10305,10308,10309,10311,10312,10313,10314,10315,10316,10317,10319,10324,10328,10329,10330,10331,10333,10334,10335,10338,10340,10345,10346,10347,10349,10350,10351,10354,10356,10364,10365,10368,10372,10373,10374,10375,10377,10378,10379,10382,10384,10389,10390,10391,10393,10394,10395,10398,10400,10405,10406,10407,10409,10411,10416,10422,10423,10425,10426,10432,10433,10434,10435,10437,10439,10444,10449,10450,10451,10453,10454,10455,10458,10460,10466,10467,10470,10477,10478,10479,10480,10481,10482,10484,10485,10486,10488,10489,10490,10491,10492,10494,10495,10496,10497,10498,10499,10500,10501,10502,10503,10504,10505,10507,10511,10512,10515,10518,10519,10522,10523,10526,10528,10533,10534,10535,10537,10538,10539,10542,10544,10549,10550,10551,10553,10555,10560,10566,10568,10569,10570,10571,10572,10573,10574,10575,10577,10579,10584,10590,10592,10593,10594,10595,10596,10597,10598,10599,10601,10603,10608,10614,10616,10617,10618,10619,10620,10621,10622,10623,10625,10627,10632,10638,10640,10641,10642,10643,10644,10645,10646,10647,10649,10651,10656,10662,10664,10666,10667,10670,10671,10675,10680,10688,10693,10694,10695,10696,10697,10698,10699,10702,10703,10704,10707,10708,10709,10710,10711,10712,10713,10714,10715,10718,10720,10724,10725,10726,10727,10729,10730,10731,10734,10735,10736,10741,10742,10743,10744,10745,10746,10747,10750,10752,10756,10757,10758,10759,10761,10762,10763,10766,10767,10768,10771,10774,10775,10778,10779,10782,10783,10784,10787, +10789,10790,10791,10793,10795,10800,10805,10806,10807,10809,10810,10811,10814,10815,10816,10819,10821,10822,10823,10825,10826,10827,10830,10832,10837,10838,10839,10840,10841,10843,10848,10852,10853,10854,10855,10857,10858,10859,10862,10864,10870,10871,10874,10875,10878,10879,10880,10883,10885,10886,10887,10888,10889,10890,10891,10894,10896,10900,10901,10902,10903,10905,10907,10912,10918,10919,10922,10923,10926,10928,10933,10934,10937,10939,10940,10944,10945,10946,10949,10950,10953,10956,10957,10960,10961,10962,10963,10966,10969,10971,10972,10976,10977,10978,10979,10982,10985,10988,10989,10992,10993,10994,10997,10998,11001,11004,11007,11009,11010,11011,11012,11014,11015,11016,11017,11018,11019,11020,11021,11022,11024,11025,11026,11027,11028,11030,11032,11033,11034,11035,11036,11037,11038,11039,11042,11043,11046,11048,11049,11050,11052,11053,11054,11055,11056,11058,11061,11062,11063,11064,11065,11066,11067,11070,11072,11076,11077,11078,11079,11081,11082,11083,11086,11088,11093,11094,11095,11097,11098,11099,11100,11101,11102,11103,11104,11107,11109,11111,11114,11115,11116,11117,11118,11119,11120,11125,11126,11127,11128,11129,11130,11131,11132,11134,11135,11137,11138,11139,11140,11141,11142,11143,11145,11146,11147,11149,11150,11151,11153,11154,11155,11156,11157,11159,11161,11162,11163,11164,11165,11167,11169,11170,11171,11172,11173,11175,11177,11178,11179,11181,11182,11183,11185,11186,11187,11189,11190,11191,11193,11194,11195,11196,11197,11199,11201,11202,11203,11204,11205,11207,11209,11211,11212,11213,11215,11217,11218,11223,11226,11229,11231,11232,11234,11235,11238,11239,11242,11243,11244,11247,11251,11253,11254,11255,11257,11258,11259,11262,11264,11269,11271,11274,11276,11277,11279,11286,11288,11293,11294,11295,11297,11298,11299,11302,11303,11304,11307,11309,11310,11311,11312,11313,11314,11315,11318,11320,11326,11327,11330,11331,11334,11335,11336,11339,11342,11343,11346,11347,11350,11351,11352,11355,11357,11361,11363,11369,11371,11377,11379,11385,11387,11393,11395,11401,11403,11409,11411,11417,11419,11425,11427,11435, +11441,11442,11443,11444,11445,11446,11447,11450,11451,11452,11455,11456,11457,11458,11459,11461,11462,11463,11466,11467,11468,11471,11473,11474,11475,11477,11478,11479,11482,11483,11484,11487,11490,11491,11494,11495,11498,11499,11500,11503,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11516,11517,11519,11520,11521,11522,11523,11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11536,11537,11540,11542,11543,11546,11547,11550,11551,11552,11555,11557,11558,11559,11560,11561,11563,11568,11572,11574,11575,11576,11577,11578,11579,11582,11584,11588,11590,11591,11593,11594,11600,11601,11602,11603,11604,11605,11607,11612,11616,11617,11618,11619,11621,11622,11623,11626,11627,11628,11631,11633,11634,11635,11637,11639,11642,11644,11649,11650,11651,11653,11654,11655,11658,11660,11665,11666,11667,11669,11670,11671,11674,11675,11676,11679,11681,11682,11683,11685,11686,11687,11690,11692,11698,11699,11702,11703,11706,11707,11708,11711,11714,11715,11718,11719,11722,11723,11724,11727,11729,11730,11731,11733,11735,11736,11737,11741,11745,11746,11749,11755,11757,11758,11759,11760,11761,11762,11765,11771,11773,11774,11775,11776,11777,11778,11781,11787,11789,11790,11791,11792,11793,11794,11797,11803,11805,11806,11807,11808,11809,11810,11813,11819,11821,11823,11824,11825,11829,11830,11834,11835,11837,11839,11840,11841,11845,11846,11850,11851,11853,11855,11856,11857,11861,11862,11865,11868,11869,11870,11871,11872,11873,11874,11877,11883,11885,11886,11887,11888,11889,11890,11893,11899,11901,11902,11903,11904,11905,11906,11909,11915,11917,11918,11920,11921,11925,11926,11931,11933,11934,11935,11937,11941,11942,11947,11954,11960,11964,11970,11976 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *35931 { + a: -0.0264651086181402,-0.384438037872314,0.922771394252777,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0120826922357082,-0.476918876171112,0.878864228725433,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.192522287368774,-0.307569831609726,0.931845486164093,0.210368201136589,-0.303417325019836,0.929345548152924,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.193154454231262,-0.313466012477875,0.929747462272644,0.167589917778969,-0.331402182579041,0.928485929965973,-0.0705677196383476,-0.247022330760956,0.966436862945557,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.080881841480732,-0.238137289881706,0.967857837677002,0.00890681333839893,-0.546892523765564,0.837155520915985,-0.00745450565591455,-0.599202632904053,0.800562679767609,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.670773863792419,0.355791985988617,0.650749266147614,-0.670497238636017,0.356165111064911,0.650830209255219,-0.732994079589844,0.265867739915848,0.626126170158386,-0.73331356048584,0.265376836061478,0.625960409641266,-0.490983575582504,0.559980094432831,0.667351067066193,-0.491295993328094,0.559677600860596,0.667374908924103,-0.584463179111481,0.462361484766006,0.666801810264587,-0.584276378154755,0.462572455406189,0.666819274425507,-0.296556383371353,0.71166330575943,0.63685929775238,-0.400390625,0.63982480764389,0.655981361865997,-0.400514185428619,0.639725744724274,0.656002461910248,-0.297108590602875,0.711334645748138,0.636968970298767,-0.172773286700249,0.772700309753418,0.610805630683899,-0.296556383371353,0.71166330575943,0.63685929775238,-0.297108590602875,0.711334645748138,0.636968970298767,-0.173091113567352,0.772573292255402,0.610876262187958,0.0707439854741096,0.816980302333832,0.572309792041779,-0.0503190979361534,0.808798611164093,0.585929036140442,-0.0503427796065807,0.808793902397156,0.585933446884155,0.0699645951390266,0.817013561725616,0.572358131408691,-0.0349617376923561,-0.269924968481064,0.962246477603912,0.0268522948026657,-0.295383661985397,0.95500123500824, +-0.00272547081112862,-0.531193137168884,0.847246408462524,0.0494742728769779,-0.438117414712906,0.897555351257324,0.0112788248807192,-0.439287066459656,0.898275911808014,0.00962750148028135,-0.443623781204224,0.896161377429962,0.0475827939808369,-0.444023549556732,0.894750893115997,-0.560879707336426,-0.679872572422028,-0.472426921129227,-0.447487086057663,-0.710730791091919,-0.542786538600922,-0.44757017493248,-0.710715591907501,-0.54273784160614,-0.560998439788818,-0.679829001426697,-0.472348719835281,-0.733721077442169,-0.593432605266571,-0.330894231796265,-0.655419766902924,-0.638541400432587,-0.403348237276077,-0.655095458030701,-0.638708114624023,-0.403611063957214,-0.733235716819763,-0.593746662139893,-0.331406772136688,-0.865925014019012,-0.478144764900208,-0.146803960204124,-0.806409239768982,-0.539085805416107,-0.24308568239212,-0.806198716163635,-0.539269089698792,-0.24337737262249,-0.865976393222809,-0.478082060813904,-0.146705165505409,-0.931242644786835,-0.362451523542404,0.0376285724341869,-0.905624568462372,-0.420467346906662,-0.055239450186491,-0.905573010444641,-0.420558720827103,-0.0553874485194683,-0.931077837944031,-0.36295685172081,0.0368286482989788,-0.944476962089539,-0.227666184306145,0.236920595169067,-0.9447261095047,-0.297700047492981,0.137358129024506,-0.944638788700104,-0.298582345247269,0.136037021875381,-0.944572329521179,-0.228647872805595,0.235591500997543,-0.876206278800964,0.00849000457674265,0.481861382722855,-0.909371197223663,-0.0776798352599144,0.408668488264084,-0.909620344638824,-0.0784249529242516,0.407970905303955,-0.876417100429535,0.00799829419702291,0.481486409902573,0.920197308063507,-0.147865608334541,0.36245396733284,0.91556453704834,-0.282254129648209,0.286485880613327,0.915544629096985,-0.28245684504509,0.286349713802338,0.920217394828796,-0.148591563105583,0.362105578184128,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.136253580451012,-0.358394503593445,0.923573672771454,0.103350006043911,-0.392857551574707,0.91377329826355,0.0208463128656149,-0.750408232212067,0.660645842552185, +0.0136146126314998,-0.746125519275665,0.665666043758392,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.879039883613586,0.158573463559151,0.44960355758667,0.907039761543274,0.00840542558580637,0.420961111783981,0.907017171382904,0.00856839027255774,0.42100664973259,0.878641426563263,0.160228952765465,0.449795454740524,0.701170325279236,0.527854084968567,0.479301959276199,0.821152627468109,0.331840932369232,0.464316755533218,0.820272266864777,0.333873003721237,0.464415907859802,0.69990074634552,0.529408276081085,0.479443222284317,0.20442359149456,0.800591707229614,0.563261747360229,0.358468681573868,0.761199653148651,0.54043984413147,0.352967143058777,0.76295405626297,0.541585922241211,0.203763425350189,0.800721347332001,0.563316762447357,0.880204677581787,-0.45611110329628,0.131157830357552,0.902281999588013,-0.373685032129288,0.215050429105759,0.902240514755249,-0.373892724514008,0.214863583445549,0.880086541175842,-0.45645010471344,0.130770549178123,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.070955291390419,-0.434591323137283,0.897828280925751,0.0373075902462006,-0.488416314125061,0.871812880039215,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.00872467365115881,-0.743663370609283,0.668497383594513,0.00851422641426325,-0.743472337722778,0.668712496757507,0.785835266113281,-0.612853646278381,-0.0829054936766624,0.786726355552673,-0.611918807029724,-0.0813445821404457,0.841839790344238,-0.539008736610413,0.0278462246060371,0.841499090194702,-0.539580106735229,0.0270673483610153,0.667674362659454,-0.697648644447327,-0.259802430868149,0.668704032897949,-0.697169661521912,-0.258436769247055,0.725716173648834,-0.664317846298218,-0.178934931755066,0.724518954753876,-0.665144622325897,-0.180706933140755,0.52468729019165,-0.746297776699066,-0.409564107656479,0.604258298873901,-0.723142147064209,-0.334570318460464,0.603122293949127,-0.723535418510437,-0.335767894983292,0.523687958717346,-0.746535301208496,-0.410409569740295,0.338509112596512,-0.779971957206726,-0.526360511779785,0.338974237442017,-0.779914259910583,-0.526146650314331, +0.437109470367432,-0.764969885349274,-0.473028987646103,0.436331629753113,-0.765112340450287,-0.473516196012497,0.0802601724863052,-0.782320857048035,-0.617683053016663,0.0801175236701965,-0.782306790351868,-0.617719233036041,0.225181132555008,-0.788023769855499,-0.572985172271729,0.224923998117447,-0.78802889585495,-0.573079168796539,0.104750499129295,-0.574084997177124,0.812067627906799,0.0580517016351223,-0.560424447059631,0.826168537139893,0.0365389734506607,-0.630775034427643,0.775104939937592,0.0694542229175568,-0.644765198230743,0.761218786239624,-0.0714048892259598,-0.254878640174866,0.96433299779892,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0493366718292236,-0.305691778659821,0.950851321220398,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.000464630749775097,-0.715449333190918,0.698664426803589,0.0113691482692957,-0.736207127571106,0.676660776138306,0.020675165578723,-0.748669028282166,0.662621438503265,0.0243514515459538,-0.752699017524719,0.657914400100708,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0887147188186646,-0.736060202121735,0.67107754945755,-0.0822479426860809,-0.731772184371948,0.676568448543549,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0961388573050499,-0.739680886268616,0.666055202484131,-0.0933721512556076,-0.7385014295578,0.667755424976349,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.084854818880558,-0.737347304821014,0.670163094997406,-0.094108559191227,-0.739217102527618,0.66685950756073,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0720954388380051,-0.722913086414337,0.687167346477509,-0.0552663579583168,-0.702335119247437,0.709697782993317,-0.00963574182242155,-0.55536413192749,0.831551492214203,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.017238000407815,-0.613386571407318,0.789594769477844,-0.084854818880558,-0.737347304821014,0.670163094997406,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0712676644325256,-0.735388100147247,0.673888206481934, +-0.54809832572937,-0.465574562549591,0.694858610630035,-0.586188852787018,-0.475560218095779,0.655915439128876,-0.511453211307526,-0.504643857479095,0.695521533489227,-0.478392064571381,-0.503834009170532,0.7192302942276,-0.659939706325531,-0.463738262653351,0.591122925281525,-0.62445455789566,-0.477743417024612,0.617914080619812,-0.679702937602997,-0.477341383695602,0.556910216808319,-0.721238136291504,-0.468951195478439,0.50980406999588,-0.506363272666931,-0.447443634271622,0.737150132656097,-0.54809832572937,-0.465574562549591,0.694858610630035,-0.478392064571381,-0.503834009170532,0.7192302942276,-0.444082617759705,-0.495074033737183,0.746787965297699,-0.764131963253021,-0.462936341762543,0.44921287894249,-0.730969667434692,-0.462718337774277,0.501572668552399,-0.781888067722321,-0.444380909204483,0.437237501144409,-0.806883811950684,-0.447147369384766,0.386002361774445,-0.586188852787018,-0.475560218095779,0.655915439128876,-0.54809832572937,-0.465574562549591,0.694858610630035,-0.599214673042297,-0.449337095022202,0.662599444389343,-0.638755738735199,-0.468387067317963,0.610413610935211,-0.717995405197144,-0.391631662845612,0.575419247150421,-0.769440650939941,-0.361524939537048,0.526555776596069,-0.799119532108307,-0.402985364198685,0.446106284856796,-0.752129912376404,-0.424689501523972,0.503924071788788,-0.692995250225067,-0.448746055364609,0.564255774021149,-0.654242038726807,-0.423821270465851,0.626372873783112,-0.717995405197144,-0.391631662845612,0.575419247150421,-0.752129912376404,-0.424689501523972,0.503924071788788,-0.382338881492615,-0.421155601739883,0.822462737560272,-0.45688870549202,-0.418798744678497,0.784767627716064,-0.401788741350174,-0.485980093479156,0.776137351989746,-0.344740658998489,-0.487214267253876,0.802356600761414,-0.599214673042297,-0.449337095022202,0.662599444389343,-0.54809832572937,-0.465574562549591,0.694858610630035,-0.506363272666931,-0.447443634271622,0.737150132656097,-0.557535588741302,-0.420800060033798,0.715598702430725,-0.614830255508423,-0.388362407684326,0.686409711837769, +-0.577608823776245,-0.339330643415451,0.742443740367889,-0.643299996852875,-0.285868346691132,0.710242450237274,-0.681010067462921,-0.34606796503067,0.645338952541351,-0.643299996852875,-0.285868346691132,0.710242450237274,-0.696622431278229,-0.237921595573425,0.676838636398315,-0.735380709171295,-0.306696236133575,0.604278564453125,-0.681010067462921,-0.34606796503067,0.645338952541351,-0.862800300121307,-0.420902848243713,0.28002941608429,-0.870072960853577,-0.391978114843369,0.298875033855438,-0.893979787826538,-0.394452691078186,0.212619945406914,-0.891054093837738,-0.395765334367752,0.222243919968605,-0.892156720161438,-0.324062049388885,0.314706414937973,-0.900952637195587,-0.363071650266647,0.237620115280151,-0.870072960853577,-0.391978114843369,0.298875033855438,-0.858109652996063,-0.358777672052383,0.367323279380798,-0.696622431278229,-0.237921595573425,0.676838636398315,-0.643299996852875,-0.285868346691132,0.710242450237274,-0.61769962310791,-0.237255573272705,0.749771356582642,-0.668188512325287,-0.175477385520935,0.723001956939697,-0.806959450244904,-0.0900647863745689,0.583699226379395,-0.769385576248169,-0.151652723550797,0.620521783828735,-0.73224937915802,-0.0923039242625237,0.674752414226532,-0.771739482879639,-0.021193141117692,0.635585427284241,-0.932035624980927,-0.32358592748642,0.163100019097328,-0.958916962146759,-0.268307656049728,0.0921370089054108,-0.952396750450134,-0.302878350019455,0.0347160324454308,-0.932711660861969,-0.346270352602005,0.10072585195303,-0.916360914707184,-0.198118641972542,0.347895950078964,-0.951594173908234,-0.117630645632744,0.283956855535507,-0.962175190448761,-0.203447386622429,0.181185275316238,-0.929237723350525,-0.27287819981575,0.249107643961906,-0.977048754692078,-0.210245251655579,0.0342478863894939,-0.988789319992065,-0.147783741354942,-0.0213431045413017,-0.978924870491028,-0.191251680254936,-0.0716174766421318,-0.967874825000763,-0.250627815723419,-0.0201032310724258,-0.972479999065399,-0.0425277799367905,0.229071795940399,-0.983691811561584,0.0357369296252728,0.176276281476021, +-0.995356321334839,-0.0649469271302223,0.0710470527410507,-0.982781887054443,-0.136359378695488,0.124682888388634,-0.993958592414856,-0.0808796733617783,-0.0741937384009361,-0.992118656635284,-0.00848364736884832,-0.125014245510101,-0.981316208839417,-0.0627042353153229,-0.181897863745689,-0.983983874320984,-0.127371191978455,-0.124709591269493,-0.985108971595764,0.117774337530136,0.125258356332779,-0.976541996002197,0.201258972287178,0.0765544474124908,-0.995416045188904,0.0910399705171585,-0.0293051023036242,-0.999738276004791,0.0112721426412463,0.019907470792532,-0.981865644454956,0.069051168859005,-0.176555037498474,-0.961841464042664,0.148484349250793,-0.229811370372772,-0.952480435371399,0.07363610714674,-0.295564949512482,-0.970815420150757,0.00323518086224794,-0.239805743098259,-0.952480435371399,0.07363610714674,-0.295564949512482,-0.961841464042664,0.148484349250793,-0.229811370372772,-0.931258499622345,0.227360337972641,-0.284718871116638,-0.92460024356842,0.147649690508842,-0.351160943508148,-0.957989275455475,0.28542160987854,0.0281243193894625,-0.929179430007935,0.369009584188461,-0.02138601988554,-0.957671821117401,0.25646111369133,-0.130737841129303,-0.981655716896057,0.173447653651237,-0.0791692063212395,-0.887727320194244,0.218530923128128,-0.405196785926819,-0.891023218631744,0.302407532930374,-0.338566601276398,-0.841935217380524,0.373304575681686,-0.389600723981857,-0.843363463878632,0.285134792327881,-0.455451726913452,-0.889850080013275,0.450553297996521,-0.0718943104147911,-0.841037273406982,0.52714604139328,-0.121545940637589,-0.87816721200943,0.416062653064728,-0.236038520932198,-0.922917366027832,0.338303685188293,-0.18377748131752,-0.791389107704163,0.350091516971588,-0.501137971878052,-0.784067809581757,0.440501511096954,-0.437259525060654,-0.718789637088776,0.50237250328064,-0.480586618185043,-0.731321692466736,0.412950783967972,-0.542807757854462,-0.783733904361725,0.597517430782318,-0.169511020183563,-0.718414783477783,0.661326229572296,-0.215703085064888,-0.761472582817078,0.555672168731689,-0.333748400211334, +-0.82421350479126,0.48866593837738,-0.286142706871033,-0.663238883018494,0.469251841306686,-0.583023846149445,-0.648189187049866,0.556029677391052,-0.520270943641663,-0.570380389690399,0.601022899150848,-0.559854984283447,-0.586081624031067,0.515829563140869,-0.624842584133148,-0.64716762304306,0.71720826625824,-0.258430629968643,-0.572802007198334,0.76435112953186,-0.296082854270935,-0.618495643138885,0.666654586791992,-0.415974497795105,-0.691979885101318,0.615448176860809,-0.377342462539673,-0.499635070562363,0.55302631855011,-0.666728317737579,-0.483266919851303,0.637818694114685,-0.599700212478638,-0.391689866781235,0.666319727897644,-0.634505271911621,-0.409706622362137,0.581074953079224,-0.703201591968536,-0.494097322225571,0.804125130176544,-0.330530822277069,-0.409441769123077,0.836996614933014,-0.363034576177597,-0.452260822057724,0.746307671070099,-0.488349348306656,-0.539260029792786,0.710267543792725,-0.452458471059799,-0.317597150802612,0.601453065872192,-0.733066260814667,-0.295942038297653,0.689684271812439,-0.660873651504517,-0.197084248065948,0.709033012390137,-0.677074491977692,-0.222790628671646,0.615127682685852,-0.756295084953308,-0.317929446697235,0.862894356250763,-0.392853856086731,-0.216100662946701,0.881461918354034,-0.41991114616394,-0.257429361343384,0.798309743404388,-0.544455528259277,-0.359151095151901,0.774681687355042,-0.520460069179535,-0.12533675134182,0.621041238307953,-0.773691475391388,-0.0991670340299606,0.720739305019379,-0.686076402664185,-0.00141373567748815,0.71882700920105,-0.695187568664551,-0.0240519866347313,0.615848958492279,-0.787497103214264,-0.115516379475594,0.890218913555145,-0.440643012523651,-0.0306913759559393,0.89065808057785,-0.453636556863785,-0.0603340454399586,0.82662570476532,-0.559508621692657,-0.153918191790581,0.816798090934753,-0.556012749671936,-0.0603340454399586,0.82662570476532,-0.559508621692657,-0.0306913759559393,0.89065808057785,-0.453636556863785,0.046020619571209,0.885125994682312,-0.463070333003998,0.0266171954572201,0.824205875396729,-0.565664410591125, +0.184642627835274,0.667108237743378,-0.721715807914734,0.278666794300079,0.623718321323395,-0.730287849903107,0.260247409343719,0.529694139957428,-0.807276487350464,0.168222367763519,0.568801522254944,-0.805087685585022,0.110308937728405,0.807806670665741,-0.579034030437469,0.122072115540504,0.873593509197235,-0.471097469329834,0.206236377358437,0.853951871395111,-0.477737009525299,0.197715505957603,0.777518510818481,-0.596970319747925,-0.115516379475594,0.890218913555145,-0.440643012523651,-0.216100662946701,0.881461918354034,-0.41991114616394,-0.17912083864212,0.940421402454376,-0.289003938436508,-0.0894457697868347,0.942907691001892,-0.320818662643433,-0.0109201166778803,0.937956571578979,-0.34658083319664,0.00974549166858196,0.97719269990921,-0.212130978703499,0.0853947922587395,0.970623910427094,-0.224937632679939,0.0637261047959328,0.930470943450928,-0.360780656337738,0.372894942760468,0.572880983352661,-0.729901909828186,0.462735444307327,0.516225755214691,-0.720685064792633,0.435032725334167,0.425925701856613,-0.793305635452271,0.35033118724823,0.480568736791611,-0.803941428661346,0.295671135187149,0.734853804111481,-0.610383868217468,0.305734843015671,0.821716368198395,-0.480945348739624,0.407908082008362,0.777762889862061,-0.478221565485001,0.395785719156265,0.684576153755188,-0.61213493347168,0.139876589179039,0.921451508998871,-0.362438380718231,0.161752223968506,0.960318624973297,-0.227210134267807,0.240361914038658,0.945226669311523,-0.220845133066177,0.222561627626419,0.908286392688751,-0.354234665632248,0.546164572238922,0.455898433923721,-0.702752351760864,0.626206994056702,0.388383895158768,-0.676034569740295,0.593215882778168,0.306513071060181,-0.744408965110779,0.514229416847229,0.370154410600662,-0.773662686347961,0.489397883415222,0.629499495029449,-0.603506445884705,0.501989424228668,0.726572453975677,-0.46914729475975,0.588184535503387,0.669372022151947,-0.453850239515305,0.575634002685547,0.569016814231873,-0.587252378463745,0.315279066562653,0.884803473949432,-0.343106389045715,0.321096897125244,0.923266470432281,-0.21089231967926, +0.403838217258453,0.892540633678436,-0.200713366270065,0.410055309534073,0.848762512207031,-0.333851516246796,0.702656030654907,0.306119412183762,-0.64231264591217,0.769560694694519,0.207985699176788,-0.603753447532654,0.736890017986298,0.123637452721596,-0.664610326290131,0.670958340167999,0.223740339279175,-0.706933557987213,0.65693324804306,0.50030654668808,-0.564032018184662,0.668926298618317,0.604225635528564,-0.432953864336014,0.745279669761658,0.528198301792145,-0.406896412372589,0.733676016330719,0.419614046812057,-0.534456253051758,0.500174343585968,0.803229987621307,-0.323492258787155,0.486889511346817,0.853006660938263,-0.187931269407272,0.564300119876862,0.807275474071503,-0.172833696007729,0.583394467830658,0.751233637332916,-0.308705508708954,0.174514397978783,0.977854073047638,-0.115526169538498,0.177220091223717,0.980723738670349,-0.082305058836937,0.247400924563408,0.964831233024597,-0.0888443067669868,0.247328132390976,0.96162736415863,-0.118750348687172,0.320006310939789,0.94010728597641,-0.117448836565018,0.318148761987686,0.943682849407196,-0.0907963067293167,0.391484260559082,0.916363656520844,-0.0837718173861504,0.395108222961426,0.912105083465576,-0.10933330655098,0.174514397978783,0.977854073047638,-0.115526169538498,0.161752223968506,0.960318624973297,-0.227210134267807,0.0853947922587395,0.970623910427094,-0.224937632679939,0.102393716573715,0.988690316677094,-0.109576374292374,0.471571207046509,0.876666605472565,-0.0952691808342934,0.465701639652252,0.882141351699829,-0.0703451931476593,0.534829676151276,0.843019902706146,-0.0572245009243488,0.542549788951874,0.836125791072845,-0.0808297097682953,-0.0665304213762283,0.979680120944977,-0.189210548996925,-0.145446747541428,0.976196050643921,-0.160892739892006,-0.119121558964252,0.990518391132355,-0.0684343054890633,-0.0452299304306507,0.995095789432526,-0.0879700407385826,-0.317929446697235,0.862894356250763,-0.392853856086731,-0.409441769123077,0.836996614933014,-0.363034576177597,-0.357482761144638,0.904777467250824,-0.231481567025185,-0.27144131064415,0.926926016807556,-0.25909024477005, +-0.224958717823029,0.965238332748413,-0.133073568344116,-0.30244854092598,0.947197139263153,-0.10650035738945,-0.259150177240372,0.965677917003632,-0.0175300035625696,-0.190349519252777,0.980754554271698,-0.0434475801885128,-0.494097322225571,0.804125130176544,-0.330530822277069,-0.572802007198334,0.76435112953186,-0.296082854270935,-0.514174401760101,0.840704441070557,-0.169825196266174,-0.438212841749191,0.875887155532837,-0.201968222856522,-0.377480208873749,0.92258208990097,-0.0796928331255913,-0.449486553668976,0.891828775405884,-0.0510223843157291,-0.396079361438751,0.917661011219025,0.031928289681673,-0.327474147081375,0.944837749004364,0.00650394847616553,-0.64716762304306,0.71720826625824,-0.258430629968643,-0.718414783477783,0.661326229572296,-0.215703085064888,-0.657214224338531,0.747901797294617,-0.0933400020003319,-0.586880564689636,0.798507153987885,-0.134005635976791,-0.518908381462097,0.854644656181335,-0.0177868530154228,-0.585924983024597,0.810102999210358,0.0206161811947823,-0.526555061340332,0.844215154647827,0.10020288079977,-0.463158577680588,0.884012401103973,0.0632952079176903,-0.783733904361725,0.597517430782318,-0.169511020183563,-0.841037273406982,0.52714604139328,-0.121545940637589,-0.780999481678009,0.624509215354919,-0.00528806122019887,-0.722513437271118,0.689560055732727,-0.0498116724193096,-0.648475646972656,0.758761942386627,0.0613153427839279,-0.705668389797211,0.701148271560669,0.102093808352947,-0.639467358589172,0.748440444469452,0.175836607813835,-0.585065543651581,0.799091279506683,0.138389065861702,-0.889850080013275,0.450553297996521,-0.0718943104147911,-0.929179430007935,0.369009584188461,-0.02138601988554,-0.875840365886688,0.474394708871841,0.0886186510324478,-0.832585334777832,0.552391707897186,0.0408043265342712,-0.758039057254791,0.635898411273956,0.144948020577431,-0.803018748760223,0.564331591129303,0.191548362374306,-0.737169861793518,0.623049080371857,0.261515915393829,-0.691290974617004,0.689502418041229,0.216109454631805,-0.957989275455475,0.28542160987854,0.0281243193894625, +-0.976541996002197,0.201258972287178,0.0765544474124908,-0.932594478130341,0.310946047306061,0.1832485049963,-0.909105718135834,0.393671333789825,0.136196926236153,-0.838186502456665,0.490378469228745,0.238688811659813,-0.865068256855011,0.413032412528992,0.284712344408035,-0.801302313804626,0.483456403017044,0.352398425340652,-0.773093402385712,0.554619550704956,0.307772368192673,-0.985108971595764,0.117774337530136,0.125258356332779,-0.983691811561584,0.0357369296252728,0.176276281476021,-0.948792636394501,0.142214477062225,0.282077103853226,-0.946088373661041,0.226722091436386,0.231330424547195,-0.883519411087036,0.33091926574707,0.331490367650986,-0.890903055667877,0.246581584215164,0.381430476903915,-0.835203111171722,0.321155399084091,0.446424633264542,-0.823263823986053,0.405250430107117,0.397503346204758,-0.972479999065399,-0.0425277799367905,0.229071795940399,-0.951594173908234,-0.117630645632744,0.283956855535507,-0.92164021730423,-0.0199238639324903,0.387533903121948,-0.940581858158112,0.0603801645338535,0.334155887365341,-0.886175274848938,0.164690569043159,0.433093935251236,-0.870449483394623,0.0830995962023735,0.485192745923996,-0.820317208766937,0.158004999160767,0.549649119377136,-0.833661079406738,0.238615781068802,0.498067915439606,-0.916360914707184,-0.198118641972542,0.347895950078964,-0.876031935214996,-0.260043561458588,0.406134605407715,-0.848035037517548,-0.180255398154259,0.498341739177704,-0.887793838977814,-0.108413174748421,0.447290360927582,-0.820317208766937,0.158004999160767,0.549649119377136,-0.870449483394623,0.0830995962023735,0.485192745923996,-0.841695845127106,-0.00998917780816555,0.539859533309937,-0.798848152160645,0.0667911916971207,0.597813129425049,-0.876031935214996,-0.260043561458588,0.406134605407715,-0.83791983127594,-0.303361445665359,0.453720301389694,-0.808619737625122,-0.233222469687462,0.540130913257599,-0.848035037517548,-0.180255398154259,0.498341739177704,-0.73224937915802,-0.0923039242625237,0.674752414226532,-0.769385576248169,-0.151652723550797,0.620521783828735, +-0.696622431278229,-0.237921595573425,0.676838636398315,-0.668188512325287,-0.175477385520935,0.723001956939697,-0.556985557079315,-0.297770321369171,0.775306284427643,-0.577608823776245,-0.339330643415451,0.742443740367889,-0.519807934761047,-0.379468739032745,0.765377700328827,-0.499127954244614,-0.344298511743546,0.795191764831543,-0.444655507802963,-0.372630298137665,0.814511001110077,-0.45688870549202,-0.418798744678497,0.784767627716064,-0.382338881492615,-0.421155601739883,0.822462737560272,-0.38238736987114,-0.391030460596085,0.837182939052582,-0.249737471342087,-0.43008890748024,0.867556750774384,-0.313730418682098,-0.42525526881218,0.848958790302277,-0.283904254436493,-0.500032007694244,0.818148076534271,-0.22851887345314,-0.511639177799225,0.828253865242004,-0.313335388898849,-0.403007745742798,0.85988712310791,-0.313730418682098,-0.42525526881218,0.848958790302277,-0.249737471342087,-0.43008890748024,0.867556750774384,-0.249733343720436,-0.413002550601959,0.875820815563202,-0.124484419822693,-0.44426617026329,0.887204170227051,-0.188580736517906,-0.436513692140579,0.879711866378784,-0.175832688808441,-0.520594835281372,0.835502088069916,-0.120851024985313,-0.529502272605896,0.839656114578247,-0.188823193311691,-0.425177991390228,0.885194540023804,-0.188580736517906,-0.436513692140579,0.879711866378784,-0.124484419822693,-0.44426617026329,0.887204170227051,-0.12226652354002,-0.438016802072525,0.890613377094269,0.00375296524725854,-0.462602734565735,0.886557698249817,-0.0596202239394188,-0.453271120786667,0.889376580715179,-0.0651194676756859,-0.538974046707153,0.839801430702209,-0.0148709500208497,-0.546777784824371,0.837145686149597,-0.0547016449272633,-0.442984163761139,0.894859075546265,-0.0596202239394188,-0.453271120786667,0.889376580715179,0.00375296524725854,-0.462602734565735,0.886557698249817,0.00962750148028135,-0.443623781204224,0.896161377429962,0.14280977845192,-0.489621847867966,0.860160291194916,0.0831158235669136,-0.47706526517868,0.874928951263428,0.0580517016351223,-0.560424447059631,0.826168537139893, +0.104750499129295,-0.574084997177124,0.812067627906799,0.186331108212471,-0.592158079147339,0.783983111381531,0.239478409290314,-0.51394134759903,0.82371985912323,0.191550135612488,-0.501517355442047,0.843675851821899,0.14632174372673,-0.584464251995087,0.798117458820343,0.0831158235669136,-0.47706526517868,0.874928951263428,0.14280977845192,-0.489621847867966,0.860160291194916,0.146074667572975,-0.459408015012741,0.876131534576416,0.0860292986035347,-0.447738289833069,0.890016496181488,0.276362746953964,-0.603672206401825,0.747799038887024,0.344436943531036,-0.531491994857788,0.773873031139374,0.291056036949158,-0.523903965950012,0.80050665140152,0.229851618409157,-0.598201811313629,0.767673671245575,0.191550135612488,-0.501517355442047,0.843675851821899,0.239478409290314,-0.51394134759903,0.82371985912323,0.253354251384735,-0.474762618541718,0.842859506607056,0.197569757699966,-0.470082193613052,0.860226213932037,0.462378114461899,-0.551173686981201,0.694560408592224,0.400741815567017,-0.540269434452057,0.73994255065918,0.327762573957443,-0.607410490512848,0.723618805408478,0.37295988202095,-0.617660999298096,0.692384123802185,0.291056036949158,-0.523903965950012,0.80050665140152,0.344436943531036,-0.531491994857788,0.773873031139374,0.36944305896759,-0.478993088006973,0.79628974199295,0.312162280082703,-0.476809442043304,0.821709990501404,0.479258000850677,-0.60183709859848,0.638830184936523,0.462378114461899,-0.551173686981201,0.694560408592224,0.37295988202095,-0.617660999298096,0.692384123802185,0.395584285259247,-0.638837397098541,0.659848392009735,0.400741815567017,-0.540269434452057,0.73994255065918,0.462378114461899,-0.551173686981201,0.694560408592224,0.485695958137512,-0.474673599004745,0.734019339084625,0.427676916122437,-0.480783700942993,0.765466809272766,0.538349330425262,-0.688024401664734,0.48662343621254,0.514005422592163,-0.674600124359131,0.529823660850525,0.426441371440887,-0.678310453891754,0.598366618156433,0.451989889144897,-0.678381264209747,0.579227149486542,0.595204889774323,-0.688462615013123,0.414427876472473, +0.571794867515564,-0.680693089962006,0.457938343286514,0.479769319295883,-0.66126811504364,0.576667845249176,0.506681323051453,-0.665714859962463,0.547811806201935,0.537122964859009,-0.508779227733612,0.672787189483643,0.589975774288177,-0.480722218751907,0.648717641830444,0.587909817695618,-0.418111532926559,0.69249165058136,0.535411775112152,-0.455697894096375,0.711107432842255,0.575408041477203,-0.622274518013,0.530735492706299,0.625729322433472,-0.61105877161026,0.48484018445015,0.604522049427032,-0.551361382007599,0.574937999248505,0.551442325115204,-0.568498313426971,0.610508859157562,-0.450006276369095,-0.846444249153137,-0.284651458263397,-0.43608346581459,-0.866951525211334,-0.241301119327545,-0.283677160739899,-0.895026683807373,-0.344172060489655,-0.296047419309616,-0.869268596172333,-0.395889043807983,0.649015724658966,-0.724012672901154,0.233632609248161,0.666373193264008,-0.729299187660217,0.155143544077873,0.669388949871063,-0.709360361099243,0.220740616321564,0.638048648834229,-0.70861405134201,0.301263988018036,0.617504775524139,-0.700287997722626,0.358168512582779,0.657448649406433,-0.696082293987274,0.288497149944305,0.645019233226776,-0.661725401878357,0.382190525531769,0.598159968852997,-0.669631063938141,0.440226018428802,0.669388949871063,-0.709360361099243,0.220740616321564,0.666373193264008,-0.729299187660217,0.155143544077873,0.69608348608017,-0.714667856693268,0.0686843767762184,0.705498099327087,-0.694082140922546,0.143256634473801,0.735452651977539,-0.674175262451172,0.0678021833300591,0.720624625682831,-0.693291246891022,-0.00687918392941356,0.728604137897491,-0.682628512382507,-0.0561624765396118,0.745784521102905,-0.666070699691772,0.0124649992212653,0.645019233226776,-0.661725401878357,0.382190525531769,0.657448649406433,-0.696082293987274,0.288497149944305,0.701837241649628,-0.679338157176971,0.214299380779266,0.69967257976532,-0.64206075668335,0.313394755125046,0.746381103992462,-0.619045197963715,0.244332656264305,0.738130390644073,-0.659674406051636,0.141397684812546,0.753818035125732,-0.651477694511414,0.0856461971998215, +0.769535660743713,-0.609962522983551,0.189104378223419,0.692671775817871,-0.584756374359131,0.422215312719345,0.751390159130096,-0.553865492343903,0.358672529459,0.749436497688293,-0.471412658691406,0.4648816883564,0.681458234786987,-0.513396203517914,0.521573483943939,0.669553101062775,-0.428348064422607,0.606808602809906,0.740843534469604,-0.37377342581749,0.558071911334991,0.730357885360718,-0.293995201587677,0.616558313369751,0.661891877651215,-0.356146603822708,0.659589886665344,0.780074834823608,-0.342749506235123,0.523455739021301,0.818539559841156,-0.30839329957962,0.484651058912277,0.805038034915924,-0.202450349926949,0.557608723640442,0.770061373710632,-0.249317109584808,0.587236344814301,0.749436497688293,-0.471412658691406,0.4648816883564,0.751390159130096,-0.553865492343903,0.358672529459,0.78271609544754,-0.540324926376343,0.308876156806946,0.786443173885345,-0.450319558382034,0.422752320766449,0.873752415180206,-0.246370196342468,0.419354557991028,0.92002922296524,-0.177577838301659,0.349302589893341,0.899268329143524,-0.0811507180333138,0.429803460836411,0.853722870349884,-0.141011282801628,0.501271367073059,0.823093414306641,-0.425131618976593,0.376537352800369,0.812692999839783,-0.523456871509552,0.255974501371384,0.859706342220306,-0.47694519162178,0.182834267616272,0.877372086048126,-0.369056403636932,0.306619495153427,0.790165066719055,-0.598218202590942,0.133320569992065,0.766637444496155,-0.64119815826416,0.0336434356868267,0.793124616146088,-0.608313262462616,-0.030135914683342,0.825988411903381,-0.560300529003143,0.0616962164640427,0.752277851104736,-0.658125996589661,-0.0307945888489485,0.732805252075195,-0.675644338130951,-0.080629974603653,0.769684135913849,-0.628690302371979,-0.111062847077847,0.773782789707184,-0.627123951911926,-0.089307077229023,0.929153501987457,-0.364609181880951,0.0611059926450253,0.954302668571472,-0.298781305551529,0.00601947866380215,0.976194858551025,-0.175322890281677,0.127692356705666,0.951949179172516,-0.244813591241837,0.184008032083511,0.860593736171722,-0.509265959262848,-0.00514257093891501, +0.820578932762146,-0.564198195934296,-0.0912728160619736,0.839317381381989,-0.525748729705811,-0.13832750916481,0.884390234947205,-0.463580310344696,-0.0542896836996078,0.947357892990112,-0.119896613061428,0.296880125999451,0.969369828701019,-0.0503770373761654,0.240383699536324,0.948241710662842,0.0431636907160282,0.314602136611938,0.928055465221405,-0.0259605720639229,0.371536076068878,0.794866800308228,-0.589686751365662,-0.143025696277618,0.787965297698975,-0.594851732254028,-0.158939957618713,0.805151879787445,-0.558473587036133,-0.199593648314476,0.811097860336304,-0.554378569126129,-0.186506614089012,0.983480274677277,0.0308409985154867,0.178368180990219,0.986513257026672,0.111237816512585,0.120074480772018,0.960481822490692,0.196264371275902,0.19737046957016,0.959444224834442,0.120866484940052,0.254672318696976,0.976194858551025,-0.175322890281677,0.127692356705666,0.954302668571472,-0.298781305551529,0.00601947866380215,0.974614024162292,-0.217087969183922,-0.0547754727303982,0.993611633777618,-0.0920406728982925,0.0653025358915329,0.960481822490692,0.196264371275902,0.19737046957016,0.986513257026672,0.111237816512585,0.120074480772018,0.979358315467834,0.191341489553452,0.06515983492136,0.952094554901123,0.270137429237366,0.143323495984077,0.908385753631592,-0.404361069202423,-0.10643108934164,0.859358966350555,-0.475353062152863,-0.188524782657623,0.879428505897522,-0.408119976520538,-0.245037645101547,0.930319607257843,-0.328022837638855,-0.164031624794006,0.826898038387299,-0.510238647460938,-0.236423403024673,0.819592118263245,-0.515669465065002,-0.249707385897636,0.832048237323761,-0.463703989982605,-0.304424643516541,0.842096567153931,-0.453032582998276,-0.292634457349777,0.851745009422302,-0.330859512090683,-0.406278759241104,0.849175751209259,-0.250202924013138,-0.465079635381699,0.858510553836823,-0.234561249613762,-0.45600488781929,0.861055910587311,-0.315059125423431,-0.399149745702744,0.999950885772705,-0.00731708062812686,0.00668945023790002,0.985015511512756,-0.131152734160423,-0.111998006701469, +0.985378921031952,-0.0422622635960579,-0.165052816271782,0.995735764503479,0.0789374336600304,-0.0477415397763252,0.934175550937653,0.344187408685684,0.0940809994935989,0.962026715278625,0.272541016340256,0.0150327840819955,0.932343363761902,0.360444962978363,-0.0285530481487513,0.903263330459595,0.426120489835739,0.0503648966550827,0.900376737117767,-0.254473626613617,-0.352937579154968,0.898228764533997,-0.168878749012947,-0.40578955411911,0.945272564888,-0.0663446038961411,-0.319465428590775,0.949790418148041,-0.157779544591904,-0.270191848278046,0.832771897315979,-0.165779039263725,-0.528212368488312,0.806999921798706,-0.0808405429124832,-0.584992110729218,0.816720545291901,-0.0636803731322289,-0.573508739471436,0.842951416969299,-0.149763450026512,-0.516724169254303,0.980983018875122,0.168127223849297,-0.0969822108745575,0.975569725036621,0.0501008406281471,-0.213900655508041,0.954551696777344,0.147012412548065,-0.259265094995499,0.95468407869339,0.2624471783638,-0.14035576581955,0.859487116336823,0.510881364345551,0.0167967341840267,0.890067100524902,0.451686024665833,-0.0613209456205368,0.839566946029663,0.536263287067413,-0.0868856757879257,0.808724880218506,0.588143289089203,-0.00718142557889223,0.883886933326721,-0.078911766409874,-0.460995405912399,0.857020735740662,0.0137094240635633,-0.515099585056305,0.900184452533722,0.127867370843887,-0.416314512491226,0.92915153503418,0.0292609836906195,-0.368539243936539,0.774527788162231,0.00857221893966198,-0.632481813430786,0.727321803569794,0.107878863811493,-0.67776483297348,0.736890017986298,0.123637452721596,-0.664610326290131,0.783284842967987,0.025508064776659,-0.621139407157898,0.819956660270691,0.108194477856159,-0.562107741832733,0.769560694694519,0.207985699176788,-0.603753447532654,0.803265392780304,0.325351893901825,-0.498909711837769,0.858935952186584,0.22618767619133,-0.459421545267105,0.66083151102066,0.692164480686188,-0.29018959403038,0.636554300785065,0.754995405673981,-0.157418131828308,0.707728087902069,0.692660927772522,-0.139074712991714, +0.735069274902344,0.622829079627991,-0.267874896526337,0.916594564914703,0.358545124530792,-0.176917612552643,0.921252012252808,0.246230497956276,-0.301106989383698,0.875946342945099,0.343207210302353,-0.339008659124374,0.868082940578461,0.450471818447113,-0.208584070205688,0.609834909439087,0.789600491523743,-0.0680627301335335,0.600964903831482,0.79797101020813,-0.0456449538469315,0.66944807767868,0.742208540439606,-0.0310766007751226,0.678595781326294,0.732632577419281,-0.0525086522102356,-0.133779078722,-0.680474936962128,-0.720456123352051,-0.131930723786354,-0.681313514709473,-0.720004379749298,-0.110655330121517,-0.688726544380188,-0.716527104377747,-0.112105816602707,-0.688443601131439,-0.716573536396027,-0.335494428873062,-0.661771655082703,-0.670448958873749,-0.331621617078781,-0.676528692245483,-0.657522618770599,-0.330829322338104,-0.677279531955719,-0.657148659229279,-0.335570245981216,-0.662386834621429,-0.669803202152252,-0.325640648603439,-0.642441153526306,-0.693705558776855,-0.335494428873062,-0.661771655082703,-0.670448958873749,-0.335570245981216,-0.662386834621429,-0.669803202152252,-0.326311439275742,-0.643151104450226,-0.692731976509094,-0.266298681497574,-0.62615567445755,-0.732812404632568,-0.263311922550201,-0.626739621162415,-0.733392357826233,-0.283636540174484,-0.624852120876312,-0.72739964723587,-0.286234974861145,-0.624946177005768,-0.726300060749054,-0.240244805812836,-0.633132696151733,-0.735816121101379,-0.240346282720566,-0.632760345935822,-0.736103296279907,-0.246277421712875,-0.631740272045135,-0.735018014907837,-0.248584896326065,-0.630830347537994,-0.735022842884064,-0.276448965072632,-0.585005700588226,-0.762459397315979,-0.278891921043396,-0.581353366374969,-0.764360785484314,-0.252252370119095,-0.617995500564575,-0.744614124298096,-0.249794900417328,-0.62091737985611,-0.74301016330719,-0.31428724527359,-0.497494995594025,-0.808530867099762,-0.314271688461304,-0.497389316558838,-0.808601915836334,-0.305504411458969,-0.533116340637207,-0.788957476615906,-0.304830878973007,-0.53460556268692,-0.788210034370422, +-0.27556037902832,-0.505128145217896,-0.817870318889618,-0.274535477161407,-0.505881547927856,-0.817749500274658,-0.300577074289322,-0.490728765726089,-0.817825615406036,-0.300957828760147,-0.490586549043655,-0.817770779132843,-0.215495899319649,-0.537741661071777,-0.81510454416275,-0.214918076992035,-0.537965834140778,-0.815109252929688,-0.245151177048683,-0.52419525384903,-0.815548956394196,-0.246263295412064,-0.523610651493073,-0.815589487552643,-0.189321994781494,-0.549835085868835,-0.813534617424011,-0.214918076992035,-0.537965834140778,-0.815109252929688,-0.215495899319649,-0.537741661071777,-0.81510454416275,-0.189097732305527,-0.549964070320129,-0.813499510288239,-0.164602309465408,-0.573203027248383,-0.802710652351379,-0.173420339822769,-0.561714231967926,-0.808951497077942,-0.173048168420792,-0.562138199806213,-0.808736622333527,-0.164278373122215,-0.573717713356018,-0.80240923166275,-0.151468485593796,-0.598953425884247,-0.786328196525574,-0.157659485936165,-0.584703385829926,-0.795779824256897,-0.15732941031456,-0.585274159908295,-0.795425415039063,-0.151271924376488,-0.599557757377625,-0.785905420780182,-0.151015251874924,-0.640903294086456,-0.752620339393616,-0.148626983165741,-0.618782639503479,-0.771374106407166,-0.148628354072571,-0.619264721870422,-0.770986914634705,-0.151113465428352,-0.641322433948517,-0.752243518829346,-0.145204231142998,-0.65549910068512,-0.741105079650879,-0.15277673304081,-0.654557287693024,-0.74041473865509,-0.152739897370338,-0.654735684394836,-0.740264713764191,-0.144835248589516,-0.655376970767975,-0.741285145282745,-0.126555547118187,-0.651863813400269,-0.747701287269592,-0.131772413849831,-0.651964604854584,-0.746711611747742,-0.131481021642685,-0.65190988779068,-0.746810734272003,-0.126633167266846,-0.651922643184662,-0.74763697385788,-0.150572150945663,-0.660155892372131,-0.735881984233856,-0.136354818940163,-0.654931247234344,-0.74328488111496,-0.136945024132729,-0.655062794685364,-0.743060410022736,-0.151440799236298,-0.660661280155182,-0.735249876976013,-0.143325984477997,-0.673335433006287,-0.725311696529388, +-0.15520840883255,-0.667714178562164,-0.728057742118835,-0.154575526714325,-0.668674230575562,-0.727310955524445,-0.140573590993881,-0.673602104187012,-0.725602626800537,-0.107051208615303,-0.672619819641113,-0.732204020023346,-0.123079419136047,-0.673336923122406,-0.729019165039063,-0.120388351380825,-0.673010230064392,-0.729769706726074,-0.10559643805027,-0.672812163829803,-0.732238471508026,-0.0999423414468765,-0.683481216430664,-0.72309410572052,-0.100126057863235,-0.67645788192749,-0.729643404483795,-0.0999239310622215,-0.677327334880829,-0.728864014148712,-0.100107461214066,-0.684249401092529,-0.72234433889389,-0.201174274086952,-0.659834444522858,-0.723980247974396,-0.201174274086952,-0.659834444522858,-0.723980188369751,-0.174767300486565,-0.667144238948822,-0.724137365818024,-0.175847545266151,-0.666855692863464,-0.724141538143158,0.624014139175415,0.759613454341888,-0.183285713195801,0.620675325393677,0.76087886095047,-0.189276546239853,0.618687748908997,0.761609256267548,-0.192812785506248,0.624014139175415,0.759613513946533,-0.183285728096962,-0.738376140594482,0.553140342235565,-0.385793387889862,-0.781776070594788,0.524024784564972,-0.337970584630966,-0.798272311687469,0.530124366283417,-0.285883903503418,-0.743477463722229,0.553153276443481,-0.375849336385727,-0.406846165657043,0.713391602039337,-0.570568680763245,-0.30839017033577,0.761007130146027,-0.570757210254669,-0.292901903390884,0.769643068313599,-0.567325294017792,-0.376287013292313,0.728651523590088,-0.572254478931427,-0.860638737678528,0.457137316465378,-0.224335372447968,-0.90740305185318,0.396797657012939,-0.138460516929626,-0.900938510894775,0.419384926557541,-0.111472643911839,-0.859592974185944,0.478953957557678,-0.178053542971611,0.0527840740978718,-0.859681189060211,0.508096575737,0.164380639791489,-0.855252325534821,0.491449356079102,0.167500168085098,-0.865407705307007,0.472242712974548,0.0549963153898716,-0.868799448013306,0.492100536823273,-0.743477463722229,0.553153276443481,-0.375849336385727,-0.798272311687469,0.530124366283417,-0.285883903503418, +-0.814059317111969,0.537978768348694,-0.218829795718193,-0.744617640972137,0.660144925117493,-0.0987584739923477,-0.683482110500336,0.725125372409821,-0.0839360430836678,-0.811946928501129,0.565707921981812,-0.14393275976181,-0.843974232673645,0.522969901561737,-0.119205728173256,-0.947261154651642,0.319281250238419,-0.0274942461401224,-0.951346158981323,0.287874907255173,-0.109856426715851,-0.912573993206024,0.388484388589859,-0.127626731991768,-0.918371617794037,0.390708565711975,-0.0627716854214668,-0.900938510894775,0.419384926557541,-0.111472643911839,-0.889240443706512,0.449245005846024,-0.0862003862857819,-0.843974232673645,0.522969901561737,-0.119205728173256,-0.859592974185944,0.478953957557678,-0.178053542971611,-0.955544769763947,0.294668227434158,-0.0102290902286768,-0.947261154651642,0.319281250238419,-0.0274942461401224,-0.918371617794037,0.390708565711975,-0.0627716854214668,-0.92960125207901,0.36357918381691,-0.0604298189282417,-0.987307488918304,0.139714926481247,0.0755233690142632,-0.99634850025177,0.0785757973790169,-0.0334018729627132,-0.979847371578217,0.185717090964317,-0.073540635406971,-0.972454786300659,0.232009574770927,0.0224324688315392,-0.976454496383667,0.21052885055542,0.0470547378063202,-0.986934840679169,0.122394517064095,0.104781582951546,-0.987307488918304,0.139714926481247,0.0755233690142632,-0.972454786300659,0.232009574770927,0.0224324688315392,-0.986721277236938,0.0343642346560955,0.158745467662811,-0.976034700870514,-0.0560142807662487,0.210282236337662,-0.982541799545288,-0.0464207492768764,0.180157080292702,-0.990691781044006,0.0481399334967136,0.127327635884285,-0.982541799545288,-0.0464207492768764,0.180157080292702,-0.989922285079956,-0.128704234957695,0.0590685904026031,-0.999632596969604,-0.024996817111969,0.0104765007272363,-0.990691781044006,0.0481399334967136,0.127327635884285,-0.913626968860626,-0.2585569024086,0.313742280006409,-0.920667409896851,-0.261755883693695,0.289578258991241,-0.959386348724365,-0.15290679037571,0.237060010433197,-0.9515420794487,-0.157129183411598,0.264344722032547, +-0.920667409896851,-0.261755883693695,0.289578258991241,-0.923906803131104,-0.350475400686264,0.153502926230431,-0.964792847633362,-0.23948872089386,0.108719922602177,-0.959386348724365,-0.15290679037571,0.237060010433197,-0.814648389816284,-0.428444564342499,0.390874922275543,-0.816639423370361,-0.443349331617355,0.369515031576157,-0.874306321144104,-0.355029731988907,0.330971568822861,-0.869904160499573,-0.344727694988251,0.352745860815048,-0.816639423370361,-0.443349331617355,0.369515031576157,-0.816357493400574,-0.526052474975586,0.238389000296593,-0.874287188053131,-0.444662630558014,0.194671720266342,-0.874306321144104,-0.355029731988907,0.330971568822861,-0.655916690826416,-0.594900608062744,0.46461433172226,-0.658049702644348,-0.613114595413208,0.43710532784462,-0.741130948066711,-0.533721506595612,0.407266885042191,-0.740242719650269,-0.516140162944794,0.430859804153442,-0.658049702644348,-0.613114595413208,0.43710532784462,-0.662330687046051,-0.682317793369293,0.309451997280121,-0.743408679962158,-0.607501566410065,0.279795318841934,-0.741130948066711,-0.533721506595612,0.407266885042191,-0.488165080547333,-0.713943779468536,0.501975178718567,-0.494536310434341,-0.729181885719299,0.472998470067978,-0.577624619007111,-0.675775766372681,0.457904875278473,-0.572315573692322,-0.659300088882446,0.487625062465668,-0.494536310434341,-0.729181885719299,0.472998470067978,-0.503096342086792,-0.787679493427277,0.35560530424118,-0.583747565746307,-0.740580976009369,0.332834243774414,-0.577624619007111,-0.675775766372681,0.457904875278473,-0.307396441698074,-0.799743235111237,0.515672445297241,-0.309250980615616,-0.816498398780823,0.487538814544678,-0.401980251073837,-0.77776312828064,0.48321470618248,-0.397733628749847,-0.761988639831543,0.511058747768402,-0.309250980615616,-0.816498398780823,0.487538814544678,-0.322065383195877,-0.867081880569458,0.380056381225586,-0.413431167602539,-0.830815196037292,0.372586518526077,-0.401980251073837,-0.77776312828064,0.48321470618248,-0.132950618863106,-0.847913205623627,0.513193190097809, +-0.132824167609215,-0.865383505821228,0.483186483383179,-0.221417143940926,-0.844668567180634,0.487349599599838,-0.220776677131653,-0.827487289905548,0.516258358955383,-0.132824167609215,-0.865383505821228,0.483186483383179,-0.14847406744957,-0.909900665283203,0.387345194816589,-0.235287219285965,-0.892800092697144,0.384119659662247,-0.221417143940926,-0.844668567180634,0.487349599599838,0.459566861391068,0.580215632915497,-0.672419607639313,0.468959599733353,0.572989761829376,-0.672130525112152,0.522631466388702,0.52667498588562,-0.670425057411194,0.518942415714264,0.530140519142151,-0.670559287071228,0.0555270127952099,-0.882919192314148,0.466230094432831,-0.0612419098615646,-0.875404536724091,0.479496031999588,-0.0588114634156227,-0.859771072864532,0.50728178024292,0.0549963153898716,-0.868799448013306,0.492100536823273,0.911651849746704,0.21585613489151,-0.349709928035736,0.877000987529755,0.273720771074295,-0.394900232553482,0.885988175868988,0.331858158111572,-0.323875039815903,0.916033148765564,0.253893882036209,-0.31051766872406,0.916033148765564,0.253893882036209,-0.31051766872406,0.885988175868988,0.331858158111572,-0.323875039815903,0.854619920253754,0.462648421525955,-0.235756620764732,0.90735912322998,0.327252179384232,-0.263828545808792,-0.901660442352295,-0.406467497348785,0.147623583674431,-0.893979787826538,-0.394452691078186,0.212619945406914,-0.909937858581543,-0.378480046987534,0.169605419039726,-0.915845632553101,-0.376419931650162,0.139767020940781,0.609950721263885,0.762418866157532,-0.216050073504448,0.618687748908997,0.761609256267548,-0.192812785506248,0.620675325393677,0.76087886095047,-0.189276546239853,0.611639082431793,0.762599647045135,-0.210569053888321,0.593896389007568,0.747401654720306,-0.297788292169571,0.592883467674255,0.745279550552368,-0.305037021636963,0.600798547267914,0.75727778673172,-0.256069362163544,0.602320432662964,0.758639752864838,-0.248346194624901,0.572996258735657,0.730179131031036,-0.372174292802811,0.586197257041931,0.732835471630096,-0.34543439745903,0.587114334106445,0.734397351741791,-0.340524971485138, +0.575162053108215,0.729697346687317,-0.369770616292953,0.491415441036224,0.766980826854706,-0.412615060806274,0.541781783103943,0.743212997913361,-0.392564624547958,0.544345319271088,0.741977870464325,-0.391352832317352,0.49193611741066,0.766742885112762,-0.412436872720718,0.392403036355972,0.804813265800476,-0.445303857326508,0.391716867685318,0.804998159408569,-0.445573478937149,0.437617421150208,0.789674758911133,-0.430005431175232,0.437843203544617,0.789587140083313,-0.429936528205872,0.311930775642395,0.81404572725296,-0.489927411079407,0.310799360275269,0.813979983329773,-0.490754902362823,0.349956303834915,0.812966823577881,-0.465419888496399,0.350885391235352,0.812869608402252,-0.464889824390411,0.248315528035164,0.808693766593933,-0.533248245716095,0.246419936418533,0.808691084384918,-0.534131109714508,0.277576833963394,0.810672640800476,-0.51552015542984,0.278971761465073,0.81086939573288,-0.514456629753113,0.174513027071953,0.817176461219788,-0.549333930015564,0.172922670841217,0.817432641983032,-0.549455761909485,0.210988372564316,0.811657547950745,-0.544698059558868,0.213144317269325,0.811357200145721,-0.544305980205536,0.778215944766998,-0.18259771168232,-0.600864291191101,0.828360259532928,-0.0300242155790329,-0.559390544891357,0.737373352050781,-0.031020276248455,-0.6747727394104,0.696719229221344,-0.197553753852844,-0.689604878425598,0.0659392029047012,0.831221759319305,-0.55201667547226,0.0640055760741234,0.831448674201965,-0.55190247297287,0.10274013876915,0.82685112953186,-0.55295729637146,0.104121021926403,0.826686680316925,-0.552944660186768,-0.0102145839482546,0.843114256858826,-0.53763747215271,-0.0119663532823324,0.843527972698212,-0.536951959133148,0.0238861609250307,0.836716413497925,-0.54711502790451,0.0256383866071701,0.836462616920471,-0.547423958778381,-0.0698924884200096,0.857977271080017,-0.508910596370697,-0.073711171746254,0.858692944049835,-0.507161736488342,-0.0433149971067905,0.851748704910278,-0.522157073020935,-0.0406069159507751,0.850977182388306,-0.523630559444427,-0.143353164196014,0.863478124141693,-0.483585864305496, +-0.146081477403641,0.863504528999329,-0.482721507549286,-0.108135081827641,0.86235237121582,-0.494626253843307,-0.103941969573498,0.86212420463562,-0.495921313762665,-0.219543516635895,0.866546869277954,-0.448215395212173,-0.221855878829956,0.866800844669342,-0.446582913398743,-0.186123132705688,0.864151656627655,-0.467546939849854,-0.183443605899811,0.864085257053375,-0.468727260828018,-0.935437500476837,0.195304781198502,-0.294639825820923,-0.898703098297119,0.171856060624123,-0.403482407331467,-0.823954045772552,0.305536270141602,-0.477228790521622,-0.865604937076569,0.310322701931,-0.392973124980927,-0.273404330015182,0.876736223697662,-0.395706564188004,-0.249241292476654,0.871656596660614,-0.422011226415634,-0.248945012688637,0.871587932109833,-0.422327905893326,-0.274674355983734,0.876974403858185,-0.394296735525131,-0.331985771656036,0.881135821342468,-0.336727112531662,-0.300187408924103,0.879940271377563,-0.36822909116745,-0.30192095041275,0.880024611949921,-0.366606593132019,-0.333156764507294,0.881159543991089,-0.33550637960434,-0.364147961139679,0.881633937358856,-0.30019623041153,-0.331985771656036,0.881135821342468,-0.336727112531662,-0.333156764507294,0.881159543991089,-0.33550637960434,-0.364538729190826,0.881637215614319,-0.299712210893631,-0.419892162084579,0.887660384178162,-0.189075499773026,-0.419410139322281,0.887537896633148,-0.190713688731194,-0.404495000839233,0.883894979953766,-0.234762772917747,-0.40496352314949,0.883995652198792,-0.233572721481323,-0.433213293552399,0.890652656555176,-0.138072639703751,-0.419410139322281,0.887537896633148,-0.190713688731194,-0.419892162084579,0.887660384178162,-0.189075499773026,-0.434039801359177,0.890810430049896,-0.134410738945007,-0.450144737958908,0.89004510641098,-0.0720363855361938,-0.4430330991745,0.891295909881592,-0.0965056568384171,-0.44429424405098,0.891159057617188,-0.0918589681386948,-0.451899856328964,0.889547049999237,-0.0670273751020432,0.877000987529755,0.273720771074295,-0.394900232553482,0.813092112541199,0.317157566547394,-0.488151997327805, +0.866852104663849,0.323040276765823,-0.379752993583679,0.468959599733353,0.572989761829376,-0.672130525112152,0.459566861391068,0.580215632915497,-0.672419607639313,0.40032485127449,0.631075501441956,-0.664442360401154,0.405255615711212,0.62514317035675,-0.667056024074554,-0.125603437423706,0.553501427173615,0.823322534561157,-0.11994905769825,0.528654515743256,0.840319335460663,-0.119399562478065,0.527406990528107,0.841181039810181,-0.125519156455994,0.55262017250061,0.823927104473114,-0.876031935214996,-0.260043561458588,0.406134605407715,-0.892156720161438,-0.324062049388885,0.314706414937973,-0.858109652996063,-0.358777672052383,0.367323279380798,-0.83791983127594,-0.303361445665359,0.453720301389694,0.86610621213913,0.252949118614197,-0.431134313344955,0.877000987529755,0.273720771074295,-0.394900232553482,0.911651849746704,0.21585613489151,-0.349709928035736,0.905876934528351,0.188816040754318,-0.379124671220779,0.944790422916412,0.0985122472047806,-0.312516182661057,0.947456061840057,0.125703454017639,-0.294152349233627,0.969312310218811,0.0398840196430683,-0.242575719952583,0.967608690261841,0.0159410387277603,-0.251951068639755,0.0555270127952099,-0.882919192314148,0.466230094432831,0.0549963153898716,-0.868799448013306,0.492100536823273,0.167500168085098,-0.865407705307007,0.472242712974548,0.166357398033142,-0.882590651512146,0.439726024866104,0.978541135787964,-0.0698225051164627,-0.193861067295074,0.98090934753418,-0.0482441075146198,-0.188385933637619,0.981843054294586,-0.132750988006592,-0.135504081845284,0.978422582149506,-0.15277299284935,-0.139103621244431,-0.798272311687469,0.530124366283417,-0.285883903503418,-0.781776070594788,0.524024784564972,-0.337970584630966,-0.821043848991394,0.494009435176849,-0.286079853773117,-0.826098442077637,0.51407265663147,-0.230847612023354,0.969312310218811,0.0398840196430683,-0.242575719952583,0.947456061840057,0.125703454017639,-0.294152349233627,0.948522925376892,0.158655971288681,-0.27410301566124,0.969683349132538,0.0665881037712097,-0.235117182135582,0.969302654266357,-0.230619788169861,-0.0852455645799637, +0.972954988479614,-0.215911090373993,-0.0821031630039215,0.953635513782501,-0.299967586994171,-0.0244670808315277,0.951116383075714,-0.307683914899826,-0.0266134813427925,0.969683349132538,0.0665881037712097,-0.235117182135582,0.948522925376892,0.158655971288681,-0.27410301566124,0.942300260066986,0.206310003995895,-0.263640820980072,0.964405834674835,0.0926259011030197,-0.247672572731972,0.981843054294586,-0.132750988006592,-0.135504081845284,0.98090934753418,-0.0482441075146198,-0.188385933637619,0.981283009052277,-0.0284820459783077,-0.190453454852104,0.982332468032837,-0.12061496078968,-0.143090665340424,0.920806765556335,-0.388104379177094,0.0385987609624863,0.922876000404358,-0.383425444364548,0.0358439944684505,0.880649328231812,-0.464166402816772,0.0949017629027367,0.877260386943817,-0.468549102544785,0.10428760945797,0.982332468032837,-0.12061496078968,-0.143090665340424,0.981283009052277,-0.0284820459783077,-0.190453454852104,0.971750140190125,-0.03157814219594,-0.233889818191528,0.967540144920349,-0.151450991630554,-0.202308759093285,0.953635513782501,-0.299967586994171,-0.0244670808315277,0.972954988479614,-0.215911090373993,-0.0821031630039215,0.973664104938507,-0.210532173514366,-0.0874897167086601,0.954524636268616,-0.296981185674667,-0.0261688139289618,0.826095700263977,-0.540206670761108,0.160445302724838,0.831809818744659,-0.535389721393585,0.14645878970623,0.778777837753296,-0.59727555513382,0.19174724817276,0.771490097045898,-0.601684749126434,0.206829503178596,0.954524636268616,-0.296981185674667,-0.0261688139289618,0.973664104938507,-0.210532173514366,-0.0874897167086601,0.960675656795502,-0.244658857584,-0.131317600607872,0.949139714241028,-0.311926305294037,-0.0428455956280231,0.880649328231812,-0.464166402816772,0.0949017629027367,0.922876000404358,-0.383425444364548,0.0358439944684505,0.924851834774017,-0.378954350948334,0.0322904512286186,0.884804725646973,-0.457960724830627,0.0859798341989517,0.652794778347015,-0.703853130340576,0.280088663101196,0.646237850189209,-0.703299701213837,0.296220034360886, +0.712858200073242,-0.655102729797363,0.250346899032593,0.719806969165802,-0.652972102165222,0.235595718026161,0.884804725646973,-0.457960724830627,0.0859798341989517,0.924851834774017,-0.378954350948334,0.0322904512286186,0.927105009555817,-0.37350270152092,0.0311777666211128,0.892134010791779,-0.443053156137466,0.088321715593338,0.778777837753296,-0.59727555513382,0.19174724817276,0.831809818744659,-0.535389721393585,0.14645878970623,0.838367760181427,-0.528690338134766,0.13276332616806,0.786389470100403,-0.592391490936279,0.175111263990402,0.486940652132034,-0.785775065422058,0.381374508142471,0.568554759025574,-0.747995793819427,0.342414677143097,0.57744687795639,-0.749671220779419,0.32333916425705,0.498265773057938,-0.788217842578888,0.361169874668121,0.786389470100403,-0.592391490936279,0.175111263990402,0.838367760181427,-0.528690338134766,0.13276332616806,0.84704726934433,-0.515302360057831,0.130286008119583,0.793179631233215,-0.587970077991486,0.158611118793488,0.652794778347015,-0.703853130340576,0.280088663101196,0.719806969165802,-0.652972102165222,0.235595718026161,0.726612091064453,-0.652363717556,0.215537786483765,0.658525824546814,-0.708120167255402,0.254773437976837,0.409541070461273,-0.813731849193573,0.412451863288879,0.417820125818253,-0.818676173686981,0.393948674201965,0.335416465997696,-0.84122371673584,0.424073755741119,0.333080351352692,-0.833068609237671,0.441649496555328,0.658525824546814,-0.708120167255402,0.254773437976837,0.726612091064453,-0.652363717556,0.215537786483765,0.729008316993713,-0.660993576049805,0.177860140800476,0.65401816368103,-0.730486810207367,0.196594282984734,0.498265773057938,-0.788217842578888,0.361169874668121,0.57744687795639,-0.749671220779419,0.32333916425705,0.584298849105835,-0.756926715373993,0.29267218708992,0.506272315979004,-0.797325611114502,0.328573077917099,0.248413518071175,-0.846261382102966,0.471309334039688,0.246648907661438,-0.856903910636902,0.45263671875,0.167500168085098,-0.865407705307007,0.472242712974548,0.164380639791489,-0.855252325534821,0.491449356079102, +0.506272315979004,-0.797325611114502,0.328573077917099,0.584298849105835,-0.756926715373993,0.29267218708992,0.572824060916901,-0.789301693439484,0.221077963709831,0.490759581327438,-0.834341287612915,0.251056998968124,0.335416465997696,-0.84122371673584,0.424073755741119,0.417820125818253,-0.818676173686981,0.393948674201965,0.422532945871353,-0.8307785987854,0.362315893173218,0.334458231925964,-0.857013940811157,0.392001122236252,-0.376287013292313,0.728651523590088,-0.572254478931427,-0.456793338060379,0.683383703231812,-0.569496750831604,-0.467429101467133,0.675796866416931,-0.569919764995575,-0.406846165657043,0.713391602039337,-0.570568680763245,0.334458231925964,-0.857013940811157,0.392001122236252,0.422532945871353,-0.8307785987854,0.362315893173218,0.404788315296173,-0.870706856250763,0.279313683509827,0.3133405148983,-0.90071052312851,0.300895780324936,0.167500168085098,-0.865407705307007,0.472242712974548,0.246648907661438,-0.856903910636902,0.45263671875,0.241870358586311,-0.875452816486359,0.418426871299744,0.166357398033142,-0.882590651512146,0.439726024866104,0.166357398033142,-0.882590651512146,0.439726024866104,0.241870358586311,-0.875452816486359,0.418426871299744,0.217328935861588,-0.921589910984039,0.321620970964432,0.136749118566513,-0.922213733196259,0.361692309379578,-0.889240443706512,0.449245005846024,-0.0862003862857819,-0.860865592956543,0.495969742536545,-0.113685972988605,-0.744617640972137,0.660144925117493,-0.0987584739923477,-0.843974232673645,0.522969901561737,-0.119205728173256,0.64143294095993,0.646313726902008,0.413330554962158,0.628002107143402,0.599861085414886,0.49576199054718,0.628565549850464,0.606737673282623,0.486595183610916,0.641825318336487,0.646762669086456,0.412017375230789,0.622713625431061,0.68989759683609,0.369146555662155,0.644182443618774,0.67607319355011,0.357706844806671,0.642681956291199,0.678313136100769,0.356161832809448,0.620586752891541,0.689144194126129,0.374102026224136,0.704289674758911,0.361993014812469,0.6106858253479,0.700466275215149,0.373588889837265,0.608093917369843, +0.643332600593567,0.544254720211029,0.538432955741882,0.647596418857574,0.531895756721497,0.545624196529388,0.763162136077881,-0.0478351898491383,0.644434034824371,0.761871814727783,-0.0762636512517929,0.643222510814667,0.752030849456787,0.156789004802704,0.64020836353302,0.750935256481171,0.16413252055645,0.639653563499451,0.655378401279449,-0.569617092609406,0.495999574661255,0.647546052932739,-0.587461113929749,0.485359102487564,0.731726884841919,-0.323388040065765,0.59999668598175,0.737926602363586,-0.291203826665878,0.608822345733643,0.540803194046021,-0.169441625475883,-0.823906064033508,0.55413693189621,0.0203293543308973,-0.832177221775055,0.326417058706284,0.132676780223846,-0.935867965221405,0.334897696971893,-0.0841046497225761,-0.938493490219116,0.303154170513153,-0.952372372150421,-0.0329335294663906,0.306804835796356,-0.951423108577728,-0.025787265971303,0.400045692920685,-0.905632495880127,0.140688419342041,0.397924602031708,-0.907118320465088,0.137085676193237,0.228081583976746,-0.957955896854401,-0.174066856503487,0.306804835796356,-0.951423108577728,-0.025787265971303,0.303154170513153,-0.952372372150421,-0.0329335294663906,0.226329281926155,-0.957787454128265,-0.177251741290092,0.135781288146973,-0.925816714763641,-0.352742046117783,0.172327414155006,-0.945378541946411,-0.276699602603912,0.171095803380013,-0.944920122623444,-0.27902016043663,0.135377556085587,-0.925501048564911,-0.353724241256714,0.110524766147137,-0.903628170490265,-0.413812011480331,0.118901208043098,-0.908695995807648,-0.400167405605316,0.118964307010174,-0.908790230751038,-0.399934768676758,0.110330805182457,-0.903667628765106,-0.413777738809586,0.0899074226617813,-0.916323781013489,-0.390214711427689,0.0996146202087402,-0.90878564119339,-0.405198365449905,0.09856928139925,-0.909459233283997,-0.40394052863121,0.0897448509931564,-0.916646599769592,-0.389493077993393,0.0754015296697617,-0.94013112783432,-0.332367420196533,0.0902317091822624,-0.924302875995636,-0.37084025144577,0.0904627218842506,-0.925120770931244,-0.368738442659378, +0.072244867682457,-0.941955029964447,-0.327874034643173,0.0762006640434265,-0.911494791507721,-0.40419140458107,0.0762006565928459,-0.911494791507721,-0.404191374778748,0.0435533970594406,-0.938541233539581,-0.342408150434494,0.0333081744611263,-0.945908010005951,-0.322720646858215,0.892084538936615,0.349250137805939,-0.28672206401825,0.925961315631866,0.358618289232254,-0.118273474276066,0.925961256027222,0.358618319034576,-0.118273474276066,0.884384393692017,0.346845835447311,-0.312349528074265,0.755832016468048,0.077229879796505,-0.650195002555847,0.774797141551971,0.235764920711517,-0.586603999137878,0.774932444095612,0.23646168410778,-0.586144626140594,0.754852056503296,0.0852371454238892,-0.650333046913147,0.390802413225174,-0.649240672588348,-0.652502834796906,0.508342027664185,-0.511716187000275,-0.692629039287567,0.589030981063843,-0.390400886535645,-0.707551956176758,0.390802383422852,-0.649240672588348,-0.65250289440155,0.628565549850464,0.606737673282623,0.486595183610916,0.628002107143402,0.599861085414886,0.49576199054718,0.659926056861877,0.545951664447784,0.516172826290131,0.64510577917099,0.559508442878723,0.520373821258545,-0.749874413013458,-0.649870634078979,0.123921424150467,-0.615962624549866,-0.784222602844238,-0.0747325792908669,-0.637512445449829,-0.763310253620148,-0.104571707546711,-0.774207949638367,-0.622427701950073,0.114828921854496,-0.283677160739899,-0.895026683807373,-0.344172060489655,-0.43608346581459,-0.866951525211334,-0.241301119327545,-0.345061480998993,-0.93794047832489,-0.034643892198801,-0.209495022892952,-0.977356314659119,-0.0297738444060087,-0.793072164058685,-0.536082565784454,0.289226680994034,-0.749874413013458,-0.649870634078979,0.123921424150467,-0.774207949638367,-0.622427701950073,0.114828921854496,-0.808530688285828,-0.503699421882629,0.304245084524155,-0.168249413371086,-0.891458690166473,0.420705914497375,-0.323264300823212,-0.893875777721405,0.31062251329422,-0.32402503490448,-0.761790335178375,0.560966432094574,-0.151470959186554,-0.72859787940979,0.667983293533325, +-0.615962624549866,-0.784222602844238,-0.0747325792908669,-0.749874413013458,-0.649870634078979,0.123921424150467,-0.690646231174469,-0.708719432353973,0.14396008849144,-0.526382863521576,-0.84980571269989,0.0274089518934488,0.0111613245680928,-0.902023375034332,-0.431542724370956,0.00373921426944435,-0.886215329170227,-0.463258504867554,-0.0867995396256447,-0.877836525440216,-0.471029460430145,-0.0735059157013893,-0.902492582798004,-0.424386620521545,-0.0148709500208497,-0.546777784824371,0.837145686149597,0.0227749347686768,-0.551540493965149,0.83383721113205,0.0421831570565701,-0.467899739742279,0.882774233818054,0.00375296524725854,-0.462602734565735,0.886557698249817,-0.734706223011017,-0.481136739253998,0.478240579366684,-0.697560131549835,-0.470335334539413,0.540550231933594,-0.761715114116669,-0.472965806722641,0.442824393510818,-0.786434292793274,-0.495830059051514,0.368338942527771,-0.795078992843628,-0.522641837596893,0.307725340127945,-0.827638328075409,-0.502594292163849,0.249827116727829,-0.813471496105194,-0.5441814661026,0.205257400870323,-0.777065873146057,-0.580229818820953,0.243930459022522,-0.818716466426849,-0.481853991746902,0.312282085418701,-0.796359241008759,-0.469575434923172,0.381196916103363,-0.833627700805664,-0.454055666923523,0.314480870962143,-0.852851212024689,-0.460834175348282,0.245513066649437,-0.856022953987122,-0.446936935186386,0.259753704071045,-0.876991271972656,-0.436529546976089,0.200818419456482,-0.89263516664505,-0.431775778532028,0.129507496953011,-0.87469071149826,-0.4469875395298,0.187398746609688,-0.813471496105194,-0.5441814661026,0.205257400870323,-0.827638328075409,-0.502594292163849,0.249827116727829,-0.863405406475067,-0.466758787631989,0.191487044095993,-0.859839141368866,-0.488048911094666,0.149949714541435,-0.791991949081421,-0.481360405683517,0.375554114580154,-0.579777002334595,-0.606185019016266,0.544424891471863,-0.57186758518219,-0.715050220489502,0.402082890272141,-0.809677422046661,-0.528477609157562,0.255213528871536,-0.32402503490448,-0.761790335178375,0.560966432094574, +-0.323264300823212,-0.893875777721405,0.31062251329422,-0.549805819988251,-0.81207948923111,0.195551961660385,-0.57186758518219,-0.715050220489502,0.402082890272141,-0.897973656654358,-0.415340721607208,0.145380243659019,-0.901660442352295,-0.406467497348785,0.147623583674431,-0.908586740493774,-0.41457611322403,0.0509588904678822,-0.905779004096985,-0.416718542575836,0.0768770948052406,-0.919773280620575,-0.391606122255325,0.0257225576788187,-0.921752750873566,-0.387750774621964,-0.00461659394204617,-0.929993689060211,-0.359206169843674,-0.0779908671975136,-0.928229689598083,-0.368470788002014,-0.051173560321331,-0.942121505737305,0.0769172087311745,-0.326329469680786,-0.898703098297119,0.171856060624123,-0.403482407331467,-0.935437500476837,0.195304781198502,-0.294639825820923,-0.982199788093567,0.0583073571324348,-0.178560227155685,-0.697661697864532,0.332388252019882,-0.634654402732849,-0.575213491916656,0.470462590456009,-0.669174611568451,-0.641277730464935,0.478990405797958,-0.599442362785339,-0.748102724552155,0.32606166601181,-0.57794976234436,-0.790207624435425,0.181348204612732,-0.585392892360687,-0.697661697864532,0.332388252019882,-0.634654402732849,-0.748102724552155,0.32606166601181,-0.57794976234436,-0.834174335002899,0.171858638525009,-0.5240398645401,-0.994655311107635,-0.101891376078129,0.0167029183357954,-0.989118337631226,-0.146823719143867,0.00936732348054647,-0.989501714706421,-0.0315624251961708,-0.141032323241234,-0.982199788093567,0.0583073571324348,-0.178560227155685,-0.963285148143768,-0.0192505791783333,-0.267789155244827,-0.942121505737305,0.0769172087311745,-0.326329469680786,-0.982199788093567,0.0583073571324348,-0.178560227155685,-0.989501714706421,-0.0315624251961708,-0.141032323241234,-0.823954045772552,0.305536270141602,-0.477228790521622,-0.75459223985672,0.465805470943451,-0.462185889482498,-0.877688050270081,0.354772627353668,-0.322179943323135,-0.865604937076569,0.310322701931,-0.392973124980927,-0.935437500476837,0.195304781198502,-0.294639825820923,-0.950916528701782,0.21599979698658,-0.221589237451553, +-0.992425382137299,0.0758751183748245,-0.0966177135705948,-0.982199788093567,0.0583073571324348,-0.178560227155685,-0.920321881771088,-0.327427268028259,0.214006915688515,-0.989118337631226,-0.146823719143867,0.00936732348054647,-0.994655311107635,-0.101891376078129,0.0167029183357954,-0.927526652812958,-0.294440418481827,0.230215579271317,-0.579777002334595,-0.606185019016266,0.544424891471863,-0.791991949081421,-0.481360405683517,0.375554114580154,-0.806884944438934,-0.426367670297623,0.408836483955383,-0.618817448616028,-0.515431046485901,0.592786431312561,-0.410768628120422,-0.539873957633972,0.734714508056641,-0.481036573648453,-0.51708996295929,0.707970261573792,-0.286115288734436,-0.561390459537506,0.7765172123909,-0.221544876694679,-0.532006800174713,0.817243337631226,-0.995732367038727,-0.061074536293745,0.0691885873675346,-0.99565178155899,-0.0596222244203091,0.0715730264782906,-0.961964964866638,-0.189852878451347,0.196416199207306,-0.955482244491577,-0.198175624012947,0.218586787581444,-0.992425382137299,0.0758751183748245,-0.0966177135705948,-0.950916528701782,0.21599979698658,-0.221589237451553,-0.958378195762634,0.224283918738365,-0.176657557487488,-0.99448174238205,0.0828595161437988,-0.0643451437354088,-0.868031859397888,-0.325687199831009,0.374764561653137,-0.888508915901184,-0.317623674869537,0.33116027712822,-0.766794502735138,-0.438713759183884,0.468568503856659,-0.727981090545654,-0.439335078001022,0.526334643363953,-0.542957484722137,-0.530088305473328,0.651309132575989,-0.589996457099915,-0.546522796154022,0.59432065486908,-0.357145041227341,-0.631978631019592,0.68778657913208,-0.322585374116898,-0.604224324226379,0.728595554828644,-0.357145041227341,-0.631978631019592,0.68778657913208,-0.589996457099915,-0.546522796154022,0.59432065486908,-0.621844053268433,-0.554872512817383,0.552654087543488,-0.391105264425278,-0.649304211139679,0.652258217334747,-0.899721562862396,-0.317192137241364,0.299816757440567,-0.906161427497864,-0.320504367351532,0.275950133800507,-0.803848206996918,-0.441196978092194,0.398965179920197, +-0.790132105350494,-0.438907355070114,0.427845478057861,-0.961964964866638,-0.189852878451347,0.196416199207306,-0.99565178155899,-0.0596222244203091,0.0715730264782906,-0.9949871301651,-0.0745253637433052,0.0666825249791145,-0.96444433927536,-0.195159658789635,0.178212627768517,-0.413879901170731,-0.662914633750916,0.623897194862366,-0.641457080841064,-0.561519980430603,0.522712171077728,-0.653650760650635,-0.573908030986786,0.493325710296631,-0.426668673753738,-0.682175099849701,0.593793630599976,-0.424601227045059,-0.704623579978943,0.56852388381958,-0.657342493534088,-0.591104388237,0.467435896396637,-0.652212262153625,-0.616112947463989,0.441615134477615,-0.413804799318314,-0.731874048709869,0.541411101818085,-0.910029172897339,-0.32787424325943,0.253663927316666,-0.9108806848526,-0.34015691280365,0.233644440770149,-0.815835297107697,-0.461970567703247,0.34784460067749,-0.812784016132355,-0.448714226484299,0.371534198522568,-0.9654181599617,-0.204183220863342,0.162102371454239,-0.994104743003845,-0.0917158871889114,0.0578270591795444,-0.993054449558258,-0.108172722160816,0.04627750441432,-0.965633988380432,-0.21521945297718,0.145711272954941,-0.390995264053345,-0.768842220306396,0.505968749523163,-0.636304140090942,-0.656347274780273,0.405370622873306,-0.607408463954926,-0.713105082511902,0.350051492452621,-0.354242712259293,-0.820487678050995,0.448678344488144,-0.908557772636414,-0.360577553510666,0.21096570789814,-0.901891767978668,-0.394149214029312,0.1767418384552,-0.803426086902618,-0.521454751491547,0.287387579679489,-0.8130983710289,-0.484057068824768,0.323356926441193,-0.803426086902618,-0.521454751491547,0.287387579679489,-0.901891767978668,-0.394149214029312,0.1767418384552,-0.888130605220795,-0.441388487815857,0.128063306212425,-0.783328354358673,-0.575309455394745,0.23540572822094,-0.323926240205765,-0.871468663215637,0.368258237838745,-0.575160980224609,-0.772217512130737,0.269944608211517,-0.556548178195953,-0.814582705497742,0.163429290056229,-0.316047728061676,-0.913869738578796,0.254864305257797, +-0.964813590049744,-0.228931456804276,0.129326060414314,-0.991647839546204,-0.124756805598736,0.0327131561934948,-0.989149510860443,-0.146321251988411,0.0131673207506537,-0.962370336055756,-0.249201431870461,0.108359880745411,-0.310984641313553,-0.94087541103363,0.134320795536041,-0.537056982517242,-0.841942608356476,0.051984615623951,-0.512630820274353,-0.854865789413452,-0.0800892859697342,-0.317906945943832,-0.94810563325882,0.00555998273193836,-0.755456387996674,-0.633722126483917,0.166379019618034,-0.865404486656189,-0.496753394603729,0.0656585171818733,-0.833089351654053,-0.553030490875244,-0.0109364287927747,-0.727136433124542,-0.681854963302612,0.0796652734279633,-0.334278702735901,-0.935530602931976,-0.114194087684155,-0.544152975082397,-0.80287778377533,-0.24348446726799,-0.374990254640579,-0.863838016986847,-0.336401879787445,-0.293177664279938,-0.930998861789703,-0.217458173632622,-0.512630820274353,-0.854865789413452,-0.0800892859697342,-0.537056982517242,-0.841942608356476,0.051984615623951,-0.695606052875519,-0.718350946903229,-0.0102119604125619,-0.647769927978516,-0.754077017307281,-0.10845335572958,-0.888130605220795,-0.441388487815857,0.128063306212425,-0.901891767978668,-0.394149214029312,0.1767418384552,-0.956802129745483,-0.280661016702652,0.0758890435099602,-0.945519030094147,-0.324195951223373,0.0298469588160515,-0.925055146217346,-0.378652065992355,-0.0299268048256636,-0.953888297080994,-0.275172472000122,-0.119905568659306,-0.920559585094452,-0.339928418397903,-0.192402347922325,-0.890910863876343,-0.442317843437195,-0.103114932775497,-0.605347037315369,-0.704193532466888,-0.371034294366837,-0.631274878978729,-0.598335206508636,-0.49344402551651,-0.400152415037155,-0.687723815441132,-0.605734169483185,-0.396194517612457,-0.791935443878174,-0.464616298675537,-0.837166488170624,-0.513893663883209,-0.187258139252663,-0.866479098796844,-0.414779752492905,-0.277797967195511,-0.778698265552521,-0.501136600971222,-0.377479910850525,-0.745829582214355,-0.604467272758484,-0.279924243688583,-0.400152415037155,-0.687723815441132,-0.605734169483185, +-0.631274878978729,-0.598335206508636,-0.49344402551651,-0.638168394565582,-0.47601592540741,-0.605103194713593,-0.401973038911819,-0.547979950904846,-0.733577370643616,-0.778698265552521,-0.501136600971222,-0.377479910850525,-0.866479098796844,-0.414779752492905,-0.277797967195511,-0.875931262969971,-0.31125408411026,-0.368599116802216,-0.788633763790131,-0.393670439720154,-0.472313970327377,-0.920559585094452,-0.339928418397903,-0.192402347922325,-0.953888297080994,-0.275172472000122,-0.119905568659306,-0.961324334144592,-0.17606694996357,-0.211792603135109,-0.92849338054657,-0.238844394683838,-0.284347474575043,-0.973286867141724,-0.221124991774559,-0.0617776997387409,-0.983850181102753,-0.178102403879166,-0.0178399439901114,-0.990748226642609,-0.0780424028635025,-0.111029163002968,-0.980478703975677,-0.122301861643791,-0.153960078954697,-0.628256678581238,-0.138301104307175,-0.765615046024323,-0.629420757293701,-0.332538932561874,-0.70231568813324,-0.782234668731689,-0.286267697811127,-0.553317070007324,-0.763396441936493,-0.160517960786819,-0.625667572021484,-0.914075314998627,-0.135149702429771,-0.382362097501755,-0.947341620922089,-0.0733454823493958,-0.311712026596069,-0.909272015094757,0.0326755084097385,-0.414917856454849,-0.869150757789612,-0.0299046225845814,-0.493642181158066,-0.41613957285881,0.0419657006859779,-0.90833181142807,-0.0484075509011745,0.0602639466524124,-0.997007966041565,-0.065839059650898,-0.169280424714088,-0.983366370201111,-0.40859442949295,-0.157618537545204,-0.899003386497498,-0.967174530029297,-0.0185623653233051,-0.253434419631958,-0.977281033992767,0.0271883998066187,-0.210196599364281,-0.938004910945892,0.14006245136261,-0.317063719034195,-0.92887669801712,0.0914371535181999,-0.358925104141235,-0.596891403198242,0.180430397391319,-0.781770765781403,-0.661569893360138,0.0201353374868631,-0.749613106250763,-0.8043452501297,0.0609062053263187,-0.591032326221466,-0.733134627342224,0.161153227090836,-0.660714149475098,-0.596891403198242,0.180430397391319,-0.781770765781403,-0.568587303161621,0.33154821395874,-0.752850830554962, +-0.347009032964706,0.385352730751038,-0.855036914348602,-0.384987145662308,0.223548591136932,-0.895438969135284,-0.859212517738342,0.205861687660217,-0.468374669551849,-0.863399267196655,0.260428249835968,-0.432109832763672,-0.739391386508942,0.382856816053391,-0.553824007511139,-0.742297172546387,0.322826385498047,-0.587178111076355,-0.990748226642609,-0.0780424028635025,-0.111029163002968,-0.983850181102753,-0.178102403879166,-0.0178399439901114,-0.989149510860443,-0.146321251988411,0.0131673207506537,-0.995709240436554,-0.0445203334093094,-0.0811235532164574,-0.981551468372345,0.0625409483909607,-0.180680483579636,-0.98273116350174,0.0887448042631149,-0.162369802594185,-0.940521359443665,0.205805152654648,-0.270303100347519,-0.940893232822418,0.177625581622124,-0.28839048743248,-0.997835218906403,-0.0208042021840811,-0.0623857490718365,-0.991647839546204,-0.124756805598736,0.0327131561934948,-0.993054449558258,-0.108172722160816,0.04627750441432,-0.998736917972565,-0.000725583580788225,-0.050238449126482,-0.86287933588028,0.301325142383575,-0.405761450529099,-0.860428273677826,0.330504655838013,-0.387853056192398,-0.729781031608582,0.455140769481659,-0.510163366794586,-0.734147310256958,0.425860911607742,-0.528838396072388,-0.934222996234894,0.258060097694397,-0.246236518025398,-0.852206945419312,0.381751418113708,-0.357783615589142,-0.856965243816376,0.355741500854492,-0.372905433177948,-0.938315212726593,0.231052547693253,-0.257253170013428,-0.998907387256622,0.021197471767664,-0.0416503362357616,-0.994104743003845,-0.0917158871889114,0.0578270591795444,-0.9949871301651,-0.0745253637433052,0.0666825249791145,-0.998242735862732,0.0461795851588249,-0.0371325463056564,-0.912956893444061,0.329765617847443,-0.240342020988464,-0.828931033611298,0.447074711322784,-0.336150825023651,-0.845332860946655,0.409606158733368,-0.3429796397686,-0.927215158939362,0.289327770471573,-0.237826690077782,-0.958378195762634,0.224283918738365,-0.176657557487488,-0.950916528701782,0.21599979698658,-0.221589237451553,-0.877688050270081,0.354772627353668,-0.322179943323135, +-0.891241312026978,0.359081506729126,-0.277036875486374,-0.70813649892807,0.554532825946808,-0.437076717615128,-0.52993381023407,0.651089191436768,-0.543371915817261,-0.539805889129639,0.629762709140778,-0.558577299118042,-0.721315026283264,0.524516761302948,-0.452312558889389,-0.633333444595337,0.596296787261963,-0.493273705244064,-0.460189014673233,0.699367642402649,-0.546910464763641,-0.505238831043243,0.675825715065002,-0.536649942398071,-0.67509138584137,0.585452139377594,-0.448884546756744,-0.641277730464935,0.478990405797958,-0.599442362785339,-0.575213491916656,0.470462590456009,-0.669174611568451,-0.459563702344894,0.60136467218399,-0.653576135635376,-0.545239269733429,0.599458873271942,-0.58597207069397,-0.220906391739845,0.756116092205048,-0.616026639938354,-0.115637436509132,0.77402126789093,-0.622510373592377,-0.0795465558767319,0.77655154466629,-0.625012099742889,-0.22768472135067,0.76591944694519,-0.601271331310272,-0.260280877351761,0.758383214473724,-0.597585797309875,-0.0357578098773956,0.76894199848175,-0.638317823410034,-0.0307104624807835,0.75297075510025,-0.657337009906769,-0.291860163211823,0.73228508234024,-0.615285456180573,-0.0250113755464554,0.748670041561127,-0.662470817565918,0.0437612980604172,0.678988218307495,-0.732843637466431,0.144442215561867,0.660929799079895,-0.736415863037109,0.0550066195428371,0.736840128898621,-0.673825621604919,-0.724305272102356,0.501894235610962,-0.472740918397903,-0.541990160942078,0.607744693756104,-0.580424785614014,-0.540794372558594,0.587496161460876,-0.601988136768341,-0.726764261722565,0.47911348938942,-0.492203205823898,-0.311585962772369,0.715845346450806,-0.624883592128754,-0.0314253121614456,0.740115284919739,-0.671745240688324,-0.00808387249708176,0.725178480148315,-0.688513457775116,-0.314248591661453,0.701721489429474,-0.639401793479919,0.0950279459357262,0.566763937473297,-0.818381488323212,0.153429746627808,0.393673956394196,-0.906355440616608,0.344202011823654,0.34568202495575,-0.872942626476288,0.268036276102066,0.528617739677429,-0.805431485176086, +-0.0307104624807835,0.75297075510025,-0.657337009906769,-0.0357578098773956,0.76894199848175,-0.638317823410034,0.180763810873032,0.72567230463028,-0.663870573043823,0.24555167555809,0.718372702598572,-0.65088027715683,0.815179169178009,0.327907055616379,-0.477451324462891,0.866371512413025,0.344069838523865,-0.361961752176285,0.702799260616302,0.502638638019562,-0.503415942192078,0.643880009651184,0.496044665575027,-0.582544684410095,0.55413693189621,0.0203293543308973,-0.832177221775055,0.540803194046021,-0.169441625475883,-0.823906064033508,0.696719229221344,-0.197553753852844,-0.689604878425598,0.737373352050781,-0.031020276248455,-0.6747727394104,0.702799260616302,0.502638638019562,-0.503415942192078,0.866371512413025,0.344069838523865,-0.361961752176285,0.82921302318573,0.381767570972443,-0.408239215612411,0.724821329116821,0.488296389579773,-0.486004918813705,0.578065931797028,0.571437776088715,-0.582493543624878,0.712010860443115,0.476883143186569,-0.515386283397675,0.402748733758926,0.637026369571686,-0.657260119915009,0.340203762054443,0.666487574577332,-0.663367033004761,0.031445074826479,0.692114651203156,-0.721102297306061,0.0308283176273108,0.671379864215851,-0.740471959114075,-0.307068884372711,0.640687108039856,-0.70372486114502,-0.30626368522644,0.663350820541382,-0.682765126228333,0.031445074826479,0.692114651203156,-0.721102297306061,0.0184824634343386,0.708283364772797,-0.705686330795288,0.402748733758926,0.637026369571686,-0.657260119915009,0.417861670255661,0.622977912425995,-0.661279141902924,0.0245080851018429,0.6442911028862,-0.764387547969818,0.0187439396977425,0.60321980714798,-0.797354698181152,-0.323251366615295,0.567481517791748,-0.757280111312866,-0.314257025718689,0.611471712589264,-0.726185083389282,0.408084839582443,0.607455313205719,-0.681516528129578,0.704759240150452,0.46142104268074,-0.538892507553101,0.703362822532654,0.444451689720154,-0.554746329784393,0.405181586742401,0.584523916244507,-0.702964842319489,0.0166043043136597,0.532554149627686,-0.846233069896698,0.00743910996243358,0.420722603797913,-0.907158851623535, +-0.347009032964706,0.385352730751038,-0.855036914348602,-0.333843857049942,0.495575547218323,-0.801843643188477,0.409163266420364,0.548035204410553,-0.729549765586853,0.708066642284393,0.415171891450882,-0.571203947067261,0.717322528362274,0.368334293365479,-0.591420471668243,0.415800839662552,0.486775308847427,-0.768218398094177,0.421808570623398,0.389350265264511,-0.818830847740173,0.724259257316589,0.296608775854111,-0.622472167015076,0.716886222362518,0.19342452287674,-0.669821739196777,0.406555354595184,0.250838607549667,-0.87851744890213,0.375412613153458,0.0646026879549026,-0.924603581428528,0.69100683927536,0.0536952428519726,-0.720851123332977,0.658147633075714,-0.119798302650452,-0.74329686164856,0.341656982898712,-0.153093352913857,-0.927271723747253,0.717322528362274,0.368334293365479,-0.591420471668243,0.708066642284393,0.415171891450882,-0.571203947067261,0.87320077419281,0.272477954626083,-0.404074370861053,0.87654584646225,0.242555424571037,-0.415733397006989,0.716886222362518,0.19342452287674,-0.669821739196777,0.724259257316589,0.296608775854111,-0.622472167015076,0.879666686058044,0.196901902556419,-0.432915955781937,0.877733767032623,0.130271941423416,-0.461099177598953,0.867423534393311,0.0367086604237556,-0.49621456861496,0.933542013168335,0.0222892314195633,-0.357774376869202,0.929832100868225,-0.0626984909176826,-0.362603187561035,0.85275799036026,-0.0831256881356239,-0.515649080276489,0.580948889255524,-0.464185386896133,-0.668603241443634,0.535547375679016,-0.610553622245789,-0.583449423313141,0.267184197902679,-0.707895040512085,-0.653832733631134,0.283675163984299,-0.557315945625305,-0.780337989330292,0.267184197902679,-0.707895040512085,-0.653832733631134,0.535547375679016,-0.610553622245789,-0.583449423313141,0.515997529029846,-0.734884083271027,-0.440104573965073,0.270238369703293,-0.824600338935852,-0.496996521949768,0.835046827793121,-0.209875002503395,-0.508575737476349,0.924772620201111,-0.152743086218834,-0.348518580198288,0.910716414451599,-0.251230716705322,-0.327839463949203, +0.809317469596863,-0.334098696708679,-0.483097583055496,-0.0430955216288567,-0.975414991378784,-0.216121271252632,-0.0667620152235031,-0.915767788887024,-0.396121501922607,0.266666173934937,-0.890563130378723,-0.368492126464844,0.196504652500153,-0.948624789714813,-0.24798546731472,0.622719347476959,-0.778302907943726,-0.0804069116711617,0.646524608135223,-0.759887337684631,0.0676536038517952,0.327003538608551,-0.932535529136658,0.153121173381805,0.321859061717987,-0.946779727935791,0.00383358867838979,0.515997529029846,-0.734884083271027,-0.440104573965073,0.535547375679016,-0.610553622245789,-0.583449423313141,0.775141358375549,-0.450168758630753,-0.443287551403046,0.727853417396545,-0.575738370418549,-0.372498035430908,0.961360931396484,0.00672401580959558,-0.275208622217178,0.975808799266815,-0.00775296241044998,-0.218487828969955,0.979235649108887,-0.0511171035468578,-0.196174815297127,0.962269067764282,-0.0581863783299923,-0.265805602073669,0.937841773033142,0.0865906700491905,-0.336087554693222,0.93992817401886,0.129182159900665,-0.315985649824142,0.968387186527252,0.0771235972642899,-0.237230181694031,0.96515280008316,0.0525693036615849,-0.256352573633194,0.962187528610229,-0.122898414731026,-0.243086531758308,0.979972898960114,-0.10106598585844,-0.171577408909798,0.973697662353516,-0.177088439464569,-0.143361389636993,0.953022718429565,-0.207311242818832,-0.220838904380798,0.924704492092133,-0.331576526165009,-0.187026098370552,0.948109090328217,-0.30205374956131,-0.099260188639164,0.862593591213226,-0.505231857299805,-0.0259439088404179,0.832968294620514,-0.534917652606964,-0.141516238451004,0.988663077354431,-0.0825416594743729,-0.125427559018135,0.992979645729065,-0.0694925785064697,-0.0957198068499565,0.988251149654388,-0.144524291157722,-0.0497227795422077,0.98369961977005,-0.156531617045403,-0.0885039940476418,0.979235649108887,-0.0511171035468578,-0.196174815297127,0.975808799266815,-0.00775296241044998,-0.218487828969955,0.980257391929626,0.0154871298000216,-0.19711834192276,0.987172663211823,-0.030629700049758,-0.156690672039986, +0.959132373332977,-0.281309098005295,-0.0305031891912222,0.962441623210907,-0.270518362522125,0.022931631654501,0.868027627468109,-0.475610047578812,0.142559140920639,0.871350526809692,-0.486143082380295,0.06643296033144,0.653223037719727,-0.733468294143677,0.187946632504463,0.643077611923218,-0.709992706775665,0.28698667883873,0.318086206912994,-0.862951219081879,0.392602115869522,0.338472336530685,-0.89722728729248,0.283583790063858,0.962232172489166,-0.265070527791977,0.0620224252343178,0.960773766040802,-0.262095540761948,0.0906627476215363,0.847881734371185,-0.468449234962463,0.248298078775406,0.859543204307556,-0.469230651855469,0.202504396438599,0.988251149654388,-0.144524291157722,-0.0497227795422077,0.992979645729065,-0.0694925785064697,-0.0957198068499565,0.99521666765213,-0.0610514506697655,-0.0762655958533287,0.990276634693146,-0.137116029858589,-0.0234826114028692,-0.121886551380157,-0.796136200428009,0.592714846134186,-0.0973174646496773,-0.826116681098938,0.555031955242157,0.244178459048271,-0.809648990631104,0.533709049224854,0.214072689414024,-0.789665460586548,0.574979424476624,0.318086206912994,-0.862951219081879,0.392602115869522,0.643077611923218,-0.709992706775665,0.28698667883873,0.617829918861389,-0.696017622947693,0.365848988294601,0.281205058097839,-0.834069311618805,0.474607169628143,0.958480954170227,-0.261090576648712,0.114655733108521,0.955572545528412,-0.261623680591583,0.135772347450256,0.822050988674164,-0.471668422222137,0.319000035524368,0.835339665412903,-0.469291657209396,0.286309480667114,0.952653825283051,-0.262060880661011,0.154190987348557,0.950035393238068,-0.260532736778259,0.171916902065277,0.806780576705933,-0.46191880106926,0.368423670530319,0.812737941741943,-0.469397664070129,0.345141589641571,0.531386375427246,-0.658238172531128,0.533245801925659,0.5241819024086,-0.642626643180847,0.558806002140045,0.182808041572571,-0.726442575454712,0.662466824054718,0.18639849126339,-0.747945845127106,0.637049853801727,0.947377860546112,-0.257855534553528,0.189699172973633,0.940586388111115,-0.221211537718773,0.25760954618454, +0.818417310714722,-0.373486369848251,0.436693221330643,0.80183744430542,-0.45240530371666,0.390366733074188,0.52039235830307,-0.625280022621155,0.58156406879425,0.543346166610718,-0.566556036472321,0.619507193565369,0.204336106777191,-0.659367382526398,0.72352010011673,0.186929330229759,-0.70535796880722,0.683759868144989,0.57834529876709,-0.523538529872894,0.625638961791992,0.447567075490952,-0.578831315040588,0.681643784046173,0.240964770317078,-0.626974642276764,0.740836620330811,0.219719097018242,-0.633464813232422,0.741920351982117,0.240964770317078,-0.626974642276764,0.740836620330811,0.447567075490952,-0.578831315040588,0.681643784046173,0.23041732609272,-0.589603006839752,0.774129271507263,0.260909736156464,-0.579563140869141,0.772031486034393,0.57834529876709,-0.523538529872894,0.625638961791992,0.543346166610718,-0.566556036472321,0.619507193565369,0.818417310714722,-0.373486369848251,0.436693221330643,0.839526295661926,-0.332665532827377,0.429568648338318,0.922896564006805,-0.219060271978378,0.316661506891251,0.940586388111115,-0.221211537718773,0.25760954618454,0.98725152015686,-0.126404419541359,0.09672811627388,0.981567025184631,-0.112371750175953,0.154592916369438,0.247674629092216,-0.592889845371246,0.766249895095825,0.245313882827759,-0.590382933616638,0.768940210342407,0.269309818744659,-0.612241148948669,0.743392884731293,0.254184186458588,-0.666435360908508,0.700895428657532,0.283683568239212,-0.74332320690155,0.60580050945282,0.248487576842308,-0.599470853805542,0.760847270488739,0.223243102431297,-0.753952860832214,0.617833077907562,0.250744193792343,-0.850114345550537,0.463069230318069,0.98725152015686,-0.126404419541359,0.09672811627388,0.940586388111115,-0.221211537718773,0.25760954618454,0.947377860546112,-0.257855534553528,0.189699172973633,0.989906489849091,-0.128278329968452,0.0602475740015507,0.952653825283051,-0.262060880661011,0.154190987348557,0.955572545528412,-0.261623680591583,0.135772347450256,0.991652488708496,-0.127121955156326,0.0215762164443731,0.991292715072632,-0.127187445759773,0.0340904854238033, +0.999247550964355,-0.0249404329806566,0.0297040343284607,0.998536765575409,-0.0538732931017876,-0.00469215540215373,0.998328566551208,-0.00283115683123469,-0.0577242970466614,0.999453604221344,0.017492638900876,-0.028046490624547,0.998505055904388,-0.052535641938448,-0.0150880627334118,0.998371005058289,-0.0510142669081688,-0.0255538318306208,0.997070133686066,0.00241995509713888,-0.0764547362923622,0.997724533081055,6.23014639131725e-05,-0.0674215480685234,0.957691550254822,0.172850698232651,-0.23010715842247,0.968630909919739,0.17013868689537,-0.181127190589905,0.985485255718231,0.106075525283813,-0.132540285587311,0.982117295265198,0.0972243472933769,-0.161224067211151,0.994657158851624,0.0667790547013283,-0.0787250474095345,0.993704378604889,0.0520844645798206,-0.0991906449198723,0.985485255718231,0.106075525283813,-0.132540285587311,0.98727560043335,0.109795868396759,-0.115029871463776,0.958480954170227,-0.261090576648712,0.114655733108521,0.960773766040802,-0.262095540761948,0.0906627476215363,0.991239905357361,-0.131942495703697,-0.00587241025641561,0.991651237010956,-0.128671750426292,0.00845108181238174,0.998134613037109,-0.0498641319572926,-0.0352249071002007,0.997764945030212,-0.0499641858041286,-0.0443695262074471,0.995700240135193,0.00447410997003317,-0.0925255417823792,0.996392071247101,0.00406503211706877,-0.0847715511918068,0.97747391462326,0.152812168002129,-0.145579159259796,0.968630909919739,0.17013868689537,-0.181127190589905,0.930840730667114,0.260437279939651,-0.256335943937302,0.95643937587738,0.210899695754051,-0.201854109764099,0.930840730667114,0.260437279939651,-0.256335943937302,0.968630909919739,0.17013868689537,-0.181127190589905,0.957691550254822,0.172850698232651,-0.23010715842247,0.900543510913849,0.283195495605469,-0.329881280660629,0.932286560535431,0.229392543435097,-0.279679924249649,0.866371512413025,0.344069838523865,-0.361961752176285,0.815179169178009,0.327907055616379,-0.477451324462891,0.906107008457184,0.203487262129784,-0.370894908905029,0.990095734596252,0.0522691197693348,-0.13030032813549, +0.988936483860016,0.053480476140976,-0.138363778591156,0.974820792675018,0.110324777662754,-0.193785414099693,0.976868271827698,0.108646765351295,-0.184185564517975,0.88422691822052,0.302752792835236,-0.35564523935318,0.951921105384827,0.182817935943604,-0.245812401175499,0.947197437286377,0.188203275203705,-0.259608328342438,0.876102566719055,0.308748364448547,-0.37029555439949,0.657268643379211,-0.351282894611359,-0.666782021522522,0.503585815429688,-0.352858453989029,-0.788601458072662,0.452103763818741,-0.49866709113121,-0.739549458026886,0.610037267208099,-0.46080207824707,-0.644605278968811,0.331973046064377,-0.284388303756714,-0.899398267269135,0.252328366041183,-0.241920724511147,-0.936912357807159,0.284562289714813,-0.40439835190773,-0.869187116622925,0.331609040498734,-0.445980966091156,-0.831346213817596,0.550896823406219,-0.525934159755707,-0.648001551628113,0.415487974882126,-0.567078351974487,-0.711190402507782,0.438000082969666,-0.635714054107666,-0.635628402233124,0.527204155921936,-0.61242949962616,-0.589055120944977,0.349887162446976,-0.536685585975647,-0.767820000648499,0.325535625219345,-0.50172746181488,-0.801433861255646,0.371909111738205,-0.572470188140869,-0.730726659297943,0.389668077230453,-0.602210819721222,-0.696778893470764,0.516455054283142,-0.677501380443573,-0.523704051971436,0.448891818523407,-0.681523740291595,-0.577945947647095,0.45541974902153,-0.718688726425171,-0.525432586669922,0.502862453460693,-0.72309148311615,-0.473569571971893,0.45541974902153,-0.718688726425171,-0.525432586669922,0.448891818523407,-0.681523740291595,-0.577945947647095,0.416544407606125,-0.645344734191895,-0.640328824520111,0.436919987201691,-0.679874539375305,-0.588958024978638,0.502279341220856,-0.763205885887146,-0.406487733125687,0.467378050088882,-0.755487143993378,-0.459126234054565,0.465778708457947,-0.779828548431396,-0.418231666088104,0.49268165230751,-0.787114322185516,-0.371100962162018,0.4703189432621,-0.702146053314209,-0.534594178199768,0.50134015083313,-0.718520283699036,-0.48206502199173, +0.484329640865326,-0.750629484653473,-0.449421972036362,0.469042837619781,-0.73725688457489,-0.486262381076813,0.541131675243378,-0.726649522781372,-0.42326956987381,0.583020687103271,-0.726785659790039,-0.363138258457184,0.58386754989624,-0.733967244625092,-0.346973747014999,0.520402789115906,-0.748185694217682,-0.411581337451935,0.398564517498016,-0.8384929895401,-0.371585577726364,0.315401196479797,-0.888113856315613,-0.334328979253769,0.375865459442139,-0.891985058784485,-0.251172631978989,0.421863734722137,-0.852864623069763,-0.307657361030579,0.375865459442139,-0.891985058784485,-0.251172631978989,0.315401196479797,-0.888113856315613,-0.334328979253769,0.23435415327549,-0.939100682735443,-0.25133228302002,0.336590141057968,-0.93022632598877,-0.146239325404167,0.23435415327549,-0.939100682735443,-0.25133228302002,0.315401196479797,-0.888113856315613,-0.334328979253769,0.251545935869217,-0.896880447864532,-0.363772034645081,0.15466719865799,-0.929469048976898,-0.334911048412323,0.525405883789063,-0.802496492862701,-0.282750517129898,0.497740119695663,-0.82725977897644,-0.260568499565125,0.403087556362152,-0.858154714107513,-0.317948132753372,0.446565270423889,-0.822087109088898,-0.353202939033508,0.618852376937866,-0.722241044044495,-0.308852046728134,0.645515918731689,-0.716913938522339,-0.263331711292267,0.648885726928711,-0.719096958637238,-0.248690560460091,0.620569288730621,-0.726473450660706,-0.295178294181824,0.114206723868847,-0.89585953950882,-0.429409682750702,0.00373921426944435,-0.886215329170227,-0.463258504867554,0.0111613245680928,-0.902023375034332,-0.431542724370956,0.121380895376205,-0.900714337825775,-0.417109489440918,0.391027510166168,-0.881143391132355,-0.265864163637161,0.253324896097183,-0.895827233791351,-0.365130066871643,0.259092956781387,-0.894549190998077,-0.364215105772018,0.398783653974533,-0.876151919364929,-0.270793974399567,0.616052985191345,-0.78749692440033,0.0180926732718945,0.523413717746735,-0.842184603214264,-0.129473015666008,0.525210320949554,-0.838167309761047,-0.14707039296627, +0.610154628753662,-0.792121231555939,-0.0159806665033102,0.251545935869217,-0.896880447864532,-0.363772034645081,0.315401196479797,-0.888113856315613,-0.334328979253769,0.403087556362152,-0.858154714107513,-0.317948132753372,0.372381627559662,-0.869452774524689,-0.32462865114212,0.663619935512543,-0.697486579418182,0.270409107208252,0.658726394176483,-0.736504197120667,0.153757110238075,0.651469767093658,-0.751650035381317,0.103002138435841,0.661904335021973,-0.720592677593231,0.206467017531395,0.48810014128685,-0.838716745376587,-0.241480052471161,0.497740119695663,-0.82725977897644,-0.260568499565125,0.566215932369232,-0.801503539085388,-0.19233213365078,0.571286082267761,-0.807904481887817,-0.144646435976028,0.604303658008575,-0.678694128990173,0.4173623919487,0.644487619400024,-0.673506200313568,0.361973762512207,0.65166050195694,-0.700042128562927,0.29202675819397,0.620982766151428,-0.706097781658173,0.340303510427475,0.60508006811142,-0.749416828155518,-0.268798351287842,0.640718281269073,-0.735740482807159,-0.21946756541729,0.621909439563751,-0.763467848300934,-0.174199506640434,0.577992141246796,-0.78216940164566,-0.232671618461609,0.667743265628815,-0.71110862493515,-0.220098748803139,0.686577916145325,-0.705038964748383,-0.177569463849068,0.692147672176361,-0.704307854175568,-0.15774030983448,0.672990620136261,-0.711468696594238,-0.202227264642715,0.62275892496109,-0.78062379360199,-0.0528957061469555,0.615274608135223,-0.779519319534302,-0.117417350411415,0.644689857959747,-0.763040125370026,-0.0463118217885494,0.650059640407562,-0.759271800518036,0.030475927516818,-0.697560131549835,-0.470335334539413,0.540550231933594,-0.597104787826538,-0.47907230257988,0.643393874168396,-0.568780422210693,-0.483123153448105,0.665643155574799,-0.659939706325531,-0.463738262653351,0.591122925281525,0.697242736816406,-0.702438056468964,-0.142944976687431,0.732805252075195,-0.675644338130951,-0.080629974603653,0.728604137897491,-0.682628512382507,-0.0561624765396118,0.70104318857193,-0.701861619949341,-0.126209035515785, +0.66851931810379,-0.724181175231934,-0.169244080781937,0.689681887626648,-0.71403169631958,-0.120405994355679,0.672702372074127,-0.737667500972748,-0.0576041340827942,0.652033388614655,-0.749282002449036,-0.115883283317089,0.661265671253204,-0.742161452770233,0.109197184443474,0.661276757717133,-0.749763190746307,0.0238365549594164,0.659765183925629,-0.747746646404266,0.074731856584549,0.653438806533813,-0.739978849887848,0.159527540206909,0.696477472782135,-0.712320268154144,-0.0867110714316368,0.720624625682831,-0.693291246891022,-0.00687918392941356,0.69608348608017,-0.714667856693268,0.0686843767762184,0.677561581134796,-0.735332489013672,-0.0140213714912534,0.99722284078598,-0.051819559186697,-0.0534919425845146,0.996447503566742,-0.0553847625851631,-0.0634423643350601,0.994039237499237,-0.000213546809391119,-0.109023176133633,0.994957208633423,0.00305898441001773,-0.100253187119961,0.942123234272003,0.183466821908951,-0.280613362789154,0.943806827068329,0.189061343669891,-0.27108034491539,0.974820792675018,0.110324777662754,-0.193785414099693,0.973290026187897,0.108031190931797,-0.202572509646416,0.99521666765213,-0.0610514506697655,-0.0762655958533287,0.992979645729065,-0.0694925785064697,-0.0957198068499565,0.990605771541595,-0.0153668718412519,-0.135882377624512,0.992728531360626,-0.00594346271827817,-0.120226949453354,0.872825086116791,0.302739650011063,-0.382786065340042,0.943806827068329,0.189061343669891,-0.27108034491539,0.942123234272003,0.183466821908951,-0.280613362789154,0.871356546878815,0.292230844497681,-0.394130617380142,0.985166370868683,0.0424035526812077,-0.166280597448349,0.983104348182678,0.0312379077076912,-0.180360779166222,0.968387186527252,0.0771235972642899,-0.237230181694031,0.970319509506226,0.0932747349143028,-0.223114207386971,0.107038863003254,0.98997437953949,-0.0921608582139015,0.107036925852299,0.989975273609161,-0.09215247631073,0.10701809823513,0.989985883235931,-0.0920601710677147,0.107019320130348,0.989985167980194,-0.0920672789216042,0.107094369828701,0.989955246448517,-0.0923001691699028, +0.107062011957169,0.989963412284851,-0.092250183224678,0.107064716517925,0.989962160587311,-0.0922600254416466,0.107097163796425,0.989954888820648,-0.0923013389110565,0.107139259576797,0.989935100078583,-0.092464953660965,0.107135534286499,0.98993706703186,-0.0924481377005577,0.107103541493416,0.989953875541687,-0.0923039838671684,0.107094369828701,0.989955246448517,-0.0923001691699028,0.107097163796425,0.989954888820648,-0.0923013389110565,0.107073791325092,0.989987552165985,-0.0919776856899261,0.107124023139477,0.989992439746857,-0.0918657407164574,0.107078924775124,0.989998817443848,-0.0918499603867531,0.106932945549488,0.98999810218811,-0.0920275151729584,0.107411541044712,0.989953994750977,-0.091945081949234,0.107126303017139,0.990009009838104,-0.0916855335235596,0.10700424015522,0.990023612976074,-0.0916695520281792,0.107313044369221,0.989968478679657,-0.0919032096862793,0.107307679951191,0.989969789981842,-0.0918963402509689,0.10716338455677,0.98999559879303,-0.0917865186929703,0.107177495956421,0.989993214607239,-0.0917951017618179,0.107060328125954,0.990016281604767,-0.0916834995150566,0.107059732079506,0.99001681804657,-0.0916782915592194,0.107096180319786,0.990020930767059,-0.0915903896093369,0.107093006372452,0.990021049976349,-0.0915940627455711,0.107005938887596,0.98999547958374,-0.0919712409377098,0.107000149786472,0.990004301071167,-0.0918832197785378,0.107000321149826,0.990003764629364,-0.0918879061937332,0.107006497681141,0.989994823932648,-0.0919770449399948,0.10799752175808,0.990078091621399,-0.0898997113108635,0.107963889837265,0.990078568458557,-0.0899341180920601,0.107959985733032,0.990078806877136,-0.089936338365078,0.108018666505814,0.990075051784515,-0.0899072885513306,0.107059732079506,0.99001681804657,-0.0916782915592194,0.107060328125954,0.990016281604767,-0.0916834995150566,0.107177495956421,0.989993214607239,-0.0917951017618179,0.10716338455677,0.98999559879303,-0.0917865186929703,0.107541084289551,0.990025699138641,-0.0910163447260857,0.107461296021938,0.990030825138092,-0.0910555049777031, +0.108972452580929,0.989937484264374,-0.090269647538662,0.109076291322708,0.989931285381317,-0.0902127325534821,0.107541084289551,0.990025699138641,-0.0910163447260857,0.106733977794647,0.990072011947632,-0.0914621651172638,0.106734424829483,0.990071773529053,-0.0914647132158279,0.107461296021938,0.990030825138092,-0.0910555049777031,0.106734424829483,0.990071773529053,-0.0914647132158279,0.106733977794647,0.990072011947632,-0.0914621651172638,0.106921404600143,0.990045189857483,-0.0915330573916435,0.106916159391403,0.990045845508575,-0.0915325433015823,0.107019320130348,0.989985167980194,-0.0920672789216042,0.10701809823513,0.989985883235931,-0.0920601710677147,0.107005938887596,0.98999547958374,-0.0919712409377098,0.107006497681141,0.989994823932648,-0.0919770449399948,0.503585815429688,-0.352858453989029,-0.788601458072662,0.540803194046021,-0.169441625475883,-0.823906064033508,0.334897696971893,-0.0841046497225761,-0.938493490219116,0.331973046064377,-0.284388303756714,-0.899398267269135,0.10981859266758,0.989841938018799,-0.0902928039431572,0.109893158078194,0.98981499671936,-0.0904964953660965,0.109888844192028,0.989817678928375,-0.0904733762145042,0.109809406101704,0.98984432220459,-0.0902776345610619,0.109857298433781,0.98972475528717,-0.0915216580033302,0.109900571405888,0.989757537841797,-0.0911150425672531,0.109897598624229,0.989754796028137,-0.0911483615636826,0.109853282570839,0.98972225189209,-0.0915543362498283,0.10800363868475,0.989871680736542,-0.0921368151903152,0.107595026493073,0.98997038602829,-0.0915535986423492,0.108000501990318,0.98987203836441,-0.0921370461583138,0.108009159564972,0.989868223667145,-0.0921678468585014,0.107944793999195,0.989896893501282,-0.091935358941555,0.107986852526665,0.989882528781891,-0.0920400768518448,0.107595026493073,0.98997038602829,-0.0915535986423492,0.108003593981266,0.990075945854187,-0.0899155214428902,0.108005508780479,0.990075528621674,-0.0899181440472603,0.10799752175808,0.990078091621399,-0.0898997113108635,0.108011074364185,0.990077257156372,-0.0898918882012367, +0.107179999351501,0.989862143993378,-0.0931962132453918,0.107074685394764,0.989874064922333,-0.0931902229785919,0.107035763561726,0.989878237247467,-0.0931905955076218,0.107173040509224,0.989863276481628,-0.0931921824812889,0.108019702136517,0.989826083183289,-0.0926071330904961,0.108048535883427,0.989826679229736,-0.0925663262605667,0.107895843684673,0.989824235439301,-0.0927702486515045,-0.344168871641159,0.864678382873535,-0.365894824266434,-0.317086726427078,0.855662703514099,-0.409020066261292,-0.318277180194855,0.856026649475098,-0.407330423593521,-0.345261633396149,0.865080058574677,-0.363910555839539,-0.383119434118271,0.882474064826965,-0.272871613502502,-0.366240650415421,0.873653769493103,-0.320307791233063,-0.367171615362167,0.87408173084259,-0.318066298961639,-0.383836895227432,0.882916152477264,-0.270422548055649,-0.40098237991333,0.899229109287262,-0.174928858876228,-0.394706696271896,0.891031920909882,-0.22420696914196,-0.39517205953598,0.891475558280945,-0.221608713269234,-0.401172339916229,0.899662435054779,-0.172244891524315,-0.397900074720383,0.914199650287628,-0.0769050940871239,-0.402004182338715,0.906977295875549,-0.125636875629425,-0.401910245418549,0.907389461994171,-0.1229327917099,-0.397528350353241,0.914581298828125,-0.0742445141077042,-0.375136345624924,0.926818072795868,0.0167624354362488,-0.388861626386642,0.920830965042114,-0.0292721558362246,-0.388231217861176,0.921174705028534,-0.0267145596444607,-0.374277949333191,0.927118539810181,0.0191647205501795,-0.334842592477798,0.936706483364105,0.102281495928764,-0.357018887996674,0.932119786739349,0.0607476606965065,-0.355972230434418,0.932373821735382,0.0629511699080467,-0.33365461230278,0.936913013458252,0.104252696037292,-0.279791474342346,0.94366866350174,0.176652491092682,-0.308971911668777,0.940558969974518,0.141014516353607,-0.307693749666214,0.940719127655029,0.1427311450243,-0.278476119041443,0.943785130977631,0.17810320854187,-0.213100045919418,0.947668612003326,0.237723782658577,-0.247699171304703,0.946035921573639,0.208952829241753, +-0.246399536728859,0.946112930774689,0.210136979818344,-0.21186688542366,0.947711944580078,0.23865108191967,-0.137990057468414,0.948796212673187,0.284155547618866,-0.176397934556007,0.948581874370575,0.262823581695557,-0.175277918577194,0.948598206043243,0.263512820005417,-0.137024596333504,0.948792994022369,0.284633427858353,-0.0575865507125854,0.947232484817505,0.315331995487213,-0.0982627123594284,0.948336958885193,0.301664412021637,-0.0974867790937424,0.94832181930542,0.301963984966278,-0.0570281557738781,0.947213232517242,0.315491437911987,0.0252191126346588,0.943214178085327,0.331226378679276,-0.0163151118904352,0.945514142513275,0.325172126293182,-0.0159946642816067,0.945498526096344,0.325233340263367,0.025288725271821,0.943209946155548,0.331233352422714,0.147696748375893,0.933230221271515,0.327516317367554,0.148382887244225,0.933160722255707,0.327404201030731,0.107848569750786,0.937004208564758,0.332252711057663,0.107407823204994,0.937043070793152,0.332285910844803,0.225507602095604,0.924305737018585,0.307904660701752,0.22663326561451,0.924160540103912,0.307513803243637,0.188055500388145,0.928869068622589,0.3191197514534,0.187139108777046,0.928974270820618,0.319352060556412,0.26389667391777,0.91906613111496,0.292704582214355,0.22663326561451,0.924160540103912,0.307513803243637,0.225507602095604,0.924305737018585,0.307904660701752,0.262587994337082,0.919254660606384,0.293288797140121,0.333660751581192,0.907839477062225,0.253964692354202,0.29963806271553,0.913616120815277,0.274813950061798,0.298177182674408,0.913850605487823,0.27562204003334,0.332082718610764,0.908121347427368,0.2550228536129,0.395781308412552,0.895424962043762,0.203890353441238,0.36577171087265,0.901766002178192,0.230280697345734,0.364115297794342,0.902095854282379,0.231609791517258,0.394088000059128,0.895802438259125,0.205505728721619,0.448738396167755,0.882063686847687,0.143518373370171,0.423501282930374,0.888846576213837,0.174923837184906,0.421815156936646,0.889270126819611,0.176834926009178,0.447105407714844,0.882530450820923,0.145727917551994, +0.506383299827576,0.861414670944214,0.0392522998154163,0.507576644420624,0.860845685005188,0.0362027883529663,0.490978866815567,0.868023753166199,0.0739892572164536,0.489592701196671,0.868564605712891,0.076775848865509,0.530007839202881,0.847004354000092,-0.0409310013055801,0.530687868595123,0.846402823925018,-0.0444141402840614,0.520882606506348,0.8536217212677,-0.00334067037329078,0.519926011562347,0.854211330413818,-5.59944492124487e-05,0.538951575756073,0.832806527614594,-0.126350626349449,0.538982212543488,0.832210898399353,-0.130089163780212,0.536787092685699,0.839244902133942,-0.0867609083652496,0.53641813993454,0.839848816394806,-0.0831237435340881,0.531642019748688,0.81933867931366,-0.214571133255959,0.530953168869019,0.818792462348938,-0.218329086899757,0.537090599536896,0.82536906003952,-0.174068227410316,0.537416219711304,0.825945377349854,-0.170287624001503,0.506856024265289,0.807204306125641,-0.302519649267197,0.505471765995026,0.806749522686005,-0.306028455495834,0.520442187786102,0.812559008598328,-0.262464582920074,0.521488666534424,0.813064396381378,-0.258796840906143,0.464005589485168,0.797068953514099,-0.386496782302856,0.46206134557724,0.796738743782043,-0.389495462179184,0.486005216836929,0.801447868347168,-0.348540216684341,0.48769336938858,0.801843583583832,-0.34525653719902,0.403429180383682,0.78961169719696,-0.462339818477631,0.401168286800385,0.789420425891876,-0.464628249406815,0.433728724718094,0.792703926563263,-0.428368955850601,0.43586739897728,0.792965054512024,-0.425706446170807,0.326644688844681,0.785444736480713,-0.525718331336975,0.324384778738022,0.785382747650146,-0.527208209037781,0.364615619182587,0.7869593501091,-0.497745394706726,0.366918385028839,0.787083148956299,-0.495853781700134,0.107880018651485,0.989832162857056,-0.0927046909928322,0.107920706272125,0.989850044250488,-0.0924662202596664,0.107895843684673,0.989824235439301,-0.0927702486515045,0.107894264161587,0.989830255508423,-0.0927090719342232,0.107920706272125,0.989850044250488,-0.0924662202596664,0.107894740998745,0.989863514900208,-0.0923530384898186, +0.107899308204651,0.989865064620972,-0.0923299267888069,0.107983618974686,0.989871859550476,-0.0921591594815254,0.107920706272125,0.989850044250488,-0.0924662202596664,0.107965543866158,0.989872992038727,-0.0921672657132149,0.10797706246376,0.989871621131897,-0.0921686589717865,0.107919305562973,0.989817976951599,-0.092810831964016,0.107916191220284,0.989818871021271,-0.0928037092089653,0.107895843684673,0.989824235439301,-0.0927702486515045,0.107840865850449,0.98981785774231,-0.0929032489657402,0.107877813279629,0.989810764789581,-0.0929354503750801,0.107812240719795,0.989816308021545,-0.0929524675011635,0.107719093561172,0.989819884300232,-0.0930221602320671,0.236452609300613,0.785040974617004,-0.572538912296295,0.234526991844177,0.785073399543762,-0.573286056518555,0.280867040157318,0.784741640090942,-0.552534401416779,0.282999664545059,0.784750580787659,-0.551432251930237,0.107683315873146,0.989820837974548,-0.0930543541908264,0.107877813279629,0.989810764789581,-0.0929354503750801,0.107719093561172,0.989819884300232,-0.0930221602320671,0.136877477169037,0.788646340370178,-0.599417686462402,0.135562643408775,0.788718521595001,-0.599621474742889,0.185895919799805,0.786397516727448,-0.589085280895233,0.187544420361519,0.786337733268738,-0.588642597198486,0.0329078249633312,0.796230733394623,-0.604097306728363,0.0323587656021118,0.796280741691589,-0.604061245918274,0.0841612666845322,0.792023360729218,-0.604661822319031,0.0851031392812729,0.791954636573792,-0.604619979858398,-0.0191589407622814,0.80144077539444,-0.597767233848572,0.0323587656021118,0.796280741691589,-0.604061245918274,0.0329078249633312,0.796230733394623,-0.604097306728363,-0.0190019961446524,0.801423668861389,-0.597795188426971,0.10767762362957,0.989820003509521,-0.0930695384740829,0.1076705083251,0.989821076393127,-0.0930657759308815,0.107548490166664,0.989829361438751,-0.0931189358234406,0.107566438615322,0.989827692508698,-0.0931158512830734,-0.118589602410793,0.814190804958344,-0.568357288837433,-0.0697009041905403,0.807437598705292,-0.585821151733398, +-0.0699151754379272,0.807465076446533,-0.585757672786713,-0.119135372340679,0.814271748065948,-0.568127036094666,0.107500925660133,0.989832282066345,-0.0931431502103806,0.107566438615322,0.989827692508698,-0.0931158512830734,0.107548490166664,0.989829361438751,-0.0931189358234406,0.107439935207367,0.989836454391479,-0.0931688845157623,-0.250200033187866,0.838250994682312,-0.484494805335999,-0.249037802219391,0.837989747524261,-0.485544472932816,-0.208844199776649,0.82957649230957,-0.517867803573608,-0.209874123334885,0.829777896404266,-0.517128109931946,0.106986813247204,0.989874005317688,-0.0932903587818146,0.10719245672226,0.989857375621796,-0.093232549726963,0.107280939817429,0.989851474761963,-0.093192383646965,0.107180930674076,0.989860534667969,-0.0932114496827126,-0.297869384288788,0.552507400512695,0.778465986251831,-0.298499166965485,0.552555501461029,0.778190612792969,-0.377087831497192,0.558131873607635,0.739116787910461,-0.37647733092308,0.558091998100281,0.739458024501801,0.108003459870815,0.989859759807587,-0.0922665968537331,0.108007229864597,0.989863276481628,-0.0922222882509232,0.107983618974686,0.989871859550476,-0.0921591594815254,0.10797706246376,0.989871621131897,-0.0921686589717865,0.107999160885811,0.989869475364685,-0.0921661630272865,0.107983618974686,0.989871859550476,-0.0921591594815254,0.108007229864597,0.989863276481628,-0.0922222882509232,0.108000501990318,0.98987203836441,-0.0921370461583138,0.107375852763653,0.989961743354797,-0.0919034332036972,0.10739228874445,0.989956676959991,-0.0919383242726326,0.107398018240929,0.989956974983215,-0.0919291079044342,0.107169844210148,0.990003108978271,-0.0916970148682594,0.107294574379921,0.989981174468994,-0.0917882174253464,0.10722828656435,0.989994943141937,-0.0917181745171547,0.107220567762852,0.989996254444122,-0.0917129144072533,0.10772942006588,0.98989075422287,-0.0922525003552437,0.107411541044712,0.989953994750977,-0.091945081949234,0.107478767633438,0.98993968963623,-0.0920195654034615,0.107673823833466,0.989902079105377,-0.0921969190239906, +0.107169844210148,0.990003108978271,-0.0916970148682594,0.107220567762852,0.989996254444122,-0.0917129144072533,0.107143878936768,0.990008056163788,-0.0916752219200134,0.106932945549488,0.98999810218811,-0.0920275151729584,0.106917105615139,0.989994645118713,-0.0920835956931114,0.106931738555431,0.989993512630463,-0.0920785516500473,0.108011074364185,0.990077257156372,-0.0898918882012367,0.10799752175808,0.990078091621399,-0.0898997113108635,0.108018666505814,0.990075051784515,-0.0899072885513306,0.107411541044712,0.989953994750977,-0.091945081949234,0.10700424015522,0.990023612976074,-0.0916695520281792,0.106968685984612,0.990028619766235,-0.0916571691632271,0.109385825693607,0.98989075422287,-0.0902827605605125,0.109489046037197,0.989869117736816,-0.0903948321938515,0.110409438610077,0.989734172821045,-0.0907524451613426,0.109916351735592,0.989788711071014,-0.0907563641667366,0.109888844192028,0.989817678928375,-0.0904733762145042,0.109893158078194,0.98981499671936,-0.0904964953660965,0.109916366636753,0.989785969257355,-0.0907862409949303,0.107390664517879,0.989955127239227,-0.091957114636898,0.10739228874445,0.989956676959991,-0.0919383242726326,0.107375852763653,0.989961743354797,-0.0919034332036972,0.107373535633087,0.989956438541412,-0.0919626504182816,0.107313044369221,0.989968478679657,-0.0919032096862793,0.107078924775124,0.989998817443848,-0.0918499603867531,0.107124023139477,0.989992439746857,-0.0918657407164574,0.107307679951191,0.989969789981842,-0.0918963402509689,0.109900571405888,0.989757537841797,-0.0911150425672531,0.109916351735592,0.989788711071014,-0.0907563641667366,0.109916366636753,0.989785969257355,-0.0907862409949303,0.109897598624229,0.989754796028137,-0.0911483615636826,0.107064716517925,0.989962160587311,-0.0922600254416466,0.107062011957169,0.989963412284851,-0.092250183224678,0.107036925852299,0.989975273609161,-0.09215247631073,0.107038863003254,0.98997437953949,-0.0921608582139015,0.109754122793674,0.989453256130219,-0.0945320799946785,0.109754249453545,0.989453196525574,-0.0945330560207367, +0.109753735363483,0.989453315734863,-0.0945325121283531,-0.52057546377182,0.565734624862671,0.639488458633423,-0.45094907283783,0.562514245510101,0.692980945110321,-0.451537281274796,0.562545418739319,0.692572474479675,-0.521137833595276,0.565756440162659,0.639010965824127,-0.131276100873947,0.538069903850555,0.832614839076996,-0.131938338279724,0.53813362121582,0.83246898651123,-0.216521322727203,0.545867681503296,0.809411466121674,-0.21587447822094,0.545811653137207,0.809622049331665,0.106932945549488,0.98999810218811,-0.0920275151729584,0.106931738555431,0.989993512630463,-0.0920785516500473,0.107147194445133,0.989972412586212,-0.0920545905828476,0.0424700044095516,0.519746422767639,0.853264212608337,0.0417811758816242,0.519825220108032,0.853250205516815,-0.0455595143139362,0.529424905776978,0.847132503986359,-0.0448833517730236,0.529353737831116,0.84721314907074,-0.738244235515594,0.566173076629639,0.366665333509445,-0.694044470787048,0.567940533161163,0.442431837320328,-0.694495022296906,0.567929685115814,0.441738247871399,-0.738642752170563,0.566149532794952,0.365898370742798,0.216677784919739,0.498236000537872,0.839530646800995,0.215969234704971,0.498329907655716,0.839657425880432,0.129239037632942,0.509426772594452,0.850753545761108,0.129938766360283,0.509340405464172,0.850698709487915,-0.803625226020813,0.558973133563995,0.204292774200439,-0.774886250495911,0.563173770904541,0.287030816078186,-0.775223731994629,0.563136398792267,0.286191552877426,-0.803891897201538,0.558921277523041,0.203383654356003,0.301136940717697,0.48663866519928,0.820060551166534,0.215969234704971,0.498329907655716,0.839657425880432,0.216677784919739,0.498236000537872,0.839530646800995,0.301851063966751,0.486537158489227,0.819858193397522,-0.840130746364594,0.539521753787994,-0.0556470341980457,-0.840137839317322,0.539621770381927,-0.0545590445399284,-0.836402356624603,0.547140777111053,0.0326804146170616,-0.836496770381927,0.547057390213013,0.0316451266407967,-0.821898698806763,0.521607220172882,-0.228929162025452,-0.82213681936264,0.521740913391113,-0.227766126394272, +-0.835367202758789,0.5311279296875,-0.141650304198265,-0.83524888753891,0.53101110458374,-0.142781347036362,0.610000789165497,0.436260640621185,0.661494970321655,0.539099216461182,0.449155449867249,0.712482631206512,0.539801359176636,0.44903239607811,0.712028443813324,0.61068469285965,0.436131298542023,0.660948932170868,-0.770386040210724,0.50047892332077,-0.395001590251923,-0.770885050296783,0.500645101070404,-0.393815606832504,-0.800575137138367,0.511546850204468,-0.312088787555695,-0.80020946264267,0.511396527290344,-0.313270509243011,0.788359522819519,0.397982567548752,0.469147473573685,0.787789821624756,0.398124903440475,0.469982624053955,0.734955608844757,0.410620927810669,0.539657950401306,0.73557448387146,0.410481721162796,0.538920223712921,-0.687539756298065,0.476942628622055,-0.547553360462189,-0.688315451145172,0.477137207984924,-0.546408236026764,-0.73334664106369,0.489139139652252,-0.472171276807785,-0.732710123062134,0.488958120346069,-0.473345398902893,0.888277888298035,0.368190556764603,0.274587124586105,0.887755930423737,0.368384808301926,0.276011139154434,0.845787227153778,0.382388591766357,0.372052371501923,0.846174657344818,0.382265597581863,0.371296972036362,-0.636216580867767,0.46475350856781,-0.615818619728088,-0.688315451145172,0.477137207984924,-0.546408236026764,-0.687539756298065,0.476942628622055,-0.547553360462189,-0.635302364826202,0.464547157287598,-0.616917312145233,0.918396174907684,0.355668514966965,0.173344433307648,0.917931437492371,0.355879247188568,0.175362139940262,0.887755930423737,0.368384808301926,0.276011139154434,0.888277888298035,0.368190556764603,0.274587124586105,-0.512843608856201,0.439311265945435,-0.737561643123627,-0.577540814876556,0.452104866504669,-0.679741084575653,-0.576491117477417,0.451888501644135,-0.680775046348572,-0.511664390563965,0.439087390899658,-0.738513171672821,0.9418625831604,0.334930211305618,-0.0267672035843134,0.941856205463409,0.335051596164703,-0.0254428349435329,0.93703705072403,0.343615680932999,0.0623672381043434,0.937168419361115,0.343485146760941,0.0611020624637604, +-0.367881655693054,0.413783252239227,-0.832734286785126,-0.442735344171524,0.426497489213943,-0.788723826408386,-0.441435188055038,0.426268696784973,-0.78957587480545,-0.366471856832504,0.413552194833755,-0.833470463752747,0.925325870513916,0.320883572101593,-0.202004328370094,0.925597071647644,0.320979535579681,-0.200604528188705,0.938029766082764,0.327481657266617,-0.113384254276752,0.937901496887207,0.327371686697006,-0.114754267036915,-0.206815227866173,0.38913831114769,-0.897662997245789,-0.288991361856461,0.401290088891983,-0.869166374206543,-0.287485122680664,0.401059806346893,-0.86977207660675,-0.205228939652443,0.388911694288254,-0.898125171661377,0.904683351516724,0.315606862306595,-0.286252290010452,0.925597071647644,0.320979535579681,-0.200604528188705,0.925325870513916,0.320883572101593,-0.202004328370094,0.904263079166412,0.315526992082596,-0.287664502859116,0.0531954579055309,0.355675846338272,-0.933094263076782,0.0514815039932728,0.355873316526413,-0.933115184307098,-0.0357604138553143,0.366319745779037,-0.929801642894745,-0.034068837761879,0.366109699010849,-0.929947912693024,0.83832311630249,0.308443963527679,-0.449529409408569,0.875496685504913,0.311414033174515,-0.369495540857315,0.874923706054688,0.311352550983429,-0.370901703834534,0.837596595287323,0.308402627706528,-0.4509097635746,0.226916506886482,0.337247133255005,-0.913659274578094,0.22522234916687,0.337411493062973,-0.914017736911774,0.138756811618805,0.346205651760101,-0.92784059047699,0.140471577644348,0.346023499965668,-0.927650451660156,0.741558432579041,0.306266725063324,-0.596901714801788,0.793529212474823,0.306723296642303,-0.525578022003174,0.792650997638702,0.306703805923462,-0.526912987232208,0.740533649921417,0.306270211935043,-0.59817099571228,0.393998265266418,0.32265231013298,-0.860616624355316,0.392408698797226,0.322775214910507,-0.861296415328979,0.310045659542084,0.329576164484024,-0.89176869392395,0.311697691679001,0.329431623220444,-0.89124596118927,0.546583712100983,0.312538206577301,-0.776895225048065,0.547991573810577,0.312462121248245,-0.775933384895325, +0.618185222148895,0.309151440858841,-0.7226842045784,0.616892457008362,0.309203177690506,-0.723765850067139,0.546583712100983,0.312538206577301,-0.776895225048065,0.471511155366898,0.317077219486237,-0.822884678840637,0.473018854856491,0.316977322101593,-0.822057545185089,0.547991573810577,0.312462121248245,-0.775933384895325,-0.457792282104492,0.543579339981079,0.703525185585022,-0.458182454109192,0.543594658374786,0.703259348869324,-0.544851243495941,0.546164810657501,0.636271238327026,-0.544458389282227,0.546157240867615,0.63661390542984,-0.691075086593628,0.545441210269928,0.474245965480804,-0.622600018978119,0.546782076358795,0.559820055961609,-0.62297797203064,0.546780109405518,0.559401273727417,-0.69142085313797,0.545428514480591,0.473756343126297,-0.264036417007446,0.532751083374023,0.804028034210205,-0.264370322227478,0.532774686813354,0.803902685642242,-0.364233642816544,0.539109468460083,0.759404242038727,-0.363863587379456,0.539088845252991,0.759596288204193,-0.79514753818512,0.536967575550079,0.281791180372238,-0.748875379562378,0.542154908180237,0.381121784448624,-0.749173283576965,0.542130589485168,0.380570262670517,-0.795384585857391,0.53693151473999,0.281190246343613,-0.0525338463485241,0.514930903911591,0.855620384216309,-0.0527573451399803,0.514952600002289,0.855593621730804,-0.160041183233261,0.524682819843292,0.836118936538696,-0.159756988286972,0.524658858776093,0.83618825674057,-0.850532114505768,0.521198749542236,0.070336177945137,-0.829204618930817,0.529948055744171,0.177692919969559,-0.82937079668045,0.529900670051575,0.177057728171349,-0.850620985031128,0.521141111850739,0.0696836933493614,0.164539620280266,0.491153806447983,0.855391502380371,0.164455026388168,0.491164118051529,0.855401873588562,0.055931381881237,0.503725826740265,0.862051010131836,0.0560871362686157,0.503708839416504,0.862050890922546,0.271244674921036,0.477449804544449,0.835743963718414,0.164455026388168,0.491164118051529,0.855401873588562,0.164539620280266,0.491153806447983,0.855391502380371,0.271258860826492,0.477447926998138,0.835740506649017, +0.473503619432449,0.447368800640106,0.758719623088837,0.374759554862976,0.462780892848969,0.803361177444458,0.374708205461502,0.4627885222435,0.8033806681633,0.473395019769669,0.447386562824249,0.758776843547821,0.651057362556458,0.415211051702499,0.635392904281616,0.566049754619598,0.431435257196426,0.702460944652557,0.56589549779892,0.431463211774826,0.702567994594574,0.650871455669403,0.415248513221741,0.635558843612671,0.848966062068939,0.367198795080185,0.380028456449509,0.849151194095612,0.367141515016556,0.379669994115829,0.79364675283432,0.382830500602722,0.472827285528183,0.79344516992569,0.382883071899414,0.473122864961624,-0.761156737804413,0.456607937812805,-0.460597008466721,-0.761403024196625,0.456684768199921,-0.46011346578598,-0.815465927124023,0.475862890481949,-0.329499274492264,-0.815464079380035,0.475862234830856,-0.329504996538162,0.924410223960876,0.337962955236435,0.176768094301224,0.924520075321198,0.337903290987015,0.176306530833244,0.892991304397583,0.352092891931534,0.280351608991623,0.892837464809418,0.352152556180954,0.280766487121582,-0.639560103416443,0.424699544906616,-0.640775322914124,-0.639852344989777,0.424766212701797,-0.640439331531525,-0.706144034862518,0.440943568944931,-0.554011940956116,-0.705866098403931,0.440870642662048,-0.554424107074738,0.948947846889496,0.312966227531433,-0.0393720827996731,0.948943674564362,0.312913566827774,-0.0398867093026638,0.94326651096344,0.324779361486435,0.0690416321158409,0.943210303783417,0.324836581945419,0.069537065923214,-0.563493430614471,0.408390462398529,-0.71811717748642,-0.639852344989777,0.424766212701797,-0.640439331531525,-0.639560103416443,0.424699544906616,-0.640775322914124,-0.563204884529114,0.408332079648972,-0.718376755714417,0.941454291343689,0.302480190992355,-0.148894518613815,0.948943674564362,0.312913566827774,-0.0398867093026638,0.948947846889496,0.312966227531433,-0.0393720827996731,0.941521227359772,0.302526354789734,-0.148376524448395,-0.385172933340073,0.376006335020065,-0.842769920825958,-0.478183269500732,0.392056673765182,-0.785895764827728, +-0.47791576385498,0.392008125782013,-0.786082684993744,-0.384942531585693,0.375968486070633,-0.842892110347748,0.887542843818665,0.286501616239548,-0.360810905694962,0.920892417430878,0.293632417917252,-0.256392329931259,0.921020865440369,0.293670505285263,-0.25588721036911,0.8877272605896,0.286530703306198,-0.360333889722824,-0.181617647409439,0.345696598291397,-0.920602560043335,-0.28582975268364,0.360476940870285,-0.887895166873932,-0.285650044679642,0.360450148582458,-0.887963891029358,-0.181499347090721,0.345680624246597,-0.92063182592392,0.784551858901978,0.27778896689415,-0.554357051849365,0.841877579689026,0.281194239854813,-0.460621327161789,0.842109024524689,0.281213819980621,-0.460185974836349,0.784818291664124,0.277799308300018,-0.553974509239197,0.14455957710743,0.307964682579041,-0.940351128578186,0.144649922847748,0.307955890893936,-0.940340101718903,0.0352210067212582,0.319241404533386,-0.947018623352051,0.0352001860737801,0.31924369931221,-0.947018682956696,0.638385415077209,0.27686607837677,-0.718198537826538,0.716391921043396,0.276338160037994,-0.640640139579773,0.716678977012634,0.27633997797966,-0.640318214893341,0.638677060604095,0.276860743761063,-0.717941343784332,0.357274383306503,0.290115177631378,-0.887799620628357,0.357483625411987,0.290100425481796,-0.887720167636871,0.25260066986084,0.298194736242294,-0.920474231243134,0.252446264028549,0.298207700252533,-0.92051237821579,0.357274383306503,0.290115177631378,-0.887799620628357,0.457503944635391,0.283803731203079,-0.842701315879822,0.457755833864212,0.283789813518524,-0.842569291591644,0.357483625411987,0.290100425481796,-0.887720167636871,0.929018318653107,0.341506958007813,0.14247053861618,0.928451180458069,0.341832637786865,0.145357608795166,0.942624449729919,0.330998301506042,0.0435798726975918,0.942857503890991,0.330706357955933,0.0406568497419357,0.935418665409088,0.312832236289978,-0.16470530629158,0.944999396800995,0.32110670208931,-0.0621831119060516,0.945100426673889,0.321361601352692,-0.0592612214386463,0.935850083827972,0.313047140836716,-0.161821484565735, +0.867113947868347,0.366131842136383,0.337728947401047,0.865894973278046,0.366512924432755,0.340432345867157,0.902763485908508,0.353722721338272,0.244741603732109,0.903660595417023,0.353367269039154,0.241927981376648,0.881751835346222,0.300671100616455,-0.363470107316971,0.91424298286438,0.305990785360336,-0.265573918819427,0.914996862411499,0.306163311004639,-0.262763619422913,0.882817029953003,0.300799340009689,-0.360768437385559,0.76249897480011,0.393697440624237,0.513417661190033,0.760677754878998,0.394115179777145,0.515793025493622,0.818326234817505,0.380035907030106,0.431178390979767,0.819854557514191,0.37963405251503,0.428621560335159,0.784672200679779,0.294853210449219,-0.545298993587494,0.838372349739075,0.296942532062531,-0.457118183374405,0.839734077453613,0.297025114297867,-0.454557776451111,0.786312639713287,0.294889241456985,-0.542911410331726,0.620616555213928,0.422769814729691,0.660379230976105,0.618275821208954,0.423203080892563,0.662294626235962,0.693701684474945,0.408567637205124,0.593169867992401,0.695794880390167,0.408139318227768,0.591009140014648,0.571640729904175,0.298475980758667,-0.764289796352386,0.569301247596741,0.298579573631287,-0.765993654727936,0.649252712726593,0.295677155256271,-0.700746715068817,0.651384651660919,0.295619577169418,-0.698789715766907,0.535382688045502,0.437831223011017,0.722266674041748,0.618275821208954,0.423203080892563,0.662294626235962,0.620616555213928,0.422769814729691,0.660379230976105,0.537942707538605,0.43739852309227,0.720624804496765,0.392792463302612,0.308980494737625,-0.866166830062866,0.39012598991394,0.309171885251999,-0.86730295419693,0.482548385858536,0.303097635507584,-0.821753561496735,0.485066711902618,0.302949279546738,-0.820324242115021,0.351620554924011,0.466302245855331,0.811742126941681,0.446107596158981,0.452260613441467,0.772300660610199,0.448854804039001,0.451834350824356,0.770957291126251,0.354520440101624,0.465888202190399,0.810717821121216,0.196011558175087,0.325383514165878,-0.925043284893036,0.193148046731949,0.325654000043869,-0.925550282001495, +0.293239027261734,0.316723376512527,-0.902051627635956,0.296021014451981,0.316491097211838,-0.901224076747894,0.152001261711121,0.492495626211166,0.856938600540161,0.253155767917633,0.479772597551346,0.840077698230743,0.256170600652695,0.479376256465912,0.839389562606812,0.155091568827629,0.492122828960419,0.856598913669586,-0.00848145876079798,0.34683096408844,-0.937889218330383,-0.0114003270864487,0.347167938947678,-0.93773365020752,0.091158851981163,0.335846573114395,-0.937495172023773,0.0940680652856827,0.335541069507599,-0.937317073345184,0.138582929968834,0.822417914867401,-0.55174595117569,0.104121021926403,0.826686680316925,-0.552944660186768,0.10274013876915,0.82685112953186,-0.55295729637146,0.137453213334084,0.822564244270325,-0.551810443401337,-0.113199695944786,0.359471142292023,-0.926264762878418,-0.0114003270864487,0.347167938947678,-0.93773365020752,-0.00848145876079798,0.34683096408844,-0.937889218330383,-0.110308043658733,0.359106808900833,-0.926754832267761,-0.249945402145386,0.532553315162659,0.808649659156799,-0.252919554710388,0.532784163951874,0.807572066783905,-0.154311969876289,0.524581611156464,0.837258577346802,-0.151245281100273,0.524308860301971,0.8379887342453,-0.309236347675323,0.386369705200195,-0.868959963321686,-0.21291022002697,0.372595071792603,-0.903239786624908,-0.210083216428757,0.37220773100853,-0.904061079025269,-0.306510537862778,0.385964035987854,-0.8701052069664,-0.434464812278748,0.544650316238403,0.717353641986847,-0.437133491039276,0.544788181781769,0.715625643730164,-0.347603470087051,0.539549231529236,0.7668496966362,-0.344762533903122,0.539363443851471,0.768261551856995,-0.486787885427475,0.415148556232452,-0.768563210964203,-0.400926381349564,0.400616377592087,-0.823871731758118,-0.398338258266449,0.400197476148605,-0.825329422950745,-0.484372138977051,0.414721667766571,-0.770317792892456,-0.593933820724487,0.550399124622345,0.586773753166199,-0.596150457859039,0.55043613910675,0.584486722946167,-0.52034467458725,0.548432767391205,0.654570758342743,-0.517885088920593,0.548344731330872,0.656592130661011, +-0.696999728679657,0.458149462938309,-0.551625311374664,-0.698706567287445,0.458566874265671,-0.549113392829895,-0.636652290821075,0.444313496351242,-0.630285143852234,-0.634679615497589,0.443887323141098,-0.632570803165436,-0.663566410541534,0.550772488117218,0.506289780139923,-0.596150457859039,0.55043613910675,0.584486722946167,-0.593933820724487,0.550399124622345,0.586773753166199,-0.661622643470764,0.550787031650543,0.508811414241791,-0.791927576065063,0.485109061002731,-0.370836615562439,-0.793030261993408,0.48549222946167,-0.367967754602432,-0.751059830188751,0.472352832555771,-0.461293786764145,-0.749644100666046,0.471949815750122,-0.4640012383461,-0.76984703540802,0.546453654766083,0.329733341932297,-0.721716940402985,0.549438714981079,0.421000689268112,-0.720072269439697,0.549504578113556,0.423722296953201,-0.768522799015045,0.546569585800171,0.332617342472076,-0.843349695205688,0.508828580379486,-0.17278565466404,-0.843777120113373,0.509156107902527,-0.169706359505653,-0.824070870876312,0.497813850641251,-0.270348936319351,-0.823299050331116,0.497456014156342,-0.273342549800873,-0.833692848682404,0.535701215267181,0.134091392159462,-0.807334125041962,0.541853785514832,0.233679100871086,-0.806347250938416,0.542018353939056,0.23668572306633,-0.833054840564728,0.535911679267883,0.137179419398308,-0.848583817481995,0.528076231479645,0.0322650969028473,-0.848301291465759,0.528329789638519,0.0353924371302128,-0.851890385150909,0.519371747970581,-0.0673485547304153,-0.851815938949585,0.519079089164734,-0.0704727098345757,-0.250200033187866,0.838250994682312,-0.484494805335999,-0.286475867033005,0.847042262554169,-0.447717607021332,-0.28526046872139,0.846725881099701,-0.449090093374252,-0.249037802219391,0.837989747524261,-0.485544472932816,0.134490832686424,-0.656905770301819,0.741880714893341,0.186331108212471,-0.592158079147339,0.783983111381531,0.14632174372673,-0.584464251995087,0.798117458820343,0.1020348072052,-0.653832316398621,0.749728083610535,0.205184549093246,-0.665699899196625,0.717455983161926,0.276362746953964,-0.603672206401825,0.747799038887024, +0.229851618409157,-0.598201811313629,0.767673671245575,0.170162677764893,-0.659661054611206,0.732046246528625,0.37295988202095,-0.617660999298096,0.692384123802185,0.327762573957443,-0.607410490512848,0.723618805408478,0.229326099157333,-0.672872245311737,0.703315317630768,0.241165086627007,-0.67787766456604,0.694493591785431,0.395584285259247,-0.638837397098541,0.659848392009735,0.37295988202095,-0.617660999298096,0.692384123802185,0.241165086627007,-0.67787766456604,0.694493591785431,0.248120024800301,-0.680859863758087,0.689105451107025,0.426441371440887,-0.678310453891754,0.598366618156433,0.408297032117844,-0.663861572742462,0.626563191413879,0.257052302360535,-0.681294739246368,0.68539160490036,0.270258218050003,-0.674371659755707,0.687156021595001,0.479769319295883,-0.66126811504364,0.576667845249176,0.451989889144897,-0.678381264209747,0.579227149486542,0.28842505812645,-0.658069729804993,0.695525228977203,0.309386730194092,-0.636144518852234,0.706823945045471,-0.404853969812393,-0.536928951740265,0.740135431289673,-0.542803108692169,-0.499213099479675,0.675389587879181,-0.568780422210693,-0.483123153448105,0.665643155574799,-0.403512686491013,-0.513169407844543,0.757518768310547,-0.373246520757675,-0.564351558685303,0.736338436603546,-0.478392064571381,-0.503834009170532,0.7192302942276,-0.511453211307526,-0.504643857479095,0.695521533489227,-0.396445989608765,-0.554543793201447,0.731650054454803,-0.444082617759705,-0.495074033737183,0.746787965297699,-0.478392064571381,-0.503834009170532,0.7192302942276,-0.373246520757675,-0.564351558685303,0.736338436603546,-0.341376483440399,-0.57038402557373,0.747077167034149,-0.344740658998489,-0.487214267253876,0.802356600761414,-0.401788741350174,-0.485980093479156,0.776137351989746,-0.310550272464752,-0.5762739777565,0.755954265594482,-0.279871553182602,-0.582893848419189,0.762828052043915,-0.22851887345314,-0.511639177799225,0.828253865242004,-0.283904254436493,-0.500032007694244,0.818148076534271,-0.243789374828339,-0.590774357318878,0.769124448299408,-0.203305259346962,-0.600077092647552,0.773675918579102, +-0.120851024985313,-0.529502272605896,0.839656114578247,-0.175832688808441,-0.520594835281372,0.835502088069916,-0.160694882273674,-0.609311759471893,0.776476919651031,-0.115875117480755,-0.617684781551361,0.777842223644257,0.142115205526352,0.442654430866241,0.885358810424805,0.142022803425789,0.442714840173721,0.885343432426453,0.129439979791641,0.449352353811264,0.883927524089813,0.129498511552811,0.449331670999527,0.883929371833801,-0.374746859073639,-0.402289122343063,0.835301339626312,-0.387571096420288,-0.449182420969009,0.804999172687531,-0.389736860990524,-0.456168293952942,0.800009846687317,-0.37629446387291,-0.408365100622177,0.831649243831635,-0.335458874702454,-0.347693920135498,0.875543355941772,-0.336131572723389,-0.34769070148468,0.875286638736725,-0.362188756465912,-0.363851755857468,0.858155727386475,-0.362865626811981,-0.365580081939697,0.857134521007538,-0.191410005092621,-0.411560922861099,0.891055405139923,-0.194081038236618,-0.409919589757919,0.891234219074249,-0.277618736028671,-0.364765375852585,0.888748645782471,-0.275308161973953,-0.365779995918274,0.889050304889679,-0.102638669312,-0.466817110776901,0.878377616405487,-0.194081038236618,-0.409919589757919,0.891234219074249,-0.191410005092621,-0.411560922861099,0.891055405139923,-0.0985836908221245,-0.469343215227127,0.877495408058167,0.34590807557106,-0.58530980348587,0.733321309089661,0.506681323051453,-0.665714859962463,0.547811806201935,0.329650908708572,-0.610939383506775,0.719780087471008,0.348484307527542,-0.580614566802979,0.735829770565033,0.378723204135895,-0.526249885559082,0.761334180831909,0.36402702331543,-0.552312672138214,0.749956667423248,0.365768164396286,-0.549156188964844,0.751426100730896,0.379608154296875,-0.524752855300903,0.761926531791687,0.384821653366089,-0.503874123096466,0.773319661617279,0.386522769927979,-0.511104047298431,0.767706155776978,0.386684060096741,-0.510616958141327,0.767949104309082,0.384495735168457,-0.503619194030762,0.773647665977478,0.312127828598022,-0.503364861011505,0.805729508399963,0.312185823917389,-0.503348469734192,0.805717289447784, +0.352177143096924,-0.49541962146759,0.794059634208679,0.35142582654953,-0.495471656322479,0.794360041618347,0.179413244128227,-0.534564197063446,0.825864374637604,0.18300586938858,-0.534025371074677,0.825424611568451,0.253031820058823,-0.519650399684906,0.816050469875336,0.252297401428223,-0.519846022129059,0.816153228282928,-0.876206278800964,0.00849000457674265,0.481861382722855,-0.876417100429535,0.00799829419702291,0.481486409902573,-0.829683184623718,0.104775190353394,0.548313796520233,-0.829477906227112,0.105161339044571,0.548550426959991,-0.0150686874985695,0.860455930233002,0.509301960468292,0.0190402772277594,0.864888608455658,0.501602470874786,0.01833719573915,0.864737629890442,0.501888930797577,-0.0165698826313019,0.860370635986328,0.5093994140625,-0.0787875801324844,0.84974068403244,0.521280467510223,-0.0505382195115089,0.857214987277985,0.512472808361053,-0.0519832409918308,0.857025980949402,0.512644410133362,-0.0797038152813911,0.849310040473938,0.52184271812439,-0.109650164842606,0.819549679756165,0.56241899728775,-0.0969036966562271,0.836754977703094,0.538934946060181,-0.097513347864151,0.836043775081635,0.539927780628204,-0.110430099070072,0.818311333656311,0.56406706571579,-0.139439716935158,0.778485357761383,0.611977994441986,-0.123736597597599,0.799558460712433,0.587703585624695,-0.124958969652653,0.798009097576141,0.58954793214798,-0.140107333660126,0.777526795864105,0.613043189048767,-0.133920088410378,0.711526215076447,0.689779579639435,-0.139609977602959,0.735658049583435,0.662809371948242,-0.139290079474449,0.735013842582703,0.663590848445892,-0.133945092558861,0.709952652454376,0.691394150257111,-0.142065912485123,0.686476707458496,0.713138937950134,-0.133920088410378,0.711526215076447,0.689779579639435,-0.133945092558861,0.709952652454376,0.691394150257111,-0.143175557255745,0.684859871864319,0.714470267295837,-0.159694701433182,0.638713777065277,0.752689957618713,-0.156720668077469,0.662725627422333,0.732279598712921,-0.157263576984406,0.661720335483551,0.733071863651276,-0.159634724259377,0.63849538564682,0.752888023853302, +-0.125603437423706,0.553501427173615,0.823322534561157,-0.125519156455994,0.55262017250061,0.823927104473114,-0.131869971752167,0.58184677362442,0.802536427974701,-0.132071286439896,0.582419514656067,0.802087664604187,-0.0644147768616676,0.474510967731476,0.877889513969421,-0.0607058927416801,0.471675425767899,0.879680097103119,-0.0844376385211945,0.490957498550415,0.867081820964813,-0.0877183377742767,0.493841022253036,0.865116536617279,-0.0147860627621412,0.454014033079147,0.890871822834015,-0.0118500851094723,0.453808218240738,0.891020536422729,-0.0353098176419735,0.45823135972023,0.888131380081177,-0.0387583263218403,0.459295153617859,0.887437760829926,0.0367533974349499,0.438093841075897,0.898177564144135,0.0374773256480694,0.437710523605347,0.898334562778473,0.0120452186092734,0.448758125305176,0.893572092056274,0.00991875492036343,0.449439108371735,0.893255889415741,0.0805279389023781,0.425983488559723,0.901139974594116,0.080284520983696,0.425907045602798,0.901197850704193,0.0603335686028004,0.427365481853485,0.902063548564911,0.0603763647377491,0.427349478006363,0.902068257331848,0.117041550576687,0.446847856044769,0.886920750141144,0.0996300876140594,0.435626536607742,0.894596755504608,0.099933847784996,0.43584355711937,0.894457101821899,0.1172199472785,0.446946620941162,0.886847317218781,0.129439979791641,0.449352353811264,0.883927524089813,0.117041550576687,0.446847856044769,0.886920750141144,0.1172199472785,0.446946620941162,0.886847317218781,0.129498511552811,0.449331670999527,0.883929371833801,0.188640221953392,0.855529546737671,0.482166051864624,0.189333111047745,0.855300843715668,0.482300132513046,0.159493744373322,0.865143954753876,0.475486904382706,0.158060073852539,0.865613758563995,0.475110471248627,0.236839294433594,0.838032364845276,0.491537362337112,0.236772119998932,0.838059842586517,0.491522878408432,0.215113312005997,0.846386253833771,0.487192451953888,0.214856877923012,0.846478939056396,0.487144649028778,0.28039476275444,0.819087147712708,0.500474810600281,0.25734868645668,0.829422354698181,0.495812714099884, +0.257817000150681,0.829220592975616,0.495906800031662,0.281094789505005,0.818760573863983,0.500616490840912,0.3344486951828,0.784865379333496,0.521661043167114,0.335214018821716,0.784197092056274,0.522174894809723,0.30729815363884,0.804673194885254,0.508004784584045,0.307315438985825,0.804662823677063,0.508010745048523,0.372272193431854,0.73892068862915,0.561613380908966,0.372187852859497,0.739065051078796,0.561479270458221,0.35760423541069,0.760460376739502,0.542051017284393,0.357306033372879,0.760846138000488,0.541706204414368,0.40829610824585,0.71166718006134,0.571685254573822,0.409363925457001,0.711240112781525,0.571453154087067,0.385661154985428,0.723673939704895,0.572329938411713,0.385679841041565,0.723659634590149,0.572335243225098,0.475429803133011,0.669027864933014,0.57128643989563,0.478387445211411,0.665372967720032,0.573083102703094,0.446780383586884,0.692575752735138,0.566326916217804,0.443558752536774,0.69446325302124,0.566547870635986,0.483511924743652,0.615602910518646,0.622293531894684,0.481931835412979,0.611369907855988,0.627668976783752,0.487701922655106,0.637582540512085,0.596351623535156,0.487808048725128,0.641734063625336,0.591794431209564,0.479702144861221,0.560986161231995,0.674670517444611,0.480432480573654,0.555284321308136,0.678854823112488,0.478107064962387,0.584161102771759,0.655873000621796,0.478080153465271,0.589418828487396,0.651171863079071,0.44647616147995,0.520808517932892,0.727610766887665,0.440220803022385,0.520306766033173,0.731769382953644,0.471919745206833,0.531340181827545,0.703540503978729,0.475027710199356,0.535197019577026,0.698507606983185,0.368549197912216,0.523689389228821,0.768063068389893,0.369433403015137,0.523861408233643,0.767520844936371,0.397313386201859,0.522180438041687,0.754632115364075,0.398857027292252,0.521934151649475,0.753987848758698,0.361928433179855,0.511007070541382,0.779666364192963,0.369433403015137,0.523861408233643,0.767520844936371,0.368549197912216,0.523689389228821,0.768063068389893,0.361931473016739,0.509885132312775,0.780399084091187,0.345251023769379,0.464840590953827,0.815306603908539, +0.358083575963974,0.486964613199234,0.796643972396851,0.357788383960724,0.486096143722534,0.797306716442108,0.344297707080841,0.463964253664017,0.81620854139328,0.325132757425308,0.440428704023361,0.836845934391022,0.33106917142868,0.450945436954498,0.828879654407501,0.330646514892578,0.450477480888367,0.829302668571472,0.325131952762604,0.44042557477951,0.836847960948944,0.254828721284866,0.437807083129883,0.862199127674103,0.293058484792709,0.43024018406868,0.85382091999054,0.295868813991547,0.429900944232941,0.85302209854126,0.25835719704628,0.436902344226837,0.861607789993286,0.228532925248146,0.44474059343338,0.866012990474701,0.254828721284866,0.437807083129883,0.862199127674103,0.25835719704628,0.436902344226837,0.861607789993286,0.229290977120399,0.444516599178314,0.865927636623383,0.223470583558083,0.437733292579651,0.870890617370605,0.224763303995132,0.444438278675079,0.867154061794281,0.224679514765739,0.444500833749771,0.867143630981445,0.223489865660667,0.437751144170761,0.870876729488373,0.166323766112328,0.433888763189316,0.885481178760529,0.201227873563766,0.431705623865128,0.879282355308533,0.201242104172707,0.431706756353378,0.879278600215912,0.166150853037834,0.433925867080688,0.885495543479919,0.0683790147304535,0.880439698696136,0.469201624393463,0.0937849879264832,0.881698250770569,0.462398707866669,0.094820499420166,0.881589353084564,0.462395250797272,0.0687228143215179,0.880520939826965,0.468999087810516,0.106917105615139,0.989994645118713,-0.0920835956931114,0.106932945549488,0.98999810218811,-0.0920275151729584,0.105938017368317,0.990059494972229,-0.0925161093473434,0.105898760259151,0.990053534507751,-0.092625766992569,0.105992004275322,0.990043520927429,-0.0926259458065033,0.105938017368317,0.990059494972229,-0.0925161093473434,0.106932945549488,0.98999810218811,-0.0920275151729584,0.107963889837265,0.990078568458557,-0.0899341180920601,0.107928663492203,0.99007248878479,-0.0900432169437408,0.108246572315693,0.990035772323608,-0.0900662317872047,0.107959985733032,0.990078806877136,-0.089936338365078, +-0.0499545522034168,0.514737129211426,0.855891466140747,-0.151245281100273,0.524308860301971,0.8379887342453,-0.154311969876289,0.524581611156464,0.837258577346802,-0.0530712492763996,0.51504784822464,0.855516970157623,0.106916159391403,0.990045845508575,-0.0915325433015823,0.106921404600143,0.990045189857483,-0.0915330573916435,0.107093006372452,0.990021049976349,-0.0915940627455711,0.107096180319786,0.990020930767059,-0.0915903896093369,-0.584694802761078,0.567721903324127,0.579503059387207,-0.52057546377182,0.565734624862671,0.639488458633423,-0.521137833595276,0.565756440162659,0.639010965824127,-0.58522617816925,0.567733764648438,0.578954875469208,0.657268643379211,-0.351282894611359,-0.666782021522522,0.751958012580872,-0.317488312721252,-0.577719867229462,0.778215944766998,-0.18259771168232,-0.600864291191101,0.696719229221344,-0.197553753852844,-0.689604878425598,0.503585815429688,-0.352858453989029,-0.788601458072662,0.657268643379211,-0.351282894611359,-0.666782021522522,0.696719229221344,-0.197553753852844,-0.689604878425598,0.540803194046021,-0.169441625475883,-0.823906064033508,0.108000501990318,0.98987203836441,-0.0921370461583138,0.108007229864597,0.989863276481628,-0.0922222882509232,0.108015298843384,0.989864349365234,-0.0922022983431816,0.108009159564972,0.989868223667145,-0.0921678468585014,0.107986852526665,0.989882528781891,-0.0920400768518448,0.108000501990318,0.98987203836441,-0.0921370461583138,0.107595026493073,0.98997038602829,-0.0915535986423492,0.1079086586833,0.98996913433075,-0.0911964625120163,0.107407599687576,0.990011990070343,-0.0913233384490013,0.107595026493073,0.98997038602829,-0.0915535986423492,0.107907451689243,0.98996764421463,-0.0912140905857086,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0128201153129339,-0.645580291748047,0.763584852218628,-0.00880798231810331,-0.685341358184814,0.728168666362762,0.107280939817429,0.989851474761963,-0.093192383646965,0.107179999351501,0.989862143993378,-0.0931962132453918,0.107173040509224,0.989863276481628,-0.0931921824812889, +0.107180930674076,0.989860534667969,-0.0932114496827126,0.107895843684673,0.989824235439301,-0.0927702486515045,0.107916191220284,0.989818871021271,-0.0928037092089653,0.108019702136517,0.989826083183289,-0.0926071330904961,-0.367171615362167,0.87408173084259,-0.318066298961639,-0.366240650415421,0.873653769493103,-0.320307791233063,-0.344168871641159,0.864678382873535,-0.365894824266434,-0.345261633396149,0.865080058574677,-0.363910555839539,-0.39517205953598,0.891475558280945,-0.221608713269234,-0.394706696271896,0.891031920909882,-0.22420696914196,-0.383119434118271,0.882474064826965,-0.272871613502502,-0.383836895227432,0.882916152477264,-0.270422548055649,-0.401910245418549,0.907389461994171,-0.1229327917099,-0.402004182338715,0.906977295875549,-0.125636875629425,-0.40098237991333,0.899229109287262,-0.174928858876228,-0.401172339916229,0.899662435054779,-0.172244891524315,-0.388231217861176,0.921174705028534,-0.0267145596444607,-0.388861626386642,0.920830965042114,-0.0292721558362246,-0.397900074720383,0.914199650287628,-0.0769050940871239,-0.397528350353241,0.914581298828125,-0.0742445141077042,-0.355972230434418,0.932373821735382,0.0629511699080467,-0.357018887996674,0.932119786739349,0.0607476606965065,-0.375136345624924,0.926818072795868,0.0167624354362488,-0.374277949333191,0.927118539810181,0.0191647205501795,-0.307693749666214,0.940719127655029,0.1427311450243,-0.308971911668777,0.940558969974518,0.141014516353607,-0.334842592477798,0.936706483364105,0.102281495928764,-0.33365461230278,0.936913013458252,0.104252696037292,-0.246399536728859,0.946112930774689,0.210136979818344,-0.247699171304703,0.946035921573639,0.208952829241753,-0.279791474342346,0.94366866350174,0.176652491092682,-0.278476119041443,0.943785130977631,0.17810320854187,-0.175277918577194,0.948598206043243,0.263512820005417,-0.176397934556007,0.948581874370575,0.262823581695557,-0.213100045919418,0.947668612003326,0.237723782658577,-0.21186688542366,0.947711944580078,0.23865108191967,-0.0974867790937424,0.94832181930542,0.301963984966278, +-0.0982627123594284,0.948336958885193,0.301664412021637,-0.137990057468414,0.948796212673187,0.284155547618866,-0.137024596333504,0.948792994022369,0.284633427858353,-0.0159946642816067,0.945498526096344,0.325233340263367,-0.0163151118904352,0.945514142513275,0.325172126293182,-0.0575865507125854,0.947232484817505,0.315331995487213,-0.0570281557738781,0.947213232517242,0.315491437911987,0.0665175020694733,0.940380394458771,0.333556771278381,0.0667040050029755,0.940366387367249,0.333559036254883,0.0252191126346588,0.943214178085327,0.331226378679276,0.025288725271821,0.943209946155548,0.331233352422714,0.0665175020694733,0.940380394458771,0.333556771278381,0.107407823204994,0.937043070793152,0.332285910844803,0.107848569750786,0.937004208564758,0.332252711057663,0.0667040050029755,0.940366387367249,0.333559036254883,0.147696748375893,0.933230221271515,0.327516317367554,0.187139108777046,0.928974270820618,0.319352060556412,0.188055500388145,0.928869068622589,0.3191197514534,0.148382887244225,0.933160722255707,0.327404201030731,0.298177182674408,0.913850605487823,0.27562204003334,0.29963806271553,0.913616120815277,0.274813950061798,0.26389667391777,0.91906613111496,0.292704582214355,0.262587994337082,0.919254660606384,0.293288797140121,0.364115297794342,0.902095854282379,0.231609791517258,0.36577171087265,0.901766002178192,0.230280697345734,0.333660751581192,0.907839477062225,0.253964692354202,0.332082718610764,0.908121347427368,0.2550228536129,0.421815156936646,0.889270126819611,0.176834926009178,0.423501282930374,0.888846576213837,0.174923837184906,0.395781308412552,0.895424962043762,0.203890353441238,0.394088000059128,0.895802438259125,0.205505728721619,0.4697645008564,0.875616610050201,0.112324349582195,0.471297651529312,0.87511020898819,0.109820418059826,0.448738396167755,0.882063686847687,0.143518373370171,0.447105407714844,0.882530450820923,0.145727917551994,0.4697645008564,0.875616610050201,0.112324349582195,0.489592701196671,0.868564605712891,0.076775848865509,0.490978866815567,0.868023753166199,0.0739892572164536, +0.471297651529312,0.87511020898819,0.109820418059826,0.506383299827576,0.861414670944214,0.0392522998154163,0.519926011562347,0.854211330413818,-5.59944492124487e-05,0.520882606506348,0.8536217212677,-0.00334067037329078,0.507576644420624,0.860845685005188,0.0362027883529663,0.530007839202881,0.847004354000092,-0.0409310013055801,0.53641813993454,0.839848816394806,-0.0831237435340881,0.536787092685699,0.839244902133942,-0.0867609083652496,0.530687868595123,0.846402823925018,-0.0444141402840614,0.538951575756073,0.832806527614594,-0.126350626349449,0.537416219711304,0.825945377349854,-0.170287624001503,0.537090599536896,0.82536906003952,-0.174068227410316,0.538982212543488,0.832210898399353,-0.130089163780212,0.531642019748688,0.81933867931366,-0.214571133255959,0.521488666534424,0.813064396381378,-0.258796840906143,0.520442187786102,0.812559008598328,-0.262464582920074,0.530953168869019,0.818792462348938,-0.218329086899757,0.506856024265289,0.807204306125641,-0.302519649267197,0.48769336938858,0.801843583583832,-0.34525653719902,0.486005216836929,0.801447868347168,-0.348540216684341,0.505471765995026,0.806749522686005,-0.306028455495834,0.464005589485168,0.797068953514099,-0.386496782302856,0.43586739897728,0.792965054512024,-0.425706446170807,0.433728724718094,0.792703926563263,-0.428368955850601,0.46206134557724,0.796738743782043,-0.389495462179184,0.403429180383682,0.78961169719696,-0.462339818477631,0.366918385028839,0.787083148956299,-0.495853781700134,0.364615619182587,0.7869593501091,-0.497745394706726,0.401168286800385,0.789420425891876,-0.464628249406815,0.107895843684673,0.989824235439301,-0.0927702486515045,0.108048535883427,0.989826679229736,-0.0925663262605667,0.107894264161587,0.989830255508423,-0.0927090719342232,0.107880018651485,0.989832162857056,-0.0927046909928322,0.107894740998745,0.989863514900208,-0.0923530384898186,0.107920706272125,0.989850044250488,-0.0924662202596664,0.107840865850449,0.98981785774231,-0.0929032489657402,0.107812330126762,0.989817321300507,-0.0929424539208412,0.107919305562973,0.989817976951599,-0.092810831964016, +0.326644688844681,0.785444736480713,-0.525718331336975,0.282999664545059,0.784750580787659,-0.551432251930237,0.280867040157318,0.784741640090942,-0.552534401416779,0.324384778738022,0.785382747650146,-0.527208209037781,0.1076705083251,0.989821076393127,-0.0930657759308815,0.107683315873146,0.989820837974548,-0.0930543541908264,0.107719093561172,0.989819884300232,-0.0930221602320671,0.107548490166664,0.989829361438751,-0.0931189358234406,0.236452609300613,0.785040974617004,-0.572538912296295,0.187544420361519,0.786337733268738,-0.588642597198486,0.185895919799805,0.786397516727448,-0.589085280895233,0.234526991844177,0.785073399543762,-0.573286056518555,0.107439935207367,0.989836454391479,-0.0931688845157623,0.107548490166664,0.989829361438751,-0.0931189358234406,0.107416145503521,0.989838659763336,-0.0931726694107056,0.10741176456213,0.989839136600494,-0.0931726843118668,0.136877477169037,0.788646340370178,-0.599417686462402,0.0851031392812729,0.791954636573792,-0.604619979858398,0.0841612666845322,0.792023360729218,-0.604661822319031,0.135562643408775,0.788718521595001,-0.599621474742889,-0.0699151754379272,0.807465076446533,-0.585757672786713,-0.0697009041905403,0.807437598705292,-0.585821151733398,-0.0191589407622814,0.80144077539444,-0.597767233848572,-0.0190019961446524,0.801423668861389,-0.597795188426971,-0.165996670722961,0.821745753288269,-0.545141279697418,-0.165174886584282,0.821605563163757,-0.545601904392242,-0.118589602410793,0.814190804958344,-0.568357288837433,-0.119135372340679,0.814271748065948,-0.568127036094666,0.107280939817429,0.989851474761963,-0.093192383646965,0.10719245672226,0.989857375621796,-0.093232549726963,0.10741176456213,0.989839136600494,-0.0931726843118668,0.107416145503521,0.989838659763336,-0.0931726694107056,0.107308752834797,0.989956617355347,-0.0920367315411568,0.107290789484978,0.98995578289032,-0.0920664146542549,0.107297763228416,0.989939451217651,-0.092234343290329,-0.165996670722961,0.821745753288269,-0.545141279697418,-0.209874123334885,0.829777896404266,-0.517128109931946, +-0.208844199776649,0.82957649230957,-0.517867803573608,-0.165174886584282,0.821605563163757,-0.545601904392242,-0.451537281274796,0.562545418739319,0.692572474479675,-0.45094907283783,0.562514245510101,0.692980945110321,-0.37647733092308,0.558091998100281,0.739458024501801,-0.377087831497192,0.558131873607635,0.739116787910461,0.107356190681458,0.989954650402069,-0.0920022949576378,0.107308752834797,0.989956617355347,-0.0920367315411568,0.107305735349655,0.98994380235672,-0.0921782925724983,0.106735400855541,0.989966452121735,-0.092595286667347,0.106568150222301,0.989983141422272,-0.0926099792122841,0.107455089688301,0.989898860454559,-0.0924867615103722,0.107551902532578,0.989892721176147,-0.0924398750066757,0.107340715825558,0.989906072616577,-0.0925421416759491,0.10772942006588,0.98989075422287,-0.0922525003552437,0.107673823833466,0.989902079105377,-0.0921969190239906,0.107797734439373,0.989876985549927,-0.0923207998275757,0.107551902532578,0.989892721176147,-0.0924398750066757,0.107455089688301,0.989898860454559,-0.0924867615103722,0.106377512216568,0.990002155303955,-0.0926267132163048,0.106377497315407,0.990002036094666,-0.0926267057657242,0.105992004275322,0.990043520927429,-0.0926259458065033,0.105898760259151,0.990053534507751,-0.092625766992569,0.106568150222301,0.989983141422272,-0.0926099792122841,0.106735400855541,0.989966452121735,-0.092595286667347,0.397924602031708,-0.907118320465088,0.137085676193237,0.400045692920685,-0.905632495880127,0.140688419342041,0.515645563602448,-0.798550665378571,0.310526251792908,0.521244287490845,-0.791952311992645,0.317987322807312,-0.297869384288788,0.552507400512695,0.778465986251831,-0.21587447822094,0.545811653137207,0.809622049331665,-0.216521322727203,0.545867681503296,0.809411466121674,-0.298499166965485,0.552555501461029,0.778190612792969,-0.694495022296906,0.567929685115814,0.441738247871399,-0.694044470787048,0.567940533161163,0.442431837320328,-0.642699897289276,0.568459153175354,0.513605892658234,-0.643194496631622,0.568460047245026,0.512985467910767,-0.131276100873947,0.538069903850555,0.832614839076996, +-0.0448833517730236,0.529353737831116,0.84721314907074,-0.0455595143139362,0.529424905776978,0.847132503986359,-0.131938338279724,0.53813362121582,0.83246898651123,-0.775223731994629,0.563136398792267,0.286191552877426,-0.774886250495911,0.563173770904541,0.287030816078186,-0.738244235515594,0.566173076629639,0.366665333509445,-0.738642752170563,0.566149532794952,0.365898370742798,0.0424700044095516,0.519746422767639,0.853264212608337,0.129938766360283,0.509340405464172,0.850698709487915,0.129239037632942,0.509426772594452,0.850753545761108,0.0417811758816242,0.519825220108032,0.853250205516815,-0.824380040168762,0.553544342517853,0.118263833224773,-0.824194312095642,0.553611576557159,0.119238942861557,-0.803625226020813,0.558973133563995,0.204292774200439,-0.803891897201538,0.558921277523041,0.203383654356003,0.384630084037781,0.474356204271317,0.79186224937439,0.383914113044739,0.474465161561966,0.792144417762756,0.301136940717697,0.48663866519928,0.820060551166534,0.301851063966751,0.486537158489227,0.819858193397522,-0.824380040168762,0.553544342517853,0.118263833224773,-0.836496770381927,0.547057390213013,0.0316451266407967,-0.836402356624603,0.547140777111053,0.0326804146170616,-0.824194312095642,0.553611576557159,0.119238942861557,0.539801359176636,0.44903239607811,0.712028443813324,0.539099216461182,0.449155449867249,0.712482631206512,0.463491231203079,0.461931347846985,0.756171524524689,0.464203417301178,0.461815178394318,0.755805492401123,-0.840130746364594,0.539521753787994,-0.0556470341980457,-0.83524888753891,0.53101110458374,-0.142781347036362,-0.835367202758789,0.5311279296875,-0.141650304198265,-0.840137839317322,0.539621770381927,-0.0545590445399284,0.67615532875061,0.423239469528198,0.603060722351074,0.675498723983765,0.42337429523468,0.603701591491699,0.610000789165497,0.436260640621185,0.661494970321655,0.61068469285965,0.436131298542023,0.660948932170868,-0.821898698806763,0.521607220172882,-0.228929162025452,-0.80020946264267,0.511396527290344,-0.313270509243011,-0.800575137138367,0.511546850204468,-0.312088787555695, +-0.82213681936264,0.521740913391113,-0.227766126394272,0.67615532875061,0.423239469528198,0.603060722351074,0.73557448387146,0.410481721162796,0.538920223712921,0.734955608844757,0.410620927810669,0.539657950401306,0.675498723983765,0.42337429523468,0.603701591491699,-0.770386040210724,0.50047892332077,-0.395001590251923,-0.732710123062134,0.488958120346069,-0.473345398902893,-0.73334664106369,0.489139139652252,-0.472171276807785,-0.770885050296783,0.500645101070404,-0.393815606832504,0.788359522819519,0.397982567548752,0.469147473573685,0.846174657344818,0.382265597581863,0.371296972036362,0.845787227153778,0.382388591766357,0.372052371501923,0.787789821624756,0.398124903440475,0.469982624053955,-0.576491117477417,0.451888501644135,-0.680775046348572,-0.577540814876556,0.452104866504669,-0.679741084575653,-0.636216580867767,0.46475350856781,-0.615818619728088,-0.635302364826202,0.464547157287598,-0.616917312145233,-0.441435188055038,0.426268696784973,-0.78957587480545,-0.442735344171524,0.426497489213943,-0.788723826408386,-0.512843608856201,0.439311265945435,-0.737561643123627,-0.511664390563965,0.439087390899658,-0.738513171672821,0.918396174907684,0.355668514966965,0.173344433307648,0.937168419361115,0.343485146760941,0.0611020624637604,0.93703705072403,0.343615680932999,0.0623672381043434,0.917931437492371,0.355879247188568,0.175362139940262,-0.287485122680664,0.401059806346893,-0.86977207660675,-0.288991361856461,0.401290088891983,-0.869166374206543,-0.367881655693054,0.413783252239227,-0.832734286785126,-0.366471856832504,0.413552194833755,-0.833470463752747,0.9418625831604,0.334930211305618,-0.0267672035843134,0.937901496887207,0.327371686697006,-0.114754267036915,0.938029766082764,0.327481657266617,-0.113384254276752,0.941856205463409,0.335051596164703,-0.0254428349435329,-0.120486587285995,0.377223759889603,-0.918251156806946,-0.122135445475578,0.377443581819534,-0.917943000793457,-0.206815227866173,0.38913831114769,-0.897662997245789,-0.205228939652443,0.388911694288254,-0.898125171661377,0.874923706054688,0.311352550983429,-0.370901703834534, +0.875496685504913,0.311414033174515,-0.369495540857315,0.904683351516724,0.315606862306595,-0.286252290010452,0.904263079166412,0.315526992082596,-0.287664502859116,-0.120486587285995,0.377223759889603,-0.918251156806946,-0.034068837761879,0.366109699010849,-0.929947912693024,-0.0357604138553143,0.366319745779037,-0.929801642894745,-0.122135445475578,0.377443581819534,-0.917943000793457,0.792650997638702,0.306703805923462,-0.526912987232208,0.793529212474823,0.306723296642303,-0.525578022003174,0.83832311630249,0.308443963527679,-0.449529409408569,0.837596595287323,0.308402627706528,-0.4509097635746,0.0531954579055309,0.355675846338272,-0.933094263076782,0.140471577644348,0.346023499965668,-0.927650451660156,0.138756811618805,0.346205651760101,-0.92784059047699,0.0514815039932728,0.355873316526413,-0.933115184307098,0.68175482749939,0.307106554508209,-0.663999915122986,0.682919144630432,0.30707910656929,-0.662815153598785,0.741558432579041,0.306266725063324,-0.596901714801788,0.740533649921417,0.306270211935043,-0.59817099571228,0.226916506886482,0.337247133255005,-0.913659274578094,0.311697691679001,0.329431623220444,-0.89124596118927,0.310045659542084,0.329576164484024,-0.89176869392395,0.22522234916687,0.337411493062973,-0.914017736911774,0.68175482749939,0.307106554508209,-0.663999915122986,0.616892457008362,0.309203177690506,-0.723765850067139,0.618185222148895,0.309151440858841,-0.7226842045784,0.682919144630432,0.30707910656929,-0.662815153598785,0.393998265266418,0.32265231013298,-0.860616624355316,0.473018854856491,0.316977322101593,-0.822057545185089,0.471511155366898,0.317077219486237,-0.822884678840637,0.392408698797226,0.322775214910507,-0.861296415328979,-0.62297797203064,0.546780109405518,0.559401273727417,-0.622600018978119,0.546782076358795,0.559820055961609,-0.544458389282227,0.546157240867615,0.63661390542984,-0.544851243495941,0.546164810657501,0.636271238327026,-0.749173283576965,0.542130589485168,0.380570262670517,-0.748875379562378,0.542154908180237,0.381121784448624,-0.691075086593628,0.545441210269928,0.474245965480804, +-0.69142085313797,0.545428514480591,0.473756343126297,-0.457792282104492,0.543579339981079,0.703525185585022,-0.363863587379456,0.539088845252991,0.759596288204193,-0.364233642816544,0.539109468460083,0.759404242038727,-0.458182454109192,0.543594658374786,0.703259348869324,-0.82937079668045,0.529900670051575,0.177057728171349,-0.829204618930817,0.529948055744171,0.177692919969559,-0.79514753818512,0.536967575550079,0.281791180372238,-0.795384585857391,0.53693151473999,0.281190246343613,-0.264036417007446,0.532751083374023,0.804028034210205,-0.159756988286972,0.524658858776093,0.83618825674057,-0.160041183233261,0.524682819843292,0.836118936538696,-0.264370322227478,0.532774686813354,0.803902685642242,-0.858820378780365,0.507110893726349,-0.0725682303309441,-0.85884153842926,0.507297873497009,-0.0709922388195992,-0.850532114505768,0.521198749542236,0.070336177945137,-0.850620985031128,0.521141111850739,0.0696836933493614,-0.0525338463485241,0.514930903911591,0.855620384216309,0.0560871362686157,0.503708839416504,0.862050890922546,0.055931381881237,0.503725826740265,0.862051010131836,-0.0527573451399803,0.514952600002289,0.855593621730804,-0.858820378780365,0.507110893726349,-0.0725682303309441,-0.846693277359009,0.491958439350128,-0.202700197696686,-0.846831798553467,0.492058485746384,-0.201877042651176,-0.85884153842926,0.507297873497009,-0.0709922388195992,0.374708205461502,0.4627885222435,0.8033806681633,0.374759554862976,0.462780892848969,0.803361177444458,0.271244674921036,0.477449804544449,0.835743963718414,0.271258860826492,0.477447926998138,0.835740506649017,0.56589549779892,0.431463211774826,0.702567994594574,0.566049754619598,0.431435257196426,0.702460944652557,0.473503619432449,0.447368800640106,0.758719623088837,0.473395019769669,0.447386562824249,0.758776843547821,0.727090716362,0.398976981639862,0.558709621429443,0.727292478084564,0.398931175470352,0.558479607105255,0.651057362556458,0.415211051702499,0.635392904281616,0.650871455669403,0.415248513221741,0.635558843612671,0.727090716362,0.398976981639862,0.558709621429443, +0.79344516992569,0.382883071899414,0.473122864961624,0.79364675283432,0.382830500602722,0.472827285528183,0.727292478084564,0.398931175470352,0.558479607105255,-0.846693277359009,0.491958439350128,-0.202700197696686,-0.815464079380035,0.475862234830856,-0.329504996538162,-0.815465927124023,0.475862890481949,-0.329499274492264,-0.846831798553467,0.492058485746384,-0.201877042651176,0.848966062068939,0.367198795080185,0.380028456449509,0.892837464809418,0.352152556180954,0.280766487121582,0.892991304397583,0.352092891931534,0.280351608991623,0.849151194095612,0.367141515016556,0.379669994115829,-0.761156737804413,0.456607937812805,-0.460597008466721,-0.705866098403931,0.440870642662048,-0.554424107074738,-0.706144034862518,0.440943568944931,-0.554011940956116,-0.761403024196625,0.456684768199921,-0.46011346578598,0.924410223960876,0.337962955236435,0.176768094301224,0.943210303783417,0.324836581945419,0.069537065923214,0.94326651096344,0.324779361486435,0.0690416321158409,0.924520075321198,0.337903290987015,0.176306530833244,-0.47791576385498,0.392008125782013,-0.786082684993744,-0.478183269500732,0.392056673765182,-0.785895764827728,-0.563493430614471,0.408390462398529,-0.71811717748642,-0.563204884529114,0.408332079648972,-0.718376755714417,0.921020865440369,0.293670505285263,-0.25588721036911,0.920892417430878,0.293632417917252,-0.256392329931259,0.941454291343689,0.302480190992355,-0.148894518613815,0.941521227359772,0.302526354789734,-0.148376524448395,-0.285650044679642,0.360450148582458,-0.887963891029358,-0.28582975268364,0.360476940870285,-0.887895166873932,-0.385172933340073,0.376006335020065,-0.842769920825958,-0.384942531585693,0.375968486070633,-0.842892110347748,0.842109024524689,0.281213819980621,-0.460185974836349,0.841877579689026,0.281194239854813,-0.460621327161789,0.887542843818665,0.286501616239548,-0.360810905694962,0.8877272605896,0.286530703306198,-0.360333889722824,-0.0740230157971382,0.331877410411835,-0.940413773059845,-0.0740731284022331,0.331883549690247,-0.940407574176788,-0.181617647409439,0.345696598291397,-0.920602560043335, +-0.181499347090721,0.345680624246597,-0.92063182592392,0.716678977012634,0.27633997797966,-0.640318214893341,0.716391921043396,0.276338160037994,-0.640640139579773,0.784551858901978,0.27778896689415,-0.554357051849365,0.784818291664124,0.277799308300018,-0.553974509239197,-0.0740230157971382,0.331877410411835,-0.940413773059845,0.0352001860737801,0.31924369931221,-0.947018682956696,0.0352210067212582,0.319241404533386,-0.947018623352051,-0.0740731284022331,0.331883549690247,-0.940407574176788,0.551947474479675,0.279355525970459,-0.785693645477295,0.5516676902771,0.279366254806519,-0.785886347293854,0.638385415077209,0.27686607837677,-0.718198537826538,0.638677060604095,0.276860743761063,-0.717941343784332,0.14455957710743,0.307964682579041,-0.940351128578186,0.252446264028549,0.298207700252533,-0.92051237821579,0.25260066986084,0.298194736242294,-0.920474231243134,0.144649922847748,0.307955890893936,-0.940340101718903,0.551947474479675,0.279355525970459,-0.785693645477295,0.457755833864212,0.283789813518524,-0.842569291591644,0.457503944635391,0.283803731203079,-0.842701315879822,0.5516676902771,0.279366254806519,-0.785886347293854,0.945100426673889,0.321361601352692,-0.0592612214386463,0.944999396800995,0.32110670208931,-0.0621831119060516,0.942857503890991,0.330706357955933,0.0406568497419357,0.942624449729919,0.330998301506042,0.0435798726975918,0.914996862411499,0.306163311004639,-0.262763619422913,0.91424298286438,0.305990785360336,-0.265573918819427,0.935418665409088,0.312832236289978,-0.16470530629158,0.935850083827972,0.313047140836716,-0.161821484565735,0.929018318653107,0.341506958007813,0.14247053861618,0.903660595417023,0.353367269039154,0.241927981376648,0.902763485908508,0.353722721338272,0.244741603732109,0.928451180458069,0.341832637786865,0.145357608795166,0.839734077453613,0.297025114297867,-0.454557776451111,0.838372349739075,0.296942532062531,-0.457118183374405,0.881751835346222,0.300671100616455,-0.363470107316971,0.882817029953003,0.300799340009689,-0.360768437385559,0.867113947868347,0.366131842136383,0.337728947401047, +0.819854557514191,0.37963405251503,0.428621560335159,0.818326234817505,0.380035907030106,0.431178390979767,0.865894973278046,0.366512924432755,0.340432345867157,0.72325474023819,0.294418901205063,-0.624676048755646,0.721356689929962,0.29442971944809,-0.626861691474915,0.784672200679779,0.294853210449219,-0.545298993587494,0.786312639713287,0.294889241456985,-0.542911410331726,0.76249897480011,0.393697440624237,0.513417661190033,0.695794880390167,0.408139318227768,0.591009140014648,0.693701684474945,0.408567637205124,0.593169867992401,0.760677754878998,0.394115179777145,0.515793025493622,0.72325474023819,0.294418901205063,-0.624676048755646,0.651384651660919,0.295619577169418,-0.698789715766907,0.649252712726593,0.295677155256271,-0.700746715068817,0.721356689929962,0.29442971944809,-0.626861691474915,0.448854804039001,0.451834350824356,0.770957291126251,0.446107596158981,0.452260613441467,0.772300660610199,0.535382688045502,0.437831223011017,0.722266674041748,0.537942707538605,0.43739852309227,0.720624804496765,0.571640729904175,0.298475980758667,-0.764289796352386,0.485066711902618,0.302949279546738,-0.820324242115021,0.482548385858536,0.303097635507584,-0.821753561496735,0.569301247596741,0.298579573631287,-0.765993654727936,0.256170600652695,0.479376256465912,0.839389562606812,0.253155767917633,0.479772597551346,0.840077698230743,0.351620554924011,0.466302245855331,0.811742126941681,0.354520440101624,0.465888202190399,0.810717821121216,0.392792463302612,0.308980494737625,-0.866166830062866,0.296021014451981,0.316491097211838,-0.901224076747894,0.293239027261734,0.316723376512527,-0.902051627635956,0.39012598991394,0.309171885251999,-0.86730295419693,0.0526029691100121,0.503961503505707,0.862122774124146,0.0494784153997898,0.504305720329285,0.862106502056122,0.152001261711121,0.492495626211166,0.856938600540161,0.155091568827629,0.492122828960419,0.856598913669586,0.196011558175087,0.325383514165878,-0.925043284893036,0.0940680652856827,0.335541069507599,-0.937317073345184,0.091158851981163,0.335846573114395,-0.937495172023773, +0.193148046731949,0.325654000043869,-0.925550282001495,0.0526029691100121,0.503961503505707,0.862122774124146,-0.0499545522034168,0.514737129211426,0.855891466140747,-0.0530712492763996,0.51504784822464,0.855516970157623,0.0494784153997898,0.504305720329285,0.862106502056122,-0.210083216428757,0.37220773100853,-0.904061079025269,-0.21291022002697,0.372595071792603,-0.903239786624908,-0.113199695944786,0.359471142292023,-0.926264762878418,-0.110308043658733,0.359106808900833,-0.926754832267761,-0.398338258266449,0.400197476148605,-0.825329422950745,-0.400926381349564,0.400616377592087,-0.823871731758118,-0.309236347675323,0.386369705200195,-0.868959963321686,-0.306510537862778,0.385964035987854,-0.8701052069664,-0.249945402145386,0.532553315162659,0.808649659156799,-0.344762533903122,0.539363443851471,0.768261551856995,-0.347603470087051,0.539549231529236,0.7668496966362,-0.252919554710388,0.532784163951874,0.807572066783905,-0.563495457172394,0.429348230361938,-0.70578545331955,-0.565705120563507,0.429777592420578,-0.703753471374512,-0.486787885427475,0.415148556232452,-0.768563210964203,-0.484372138977051,0.414721667766571,-0.770317792892456,-0.434464812278748,0.544650316238403,0.717353641986847,-0.517885088920593,0.548344731330872,0.656592130661011,-0.52034467458725,0.548432767391205,0.654570758342743,-0.437133491039276,0.544788181781769,0.715625643730164,-0.563495457172394,0.429348230361938,-0.70578545331955,-0.634679615497589,0.443887323141098,-0.632570803165436,-0.636652290821075,0.444313496351242,-0.630285143852234,-0.565705120563507,0.429777592420578,-0.703753471374512,-0.720072269439697,0.549504578113556,0.423722296953201,-0.721716940402985,0.549438714981079,0.421000689268112,-0.663566410541534,0.550772488117218,0.506289780139923,-0.661622643470764,0.550787031650543,0.508811414241791,-0.696999728679657,0.458149462938309,-0.551625311374664,-0.749644100666046,0.471949815750122,-0.4640012383461,-0.751059830188751,0.472352832555771,-0.461293786764145,-0.698706567287445,0.458566874265671,-0.549113392829895,-0.806347250938416,0.542018353939056,0.23668572306633, +-0.807334125041962,0.541853785514832,0.233679100871086,-0.76984703540802,0.546453654766083,0.329733341932297,-0.768522799015045,0.546569585800171,0.332617342472076,-0.791927576065063,0.485109061002731,-0.370836615562439,-0.823299050331116,0.497456014156342,-0.273342549800873,-0.824070870876312,0.497813850641251,-0.270348936319351,-0.793030261993408,0.48549222946167,-0.367967754602432,-0.848583817481995,0.528076231479645,0.0322650969028473,-0.833692848682404,0.535701215267181,0.134091392159462,-0.833054840564728,0.535911679267883,0.137179419398308,-0.848301291465759,0.528329789638519,0.0353924371302128,-0.843349695205688,0.508828580379486,-0.17278565466404,-0.851815938949585,0.519079089164734,-0.0704727098345757,-0.851890385150909,0.519371747970581,-0.0673485547304153,-0.843777120113373,0.509156107902527,-0.169706359505653,0.108188465237617,0.989902794361115,-0.0915847048163414,0.108189195394516,0.989902436733246,-0.091586709022522,0.108188599348068,0.989902555942535,-0.0915865376591682,-0.00963574182242155,-0.55536413192749,0.831551492214203,-0.0120826922357082,-0.476918876171112,0.878864228725433,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0632151067256927,-0.734642386436462,0.675503015518188,-0.0712676644325256,-0.735388100147247,0.673888206481934,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.136253580451012,-0.358394503593445,0.923573672771454,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.167589917778969,-0.331402182579041,0.928485929965973,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.00745450565591455,-0.599202632904053,0.800562679767609,-0.0128201153129339,-0.645580291748047,0.763584852218628,-0.0714048892259598,-0.254878640174866,0.96433299779892,-0.080881841480732,-0.238137289881706,0.967857837677002,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.780010282993317,0.19120155274868,0.595840692520142,-0.73331356048584,0.265376836061478,0.625960409641266,-0.732994079589844,0.265867739915848,0.626126170158386,-0.779767513275146,0.191598951816559,0.596030533313751, +-0.670773863792419,0.355791985988617,0.650749266147614,-0.584276378154755,0.462572455406189,0.666819274425507,-0.584463179111481,0.462361484766006,0.666801810264587,-0.670497238636017,0.356165111064911,0.650830209255219,-0.490983575582504,0.559980094432831,0.667351067066193,-0.400514185428619,0.639725744724274,0.656002461910248,-0.400390625,0.63982480764389,0.655981361865997,-0.491295993328094,0.559677600860596,0.667374908924103,-0.0503427796065807,0.808793902397156,0.585933446884155,-0.0503190979361534,0.808798611164093,0.585929036140442,-0.172773286700249,0.772700309753418,0.610805630683899,-0.173091113567352,0.772573292255402,0.610876262187958,0.20442359149456,0.800591707229614,0.563261747360229,0.203763425350189,0.800721347332001,0.563316762447357,0.0707439854741096,0.816980302333832,0.572309792041779,0.0699645951390266,0.817013561725616,0.572358131408691,-0.447487086057663,-0.710730791091919,-0.542786538600922,-0.335843801498413,-0.723738491535187,-0.60283625125885,-0.335327923297882,-0.723765015602112,-0.603091597557068,-0.44757017493248,-0.710715591907501,-0.54273784160614,-0.0551369413733482,-0.734911680221558,0.675917744636536,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0352162383496761,-0.736778855323792,0.67521595954895,-0.224032536149025,-0.735363602638245,-0.639569938182831,-0.223020389676094,-0.735501945018768,-0.639764726161957,-0.335327923297882,-0.723765015602112,-0.603091597557068,-0.335843801498413,-0.723738491535187,-0.60283625125885,-0.655419766902924,-0.638541400432587,-0.403348237276077,-0.560879707336426,-0.679872572422028,-0.472426921129227,-0.560998439788818,-0.679829001426697,-0.472348719835281,-0.655095458030701,-0.638708114624023,-0.403611063957214,-0.806198716163635,-0.539269089698792,-0.24337737262249,-0.806409239768982,-0.539085805416107,-0.24308568239212,-0.733721077442169,-0.593432605266571,-0.330894231796265,-0.733235716819763,-0.593746662139893,-0.331406772136688,-0.905624568462372,-0.420467346906662,-0.055239450186491,-0.865925014019012,-0.478144764900208,-0.146803960204124, +-0.865976393222809,-0.478082060813904,-0.146705165505409,-0.905573010444641,-0.420558720827103,-0.0553874485194683,-0.944638788700104,-0.298582345247269,0.136037021875381,-0.9447261095047,-0.297700047492981,0.137358129024506,-0.931242644786835,-0.362451523542404,0.0376285724341869,-0.931077837944031,-0.36295685172081,0.0368286482989788,-0.931982517242432,-0.155606091022491,0.327407032251358,-0.931770205497742,-0.154735133051872,0.328422427177429,-0.944476962089539,-0.227666184306145,0.236920595169067,-0.944572329521179,-0.228647872805595,0.235591500997543,-0.931982517242432,-0.155606091022491,0.327407032251358,-0.909620344638824,-0.0784249529242516,0.407970905303955,-0.909371197223663,-0.0776798352599144,0.408668488264084,-0.931770205497742,-0.154735133051872,0.328422427177429,0.907017171382904,0.00856839027255774,0.42100664973259,0.907039761543274,0.00840542558580637,0.420961111783981,0.920197308063507,-0.147865608334541,0.36245396733284,0.920217394828796,-0.148591563105583,0.362105578184128,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.00880798231810331,-0.685341358184814,0.728168666362762,0.000464630749775097,-0.715449333190918,0.698664426803589,0.103350006043911,-0.392857551574707,0.91377329826355,0.070955291390419,-0.434591323137283,0.897828280925751,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.00890681333839893,-0.546892523765564,0.837155520915985,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.0373075902462006,-0.488416314125061,0.871812880039215,0.820272266864777,0.333873003721237,0.464415907859802,0.821152627468109,0.331840932369232,0.464316755533218,0.879039883613586,0.158573463559151,0.44960355758667,0.878641426563263,0.160228952765465,0.449795454740524,0.524788796901703,0.683254659175873,0.507700622081757,0.529331564903259,0.680400371551514,0.506816923618317,0.701170325279236,0.527854084968567,0.479301959276199,0.69990074634552,0.529408276081085,0.479443222284317,0.524788796901703,0.683254659175873,0.507700622081757,0.352967143058777,0.76295405626297,0.541585922241211, +0.358468681573868,0.761199653148651,0.54043984413147,0.529331564903259,0.680400371551514,0.506816923618317,0.915544629096985,-0.28245684504509,0.286349713802338,0.91556453704834,-0.282254129648209,0.286485880613327,0.902240514755249,-0.373892724514008,0.214863583445549,0.902281999588013,-0.373685032129288,0.215050429105759,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.00851422641426325,-0.743472337722778,0.668712496757507,0.00680324109271169,-0.743137419223785,0.669104218482971,0.880204677581787,-0.45611110329628,0.131157830357552,0.880086541175842,-0.45645010471344,0.130770549178123,0.841499090194702,-0.539580106735229,0.0270673483610153,0.841839790344238,-0.539008736610413,0.0278462246060371,0.785835266113281,-0.612853646278381,-0.0829054936766624,0.724518954753876,-0.665144622325897,-0.180706933140755,0.725716173648834,-0.664317846298218,-0.178934931755066,0.786726355552673,-0.611918807029724,-0.0813445821404457,0.667674362659454,-0.697648644447327,-0.259802430868149,0.603122293949127,-0.723535418510437,-0.335767894983292,0.604258298873901,-0.723142147064209,-0.334570318460464,0.668704032897949,-0.697169661521912,-0.258436769247055,0.52468729019165,-0.746297776699066,-0.409564107656479,0.523687958717346,-0.746535301208496,-0.410409569740295,0.436331629753113,-0.765112340450287,-0.473516196012497,0.437109470367432,-0.764969885349274,-0.473028987646103,0.338509112596512,-0.779971957206726,-0.526360511779785,0.224923998117447,-0.78802889585495,-0.573079168796539,0.225181132555008,-0.788023769855499,-0.572985172271729,0.338974237442017,-0.779914259910583,-0.526146650314331,0.0802601724863052,-0.782320857048035,-0.617683053016663,-0.08151775598526,-0.759966433048248,-0.644830107688904,-0.0823800265789032,-0.759813010692596,-0.644901216030121,0.0801175236701965,-0.782306790351868,-0.617719233036041,0.104750499129295,-0.574084997177124,0.812067627906799,0.0694542229175568,-0.644765198230743,0.761218786239624,0.1020348072052,-0.653832316398621,0.749728083610535,0.14632174372673,-0.584464251995087,0.798117458820343, +-0.00272547081112862,-0.531193137168884,0.847246408462524,0.0136146126314998,-0.746125519275665,0.665666043758392,0.00872467365115881,-0.743663370609283,0.668497383594513,-0.0493366718292236,-0.305691778659821,0.950851321220398,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0264651086181402,-0.384438037872314,0.922771394252777,0.0208463128656149,-0.750408232212067,0.660645842552185,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.0243514515459538,-0.752699017524719,0.657914400100708,0.020675165578723,-0.748669028282166,0.662621438503265,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.0113691482692957,-0.736207127571106,0.676660776138306,-0.0720954388380051,-0.722913086414337,0.687167346477509,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0822479426860809,-0.731772184371948,0.676568448543549,-0.171944156289101,-0.9038245677948,-0.39183709025383,-0.0735059157013893,-0.902492582798004,-0.424386620521545,-0.0867995396256447,-0.877836525440216,-0.471029460430145,-0.18782351911068,-0.872961282730103,-0.450178772211075,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0933721512556076,-0.7385014295578,0.667755424976349,-0.0887147188186646,-0.736060202121735,0.67107754945755,-0.0961388573050499,-0.739680886268616,0.666055202484131,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.094108559191227,-0.739217102527618,0.66685950756073,-0.0339427143335342,-0.664139866828918,0.746837496757507,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.0552663579583168,-0.702335119247437,0.709697782993317,-0.0339427143335342,-0.664139866828918,0.746837496757507,-0.017238000407815,-0.613386571407318,0.789594769477844,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.542803108692169,-0.499213099479675,0.675389587879181,-0.511453211307526,-0.504643857479095,0.695521533489227,-0.586188852787018,-0.475560218095779,0.655915439128876,-0.62445455789566,-0.477743417024612,0.617914080619812,-0.679702937602997,-0.477341383695602,0.556910216808319,-0.730969667434692,-0.462718337774277,0.501572668552399, +-0.764131963253021,-0.462936341762543,0.44921287894249,-0.721238136291504,-0.468951195478439,0.50980406999588,-0.764131963253021,-0.462936341762543,0.44921287894249,-0.796359241008759,-0.469575434923172,0.381196916103363,-0.761715114116669,-0.472965806722641,0.442824393510818,-0.721238136291504,-0.468951195478439,0.50980406999588,-0.761715114116669,-0.472965806722641,0.442824393510818,-0.697560131549835,-0.470335334539413,0.540550231933594,-0.659939706325531,-0.463738262653351,0.591122925281525,-0.721238136291504,-0.468951195478439,0.50980406999588,-0.401788741350174,-0.485980093479156,0.776137351989746,-0.45688870549202,-0.418798744678497,0.784767627716064,-0.506363272666931,-0.447443634271622,0.737150132656097,-0.444082617759705,-0.495074033737183,0.746787965297699,0.746244728565216,0.371477276086807,-0.552379846572876,0.743211805820465,0.370267570018768,-0.557259380817413,0.680759608745575,0.417442053556442,-0.6019207239151,0.681774854660034,0.416619390249252,-0.601341187953949,-0.833627700805664,-0.454055666923523,0.314480870962143,-0.796359241008759,-0.469575434923172,0.381196916103363,-0.764131963253021,-0.462936341762543,0.44921287894249,-0.806883811950684,-0.447147369384766,0.386002361774445,-0.599214673042297,-0.449337095022202,0.662599444389343,-0.654242038726807,-0.423821270465851,0.626372873783112,-0.692995250225067,-0.448746055364609,0.564255774021149,-0.638755738735199,-0.468387067317963,0.610413610935211,-0.692995250225067,-0.448746055364609,0.564255774021149,-0.730969667434692,-0.462718337774277,0.501572668552399,-0.679702937602997,-0.477341383695602,0.556910216808319,-0.638755738735199,-0.468387067317963,0.610413610935211,-0.679702937602997,-0.477341383695602,0.556910216808319,-0.62445455789566,-0.477743417024612,0.617914080619812,-0.586188852787018,-0.475560218095779,0.655915439128876,-0.638755738735199,-0.468387067317963,0.610413610935211,-0.819685935974121,-0.428127497434616,0.380554527044296,-0.870072960853577,-0.391978114843369,0.298875033855438,-0.862800300121307,-0.420902848243713,0.28002941608429, +-0.836326658725739,-0.436529457569122,0.331662327051163,-0.862800300121307,-0.420902848243713,0.28002941608429,-0.876991271972656,-0.436529546976089,0.200818419456482,-0.856022953987122,-0.446936935186386,0.259753704071045,-0.836326658725739,-0.436529457569122,0.331662327051163,-0.769440650939941,-0.361524939537048,0.526555776596069,-0.717995405197144,-0.391631662845612,0.575419247150421,-0.681010067462921,-0.34606796503067,0.645338952541351,-0.735380709171295,-0.306696236133575,0.604278564453125,-0.781888067722321,-0.444380909204483,0.437237501144409,-0.730969667434692,-0.462718337774277,0.501572668552399,-0.692995250225067,-0.448746055364609,0.564255774021149,-0.752129912376404,-0.424689501523972,0.503924071788788,-0.283904254436493,-0.500032007694244,0.818148076534271,-0.313730418682098,-0.42525526881218,0.848958790302277,-0.382338881492615,-0.421155601739883,0.822462737560272,-0.344740658998489,-0.487214267253876,0.802356600761414,-0.506363272666931,-0.447443634271622,0.737150132656097,-0.45688870549202,-0.418798744678497,0.784767627716064,-0.519807934761047,-0.379468739032745,0.765377700328827,-0.557535588741302,-0.420800060033798,0.715598702430725,-0.519807934761047,-0.379468739032745,0.765377700328827,-0.577608823776245,-0.339330643415451,0.742443740367889,-0.614830255508423,-0.388362407684326,0.686409711837769,-0.557535588741302,-0.420800060033798,0.715598702430725,-0.614830255508423,-0.388362407684326,0.686409711837769,-0.654242038726807,-0.423821270465851,0.626372873783112,-0.599214673042297,-0.449337095022202,0.662599444389343,-0.557535588741302,-0.420800060033798,0.715598702430725,-0.60774028301239,-0.227636098861694,0.76081109046936,-0.654212951660156,-0.165818110108376,0.737908959388733,-0.668188512325287,-0.175477385520935,0.723001956939697,-0.61769962310791,-0.237255573272705,0.749771356582642,-0.717995405197144,-0.391631662845612,0.575419247150421,-0.654242038726807,-0.423821270465851,0.626372873783112,-0.614830255508423,-0.388362407684326,0.686409711837769,-0.681010067462921,-0.34606796503067,0.645338952541351, +-0.769440650939941,-0.361524939537048,0.526555776596069,-0.83791983127594,-0.303361445665359,0.453720301389694,-0.858109652996063,-0.358777672052383,0.367323279380798,-0.799119532108307,-0.402985364198685,0.446106284856796,-0.858109652996063,-0.358777672052383,0.367323279380798,-0.870072960853577,-0.391978114843369,0.298875033855438,-0.819685935974121,-0.428127497434616,0.380554527044296,-0.799119532108307,-0.402985364198685,0.446106284856796,-0.893979787826538,-0.394452691078186,0.212619945406914,-0.901660442352295,-0.406467497348785,0.147623583674431,-0.897973656654358,-0.415340721607208,0.145380243659019,-0.891054093837738,-0.395765334367752,0.222243919968605,-0.897973656654358,-0.415340721607208,0.145380243659019,-0.876991271972656,-0.436529546976089,0.200818419456482,-0.862800300121307,-0.420902848243713,0.28002941608429,-0.891054093837738,-0.395765334367752,0.222243919968605,0.815006196498871,0.30927911400795,-0.490011513233185,0.813092112541199,0.317157566547394,-0.488151997327805,0.877000987529755,0.273720771074295,-0.394900232553482,0.86610621213913,0.252949118614197,-0.431134313344955,-0.696622431278229,-0.237921595573425,0.676838636398315,-0.769385576248169,-0.151652723550797,0.620521783828735,-0.808619737625122,-0.233222469687462,0.540130913257599,-0.735380709171295,-0.306696236133575,0.604278564453125,-0.808619737625122,-0.233222469687462,0.540130913257599,-0.83791983127594,-0.303361445665359,0.453720301389694,-0.769440650939941,-0.361524939537048,0.526555776596069,-0.735380709171295,-0.306696236133575,0.604278564453125,-0.760019183158875,-0.0105386767536402,0.649815142154694,-0.771739482879639,-0.021193141117692,0.635585427284241,-0.73224937915802,-0.0923039242625237,0.674752414226532,-0.720698058605194,-0.0763984397053719,0.689026534557343,-0.952396750450134,-0.302878350019455,0.0347160324454308,-0.950811624526978,-0.309177875518799,0.0191435869783163,-0.933775961399078,-0.348707616329193,0.0804079100489616,-0.932711660861969,-0.346270352602005,0.10072585195303,-0.933775961399078,-0.348707616329193,0.0804079100489616, +-0.915845632553101,-0.376419931650162,0.139767020940781,-0.909937858581543,-0.378480046987534,0.169605419039726,-0.932711660861969,-0.346270352602005,0.10072585195303,-0.909937858581543,-0.378480046987534,0.169605419039726,-0.900952637195587,-0.363071650266647,0.237620115280151,-0.932035624980927,-0.32358592748642,0.163100019097328,-0.932711660861969,-0.346270352602005,0.10072585195303,-0.962175190448761,-0.203447386622429,0.181185275316238,-0.958916962146759,-0.268307656049728,0.0921370089054108,-0.932035624980927,-0.32358592748642,0.163100019097328,-0.929237723350525,-0.27287819981575,0.249107643961906,-0.932035624980927,-0.32358592748642,0.163100019097328,-0.900952637195587,-0.363071650266647,0.237620115280151,-0.892156720161438,-0.324062049388885,0.314706414937973,-0.929237723350525,-0.27287819981575,0.249107643961906,-0.892156720161438,-0.324062049388885,0.314706414937973,-0.876031935214996,-0.260043561458588,0.406134605407715,-0.916360914707184,-0.198118641972542,0.347895950078964,-0.929237723350525,-0.27287819981575,0.249107643961906,-0.978924870491028,-0.191251680254936,-0.0716174766421318,-0.977685511112213,-0.195159271359444,-0.0777417123317719,-0.965841293334961,-0.25716894865036,-0.0318521074950695,-0.967874825000763,-0.250627815723419,-0.0201032310724258,-0.965841293334961,-0.25716894865036,-0.0318521074950695,-0.950811624526978,-0.309177875518799,0.0191435869783163,-0.952396750450134,-0.302878350019455,0.0347160324454308,-0.967874825000763,-0.250627815723419,-0.0201032310724258,-0.952396750450134,-0.302878350019455,0.0347160324454308,-0.958916962146759,-0.268307656049728,0.0921370089054108,-0.977048754692078,-0.210245251655579,0.0342478863894939,-0.967874825000763,-0.250627815723419,-0.0201032310724258,-0.995356321334839,-0.0649469271302223,0.0710470527410507,-0.988789319992065,-0.147783741354942,-0.0213431045413017,-0.977048754692078,-0.210245251655579,0.0342478863894939,-0.982781887054443,-0.136359378695488,0.124682888388634,-0.977048754692078,-0.210245251655579,0.0342478863894939,-0.958916962146759,-0.268307656049728,0.0921370089054108, +-0.962175190448761,-0.203447386622429,0.181185275316238,-0.982781887054443,-0.136359378695488,0.124682888388634,-0.962175190448761,-0.203447386622429,0.181185275316238,-0.951594173908234,-0.117630645632744,0.283956855535507,-0.972479999065399,-0.0425277799367905,0.229071795940399,-0.982781887054443,-0.136359378695488,0.124682888388634,-0.981316208839417,-0.0627042353153229,-0.181897863745689,-0.978673994541168,-0.0664497539401054,-0.194375023245811,-0.983105003833771,-0.128083795309067,-0.130763083696365,-0.983983874320984,-0.127371191978455,-0.124709591269493,-0.983105003833771,-0.128083795309067,-0.130763083696365,-0.977685511112213,-0.195159271359444,-0.0777417123317719,-0.978924870491028,-0.191251680254936,-0.0716174766421318,-0.983983874320984,-0.127371191978455,-0.124709591269493,-0.978924870491028,-0.191251680254936,-0.0716174766421318,-0.988789319992065,-0.147783741354942,-0.0213431045413017,-0.993958592414856,-0.0808796733617783,-0.0741937384009361,-0.983983874320984,-0.127371191978455,-0.124709591269493,-0.995416045188904,0.0910399705171585,-0.0293051023036242,-0.992118656635284,-0.00848364736884832,-0.125014245510101,-0.993958592414856,-0.0808796733617783,-0.0741937384009361,-0.999738276004791,0.0112721426412463,0.019907470792532,-0.993958592414856,-0.0808796733617783,-0.0741937384009361,-0.988789319992065,-0.147783741354942,-0.0213431045413017,-0.995356321334839,-0.0649469271302223,0.0710470527410507,-0.999738276004791,0.0112721426412463,0.019907470792532,-0.995356321334839,-0.0649469271302223,0.0710470527410507,-0.983691811561584,0.0357369296252728,0.176276281476021,-0.985108971595764,0.117774337530136,0.125258356332779,-0.999738276004791,0.0112721426412463,0.019907470792532,-0.952480435371399,0.07363610714674,-0.295564949512482,-0.947595119476318,0.0565681606531143,-0.314425706863403,-0.966262817382813,-0.00838340632617474,-0.257421582937241,-0.970815420150757,0.00323518086224794,-0.239805743098259,-0.966262817382813,-0.00838340632617474,-0.257421582937241,-0.978673994541168,-0.0664497539401054,-0.194375023245811, +-0.981316208839417,-0.0627042353153229,-0.181897863745689,-0.970815420150757,0.00323518086224794,-0.239805743098259,-0.981316208839417,-0.0627042353153229,-0.181897863745689,-0.992118656635284,-0.00848364736884832,-0.125014245510101,-0.981865644454956,0.069051168859005,-0.176555037498474,-0.970815420150757,0.00323518086224794,-0.239805743098259,-0.931258499622345,0.227360337972641,-0.284718871116638,-0.891023218631744,0.302407532930374,-0.338566601276398,-0.887727320194244,0.218530923128128,-0.405196785926819,-0.92460024356842,0.147649690508842,-0.351160943508148,-0.887727320194244,0.218530923128128,-0.405196785926819,-0.884512603282928,0.196809977293015,-0.422969549894333,-0.920266151428223,0.128234341740608,-0.369683980941772,-0.92460024356842,0.147649690508842,-0.351160943508148,-0.920266151428223,0.128234341740608,-0.369683980941772,-0.947595119476318,0.0565681606531143,-0.314425706863403,-0.952480435371399,0.07363610714674,-0.295564949512482,-0.92460024356842,0.147649690508842,-0.351160943508148,-0.957671821117401,0.25646111369133,-0.130737841129303,-0.961841464042664,0.148484349250793,-0.229811370372772,-0.981865644454956,0.069051168859005,-0.176555037498474,-0.981655716896057,0.173447653651237,-0.0791692063212395,-0.981865644454956,0.069051168859005,-0.176555037498474,-0.992118656635284,-0.00848364736884832,-0.125014245510101,-0.995416045188904,0.0910399705171585,-0.0293051023036242,-0.981655716896057,0.173447653651237,-0.0791692063212395,-0.995416045188904,0.0910399705171585,-0.0293051023036242,-0.976541996002197,0.201258972287178,0.0765544474124908,-0.957989275455475,0.28542160987854,0.0281243193894625,-0.981655716896057,0.173447653651237,-0.0791692063212395,-0.841935217380524,0.373304575681686,-0.389600723981857,-0.784067809581757,0.440501511096954,-0.437259525060654,-0.791389107704163,0.350091516971588,-0.501137971878052,-0.843363463878632,0.285134792327881,-0.455451726913452,-0.791389107704163,0.350091516971588,-0.501137971878052,-0.793669164180756,0.323372006416321,-0.515286207199097,-0.842367887496948,0.260527938604355,-0.471743077039719, +-0.843363463878632,0.285134792327881,-0.455451726913452,-0.842367887496948,0.260527938604355,-0.471743077039719,-0.884512603282928,0.196809977293015,-0.422969549894333,-0.887727320194244,0.218530923128128,-0.405196785926819,-0.843363463878632,0.285134792327881,-0.455451726913452,-0.87816721200943,0.416062653064728,-0.236038520932198,-0.891023218631744,0.302407532930374,-0.338566601276398,-0.931258499622345,0.227360337972641,-0.284718871116638,-0.922917366027832,0.338303685188293,-0.18377748131752,-0.931258499622345,0.227360337972641,-0.284718871116638,-0.961841464042664,0.148484349250793,-0.229811370372772,-0.957671821117401,0.25646111369133,-0.130737841129303,-0.922917366027832,0.338303685188293,-0.18377748131752,-0.957671821117401,0.25646111369133,-0.130737841129303,-0.929179430007935,0.369009584188461,-0.02138601988554,-0.889850080013275,0.450553297996521,-0.0718943104147911,-0.922917366027832,0.338303685188293,-0.18377748131752,-0.718789637088776,0.50237250328064,-0.480586618185043,-0.648189187049866,0.556029677391052,-0.520270943641663,-0.663238883018494,0.469251841306686,-0.583023846149445,-0.731321692466736,0.412950783967972,-0.542807757854462,-0.663238883018494,0.469251841306686,-0.583023846149445,-0.669276058673859,0.444175958633423,-0.595631718635559,-0.736534833908081,0.386070221662521,-0.555397272109985,-0.731321692466736,0.412950783967972,-0.542807757854462,-0.736534833908081,0.386070221662521,-0.555397272109985,-0.793669164180756,0.323372006416321,-0.515286207199097,-0.791389107704163,0.350091516971588,-0.501137971878052,-0.731321692466736,0.412950783967972,-0.542807757854462,-0.761472582817078,0.555672168731689,-0.333748400211334,-0.784067809581757,0.440501511096954,-0.437259525060654,-0.841935217380524,0.373304575681686,-0.389600723981857,-0.82421350479126,0.48866593837738,-0.286142706871033,-0.841935217380524,0.373304575681686,-0.389600723981857,-0.891023218631744,0.302407532930374,-0.338566601276398,-0.87816721200943,0.416062653064728,-0.236038520932198,-0.82421350479126,0.48866593837738,-0.286142706871033, +-0.87816721200943,0.416062653064728,-0.236038520932198,-0.841037273406982,0.52714604139328,-0.121545940637589,-0.783733904361725,0.597517430782318,-0.169511020183563,-0.82421350479126,0.48866593837738,-0.286142706871033,-0.570380389690399,0.601022899150848,-0.559854984283447,-0.483266919851303,0.637818694114685,-0.599700212478638,-0.499635070562363,0.55302631855011,-0.666728317737579,-0.586081624031067,0.515829563140869,-0.624842584133148,-0.499635070562363,0.55302631855011,-0.666728317737579,-0.504456877708435,0.530963599681854,-0.680882453918457,-0.591385304927826,0.492674440145493,-0.638384997844696,-0.586081624031067,0.515829563140869,-0.624842584133148,-0.591385304927826,0.492674440145493,-0.638384997844696,-0.669276058673859,0.444175958633423,-0.595631718635559,-0.663238883018494,0.469251841306686,-0.583023846149445,-0.586081624031067,0.515829563140869,-0.624842584133148,-0.618495643138885,0.666654586791992,-0.415974497795105,-0.648189187049866,0.556029677391052,-0.520270943641663,-0.718789637088776,0.50237250328064,-0.480586618185043,-0.691979885101318,0.615448176860809,-0.377342462539673,-0.718789637088776,0.50237250328064,-0.480586618185043,-0.784067809581757,0.440501511096954,-0.437259525060654,-0.761472582817078,0.555672168731689,-0.333748400211334,-0.691979885101318,0.615448176860809,-0.377342462539673,-0.761472582817078,0.555672168731689,-0.333748400211334,-0.718414783477783,0.661326229572296,-0.215703085064888,-0.64716762304306,0.71720826625824,-0.258430629968643,-0.691979885101318,0.615448176860809,-0.377342462539673,-0.391689866781235,0.666319727897644,-0.634505271911621,-0.295942038297653,0.689684271812439,-0.660873651504517,-0.317597150802612,0.601453065872192,-0.733066260814667,-0.409706622362137,0.581074953079224,-0.703201591968536,-0.317597150802612,0.601453065872192,-0.733066260814667,-0.321832239627838,0.578828454017639,-0.749254107475281,-0.414173930883408,0.559403121471405,-0.718002796173096,-0.409706622362137,0.581074953079224,-0.703201591968536,-0.414173930883408,0.559403121471405,-0.718002796173096, +-0.504456877708435,0.530963599681854,-0.680882453918457,-0.499635070562363,0.55302631855011,-0.666728317737579,-0.409706622362137,0.581074953079224,-0.703201591968536,-0.452260822057724,0.746307671070099,-0.488349348306656,-0.483266919851303,0.637818694114685,-0.599700212478638,-0.570380389690399,0.601022899150848,-0.559854984283447,-0.539260029792786,0.710267543792725,-0.452458471059799,-0.570380389690399,0.601022899150848,-0.559854984283447,-0.648189187049866,0.556029677391052,-0.520270943641663,-0.618495643138885,0.666654586791992,-0.415974497795105,-0.539260029792786,0.710267543792725,-0.452458471059799,-0.618495643138885,0.666654586791992,-0.415974497795105,-0.572802007198334,0.76435112953186,-0.296082854270935,-0.494097322225571,0.804125130176544,-0.330530822277069,-0.539260029792786,0.710267543792725,-0.452458471059799,-0.197084248065948,0.709033012390137,-0.677074491977692,-0.0991670340299606,0.720739305019379,-0.686076402664185,-0.12533675134182,0.621041238307953,-0.773691475391388,-0.222790628671646,0.615127682685852,-0.756295084953308,-0.12533675134182,0.621041238307953,-0.773691475391388,-0.129696503281593,0.592461168766022,-0.79509025812149,-0.227020755410194,0.590042889118195,-0.774797260761261,-0.222790628671646,0.615127682685852,-0.756295084953308,-0.227020755410194,0.590042889118195,-0.774797260761261,-0.321832239627838,0.578828454017639,-0.749254107475281,-0.317597150802612,0.601453065872192,-0.733066260814667,-0.222790628671646,0.615127682685852,-0.756295084953308,-0.257429361343384,0.798309743404388,-0.544455528259277,-0.295942038297653,0.689684271812439,-0.660873651504517,-0.391689866781235,0.666319727897644,-0.634505271911621,-0.359151095151901,0.774681687355042,-0.520460069179535,-0.391689866781235,0.666319727897644,-0.634505271911621,-0.483266919851303,0.637818694114685,-0.599700212478638,-0.452260822057724,0.746307671070099,-0.488349348306656,-0.359151095151901,0.774681687355042,-0.520460069179535,-0.452260822057724,0.746307671070099,-0.488349348306656,-0.409441769123077,0.836996614933014,-0.363034576177597, +-0.317929446697235,0.862894356250763,-0.392853856086731,-0.359151095151901,0.774681687355042,-0.520460069179535,-0.00141373567748815,0.71882700920105,-0.695187568664551,0.0927319303154945,0.700167775154114,-0.707930684089661,0.0745094418525696,0.597803354263306,-0.798172652721405,-0.0240519866347313,0.615848958492279,-0.787497103214264,0.0745094418525696,0.597803354263306,-0.798172652721405,0.0687742754817009,0.567654371261597,-0.82038938999176,-0.0291350279003382,0.584923088550568,-0.810565292835236,-0.0240519866347313,0.615848958492279,-0.787497103214264,-0.0291350279003382,0.584923088550568,-0.810565292835236,-0.129696503281593,0.592461168766022,-0.79509025812149,-0.12533675134182,0.621041238307953,-0.773691475391388,-0.0240519866347313,0.615848958492279,-0.787497103214264,-0.0603340454399586,0.82662570476532,-0.559508621692657,-0.0991670340299606,0.720739305019379,-0.686076402664185,-0.197084248065948,0.709033012390137,-0.677074491977692,-0.153918191790581,0.816798090934753,-0.556012749671936,-0.197084248065948,0.709033012390137,-0.677074491977692,-0.295942038297653,0.689684271812439,-0.660873651504517,-0.257429361343384,0.798309743404388,-0.544455528259277,-0.153918191790581,0.816798090934753,-0.556012749671936,-0.257429361343384,0.798309743404388,-0.544455528259277,-0.216100662946701,0.881461918354034,-0.41991114616394,-0.115516379475594,0.890218913555145,-0.440643012523651,-0.153918191790581,0.816798090934753,-0.556012749671936,0.046020619571209,0.885125994682312,-0.463070333003998,0.122072115540504,0.873593509197235,-0.471097469329834,0.110308937728405,0.807806670665741,-0.579034030437469,0.0266171954572201,0.824205875396729,-0.565664410591125,0.110308937728405,0.807806670665741,-0.579034030437469,0.0927319303154945,0.700167775154114,-0.707930684089661,-0.00141373567748815,0.71882700920105,-0.695187568664551,0.0266171954572201,0.824205875396729,-0.565664410591125,-0.00141373567748815,0.71882700920105,-0.695187568664551,-0.0991670340299606,0.720739305019379,-0.686076402664185,-0.0603340454399586,0.82662570476532,-0.559508621692657, +0.0266171954572201,0.824205875396729,-0.565664410591125,0.260247409343719,0.529694139957428,-0.807276487350464,0.253559291362762,0.503533184528351,-0.825930893421173,0.16214956343174,0.54104608297348,-0.825213074684143,0.168222367763519,0.568801522254944,-0.805087685585022,0.16214956343174,0.54104608297348,-0.825213074684143,0.0687742754817009,0.567654371261597,-0.82038938999176,0.0745094418525696,0.597803354263306,-0.798172652721405,0.168222367763519,0.568801522254944,-0.805087685585022,0.0745094418525696,0.597803354263306,-0.798172652721405,0.0927319303154945,0.700167775154114,-0.707930684089661,0.184642627835274,0.667108237743378,-0.721715807914734,0.168222367763519,0.568801522254944,-0.805087685585022,0.206236377358437,0.853951871395111,-0.477737009525299,0.305734843015671,0.821716368198395,-0.480945348739624,0.295671135187149,0.734853804111481,-0.610383868217468,0.197715505957603,0.777518510818481,-0.596970319747925,0.295671135187149,0.734853804111481,-0.610383868217468,0.278666794300079,0.623718321323395,-0.730287849903107,0.184642627835274,0.667108237743378,-0.721715807914734,0.197715505957603,0.777518510818481,-0.596970319747925,0.184642627835274,0.667108237743378,-0.721715807914734,0.0927319303154945,0.700167775154114,-0.707930684089661,0.110308937728405,0.807806670665741,-0.579034030437469,0.197715505957603,0.777518510818481,-0.596970319747925,-0.17912083864212,0.940421402454376,-0.289003938436508,-0.145446747541428,0.976196050643921,-0.160892739892006,-0.0665304213762283,0.979680120944977,-0.189210548996925,-0.0894457697868347,0.942907691001892,-0.320818662643433,-0.0665304213762283,0.979680120944977,-0.189210548996925,0.00974549166858196,0.97719269990921,-0.212130978703499,-0.0109201166778803,0.937956571578979,-0.34658083319664,-0.0894457697868347,0.942907691001892,-0.320818662643433,-0.0109201166778803,0.937956571578979,-0.34658083319664,-0.0306913759559393,0.89065808057785,-0.453636556863785,-0.115516379475594,0.890218913555145,-0.440643012523651,-0.0894457697868347,0.942907691001892,-0.320818662643433, +0.0853947922587395,0.970623910427094,-0.224937632679939,0.161752223968506,0.960318624973297,-0.227210134267807,0.139876589179039,0.921451508998871,-0.362438380718231,0.0637261047959328,0.930470943450928,-0.360780656337738,0.139876589179039,0.921451508998871,-0.362438380718231,0.122072115540504,0.873593509197235,-0.471097469329834,0.046020619571209,0.885125994682312,-0.463070333003998,0.0637261047959328,0.930470943450928,-0.360780656337738,0.046020619571209,0.885125994682312,-0.463070333003998,-0.0306913759559393,0.89065808057785,-0.453636556863785,-0.0109201166778803,0.937956571578979,-0.34658083319664,0.0637261047959328,0.930470943450928,-0.360780656337738,0.435032725334167,0.425925701856613,-0.793305635452271,0.423600763082504,0.403470605611801,-0.811032652854919,0.34177827835083,0.455493062734604,-0.822018027305603,0.35033118724823,0.480568736791611,-0.803941428661346,0.34177827835083,0.455493062734604,-0.822018027305603,0.253559291362762,0.503533184528351,-0.825930893421173,0.260247409343719,0.529694139957428,-0.807276487350464,0.35033118724823,0.480568736791611,-0.803941428661346,0.260247409343719,0.529694139957428,-0.807276487350464,0.278666794300079,0.623718321323395,-0.730287849903107,0.372894942760468,0.572880983352661,-0.729901909828186,0.35033118724823,0.480568736791611,-0.803941428661346,0.407908082008362,0.777762889862061,-0.478221565485001,0.501989424228668,0.726572453975677,-0.46914729475975,0.489397883415222,0.629499495029449,-0.603506445884705,0.395785719156265,0.684576153755188,-0.61213493347168,0.489397883415222,0.629499495029449,-0.603506445884705,0.462735444307327,0.516225755214691,-0.720685064792633,0.372894942760468,0.572880983352661,-0.729901909828186,0.395785719156265,0.684576153755188,-0.61213493347168,0.372894942760468,0.572880983352661,-0.729901909828186,0.278666794300079,0.623718321323395,-0.730287849903107,0.295671135187149,0.734853804111481,-0.610383868217468,0.395785719156265,0.684576153755188,-0.61213493347168,0.240361914038658,0.945226669311523,-0.220845133066177,0.321096897125244,0.923266470432281,-0.21089231967926, +0.315279066562653,0.884803473949432,-0.343106389045715,0.222561627626419,0.908286392688751,-0.354234665632248,0.315279066562653,0.884803473949432,-0.343106389045715,0.305734843015671,0.821716368198395,-0.480945348739624,0.206236377358437,0.853951871395111,-0.477737009525299,0.222561627626419,0.908286392688751,-0.354234665632248,0.206236377358437,0.853951871395111,-0.477737009525299,0.122072115540504,0.873593509197235,-0.471097469329834,0.139876589179039,0.921451508998871,-0.362438380718231,0.222561627626419,0.908286392688751,-0.354234665632248,0.593215882778168,0.306513071060181,-0.744408965110779,0.57987517118454,0.29037207365036,-0.761202275753021,0.500773668289185,0.351387292146683,-0.791045308113098,0.514229416847229,0.370154410600662,-0.773662686347961,0.500773668289185,0.351387292146683,-0.791045308113098,0.423600763082504,0.403470605611801,-0.811032652854919,0.435032725334167,0.425925701856613,-0.793305635452271,0.514229416847229,0.370154410600662,-0.773662686347961,0.435032725334167,0.425925701856613,-0.793305635452271,0.462735444307327,0.516225755214691,-0.720685064792633,0.546164572238922,0.455898433923721,-0.702752351760864,0.514229416847229,0.370154410600662,-0.773662686347961,0.588184535503387,0.669372022151947,-0.453850239515305,0.668926298618317,0.604225635528564,-0.432953864336014,0.65693324804306,0.50030654668808,-0.564032018184662,0.575634002685547,0.569016814231873,-0.587252378463745,0.65693324804306,0.50030654668808,-0.564032018184662,0.626206994056702,0.388383895158768,-0.676034569740295,0.546164572238922,0.455898433923721,-0.702752351760864,0.575634002685547,0.569016814231873,-0.587252378463745,0.546164572238922,0.455898433923721,-0.702752351760864,0.462735444307327,0.516225755214691,-0.720685064792633,0.489397883415222,0.629499495029449,-0.603506445884705,0.575634002685547,0.569016814231873,-0.587252378463745,0.403838217258453,0.892540633678436,-0.200713366270065,0.486889511346817,0.853006660938263,-0.187931269407272,0.500174343585968,0.803229987621307,-0.323492258787155,0.410055309534073,0.848762512207031,-0.333851516246796, +0.500174343585968,0.803229987621307,-0.323492258787155,0.501989424228668,0.726572453975677,-0.46914729475975,0.407908082008362,0.777762889862061,-0.478221565485001,0.410055309534073,0.848762512207031,-0.333851516246796,0.407908082008362,0.777762889862061,-0.478221565485001,0.305734843015671,0.821716368198395,-0.480945348739624,0.315279066562653,0.884803473949432,-0.343106389045715,0.410055309534073,0.848762512207031,-0.333851516246796,0.736890017986298,0.123637452721596,-0.664610326290131,0.727321803569794,0.107878863811493,-0.67776483297348,0.659385800361633,0.208390116691589,-0.722346127033234,0.670958340167999,0.223740339279175,-0.706933557987213,0.659385800361633,0.208390116691589,-0.722346127033234,0.57987517118454,0.29037207365036,-0.761202275753021,0.593215882778168,0.306513071060181,-0.744408965110779,0.670958340167999,0.223740339279175,-0.706933557987213,0.593215882778168,0.306513071060181,-0.744408965110779,0.626206994056702,0.388383895158768,-0.676034569740295,0.702656030654907,0.306119412183762,-0.64231264591217,0.670958340167999,0.223740339279175,-0.706933557987213,0.745279669761658,0.528198301792145,-0.406896412372589,0.81654679775238,0.438992440700531,-0.374882787466049,0.803265392780304,0.325351893901825,-0.498909711837769,0.733676016330719,0.419614046812057,-0.534456253051758,0.803265392780304,0.325351893901825,-0.498909711837769,0.769560694694519,0.207985699176788,-0.603753447532654,0.702656030654907,0.306119412183762,-0.64231264591217,0.733676016330719,0.419614046812057,-0.534456253051758,0.702656030654907,0.306119412183762,-0.64231264591217,0.626206994056702,0.388383895158768,-0.676034569740295,0.65693324804306,0.50030654668808,-0.564032018184662,0.733676016330719,0.419614046812057,-0.534456253051758,0.564300119876862,0.807275474071503,-0.172833696007729,0.636554300785065,0.754995405673981,-0.157418131828308,0.66083151102066,0.692164480686188,-0.29018959403038,0.583394467830658,0.751233637332916,-0.308705508708954,0.66083151102066,0.692164480686188,-0.29018959403038,0.668926298618317,0.604225635528564,-0.432953864336014, +0.588184535503387,0.669372022151947,-0.453850239515305,0.583394467830658,0.751233637332916,-0.308705508708954,0.588184535503387,0.669372022151947,-0.453850239515305,0.501989424228668,0.726572453975677,-0.46914729475975,0.500174343585968,0.803229987621307,-0.323492258787155,0.583394467830658,0.751233637332916,-0.308705508708954,0.247400924563408,0.964831233024597,-0.0888443067669868,0.318148761987686,0.943682849407196,-0.0907963067293167,0.320006310939789,0.94010728597641,-0.117448836565018,0.247328132390976,0.96162736415863,-0.118750348687172,0.320006310939789,0.94010728597641,-0.117448836565018,0.321096897125244,0.923266470432281,-0.21089231967926,0.240361914038658,0.945226669311523,-0.220845133066177,0.247328132390976,0.96162736415863,-0.118750348687172,0.240361914038658,0.945226669311523,-0.220845133066177,0.161752223968506,0.960318624973297,-0.227210134267807,0.174514397978783,0.977854073047638,-0.115526169538498,0.247328132390976,0.96162736415863,-0.118750348687172,0.391484260559082,0.916363656520844,-0.0837718173861504,0.465701639652252,0.882141351699829,-0.0703451931476593,0.471571207046509,0.876666605472565,-0.0952691808342934,0.395108222961426,0.912105083465576,-0.10933330655098,0.471571207046509,0.876666605472565,-0.0952691808342934,0.486889511346817,0.853006660938263,-0.187931269407272,0.403838217258453,0.892540633678436,-0.200713366270065,0.395108222961426,0.912105083465576,-0.10933330655098,0.403838217258453,0.892540633678436,-0.200713366270065,0.321096897125244,0.923266470432281,-0.21089231967926,0.320006310939789,0.94010728597641,-0.117448836565018,0.395108222961426,0.912105083465576,-0.10933330655098,0.0853947922587395,0.970623910427094,-0.224937632679939,0.00974549166858196,0.97719269990921,-0.212130978703499,0.0293397326022387,0.994452595710754,-0.101010888814926,0.102393716573715,0.988690316677094,-0.109576374292374,0.0293397326022387,0.994452595710754,-0.101010888814926,0.0366612523794174,0.996991157531738,-0.0682983100414276,0.107730582356453,0.991324484348297,-0.0752976313233376,0.102393716573715,0.988690316677094,-0.109576374292374, +0.107730582356453,0.991324484348297,-0.0752976313233376,0.177220091223717,0.980723738670349,-0.082305058836937,0.174514397978783,0.977854073047638,-0.115526169538498,0.102393716573715,0.988690316677094,-0.109576374292374,0.534829676151276,0.843019902706146,-0.0572245009243488,0.600964903831482,0.79797101020813,-0.0456449538469315,0.609834909439087,0.789600491523743,-0.0680627301335335,0.542549788951874,0.836125791072845,-0.0808297097682953,0.609834909439087,0.789600491523743,-0.0680627301335335,0.636554300785065,0.754995405673981,-0.157418131828308,0.564300119876862,0.807275474071503,-0.172833696007729,0.542549788951874,0.836125791072845,-0.0808297097682953,0.564300119876862,0.807275474071503,-0.172833696007729,0.486889511346817,0.853006660938263,-0.187931269407272,0.471571207046509,0.876666605472565,-0.0952691808342934,0.542549788951874,0.836125791072845,-0.0808297097682953,-0.119121558964252,0.990518391132355,-0.0684343054890633,-0.110974356532097,0.992941081523895,-0.0418661348521709,-0.0372524075210094,0.997579038143158,-0.0587233379483223,-0.0452299304306507,0.995095789432526,-0.0879700407385826,-0.0372524075210094,0.997579038143158,-0.0587233379483223,0.0366612523794174,0.996991157531738,-0.0682983100414276,0.0293397326022387,0.994452595710754,-0.101010888814926,-0.0452299304306507,0.995095789432526,-0.0879700407385826,0.0293397326022387,0.994452595710754,-0.101010888814926,0.00974549166858196,0.97719269990921,-0.212130978703499,-0.0665304213762283,0.979680120944977,-0.189210548996925,-0.0452299304306507,0.995095789432526,-0.0879700407385826,-0.357482761144638,0.904777467250824,-0.231481567025185,-0.30244854092598,0.947197139263153,-0.10650035738945,-0.224958717823029,0.965238332748413,-0.133073568344116,-0.27144131064415,0.926926016807556,-0.25909024477005,-0.224958717823029,0.965238332748413,-0.133073568344116,-0.145446747541428,0.976196050643921,-0.160892739892006,-0.17912083864212,0.940421402454376,-0.289003938436508,-0.27144131064415,0.926926016807556,-0.25909024477005,-0.17912083864212,0.940421402454376,-0.289003938436508, +-0.216100662946701,0.881461918354034,-0.41991114616394,-0.317929446697235,0.862894356250763,-0.392853856086731,-0.27144131064415,0.926926016807556,-0.25909024477005,-0.259150177240372,0.965677917003632,-0.0175300035625696,-0.24537618458271,0.969399333000183,0.00744231091812253,-0.180351391434669,0.983444571495056,-0.0176082346588373,-0.190349519252777,0.980754554271698,-0.0434475801885128,-0.180351391434669,0.983444571495056,-0.0176082346588373,-0.110974356532097,0.992941081523895,-0.0418661348521709,-0.119121558964252,0.990518391132355,-0.0684343054890633,-0.190349519252777,0.980754554271698,-0.0434475801885128,-0.119121558964252,0.990518391132355,-0.0684343054890633,-0.145446747541428,0.976196050643921,-0.160892739892006,-0.224958717823029,0.965238332748413,-0.133073568344116,-0.190349519252777,0.980754554271698,-0.0434475801885128,-0.514174401760101,0.840704441070557,-0.169825196266174,-0.449486553668976,0.891828775405884,-0.0510223843157291,-0.377480208873749,0.92258208990097,-0.0796928331255913,-0.438212841749191,0.875887155532837,-0.201968222856522,-0.377480208873749,0.92258208990097,-0.0796928331255913,-0.30244854092598,0.947197139263153,-0.10650035738945,-0.357482761144638,0.904777467250824,-0.231481567025185,-0.438212841749191,0.875887155532837,-0.201968222856522,-0.357482761144638,0.904777467250824,-0.231481567025185,-0.409441769123077,0.836996614933014,-0.363034576177597,-0.494097322225571,0.804125130176544,-0.330530822277069,-0.438212841749191,0.875887155532837,-0.201968222856522,-0.396079361438751,0.917661011219025,0.031928289681673,-0.378423184156418,0.924041748046875,0.0542460083961487,-0.310468047857285,0.95011293888092,0.0299149844795465,-0.327474147081375,0.944837749004364,0.00650394847616553,-0.310468047857285,0.95011293888092,0.0299149844795465,-0.24537618458271,0.969399333000183,0.00744231091812253,-0.259150177240372,0.965677917003632,-0.0175300035625696,-0.327474147081375,0.944837749004364,0.00650394847616553,-0.259150177240372,0.965677917003632,-0.0175300035625696,-0.30244854092598,0.947197139263153,-0.10650035738945, +-0.377480208873749,0.92258208990097,-0.0796928331255913,-0.327474147081375,0.944837749004364,0.00650394847616553,-0.657214224338531,0.747901797294617,-0.0933400020003319,-0.585924983024597,0.810102999210358,0.0206161811947823,-0.518908381462097,0.854644656181335,-0.0177868530154228,-0.586880564689636,0.798507153987885,-0.134005635976791,-0.518908381462097,0.854644656181335,-0.0177868530154228,-0.449486553668976,0.891828775405884,-0.0510223843157291,-0.514174401760101,0.840704441070557,-0.169825196266174,-0.586880564689636,0.798507153987885,-0.134005635976791,-0.514174401760101,0.840704441070557,-0.169825196266174,-0.572802007198334,0.76435112953186,-0.296082854270935,-0.64716762304306,0.71720826625824,-0.258430629968643,-0.586880564689636,0.798507153987885,-0.134005635976791,-0.526555061340332,0.844215154647827,0.10020288079977,-0.508826792240143,0.85211980342865,0.122421994805336,-0.446016013622284,0.890928328037262,0.08553696423769,-0.463158577680588,0.884012401103973,0.0632952079176903,-0.446016013622284,0.890928328037262,0.08553696423769,-0.378423184156418,0.924041748046875,0.0542460083961487,-0.396079361438751,0.917661011219025,0.031928289681673,-0.463158577680588,0.884012401103973,0.0632952079176903,-0.396079361438751,0.917661011219025,0.031928289681673,-0.449486553668976,0.891828775405884,-0.0510223843157291,-0.518908381462097,0.854644656181335,-0.0177868530154228,-0.463158577680588,0.884012401103973,0.0632952079176903,-0.780999481678009,0.624509215354919,-0.00528806122019887,-0.705668389797211,0.701148271560669,0.102093808352947,-0.648475646972656,0.758761942386627,0.0613153427839279,-0.722513437271118,0.689560055732727,-0.0498116724193096,-0.648475646972656,0.758761942386627,0.0613153427839279,-0.585924983024597,0.810102999210358,0.0206161811947823,-0.657214224338531,0.747901797294617,-0.0933400020003319,-0.722513437271118,0.689560055732727,-0.0498116724193096,-0.657214224338531,0.747901797294617,-0.0933400020003319,-0.718414783477783,0.661326229572296,-0.215703085064888,-0.783733904361725,0.597517430782318,-0.169511020183563, +-0.722513437271118,0.689560055732727,-0.0498116724193096,-0.639467358589172,0.748440444469452,0.175836607813835,-0.619027972221375,0.760620653629303,0.195602983236313,-0.565929532051086,0.808859705924988,0.15959195792675,-0.585065543651581,0.799091279506683,0.138389065861702,-0.565929532051086,0.808859705924988,0.15959195792675,-0.508826792240143,0.85211980342865,0.122421994805336,-0.526555061340332,0.844215154647827,0.10020288079977,-0.585065543651581,0.799091279506683,0.138389065861702,-0.526555061340332,0.844215154647827,0.10020288079977,-0.585924983024597,0.810102999210358,0.0206161811947823,-0.648475646972656,0.758761942386627,0.0613153427839279,-0.585065543651581,0.799091279506683,0.138389065861702,-0.875840365886688,0.474394708871841,0.0886186510324478,-0.803018748760223,0.564331591129303,0.191548362374306,-0.758039057254791,0.635898411273956,0.144948020577431,-0.832585334777832,0.552391707897186,0.0408043265342712,-0.758039057254791,0.635898411273956,0.144948020577431,-0.705668389797211,0.701148271560669,0.102093808352947,-0.780999481678009,0.624509215354919,-0.00528806122019887,-0.832585334777832,0.552391707897186,0.0408043265342712,-0.780999481678009,0.624509215354919,-0.00528806122019887,-0.841037273406982,0.52714604139328,-0.121545940637589,-0.889850080013275,0.450553297996521,-0.0718943104147911,-0.832585334777832,0.552391707897186,0.0408043265342712,-0.737169861793518,0.623049080371857,0.261515915393829,-0.717420279979706,0.6380695104599,0.279598563909531,-0.670462489128113,0.703804135322571,0.234818786382675,-0.691290974617004,0.689502418041229,0.216109454631805,-0.670462489128113,0.703804135322571,0.234818786382675,-0.619027972221375,0.760620653629303,0.195602983236313,-0.639467358589172,0.748440444469452,0.175836607813835,-0.691290974617004,0.689502418041229,0.216109454631805,-0.639467358589172,0.748440444469452,0.175836607813835,-0.705668389797211,0.701148271560669,0.102093808352947,-0.758039057254791,0.635898411273956,0.144948020577431,-0.691290974617004,0.689502418041229,0.216109454631805,-0.932594478130341,0.310946047306061,0.1832485049963, +-0.865068256855011,0.413032412528992,0.284712344408035,-0.838186502456665,0.490378469228745,0.238688811659813,-0.909105718135834,0.393671333789825,0.136196926236153,-0.838186502456665,0.490378469228745,0.238688811659813,-0.803018748760223,0.564331591129303,0.191548362374306,-0.875840365886688,0.474394708871841,0.0886186510324478,-0.909105718135834,0.393671333789825,0.136196926236153,-0.875840365886688,0.474394708871841,0.0886186510324478,-0.929179430007935,0.369009584188461,-0.02138601988554,-0.957989275455475,0.28542160987854,0.0281243193894625,-0.909105718135834,0.393671333789825,0.136196926236153,-0.801302313804626,0.483456403017044,0.352398425340652,-0.782714486122131,0.500743865966797,0.369612723588943,-0.754351615905762,0.570042610168457,0.325584143400192,-0.773093402385712,0.554619550704956,0.307772368192673,-0.754351615905762,0.570042610168457,0.325584143400192,-0.717420279979706,0.6380695104599,0.279598563909531,-0.737169861793518,0.623049080371857,0.261515915393829,-0.773093402385712,0.554619550704956,0.307772368192673,-0.737169861793518,0.623049080371857,0.261515915393829,-0.803018748760223,0.564331591129303,0.191548362374306,-0.838186502456665,0.490378469228745,0.238688811659813,-0.773093402385712,0.554619550704956,0.307772368192673,-0.948792636394501,0.142214477062225,0.282077103853226,-0.890903055667877,0.246581584215164,0.381430476903915,-0.883519411087036,0.33091926574707,0.331490367650986,-0.946088373661041,0.226722091436386,0.231330424547195,-0.883519411087036,0.33091926574707,0.331490367650986,-0.865068256855011,0.413032412528992,0.284712344408035,-0.932594478130341,0.310946047306061,0.1832485049963,-0.946088373661041,0.226722091436386,0.231330424547195,-0.932594478130341,0.310946047306061,0.1832485049963,-0.976541996002197,0.201258972287178,0.0765544474124908,-0.985108971595764,0.117774337530136,0.125258356332779,-0.946088373661041,0.226722091436386,0.231330424547195,-0.835203111171722,0.321155399084091,0.446424633264542,-0.819191753864288,0.338610053062439,0.462891072034836,-0.805503666400909,0.424065560102463,0.413922876119614, +-0.823263823986053,0.405250430107117,0.397503346204758,-0.805503666400909,0.424065560102463,0.413922876119614,-0.782714486122131,0.500743865966797,0.369612723588943,-0.801302313804626,0.483456403017044,0.352398425340652,-0.823263823986053,0.405250430107117,0.397503346204758,-0.801302313804626,0.483456403017044,0.352398425340652,-0.865068256855011,0.413032412528992,0.284712344408035,-0.883519411087036,0.33091926574707,0.331490367650986,-0.823263823986053,0.405250430107117,0.397503346204758,-0.92164021730423,-0.0199238639324903,0.387533903121948,-0.870449483394623,0.0830995962023735,0.485192745923996,-0.886175274848938,0.164690569043159,0.433093935251236,-0.940581858158112,0.0603801645338535,0.334155887365341,-0.886175274848938,0.164690569043159,0.433093935251236,-0.890903055667877,0.246581584215164,0.381430476903915,-0.948792636394501,0.142214477062225,0.282077103853226,-0.940581858158112,0.0603801645338535,0.334155887365341,-0.948792636394501,0.142214477062225,0.282077103853226,-0.983691811561584,0.0357369296252728,0.176276281476021,-0.972479999065399,-0.0425277799367905,0.229071795940399,-0.940581858158112,0.0603801645338535,0.334155887365341,-0.820317208766937,0.158004999160767,0.549649119377136,-0.804509997367859,0.173811167478561,0.567937672138214,-0.818185210227966,0.254074424505234,0.515770494937897,-0.833661079406738,0.238615781068802,0.498067915439606,-0.818185210227966,0.254074424505234,0.515770494937897,-0.819191753864288,0.338610053062439,0.462891072034836,-0.835203111171722,0.321155399084091,0.446424633264542,-0.833661079406738,0.238615781068802,0.498067915439606,-0.835203111171722,0.321155399084091,0.446424633264542,-0.890903055667877,0.246581584215164,0.381430476903915,-0.886175274848938,0.164690569043159,0.433093935251236,-0.833661079406738,0.238615781068802,0.498067915439606,-0.848035037517548,-0.180255398154259,0.498341739177704,-0.806959450244904,-0.0900647863745689,0.583699226379395,-0.841695845127106,-0.00998917780816555,0.539859533309937,-0.887793838977814,-0.108413174748421,0.447290360927582, +-0.841695845127106,-0.00998917780816555,0.539859533309937,-0.870449483394623,0.0830995962023735,0.485192745923996,-0.92164021730423,-0.0199238639324903,0.387533903121948,-0.887793838977814,-0.108413174748421,0.447290360927582,-0.92164021730423,-0.0199238639324903,0.387533903121948,-0.951594173908234,-0.117630645632744,0.283956855535507,-0.916360914707184,-0.198118641972542,0.347895950078964,-0.887793838977814,-0.108413174748421,0.447290360927582,-0.841695845127106,-0.00998917780816555,0.539859533309937,-0.806959450244904,-0.0900647863745689,0.583699226379395,-0.771739482879639,-0.021193141117692,0.635585427284241,-0.798848152160645,0.0667911916971207,0.597813129425049,-0.771739482879639,-0.021193141117692,0.635585427284241,-0.760019183158875,-0.0105386767536402,0.649815142154694,-0.78579181432724,0.0801931619644165,0.613270044326782,-0.798848152160645,0.0667911916971207,0.597813129425049,-0.78579181432724,0.0801931619644165,0.613270044326782,-0.804509997367859,0.173811167478561,0.567937672138214,-0.820317208766937,0.158004999160767,0.549649119377136,-0.798848152160645,0.0667911916971207,0.597813129425049,-0.806959450244904,-0.0900647863745689,0.583699226379395,-0.848035037517548,-0.180255398154259,0.498341739177704,-0.808619737625122,-0.233222469687462,0.540130913257599,-0.769385576248169,-0.151652723550797,0.620521783828735,-0.332151174545288,-0.631218016147614,-0.700884819030762,-0.332151144742966,-0.631218075752258,-0.700884759426117,-0.320822358131409,-0.646670460700989,-0.692018985748291,-0.318962424993515,-0.649161458015442,-0.690544903278351,-0.856022953987122,-0.446936935186386,0.259753704071045,-0.87469071149826,-0.4469875395298,0.187398746609688,-0.852851212024689,-0.460834175348282,0.245513066649437,-0.833627700805664,-0.454055666923523,0.314480870962143,-0.654212951660156,-0.165818110108376,0.737908959388733,-0.720698058605194,-0.0763984397053719,0.689026534557343,-0.73224937915802,-0.0923039242625237,0.674752414226532,-0.668188512325287,-0.175477385520935,0.723001956939697,-0.643299996852875,-0.285868346691132,0.710242450237274, +-0.577608823776245,-0.339330643415451,0.742443740367889,-0.556985557079315,-0.297770321369171,0.775306284427643,-0.61769962310791,-0.237255573272705,0.749771356582642,-0.556985557079315,-0.297770321369171,0.775306284427643,-0.549617052078247,-0.289962202310562,0.783481359481812,-0.60774028301239,-0.227636098861694,0.76081109046936,-0.61769962310791,-0.237255573272705,0.749771356582642,-0.519807934761047,-0.379468739032745,0.765377700328827,-0.45688870549202,-0.418798744678497,0.784767627716064,-0.444655507802963,-0.372630298137665,0.814511001110077,-0.499127954244614,-0.344298511743546,0.795191764831543,-0.444655507802963,-0.372630298137665,0.814511001110077,-0.439857542514801,-0.364071160554886,0.82096129655838,-0.495314598083496,-0.334810882806778,0.801601648330688,-0.499127954244614,-0.344298511743546,0.795191764831543,-0.495314598083496,-0.334810882806778,0.801601648330688,-0.549617052078247,-0.289962202310562,0.783481359481812,-0.556985557079315,-0.297770321369171,0.775306284427643,-0.499127954244614,-0.344298511743546,0.795191764831543,-0.382338881492615,-0.421155601739883,0.822462737560272,-0.313730418682098,-0.42525526881218,0.848958790302277,-0.313335388898849,-0.403007745742798,0.85988712310791,-0.38238736987114,-0.391030460596085,0.837182939052582,-0.313335388898849,-0.403007745742798,0.85988712310791,-0.315648257732391,-0.398546189069748,0.861119747161865,-0.380015403032303,-0.383973926305771,0.841517806053162,-0.38238736987114,-0.391030460596085,0.837182939052582,-0.380015403032303,-0.383973926305771,0.841517806053162,-0.439857542514801,-0.364071160554886,0.82096129655838,-0.444655507802963,-0.372630298137665,0.814511001110077,-0.38238736987114,-0.391030460596085,0.837182939052582,-0.175832688808441,-0.520594835281372,0.835502088069916,-0.188580736517906,-0.436513692140579,0.879711866378784,-0.249737471342087,-0.43008890748024,0.867556750774384,-0.22851887345314,-0.511639177799225,0.828253865242004,-0.249737471342087,-0.43008890748024,0.867556750774384,-0.188580736517906,-0.436513692140579,0.879711866378784, +-0.188823193311691,-0.425177991390228,0.885194540023804,-0.249733343720436,-0.413002550601959,0.875820815563202,-0.188823193311691,-0.425177991390228,0.885194540023804,-0.191680938005447,-0.424432694911957,0.88493800163269,-0.253294616937637,-0.41064190864563,0.875908076763153,-0.249733343720436,-0.413002550601959,0.875820815563202,-0.253294616937637,-0.41064190864563,0.875908076763153,-0.315648257732391,-0.398546189069748,0.861119747161865,-0.313335388898849,-0.403007745742798,0.85988712310791,-0.249733343720436,-0.413002550601959,0.875820815563202,-0.0596202239394188,-0.453271120786667,0.889376580715179,-0.124484419822693,-0.44426617026329,0.887204170227051,-0.120851024985313,-0.529502272605896,0.839656114578247,-0.0651194676756859,-0.538974046707153,0.839801430702209,-0.124484419822693,-0.44426617026329,0.887204170227051,-0.0596202239394188,-0.453271120786667,0.889376580715179,-0.0547016449272633,-0.442984163761139,0.894859075546265,-0.12226652354002,-0.438016802072525,0.890613377094269,-0.0547016449272633,-0.442984163761139,0.894859075546265,-0.051188413053751,-0.442238062620163,0.895435690879822,-0.122714877128601,-0.438661366701126,0.890234351158142,-0.12226652354002,-0.438016802072525,0.890613377094269,-0.122714877128601,-0.438661366701126,0.890234351158142,-0.191680938005447,-0.424432694911957,0.88493800163269,-0.188823193311691,-0.425177991390228,0.885194540023804,-0.12226652354002,-0.438016802072525,0.890613377094269,0.14280977845192,-0.489621847867966,0.860160291194916,0.104750499129295,-0.574084997177124,0.812067627906799,0.14632174372673,-0.584464251995087,0.798117458820343,0.191550135612488,-0.501517355442047,0.843675851821899,0.0908438563346863,0.949721217155457,-0.299628227949142,0.0899064093828201,0.950601279735565,-0.297109514474869,0.108887434005737,0.929703414440155,-0.351845383644104,0.108443692326546,0.930269300937653,-0.350483983755112,0.0112788248807192,-0.439287066459656,0.898275911808014,-0.051188413053751,-0.442238062620163,0.895435690879822,-0.0547016449272633,-0.442984163761139,0.894859075546265, +0.00962750148028135,-0.443623781204224,0.896161377429962,0.00469943834468722,-0.621390581130981,0.783486902713776,0.0365389734506607,-0.630775034427643,0.775104939937592,0.0580517016351223,-0.560424447059631,0.826168537139893,0.0227749347686768,-0.551540493965149,0.83383721113205,0.0421831570565701,-0.467899739742279,0.882774233818054,0.0475827939808369,-0.444023549556732,0.894750893115997,0.00962750148028135,-0.443623781204224,0.896161377429962,0.00375296524725854,-0.462602734565735,0.886557698249817,0.146074667572975,-0.459408015012741,0.876131534576416,0.143043234944344,-0.454935818910599,0.878960847854614,0.0856622904539108,-0.440617769956589,0.893598318099976,0.0860292986035347,-0.447738289833069,0.890016496181488,0.186331108212471,-0.592158079147339,0.783983111381531,0.229851618409157,-0.598201811313629,0.767673671245575,0.291056036949158,-0.523903965950012,0.80050665140152,0.239478409290314,-0.51394134759903,0.82371985912323,0.253354251384735,-0.474762618541718,0.842859506607056,0.25792208313942,-0.471067786216736,0.84354692697525,0.198394775390625,-0.468402028083801,0.860952377319336,0.197569757699966,-0.470082193613052,0.860226213932037,0.198394775390625,-0.468402028083801,0.860952377319336,0.143043234944344,-0.454935818910599,0.878960847854614,0.146074667572975,-0.459408015012741,0.876131534576416,0.197569757699966,-0.470082193613052,0.860226213932037,0.146074667572975,-0.459408015012741,0.876131534576416,0.14280977845192,-0.489621847867966,0.860160291194916,0.191550135612488,-0.501517355442047,0.843675851821899,0.197569757699966,-0.470082193613052,0.860226213932037,0.276362746953964,-0.603672206401825,0.747799038887024,0.327762573957443,-0.607410490512848,0.723618805408478,0.400741815567017,-0.540269434452057,0.73994255065918,0.344436943531036,-0.531491994857788,0.773873031139374,0.36944305896759,-0.478993088006973,0.79628974199295,0.371924549341202,-0.471991300582886,0.799309909343719,0.317063689231873,-0.470928817987442,0.823223292827606,0.312162280082703,-0.476809442043304,0.821709990501404,0.317063689231873,-0.470928817987442,0.823223292827606, +0.25792208313942,-0.471067786216736,0.84354692697525,0.253354251384735,-0.474762618541718,0.842859506607056,0.312162280082703,-0.476809442043304,0.821709990501404,0.253354251384735,-0.474762618541718,0.842859506607056,0.239478409290314,-0.51394134759903,0.82371985912323,0.291056036949158,-0.523903965950012,0.80050665140152,0.312162280082703,-0.476809442043304,0.821709990501404,0.408297032117844,-0.663861572742462,0.626563191413879,0.495442181825638,-0.643798887729645,0.583146750926971,0.479258000850677,-0.60183709859848,0.638830184936523,0.395584285259247,-0.638837397098541,0.659848392009735,0.485695958137512,-0.474673599004745,0.734019339084625,0.484630584716797,-0.461277186870575,0.743206977844238,0.426730215549469,-0.470787107944489,0.772179186344147,0.427676916122437,-0.480783700942993,0.765466809272766,0.426730215549469,-0.470787107944489,0.772179186344147,0.371924549341202,-0.471991300582886,0.799309909343719,0.36944305896759,-0.478993088006973,0.79628974199295,0.427676916122437,-0.480783700942993,0.765466809272766,0.36944305896759,-0.478993088006973,0.79628974199295,0.344436943531036,-0.531491994857788,0.773873031139374,0.400741815567017,-0.540269434452057,0.73994255065918,0.427676916122437,-0.480783700942993,0.765466809272766,0.408297032117844,-0.663861572742462,0.626563191413879,0.426441371440887,-0.678310453891754,0.598366618156433,0.514005422592163,-0.674600124359131,0.529823660850525,0.495442181825638,-0.643798887729645,0.583146750926971,0.538349330425262,-0.688024401664734,0.48662343621254,0.451989889144897,-0.678381264209747,0.579227149486542,0.479769319295883,-0.66126811504364,0.576667845249176,0.571794867515564,-0.680693089962006,0.457938343286514,0.587909817695618,-0.418111532926559,0.69249165058136,0.58813089132309,-0.400475293397903,0.702653348445892,0.537205100059509,-0.439268708229065,0.720037281513214,0.535411775112152,-0.455697894096375,0.711107432842255,0.537205100059509,-0.439268708229065,0.720037281513214,0.484630584716797,-0.461277186870575,0.743206977844238,0.485695958137512,-0.474673599004745,0.734019339084625, +0.535411775112152,-0.455697894096375,0.711107432842255,0.485695958137512,-0.474673599004745,0.734019339084625,0.462378114461899,-0.551173686981201,0.694560408592224,0.537122964859009,-0.508779227733612,0.672787189483643,0.535411775112152,-0.455697894096375,0.711107432842255,0.604522049427032,-0.551361382007599,0.574937999248505,0.589975774288177,-0.480722218751907,0.648717641830444,0.537122964859009,-0.508779227733612,0.672787189483643,0.551442325115204,-0.568498313426971,0.610508859157562,0.537122964859009,-0.508779227733612,0.672787189483643,0.462378114461899,-0.551173686981201,0.694560408592224,0.479258000850677,-0.60183709859848,0.638830184936523,0.551442325115204,-0.568498313426971,0.610508859157562,0.479258000850677,-0.60183709859848,0.638830184936523,0.495442181825638,-0.643798887729645,0.583146750926971,0.575408041477203,-0.622274518013,0.530735492706299,0.551442325115204,-0.568498313426971,0.610508859157562,-0.171944156289101,-0.9038245677948,-0.39183709025383,-0.18782351911068,-0.872961282730103,-0.450178772211075,-0.296047419309616,-0.869268596172333,-0.395889043807983,-0.283677160739899,-0.895026683807373,-0.344172060489655,0.669388949871063,-0.709360361099243,0.220740616321564,0.657448649406433,-0.696082293987274,0.288497149944305,0.617504775524139,-0.700287997722626,0.358168512582779,0.638048648834229,-0.70861405134201,0.301263988018036,0.617504775524139,-0.700287997722626,0.358168512582779,0.538349330425262,-0.688024401664734,0.48662343621254,0.571794867515564,-0.680693089962006,0.457938343286514,0.638048648834229,-0.70861405134201,0.301263988018036,0.571794867515564,-0.680693089962006,0.457938343286514,0.595204889774323,-0.688462615013123,0.414427876472473,0.649015724658966,-0.724012672901154,0.233632609248161,0.638048648834229,-0.70861405134201,0.301263988018036,0.645019233226776,-0.661725401878357,0.382190525531769,0.625729322433472,-0.61105877161026,0.48484018445015,0.575408041477203,-0.622274518013,0.530735492706299,0.598159968852997,-0.669631063938141,0.440226018428802,0.575408041477203,-0.622274518013,0.530735492706299, +0.495442181825638,-0.643798887729645,0.583146750926971,0.514005422592163,-0.674600124359131,0.529823660850525,0.598159968852997,-0.669631063938141,0.440226018428802,0.514005422592163,-0.674600124359131,0.529823660850525,0.538349330425262,-0.688024401664734,0.48662343621254,0.617504775524139,-0.700287997722626,0.358168512582779,0.598159968852997,-0.669631063938141,0.440226018428802,0.69608348608017,-0.714667856693268,0.0686843767762184,0.720624625682831,-0.693291246891022,-0.00687918392941356,0.735452651977539,-0.674175262451172,0.0678021833300591,0.705498099327087,-0.694082140922546,0.143256634473801,0.735452651977539,-0.674175262451172,0.0678021833300591,0.738130390644073,-0.659674406051636,0.141397684812546,0.701837241649628,-0.679338157176971,0.214299380779266,0.705498099327087,-0.694082140922546,0.143256634473801,0.701837241649628,-0.679338157176971,0.214299380779266,0.657448649406433,-0.696082293987274,0.288497149944305,0.669388949871063,-0.709360361099243,0.220740616321564,0.705498099327087,-0.694082140922546,0.143256634473801,0.728604137897491,-0.682628512382507,-0.0561624765396118,0.732805252075195,-0.675644338130951,-0.080629974603653,0.752277851104736,-0.658125996589661,-0.0307945888489485,0.745784521102905,-0.666070699691772,0.0124649992212653,0.752277851104736,-0.658125996589661,-0.0307945888489485,0.766637444496155,-0.64119815826416,0.0336434356868267,0.753818035125732,-0.651477694511414,0.0856461971998215,0.745784521102905,-0.666070699691772,0.0124649992212653,0.753818035125732,-0.651477694511414,0.0856461971998215,0.738130390644073,-0.659674406051636,0.141397684812546,0.735452651977539,-0.674175262451172,0.0678021833300591,0.745784521102905,-0.666070699691772,0.0124649992212653,0.701837241649628,-0.679338157176971,0.214299380779266,0.738130390644073,-0.659674406051636,0.141397684812546,0.746381103992462,-0.619045197963715,0.244332656264305,0.69967257976532,-0.64206075668335,0.313394755125046,0.746381103992462,-0.619045197963715,0.244332656264305,0.751390159130096,-0.553865492343903,0.358672529459,0.692671775817871,-0.584756374359131,0.422215312719345, +0.69967257976532,-0.64206075668335,0.313394755125046,0.692671775817871,-0.584756374359131,0.422215312719345,0.625729322433472,-0.61105877161026,0.48484018445015,0.645019233226776,-0.661725401878357,0.382190525531769,0.69967257976532,-0.64206075668335,0.313394755125046,0.753818035125732,-0.651477694511414,0.0856461971998215,0.766637444496155,-0.64119815826416,0.0336434356868267,0.790165066719055,-0.598218202590942,0.133320569992065,0.769535660743713,-0.609962522983551,0.189104378223419,0.790165066719055,-0.598218202590942,0.133320569992065,0.812692999839783,-0.523456871509552,0.255974501371384,0.78271609544754,-0.540324926376343,0.308876156806946,0.769535660743713,-0.609962522983551,0.189104378223419,0.78271609544754,-0.540324926376343,0.308876156806946,0.751390159130096,-0.553865492343903,0.358672529459,0.746381103992462,-0.619045197963715,0.244332656264305,0.769535660743713,-0.609962522983551,0.189104378223419,0.749436497688293,-0.471412658691406,0.4648816883564,0.740843534469604,-0.37377342581749,0.558071911334991,0.669553101062775,-0.428348064422607,0.606808602809906,0.681458234786987,-0.513396203517914,0.521573483943939,0.669553101062775,-0.428348064422607,0.606808602809906,0.589975774288177,-0.480722218751907,0.648717641830444,0.604522049427032,-0.551361382007599,0.574937999248505,0.681458234786987,-0.513396203517914,0.521573483943939,0.604522049427032,-0.551361382007599,0.574937999248505,0.625729322433472,-0.61105877161026,0.48484018445015,0.692671775817871,-0.584756374359131,0.422215312719345,0.681458234786987,-0.513396203517914,0.521573483943939,0.730357885360718,-0.293995201587677,0.616558313369751,0.724414527416229,-0.272806614637375,0.633087813854218,0.656572878360748,-0.337279736995697,0.674651324748993,0.661891877651215,-0.356146603822708,0.659589886665344,0.656572878360748,-0.337279736995697,0.674651324748993,0.58813089132309,-0.400475293397903,0.702653348445892,0.587909817695618,-0.418111532926559,0.69249165058136,0.661891877651215,-0.356146603822708,0.659589886665344,0.587909817695618,-0.418111532926559,0.69249165058136, +0.589975774288177,-0.480722218751907,0.648717641830444,0.669553101062775,-0.428348064422607,0.606808602809906,0.661891877651215,-0.356146603822708,0.659589886665344,0.805038034915924,-0.202450349926949,0.557608723640442,0.797344028949738,-0.168644890189171,0.5794837474823,0.765499711036682,-0.221767395734787,0.604011118412018,0.770061373710632,-0.249317109584808,0.587236344814301,0.765499711036682,-0.221767395734787,0.604011118412018,0.724414527416229,-0.272806614637375,0.633087813854218,0.730357885360718,-0.293995201587677,0.616558313369751,0.770061373710632,-0.249317109584808,0.587236344814301,0.730357885360718,-0.293995201587677,0.616558313369751,0.740843534469604,-0.37377342581749,0.558071911334991,0.780074834823608,-0.342749506235123,0.523455739021301,0.770061373710632,-0.249317109584808,0.587236344814301,0.78271609544754,-0.540324926376343,0.308876156806946,0.812692999839783,-0.523456871509552,0.255974501371384,0.823093414306641,-0.425131618976593,0.376537352800369,0.786443173885345,-0.450319558382034,0.422752320766449,0.823093414306641,-0.425131618976593,0.376537352800369,0.818539559841156,-0.30839329957962,0.484651058912277,0.780074834823608,-0.342749506235123,0.523455739021301,0.786443173885345,-0.450319558382034,0.422752320766449,0.780074834823608,-0.342749506235123,0.523455739021301,0.740843534469604,-0.37377342581749,0.558071911334991,0.749436497688293,-0.471412658691406,0.4648816883564,0.786443173885345,-0.450319558382034,0.422752320766449,0.899268329143524,-0.0811507180333138,0.429803460836411,0.889574468135834,-0.0544694438576698,0.453530728816986,0.841453552246094,-0.108218863606453,0.529381334781647,0.853722870349884,-0.141011282801628,0.501271367073059,0.841453552246094,-0.108218863606453,0.529381334781647,0.797344028949738,-0.168644890189171,0.5794837474823,0.805038034915924,-0.202450349926949,0.557608723640442,0.853722870349884,-0.141011282801628,0.501271367073059,0.805038034915924,-0.202450349926949,0.557608723640442,0.818539559841156,-0.30839329957962,0.484651058912277,0.873752415180206,-0.246370196342468,0.419354557991028, +0.853722870349884,-0.141011282801628,0.501271367073059,0.859706342220306,-0.47694519162178,0.182834267616272,0.901884615421295,-0.417057722806931,0.112547785043716,0.923664510250092,-0.30187264084816,0.236043930053711,0.877372086048126,-0.369056403636932,0.306619495153427,0.923664510250092,-0.30187264084816,0.236043930053711,0.92002922296524,-0.177577838301659,0.349302589893341,0.873752415180206,-0.246370196342468,0.419354557991028,0.877372086048126,-0.369056403636932,0.306619495153427,0.873752415180206,-0.246370196342468,0.419354557991028,0.818539559841156,-0.30839329957962,0.484651058912277,0.823093414306641,-0.425131618976593,0.376537352800369,0.877372086048126,-0.369056403636932,0.306619495153427,0.793124616146088,-0.608313262462616,-0.030135914683342,0.820578932762146,-0.564198195934296,-0.0912728160619736,0.860593736171722,-0.509265959262848,-0.00514257093891501,0.825988411903381,-0.560300529003143,0.0616962164640427,0.860593736171722,-0.509265959262848,-0.00514257093891501,0.901884615421295,-0.417057722806931,0.112547785043716,0.859706342220306,-0.47694519162178,0.182834267616272,0.825988411903381,-0.560300529003143,0.0616962164640427,0.859706342220306,-0.47694519162178,0.182834267616272,0.812692999839783,-0.523456871509552,0.255974501371384,0.790165066719055,-0.598218202590942,0.133320569992065,0.825988411903381,-0.560300529003143,0.0616962164640427,0.769684135913849,-0.628690302371979,-0.111062847077847,0.787965297698975,-0.594851732254028,-0.158939957618713,0.794866800308228,-0.589686751365662,-0.143025696277618,0.773782789707184,-0.627123951911926,-0.089307077229023,0.794866800308228,-0.589686751365662,-0.143025696277618,0.820578932762146,-0.564198195934296,-0.0912728160619736,0.793124616146088,-0.608313262462616,-0.030135914683342,0.773782789707184,-0.627123951911926,-0.089307077229023,0.793124616146088,-0.608313262462616,-0.030135914683342,0.766637444496155,-0.64119815826416,0.0336434356868267,0.752277851104736,-0.658125996589661,-0.0307945888489485,0.773782789707184,-0.627123951911926,-0.089307077229023, +0.976194858551025,-0.175322890281677,0.127692356705666,0.969369828701019,-0.0503770373761654,0.240383699536324,0.947357892990112,-0.119896613061428,0.296880125999451,0.951949179172516,-0.244813591241837,0.184008032083511,0.947357892990112,-0.119896613061428,0.296880125999451,0.92002922296524,-0.177577838301659,0.349302589893341,0.923664510250092,-0.30187264084816,0.236043930053711,0.951949179172516,-0.244813591241837,0.184008032083511,0.923664510250092,-0.30187264084816,0.236043930053711,0.901884615421295,-0.417057722806931,0.112547785043716,0.929153501987457,-0.364609181880951,0.0611059926450253,0.951949179172516,-0.244813591241837,0.184008032083511,0.839317381381989,-0.525748729705811,-0.13832750916481,0.859358966350555,-0.475353062152863,-0.188524782657623,0.908385753631592,-0.404361069202423,-0.10643108934164,0.884390234947205,-0.463580310344696,-0.0542896836996078,0.908385753631592,-0.404361069202423,-0.10643108934164,0.954302668571472,-0.298781305551529,0.00601947866380215,0.929153501987457,-0.364609181880951,0.0611059926450253,0.884390234947205,-0.463580310344696,-0.0542896836996078,0.929153501987457,-0.364609181880951,0.0611059926450253,0.901884615421295,-0.417057722806931,0.112547785043716,0.860593736171722,-0.509265959262848,-0.00514257093891501,0.884390234947205,-0.463580310344696,-0.0542896836996078,0.948241710662842,0.0431636907160282,0.314602136611938,0.94110232591629,0.0701934322714806,0.330755531787872,0.921356379985809,-0.000265566544840112,0.388718962669373,0.928055465221405,-0.0259605720639229,0.371536076068878,0.921356379985809,-0.000265566544840112,0.388718962669373,0.889574468135834,-0.0544694438576698,0.453530728816986,0.899268329143524,-0.0811507180333138,0.429803460836411,0.928055465221405,-0.0259605720639229,0.371536076068878,0.899268329143524,-0.0811507180333138,0.429803460836411,0.92002922296524,-0.177577838301659,0.349302589893341,0.947357892990112,-0.119896613061428,0.296880125999451,0.928055465221405,-0.0259605720639229,0.371536076068878,0.805151879787445,-0.558473587036133,-0.199593648314476, +0.819592118263245,-0.515669465065002,-0.249707385897636,0.826898038387299,-0.510238647460938,-0.236423403024673,0.811097860336304,-0.554378569126129,-0.186506614089012,0.826898038387299,-0.510238647460938,-0.236423403024673,0.859358966350555,-0.475353062152863,-0.188524782657623,0.839317381381989,-0.525748729705811,-0.13832750916481,0.811097860336304,-0.554378569126129,-0.186506614089012,0.839317381381989,-0.525748729705811,-0.13832750916481,0.820578932762146,-0.564198195934296,-0.0912728160619736,0.794866800308228,-0.589686751365662,-0.143025696277618,0.811097860336304,-0.554378569126129,-0.186506614089012,0.960481822490692,0.196264371275902,0.19737046957016,0.951243042945862,0.220511183142662,0.21566516160965,0.950962662696838,0.146884486079216,0.272204101085663,0.959444224834442,0.120866484940052,0.254672318696976,0.950962662696838,0.146884486079216,0.272204101085663,0.94110232591629,0.0701934322714806,0.330755531787872,0.948241710662842,0.0431636907160282,0.314602136611938,0.959444224834442,0.120866484940052,0.254672318696976,0.948241710662842,0.0431636907160282,0.314602136611938,0.969369828701019,-0.0503770373761654,0.240383699536324,0.983480274677277,0.0308409985154867,0.178368180990219,0.959444224834442,0.120866484940052,0.254672318696976,0.974614024162292,-0.217087969183922,-0.0547754727303982,0.985015511512756,-0.131152734160423,-0.111998006701469,0.999950885772705,-0.00731708062812686,0.00668945023790002,0.993611633777618,-0.0920406728982925,0.0653025358915329,0.999950885772705,-0.00731708062812686,0.00668945023790002,0.986513257026672,0.111237816512585,0.120074480772018,0.983480274677277,0.0308409985154867,0.178368180990219,0.993611633777618,-0.0920406728982925,0.0653025358915329,0.983480274677277,0.0308409985154867,0.178368180990219,0.969369828701019,-0.0503770373761654,0.240383699536324,0.976194858551025,-0.175322890281677,0.127692356705666,0.993611633777618,-0.0920406728982925,0.0653025358915329,0.979358315467834,0.191341489553452,0.06515983492136,0.962026715278625,0.272541016340256,0.0150327840819955, +0.934175550937653,0.344187408685684,0.0940809994935989,0.952094554901123,0.270137429237366,0.143323495984077,0.934175550937653,0.344187408685684,0.0940809994935989,0.924221098423004,0.363965839147568,0.115516752004623,0.942379415035248,0.292194426059723,0.162921607494354,0.952094554901123,0.270137429237366,0.143323495984077,0.942379415035248,0.292194426059723,0.162921607494354,0.951243042945862,0.220511183142662,0.21566516160965,0.960481822490692,0.196264371275902,0.19737046957016,0.952094554901123,0.270137429237366,0.143323495984077,0.879428505897522,-0.408119976520538,-0.245037645101547,0.893487453460693,-0.333850920200348,-0.300372660160065,0.944477021694183,-0.245073154568672,-0.218866139650345,0.930319607257843,-0.328022837638855,-0.164031624794006,0.944477021694183,-0.245073154568672,-0.218866139650345,0.985015511512756,-0.131152734160423,-0.111998006701469,0.974614024162292,-0.217087969183922,-0.0547754727303982,0.930319607257843,-0.328022837638855,-0.164031624794006,0.974614024162292,-0.217087969183922,-0.0547754727303982,0.954302668571472,-0.298781305551529,0.00601947866380215,0.908385753631592,-0.404361069202423,-0.10643108934164,0.930319607257843,-0.328022837638855,-0.164031624794006,0.832048237323761,-0.463703989982605,-0.304424643516541,0.843955457210541,-0.40194296836853,-0.355219691991806,0.854251027107239,-0.387447476387024,-0.346611529588699,0.842096567153931,-0.453032582998276,-0.292634457349777,0.854251027107239,-0.387447476387024,-0.346611529588699,0.893487453460693,-0.333850920200348,-0.300372660160065,0.879428505897522,-0.408119976520538,-0.245037645101547,0.842096567153931,-0.453032582998276,-0.292634457349777,0.879428505897522,-0.408119976520538,-0.245037645101547,0.859358966350555,-0.475353062152863,-0.188524782657623,0.826898038387299,-0.510238647460938,-0.236423403024673,0.842096567153931,-0.453032582998276,-0.292634457349777,0.858510553836823,-0.234561249613762,-0.45600488781929,0.898228764533997,-0.168878749012947,-0.40578955411911,0.900376737117767,-0.254473626613617,-0.352937579154968, +0.861055910587311,-0.315059125423431,-0.399149745702744,0.900376737117767,-0.254473626613617,-0.352937579154968,0.893487453460693,-0.333850920200348,-0.300372660160065,0.854251027107239,-0.387447476387024,-0.346611529588699,0.861055910587311,-0.315059125423431,-0.399149745702744,0.854251027107239,-0.387447476387024,-0.346611529588699,0.843955457210541,-0.40194296836853,-0.355219691991806,0.851745009422302,-0.330859512090683,-0.406278759241104,0.861055910587311,-0.315059125423431,-0.399149745702744,0.985378921031952,-0.0422622635960579,-0.165052816271782,0.975569725036621,0.0501008406281471,-0.213900655508041,0.980983018875122,0.168127223849297,-0.0969822108745575,0.995735764503479,0.0789374336600304,-0.0477415397763252,0.980983018875122,0.168127223849297,-0.0969822108745575,0.962026715278625,0.272541016340256,0.0150327840819955,0.979358315467834,0.191341489553452,0.06515983492136,0.995735764503479,0.0789374336600304,-0.0477415397763252,0.979358315467834,0.191341489553452,0.06515983492136,0.986513257026672,0.111237816512585,0.120074480772018,0.999950885772705,-0.00731708062812686,0.00668945023790002,0.995735764503479,0.0789374336600304,-0.0477415397763252,0.932343363761902,0.360444962978363,-0.0285530481487513,0.890067100524902,0.451686024665833,-0.0613209456205368,0.859487116336823,0.510881364345551,0.0167967341840267,0.903263330459595,0.426120489835739,0.0503648966550827,0.859487116336823,0.510881364345551,0.0167967341840267,0.851705551147461,0.522664844989777,0.0376690700650215,0.893771886825562,0.442512273788452,0.0731763616204262,0.903263330459595,0.426120489835739,0.0503648966550827,0.893771886825562,0.442512273788452,0.0731763616204262,0.924221098423004,0.363965839147568,0.115516752004623,0.934175550937653,0.344187408685684,0.0940809994935989,0.903263330459595,0.426120489835739,0.0503648966550827,0.945272564888,-0.0663446038961411,-0.319465428590775,0.975569725036621,0.0501008406281471,-0.213900655508041,0.985378921031952,-0.0422622635960579,-0.165052816271782,0.949790418148041,-0.157779544591904,-0.270191848278046, +0.985378921031952,-0.0422622635960579,-0.165052816271782,0.985015511512756,-0.131152734160423,-0.111998006701469,0.944477021694183,-0.245073154568672,-0.218866139650345,0.949790418148041,-0.157779544591904,-0.270191848278046,0.944477021694183,-0.245073154568672,-0.218866139650345,0.893487453460693,-0.333850920200348,-0.300372660160065,0.900376737117767,-0.254473626613617,-0.352937579154968,0.949790418148041,-0.157779544591904,-0.270191848278046,0.816720545291901,-0.0636803731322289,-0.573508739471436,0.857020735740662,0.0137094240635633,-0.515099585056305,0.883886933326721,-0.078911766409874,-0.460995405912399,0.842951416969299,-0.149763450026512,-0.516724169254303,0.883886933326721,-0.078911766409874,-0.460995405912399,0.898228764533997,-0.168878749012947,-0.40578955411911,0.858510553836823,-0.234561249613762,-0.45600488781929,0.842951416969299,-0.149763450026512,-0.516724169254303,0.858510553836823,-0.234561249613762,-0.45600488781929,0.849175751209259,-0.250202924013138,-0.465079635381699,0.832771897315979,-0.165779039263725,-0.528212368488312,0.842951416969299,-0.149763450026512,-0.516724169254303,0.954551696777344,0.147012412548065,-0.259265094995499,0.921252012252808,0.246230497956276,-0.301106989383698,0.916594564914703,0.358545124530792,-0.176917612552643,0.95468407869339,0.2624471783638,-0.14035576581955,0.916594564914703,0.358545124530792,-0.176917612552643,0.890067100524902,0.451686024665833,-0.0613209456205368,0.932343363761902,0.360444962978363,-0.0285530481487513,0.95468407869339,0.2624471783638,-0.14035576581955,0.932343363761902,0.360444962978363,-0.0285530481487513,0.962026715278625,0.272541016340256,0.0150327840819955,0.980983018875122,0.168127223849297,-0.0969822108745575,0.95468407869339,0.2624471783638,-0.14035576581955,0.839566946029663,0.536263287067413,-0.0868856757879257,0.778186798095703,0.617611467838287,-0.11393629014492,0.748026728630066,0.662966251373291,-0.0305236019194126,0.808724880218506,0.588143289089203,-0.00718142557889223,0.748026728630066,0.662966251373291,-0.0305236019194126, +0.739707767963409,0.672835111618042,-0.0111966971307993,0.801666796207428,0.597668170928955,0.0110990488901734,0.808724880218506,0.588143289089203,-0.00718142557889223,0.801666796207428,0.597668170928955,0.0110990488901734,0.851705551147461,0.522664844989777,0.0376690700650215,0.859487116336823,0.510881364345551,0.0167967341840267,0.808724880218506,0.588143289089203,-0.00718142557889223,0.900184452533722,0.127867370843887,-0.416314512491226,0.921252012252808,0.246230497956276,-0.301106989383698,0.954551696777344,0.147012412548065,-0.259265094995499,0.92915153503418,0.0292609836906195,-0.368539243936539,0.954551696777344,0.147012412548065,-0.259265094995499,0.975569725036621,0.0501008406281471,-0.213900655508041,0.945272564888,-0.0663446038961411,-0.319465428590775,0.92915153503418,0.0292609836906195,-0.368539243936539,0.945272564888,-0.0663446038961411,-0.319465428590775,0.898228764533997,-0.168878749012947,-0.40578955411911,0.883886933326721,-0.078911766409874,-0.460995405912399,0.92915153503418,0.0292609836906195,-0.368539243936539,0.736890017986298,0.123637452721596,-0.664610326290131,0.769560694694519,0.207985699176788,-0.603753447532654,0.819956660270691,0.108194477856159,-0.562107741832733,0.783284842967987,0.025508064776659,-0.621139407157898,0.819956660270691,0.108194477856159,-0.562107741832733,0.857020735740662,0.0137094240635633,-0.515099585056305,0.816720545291901,-0.0636803731322289,-0.573508739471436,0.783284842967987,0.025508064776659,-0.621139407157898,0.816720545291901,-0.0636803731322289,-0.573508739471436,0.806999921798706,-0.0808405429124832,-0.584992110729218,0.774527788162231,0.00857221893966198,-0.632481813430786,0.783284842967987,0.025508064776659,-0.621139407157898,0.803265392780304,0.325351893901825,-0.498909711837769,0.81654679775238,0.438992440700531,-0.374882787466049,0.875946342945099,0.343207210302353,-0.339008659124374,0.858935952186584,0.22618767619133,-0.459421545267105,0.875946342945099,0.343207210302353,-0.339008659124374,0.921252012252808,0.246230497956276,-0.301106989383698,0.900184452533722,0.127867370843887,-0.416314512491226, +0.858935952186584,0.22618767619133,-0.459421545267105,0.900184452533722,0.127867370843887,-0.416314512491226,0.857020735740662,0.0137094240635633,-0.515099585056305,0.819956660270691,0.108194477856159,-0.562107741832733,0.858935952186584,0.22618767619133,-0.459421545267105,0.707728087902069,0.692660927772522,-0.139074712991714,0.778186798095703,0.617611467838287,-0.11393629014492,0.80664324760437,0.540223300457001,-0.239761173725128,0.735069274902344,0.622829079627991,-0.267874896526337,0.80664324760437,0.540223300457001,-0.239761173725128,0.81654679775238,0.438992440700531,-0.374882787466049,0.745279669761658,0.528198301792145,-0.406896412372589,0.735069274902344,0.622829079627991,-0.267874896526337,0.745279669761658,0.528198301792145,-0.406896412372589,0.668926298618317,0.604225635528564,-0.432953864336014,0.66083151102066,0.692164480686188,-0.29018959403038,0.735069274902344,0.622829079627991,-0.267874896526337,0.875946342945099,0.343207210302353,-0.339008659124374,0.81654679775238,0.438992440700531,-0.374882787466049,0.80664324760437,0.540223300457001,-0.239761173725128,0.868082940578461,0.450471818447113,-0.208584070205688,0.80664324760437,0.540223300457001,-0.239761173725128,0.778186798095703,0.617611467838287,-0.11393629014492,0.839566946029663,0.536263287067413,-0.0868856757879257,0.868082940578461,0.450471818447113,-0.208584070205688,0.839566946029663,0.536263287067413,-0.0868856757879257,0.890067100524902,0.451686024665833,-0.0613209456205368,0.916594564914703,0.358545124530792,-0.176917612552643,0.868082940578461,0.450471818447113,-0.208584070205688,0.66944807767868,0.742208540439606,-0.0310766007751226,0.739707767963409,0.672835111618042,-0.0111966971307993,0.748026728630066,0.662966251373291,-0.0305236019194126,0.678595781326294,0.732632577419281,-0.0525086522102356,0.748026728630066,0.662966251373291,-0.0305236019194126,0.778186798095703,0.617611467838287,-0.11393629014492,0.707728087902069,0.692660927772522,-0.139074712991714,0.678595781326294,0.732632577419281,-0.0525086522102356,0.707728087902069,0.692660927772522,-0.139074712991714, +0.636554300785065,0.754995405673981,-0.157418131828308,0.609834909439087,0.789600491523743,-0.0680627301335335,0.678595781326294,0.732632577419281,-0.0525086522102356,-0.320683002471924,-0.678787350654602,-0.660613417625427,-0.311003416776657,-0.670874893665314,-0.673204064369202,-0.310116618871689,-0.669642508029938,-0.674838304519653,-0.31937363743782,-0.678205192089081,-0.661844491958618,-0.320683002471924,-0.678787350654602,-0.660613417625427,-0.31937363743782,-0.678205192089081,-0.661844491958618,-0.330829322338104,-0.677279531955719,-0.657148659229279,-0.331621617078781,-0.676528692245483,-0.657522618770599,-0.307296305894852,-0.629730701446533,-0.713448166847229,-0.305398195981979,-0.629041254520416,-0.714869916439056,-0.325640648603439,-0.642441153526306,-0.693705558776855,-0.326311439275742,-0.643151104450226,-0.692731976509094,-0.307296305894852,-0.629730701446533,-0.713448166847229,-0.286234974861145,-0.624946177005768,-0.726300060749054,-0.283636540174484,-0.624852120876312,-0.72739964723587,-0.305398195981979,-0.629041254520416,-0.714869916439056,-0.266298681497574,-0.62615567445755,-0.732812404632568,-0.248584896326065,-0.630830347537994,-0.735022842884064,-0.246277421712875,-0.631740272045135,-0.735018014907837,-0.263311922550201,-0.626739621162415,-0.733392357826233,-0.240244805812836,-0.633132696151733,-0.735816121101379,-0.249794900417328,-0.62091737985611,-0.74301016330719,-0.252252370119095,-0.617995500564575,-0.744614124298096,-0.240346282720566,-0.632760345935822,-0.736103296279907,-0.276448965072632,-0.585005700588226,-0.762459397315979,-0.304830878973007,-0.53460556268692,-0.788210034370422,-0.305504411458969,-0.533116340637207,-0.788957476615906,-0.278891921043396,-0.581353366374969,-0.764360785484314,-0.31428724527359,-0.497494995594025,-0.808530867099762,-0.300957828760147,-0.490586549043655,-0.817770779132843,-0.300577074289322,-0.490728765726089,-0.817825615406036,-0.314271688461304,-0.497389316558838,-0.808601915836334,-0.27556037902832,-0.505128145217896,-0.817870318889618,-0.246263295412064,-0.523610651493073,-0.815589487552643, +-0.245151177048683,-0.52419525384903,-0.815548956394196,-0.274535477161407,-0.505881547927856,-0.817749500274658,-0.173048168420792,-0.562138199806213,-0.808736622333527,-0.173420339822769,-0.561714231967926,-0.808951497077942,-0.189321994781494,-0.549835085868835,-0.813534617424011,-0.189097732305527,-0.549964070320129,-0.813499510288239,-0.15732941031456,-0.585274159908295,-0.795425415039063,-0.157659485936165,-0.584703385829926,-0.795779824256897,-0.164602309465408,-0.573203027248383,-0.802710652351379,-0.164278373122215,-0.573717713356018,-0.80240923166275,-0.148628354072571,-0.619264721870422,-0.770986914634705,-0.148626983165741,-0.618782639503479,-0.771374106407166,-0.151468485593796,-0.598953425884247,-0.786328196525574,-0.151271924376488,-0.599557757377625,-0.785905420780182,-0.152739897370338,-0.654735684394836,-0.740264713764191,-0.15277673304081,-0.654557287693024,-0.74041473865509,-0.151015251874924,-0.640903294086456,-0.752620339393616,-0.151113465428352,-0.641322433948517,-0.752243518829346,-0.131481021642685,-0.65190988779068,-0.746810734272003,-0.131772413849831,-0.651964604854584,-0.746711611747742,-0.145204231142998,-0.65549910068512,-0.741105079650879,-0.144835248589516,-0.655376970767975,-0.741285145282745,-0.136945024132729,-0.655062794685364,-0.743060410022736,-0.136354818940163,-0.654931247234344,-0.74328488111496,-0.126555547118187,-0.651863813400269,-0.747701287269592,-0.126633167266846,-0.651922643184662,-0.74763697385788,-0.154575526714325,-0.668674230575562,-0.727310955524445,-0.15520840883255,-0.667714178562164,-0.728057742118835,-0.150572150945663,-0.660155892372131,-0.735881984233856,-0.151440799236298,-0.660661280155182,-0.735249876976013,-0.120388351380825,-0.673010230064392,-0.729769706726074,-0.123079419136047,-0.673336923122406,-0.729019165039063,-0.143325984477997,-0.673335433006287,-0.725311696529388,-0.140573590993881,-0.673602104187012,-0.725602626800537,-0.0999239310622215,-0.677327334880829,-0.728864014148712,-0.100126057863235,-0.67645788192749,-0.729643404483795,-0.107051208615303,-0.672619819641113,-0.732204020023346, +-0.10559643805027,-0.672812163829803,-0.732238471508026,-0.101858928799629,-0.688989996910095,-0.717577457427979,-0.101674012839794,-0.688674569129944,-0.717906475067139,-0.0999423414468765,-0.683481216430664,-0.72309410572052,-0.100107461214066,-0.684249401092529,-0.72234433889389,-0.101858928799629,-0.688989996910095,-0.717577457427979,-0.112105816602707,-0.688443601131439,-0.716573536396027,-0.110655330121517,-0.688726544380188,-0.716527104377747,-0.101674012839794,-0.688674569129944,-0.717906475067139,-0.133779078722,-0.680474936962128,-0.720456123352051,-0.175847545266151,-0.666855692863464,-0.724141538143158,-0.174767300486565,-0.667144238948822,-0.724137365818024,-0.131930723786354,-0.681313514709473,-0.720004379749298,-0.554683864116669,0.63566517829895,-0.536894381046295,-0.467429101467133,0.675796866416931,-0.569919764995575,-0.456793338060379,0.683383703231812,-0.569496750831604,-0.530680358409882,0.646599531173706,-0.547984838485718,-0.239218771457672,0.797632575035095,-0.553675711154938,-0.14872108399868,0.847546756267548,-0.509456932544708,-0.136086225509644,0.862029552459717,-0.488247513771057,-0.209106370806694,0.811998307704926,-0.544915795326233,-0.0727804228663445,0.908120632171631,-0.41233491897583,0.0319095887243748,0.949040532112122,-0.31353434920311,0.00245992955751717,0.94300788640976,-0.332761317491531,-0.0507490150630474,0.919102966785431,-0.390735656023026,-0.673730432987213,0.588984191417694,-0.44630154967308,-0.689720392227173,0.582654774188995,-0.429882705211639,-0.615140914916992,0.614202201366425,-0.494325131177902,-0.607207596302032,0.616229236125946,-0.501558125019073,0.0319095887243748,0.949040532112122,-0.31353434920311,0.0747214257717133,0.956929087638855,-0.280541300773621,0.00245992955751717,0.94300788640976,-0.332761317491531,-0.826098442077637,0.51407265663147,-0.230847612023354,-0.821043848991394,0.494009435176849,-0.286079853773117,-0.860638737678528,0.457137316465378,-0.224335372447968,-0.859592974185944,0.478953957557678,-0.178053542971611,-0.811946928501129,0.565707921981812,-0.14393275976181, +-0.683482110500336,0.725125372409821,-0.0839360430836678,-0.816087126731873,0.552609443664551,-0.169188529253006,-0.811946928501129,0.565707921981812,-0.14393275976181,-0.816087126731873,0.552609443664551,-0.169188529253006,-0.798272311687469,0.530124366283417,-0.285883903503418,-0.826098442077637,0.51407265663147,-0.230847612023354,-0.939624607563019,0.335361659526825,-0.0681033879518509,-0.964583456516266,0.263706207275391,-0.00614469544962049,-0.955544769763947,0.294668227434158,-0.0102290902286768,-0.92960125207901,0.36357918381691,-0.0604298189282417,-0.90740305185318,0.396797657012939,-0.138460516929626,-0.939624607563019,0.335361659526825,-0.0681033879518509,-0.92960125207901,0.36357918381691,-0.0604298189282417,-0.900938510894775,0.419384926557541,-0.111472643911839,-0.889240443706512,0.449245005846024,-0.0862003862857819,-0.918371617794037,0.390708565711975,-0.0627716854214668,-0.912573993206024,0.388484388589859,-0.127626731991768,-0.860865592956543,0.495969742536545,-0.113685972988605,-0.826098442077637,0.51407265663147,-0.230847612023354,-0.859592974185944,0.478953957557678,-0.178053542971611,-0.843974232673645,0.522969901561737,-0.119205728173256,-0.811946928501129,0.565707921981812,-0.14393275976181,-0.955544769763947,0.294668227434158,-0.0102290902286768,-0.964583456516266,0.263706207275391,-0.00614469544962049,-0.982153117656708,0.179451510310173,0.0563245750963688,-0.976454496383667,0.21052885055542,0.0470547378063202,-0.982153117656708,0.179451510310173,0.0563245750963688,-0.988992214202881,0.091197244822979,0.116522021591663,-0.986934840679169,0.122394517064095,0.104781582951546,-0.976454496383667,0.21052885055542,0.0470547378063202,-0.900938510894775,0.419384926557541,-0.111472643911839,-0.92960125207901,0.36357918381691,-0.0604298189282417,-0.918371617794037,0.390708565711975,-0.0627716854214668,-0.889240443706512,0.449245005846024,-0.0862003862857819,-0.947261154651642,0.319281250238419,-0.0274942461401224,-0.972454786300659,0.232009574770927,0.0224324688315392,-0.979847371578217,0.185717090964317,-0.073540635406971, +-0.951346158981323,0.287874907255173,-0.109856426715851,-0.955544769763947,0.294668227434158,-0.0102290902286768,-0.976454496383667,0.21052885055542,0.0470547378063202,-0.972454786300659,0.232009574770927,0.0224324688315392,-0.947261154651642,0.319281250238419,-0.0274942461401224,-0.987307488918304,0.139714926481247,0.0755233690142632,-0.986934840679169,0.122394517064095,0.104781582951546,-0.986721277236938,0.0343642346560955,0.158745467662811,-0.990691781044006,0.0481399334967136,0.127327635884285,-0.987307488918304,0.139714926481247,0.0755233690142632,-0.990691781044006,0.0481399334967136,0.127327635884285,-0.999632596969604,-0.024996817111969,0.0104765007272363,-0.99634850025177,0.0785757973790169,-0.0334018729627132,-0.988992214202881,0.091197244822979,0.116522021591663,-0.985256791114807,0.00271579460240901,0.171060860157013,-0.986721277236938,0.0343642346560955,0.158745467662811,-0.986934840679169,0.122394517064095,0.104781582951546,-0.985256791114807,0.00271579460240901,0.171060860157013,-0.971517980098724,-0.0872570723295212,0.220315560698509,-0.976034700870514,-0.0560142807662487,0.210282236337662,-0.986721277236938,0.0343642346560955,0.158745467662811,-0.944876968860626,-0.185481384396553,0.269822478294373,-0.907560467720032,-0.278394490480423,0.314373403787613,-0.913626968860626,-0.2585569024086,0.313742280006409,-0.9515420794487,-0.157129183411598,0.264344722032547,-0.976034700870514,-0.0560142807662487,0.210282236337662,-0.971517980098724,-0.0872570723295212,0.220315560698509,-0.944876968860626,-0.185481384396553,0.269822478294373,-0.9515420794487,-0.157129183411598,0.264344722032547,-0.866618275642395,-0.354970395565033,0.350669115781784,-0.813409984111786,-0.432085543870926,0.389443427324295,-0.814648389816284,-0.428444564342499,0.390874922275543,-0.869904160499573,-0.344727694988251,0.352745860815048,-0.913626968860626,-0.2585569024086,0.313742280006409,-0.907560467720032,-0.278394490480423,0.314373403787613,-0.866618275642395,-0.354970395565033,0.350669115781784,-0.869904160499573,-0.344727694988251,0.352745860815048, +-0.982541799545288,-0.0464207492768764,0.180157080292702,-0.976034700870514,-0.0560142807662487,0.210282236337662,-0.9515420794487,-0.157129183411598,0.264344722032547,-0.959386348724365,-0.15290679037571,0.237060010433197,-0.982541799545288,-0.0464207492768764,0.180157080292702,-0.959386348724365,-0.15290679037571,0.237060010433197,-0.964792847633362,-0.23948872089386,0.108719922602177,-0.989922285079956,-0.128704234957695,0.0590685904026031,-0.74021178483963,-0.514792501926422,0.432521879673004,-0.65492194890976,-0.591592311859131,0.470208138227463,-0.655916690826416,-0.594900608062744,0.46461433172226,-0.740242719650269,-0.516140162944794,0.430859804153442,-0.814648389816284,-0.428444564342499,0.390874922275543,-0.813409984111786,-0.432085543870926,0.389443427324295,-0.74021178483963,-0.514792501926422,0.432521879673004,-0.740242719650269,-0.516140162944794,0.430859804153442,-0.913626968860626,-0.2585569024086,0.313742280006409,-0.869904160499573,-0.344727694988251,0.352745860815048,-0.874306321144104,-0.355029731988907,0.330971568822861,-0.920667409896851,-0.261755883693695,0.289578258991241,-0.567943930625916,-0.656791985034943,0.496048510074615,-0.48211407661438,-0.711486220359802,0.511227369308472,-0.488165080547333,-0.713943779468536,0.501975178718567,-0.572315573692322,-0.659300088882446,0.487625062465668,-0.655916690826416,-0.594900608062744,0.46461433172226,-0.65492194890976,-0.591592311859131,0.470208138227463,-0.567943930625916,-0.656791985034943,0.496048510074615,-0.572315573692322,-0.659300088882446,0.487625062465668,-0.920667409896851,-0.261755883693695,0.289578258991241,-0.874306321144104,-0.355029731988907,0.330971568822861,-0.874287188053131,-0.444662630558014,0.194671720266342,-0.923906803131104,-0.350475400686264,0.153502926230431,-0.814648389816284,-0.428444564342499,0.390874922275543,-0.740242719650269,-0.516140162944794,0.430859804153442,-0.741130948066711,-0.533721506595612,0.407266885042191,-0.816639423370361,-0.443349331617355,0.369515031576157,-0.393958210945129,-0.757664084434509,0.520328879356384, +-0.306521207094193,-0.793562054634094,0.525646388530731,-0.307396441698074,-0.799743235111237,0.515672445297241,-0.397733628749847,-0.761988639831543,0.511058747768402,-0.488165080547333,-0.713943779468536,0.501975178718567,-0.48211407661438,-0.711486220359802,0.511227369308472,-0.393958210945129,-0.757664084434509,0.520328879356384,-0.397733628749847,-0.761988639831543,0.511058747768402,-0.816639423370361,-0.443349331617355,0.369515031576157,-0.741130948066711,-0.533721506595612,0.407266885042191,-0.743408679962158,-0.607501566410065,0.279795318841934,-0.816357493400574,-0.526052474975586,0.238389000296593,-0.655916690826416,-0.594900608062744,0.46461433172226,-0.572315573692322,-0.659300088882446,0.487625062465668,-0.577624619007111,-0.675775766372681,0.457904875278473,-0.658049702644348,-0.613114595413208,0.43710532784462,-0.221271157264709,-0.820080399513245,0.52773779630661,-0.134317010641098,-0.839139223098755,0.527071356773376,-0.132950618863106,-0.847913205623627,0.513193190097809,-0.220776677131653,-0.827487289905548,0.516258358955383,-0.306521207094193,-0.793562054634094,0.525646388530731,-0.221271157264709,-0.820080399513245,0.52773779630661,-0.220776677131653,-0.827487289905548,0.516258358955383,-0.307396441698074,-0.799743235111237,0.515672445297241,-0.658049702644348,-0.613114595413208,0.43710532784462,-0.577624619007111,-0.675775766372681,0.457904875278473,-0.583747565746307,-0.740580976009369,0.332834243774414,-0.662330687046051,-0.682317793369293,0.309451997280121,-0.488165080547333,-0.713943779468536,0.501975178718567,-0.397733628749847,-0.761988639831543,0.511058747768402,-0.401980251073837,-0.77776312828064,0.48321470618248,-0.494536310434341,-0.729181885719299,0.472998470067978,0.0527840740978718,-0.859681189060211,0.508096575737,0.0549963153898716,-0.868799448013306,0.492100536823273,-0.0588114634156227,-0.859771072864532,0.50728178024292,-0.0561014004051685,-0.851355254650116,0.521581292152405,-0.132950618863106,-0.847913205623627,0.513193190097809,-0.134317010641098,-0.839139223098755,0.527071356773376, +-0.0561014004051685,-0.851355254650116,0.521581292152405,-0.0588114634156227,-0.859771072864532,0.50728178024292,-0.494536310434341,-0.729181885719299,0.472998470067978,-0.401980251073837,-0.77776312828064,0.48321470618248,-0.413431167602539,-0.830815196037292,0.372586518526077,-0.503096342086792,-0.787679493427277,0.35560530424118,-0.307396441698074,-0.799743235111237,0.515672445297241,-0.220776677131653,-0.827487289905548,0.516258358955383,-0.221417143940926,-0.844668567180634,0.487349599599838,-0.309250980615616,-0.816498398780823,0.487538814544678,-0.309250980615616,-0.816498398780823,0.487538814544678,-0.221417143940926,-0.844668567180634,0.487349599599838,-0.235287219285965,-0.892800092697144,0.384119659662247,-0.322065383195877,-0.867081880569458,0.380056381225586,0.605044484138489,0.468968123197556,-0.643420577049255,0.60286420583725,0.470482021570206,-0.644361197948456,0.518942415714264,0.530140519142151,-0.670559287071228,0.522631466388702,0.52667498588562,-0.670425057411194,-0.132950618863106,-0.847913205623627,0.513193190097809,-0.0588114634156227,-0.859771072864532,0.50728178024292,-0.0612419098615646,-0.875404536724091,0.479496031999588,-0.132824167609215,-0.865383505821228,0.483186483383179,0.854619920253754,0.462648421525955,-0.235756620764732,0.885988175868988,0.331858158111572,-0.323875039815903,0.878110408782959,0.336003214120865,-0.340623140335083,0.796078145503998,0.570253789424896,-0.202658116817474,-0.132824167609215,-0.865383505821228,0.483186483383179,-0.0612419098615646,-0.875404536724091,0.479496031999588,-0.0646438002586365,-0.912932872772217,0.402957588434219,-0.14847406744957,-0.909900665283203,0.387345194816589,0.593896389007568,0.747401654720306,-0.297788292169571,0.587114334106445,0.734397351741791,-0.340524971485138,0.586197257041931,0.732835471630096,-0.34543439745903,0.592883467674255,0.745279550552368,-0.305037021636963,0.609950721263885,0.762418866157532,-0.216050073504448,0.611639082431793,0.762599647045135,-0.210569053888321,0.602320432662964,0.758639752864838,-0.248346194624901, +0.600798547267914,0.75727778673172,-0.256069362163544,0.0459730587899685,0.873031675815582,0.485491633415222,0.0683790147304535,0.880439698696136,0.469201624393463,0.0687228143215179,0.880520939826965,0.468999087810516,0.0459740050137043,0.873032033443451,0.485490798950195,0.572996258735657,0.730179131031036,-0.372174292802811,0.575162053108215,0.729697346687317,-0.369770616292953,0.544345319271088,0.741977870464325,-0.391352832317352,0.541781783103943,0.743212997913361,-0.392564624547958,0.491415441036224,0.766980826854706,-0.412615060806274,0.49193611741066,0.766742885112762,-0.412436872720718,0.437843203544617,0.789587140083313,-0.429936528205872,0.437617421150208,0.789674758911133,-0.430005431175232,0.392403036355972,0.804813265800476,-0.445303857326508,0.350885391235352,0.812869608402252,-0.464889824390411,0.349956303834915,0.812966823577881,-0.465419888496399,0.391716867685318,0.804998159408569,-0.445573478937149,0.311930775642395,0.81404572725296,-0.489927411079407,0.278971761465073,0.81086939573288,-0.514456629753113,0.277576833963394,0.810672640800476,-0.51552015542984,0.310799360275269,0.813979983329773,-0.490754902362823,0.248315528035164,0.808693766593933,-0.533248245716095,0.213144317269325,0.811357200145721,-0.544305980205536,0.210988372564316,0.811657547950745,-0.544698059558868,0.246419936418533,0.808691084384918,-0.534131109714508,0.0659392029047012,0.831221759319305,-0.55201667547226,0.0256383866071701,0.836462616920471,-0.547423958778381,0.0238861609250307,0.836716413497925,-0.54711502790451,0.0640055760741234,0.831448674201965,-0.55190247297287,-0.0102145839482546,0.843114256858826,-0.53763747215271,-0.0406069159507751,0.850977182388306,-0.523630559444427,-0.0433149971067905,0.851748704910278,-0.522157073020935,-0.0119663532823324,0.843527972698212,-0.536951959133148,-0.0698924884200096,0.857977271080017,-0.508910596370697,-0.103941969573498,0.86212420463562,-0.495921313762665,-0.108135081827641,0.86235237121582,-0.494626253843307,-0.073711171746254,0.858692944049835,-0.507161736488342,-0.143353164196014,0.863478124141693,-0.483585864305496, +-0.183443605899811,0.864085257053375,-0.468727260828018,-0.186123132705688,0.864151656627655,-0.467546939849854,-0.146081477403641,0.863504528999329,-0.482721507549286,-0.219543516635895,0.866546869277954,-0.448215395212173,-0.248945012688637,0.871587932109833,-0.422327905893326,-0.249241292476654,0.871656596660614,-0.422011226415634,-0.221855878829956,0.866800844669342,-0.446582913398743,-0.30192095041275,0.880024611949921,-0.366606593132019,-0.300187408924103,0.879940271377563,-0.36822909116745,-0.273404330015182,0.876736223697662,-0.395706564188004,-0.274674355983734,0.876974403858185,-0.394296735525131,-0.388911306858063,0.881984889507294,-0.266177982091904,-0.38840925693512,0.881968021392822,-0.266965687274933,-0.364147961139679,0.881633937358856,-0.30019623041153,-0.364538729190826,0.881637215614319,-0.299712210893631,-0.388911306858063,0.881984889507294,-0.266177982091904,-0.40496352314949,0.883995652198792,-0.233572721481323,-0.404495000839233,0.883894979953766,-0.234762772917747,-0.38840925693512,0.881968021392822,-0.266965687274933,-0.44429424405098,0.891159057617188,-0.0918589681386948,-0.4430330991745,0.891295909881592,-0.0965056568384171,-0.433213293552399,0.890652656555176,-0.138072639703751,-0.434039801359177,0.890810430049896,-0.134410738945007,-0.454260855913162,0.888830602169037,-0.0602273866534233,-0.45426082611084,0.888830542564392,-0.0602273792028427,-0.450144737958908,0.89004510641098,-0.0720363855361938,-0.451899856328964,0.889547049999237,-0.0670273751020432,0.681774854660034,0.416619390249252,-0.601341187953949,0.680759608745575,0.417442053556442,-0.6019207239151,0.60286420583725,0.470482021570206,-0.644361197948456,0.605044484138489,0.468968123197556,-0.643420577049255,0.343299359083176,0.68577516078949,-0.641761541366577,0.356304347515106,0.674880743026733,-0.646206796169281,0.405255615711212,0.62514317035675,-0.667056024074554,0.40032485127449,0.631075501441956,-0.664442360401154,0.219684422016144,0.815183281898499,-0.535924255847931,0.246324956417084,0.788581728935242,-0.563438475131989, +0.294733911752701,0.730552911758423,-0.615974247455597,0.285214453935623,0.743205308914185,-0.605225920677185,0.356304347515106,0.674880743026733,-0.646206796169281,0.343299359083176,0.68577516078949,-0.641761541366577,0.285214453935623,0.743205308914185,-0.605225920677185,0.294733911752701,0.730552911758423,-0.615974247455597,0.866852104663849,0.323040276765823,-0.379752993583679,0.813092112541199,0.317157566547394,-0.488151997327805,0.746244728565216,0.371477276086807,-0.552379846572876,0.775519192218781,0.362793445587158,-0.516672849655151,0.107812240719795,0.989816308021545,-0.0929524675011635,0.107812330126762,0.989817321300507,-0.0929424539208412,0.107840865850449,0.98981785774231,-0.0929032489657402,0.107719093561172,0.989819884300232,-0.0930221602320671,0.813092112541199,0.317157566547394,-0.488151997327805,0.815006196498871,0.30927911400795,-0.490011513233185,0.743211805820465,0.370267570018768,-0.557259380817413,0.746244728565216,0.371477276086807,-0.552379846572876,0.180996641516685,0.856251776218414,-0.483811169862747,0.173966348171234,0.867335021495819,-0.466332167387009,0.140740647912025,0.901642739772797,-0.408940643072128,0.144828632473946,0.89860475063324,-0.414166808128357,0.246324956417084,0.788581728935242,-0.563438475131989,0.219684422016144,0.815183281898499,-0.535924255847931,0.173966348171234,0.867335021495819,-0.466332167387009,0.180996641516685,0.856251776218414,-0.483811169862747,0.144828632473946,0.89860475063324,-0.414166808128357,0.140740647912025,0.901642739772797,-0.408940643072128,0.108443692326546,0.930269300937653,-0.350483983755112,0.108887434005737,0.929703414440155,-0.351845383644104,-0.673730432987213,0.588984191417694,-0.44630154967308,-0.738376140594482,0.553140342235565,-0.385793387889862,-0.743477463722229,0.553153276443481,-0.375849336385727,-0.689720392227173,0.582654774188995,-0.429882705211639,-0.0877183377742767,0.493841022253036,0.865116536617279,-0.0844376385211945,0.490957498550415,0.867081820964813,-0.10504125058651,0.508634269237518,0.854551017284393,-0.106911323964596,0.510180532932281,0.853396534919739, +0.775519192218781,0.362793445587158,-0.516672849655151,0.746244728565216,0.371477276086807,-0.552379846572876,0.681774854660034,0.416619390249252,-0.601341187953949,0.877000987529755,0.273720771074295,-0.394900232553482,0.866852104663849,0.323040276765823,-0.379752993583679,0.878110408782959,0.336003214120865,-0.340623140335083,0.885988175868988,0.331858158111572,-0.323875039815903,0.944790422916412,0.0985122472047806,-0.312516182661057,0.905876934528351,0.188816040754318,-0.379124671220779,0.911651849746704,0.21585613489151,-0.349709928035736,0.947456061840057,0.125703454017639,-0.294152349233627,0.978541135787964,-0.0698225051164627,-0.193861067295074,0.967608690261841,0.0159410387277603,-0.251951068639755,0.969312310218811,0.0398840196430683,-0.242575719952583,0.98090934753418,-0.0482441075146198,-0.188385933637619,0.948522925376892,0.158655971288681,-0.27410301566124,0.947456061840057,0.125703454017639,-0.294152349233627,0.911651849746704,0.21585613489151,-0.349709928035736,0.916033148765564,0.253893882036209,-0.31051766872406,0.969302654266357,-0.230619788169861,-0.0852455645799637,0.978422582149506,-0.15277299284935,-0.139103621244431,0.981843054294586,-0.132750988006592,-0.135504081845284,0.972954988479614,-0.215911090373993,-0.0821031630039215,0.948522925376892,0.158655971288681,-0.27410301566124,0.916033148765564,0.253893882036209,-0.31051766872406,0.90735912322998,0.327252179384232,-0.263828545808792,0.942300260066986,0.206310003995895,-0.263640820980072,0.981283009052277,-0.0284820459783077,-0.190453454852104,0.98090934753418,-0.0482441075146198,-0.188385933637619,0.969312310218811,0.0398840196430683,-0.242575719952583,0.969683349132538,0.0665881037712097,-0.235117182135582,0.920806765556335,-0.388104379177094,0.0385987609624863,0.951116383075714,-0.307683914899826,-0.0266134813427925,0.953635513782501,-0.299967586994171,-0.0244670808315277,0.922876000404358,-0.383425444364548,0.0358439944684505,0.981283009052277,-0.0284820459783077,-0.190453454852104,0.969683349132538,0.0665881037712097,-0.235117182135582, +0.964405834674835,0.0926259011030197,-0.247672572731972,0.971750140190125,-0.03157814219594,-0.233889818191528,0.973664104938507,-0.210532173514366,-0.0874897167086601,0.972954988479614,-0.215911090373993,-0.0821031630039215,0.981843054294586,-0.132750988006592,-0.135504081845284,0.982332468032837,-0.12061496078968,-0.143090665340424,0.826095700263977,-0.540206670761108,0.160445302724838,0.877260386943817,-0.468549102544785,0.10428760945797,0.880649328231812,-0.464166402816772,0.0949017629027367,0.831809818744659,-0.535389721393585,0.14645878970623,0.960675656795502,-0.244658857584,-0.131317600607872,0.973664104938507,-0.210532173514366,-0.0874897167086601,0.982332468032837,-0.12061496078968,-0.143090665340424,0.967540144920349,-0.151450991630554,-0.202308759093285,0.924851834774017,-0.378954350948334,0.0322904512286186,0.922876000404358,-0.383425444364548,0.0358439944684505,0.953635513782501,-0.299967586994171,-0.0244670808315277,0.954524636268616,-0.296981185674667,-0.0261688139289618,0.719806969165802,-0.652972102165222,0.235595718026161,0.712858200073242,-0.655102729797363,0.250346899032593,0.771490097045898,-0.601684749126434,0.206829503178596,0.778777837753296,-0.59727555513382,0.19174724817276,0.924851834774017,-0.378954350948334,0.0322904512286186,0.954524636268616,-0.296981185674667,-0.0261688139289618,0.949139714241028,-0.311926305294037,-0.0428455956280231,0.927105009555817,-0.37350270152092,0.0311777666211128,0.838367760181427,-0.528690338134766,0.13276332616806,0.831809818744659,-0.535389721393585,0.14645878970623,0.880649328231812,-0.464166402816772,0.0949017629027367,0.884804725646973,-0.457960724830627,0.0859798341989517,0.57744687795639,-0.749671220779419,0.32333916425705,0.568554759025574,-0.747995793819427,0.342414677143097,0.646237850189209,-0.703299701213837,0.296220034360886,0.652794778347015,-0.703853130340576,0.280088663101196,0.84704726934433,-0.515302360057831,0.130286008119583,0.838367760181427,-0.528690338134766,0.13276332616806,0.884804725646973,-0.457960724830627,0.0859798341989517,0.892134010791779,-0.443053156137466,0.088321715593338, +0.726612091064453,-0.652363717556,0.215537786483765,0.719806969165802,-0.652972102165222,0.235595718026161,0.778777837753296,-0.59727555513382,0.19174724817276,0.786389470100403,-0.592391490936279,0.175111263990402,0.409541070461273,-0.813731849193573,0.412451863288879,0.486940652132034,-0.785775065422058,0.381374508142471,0.498265773057938,-0.788217842578888,0.361169874668121,0.417820125818253,-0.818676173686981,0.393948674201965,0.729008316993713,-0.660993576049805,0.177860140800476,0.726612091064453,-0.652363717556,0.215537786483765,0.786389470100403,-0.592391490936279,0.175111263990402,0.793179631233215,-0.587970077991486,0.158611118793488,0.584298849105835,-0.756926715373993,0.29267218708992,0.57744687795639,-0.749671220779419,0.32333916425705,0.652794778347015,-0.703853130340576,0.280088663101196,0.658525824546814,-0.708120167255402,0.254773437976837,0.248413518071175,-0.846261382102966,0.471309334039688,0.333080351352692,-0.833068609237671,0.441649496555328,0.335416465997696,-0.84122371673584,0.424073755741119,0.246648907661438,-0.856903910636902,0.45263671875,0.572824060916901,-0.789301693439484,0.221077963709831,0.584298849105835,-0.756926715373993,0.29267218708992,0.658525824546814,-0.708120167255402,0.254773437976837,0.65401816368103,-0.730486810207367,0.196594282984734,0.422532945871353,-0.8307785987854,0.362315893173218,0.417820125818253,-0.818676173686981,0.393948674201965,0.498265773057938,-0.788217842578888,0.361169874668121,0.506272315979004,-0.797325611114502,0.328573077917099,0.404788315296173,-0.870706856250763,0.279313683509827,0.422532945871353,-0.8307785987854,0.362315893173218,0.506272315979004,-0.797325611114502,0.328573077917099,0.490759581327438,-0.834341287612915,0.251056998968124,0.241870358586311,-0.875452816486359,0.418426871299744,0.246648907661438,-0.856903910636902,0.45263671875,0.335416465997696,-0.84122371673584,0.424073755741119,0.334458231925964,-0.857013940811157,0.392001122236252,0.241870358586311,-0.875452816486359,0.418426871299744,0.334458231925964,-0.857013940811157,0.392001122236252, +0.3133405148983,-0.90071052312851,0.300895780324936,0.217328935861588,-0.921589910984039,0.321620970964432,0.0433890596032143,-0.914197385311127,0.402939856052399,0.0555270127952099,-0.882919192314148,0.466230094432831,0.166357398033142,-0.882590651512146,0.439726024866104,0.136749118566513,-0.922213733196259,0.361692309379578,0.0433890596032143,-0.914197385311127,0.402939856052399,-0.0646438002586365,-0.912932872772217,0.402957588434219,-0.0612419098615646,-0.875404536724091,0.479496031999588,0.0555270127952099,-0.882919192314148,0.466230094432831,0.642681956291199,0.678313136100769,0.356161832809448,0.644182443618774,0.67607319355011,0.357706844806671,0.64143294095993,0.646313726902008,0.413330554962158,0.641825318336487,0.646762669086456,0.412017375230789,0.614830136299133,0.647076487541199,0.450861364603043,0.614240109920502,0.652769684791565,0.443396776914597,0.622713625431061,0.68989759683609,0.369146555662155,0.620586752891541,0.689144194126129,0.374102026224136,0.614830136299133,0.647076487541199,0.450861364603043,0.647596418857574,0.531895756721497,0.545624196529388,0.643332600593567,0.544254720211029,0.538432955741882,0.614240109920502,0.652769684791565,0.443396776914597,0.704289674758911,0.361993014812469,0.6106858253479,0.750935256481171,0.16413252055645,0.639653563499451,0.752030849456787,0.156789004802704,0.64020836353302,0.700466275215149,0.373588889837265,0.608093917369843,0.763162136077881,-0.0478351898491383,0.644434034824371,0.737926602363586,-0.291203826665878,0.608822345733643,0.731726884841919,-0.323388040065765,0.59999668598175,0.761871814727783,-0.0762636512517929,0.643222510814667,0.655378401279449,-0.569617092609406,0.495999574661255,0.521244287490845,-0.791952311992645,0.317987322807312,0.515645563602448,-0.798550665378571,0.310526251792908,0.647546052932739,-0.587461113929749,0.485359102487564,0.171095803380013,-0.944920122623444,-0.27902016043663,0.172327414155006,-0.945378541946411,-0.276699602603912,0.228081583976746,-0.957955896854401,-0.174066856503487,0.226329281926155,-0.957787454128265,-0.177251741290092, +0.118964307010174,-0.908790230751038,-0.399934768676758,0.118901208043098,-0.908695995807648,-0.400167405605316,0.135781288146973,-0.925816714763641,-0.352742046117783,0.135377556085587,-0.925501048564911,-0.353724241256714,0.09856928139925,-0.909459233283997,-0.40394052863121,0.0996146202087402,-0.90878564119339,-0.405198365449905,0.110524766147137,-0.903628170490265,-0.413812011480331,0.110330805182457,-0.903667628765106,-0.413777738809586,0.0904627218842506,-0.925120770931244,-0.368738442659378,0.0902317091822624,-0.924302875995636,-0.37084025144577,0.0899074226617813,-0.916323781013489,-0.390214711427689,0.0897448509931564,-0.916646599769592,-0.389493077993393,0.0292357578873634,-0.958316504955292,-0.284209281206131,0.0310712661594152,-0.957841336727142,-0.285612493753433,0.0754015296697617,-0.94013112783432,-0.332367420196533,0.072244867682457,-0.941955029964447,-0.327874034643173,0.0292357578873634,-0.958316504955292,-0.284209281206131,0.0333081744611263,-0.945908010005951,-0.322720646858215,0.0435533970594406,-0.938541233539581,-0.342408150434494,0.0310712661594152,-0.957841336727142,-0.285612493753433,0.774932444095612,0.23646168410778,-0.586144626140594,0.774797141551971,0.235764920711517,-0.586603999137878,0.892084538936615,0.349250137805939,-0.28672206401825,0.884384393692017,0.346845835447311,-0.312349528074265,0.732881903648376,-0.0732422769069672,-0.676401972770691,0.718339383602142,-0.115008533000946,-0.686120748519897,0.755832016468048,0.077229879796505,-0.650195002555847,0.754852056503296,0.0852371454238892,-0.650333046913147,0.732881903648376,-0.0732422769069672,-0.676401972770691,0.589030981063843,-0.390400886535645,-0.707551956176758,0.508342027664185,-0.511716187000275,-0.692629039287567,0.718339383602142,-0.115008533000946,-0.686120748519897,-0.450006276369095,-0.846444249153137,-0.284651458263397,-0.637512445449829,-0.763310253620148,-0.104571707546711,-0.615962624549866,-0.784222602844238,-0.0747325792908669,-0.43608346581459,-0.866951525211334,-0.241301119327545,-0.345061480998993,-0.93794047832489,-0.034643892198801, +-0.323264300823212,-0.893875777721405,0.31062251329422,-0.168249413371086,-0.891458690166473,0.420705914497375,-0.209495022892952,-0.977356314659119,-0.0297738444060087,-0.168249413371086,-0.891458690166473,0.420705914497375,0.027234161272645,-0.89887672662735,0.437354385852814,-0.0791422799229622,-0.996090829372406,-0.0392339825630188,-0.209495022892952,-0.977356314659119,-0.0297738444060087,-0.0791422799229622,-0.996090829372406,-0.0392339825630188,-0.171944156289101,-0.9038245677948,-0.39183709025383,-0.283677160739899,-0.895026683807373,-0.344172060489655,-0.209495022892952,-0.977356314659119,-0.0297738444060087,-0.772943794727325,-0.459111005067825,0.437921315431595,-0.774068593978882,-0.486837923526764,0.404730319976807,-0.793072164058685,-0.536082565784454,0.289226680994034,-0.808530688285828,-0.503699421882629,0.304245084524155,-0.32402503490448,-0.761790335178375,0.560966432094574,-0.355349093675613,-0.628611981868744,0.691790401935577,-0.16674330830574,-0.587503731250763,0.791856050491333,-0.151470959186554,-0.72859787940979,0.667983293533325,-0.16674330830574,-0.587503731250763,0.791856050491333,0.0461198948323727,-0.580380856990814,0.813038229942322,0.0501320064067841,-0.707809090614319,0.704622805118561,-0.151470959186554,-0.72859787940979,0.667983293533325,0.0501320064067841,-0.707809090614319,0.704622805118561,0.027234161272645,-0.89887672662735,0.437354385852814,-0.168249413371086,-0.891458690166473,0.420705914497375,-0.151470959186554,-0.72859787940979,0.667983293533325,-0.690646231174469,-0.708719432353973,0.14396008849144,-0.735284626483917,-0.653446793556213,0.179899260401726,-0.549805819988251,-0.81207948923111,0.195551961660385,-0.526382863521576,-0.84980571269989,0.0274089518934488,-0.549805819988251,-0.81207948923111,0.195551961660385,-0.323264300823212,-0.893875777721405,0.31062251329422,-0.345061480998993,-0.93794047832489,-0.034643892198801,-0.526382863521576,-0.84980571269989,0.0274089518934488,-0.345061480998993,-0.93794047832489,-0.034643892198801,-0.43608346581459,-0.866951525211334,-0.241301119327545, +-0.615962624549866,-0.784222602844238,-0.0747325792908669,-0.526382863521576,-0.84980571269989,0.0274089518934488,-0.772943794727325,-0.459111005067825,0.437921315431595,-0.71522444486618,-0.463751196861267,0.522865951061249,-0.734706223011017,-0.481136739253998,0.478240579366684,-0.774068593978882,-0.486837923526764,0.404730319976807,0.259092956781387,-0.894549190998077,-0.364215105772018,0.253324896097183,-0.895827233791351,-0.365130066871643,0.114206723868847,-0.89585953950882,-0.429409682750702,0.121380895376205,-0.900714337825775,-0.417109489440918,-0.761715114116669,-0.472965806722641,0.442824393510818,-0.796359241008759,-0.469575434923172,0.381196916103363,-0.818716466426849,-0.481853991746902,0.312282085418701,-0.786434292793274,-0.495830059051514,0.368338942527771,-0.818716466426849,-0.481853991746902,0.312282085418701,-0.827638328075409,-0.502594292163849,0.249827116727829,-0.795078992843628,-0.522641837596893,0.307725340127945,-0.786434292793274,-0.495830059051514,0.368338942527771,-0.795078992843628,-0.522641837596893,0.307725340127945,-0.774068593978882,-0.486837923526764,0.404730319976807,-0.734706223011017,-0.481136739253998,0.478240579366684,-0.786434292793274,-0.495830059051514,0.368338942527771,-0.813471496105194,-0.5441814661026,0.205257400870323,-0.735284626483917,-0.653446793556213,0.179899260401726,-0.690646231174469,-0.708719432353973,0.14396008849144,-0.777065873146057,-0.580229818820953,0.243930459022522,-0.690646231174469,-0.708719432353973,0.14396008849144,-0.749874413013458,-0.649870634078979,0.123921424150467,-0.793072164058685,-0.536082565784454,0.289226680994034,-0.777065873146057,-0.580229818820953,0.243930459022522,-0.793072164058685,-0.536082565784454,0.289226680994034,-0.774068593978882,-0.486837923526764,0.404730319976807,-0.795078992843628,-0.522641837596893,0.307725340127945,-0.777065873146057,-0.580229818820953,0.243930459022522,-0.889593243598938,-0.434417426586151,0.141086786985397,-0.863405406475067,-0.466758787631989,0.191487044095993,-0.852851212024689,-0.460834175348282,0.245513066649437, +-0.87469071149826,-0.4469875395298,0.187398746609688,-0.863405406475067,-0.466758787631989,0.191487044095993,-0.889593243598938,-0.434417426586151,0.141086786985397,-0.899694383144379,-0.427779912948608,0.0869159996509552,-0.859839141368866,-0.488048911094666,0.149949714541435,-0.863405406475067,-0.466758787631989,0.191487044095993,-0.827638328075409,-0.502594292163849,0.249827116727829,-0.818716466426849,-0.481853991746902,0.312282085418701,-0.852851212024689,-0.460834175348282,0.245513066649437,-0.89263516664505,-0.431775778532028,0.129507496953011,-0.910303235054016,-0.405883729457855,0.0812792703509331,-0.889593243598938,-0.434417426586151,0.141086786985397,-0.87469071149826,-0.4469875395298,0.187398746609688,-0.809677422046661,-0.528477609157562,0.255213528871536,-0.859839141368866,-0.488048911094666,0.149949714541435,-0.899694383144379,-0.427779912948608,0.0869159996509552,-0.914900362491608,-0.38656622171402,0.116292290389538,-0.859839141368866,-0.488048911094666,0.149949714541435,-0.809677422046661,-0.528477609157562,0.255213528871536,-0.735284626483917,-0.653446793556213,0.179899260401726,-0.813471496105194,-0.5441814661026,0.205257400870323,-0.943566024303436,-0.327481031417847,-0.0493887029588223,-0.914900362491608,-0.38656622171402,0.116292290389538,-0.899694383144379,-0.427779912948608,0.0869159996509552,-0.924871206283569,-0.380095243453979,0.0118655255064368,-0.889593243598938,-0.434417426586151,0.141086786985397,-0.910303235054016,-0.405883729457855,0.0812792703509331,-0.924871206283569,-0.380095243453979,0.0118655255064368,-0.899694383144379,-0.427779912948608,0.0869159996509552,-0.735284626483917,-0.653446793556213,0.179899260401726,-0.809677422046661,-0.528477609157562,0.255213528871536,-0.57186758518219,-0.715050220489502,0.402082890272141,-0.549805819988251,-0.81207948923111,0.195551961660385,-0.781888067722321,-0.444380909204483,0.437237501144409,-0.819685935974121,-0.428127497434616,0.380554527044296,-0.836326658725739,-0.436529457569122,0.331662327051163,-0.806883811950684,-0.447147369384766,0.386002361774445, +-0.579777002334595,-0.606185019016266,0.544424891471863,-0.355349093675613,-0.628611981868744,0.691790401935577,-0.32402503490448,-0.761790335178375,0.560966432094574,-0.57186758518219,-0.715050220489502,0.402082890272141,-0.908586740493774,-0.41457611322403,0.0509588904678822,-0.921752750873566,-0.387750774621964,-0.00461659394204617,-0.919773280620575,-0.391606122255325,0.0257225576788187,-0.905779004096985,-0.416718542575836,0.0768770948052406,-0.919773280620575,-0.391606122255325,0.0257225576788187,-0.910303235054016,-0.405883729457855,0.0812792703509331,-0.89263516664505,-0.431775778532028,0.129507496953011,-0.905779004096985,-0.416718542575836,0.0768770948052406,-0.89263516664505,-0.431775778532028,0.129507496953011,-0.876991271972656,-0.436529546976089,0.200818419456482,-0.897973656654358,-0.415340721607208,0.145380243659019,-0.905779004096985,-0.416718542575836,0.0768770948052406,-0.929993689060211,-0.359206169843674,-0.0779908671975136,-0.932604908943176,-0.318339169025421,-0.170024082064629,-0.934256553649902,-0.328212589025497,-0.139431312680244,-0.928229689598083,-0.368470788002014,-0.051173560321331,-0.924871206283569,-0.380095243453979,0.0118655255064368,-0.910303235054016,-0.405883729457855,0.0812792703509331,-0.919773280620575,-0.391606122255325,0.0257225576788187,-0.928229689598083,-0.368470788002014,-0.051173560321331,-0.93591433763504,-0.155002787709236,-0.316288858652115,-0.914596796035767,-0.0584048591554165,-0.400126904249191,-0.963285148143768,-0.0192505791783333,-0.267789155244827,-0.966890752315521,-0.143484875559807,-0.21103148162365,-0.934256553649902,-0.328212589025497,-0.139431312680244,-0.932604908943176,-0.318339169025421,-0.170024082064629,-0.930738568305969,-0.287072390317917,-0.226528599858284,-0.942311406135559,-0.255702167749405,-0.216022416949272,-0.898703098297119,0.171856060624123,-0.403482407331467,-0.942121505737305,0.0769172087311745,-0.326329469680786,-0.879079759120941,0.0545361153781414,-0.473544776439667,-0.834174335002899,0.171858638525009,-0.5240398645401,-0.879079759120941,0.0545361153781414,-0.473544776439667, +-0.843964040279388,0.0443088226020336,-0.534566581249237,-0.790207624435425,0.181348204612732,-0.585392892360687,-0.834174335002899,0.171858638525009,-0.5240398645401,-0.819685935974121,-0.428127497434616,0.380554527044296,-0.781888067722321,-0.444380909204483,0.437237501144409,-0.752129912376404,-0.424689501523972,0.503924071788788,-0.799119532108307,-0.402985364198685,0.446106284856796,-0.989501714706421,-0.0315624251961708,-0.141032323241234,-0.989118337631226,-0.146823719143867,0.00936732348054647,-0.976318955421448,-0.215805724263191,0.0151368416845798,-0.989092409610748,-0.0998007878661156,-0.108332894742489,-0.976318955421448,-0.215805724263191,0.0151368416845798,-0.960497677326202,-0.258555889129639,-0.102922067046165,-0.966890752315521,-0.143484875559807,-0.21103148162365,-0.989092409610748,-0.0998007878661156,-0.108332894742489,-0.950916528701782,0.21599979698658,-0.221589237451553,-0.935437500476837,0.195304781198502,-0.294639825820923,-0.865604937076569,0.310322701931,-0.392973124980927,-0.877688050270081,0.354772627353668,-0.322179943323135,-0.960497677326202,-0.258555889129639,-0.102922067046165,-0.976318955421448,-0.215805724263191,0.0151368416845798,-0.914900362491608,-0.38656622171402,0.116292290389538,-0.943566024303436,-0.327481031417847,-0.0493887029588223,-0.992425382137299,0.0758751183748245,-0.0966177135705948,-0.996062695980072,-0.0723164230585098,0.0512785874307156,-0.994655311107635,-0.101891376078129,0.0167029183357954,-0.982199788093567,0.0583073571324348,-0.178560227155685,-0.791991949081421,-0.481360405683517,0.375554114580154,-0.809677422046661,-0.528477609157562,0.255213528871536,-0.914900362491608,-0.38656622171402,0.116292290389538,-0.920321881771088,-0.327427268028259,0.214006915688515,-0.994655311107635,-0.101891376078129,0.0167029183357954,-0.996062695980072,-0.0723164230585098,0.0512785874307156,-0.943928062915802,-0.231711208820343,0.235180377960205,-0.927526652812958,-0.294440418481827,0.230215579271317,-0.943928062915802,-0.231711208820343,0.235180377960205,-0.837398886680603,-0.356193453073502,0.414595544338226, +-0.806884944438934,-0.426367670297623,0.408836483955383,-0.927526652812958,-0.294440418481827,0.230215579271317,-0.806884944438934,-0.426367670297623,0.408836483955383,-0.791991949081421,-0.481360405683517,0.375554114580154,-0.920321881771088,-0.327427268028259,0.214006915688515,-0.927526652812958,-0.294440418481827,0.230215579271317,-0.806884944438934,-0.426367670297623,0.408836483955383,-0.837398886680603,-0.356193453073502,0.414595544338226,-0.674352824687958,-0.454488307237625,0.581969618797302,-0.618817448616028,-0.515431046485901,0.592786431312561,-0.674352824687958,-0.454488307237625,0.581969618797302,-0.481036573648453,-0.51708996295929,0.707970261573792,-0.410768628120422,-0.539873957633972,0.734714508056641,-0.618817448616028,-0.515431046485901,0.592786431312561,-0.410768628120422,-0.539873957633972,0.734714508056641,-0.355349093675613,-0.628611981868744,0.691790401935577,-0.579777002334595,-0.606185019016266,0.544424891471863,-0.618817448616028,-0.515431046485901,0.592786431312561,-0.286115288734436,-0.561390459537506,0.7765172123909,0.00401754397898912,-0.612584948539734,0.79039454460144,0.0521893128752708,-0.556438505649567,0.829248130321503,-0.221544876694679,-0.532006800174713,0.817243337631226,0.0521893128752708,-0.556438505649567,0.829248130321503,0.0461198948323727,-0.580380856990814,0.813038229942322,-0.16674330830574,-0.587503731250763,0.791856050491333,-0.221544876694679,-0.532006800174713,0.817243337631226,-0.16674330830574,-0.587503731250763,0.791856050491333,-0.355349093675613,-0.628611981868744,0.691790401935577,-0.410768628120422,-0.539873957633972,0.734714508056641,-0.221544876694679,-0.532006800174713,0.817243337631226,-0.961964964866638,-0.189852878451347,0.196416199207306,-0.888508915901184,-0.317623674869537,0.33116027712822,-0.868031859397888,-0.325687199831009,0.374764561653137,-0.955482244491577,-0.198175624012947,0.218586787581444,-0.868031859397888,-0.325687199831009,0.374764561653137,-0.837398886680603,-0.356193453073502,0.414595544338226,-0.943928062915802,-0.231711208820343,0.235180377960205, +-0.955482244491577,-0.198175624012947,0.218586787581444,-0.943928062915802,-0.231711208820343,0.235180377960205,-0.996062695980072,-0.0723164230585098,0.0512785874307156,-0.995732367038727,-0.061074536293745,0.0691885873675346,-0.955482244491577,-0.198175624012947,0.218586787581444,-0.958378195762634,0.224283918738365,-0.176657557487488,-0.968461751937866,0.203230634331703,-0.144149765372276,-0.996524572372437,0.0721109509468079,-0.0416980572044849,-0.99448174238205,0.0828595161437988,-0.0643451437354088,-0.996524572372437,0.0721109509468079,-0.0416980572044849,-0.99565178155899,-0.0596222244203091,0.0715730264782906,-0.995732367038727,-0.061074536293745,0.0691885873675346,-0.99448174238205,0.0828595161437988,-0.0643451437354088,-0.995732367038727,-0.061074536293745,0.0691885873675346,-0.996062695980072,-0.0723164230585098,0.0512785874307156,-0.992425382137299,0.0758751183748245,-0.0966177135705948,-0.99448174238205,0.0828595161437988,-0.0643451437354088,-0.766794502735138,-0.438713759183884,0.468568503856659,-0.589996457099915,-0.546522796154022,0.59432065486908,-0.542957484722137,-0.530088305473328,0.651309132575989,-0.727981090545654,-0.439335078001022,0.526334643363953,-0.542957484722137,-0.530088305473328,0.651309132575989,-0.481036573648453,-0.51708996295929,0.707970261573792,-0.674352824687958,-0.454488307237625,0.581969618797302,-0.727981090545654,-0.439335078001022,0.526334643363953,-0.674352824687958,-0.454488307237625,0.581969618797302,-0.837398886680603,-0.356193453073502,0.414595544338226,-0.868031859397888,-0.325687199831009,0.374764561653137,-0.727981090545654,-0.439335078001022,0.526334643363953,-0.357145041227341,-0.631978631019592,0.68778657913208,-0.0745914131402969,-0.672625780105591,0.736213684082031,-0.0183183010667562,-0.651320338249207,0.758581757545471,-0.322585374116898,-0.604224324226379,0.728595554828644,-0.0183183010667562,-0.651320338249207,0.758581757545471,0.00401754397898912,-0.612584948539734,0.79039454460144,-0.286115288734436,-0.561390459537506,0.7765172123909,-0.322585374116898,-0.604224324226379,0.728595554828644, +-0.286115288734436,-0.561390459537506,0.7765172123909,-0.481036573648453,-0.51708996295929,0.707970261573792,-0.542957484722137,-0.530088305473328,0.651309132575989,-0.322585374116898,-0.604224324226379,0.728595554828644,-0.621844053268433,-0.554872512817383,0.552654087543488,-0.641457080841064,-0.561519980430603,0.522712171077728,-0.413879901170731,-0.662914633750916,0.623897194862366,-0.391105264425278,-0.649304211139679,0.652258217334747,-0.413879901170731,-0.662914633750916,0.623897194862366,-0.137506857514381,-0.725035965442657,0.674844145774841,-0.119997449219227,-0.704074919223785,0.699913501739502,-0.391105264425278,-0.649304211139679,0.652258217334747,-0.119997449219227,-0.704074919223785,0.699913501739502,-0.0745914131402969,-0.672625780105591,0.736213684082031,-0.357145041227341,-0.631978631019592,0.68778657913208,-0.391105264425278,-0.649304211139679,0.652258217334747,-0.803848206996918,-0.441196978092194,0.398965179920197,-0.641457080841064,-0.561519980430603,0.522712171077728,-0.621844053268433,-0.554872512817383,0.552654087543488,-0.790132105350494,-0.438907355070114,0.427845478057861,-0.621844053268433,-0.554872512817383,0.552654087543488,-0.589996457099915,-0.546522796154022,0.59432065486908,-0.766794502735138,-0.438713759183884,0.468568503856659,-0.790132105350494,-0.438907355070114,0.427845478057861,-0.766794502735138,-0.438713759183884,0.468568503856659,-0.888508915901184,-0.317623674869537,0.33116027712822,-0.899721562862396,-0.317192137241364,0.299816757440567,-0.790132105350494,-0.438907355070114,0.427845478057861,-0.9949871301651,-0.0745253637433052,0.0666825249791145,-0.994104743003845,-0.0917158871889114,0.0578270591795444,-0.9654181599617,-0.204183220863342,0.162102371454239,-0.96444433927536,-0.195159658789635,0.178212627768517,-0.9654181599617,-0.204183220863342,0.162102371454239,-0.906161427497864,-0.320504367351532,0.275950133800507,-0.899721562862396,-0.317192137241364,0.299816757440567,-0.96444433927536,-0.195159658789635,0.178212627768517,-0.899721562862396,-0.317192137241364,0.299816757440567, +-0.888508915901184,-0.317623674869537,0.33116027712822,-0.961964964866638,-0.189852878451347,0.196416199207306,-0.96444433927536,-0.195159658789635,0.178212627768517,-0.653650760650635,-0.573908030986786,0.493325710296631,-0.657342493534088,-0.591104388237,0.467435896396637,-0.424601227045059,-0.704623579978943,0.56852388381958,-0.426668673753738,-0.682175099849701,0.593793630599976,-0.424601227045059,-0.704623579978943,0.56852388381958,-0.138897895812988,-0.770571351051331,0.622034668922424,-0.138695940375328,-0.747662842273712,0.649433434009552,-0.426668673753738,-0.682175099849701,0.593793630599976,-0.138695940375328,-0.747662842273712,0.649433434009552,-0.137506857514381,-0.725035965442657,0.674844145774841,-0.413879901170731,-0.662914633750916,0.623897194862366,-0.426668673753738,-0.682175099849701,0.593793630599976,-0.652212262153625,-0.616112947463989,0.441615134477615,-0.636304140090942,-0.656347274780273,0.405370622873306,-0.390995264053345,-0.768842220306396,0.505968749523163,-0.413804799318314,-0.731874048709869,0.541411101818085,-0.390995264053345,-0.768842220306396,0.505968749523163,-0.0973174646496773,-0.826116681098938,0.555031955242157,-0.121886551380157,-0.796136200428009,0.592714846134186,-0.413804799318314,-0.731874048709869,0.541411101818085,-0.121886551380157,-0.796136200428009,0.592714846134186,-0.138897895812988,-0.770571351051331,0.622034668922424,-0.424601227045059,-0.704623579978943,0.56852388381958,-0.413804799318314,-0.731874048709869,0.541411101818085,-0.815835297107697,-0.461970567703247,0.34784460067749,-0.657342493534088,-0.591104388237,0.467435896396637,-0.653650760650635,-0.573908030986786,0.493325710296631,-0.812784016132355,-0.448714226484299,0.371534198522568,-0.653650760650635,-0.573908030986786,0.493325710296631,-0.641457080841064,-0.561519980430603,0.522712171077728,-0.803848206996918,-0.441196978092194,0.398965179920197,-0.812784016132355,-0.448714226484299,0.371534198522568,-0.803848206996918,-0.441196978092194,0.398965179920197,-0.906161427497864,-0.320504367351532,0.275950133800507, +-0.910029172897339,-0.32787424325943,0.253663927316666,-0.812784016132355,-0.448714226484299,0.371534198522568,-0.993054449558258,-0.108172722160816,0.04627750441432,-0.991647839546204,-0.124756805598736,0.0327131561934948,-0.964813590049744,-0.228931456804276,0.129326060414314,-0.965633988380432,-0.21521945297718,0.145711272954941,-0.964813590049744,-0.228931456804276,0.129326060414314,-0.9108806848526,-0.34015691280365,0.233644440770149,-0.910029172897339,-0.32787424325943,0.253663927316666,-0.965633988380432,-0.21521945297718,0.145711272954941,-0.910029172897339,-0.32787424325943,0.253663927316666,-0.906161427497864,-0.320504367351532,0.275950133800507,-0.9654181599617,-0.204183220863342,0.162102371454239,-0.965633988380432,-0.21521945297718,0.145711272954941,-0.607408463954926,-0.713105082511902,0.350051492452621,-0.575160980224609,-0.772217512130737,0.269944608211517,-0.323926240205765,-0.871468663215637,0.368258237838745,-0.354242712259293,-0.820487678050995,0.448678344488144,-0.323926240205765,-0.871468663215637,0.368258237838745,-0.020643625408411,-0.906076371669769,0.422610104084015,-0.060223001986742,-0.864339351654053,0.499290138483047,-0.354242712259293,-0.820487678050995,0.448678344488144,-0.060223001986742,-0.864339351654053,0.499290138483047,-0.0973174646496773,-0.826116681098938,0.555031955242157,-0.390995264053345,-0.768842220306396,0.505968749523163,-0.354242712259293,-0.820487678050995,0.448678344488144,-0.803426086902618,-0.521454751491547,0.287387579679489,-0.636304140090942,-0.656347274780273,0.405370622873306,-0.652212262153625,-0.616112947463989,0.441615134477615,-0.8130983710289,-0.484057068824768,0.323356926441193,-0.652212262153625,-0.616112947463989,0.441615134477615,-0.657342493534088,-0.591104388237,0.467435896396637,-0.815835297107697,-0.461970567703247,0.34784460067749,-0.8130983710289,-0.484057068824768,0.323356926441193,-0.815835297107697,-0.461970567703247,0.34784460067749,-0.9108806848526,-0.34015691280365,0.233644440770149,-0.908557772636414,-0.360577553510666,0.21096570789814, +-0.8130983710289,-0.484057068824768,0.323356926441193,-0.888130605220795,-0.441388487815857,0.128063306212425,-0.865404486656189,-0.496753394603729,0.0656585171818733,-0.755456387996674,-0.633722126483917,0.166379019618034,-0.783328354358673,-0.575309455394745,0.23540572822094,-0.755456387996674,-0.633722126483917,0.166379019618034,-0.575160980224609,-0.772217512130737,0.269944608211517,-0.607408463954926,-0.713105082511902,0.350051492452621,-0.783328354358673,-0.575309455394745,0.23540572822094,-0.607408463954926,-0.713105082511902,0.350051492452621,-0.636304140090942,-0.656347274780273,0.405370622873306,-0.803426086902618,-0.521454751491547,0.287387579679489,-0.783328354358673,-0.575309455394745,0.23540572822094,-0.556548178195953,-0.814582705497742,0.163429290056229,-0.537056982517242,-0.841942608356476,0.051984615623951,-0.310984641313553,-0.94087541103363,0.134320795536041,-0.316047728061676,-0.913869738578796,0.254864305257797,-0.310984641313553,-0.94087541103363,0.134320795536041,0.0032900117803365,-0.978204190731049,0.207619369029999,-0.00680821528658271,-0.946289122104645,0.323249936103821,-0.316047728061676,-0.913869738578796,0.254864305257797,-0.00680821528658271,-0.946289122104645,0.323249936103821,-0.020643625408411,-0.906076371669769,0.422610104084015,-0.323926240205765,-0.871468663215637,0.368258237838745,-0.316047728061676,-0.913869738578796,0.254864305257797,-0.989149510860443,-0.146321251988411,0.0131673207506537,-0.983850181102753,-0.178102403879166,-0.0178399439901114,-0.956802129745483,-0.280661016702652,0.0758890435099602,-0.962370336055756,-0.249201431870461,0.108359880745411,-0.956802129745483,-0.280661016702652,0.0758890435099602,-0.901891767978668,-0.394149214029312,0.1767418384552,-0.908557772636414,-0.360577553510666,0.21096570789814,-0.962370336055756,-0.249201431870461,0.108359880745411,-0.908557772636414,-0.360577553510666,0.21096570789814,-0.9108806848526,-0.34015691280365,0.233644440770149,-0.964813590049744,-0.228931456804276,0.129326060414314,-0.962370336055756,-0.249201431870461,0.108359880745411, +-0.512630820274353,-0.854865789413452,-0.0800892859697342,-0.544152975082397,-0.80287778377533,-0.24348446726799,-0.334278702735901,-0.935530602931976,-0.114194087684155,-0.317906945943832,-0.94810563325882,0.00555998273193836,-0.334278702735901,-0.935530602931976,-0.114194087684155,-0.0191383771598339,-0.998614132404327,-0.0490237362682819,-0.00594821013510227,-0.996839284896851,0.0792215764522552,-0.317906945943832,-0.94810563325882,0.00555998273193836,-0.00594821013510227,-0.996839284896851,0.0792215764522552,0.0032900117803365,-0.978204190731049,0.207619369029999,-0.310984641313553,-0.94087541103363,0.134320795536041,-0.317906945943832,-0.94810563325882,0.00555998273193836,-0.833089351654053,-0.553030490875244,-0.0109364287927747,-0.788501858711243,-0.607093632221222,-0.0984992235898972,-0.695606052875519,-0.718350946903229,-0.0102119604125619,-0.727136433124542,-0.681854963302612,0.0796652734279633,-0.695606052875519,-0.718350946903229,-0.0102119604125619,-0.537056982517242,-0.841942608356476,0.051984615623951,-0.556548178195953,-0.814582705497742,0.163429290056229,-0.727136433124542,-0.681854963302612,0.0796652734279633,-0.556548178195953,-0.814582705497742,0.163429290056229,-0.575160980224609,-0.772217512130737,0.269944608211517,-0.755456387996674,-0.633722126483917,0.166379019618034,-0.727136433124542,-0.681854963302612,0.0796652734279633,-0.374990254640579,-0.863838016986847,-0.336401879787445,-0.0667620152235031,-0.915767788887024,-0.396121501922607,-0.0430955216288567,-0.975414991378784,-0.216121271252632,-0.293177664279938,-0.930998861789703,-0.217458173632622,-0.0430955216288567,-0.975414991378784,-0.216121271252632,-0.0191383771598339,-0.998614132404327,-0.0490237362682819,-0.334278702735901,-0.935530602931976,-0.114194087684155,-0.293177664279938,-0.930998861789703,-0.217458173632622,-0.695606052875519,-0.718350946903229,-0.0102119604125619,-0.788501858711243,-0.607093632221222,-0.0984992235898972,-0.700586318969727,-0.685587167739868,-0.197861030697823,-0.647769927978516,-0.754077017307281,-0.10845335572958, +-0.700586318969727,-0.685587167739868,-0.197861030697823,-0.544152975082397,-0.80287778377533,-0.24348446726799,-0.512630820274353,-0.854865789413452,-0.0800892859697342,-0.647769927978516,-0.754077017307281,-0.10845335572958,-0.956802129745483,-0.280661016702652,0.0758890435099602,-0.983850181102753,-0.178102403879166,-0.0178399439901114,-0.973286867141724,-0.221124991774559,-0.0617776997387409,-0.945519030094147,-0.324195951223373,0.0298469588160515,-0.973286867141724,-0.221124991774559,-0.0617776997387409,-0.953888297080994,-0.275172472000122,-0.119905568659306,-0.925055146217346,-0.378652065992355,-0.0299268048256636,-0.945519030094147,-0.324195951223373,0.0298469588160515,-0.925055146217346,-0.378652065992355,-0.0299268048256636,-0.865404486656189,-0.496753394603729,0.0656585171818733,-0.888130605220795,-0.441388487815857,0.128063306212425,-0.945519030094147,-0.324195951223373,0.0298469588160515,-0.920559585094452,-0.339928418397903,-0.192402347922325,-0.866479098796844,-0.414779752492905,-0.277797967195511,-0.837166488170624,-0.513893663883209,-0.187258139252663,-0.890910863876343,-0.442317843437195,-0.103114932775497,-0.837166488170624,-0.513893663883209,-0.187258139252663,-0.788501858711243,-0.607093632221222,-0.0984992235898972,-0.833089351654053,-0.553030490875244,-0.0109364287927747,-0.890910863876343,-0.442317843437195,-0.103114932775497,-0.833089351654053,-0.553030490875244,-0.0109364287927747,-0.865404486656189,-0.496753394603729,0.0656585171818733,-0.925055146217346,-0.378652065992355,-0.0299268048256636,-0.890910863876343,-0.442317843437195,-0.103114932775497,-0.400152415037155,-0.687723815441132,-0.605734169483185,-0.0678511410951614,-0.739228129386902,-0.670028269290924,-0.0702178627252579,-0.847246050834656,-0.526539266109467,-0.396194517612457,-0.791935443878174,-0.464616298675537,-0.0702178627252579,-0.847246050834656,-0.526539266109467,-0.0667620152235031,-0.915767788887024,-0.396121501922607,-0.374990254640579,-0.863838016986847,-0.336401879787445,-0.396194517612457,-0.791935443878174,-0.464616298675537, +-0.374990254640579,-0.863838016986847,-0.336401879787445,-0.544152975082397,-0.80287778377533,-0.24348446726799,-0.605347037315369,-0.704193532466888,-0.371034294366837,-0.396194517612457,-0.791935443878174,-0.464616298675537,-0.778698265552521,-0.501136600971222,-0.377479910850525,-0.631274878978729,-0.598335206508636,-0.49344402551651,-0.605347037315369,-0.704193532466888,-0.371034294366837,-0.745829582214355,-0.604467272758484,-0.279924243688583,-0.605347037315369,-0.704193532466888,-0.371034294366837,-0.544152975082397,-0.80287778377533,-0.24348446726799,-0.700586318969727,-0.685587167739868,-0.197861030697823,-0.745829582214355,-0.604467272758484,-0.279924243688583,-0.700586318969727,-0.685587167739868,-0.197861030697823,-0.788501858711243,-0.607093632221222,-0.0984992235898972,-0.837166488170624,-0.513893663883209,-0.187258139252663,-0.745829582214355,-0.604467272758484,-0.279924243688583,-0.638168394565582,-0.47601592540741,-0.605103194713593,-0.629420757293701,-0.332538932561874,-0.70231568813324,-0.394735366106033,-0.366298317909241,-0.842620611190796,-0.401973038911819,-0.547979950904846,-0.733577370643616,-0.394735366106033,-0.366298317909241,-0.842620611190796,-0.0661618560552597,-0.39223250746727,-0.917483627796173,-0.0822427347302437,-0.58773797750473,-0.804860353469849,-0.401973038911819,-0.547979950904846,-0.733577370643616,-0.0822427347302437,-0.58773797750473,-0.804860353469849,-0.0678511410951614,-0.739228129386902,-0.670028269290924,-0.400152415037155,-0.687723815441132,-0.605734169483185,-0.401973038911819,-0.547979950904846,-0.733577370643616,-0.875931262969971,-0.31125408411026,-0.368599116802216,-0.866147041320801,-0.205035403370857,-0.455795735120773,-0.782234668731689,-0.286267697811127,-0.553317070007324,-0.788633763790131,-0.393670439720154,-0.472313970327377,-0.782234668731689,-0.286267697811127,-0.553317070007324,-0.629420757293701,-0.332538932561874,-0.70231568813324,-0.638168394565582,-0.47601592540741,-0.605103194713593,-0.788633763790131,-0.393670439720154,-0.472313970327377,-0.638168394565582,-0.47601592540741,-0.605103194713593, +-0.631274878978729,-0.598335206508636,-0.49344402551651,-0.778698265552521,-0.501136600971222,-0.377479910850525,-0.788633763790131,-0.393670439720154,-0.472313970327377,-0.961324334144592,-0.17606694996357,-0.211792603135109,-0.947341620922089,-0.0733454823493958,-0.311712026596069,-0.914075314998627,-0.135149702429771,-0.382362097501755,-0.92849338054657,-0.238844394683838,-0.284347474575043,-0.914075314998627,-0.135149702429771,-0.382362097501755,-0.866147041320801,-0.205035403370857,-0.455795735120773,-0.875931262969971,-0.31125408411026,-0.368599116802216,-0.92849338054657,-0.238844394683838,-0.284347474575043,-0.875931262969971,-0.31125408411026,-0.368599116802216,-0.866479098796844,-0.414779752492905,-0.277797967195511,-0.920559585094452,-0.339928418397903,-0.192402347922325,-0.92849338054657,-0.238844394683838,-0.284347474575043,-0.990748226642609,-0.0780424028635025,-0.111029163002968,-0.977281033992767,0.0271883998066187,-0.210196599364281,-0.967174530029297,-0.0185623653233051,-0.253434419631958,-0.980478703975677,-0.122301861643791,-0.153960078954697,-0.967174530029297,-0.0185623653233051,-0.253434419631958,-0.947341620922089,-0.0733454823493958,-0.311712026596069,-0.961324334144592,-0.17606694996357,-0.211792603135109,-0.980478703975677,-0.122301861643791,-0.153960078954697,-0.961324334144592,-0.17606694996357,-0.211792603135109,-0.953888297080994,-0.275172472000122,-0.119905568659306,-0.973286867141724,-0.221124991774559,-0.0617776997387409,-0.980478703975677,-0.122301861643791,-0.153960078954697,-0.782234668731689,-0.286267697811127,-0.553317070007324,-0.866147041320801,-0.205035403370857,-0.455795735120773,-0.816720068454742,-0.0855849757790565,-0.570651888847351,-0.763396441936493,-0.160517960786819,-0.625667572021484,-0.816720068454742,-0.0855849757790565,-0.570651888847351,-0.661569893360138,0.0201353374868631,-0.749613106250763,-0.628256678581238,-0.138301104307175,-0.765615046024323,-0.763396441936493,-0.160517960786819,-0.625667572021484,-0.909272015094757,0.0326755084097385,-0.414917856454849, +-0.847818672657013,0.138061881065369,-0.511998414993286,-0.8043452501297,0.0609062053263187,-0.591032326221466,-0.869150757789612,-0.0299046225845814,-0.493642181158066,-0.8043452501297,0.0609062053263187,-0.591032326221466,-0.661569893360138,0.0201353374868631,-0.749613106250763,-0.816720068454742,-0.0855849757790565,-0.570651888847351,-0.869150757789612,-0.0299046225845814,-0.493642181158066,-0.816720068454742,-0.0855849757790565,-0.570651888847351,-0.866147041320801,-0.205035403370857,-0.455795735120773,-0.914075314998627,-0.135149702429771,-0.382362097501755,-0.869150757789612,-0.0299046225845814,-0.493642181158066,-0.065839059650898,-0.169280424714088,-0.983366370201111,-0.0661618560552597,-0.39223250746727,-0.917483627796173,-0.394735366106033,-0.366298317909241,-0.842620611190796,-0.40859442949295,-0.157618537545204,-0.899003386497498,-0.394735366106033,-0.366298317909241,-0.842620611190796,-0.629420757293701,-0.332538932561874,-0.70231568813324,-0.628256678581238,-0.138301104307175,-0.765615046024323,-0.40859442949295,-0.157618537545204,-0.899003386497498,-0.628256678581238,-0.138301104307175,-0.765615046024323,-0.661569893360138,0.0201353374868631,-0.749613106250763,-0.41613957285881,0.0419657006859779,-0.90833181142807,-0.40859442949295,-0.157618537545204,-0.899003386497498,-0.938004910945892,0.14006245136261,-0.317063719034195,-0.863399267196655,0.260428249835968,-0.432109832763672,-0.859212517738342,0.205861687660217,-0.468374669551849,-0.92887669801712,0.0914371535181999,-0.358925104141235,-0.859212517738342,0.205861687660217,-0.468374669551849,-0.847818672657013,0.138061881065369,-0.511998414993286,-0.909272015094757,0.0326755084097385,-0.414917856454849,-0.92887669801712,0.0914371535181999,-0.358925104141235,-0.909272015094757,0.0326755084097385,-0.414917856454849,-0.947341620922089,-0.0733454823493958,-0.311712026596069,-0.967174530029297,-0.0185623653233051,-0.253434419631958,-0.92887669801712,0.0914371535181999,-0.358925104141235,-0.8043452501297,0.0609062053263187,-0.591032326221466,-0.847818672657013,0.138061881065369,-0.511998414993286, +-0.740345895290375,0.252019047737122,-0.623196959495544,-0.733134627342224,0.161153227090836,-0.660714149475098,-0.740345895290375,0.252019047737122,-0.623196959495544,-0.568587303161621,0.33154821395874,-0.752850830554962,-0.596891403198242,0.180430397391319,-0.781770765781403,-0.733134627342224,0.161153227090836,-0.660714149475098,-0.347009032964706,0.385352730751038,-0.855036914348602,0.00743910996243358,0.420722603797913,-0.907158851623535,-0.0163988918066025,0.262881547212601,-0.964688718318939,-0.384987145662308,0.223548591136932,-0.895438969135284,-0.0163988918066025,0.262881547212601,-0.964688718318939,-0.0484075509011745,0.0602639466524124,-0.997007966041565,-0.41613957285881,0.0419657006859779,-0.90833181142807,-0.384987145662308,0.223548591136932,-0.895438969135284,-0.41613957285881,0.0419657006859779,-0.90833181142807,-0.661569893360138,0.0201353374868631,-0.749613106250763,-0.596891403198242,0.180430397391319,-0.781770765781403,-0.384987145662308,0.223548591136932,-0.895438969135284,-0.739391386508942,0.382856816053391,-0.553824007511139,-0.557148396968842,0.490728050470352,-0.669904172420502,-0.56454610824585,0.42419445514679,-0.708058416843414,-0.742297172546387,0.322826385498047,-0.587178111076355,-0.56454610824585,0.42419445514679,-0.708058416843414,-0.568587303161621,0.33154821395874,-0.752850830554962,-0.740345895290375,0.252019047737122,-0.623196959495544,-0.742297172546387,0.322826385498047,-0.587178111076355,-0.740345895290375,0.252019047737122,-0.623196959495544,-0.847818672657013,0.138061881065369,-0.511998414993286,-0.859212517738342,0.205861687660217,-0.468374669551849,-0.742297172546387,0.322826385498047,-0.587178111076355,-0.989149510860443,-0.146321251988411,0.0131673207506537,-0.991647839546204,-0.124756805598736,0.0327131561934948,-0.997835218906403,-0.0208042021840811,-0.0623857490718365,-0.995709240436554,-0.0445203334093094,-0.0811235532164574,-0.997835218906403,-0.0208042021840811,-0.0623857490718365,-0.98273116350174,0.0887448042631149,-0.162369802594185,-0.981551468372345,0.0625409483909607,-0.180680483579636, +-0.995709240436554,-0.0445203334093094,-0.0811235532164574,-0.981551468372345,0.0625409483909607,-0.180680483579636,-0.977281033992767,0.0271883998066187,-0.210196599364281,-0.990748226642609,-0.0780424028635025,-0.111029163002968,-0.995709240436554,-0.0445203334093094,-0.0811235532164574,-0.940521359443665,0.205805152654648,-0.270303100347519,-0.860428273677826,0.330504655838013,-0.387853056192398,-0.86287933588028,0.301325142383575,-0.405761450529099,-0.940893232822418,0.177625581622124,-0.28839048743248,-0.86287933588028,0.301325142383575,-0.405761450529099,-0.863399267196655,0.260428249835968,-0.432109832763672,-0.938004910945892,0.14006245136261,-0.317063719034195,-0.940893232822418,0.177625581622124,-0.28839048743248,-0.938004910945892,0.14006245136261,-0.317063719034195,-0.977281033992767,0.0271883998066187,-0.210196599364281,-0.981551468372345,0.0625409483909607,-0.180680483579636,-0.940893232822418,0.177625581622124,-0.28839048743248,-0.993054449558258,-0.108172722160816,0.04627750441432,-0.994104743003845,-0.0917158871889114,0.0578270591795444,-0.998907387256622,0.021197471767664,-0.0416503362357616,-0.998736917972565,-0.000725583580788225,-0.050238449126482,-0.998907387256622,0.021197471767664,-0.0416503362357616,-0.980365514755249,0.13736529648304,-0.14147113263607,-0.982308149337769,0.11190277338028,-0.15016171336174,-0.998736917972565,-0.000725583580788225,-0.050238449126482,-0.982308149337769,0.11190277338028,-0.15016171336174,-0.98273116350174,0.0887448042631149,-0.162369802594185,-0.997835218906403,-0.0208042021840811,-0.0623857490718365,-0.998736917972565,-0.000725583580788225,-0.050238449126482,-0.729781031608582,0.455140769481659,-0.510163366794586,-0.542525708675385,0.564268171787262,-0.622307896614075,-0.54832524061203,0.534896612167358,-0.642825782299042,-0.734147310256958,0.425860911607742,-0.528838396072388,-0.54832524061203,0.534896612167358,-0.642825782299042,-0.557148396968842,0.490728050470352,-0.669904172420502,-0.739391386508942,0.382856816053391,-0.553824007511139,-0.734147310256958,0.425860911607742,-0.528838396072388, +-0.739391386508942,0.382856816053391,-0.553824007511139,-0.863399267196655,0.260428249835968,-0.432109832763672,-0.86287933588028,0.301325142383575,-0.405761450529099,-0.734147310256958,0.425860911607742,-0.528838396072388,-0.856965243816376,0.355741500854492,-0.372905433177948,-0.860428273677826,0.330504655838013,-0.387853056192398,-0.940521359443665,0.205805152654648,-0.270303100347519,-0.938315212726593,0.231052547693253,-0.257253170013428,-0.940521359443665,0.205805152654648,-0.270303100347519,-0.98273116350174,0.0887448042631149,-0.162369802594185,-0.982308149337769,0.11190277338028,-0.15016171336174,-0.938315212726593,0.231052547693253,-0.257253170013428,-0.982308149337769,0.11190277338028,-0.15016171336174,-0.980365514755249,0.13736529648304,-0.14147113263607,-0.934222996234894,0.258060097694397,-0.246236518025398,-0.938315212726593,0.231052547693253,-0.257253170013428,-0.9949871301651,-0.0745253637433052,0.0666825249791145,-0.99565178155899,-0.0596222244203091,0.0715730264782906,-0.996524572372437,0.0721109509468079,-0.0416980572044849,-0.998242735862732,0.0461795851588249,-0.0371325463056564,-0.996524572372437,0.0721109509468079,-0.0416980572044849,-0.968461751937866,0.203230634331703,-0.144149765372276,-0.976334750652313,0.167396575212479,-0.136926084756851,-0.998242735862732,0.0461795851588249,-0.0371325463056564,-0.976334750652313,0.167396575212479,-0.136926084756851,-0.980365514755249,0.13736529648304,-0.14147113263607,-0.998907387256622,0.021197471767664,-0.0416503362357616,-0.998242735862732,0.0461795851588249,-0.0371325463056564,-0.845332860946655,0.409606158733368,-0.3429796397686,-0.852206945419312,0.381751418113708,-0.357783615589142,-0.934222996234894,0.258060097694397,-0.246236518025398,-0.927215158939362,0.289327770471573,-0.237826690077782,-0.934222996234894,0.258060097694397,-0.246236518025398,-0.980365514755249,0.13736529648304,-0.14147113263607,-0.976334750652313,0.167396575212479,-0.136926084756851,-0.927215158939362,0.289327770471573,-0.237826690077782,-0.976334750652313,0.167396575212479,-0.136926084756851, +-0.968461751937866,0.203230634331703,-0.144149765372276,-0.912956893444061,0.329765617847443,-0.240342020988464,-0.927215158939362,0.289327770471573,-0.237826690077782,-0.877688050270081,0.354772627353668,-0.322179943323135,-0.75459223985672,0.465805470943451,-0.462185889482498,-0.795826196670532,0.479936748743057,-0.369217097759247,-0.891241312026978,0.359081506729126,-0.277036875486374,-0.795826196670532,0.479936748743057,-0.369217097759247,-0.828931033611298,0.447074711322784,-0.336150825023651,-0.912956893444061,0.329765617847443,-0.240342020988464,-0.891241312026978,0.359081506729126,-0.277036875486374,-0.912956893444061,0.329765617847443,-0.240342020988464,-0.968461751937866,0.203230634331703,-0.144149765372276,-0.958378195762634,0.224283918738365,-0.176657557487488,-0.891241312026978,0.359081506729126,-0.277036875486374,-0.539805889129639,0.629762709140778,-0.558577299118042,-0.541990160942078,0.607744693756104,-0.580424785614014,-0.724305272102356,0.501894235610962,-0.472740918397903,-0.721315026283264,0.524516761302948,-0.452312558889389,-0.724305272102356,0.501894235610962,-0.472740918397903,-0.852206945419312,0.381751418113708,-0.357783615589142,-0.845332860946655,0.409606158733368,-0.3429796397686,-0.721315026283264,0.524516761302948,-0.452312558889389,-0.845332860946655,0.409606158733368,-0.3429796397686,-0.828931033611298,0.447074711322784,-0.336150825023651,-0.70813649892807,0.554532825946808,-0.437076717615128,-0.721315026283264,0.524516761302948,-0.452312558889389,-0.505238831043243,0.675825715065002,-0.536649942398071,-0.52993381023407,0.651089191436768,-0.543371915817261,-0.70813649892807,0.554532825946808,-0.437076717615128,-0.67509138584137,0.585452139377594,-0.448884546756744,-0.70813649892807,0.554532825946808,-0.437076717615128,-0.828931033611298,0.447074711322784,-0.336150825023651,-0.795826196670532,0.479936748743057,-0.369217097759247,-0.67509138584137,0.585452139377594,-0.448884546756744,-0.795826196670532,0.479936748743057,-0.369217097759247,-0.75459223985672,0.465805470943451,-0.462185889482498, +-0.633333444595337,0.596296787261963,-0.493273705244064,-0.67509138584137,0.585452139377594,-0.448884546756744,-0.459563702344894,0.60136467218399,-0.653576135635376,-0.349969118833542,0.693596959114075,-0.629638671875,-0.388163506984711,0.706084787845612,-0.5922611951828,-0.545239269733429,0.599458873271942,-0.58597207069397,-0.388163506984711,0.706084787845612,-0.5922611951828,-0.460189014673233,0.699367642402649,-0.546910464763641,-0.633333444595337,0.596296787261963,-0.493273705244064,-0.545239269733429,0.599458873271942,-0.58597207069397,-0.633333444595337,0.596296787261963,-0.493273705244064,-0.75459223985672,0.465805470943451,-0.462185889482498,-0.641277730464935,0.478990405797958,-0.599442362785339,-0.545239269733429,0.599458873271942,-0.58597207069397,-0.0795465558767319,0.77655154466629,-0.625012099742889,-0.0357578098773956,0.76894199848175,-0.638317823410034,-0.260280877351761,0.758383214473724,-0.597585797309875,-0.22768472135067,0.76591944694519,-0.601271331310272,-0.260280877351761,0.758383214473724,-0.597585797309875,-0.460189014673233,0.699367642402649,-0.546910464763641,-0.388163506984711,0.706084787845612,-0.5922611951828,-0.22768472135067,0.76591944694519,-0.601271331310272,-0.388163506984711,0.706084787845612,-0.5922611951828,-0.349969118833542,0.693596959114075,-0.629638671875,-0.220906391739845,0.756116092205048,-0.616026639938354,-0.22768472135067,0.76591944694519,-0.601271331310272,-0.0307104624807835,0.75297075510025,-0.657337009906769,-0.0314253121614456,0.740115284919739,-0.671745240688324,-0.311585962772369,0.715845346450806,-0.624883592128754,-0.291860163211823,0.73228508234024,-0.615285456180573,-0.311585962772369,0.715845346450806,-0.624883592128754,-0.52993381023407,0.651089191436768,-0.543371915817261,-0.505238831043243,0.675825715065002,-0.536649942398071,-0.291860163211823,0.73228508234024,-0.615285456180573,-0.505238831043243,0.675825715065002,-0.536649942398071,-0.460189014673233,0.699367642402649,-0.546910464763641,-0.260280877351761,0.758383214473724,-0.597585797309875,-0.291860163211823,0.73228508234024,-0.615285456180573, +0.144442215561867,0.660929799079895,-0.736415863037109,0.319821774959564,0.647119700908661,-0.692062139511108,0.180763810873032,0.72567230463028,-0.663870573043823,0.0550066195428371,0.736840128898621,-0.673825621604919,0.180763810873032,0.72567230463028,-0.663870573043823,-0.0357578098773956,0.76894199848175,-0.638317823410034,-0.0795465558767319,0.77655154466629,-0.625012099742889,0.0550066195428371,0.736840128898621,-0.673825621604919,-0.0795465558767319,0.77655154466629,-0.625012099742889,-0.115637436509132,0.77402126789093,-0.622510373592377,-0.0250113755464554,0.748670041561127,-0.662470817565918,0.0550066195428371,0.736840128898621,-0.673825621604919,-0.540794372558594,0.587496161460876,-0.601988136768341,-0.542525708675385,0.564268171787262,-0.622307896614075,-0.729781031608582,0.455140769481659,-0.510163366794586,-0.726764261722565,0.47911348938942,-0.492203205823898,-0.729781031608582,0.455140769481659,-0.510163366794586,-0.860428273677826,0.330504655838013,-0.387853056192398,-0.856965243816376,0.355741500854492,-0.372905433177948,-0.726764261722565,0.47911348938942,-0.492203205823898,-0.856965243816376,0.355741500854492,-0.372905433177948,-0.852206945419312,0.381751418113708,-0.357783615589142,-0.724305272102356,0.501894235610962,-0.472740918397903,-0.726764261722565,0.47911348938942,-0.492203205823898,-0.00808387249708176,0.725178480148315,-0.688513457775116,0.0184824634343386,0.708283364772797,-0.705686330795288,-0.310115963220596,0.681994259357452,-0.66235339641571,-0.314248591661453,0.701721489429474,-0.639401793479919,-0.310115963220596,0.681994259357452,-0.66235339641571,-0.541990160942078,0.607744693756104,-0.580424785614014,-0.539805889129639,0.629762709140778,-0.558577299118042,-0.314248591661453,0.701721489429474,-0.639401793479919,-0.539805889129639,0.629762709140778,-0.558577299118042,-0.52993381023407,0.651089191436768,-0.543371915817261,-0.311585962772369,0.715845346450806,-0.624883592128754,-0.314248591661453,0.701721489429474,-0.639401793479919,0.344202011823654,0.34568202495575,-0.872942626476288, +0.662346959114075,0.265413999557495,-0.700608372688293,0.519887566566467,0.487423866987228,-0.701523303985596,0.268036276102066,0.528617739677429,-0.805431485176086,0.519887566566467,0.487423866987228,-0.701523303985596,0.319821774959564,0.647119700908661,-0.692062139511108,0.144442215561867,0.660929799079895,-0.736415863037109,0.268036276102066,0.528617739677429,-0.805431485176086,0.144442215561867,0.660929799079895,-0.736415863037109,0.0437612980604172,0.678988218307495,-0.732843637466431,0.0950279459357262,0.566763937473297,-0.818381488323212,0.268036276102066,0.528617739677429,-0.805431485176086,0.180763810873032,0.72567230463028,-0.663870573043823,0.319821774959564,0.647119700908661,-0.692062139511108,0.442819863557816,0.640554368495941,-0.627376019954681,0.24555167555809,0.718372702598572,-0.65088027715683,0.442819863557816,0.640554368495941,-0.627376019954681,0.505576550960541,0.622995376586914,-0.59688276052475,0.27808889746666,0.700193583965302,-0.657567918300629,0.24555167555809,0.718372702598572,-0.65088027715683,0.27808889746666,0.700193583965302,-0.657567918300629,-0.0314253121614456,0.740115284919739,-0.671745240688324,-0.0307104624807835,0.75297075510025,-0.657337009906769,0.24555167555809,0.718372702598572,-0.65088027715683,0.702799260616302,0.502638638019562,-0.503415942192078,0.505576550960541,0.622995376586914,-0.59688276052475,0.442819863557816,0.640554368495941,-0.627376019954681,0.643880009651184,0.496044665575027,-0.582544684410095,0.442819863557816,0.640554368495941,-0.627376019954681,0.319821774959564,0.647119700908661,-0.692062139511108,0.519887566566467,0.487423866987228,-0.701523303985596,0.643880009651184,0.496044665575027,-0.582544684410095,0.519887566566467,0.487423866987228,-0.701523303985596,0.662346959114075,0.265413999557495,-0.700608372688293,0.815179169178009,0.327907055616379,-0.477451324462891,0.643880009651184,0.496044665575027,-0.582544684410095,0.55413693189621,0.0203293543308973,-0.832177221775055,0.662346959114075,0.265413999557495,-0.700608372688293,0.344202011823654,0.34568202495575,-0.872942626476288, +0.326417058706284,0.132676780223846,-0.935867965221405,0.344202011823654,0.34568202495575,-0.872942626476288,0.153429746627808,0.393673956394196,-0.906355440616608,0.194646328687668,0.190210491418839,-0.962253987789154,0.326417058706284,0.132676780223846,-0.935867965221405,0.82921302318573,0.381767570972443,-0.408239215612411,0.712010860443115,0.476883143186569,-0.515386283397675,0.578065931797028,0.571437776088715,-0.582493543624878,0.724821329116821,0.488296389579773,-0.486004918813705,0.578065931797028,0.571437776088715,-0.582493543624878,0.505576550960541,0.622995376586914,-0.59688276052475,0.702799260616302,0.502638638019562,-0.503415942192078,0.724821329116821,0.488296389579773,-0.486004918813705,0.402748733758926,0.637026369571686,-0.657260119915009,0.0184824634343386,0.708283364772797,-0.705686330795288,-0.00808387249708176,0.725178480148315,-0.688513457775116,0.340203762054443,0.666487574577332,-0.663367033004761,-0.00808387249708176,0.725178480148315,-0.688513457775116,-0.0314253121614456,0.740115284919739,-0.671745240688324,0.27808889746666,0.700193583965302,-0.657567918300629,0.340203762054443,0.666487574577332,-0.663367033004761,0.27808889746666,0.700193583965302,-0.657567918300629,0.505576550960541,0.622995376586914,-0.59688276052475,0.578065931797028,0.571437776088715,-0.582493543624878,0.340203762054443,0.666487574577332,-0.663367033004761,-0.307068884372711,0.640687108039856,-0.70372486114502,-0.542525708675385,0.564268171787262,-0.622307896614075,-0.540794372558594,0.587496161460876,-0.601988136768341,-0.30626368522644,0.663350820541382,-0.682765126228333,-0.540794372558594,0.587496161460876,-0.601988136768341,-0.541990160942078,0.607744693756104,-0.580424785614014,-0.310115963220596,0.681994259357452,-0.66235339641571,-0.30626368522644,0.663350820541382,-0.682765126228333,-0.310115963220596,0.681994259357452,-0.66235339641571,0.0184824634343386,0.708283364772797,-0.705686330795288,0.031445074826479,0.692114651203156,-0.721102297306061,-0.30626368522644,0.663350820541382,-0.682765126228333,0.402748733758926,0.637026369571686,-0.657260119915009, +0.712010860443115,0.476883143186569,-0.515386283397675,0.710680544376373,0.472971141338348,-0.520798861980438,0.417861670255661,0.622977912425995,-0.661279141902924,0.710680544376373,0.472971141338348,-0.520798861980438,0.704759240150452,0.46142104268074,-0.538892507553101,0.408084839582443,0.607455313205719,-0.681516528129578,0.417861670255661,0.622977912425995,-0.661279141902924,0.408084839582443,0.607455313205719,-0.681516528129578,0.0308283176273108,0.671379864215851,-0.740471959114075,0.031445074826479,0.692114651203156,-0.721102297306061,0.417861670255661,0.622977912425995,-0.661279141902924,-0.323251366615295,0.567481517791748,-0.757280111312866,-0.557148396968842,0.490728050470352,-0.669904172420502,-0.54832524061203,0.534896612167358,-0.642825782299042,-0.314257025718689,0.611471712589264,-0.726185083389282,-0.54832524061203,0.534896612167358,-0.642825782299042,-0.542525708675385,0.564268171787262,-0.622307896614075,-0.307068884372711,0.640687108039856,-0.70372486114502,-0.314257025718689,0.611471712589264,-0.726185083389282,-0.307068884372711,0.640687108039856,-0.70372486114502,0.0308283176273108,0.671379864215851,-0.740471959114075,0.0245080851018429,0.6442911028862,-0.764387547969818,-0.314257025718689,0.611471712589264,-0.726185083389282,0.703362822532654,0.444451689720154,-0.554746329784393,0.708066642284393,0.415171891450882,-0.571203947067261,0.409163266420364,0.548035204410553,-0.729549765586853,0.405181586742401,0.584523916244507,-0.702964842319489,0.409163266420364,0.548035204410553,-0.729549765586853,0.0187439396977425,0.60321980714798,-0.797354698181152,0.0245080851018429,0.6442911028862,-0.764387547969818,0.405181586742401,0.584523916244507,-0.702964842319489,0.0245080851018429,0.6442911028862,-0.764387547969818,0.0308283176273108,0.671379864215851,-0.740471959114075,0.408084839582443,0.607455313205719,-0.681516528129578,0.405181586742401,0.584523916244507,-0.702964842319489,-0.347009032964706,0.385352730751038,-0.855036914348602,-0.568587303161621,0.33154821395874,-0.752850830554962,-0.56454610824585,0.42419445514679,-0.708058416843414, +-0.333843857049942,0.495575547218323,-0.801843643188477,-0.56454610824585,0.42419445514679,-0.708058416843414,-0.557148396968842,0.490728050470352,-0.669904172420502,-0.323251366615295,0.567481517791748,-0.757280111312866,-0.333843857049942,0.495575547218323,-0.801843643188477,-0.323251366615295,0.567481517791748,-0.757280111312866,0.0187439396977425,0.60321980714798,-0.797354698181152,0.0166043043136597,0.532554149627686,-0.846233069896698,-0.333843857049942,0.495575547218323,-0.801843643188477,0.717322528362274,0.368334293365479,-0.591420471668243,0.724259257316589,0.296608775854111,-0.622472167015076,0.421808570623398,0.389350265264511,-0.818830847740173,0.415800839662552,0.486775308847427,-0.768218398094177,0.421808570623398,0.389350265264511,-0.818830847740173,0.00743910996243358,0.420722603797913,-0.907158851623535,0.0166043043136597,0.532554149627686,-0.846233069896698,0.415800839662552,0.486775308847427,-0.768218398094177,0.0166043043136597,0.532554149627686,-0.846233069896698,0.0187439396977425,0.60321980714798,-0.797354698181152,0.409163266420364,0.548035204410553,-0.729549765586853,0.415800839662552,0.486775308847427,-0.768218398094177,0.716886222362518,0.19342452287674,-0.669821739196777,0.69100683927536,0.0536952428519726,-0.720851123332977,0.375412613153458,0.0646026879549026,-0.924603581428528,0.406555354595184,0.250838607549667,-0.87851744890213,0.375412613153458,0.0646026879549026,-0.924603581428528,-0.0484075509011745,0.0602639466524124,-0.997007966041565,-0.0163988918066025,0.262881547212601,-0.964688718318939,0.406555354595184,0.250838607549667,-0.87851744890213,-0.0163988918066025,0.262881547212601,-0.964688718318939,0.00743910996243358,0.420722603797913,-0.907158851623535,0.421808570623398,0.389350265264511,-0.818830847740173,0.406555354595184,0.250838607549667,-0.87851744890213,0.658147633075714,-0.119798302650452,-0.74329686164856,0.622326195240021,-0.297920882701874,-0.723846018314362,0.311914294958115,-0.365304380655289,-0.877075970172882,0.341656982898712,-0.153093352913857,-0.927271723747253, +0.311914294958115,-0.365304380655289,-0.877075970172882,-0.0661618560552597,-0.39223250746727,-0.917483627796173,-0.065839059650898,-0.169280424714088,-0.983366370201111,0.341656982898712,-0.153093352913857,-0.927271723747253,-0.065839059650898,-0.169280424714088,-0.983366370201111,-0.0484075509011745,0.0602639466524124,-0.997007966041565,0.375412613153458,0.0646026879549026,-0.924603581428528,0.341656982898712,-0.153093352913857,-0.927271723747253,0.87320077419281,0.272477954626083,-0.404074370861053,0.941397607326508,0.172344699501991,-0.289944410324097,0.94064325094223,0.156117379665375,-0.301359713077545,0.87654584646225,0.242555424571037,-0.415733397006989,0.94064325094223,0.156117379665375,-0.301359713077545,0.93992817401886,0.129182159900665,-0.315985649824142,0.879666686058044,0.196901902556419,-0.432915955781937,0.87654584646225,0.242555424571037,-0.415733397006989,0.879666686058044,0.196901902556419,-0.432915955781937,0.724259257316589,0.296608775854111,-0.622472167015076,0.717322528362274,0.368334293365479,-0.591420471668243,0.87654584646225,0.242555424571037,-0.415733397006989,0.879666686058044,0.196901902556419,-0.432915955781937,0.93992817401886,0.129182159900665,-0.315985649824142,0.937841773033142,0.0865906700491905,-0.336087554693222,0.877733767032623,0.130271941423416,-0.461099177598953,0.937841773033142,0.0865906700491905,-0.336087554693222,0.933542013168335,0.0222892314195633,-0.357774376869202,0.867423534393311,0.0367086604237556,-0.49621456861496,0.877733767032623,0.130271941423416,-0.461099177598953,0.867423534393311,0.0367086604237556,-0.49621456861496,0.69100683927536,0.0536952428519726,-0.720851123332977,0.716886222362518,0.19342452287674,-0.669821739196777,0.877733767032623,0.130271941423416,-0.461099177598953,0.929832100868225,-0.0626984909176826,-0.362603187561035,0.924772620201111,-0.152743086218834,-0.348518580198288,0.835046827793121,-0.209875002503395,-0.508575737476349,0.85275799036026,-0.0831256881356239,-0.515649080276489,0.835046827793121,-0.209875002503395,-0.508575737476349,0.622326195240021,-0.297920882701874,-0.723846018314362, +0.658147633075714,-0.119798302650452,-0.74329686164856,0.85275799036026,-0.0831256881356239,-0.515649080276489,0.658147633075714,-0.119798302650452,-0.74329686164856,0.69100683927536,0.0536952428519726,-0.720851123332977,0.867423534393311,0.0367086604237556,-0.49621456861496,0.85275799036026,-0.0831256881356239,-0.515649080276489,0.267184197902679,-0.707895040512085,-0.653832733631134,-0.0678511410951614,-0.739228129386902,-0.670028269290924,-0.0822427347302437,-0.58773797750473,-0.804860353469849,0.283675163984299,-0.557315945625305,-0.780337989330292,-0.0822427347302437,-0.58773797750473,-0.804860353469849,-0.0661618560552597,-0.39223250746727,-0.917483627796173,0.311914294958115,-0.365304380655289,-0.877075970172882,0.283675163984299,-0.557315945625305,-0.780337989330292,0.311914294958115,-0.365304380655289,-0.877075970172882,0.622326195240021,-0.297920882701874,-0.723846018314362,0.580948889255524,-0.464185386896133,-0.668603241443634,0.283675163984299,-0.557315945625305,-0.780337989330292,0.515997529029846,-0.734884083271027,-0.440104573965073,0.557763695716858,-0.791554510593414,-0.249681815505028,0.266666173934937,-0.890563130378723,-0.368492126464844,0.270238369703293,-0.824600338935852,-0.496996521949768,0.266666173934937,-0.890563130378723,-0.368492126464844,-0.0667620152235031,-0.915767788887024,-0.396121501922607,-0.0702178627252579,-0.847246050834656,-0.526539266109467,0.270238369703293,-0.824600338935852,-0.496996521949768,-0.0702178627252579,-0.847246050834656,-0.526539266109467,-0.0678511410951614,-0.739228129386902,-0.670028269290924,0.267184197902679,-0.707895040512085,-0.653832733631134,0.270238369703293,-0.824600338935852,-0.496996521949768,0.910716414451599,-0.251230716705322,-0.327839463949203,0.88285905122757,-0.366750359535217,-0.293349891901016,0.775141358375549,-0.450168758630753,-0.443287551403046,0.809317469596863,-0.334098696708679,-0.483097583055496,0.775141358375549,-0.450168758630753,-0.443287551403046,0.535547375679016,-0.610553622245789,-0.583449423313141,0.580948889255524,-0.464185386896133,-0.668603241443634, +0.809317469596863,-0.334098696708679,-0.483097583055496,0.580948889255524,-0.464185386896133,-0.668603241443634,0.622326195240021,-0.297920882701874,-0.723846018314362,0.835046827793121,-0.209875002503395,-0.508575737476349,0.809317469596863,-0.334098696708679,-0.483097583055496,0.266666173934937,-0.890563130378723,-0.368492126464844,0.557763695716858,-0.791554510593414,-0.249681815505028,0.310496389865875,-0.94143670797348,-0.13148720562458,0.196504652500153,-0.948624789714813,-0.24798546731472,0.310496389865875,-0.94143670797348,-0.13148720562458,-0.0191383771598339,-0.998614132404327,-0.0490237362682819,-0.0430955216288567,-0.975414991378784,-0.216121271252632,0.196504652500153,-0.948624789714813,-0.24798546731472,0.327003538608551,-0.932535529136658,0.153121173381805,0.0032900117803365,-0.978204190731049,0.207619369029999,-0.00594821013510227,-0.996839284896851,0.0792215764522552,0.321859061717987,-0.946779727935791,0.00383358867838979,-0.00594821013510227,-0.996839284896851,0.0792215764522552,-0.0191383771598339,-0.998614132404327,-0.0490237362682819,0.310496389865875,-0.94143670797348,-0.13148720562458,0.321859061717987,-0.946779727935791,0.00383358867838979,0.310496389865875,-0.94143670797348,-0.13148720562458,0.557763695716858,-0.791554510593414,-0.249681815505028,0.622719347476959,-0.778302907943726,-0.0804069116711617,0.321859061717987,-0.946779727935791,0.00383358867838979,0.775141358375549,-0.450168758630753,-0.443287551403046,0.88285905122757,-0.366750359535217,-0.293349891901016,0.787928283214569,-0.561853110790253,-0.251972734928131,0.727853417396545,-0.575738370418549,-0.372498035430908,0.787928283214569,-0.561853110790253,-0.251972734928131,0.557763695716858,-0.791554510593414,-0.249681815505028,0.515997529029846,-0.734884083271027,-0.440104573965073,0.727853417396545,-0.575738370418549,-0.372498035430908,0.979235649108887,-0.0511171035468578,-0.196174815297127,0.979972898960114,-0.10106598585844,-0.171577408909798,0.962187528610229,-0.122898414731026,-0.243086531758308,0.962269067764282,-0.0581863783299923,-0.265805602073669, +0.962187528610229,-0.122898414731026,-0.243086531758308,0.924772620201111,-0.152743086218834,-0.348518580198288,0.929832100868225,-0.0626984909176826,-0.362603187561035,0.962269067764282,-0.0581863783299923,-0.265805602073669,0.929832100868225,-0.0626984909176826,-0.362603187561035,0.933542013168335,0.0222892314195633,-0.357774376869202,0.961360931396484,0.00672401580959558,-0.275208622217178,0.962269067764282,-0.0581863783299923,-0.265805602073669,0.968387186527252,0.0771235972642899,-0.237230181694031,0.983104348182678,0.0312379077076912,-0.180360779166222,0.980257391929626,0.0154871298000216,-0.19711834192276,0.96515280008316,0.0525693036615849,-0.256352573633194,0.980257391929626,0.0154871298000216,-0.19711834192276,0.975808799266815,-0.00775296241044998,-0.218487828969955,0.961360931396484,0.00672401580959558,-0.275208622217178,0.96515280008316,0.0525693036615849,-0.256352573633194,0.961360931396484,0.00672401580959558,-0.275208622217178,0.933542013168335,0.0222892314195633,-0.357774376869202,0.937841773033142,0.0865906700491905,-0.336087554693222,0.96515280008316,0.0525693036615849,-0.256352573633194,0.973697662353516,-0.177088439464569,-0.143361389636993,0.948109090328217,-0.30205374956131,-0.099260188639164,0.924704492092133,-0.331576526165009,-0.187026098370552,0.953022718429565,-0.207311242818832,-0.220838904380798,0.924704492092133,-0.331576526165009,-0.187026098370552,0.88285905122757,-0.366750359535217,-0.293349891901016,0.910716414451599,-0.251230716705322,-0.327839463949203,0.953022718429565,-0.207311242818832,-0.220838904380798,0.910716414451599,-0.251230716705322,-0.327839463949203,0.924772620201111,-0.152743086218834,-0.348518580198288,0.962187528610229,-0.122898414731026,-0.243086531758308,0.953022718429565,-0.207311242818832,-0.220838904380798,0.862593591213226,-0.505231857299805,-0.0259439088404179,0.646524608135223,-0.759887337684631,0.0676536038517952,0.622719347476959,-0.778302907943726,-0.0804069116711617,0.832968294620514,-0.534917652606964,-0.141516238451004,0.622719347476959,-0.778302907943726,-0.0804069116711617, +0.557763695716858,-0.791554510593414,-0.249681815505028,0.787928283214569,-0.561853110790253,-0.251972734928131,0.832968294620514,-0.534917652606964,-0.141516238451004,0.787928283214569,-0.561853110790253,-0.251972734928131,0.88285905122757,-0.366750359535217,-0.293349891901016,0.924704492092133,-0.331576526165009,-0.187026098370552,0.832968294620514,-0.534917652606964,-0.141516238451004,0.988251149654388,-0.144524291157722,-0.0497227795422077,0.962441623210907,-0.270518362522125,0.022931631654501,0.959132373332977,-0.281309098005295,-0.0305031891912222,0.98369961977005,-0.156531617045403,-0.0885039940476418,0.959132373332977,-0.281309098005295,-0.0305031891912222,0.948109090328217,-0.30205374956131,-0.099260188639164,0.973697662353516,-0.177088439464569,-0.143361389636993,0.98369961977005,-0.156531617045403,-0.0885039940476418,0.973697662353516,-0.177088439464569,-0.143361389636993,0.979972898960114,-0.10106598585844,-0.171577408909798,0.988663077354431,-0.0825416594743729,-0.125427559018135,0.98369961977005,-0.156531617045403,-0.0885039940476418,0.980257391929626,0.0154871298000216,-0.19711834192276,0.983104348182678,0.0312379077076912,-0.180360779166222,0.990605771541595,-0.0153668718412519,-0.135882377624512,0.987172663211823,-0.030629700049758,-0.156690672039986,0.990605771541595,-0.0153668718412519,-0.135882377624512,0.992979645729065,-0.0694925785064697,-0.0957198068499565,0.988663077354431,-0.0825416594743729,-0.125427559018135,0.987172663211823,-0.030629700049758,-0.156690672039986,0.988663077354431,-0.0825416594743729,-0.125427559018135,0.979972898960114,-0.10106598585844,-0.171577408909798,0.979235649108887,-0.0511171035468578,-0.196174815297127,0.987172663211823,-0.030629700049758,-0.156690672039986,0.868027627468109,-0.475610047578812,0.142559140920639,0.643077611923218,-0.709992706775665,0.28698667883873,0.653223037719727,-0.733468294143677,0.187946632504463,0.871350526809692,-0.486143082380295,0.06643296033144,0.653223037719727,-0.733468294143677,0.187946632504463,0.646524608135223,-0.759887337684631,0.0676536038517952, +0.862593591213226,-0.505231857299805,-0.0259439088404179,0.871350526809692,-0.486143082380295,0.06643296033144,0.862593591213226,-0.505231857299805,-0.0259439088404179,0.948109090328217,-0.30205374956131,-0.099260188639164,0.959132373332977,-0.281309098005295,-0.0305031891912222,0.871350526809692,-0.486143082380295,0.06643296033144,0.318086206912994,-0.862951219081879,0.392602115869522,-0.020643625408411,-0.906076371669769,0.422610104084015,-0.00680821528658271,-0.946289122104645,0.323249936103821,0.338472336530685,-0.89722728729248,0.283583790063858,-0.00680821528658271,-0.946289122104645,0.323249936103821,0.0032900117803365,-0.978204190731049,0.207619369029999,0.327003538608551,-0.932535529136658,0.153121173381805,0.338472336530685,-0.89722728729248,0.283583790063858,0.327003538608551,-0.932535529136658,0.153121173381805,0.646524608135223,-0.759887337684631,0.0676536038517952,0.653223037719727,-0.733468294143677,0.187946632504463,0.338472336530685,-0.89722728729248,0.283583790063858,0.847881734371185,-0.468449234962463,0.248298078775406,0.590778768062592,-0.68641608953476,0.424044251441956,0.617829918861389,-0.696017622947693,0.365848988294601,0.859543204307556,-0.469230651855469,0.202504396438599,0.617829918861389,-0.696017622947693,0.365848988294601,0.643077611923218,-0.709992706775665,0.28698667883873,0.868027627468109,-0.475610047578812,0.142559140920639,0.859543204307556,-0.469230651855469,0.202504396438599,0.868027627468109,-0.475610047578812,0.142559140920639,0.962441623210907,-0.270518362522125,0.022931631654501,0.962232172489166,-0.265070527791977,0.0620224252343178,0.859543204307556,-0.469230651855469,0.202504396438599,0.99521666765213,-0.0610514506697655,-0.0762655958533287,0.996447503566742,-0.0553847625851631,-0.0634423643350601,0.991239905357361,-0.131942495703697,-0.00587241025641561,0.990276634693146,-0.137116029858589,-0.0234826114028692,0.991239905357361,-0.131942495703697,-0.00587241025641561,0.960773766040802,-0.262095540761948,0.0906627476215363,0.962232172489166,-0.265070527791977,0.0620224252343178, +0.990276634693146,-0.137116029858589,-0.0234826114028692,0.962232172489166,-0.265070527791977,0.0620224252343178,0.962441623210907,-0.270518362522125,0.022931631654501,0.988251149654388,-0.144524291157722,-0.0497227795422077,0.990276634693146,-0.137116029858589,-0.0234826114028692,0.244178459048271,-0.809648990631104,0.533709049224854,0.590778768062592,-0.68641608953476,0.424044251441956,0.56566846370697,-0.679015278816223,0.467928916215897,0.214072689414024,-0.789665460586548,0.574979424476624,0.56566846370697,-0.679015278816223,0.467928916215897,0.543036162853241,-0.671515345573425,0.504161715507507,0.194322034716606,-0.769234418869019,0.608701229095459,0.214072689414024,-0.789665460586548,0.574979424476624,0.194322034716606,-0.769234418869019,0.608701229095459,-0.138897895812988,-0.770571351051331,0.622034668922424,-0.121886551380157,-0.796136200428009,0.592714846134186,0.214072689414024,-0.789665460586548,0.574979424476624,0.617829918861389,-0.696017622947693,0.365848988294601,0.590778768062592,-0.68641608953476,0.424044251441956,0.244178459048271,-0.809648990631104,0.533709049224854,0.281205058097839,-0.834069311618805,0.474607169628143,0.244178459048271,-0.809648990631104,0.533709049224854,-0.0973174646496773,-0.826116681098938,0.555031955242157,-0.060223001986742,-0.864339351654053,0.499290138483047,0.281205058097839,-0.834069311618805,0.474607169628143,-0.060223001986742,-0.864339351654053,0.499290138483047,-0.020643625408411,-0.906076371669769,0.422610104084015,0.318086206912994,-0.862951219081879,0.392602115869522,0.281205058097839,-0.834069311618805,0.474607169628143,0.822050988674164,-0.471668422222137,0.319000035524368,0.543036162853241,-0.671515345573425,0.504161715507507,0.56566846370697,-0.679015278816223,0.467928916215897,0.835339665412903,-0.469291657209396,0.286309480667114,0.56566846370697,-0.679015278816223,0.467928916215897,0.590778768062592,-0.68641608953476,0.424044251441956,0.847881734371185,-0.468449234962463,0.248298078775406,0.835339665412903,-0.469291657209396,0.286309480667114,0.847881734371185,-0.468449234962463,0.248298078775406, +0.960773766040802,-0.262095540761948,0.0906627476215363,0.958480954170227,-0.261090576648712,0.114655733108521,0.835339665412903,-0.469291657209396,0.286309480667114,0.806780576705933,-0.46191880106926,0.368423670530319,0.5241819024086,-0.642626643180847,0.558806002140045,0.531386375427246,-0.658238172531128,0.533245801925659,0.812737941741943,-0.469397664070129,0.345141589641571,0.531386375427246,-0.658238172531128,0.533245801925659,0.543036162853241,-0.671515345573425,0.504161715507507,0.822050988674164,-0.471668422222137,0.319000035524368,0.812737941741943,-0.469397664070129,0.345141589641571,0.822050988674164,-0.471668422222137,0.319000035524368,0.955572545528412,-0.261623680591583,0.135772347450256,0.952653825283051,-0.262060880661011,0.154190987348557,0.812737941741943,-0.469397664070129,0.345141589641571,0.182808041572571,-0.726442575454712,0.662466824054718,-0.137506857514381,-0.725035965442657,0.674844145774841,-0.138695940375328,-0.747662842273712,0.649433434009552,0.18639849126339,-0.747945845127106,0.637049853801727,-0.138695940375328,-0.747662842273712,0.649433434009552,-0.138897895812988,-0.770571351051331,0.622034668922424,0.194322034716606,-0.769234418869019,0.608701229095459,0.18639849126339,-0.747945845127106,0.637049853801727,0.194322034716606,-0.769234418869019,0.608701229095459,0.543036162853241,-0.671515345573425,0.504161715507507,0.531386375427246,-0.658238172531128,0.533245801925659,0.18639849126339,-0.747945845127106,0.637049853801727,0.818417310714722,-0.373486369848251,0.436693221330643,0.543346166610718,-0.566556036472321,0.619507193565369,0.52039235830307,-0.625280022621155,0.58156406879425,0.80183744430542,-0.45240530371666,0.390366733074188,0.52039235830307,-0.625280022621155,0.58156406879425,0.5241819024086,-0.642626643180847,0.558806002140045,0.806780576705933,-0.46191880106926,0.368423670530319,0.80183744430542,-0.45240530371666,0.390366733074188,0.806780576705933,-0.46191880106926,0.368423670530319,0.950035393238068,-0.260532736778259,0.171916902065277,0.947377860546112,-0.257855534553528,0.189699172973633, +0.80183744430542,-0.45240530371666,0.390366733074188,0.204336106777191,-0.659367382526398,0.72352010011673,-0.0745914131402969,-0.672625780105591,0.736213684082031,-0.119997449219227,-0.704074919223785,0.699913501739502,0.186929330229759,-0.70535796880722,0.683759868144989,-0.119997449219227,-0.704074919223785,0.699913501739502,-0.137506857514381,-0.725035965442657,0.674844145774841,0.182808041572571,-0.726442575454712,0.662466824054718,0.186929330229759,-0.70535796880722,0.683759868144989,0.182808041572571,-0.726442575454712,0.662466824054718,0.5241819024086,-0.642626643180847,0.558806002140045,0.52039235830307,-0.625280022621155,0.58156406879425,0.186929330229759,-0.70535796880722,0.683759868144989,0.240964770317078,-0.626974642276764,0.740836620330811,0.00401754397898912,-0.612584948539734,0.79039454460144,-0.0183183010667562,-0.651320338249207,0.758581757545471,0.219719097018242,-0.633464813232422,0.741920351982117,-0.0183183010667562,-0.651320338249207,0.758581757545471,-0.0745914131402969,-0.672625780105591,0.736213684082031,0.204336106777191,-0.659367382526398,0.72352010011673,0.219719097018242,-0.633464813232422,0.741920351982117,0.204336106777191,-0.659367382526398,0.72352010011673,0.543346166610718,-0.566556036472321,0.619507193565369,0.57834529876709,-0.523538529872894,0.625638961791992,0.219719097018242,-0.633464813232422,0.741920351982117,0.23041732609272,-0.589603006839752,0.774129271507263,0.245313882827759,-0.590382933616638,0.768940210342407,0.247674629092216,-0.592889845371246,0.766249895095825,0.260909736156464,-0.579563140869141,0.772031486034393,0.247674629092216,-0.592889845371246,0.766249895095825,0.0461198948323727,-0.580380856990814,0.813038229942322,0.0521893128752708,-0.556438505649567,0.829248130321503,0.260909736156464,-0.579563140869141,0.772031486034393,0.0521893128752708,-0.556438505649567,0.829248130321503,0.00401754397898912,-0.612584948539734,0.79039454460144,0.240964770317078,-0.626974642276764,0.740836620330811,0.260909736156464,-0.579563140869141,0.772031486034393,0.818417310714722,-0.373486369848251,0.436693221330643, +0.940586388111115,-0.221211537718773,0.25760954618454,0.922896564006805,-0.219060271978378,0.316661506891251,0.839526295661926,-0.332665532827377,0.429568648338318,0.922896564006805,-0.219060271978378,0.316661506891251,0.900759756565094,-0.296010851860046,0.317819744348526,0.841975331306458,-0.3641217648983,0.39811173081398,0.839526295661926,-0.332665532827377,0.429568648338318,0.841975331306458,-0.3641217648983,0.39811173081398,0.447567075490952,-0.578831315040588,0.681643784046173,0.57834529876709,-0.523538529872894,0.625638961791992,0.839526295661926,-0.332665532827377,0.429568648338318,0.98725152015686,-0.126404419541359,0.09672811627388,0.998536765575409,-0.0538732931017876,-0.00469215540215373,0.999247550964355,-0.0249404329806566,0.0297040343284607,0.981567025184631,-0.112371750175953,0.154592916369438,0.999247550964355,-0.0249404329806566,0.0297040343284607,0.997341752052307,0.00589527608826756,0.0726270452141762,0.974282443523407,-0.125940248370171,0.186849489808083,0.981567025184631,-0.112371750175953,0.154592916369438,0.974282443523407,-0.125940248370171,0.186849489808083,0.900759756565094,-0.296010851860046,0.317819744348526,0.922896564006805,-0.219060271978378,0.316661506891251,0.981567025184631,-0.112371750175953,0.154592916369438,0.269309818744659,-0.612241148948669,0.743392884731293,0.248487576842308,-0.599470853805542,0.760847270488739,0.283683568239212,-0.74332320690155,0.60580050945282,0.254184186458588,-0.666435360908508,0.700895428657532,0.283683568239212,-0.74332320690155,0.60580050945282,0.027234161272645,-0.89887672662735,0.437354385852814,0.0501320064067841,-0.707809090614319,0.704622805118561,0.254184186458588,-0.666435360908508,0.700895428657532,0.0501320064067841,-0.707809090614319,0.704622805118561,0.0461198948323727,-0.580380856990814,0.813038229942322,0.247674629092216,-0.592889845371246,0.766249895095825,0.254184186458588,-0.666435360908508,0.700895428657532,0.138218611478806,-0.970393598079681,0.198070451617241,0.027234161272645,-0.89887672662735,0.437354385852814,0.283683568239212,-0.74332320690155,0.60580050945282, +0.250744193792343,-0.850114345550537,0.463069230318069,0.0727533102035522,-0.966231167316437,-0.247192934155464,0.0111613245680928,-0.902023375034332,-0.431542724370956,-0.0735059157013893,-0.902492582798004,-0.424386620521545,0.0062291999347508,-0.990969955921173,-0.133938610553741,-0.0735059157013893,-0.902492582798004,-0.424386620521545,-0.171944156289101,-0.9038245677948,-0.39183709025383,-0.0791422799229622,-0.996090829372406,-0.0392339825630188,0.0062291999347508,-0.990969955921173,-0.133938610553741,-0.0791422799229622,-0.996090829372406,-0.0392339825630188,0.027234161272645,-0.89887672662735,0.437354385852814,0.138218611478806,-0.970393598079681,0.198070451617241,0.0062291999347508,-0.990969955921173,-0.133938610553741,0.947377860546112,-0.257855534553528,0.189699172973633,0.950035393238068,-0.260532736778259,0.171916902065277,0.99066436290741,-0.127964779734612,0.047003012150526,0.989906489849091,-0.128278329968452,0.0602475740015507,0.99066436290741,-0.127964779734612,0.047003012150526,0.998371005058289,-0.0510142669081688,-0.0255538318306208,0.998505055904388,-0.052535641938448,-0.0150880627334118,0.989906489849091,-0.128278329968452,0.0602475740015507,0.998505055904388,-0.052535641938448,-0.0150880627334118,0.998536765575409,-0.0538732931017876,-0.00469215540215373,0.98725152015686,-0.126404419541359,0.09672811627388,0.989906489849091,-0.128278329968452,0.0602475740015507,0.991652488708496,-0.127121955156326,0.0215762164443731,0.997764945030212,-0.0499641858041286,-0.0443695262074471,0.998134613037109,-0.0498641319572926,-0.0352249071002007,0.991292715072632,-0.127187445759773,0.0340904854238033,0.998134613037109,-0.0498641319572926,-0.0352249071002007,0.998371005058289,-0.0510142669081688,-0.0255538318306208,0.99066436290741,-0.127964779734612,0.047003012150526,0.991292715072632,-0.127187445759773,0.0340904854238033,0.99066436290741,-0.127964779734612,0.047003012150526,0.950035393238068,-0.260532736778259,0.171916902065277,0.952653825283051,-0.262060880661011,0.154190987348557,0.991292715072632,-0.127187445759773,0.0340904854238033, +0.998328566551208,-0.00283115683123469,-0.0577242970466614,0.993704378604889,0.0520844645798206,-0.0991906449198723,0.994657158851624,0.0667790547013283,-0.0787250474095345,0.999453604221344,0.017492638900876,-0.028046490624547,0.994657158851624,0.0667790547013283,-0.0787250474095345,0.99579131603241,0.0757552534341812,-0.0515827536582947,0.999091982841492,0.0420365631580353,0.00692957732826471,0.999453604221344,0.017492638900876,-0.028046490624547,0.999091982841492,0.0420365631580353,0.00692957732826471,0.997341752052307,0.00589527608826756,0.0726270452141762,0.999247550964355,-0.0249404329806566,0.0297040343284607,0.999453604221344,0.017492638900876,-0.028046490624547,0.997070133686066,0.00241995509713888,-0.0764547362923622,0.991380333900452,0.0493163056671619,-0.121379107236862,0.992729961872101,0.045125238597393,-0.111583679914474,0.997724533081055,6.23014639131725e-05,-0.0674215480685234,0.992729961872101,0.045125238597393,-0.111583679914474,0.993704378604889,0.0520844645798206,-0.0991906449198723,0.998328566551208,-0.00283115683123469,-0.0577242970466614,0.997724533081055,6.23014639131725e-05,-0.0674215480685234,0.998328566551208,-0.00283115683123469,-0.0577242970466614,0.998536765575409,-0.0538732931017876,-0.00469215540215373,0.998505055904388,-0.052535641938448,-0.0150880627334118,0.997724533081055,6.23014639131725e-05,-0.0674215480685234,0.985485255718231,0.106075525283813,-0.132540285587311,0.993704378604889,0.0520844645798206,-0.0991906449198723,0.992729961872101,0.045125238597393,-0.111583679914474,0.982117295265198,0.0972243472933769,-0.161224067211151,0.992729961872101,0.045125238597393,-0.111583679914474,0.991380333900452,0.0493163056671619,-0.121379107236862,0.979355335235596,0.104070335626602,-0.173299416899681,0.982117295265198,0.0972243472933769,-0.161224067211151,0.979355335235596,0.104070335626602,-0.173299416899681,0.951921105384827,0.182817935943604,-0.245812401175499,0.957691550254822,0.172850698232651,-0.23010715842247,0.982117295265198,0.0972243472933769,-0.161224067211151,0.985485255718231,0.106075525283813,-0.132540285587311, +0.968630909919739,0.17013868689537,-0.181127190589905,0.97747391462326,0.152812168002129,-0.145579159259796,0.98727560043335,0.109795868396759,-0.115029871463776,0.97747391462326,0.152812168002129,-0.145579159259796,0.977841436862946,0.1078085526824,-0.179453551769257,0.988432168960571,0.094371423125267,-0.11872648447752,0.98727560043335,0.109795868396759,-0.115029871463776,0.988432168960571,0.094371423125267,-0.11872648447752,0.99579131603241,0.0757552534341812,-0.0515827536582947,0.994657158851624,0.0667790547013283,-0.0787250474095345,0.98727560043335,0.109795868396759,-0.115029871463776,0.991239905357361,-0.131942495703697,-0.00587241025641561,0.996447503566742,-0.0553847625851631,-0.0634423643350601,0.99722284078598,-0.051819559186697,-0.0534919425845146,0.991651237010956,-0.128671750426292,0.00845108181238174,0.99722284078598,-0.051819559186697,-0.0534919425845146,0.997764945030212,-0.0499641858041286,-0.0443695262074471,0.991652488708496,-0.127121955156326,0.0215762164443731,0.991651237010956,-0.128671750426292,0.00845108181238174,0.991652488708496,-0.127121955156326,0.0215762164443731,0.955572545528412,-0.261623680591583,0.135772347450256,0.958480954170227,-0.261090576648712,0.114655733108521,0.991651237010956,-0.128671750426292,0.00845108181238174,0.995700240135193,0.00447410997003317,-0.0925255417823792,0.988936483860016,0.053480476140976,-0.138363778591156,0.990095734596252,0.0522691197693348,-0.13030032813549,0.996392071247101,0.00406503211706877,-0.0847715511918068,0.990095734596252,0.0522691197693348,-0.13030032813549,0.991380333900452,0.0493163056671619,-0.121379107236862,0.997070133686066,0.00241995509713888,-0.0764547362923622,0.996392071247101,0.00406503211706877,-0.0847715511918068,0.997070133686066,0.00241995509713888,-0.0764547362923622,0.998371005058289,-0.0510142669081688,-0.0255538318306208,0.998134613037109,-0.0498641319572926,-0.0352249071002007,0.996392071247101,0.00406503211706877,-0.0847715511918068,0.930840730667114,0.260437279939651,-0.256335943937302,0.866371512413025,0.344069838523865,-0.361961752176285, +0.932286560535431,0.229392543435097,-0.279679924249649,0.95643937587738,0.210899695754051,-0.201854109764099,0.932286560535431,0.229392543435097,-0.279679924249649,0.940251648426056,0.164494454860687,-0.298107892274857,0.958379983901978,0.148388370871544,-0.243903413414955,0.95643937587738,0.210899695754051,-0.201854109764099,0.958379983901978,0.148388370871544,-0.243903413414955,0.977841436862946,0.1078085526824,-0.179453551769257,0.97747391462326,0.152812168002129,-0.145579159259796,0.95643937587738,0.210899695754051,-0.201854109764099,0.957691550254822,0.172850698232651,-0.23010715842247,0.951921105384827,0.182817935943604,-0.245812401175499,0.88422691822052,0.302752792835236,-0.35564523935318,0.900543510913849,0.283195495605469,-0.329881280660629,0.88422691822052,0.302752792835236,-0.35564523935318,0.712010860443115,0.476883143186569,-0.515386283397675,0.82921302318573,0.381767570972443,-0.408239215612411,0.900543510913849,0.283195495605469,-0.329881280660629,0.82921302318573,0.381767570972443,-0.408239215612411,0.866371512413025,0.344069838523865,-0.361961752176285,0.930840730667114,0.260437279939651,-0.256335943937302,0.900543510913849,0.283195495605469,-0.329881280660629,0.815179169178009,0.327907055616379,-0.477451324462891,0.662346959114075,0.265413999557495,-0.700608372688293,0.85881119966507,0.143601641058922,-0.491753906011581,0.906107008457184,0.203487262129784,-0.370894908905029,0.85881119966507,0.143601641058922,-0.491753906011581,0.900156855583191,0.118586383759975,-0.419112145900726,0.925146341323853,0.158274173736572,-0.345041215419769,0.906107008457184,0.203487262129784,-0.370894908905029,0.925146341323853,0.158274173736572,-0.345041215419769,0.940251648426056,0.164494454860687,-0.298107892274857,0.932286560535431,0.229392543435097,-0.279679924249649,0.906107008457184,0.203487262129784,-0.370894908905029,0.974820792675018,0.110324777662754,-0.193785414099693,0.943806827068329,0.189061343669891,-0.27108034491539,0.947197437286377,0.188203275203705,-0.259608328342438,0.976868271827698,0.108646765351295,-0.184185564517975, +0.947197437286377,0.188203275203705,-0.259608328342438,0.951921105384827,0.182817935943604,-0.245812401175499,0.979355335235596,0.104070335626602,-0.173299416899681,0.976868271827698,0.108646765351295,-0.184185564517975,0.979355335235596,0.104070335626602,-0.173299416899681,0.991380333900452,0.0493163056671619,-0.121379107236862,0.990095734596252,0.0522691197693348,-0.13030032813549,0.976868271827698,0.108646765351295,-0.184185564517975,0.947197437286377,0.188203275203705,-0.259608328342438,0.943806827068329,0.189061343669891,-0.27108034491539,0.872825086116791,0.302739650011063,-0.382786065340042,0.876102566719055,0.308748364448547,-0.37029555439949,0.872825086116791,0.302739650011063,-0.382786065340042,0.704759240150452,0.46142104268074,-0.538892507553101,0.710680544376373,0.472971141338348,-0.520798861980438,0.876102566719055,0.308748364448547,-0.37029555439949,0.710680544376373,0.472971141338348,-0.520798861980438,0.712010860443115,0.476883143186569,-0.515386283397675,0.88422691822052,0.302752792835236,-0.35564523935318,0.876102566719055,0.308748364448547,-0.37029555439949,0.828360259532928,-0.0300242155790329,-0.559390544891357,0.900156855583191,0.118586383759975,-0.419112145900726,0.85881119966507,0.143601641058922,-0.491753906011581,0.737373352050781,-0.031020276248455,-0.6747727394104,0.85881119966507,0.143601641058922,-0.491753906011581,0.662346959114075,0.265413999557495,-0.700608372688293,0.55413693189621,0.0203293543308973,-0.832177221775055,0.737373352050781,-0.031020276248455,-0.6747727394104,0.174513027071953,0.817176461219788,-0.549333930015564,0.138582929968834,0.822417914867401,-0.55174595117569,0.137453213334084,0.822564244270325,-0.551810443401337,0.172922670841217,0.817432641983032,-0.549455761909485,0.252328366041183,-0.241920724511147,-0.936912357807159,0.331973046064377,-0.284388303756714,-0.899398267269135,0.334897696971893,-0.0841046497225761,-0.938493490219116,0.226717427372932,-0.0472731664776802,-0.972812652587891,0.226717427372932,-0.0472731664776802,-0.972812652587891,0.334897696971893,-0.0841046497225761,-0.938493490219116, +0.326417058706284,0.132676780223846,-0.935867965221405,0.194646328687668,0.190210491418839,-0.962253987789154,0.452103763818741,-0.49866709113121,-0.739549458026886,0.415487974882126,-0.567078351974487,-0.711190402507782,0.550896823406219,-0.525934159755707,-0.648001551628113,0.610037267208099,-0.46080207824707,-0.644605278968811,0.550896823406219,-0.525934159755707,-0.648001551628113,0.647116422653198,-0.480469256639481,-0.591937124729156,0.710414350032806,-0.402944713830948,-0.577015519142151,0.610037267208099,-0.46080207824707,-0.644605278968811,0.710414350032806,-0.402944713830948,-0.577015519142151,0.751958012580872,-0.317488312721252,-0.577719867229462,0.657268643379211,-0.351282894611359,-0.666782021522522,0.610037267208099,-0.46080207824707,-0.644605278968811,0.284562289714813,-0.40439835190773,-0.869187116622925,0.325535625219345,-0.50172746181488,-0.801433861255646,0.349887162446976,-0.536685585975647,-0.767820000648499,0.331609040498734,-0.445980966091156,-0.831346213817596,0.349887162446976,-0.536685585975647,-0.767820000648499,0.415487974882126,-0.567078351974487,-0.711190402507782,0.452103763818741,-0.49866709113121,-0.739549458026886,0.331609040498734,-0.445980966091156,-0.831346213817596,0.452103763818741,-0.49866709113121,-0.739549458026886,0.503585815429688,-0.352858453989029,-0.788601458072662,0.331973046064377,-0.284388303756714,-0.899398267269135,0.331609040498734,-0.445980966091156,-0.831346213817596,0.438000082969666,-0.635714054107666,-0.635628402233124,0.448891818523407,-0.681523740291595,-0.577945947647095,0.516455054283142,-0.677501380443573,-0.523704051971436,0.527204155921936,-0.61242949962616,-0.589055120944977,0.516455054283142,-0.677501380443573,-0.523704051971436,0.560611486434937,-0.662066578865051,-0.497375726699829,0.593634724617004,-0.579204916954041,-0.558676600456238,0.527204155921936,-0.61242949962616,-0.589055120944977,0.593634724617004,-0.579204916954041,-0.558676600456238,0.647116422653198,-0.480469256639481,-0.591937124729156,0.550896823406219,-0.525934159755707,-0.648001551628113, +0.527204155921936,-0.61242949962616,-0.589055120944977,0.371909111738205,-0.572470188140869,-0.730726659297943,0.405657351016998,-0.616533875465393,-0.674780011177063,0.416544407606125,-0.645344734191895,-0.640328824520111,0.389668077230453,-0.602210819721222,-0.696778893470764,0.416544407606125,-0.645344734191895,-0.640328824520111,0.448891818523407,-0.681523740291595,-0.577945947647095,0.438000082969666,-0.635714054107666,-0.635628402233124,0.389668077230453,-0.602210819721222,-0.696778893470764,0.438000082969666,-0.635714054107666,-0.635628402233124,0.415487974882126,-0.567078351974487,-0.711190402507782,0.349887162446976,-0.536685585975647,-0.767820000648499,0.389668077230453,-0.602210819721222,-0.696778893470764,0.45541974902153,-0.718688726425171,-0.525432586669922,0.467378050088882,-0.755487143993378,-0.459126234054565,0.502279341220856,-0.763205885887146,-0.406487733125687,0.502862453460693,-0.72309148311615,-0.473569571971893,0.502279341220856,-0.763205885887146,-0.406487733125687,0.52496737241745,-0.757268786430359,-0.388527095317841,0.533083260059357,-0.7153240442276,-0.451811611652374,0.502862453460693,-0.72309148311615,-0.473569571971893,0.533083260059357,-0.7153240442276,-0.451811611652374,0.560611486434937,-0.662066578865051,-0.497375726699829,0.516455054283142,-0.677501380443573,-0.523704051971436,0.502862453460693,-0.72309148311615,-0.473569571971893,0.416544407606125,-0.645344734191895,-0.640328824520111,0.405657351016998,-0.616533875465393,-0.674780011177063,0.429639250040054,-0.650370597839355,-0.6264408826828,0.436919987201691,-0.679874539375305,-0.588958024978638,0.429639250040054,-0.650370597839355,-0.6264408826828,0.448588460683823,-0.678992569446564,-0.581152021884918,0.454819679260254,-0.711352229118347,-0.535833120346069,0.436919987201691,-0.679874539375305,-0.588958024978638,0.454819679260254,-0.711352229118347,-0.535833120346069,0.467378050088882,-0.755487143993378,-0.459126234054565,0.45541974902153,-0.718688726425171,-0.525432586669922,0.436919987201691,-0.679874539375305,-0.588958024978638, +0.465778708457947,-0.779828548431396,-0.418231666088104,0.448415994644165,-0.793281972408295,-0.411857634782791,0.459188908338547,-0.812885165214539,-0.358278095722198,0.49268165230751,-0.787114322185516,-0.371100962162018,0.459188908338547,-0.812885165214539,-0.358278095722198,0.509277820587158,-0.812120497226715,-0.284774303436279,0.51983368396759,-0.780886650085449,-0.346394211053848,0.49268165230751,-0.787114322185516,-0.371100962162018,0.51983368396759,-0.780886650085449,-0.346394211053848,0.52496737241745,-0.757268786430359,-0.388527095317841,0.502279341220856,-0.763205885887146,-0.406487733125687,0.49268165230751,-0.787114322185516,-0.371100962162018,0.484329640865326,-0.750629484653473,-0.449421972036362,0.448415994644165,-0.793281972408295,-0.411857634782791,0.465778708457947,-0.779828548431396,-0.418231666088104,0.469042837619781,-0.73725688457489,-0.486262381076813,0.465778708457947,-0.779828548431396,-0.418231666088104,0.467378050088882,-0.755487143993378,-0.459126234054565,0.454819679260254,-0.711352229118347,-0.535833120346069,0.469042837619781,-0.73725688457489,-0.486262381076813,0.454819679260254,-0.711352229118347,-0.535833120346069,0.448588460683823,-0.678992569446564,-0.581152021884918,0.4703189432621,-0.702146053314209,-0.534594178199768,0.469042837619781,-0.73725688457489,-0.486262381076813,0.58386754989624,-0.733967244625092,-0.346973747014999,0.563136637210846,-0.763297498226166,-0.316629320383072,0.485233753919601,-0.781471908092499,-0.392237156629562,0.520402789115906,-0.748185694217682,-0.411581337451935,0.485233753919601,-0.781471908092499,-0.392237156629562,0.448415994644165,-0.793281972408295,-0.411857634782791,0.484329640865326,-0.750629484653473,-0.449421972036362,0.520402789115906,-0.748185694217682,-0.411581337451935,0.484329640865326,-0.750629484653473,-0.449421972036362,0.50134015083313,-0.718520283699036,-0.48206502199173,0.541131675243378,-0.726649522781372,-0.42326956987381,0.520402789115906,-0.748185694217682,-0.411581337451935,0.375865459442139,-0.891985058784485,-0.251172631978989, +0.465881705284119,-0.876372158527374,-0.122172079980373,0.496291965246201,-0.842112362384796,-0.211047559976578,0.421863734722137,-0.852864623069763,-0.307657361030579,0.496291965246201,-0.842112362384796,-0.211047559976578,0.509277820587158,-0.812120497226715,-0.284774303436279,0.459188908338547,-0.812885165214539,-0.358278095722198,0.421863734722137,-0.852864623069763,-0.307657361030579,0.459188908338547,-0.812885165214539,-0.358278095722198,0.448415994644165,-0.793281972408295,-0.411857634782791,0.398564517498016,-0.8384929895401,-0.371585577726364,0.421863734722137,-0.852864623069763,-0.307657361030579,0.271911472082138,-0.961562275886536,0.038238100707531,0.340499520301819,-0.925959706306458,0.163274735212326,0.396678984165192,-0.91794615983963,0.00455336552113295,0.336590141057968,-0.93022632598877,-0.146239325404167,0.396678984165192,-0.91794615983963,0.00455336552113295,0.465881705284119,-0.876372158527374,-0.122172079980373,0.375865459442139,-0.891985058784485,-0.251172631978989,0.336590141057968,-0.93022632598877,-0.146239325404167,0.251545935869217,-0.896880447864532,-0.363772034645081,0.259092956781387,-0.894549190998077,-0.364215105772018,0.121380895376205,-0.900714337825775,-0.417109489440918,0.15466719865799,-0.929469048976898,-0.334911048412323,0.121380895376205,-0.900714337825775,-0.417109489440918,0.0111613245680928,-0.902023375034332,-0.431542724370956,0.0727533102035522,-0.966231167316437,-0.247192934155464,0.15466719865799,-0.929469048976898,-0.334911048412323,0.173500835895538,-0.983356356620789,-0.0539235472679138,0.271911472082138,-0.961562275886536,0.038238100707531,0.336590141057968,-0.93022632598877,-0.146239325404167,0.23435415327549,-0.939100682735443,-0.25133228302002,0.403087556362152,-0.858154714107513,-0.317948132753372,0.315401196479797,-0.888113856315613,-0.334328979253769,0.398564517498016,-0.8384929895401,-0.371585577726364,0.446565270423889,-0.822087109088898,-0.353202939033508,0.398564517498016,-0.8384929895401,-0.371585577726364,0.448415994644165,-0.793281972408295,-0.411857634782791, +0.485233753919601,-0.781471908092499,-0.392237156629562,0.446565270423889,-0.822087109088898,-0.353202939033508,0.485233753919601,-0.781471908092499,-0.392237156629562,0.563136637210846,-0.763297498226166,-0.316629320383072,0.525405883789063,-0.802496492862701,-0.282750517129898,0.446565270423889,-0.822087109088898,-0.353202939033508,0.648885726928711,-0.719096958637238,-0.248690560460091,0.640718281269073,-0.735740482807159,-0.21946756541729,0.60508006811142,-0.749416828155518,-0.268798351287842,0.620569288730621,-0.726473450660706,-0.295178294181824,0.60508006811142,-0.749416828155518,-0.268798351287842,0.563136637210846,-0.763297498226166,-0.316629320383072,0.58386754989624,-0.733967244625092,-0.346973747014999,0.620569288730621,-0.726473450660706,-0.295178294181824,0.58386754989624,-0.733967244625092,-0.346973747014999,0.583020687103271,-0.726785659790039,-0.363138258457184,0.618852376937866,-0.722241044044495,-0.308852046728134,0.620569288730621,-0.726473450660706,-0.295178294181824,0.595204889774323,-0.688462615013123,0.414427876472473,0.506681323051453,-0.665714859962463,0.547811806201935,0.604303658008575,-0.678694128990173,0.4173623919487,0.620982766151428,-0.706097781658173,0.340303510427475,0.525210320949554,-0.838167309761047,-0.14707039296627,0.523413717746735,-0.842184603214264,-0.129473015666008,0.391027510166168,-0.881143391132355,-0.265864163637161,0.398783653974533,-0.876151919364929,-0.270793974399567,0.651469767093658,-0.751650035381317,0.103002138435841,0.658726394176483,-0.736504197120667,0.153757110238075,0.616052985191345,-0.78749692440033,0.0180926732718945,0.610154628753662,-0.792121231555939,-0.0159806665033102,0.403087556362152,-0.858154714107513,-0.317948132753372,0.497740119695663,-0.82725977897644,-0.260568499565125,0.48810014128685,-0.838716745376587,-0.241480052471161,0.372381627559662,-0.869452774524689,-0.32462865114212,0.48810014128685,-0.838716745376587,-0.241480052471161,0.525210320949554,-0.838167309761047,-0.14707039296627,0.398783653974533,-0.876151919364929,-0.270793974399567, +0.372381627559662,-0.869452774524689,-0.32462865114212,0.398783653974533,-0.876151919364929,-0.270793974399567,0.259092956781387,-0.894549190998077,-0.364215105772018,0.251545935869217,-0.896880447864532,-0.363772034645081,0.372381627559662,-0.869452774524689,-0.32462865114212,0.65166050195694,-0.700042128562927,0.29202675819397,0.644487619400024,-0.673506200313568,0.361973762512207,0.663619935512543,-0.697486579418182,0.270409107208252,0.661904335021973,-0.720592677593231,0.206467017531395,0.566215932369232,-0.801503539085388,-0.19233213365078,0.615274608135223,-0.779519319534302,-0.117417350411415,0.62275892496109,-0.78062379360199,-0.0528957061469555,0.571286082267761,-0.807904481887817,-0.144646435976028,0.62275892496109,-0.78062379360199,-0.0528957061469555,0.651469767093658,-0.751650035381317,0.103002138435841,0.610154628753662,-0.792121231555939,-0.0159806665033102,0.571286082267761,-0.807904481887817,-0.144646435976028,0.610154628753662,-0.792121231555939,-0.0159806665033102,0.525210320949554,-0.838167309761047,-0.14707039296627,0.48810014128685,-0.838716745376587,-0.241480052471161,0.571286082267761,-0.807904481887817,-0.144646435976028,-0.697560131549835,-0.470335334539413,0.540550231933594,-0.734706223011017,-0.481136739253998,0.478240579366684,-0.71522444486618,-0.463751196861267,0.522865951061249,-0.597104787826538,-0.47907230257988,0.643393874168396,0.621909439563751,-0.763467848300934,-0.174199506640434,0.615274608135223,-0.779519319534302,-0.117417350411415,0.566215932369232,-0.801503539085388,-0.19233213365078,0.577992141246796,-0.78216940164566,-0.232671618461609,0.566215932369232,-0.801503539085388,-0.19233213365078,0.497740119695663,-0.82725977897644,-0.260568499565125,0.525405883789063,-0.802496492862701,-0.282750517129898,0.577992141246796,-0.78216940164566,-0.232671618461609,0.525405883789063,-0.802496492862701,-0.282750517129898,0.563136637210846,-0.763297498226166,-0.316629320383072,0.60508006811142,-0.749416828155518,-0.268798351287842,0.577992141246796,-0.78216940164566,-0.232671618461609, +0.692147672176361,-0.704307854175568,-0.15774030983448,0.689681887626648,-0.71403169631958,-0.120405994355679,0.66851931810379,-0.724181175231934,-0.169244080781937,0.672990620136261,-0.711468696594238,-0.202227264642715,0.66851931810379,-0.724181175231934,-0.169244080781937,0.640718281269073,-0.735740482807159,-0.21946756541729,0.648885726928711,-0.719096958637238,-0.248690560460091,0.672990620136261,-0.711468696594238,-0.202227264642715,0.648885726928711,-0.719096958637238,-0.248690560460091,0.645515918731689,-0.716913938522339,-0.263331711292267,0.667743265628815,-0.71110862493515,-0.220098748803139,0.672990620136261,-0.711468696594238,-0.202227264642715,0.644689857959747,-0.763040125370026,-0.0463118217885494,0.661276757717133,-0.749763190746307,0.0238365549594164,0.661265671253204,-0.742161452770233,0.109197184443474,0.650059640407562,-0.759271800518036,0.030475927516818,0.661265671253204,-0.742161452770233,0.109197184443474,0.65166050195694,-0.700042128562927,0.29202675819397,0.661904335021973,-0.720592677593231,0.206467017531395,0.650059640407562,-0.759271800518036,0.030475927516818,0.661904335021973,-0.720592677593231,0.206467017531395,0.651469767093658,-0.751650035381317,0.103002138435841,0.62275892496109,-0.78062379360199,-0.0528957061469555,0.650059640407562,-0.759271800518036,0.030475927516818,0.0831158235669136,-0.47706526517868,0.874928951263428,0.0421831570565701,-0.467899739742279,0.882774233818054,0.0227749347686768,-0.551540493965149,0.83383721113205,0.0580517016351223,-0.560424447059631,0.826168537139893,0.728604137897491,-0.682628512382507,-0.0561624765396118,0.720624625682831,-0.693291246891022,-0.00687918392941356,0.696477472782135,-0.712320268154144,-0.0867110714316368,0.70104318857193,-0.701861619949341,-0.126209035515785,0.696477472782135,-0.712320268154144,-0.0867110714316368,0.689681887626648,-0.71403169631958,-0.120405994355679,0.692147672176361,-0.704307854175568,-0.15774030983448,0.70104318857193,-0.701861619949341,-0.126209035515785,0.692147672176361,-0.704307854175568,-0.15774030983448, +0.686577916145325,-0.705038964748383,-0.177569463849068,0.697242736816406,-0.702438056468964,-0.142944976687431,0.70104318857193,-0.701861619949341,-0.126209035515785,0.672702372074127,-0.737667500972748,-0.0576041340827942,0.661276757717133,-0.749763190746307,0.0238365549594164,0.644689857959747,-0.763040125370026,-0.0463118217885494,0.652033388614655,-0.749282002449036,-0.115883283317089,0.644689857959747,-0.763040125370026,-0.0463118217885494,0.615274608135223,-0.779519319534302,-0.117417350411415,0.621909439563751,-0.763467848300934,-0.174199506640434,0.652033388614655,-0.749282002449036,-0.115883283317089,0.621909439563751,-0.763467848300934,-0.174199506640434,0.640718281269073,-0.735740482807159,-0.21946756541729,0.66851931810379,-0.724181175231934,-0.169244080781937,0.652033388614655,-0.749282002449036,-0.115883283317089,0.659765183925629,-0.747746646404266,0.074731856584549,0.666373193264008,-0.729299187660217,0.155143544077873,0.649015724658966,-0.724012672901154,0.233632609248161,0.653438806533813,-0.739978849887848,0.159527540206909,0.649015724658966,-0.724012672901154,0.233632609248161,0.595204889774323,-0.688462615013123,0.414427876472473,0.620982766151428,-0.706097781658173,0.340303510427475,0.653438806533813,-0.739978849887848,0.159527540206909,0.620982766151428,-0.706097781658173,0.340303510427475,0.65166050195694,-0.700042128562927,0.29202675819397,0.661265671253204,-0.742161452770233,0.109197184443474,0.653438806533813,-0.739978849887848,0.159527540206909,0.69608348608017,-0.714667856693268,0.0686843767762184,0.666373193264008,-0.729299187660217,0.155143544077873,0.659765183925629,-0.747746646404266,0.074731856584549,0.677561581134796,-0.735332489013672,-0.0140213714912534,0.659765183925629,-0.747746646404266,0.074731856584549,0.661276757717133,-0.749763190746307,0.0238365549594164,0.672702372074127,-0.737667500972748,-0.0576041340827942,0.677561581134796,-0.735332489013672,-0.0140213714912534,0.672702372074127,-0.737667500972748,-0.0576041340827942,0.689681887626648,-0.71403169631958,-0.120405994355679, +0.696477472782135,-0.712320268154144,-0.0867110714316368,0.677561581134796,-0.735332489013672,-0.0140213714912534,0.994039237499237,-0.000213546809391119,-0.109023176133633,0.986660122871399,0.0487908869981766,-0.155310332775116,0.987845957279205,0.0522867366671562,-0.1463772803545,0.994957208633423,0.00305898441001773,-0.100253187119961,0.987845957279205,0.0522867366671562,-0.1463772803545,0.988936483860016,0.053480476140976,-0.138363778591156,0.995700240135193,0.00447410997003317,-0.0925255417823792,0.994957208633423,0.00305898441001773,-0.100253187119961,0.995700240135193,0.00447410997003317,-0.0925255417823792,0.997764945030212,-0.0499641858041286,-0.0443695262074471,0.99722284078598,-0.051819559186697,-0.0534919425845146,0.994957208633423,0.00305898441001773,-0.100253187119961,0.974820792675018,0.110324777662754,-0.193785414099693,0.988936483860016,0.053480476140976,-0.138363778591156,0.987845957279205,0.0522867366671562,-0.1463772803545,0.973290026187897,0.108031190931797,-0.202572509646416,0.987845957279205,0.0522867366671562,-0.1463772803545,0.986660122871399,0.0487908869981766,-0.155310332775116,0.971926927566528,0.102411650121212,-0.211825206875801,0.973290026187897,0.108031190931797,-0.202572509646416,0.971926927566528,0.102411650121212,-0.211825206875801,0.941397607326508,0.172344699501991,-0.289944410324097,0.942123234272003,0.183466821908951,-0.280613362789154,0.973290026187897,0.108031190931797,-0.202572509646416,0.990605771541595,-0.0153668718412519,-0.135882377624512,0.983104348182678,0.0312379077076912,-0.180360779166222,0.985166370868683,0.0424035526812077,-0.166280597448349,0.992728531360626,-0.00594346271827817,-0.120226949453354,0.985166370868683,0.0424035526812077,-0.166280597448349,0.986660122871399,0.0487908869981766,-0.155310332775116,0.994039237499237,-0.000213546809391119,-0.109023176133633,0.992728531360626,-0.00594346271827817,-0.120226949453354,0.994039237499237,-0.000213546809391119,-0.109023176133633,0.996447503566742,-0.0553847625851631,-0.0634423643350601,0.99521666765213,-0.0610514506697655,-0.0762655958533287, +0.992728531360626,-0.00594346271827817,-0.120226949453354,0.942123234272003,0.183466821908951,-0.280613362789154,0.941397607326508,0.172344699501991,-0.289944410324097,0.87320077419281,0.272477954626083,-0.404074370861053,0.871356546878815,0.292230844497681,-0.394130617380142,0.87320077419281,0.272477954626083,-0.404074370861053,0.708066642284393,0.415171891450882,-0.571203947067261,0.703362822532654,0.444451689720154,-0.554746329784393,0.871356546878815,0.292230844497681,-0.394130617380142,0.703362822532654,0.444451689720154,-0.554746329784393,0.704759240150452,0.46142104268074,-0.538892507553101,0.872825086116791,0.302739650011063,-0.382786065340042,0.871356546878815,0.292230844497681,-0.394130617380142,0.968387186527252,0.0771235972642899,-0.237230181694031,0.93992817401886,0.129182159900665,-0.315985649824142,0.94064325094223,0.156117379665375,-0.301359713077545,0.970319509506226,0.0932747349143028,-0.223114207386971,0.94064325094223,0.156117379665375,-0.301359713077545,0.941397607326508,0.172344699501991,-0.289944410324097,0.971926927566528,0.102411650121212,-0.211825206875801,0.970319509506226,0.0932747349143028,-0.223114207386971,0.971926927566528,0.102411650121212,-0.211825206875801,0.986660122871399,0.0487908869981766,-0.155310332775116,0.985166370868683,0.0424035526812077,-0.166280597448349,0.970319509506226,0.0932747349143028,-0.223114207386971,0.329650908708572,-0.610939383506775,0.719780087471008,0.506681323051453,-0.665714859962463,0.547811806201935,0.479769319295883,-0.66126811504364,0.576667845249176,0.309386730194092,-0.636144518852234,0.706823945045471,0.134490832686424,-0.656905770301819,0.741880714893341,0.170162677764893,-0.659661054611206,0.732046246528625,0.229851618409157,-0.598201811313629,0.767673671245575,0.186331108212471,-0.592158079147339,0.783983111381531,0.205184549093246,-0.665699899196625,0.717455983161926,0.229326099157333,-0.672872245311737,0.703315317630768,0.327762573957443,-0.607410490512848,0.723618805408478,0.276362746953964,-0.603672206401825,0.747799038887024,0.257052302360535,-0.681294739246368,0.68539160490036, +0.408297032117844,-0.663861572742462,0.626563191413879,0.395584285259247,-0.638837397098541,0.659848392009735,0.248120024800301,-0.680859863758087,0.689105451107025,0.28842505812645,-0.658069729804993,0.695525228977203,0.451989889144897,-0.678381264209747,0.579227149486542,0.426441371440887,-0.678310453891754,0.598366618156433,0.270258218050003,-0.674371659755707,0.687156021595001,-0.404853969812393,-0.536928951740265,0.740135431289673,-0.396445989608765,-0.554543793201447,0.731650054454803,-0.511453211307526,-0.504643857479095,0.695521533489227,-0.542803108692169,-0.499213099479675,0.675389587879181,-0.597104787826538,-0.47907230257988,0.643393874168396,-0.398037612438202,-0.486050814390182,0.778023540973663,-0.403512686491013,-0.513169407844543,0.757518768310547,-0.568780422210693,-0.483123153448105,0.665643155574799,-0.310550272464752,-0.5762739777565,0.755954265594482,-0.401788741350174,-0.485980093479156,0.776137351989746,-0.444082617759705,-0.495074033737183,0.746787965297699,-0.341376483440399,-0.57038402557373,0.747077167034149,-0.243789374828339,-0.590774357318878,0.769124448299408,-0.283904254436493,-0.500032007694244,0.818148076534271,-0.344740658998489,-0.487214267253876,0.802356600761414,-0.279871553182602,-0.582893848419189,0.762828052043915,-0.160694882273674,-0.609311759471893,0.776476919651031,-0.175832688808441,-0.520594835281372,0.835502088069916,-0.22851887345314,-0.511639177799225,0.828253865242004,-0.203305259346962,-0.600077092647552,0.773675918579102,-0.070599190890789,-0.622447848320007,0.779470562934875,-0.0651194676756859,-0.538974046707153,0.839801430702209,-0.120851024985313,-0.529502272605896,0.839656114578247,-0.115875117480755,-0.617684781551361,0.777842223644257,-0.070599190890789,-0.622447848320007,0.779470562934875,-0.0300238747149706,-0.621192693710327,0.78308242559433,-0.0148709500208497,-0.546777784824371,0.837145686149597,-0.0651194676756859,-0.538974046707153,0.839801430702209,-0.597104787826538,-0.47907230257988,0.643393874168396,-0.389736860990524,-0.456168293952942,0.800009846687317, +-0.387571096420288,-0.449182420969009,0.804999172687531,-0.398037612438202,-0.486050814390182,0.778023540973663,-0.374746859073639,-0.402289122343063,0.835301339626312,-0.37629446387291,-0.408365100622177,0.831649243831635,-0.362865626811981,-0.365580081939697,0.857134521007538,-0.362188756465912,-0.363851755857468,0.858155727386475,-0.335458874702454,-0.347693920135498,0.875543355941772,-0.275308161973953,-0.365779995918274,0.889050304889679,-0.277618736028671,-0.364765375852585,0.888748645782471,-0.336131572723389,-0.34769070148468,0.875286638736725,0.00233041378669441,-0.518018186092377,0.855366349220276,-0.00343270786106586,-0.515995025634766,0.856584668159485,-0.102638669312,-0.466817110776901,0.878377616405487,-0.0985836908221245,-0.469343215227127,0.877495408058167,0.365768164396286,-0.549156188964844,0.751426100730896,0.36402702331543,-0.552312672138214,0.749956667423248,0.34590807557106,-0.58530980348587,0.733321309089661,0.348484307527542,-0.580614566802979,0.735829770565033,0.386684060096741,-0.510616958141327,0.767949104309082,0.386522769927979,-0.511104047298431,0.767706155776978,0.378723204135895,-0.526249885559082,0.761334180831909,0.379608154296875,-0.524752855300903,0.761926531791687,0.373560786247253,-0.497600227594376,0.782845079898834,0.374221444129944,-0.497901916503906,0.782337427139282,0.384821653366089,-0.503874123096466,0.773319661617279,0.384495735168457,-0.503619194030762,0.773647665977478,0.373560786247253,-0.497600227594376,0.782845079898834,0.35142582654953,-0.495471656322479,0.794360041618347,0.352177143096924,-0.49541962146759,0.794059634208679,0.374221444129944,-0.497901916503906,0.782337427139282,0.312127828598022,-0.503364861011505,0.805729508399963,0.252297401428223,-0.519846022129059,0.816153228282928,0.253031820058823,-0.519650399684906,0.816050469875336,0.312185823917389,-0.503348469734192,0.805717289447784,0.179413244128227,-0.534564197063446,0.825864374637604,0.094629667699337,-0.537550568580627,0.837904870510101,0.100850567221642,-0.537807643413544,0.837013781070709,0.18300586938858,-0.534025371074677,0.825424611568451, +0.00233041378669441,-0.518018186092377,0.855366349220276,0.100850567221642,-0.537807643413544,0.837013781070709,0.094629667699337,-0.537550568580627,0.837904870510101,-0.00343270786106586,-0.515995025634766,0.856584668159485,0.0190402772277594,0.864888608455658,0.501602470874786,0.0459730587899685,0.873031675815582,0.485491633415222,0.0459740050137043,0.873032033443451,0.485490798950195,0.01833719573915,0.864737629890442,0.501888930797577,-0.0519832409918308,0.857025980949402,0.512644410133362,-0.0505382195115089,0.857214987277985,0.512472808361053,-0.0150686874985695,0.860455930233002,0.509301960468292,-0.0165698826313019,0.860370635986328,0.5093994140625,-0.0969036966562271,0.836754977703094,0.538934946060181,-0.0787875801324844,0.84974068403244,0.521280467510223,-0.0797038152813911,0.849310040473938,0.52184271812439,-0.097513347864151,0.836043775081635,0.539927780628204,-0.124958969652653,0.798009097576141,0.58954793214798,-0.123736597597599,0.799558460712433,0.587703585624695,-0.109650164842606,0.819549679756165,0.56241899728775,-0.110430099070072,0.818311333656311,0.56406706571579,-0.146055787801743,0.757469654083252,0.63632345199585,-0.139439716935158,0.778485357761383,0.611977994441986,-0.140107333660126,0.777526795864105,0.613043189048767,-0.146036252379417,0.757177412509918,0.636675596237183,-0.146055787801743,0.757469654083252,0.63632345199585,-0.146036252379417,0.757177412509918,0.636675596237183,-0.139290079474449,0.735013842582703,0.663590848445892,-0.139609977602959,0.735658049583435,0.662809371948242,-0.157263576984406,0.661720335483551,0.733071863651276,-0.156720668077469,0.662725627422333,0.732279598712921,-0.142065912485123,0.686476707458496,0.713138937950134,-0.143175557255745,0.684859871864319,0.714470267295837,-0.146945178508759,0.612073957920074,0.777028024196625,-0.146678790450096,0.6116743683815,0.777392864227295,-0.159694701433182,0.638713777065277,0.752689957618713,-0.159634724259377,0.63849538564682,0.752888023853302,-0.146945178508759,0.612073957920074,0.777028024196625,-0.132071286439896,0.582419514656067,0.802087664604187, +-0.131869971752167,0.58184677362442,0.802536427974701,-0.146678790450096,0.6116743683815,0.777392864227295,-0.11994905769825,0.528654515743256,0.840319335460663,-0.106911323964596,0.510180532932281,0.853396534919739,-0.10504125058651,0.508634269237518,0.854551017284393,-0.119399562478065,0.527406990528107,0.841181039810181,-0.0644147768616676,0.474510967731476,0.877889513969421,-0.0387583263218403,0.459295153617859,0.887437760829926,-0.0353098176419735,0.45823135972023,0.888131380081177,-0.0607058927416801,0.471675425767899,0.879680097103119,-0.0147860627621412,0.454014033079147,0.890871822834015,0.00991875492036343,0.449439108371735,0.893255889415741,0.0120452186092734,0.448758125305176,0.893572092056274,-0.0118500851094723,0.453808218240738,0.891020536422729,0.0367533974349499,0.438093841075897,0.898177564144135,0.0603763647377491,0.427349478006363,0.902068257331848,0.0603335686028004,0.427365481853485,0.902063548564911,0.0374773256480694,0.437710523605347,0.898334562778473,0.0805279389023781,0.425983488559723,0.901139974594116,0.099933847784996,0.43584355711937,0.894457101821899,0.0996300876140594,0.435626536607742,0.894596755504608,0.080284520983696,0.425907045602798,0.901197850704193,0.126784130930901,0.875133395195007,0.466976761817932,0.12500225007534,0.875634133815765,0.466518193483353,0.158060073852539,0.865613758563995,0.475110471248627,0.159493744373322,0.865143954753876,0.475486904382706,0.188640221953392,0.855529546737671,0.482166051864624,0.214856877923012,0.846478939056396,0.487144649028778,0.215113312005997,0.846386253833771,0.487192451953888,0.189333111047745,0.855300843715668,0.482300132513046,0.236839294433594,0.838032364845276,0.491537362337112,0.257817000150681,0.829220592975616,0.495906800031662,0.25734868645668,0.829422354698181,0.495812714099884,0.236772119998932,0.838059842586517,0.491522878408432,0.28039476275444,0.819087147712708,0.500474810600281,0.281094789505005,0.818760573863983,0.500616490840912,0.307315438985825,0.804662823677063,0.508010745048523,0.30729815363884,0.804673194885254,0.508004784584045, +0.3344486951828,0.784865379333496,0.521661043167114,0.357306033372879,0.760846138000488,0.541706204414368,0.35760423541069,0.760460376739502,0.542051017284393,0.335214018821716,0.784197092056274,0.522174894809723,0.372272193431854,0.73892068862915,0.561613380908966,0.385679841041565,0.723659634590149,0.572335243225098,0.385661154985428,0.723673939704895,0.572329938411713,0.372187852859497,0.739065051078796,0.561479270458221,0.40829610824585,0.71166718006134,0.571685254573822,0.443558752536774,0.69446325302124,0.566547870635986,0.446780383586884,0.692575752735138,0.566326916217804,0.409363925457001,0.711240112781525,0.571453154087067,0.475429803133011,0.669027864933014,0.57128643989563,0.487808048725128,0.641734063625336,0.591794431209564,0.487701922655106,0.637582540512085,0.596351623535156,0.478387445211411,0.665372967720032,0.573083102703094,0.483511924743652,0.615602910518646,0.622293531894684,0.478080153465271,0.589418828487396,0.651171863079071,0.478107064962387,0.584161102771759,0.655873000621796,0.481931835412979,0.611369907855988,0.627668976783752,0.479702144861221,0.560986161231995,0.674670517444611,0.475027710199356,0.535197019577026,0.698507606983185,0.471919745206833,0.531340181827545,0.703540503978729,0.480432480573654,0.555284321308136,0.678854823112488,0.44647616147995,0.520808517932892,0.727610766887665,0.398857027292252,0.521934151649475,0.753987848758698,0.397313386201859,0.522180438041687,0.754632115364075,0.440220803022385,0.520306766033173,0.731769382953644,0.358083575963974,0.486964613199234,0.796643972396851,0.361928433179855,0.511007070541382,0.779666364192963,0.361931473016739,0.509885132312775,0.780399084091187,0.357788383960724,0.486096143722534,0.797306716442108,0.330646514892578,0.450477480888367,0.829302668571472,0.33106917142868,0.450945436954498,0.828879654407501,0.345251023769379,0.464840590953827,0.815306603908539,0.344297707080841,0.463964253664017,0.81620854139328,0.317943781614304,0.431800216436386,0.84407365322113,0.317304700613022,0.431458026170731,0.844489097595215,0.325132757425308,0.440428704023361,0.836845934391022, +0.325131952762604,0.44042557477951,0.836847960948944,0.317943781614304,0.431800216436386,0.84407365322113,0.295868813991547,0.429900944232941,0.85302209854126,0.293058484792709,0.43024018406868,0.85382091999054,0.317304700613022,0.431458026170731,0.844489097595215,0.224763303995132,0.444438278675079,0.867154061794281,0.228532925248146,0.44474059343338,0.866012990474701,0.229290977120399,0.444516599178314,0.865927636623383,0.224679514765739,0.444500833749771,0.867143630981445,0.201242104172707,0.431706756353378,0.879278600215912,0.201227873563766,0.431705623865128,0.879282355308533,0.223470583558083,0.437733292579651,0.870890617370605,0.223489865660667,0.437751144170761,0.870876729488373,0.0937849879264832,0.881698250770569,0.462398707866669,0.12500225007534,0.875634133815765,0.466518193483353,0.126784130930901,0.875133395195007,0.466976761817932,0.094820499420166,0.881589353084564,0.462395250797272,-0.286475867033005,0.847042262554169,-0.447717607021332,-0.318277180194855,0.856026649475098,-0.407330423593521,-0.317086726427078,0.855662703514099,-0.409020066261292,-0.28526046872139,0.846725881099701,-0.449090093374252,0.659926056861877,0.545951664447784,0.516172826290131,0.687528431415558,0.519351422786713,0.507522106170654,0.687528491020203,0.519351482391357,0.507522165775299,0.64510577917099,0.559508442878723,0.520373821258545,-0.311003416776657,-0.670874893665314,-0.673204064369202,-0.318962424993515,-0.649161458015442,-0.690544903278351,-0.320822358131409,-0.646670460700989,-0.692018985748291,-0.310116618871689,-0.669642508029938,-0.674838304519653,-0.780010282993317,0.19120155274868,0.595840692520142,-0.779767513275146,0.191598951816559,0.596030533313751,-0.829477906227112,0.105161339044571,0.548550426959991,-0.829683184623718,0.104775190353394,0.548313796520233,0.463491231203079,0.461931347846985,0.756171524524689,0.383914113044739,0.474465161561966,0.792144417762756,0.384630084037781,0.474356204271317,0.79186224937439,0.464203417301178,0.461815178394318,0.755805492401123,0.108951069414616,0.989915132522583,-0.090541772544384, +0.109076291322708,0.989931285381317,-0.0902127325534821,0.108972452580929,0.989937484264374,-0.090269647538662,0.109050616621971,0.989912271499634,-0.090453676879406,0.10981859266758,0.989841938018799,-0.0902928039431572,0.109809406101704,0.98984432220459,-0.0902776345610619,0.109677262604237,0.989869296550751,-0.0901636704802513,0.109690770506859,0.989867150783539,-0.090171679854393,0.109690770506859,0.989867150783539,-0.090171679854393,0.109677262604237,0.989869296550751,-0.0901636704802513,0.109494462609291,0.989894270896912,-0.0901126638054848,0.109511680901051,0.98989200592041,-0.0901156663894653,0.109511680901051,0.98989200592041,-0.0901156663894653,0.109494462609291,0.989894270896912,-0.0901126638054848,0.109385825693607,0.98989075422287,-0.0902827605605125,0.10982158780098,0.989834368228912,-0.0903727784752846,0.10982158780098,0.989834368228912,-0.0903727784752846,0.109385825693607,0.98989075422287,-0.0902827605605125,0.110409438610077,0.989734172821045,-0.0907524451613426,0.107805237174034,0.990108668804169,-0.0897933021187782,0.107144922018051,0.990139067173004,-0.0902470126748085,0.107126720249653,0.990139842033386,-0.090261273086071,0.107453465461731,0.990107953548431,-0.0902219265699387,0.0831158235669136,-0.47706526517868,0.874928951263428,0.0860292986035347,-0.447738289833069,0.890016496181488,0.0475827939808369,-0.444023549556732,0.894750893115997,0.0421831570565701,-0.467899739742279,0.882774233818054,-0.0300238747149706,-0.621192693710327,0.78308242559433,0.00469943834468722,-0.621390581130981,0.783486902713776,0.0227749347686768,-0.551540493965149,0.83383721113205,-0.0148709500208497,-0.546777784824371,0.837145686149597,-0.0823800265789032,-0.759813010692596,-0.644901216030121,-0.08151775598526,-0.759966433048248,-0.644830107688904,-0.223020389676094,-0.735501945018768,-0.639764726161957,-0.224032536149025,-0.735363602638245,-0.639569938182831,0.166323766112328,0.433888763189316,0.885481178760529,0.166150853037834,0.433925867080688,0.885495543479919,0.142022803425789,0.442714840173721,0.885343432426453, +0.142115205526352,0.442654430866241,0.885358810424805,0.0856622904539108,-0.440617769956589,0.893598318099976,0.0494742728769779,-0.438117414712906,0.897555351257324,0.0475827939808369,-0.444023549556732,0.894750893115997,0.0860292986035347,-0.447738289833069,0.890016496181488,0.0747214257717133,0.956929087638855,-0.280541300773621,0.0319095887243748,0.949040532112122,-0.31353434920311,0.0899064093828201,0.950601279735565,-0.297109514474869,0.0908438563346863,0.949721217155457,-0.299628227949142,0.105227038264275,0.990196526050568,-0.0918591395020485,0.105231009423733,0.990196466445923,-0.0918556228280067,0.107126720249653,0.990139842033386,-0.090261273086071,0.107144922018051,0.990139067173004,-0.0902470126748085,-0.642699897289276,0.568459153175354,0.513605892658234,-0.584694802761078,0.567721903324127,0.579503059387207,-0.58522617816925,0.567733764648438,0.578954875469208,-0.643194496631622,0.568460047245026,0.512985467910767,0.108040742576122,0.99006462097168,-0.0899965167045593,0.108042880892754,0.990063548088074,-0.0900044739246368,0.108005508780479,0.990075528621674,-0.0899181440472603,0.108003593981266,0.990075945854187,-0.0899155214428902,0.107963792979717,0.990023732185364,-0.0905359089374542,0.107950791716576,0.990008473396301,-0.0907187983393669,0.107949279248714,0.990006923675537,-0.0907371565699577,0.107962943613529,0.990022480487823,-0.0905511900782585,0.107970170676708,0.990039825439453,-0.0903537720441818,0.107963792979717,0.990023732185364,-0.0905359089374542,0.107962943613529,0.990022480487823,-0.0905511900782585,0.107970081269741,0.990038752555847,-0.0903642252087593,0.107761107385159,0.990077078342438,-0.0901939496397972,0.107970170676708,0.990039825439453,-0.0903537720441818,0.107970081269741,0.990038752555847,-0.0903642252087593,0.107997789978981,0.990053534507751,-0.0901694297790527,0.10781255364418,0.990085542201996,-0.090038999915123,0.107997789978981,0.990053534507751,-0.0901694297790527,0.108042880892754,0.990063548088074,-0.0900044739246368,0.108040742576122,0.99006462097168,-0.0899965167045593, +0.10781255364418,0.990085542201996,-0.090038999915123,0.107761107385159,0.990077078342438,-0.0901939496397972,0.107997789978981,0.990053534507751,-0.0901694297790527,0.107000268995762,0.990012586116791,-0.0917944237589836,0.107000149786472,0.990012168884277,-0.0917978584766388,0.107000321149826,0.990003764629364,-0.0918879061937332,0.107000149786472,0.990004301071167,-0.0918832197785378,0.107005439698696,0.990020334720612,-0.0917038097977638,0.107005260884762,0.990020155906677,-0.0917060598731041,0.107000149786472,0.990012168884277,-0.0917978584766388,0.107000268995762,0.990012586116791,-0.0917944237589836,0.106792293488979,0.990191400051117,-0.0900908336043358,0.106793016195297,0.990190863609314,-0.0900960490107536,0.107005260884762,0.990020155906677,-0.0917060598731041,0.107005439698696,0.990020334720612,-0.0917038097977638,0.10674687474966,0.9902064204216,-0.0899793356657028,0.106743775308132,0.990206658840179,-0.0899803787469864,0.106793016195297,0.990190863609314,-0.0900960490107536,0.106792293488979,0.990191400051117,-0.0900908336043358,0.106820687651634,0.990198910236359,-0.0899747237563133,0.106834016740322,0.99019730091095,-0.0899761915206909,0.106257356703281,0.990247130393982,-0.0901108533143997,0.106255672872066,0.990247488021851,-0.0901097878813744,0.106743775308132,0.990206658840179,-0.0899803787469864,0.10674687474966,0.9902064204216,-0.0899793356657028,0.106174059212208,0.990260601043701,-0.0900614038109779,0.106173329055309,0.990260779857635,-0.0900610461831093,0.106255672872066,0.990247488021851,-0.0901097878813744,0.106257356703281,0.990247130393982,-0.0901108533143997,0.106120489537716,0.990268051624298,-0.0900419726967812,0.10612041503191,0.990268111228943,-0.0900419652462006,0.106173329055309,0.990260779857635,-0.0900610461831093,0.106174059212208,0.990260601043701,-0.0900614038109779,0.1061035618186,0.990268170833588,-0.0900604650378227,0.106103539466858,0.990268290042877,-0.0900601372122765,0.10612041503191,0.990268111228943,-0.0900419652462006,0.106120489537716,0.990268051624298,-0.0900419726967812, +0.106126382946968,0.990260303020477,-0.090120330452919,0.106125563383102,0.990260541439056,-0.0901187881827354,0.106103539466858,0.990268290042877,-0.0900601372122765,0.1061035618186,0.990268170833588,-0.0900604650378227,0.106186620891094,0.990244805812836,-0.0902192518115044,0.106184408068657,0.990245401859283,-0.0902158617973328,0.106125563383102,0.990260541439056,-0.0901187881827354,0.106126382946968,0.990260303020477,-0.090120330452919,0.106276884675026,0.990223288536072,-0.0903495922684669,0.106273017823696,0.990224182605743,-0.0903441682457924,0.106184408068657,0.990245401859283,-0.0902158617973328,0.106186620891094,0.990244805812836,-0.0902192518115044,0.106386192142963,0.990197718143463,-0.0905004143714905,0.106381021440029,0.990199029445648,-0.0904933363199234,0.106273017823696,0.990224182605743,-0.0903441682457924,0.106276884675026,0.990223288536072,-0.0903495922684669,0.106335759162903,0.990135312080383,-0.0912410765886307,0.10633722692728,0.990136086940765,-0.0912299528717995,0.106381021440029,0.990199029445648,-0.0904933363199234,0.106386192142963,0.990197718143463,-0.0905004143714905,0.109803564846516,0.989689230918884,-0.0919697806239128,0.109806932508945,0.989691495895386,-0.091941125690937,0.109857298433781,0.98972475528717,-0.0915216580033302,0.109853282570839,0.98972225189209,-0.0915543362498283,0.106268137693405,0.990117073059082,-0.0915156081318855,0.106277249753475,0.990119338035583,-0.0914819836616516,0.106482401490211,0.990108609199524,-0.0913577079772949,0.10645504295826,0.990112781524658,-0.0913454666733742,0.10633722692728,0.990136086940765,-0.0912299528717995,0.106335759162903,0.990135312080383,-0.0912410765886307,0.10645504295826,0.990112781524658,-0.0913454666733742,0.106482401490211,0.990108609199524,-0.0913577079772949,0.109761968255043,0.989625215530396,-0.0927052274346352,0.109762251377106,0.989623546600342,-0.0927225798368454,0.109762251377106,0.989623546600342,-0.0927225798368454,0.109761968255043,0.989625215530396,-0.0927052274346352,0.109769552946091,0.989658355712891,-0.0923421159386635, +0.109767846763134,0.989656388759613,-0.092365100979805,0.109767846763134,0.989656388759613,-0.092365100979805,0.109769552946091,0.989658355712891,-0.0923421159386635,0.109806932508945,0.989691495895386,-0.091941125690937,0.109803564846516,0.989689230918884,-0.0919697806239128,0.105590730905533,0.990006148815155,-0.0934797450900078,0.105604931712151,0.990004181861877,-0.0934848189353943,0.106277249753475,0.990119338035583,-0.0914819836616516,0.106268137693405,0.990117073059082,-0.0915156081318855,0.105306163430214,0.990046739578247,-0.0933707877993584,0.105319701135159,0.990044772624969,-0.093376450240612,0.105604931712151,0.990004181861877,-0.0934848189353943,0.105590730905533,0.990006148815155,-0.0934797450900078,0.105079747736454,0.990081131458282,-0.0932609364390373,0.105090789496899,0.990079402923584,-0.0932672470808029,0.105319701135159,0.990044772624969,-0.093376450240612,0.105306163430214,0.990046739578247,-0.0933707877993584,0.104930251836777,0.990107595920563,-0.0931484252214432,0.104937098920345,0.990106105804443,-0.0931553468108177,0.105090789496899,0.990079402923584,-0.0932672470808029,0.105079747736454,0.990081131458282,-0.0932609364390373,0.104866594076157,0.990125298500061,-0.0930318012833595,0.1048683822155,0.990124404430389,-0.0930392891168594,0.104937098920345,0.990106105804443,-0.0931553468108177,0.104930251836777,0.990107595920563,-0.0931484252214432,0.104886680841446,0.990134716033936,-0.0929086580872536,0.104883477091789,0.990134298801422,-0.0929167196154594,0.1048683822155,0.990124404430389,-0.0930392891168594,0.104866594076157,0.990125298500061,-0.0930318012833595,0.104979760944843,0.990137159824371,-0.0927761793136597,0.104972444474697,0.990137219429016,-0.0927847400307655,0.104883477091789,0.990134298801422,-0.0929167196154594,0.104886680841446,0.990134716033936,-0.0929086580872536,0.105129823088646,0.990135133266449,-0.0926297083497047,0.105119772255421,0.990135252475739,-0.0926388427615166,0.104972444474697,0.990137219429016,-0.0927847400307655,0.104979760944843,0.990137159824371,-0.0927761793136597, +0.105665482580662,0.990034282207489,-0.0930963158607483,0.105587504804134,0.990043103694916,-0.0930907279253006,0.105119772255421,0.990135252475739,-0.0926388427615166,0.105129823088646,0.990135133266449,-0.0926297083497047,0.10577330738306,0.990021407604218,-0.0931110233068466,0.105665482580662,0.990034282207489,-0.0930963158607483,0.107035763561726,0.989878237247467,-0.0931905955076218,0.107074685394764,0.989874064922333,-0.0931902229785919,0.105869397521019,0.990023910999298,-0.0929752290248871,0.105829052627087,0.990026414394379,-0.0929934456944466,0.105587504804134,0.990043103694916,-0.0930907279253006,0.105665482580662,0.990034282207489,-0.0930963158607483,0.10577330738306,0.990021407604218,-0.0931110233068466,0.107065983116627,0.989943444728851,-0.0924590229988098,0.107063092291355,0.98994392156601,-0.0924580246210098,0.105829052627087,0.990026414394379,-0.0929934456944466,0.105869397521019,0.990023910999298,-0.0929752290248871,0.107135146856308,0.989933013916016,-0.0924911946058273,0.107132777571678,0.989933490753174,-0.0924897268414497,0.107063092291355,0.98994392156601,-0.0924580246210098,0.107065983116627,0.989943444728851,-0.0924590229988098,0.107195898890495,0.989921033382416,-0.0925494357943535,0.107195772230625,0.989921092987061,-0.0925491973757744,0.107132777571678,0.989933490753174,-0.0924897268414497,0.107135146856308,0.989933013916016,-0.0924911946058273,0.107186034321785,0.989913582801819,-0.092639647424221,0.107185430824757,0.989913582801819,-0.0926405042409897,0.107195772230625,0.989921092987061,-0.0925491973757744,0.107195898890495,0.989921033382416,-0.0925494357943535,0.107147194445133,0.9899080991745,-0.0927431136369705,0.107147239148617,0.989908277988434,-0.0927426666021347,0.107185430824757,0.989913582801819,-0.0926405042409897,0.107186034321785,0.989913582801819,-0.092639647424221,0.107210837304592,0.989889562129974,-0.0928686410188675,0.107211470603943,0.989889442920685,-0.0928692147135735,0.107147239148617,0.989908277988434,-0.0927426666021347,0.107147194445133,0.9899080991745,-0.0927431136369705, +0.107304833829403,0.989865005016327,-0.0930213183164597,0.107304595410824,0.989864885807037,-0.0930227041244507,0.107211470603943,0.989889442920685,-0.0928692147135735,0.107210837304592,0.989889562129974,-0.0928686410188675,0.107061758637428,0.98988538980484,-0.0930845737457275,0.107049509882927,0.989886701107025,-0.0930840373039246,0.107304595410824,0.989864885807037,-0.0930227041244507,0.107304833829403,0.989865005016327,-0.0930213183164597,0.105400182306767,0.990086734294891,-0.0928381234407425,0.105898626148701,0.98992919921875,-0.0939444899559021,0.105999857187271,0.989911079406738,-0.09402184933424,0.105747036635876,0.989991426467896,-0.0934589132666588,0.106730476021767,0.98991584777832,-0.0931412652134895,0.106728054583073,0.989915728569031,-0.0931453704833984,0.107049509882927,0.989886701107025,-0.0930840373039246,0.107061758637428,0.98988538980484,-0.0930845737457275,0.106726437807083,0.989896535873413,-0.0933513566851616,0.106728985905647,0.989895582199097,-0.0933579951524734,0.106728054583073,0.989915728569031,-0.0931453704833984,0.106730476021767,0.98991584777832,-0.0931412652134895,0.106723457574844,0.989877223968506,-0.0935577750205994,0.106721214950085,0.989877343177795,-0.0935597643256187,0.106728985905647,0.989895582199097,-0.0933579951524734,0.106726437807083,0.989896535873413,-0.0933513566851616,0.106394223868847,0.989919781684875,-0.0934822782874107,0.106381483376026,0.989921867847443,-0.0934754833579063,0.106721214950085,0.989877343177795,-0.0935597643256187,0.106723457574844,0.989877223968506,-0.0935577750205994,0.105788059532642,0.990025341510773,-0.0930521711707115,0.106166325509548,0.989932477474213,-0.0936070904135704,0.106381483376026,0.989921867847443,-0.0934754833579063,0.106394223868847,0.989919781684875,-0.0934822782874107,0.105747036635876,0.989991426467896,-0.0934589132666588,0.106166325509548,0.989932477474213,-0.0936070904135704,0.105788059532642,0.990025341510773,-0.0930521711707115,0.105747036635876,0.989991426467896,-0.0934589132666588,0.105999857187271,0.989911079406738,-0.09402184933424, +0.106166325509548,0.989932477474213,-0.0936070904135704,0.1047088727355,0.990223348140717,-0.0921617746353149,0.104709215462208,0.990222692489624,-0.0921688452363014,0.104710765182972,0.990199744701385,-0.0924130976200104,0.104859538376331,0.990215241909027,-0.0920766368508339,0.104859538376331,0.990215241909027,-0.0920766368508339,0.104710765182972,0.990199744701385,-0.0924130976200104,0.104953967034817,0.990204036235809,-0.0920898169279099,0.104859538376331,0.990215241909027,-0.0920766368508339,0.104953967034817,0.990204036235809,-0.0920898169279099,0.105070911347866,0.990176558494568,-0.0922533348202705,0.105400182306767,0.990086734294891,-0.0928381234407425,0.105400182306767,0.990086734294891,-0.0928381234407425,0.106165878474712,0.989732205867767,-0.0957028046250343,0.105898626148701,0.98992919921875,-0.0939444899559021,0.105400182306767,0.990086734294891,-0.0928381234407425,0.105070911347866,0.990176558494568,-0.0922533348202705,0.106165878474712,0.989732205867767,-0.0957028046250343,0.104538284242153,0.990222275257111,-0.0923663452267647,0.104496717453003,0.990213572978973,-0.0925080999732018,0.105231009423733,0.990196466445923,-0.0918556228280067,0.105227038264275,0.990196526050568,-0.0918591395020485,0.104534797370434,0.990221560001373,-0.0923782214522362,0.104697227478027,0.990251243114471,-0.0918743312358856,0.104538284242153,0.990222275257111,-0.0923663452267647,0.104534797370434,0.990221560001373,-0.0923782214522362,0.104693360626698,0.990250706672668,-0.091884583234787,0.104796089231968,0.990266561508179,-0.0915971025824547,0.104697227478027,0.990251243114471,-0.0918743312358856,0.104693360626698,0.990250706672668,-0.091884583234787,0.104795821011066,0.990266501903534,-0.0915981978178024,0.104783430695534,0.990265011787415,-0.0916270762681961,0.104796089231968,0.990266561508179,-0.0915971025824547,0.104795821011066,0.990266501903534,-0.0915981978178024,0.104783274233341,0.990265011787415,-0.0916275680065155,0.104729197919369,0.990249037742615,-0.0918611586093903,0.104783430695534,0.990265011787415,-0.0916270762681961, +0.104783274233341,0.990265011787415,-0.0916275680065155,0.104728735983372,0.99024897813797,-0.0918638706207275,0.1047088727355,0.990223348140717,-0.0921617746353149,0.104729197919369,0.990249037742615,-0.0918611586093903,0.104728735983372,0.99024897813797,-0.0918638706207275,0.104709215462208,0.990222692489624,-0.0921688452363014,0.108330942690372,0.989931762218475,-0.0911011397838593,0.106685057282448,0.989978075027466,-0.0925299674272537,0.108951069414616,0.989915132522583,-0.090541772544384,0.109050616621971,0.989912271499634,-0.090453676879406,0.106564968824387,0.990088880062103,-0.0914771407842636,0.107453465461731,0.990107953548431,-0.0902219265699387,0.105865962803364,0.990076541900635,-0.0924169346690178,0.105827212333679,0.989998817443848,-0.0932888984680176,0.106685057282448,0.989978075027466,-0.0925299674272537,0.108330942690372,0.989931762218475,-0.0911011397838593,0.105894178152084,0.990009546279907,-0.0930996537208557,0.105097100138664,0.990035891532898,-0.0937198549509048,0.106685057282448,0.989978075027466,-0.0925299674272537,0.105827212333679,0.989998817443848,-0.0932888984680176,0.105114467442036,0.990050613880157,-0.0935458987951279,0.105097100138664,0.990035891532898,-0.0937198549509048,0.105894178152084,0.990009546279907,-0.0930996537208557,0.105865962803364,0.990076541900635,-0.0924169346690178,0.105097100138664,0.990035891532898,-0.0937198549509048,0.105114467442036,0.990050613880157,-0.0935458987951279,0.105258785188198,0.990063607692719,-0.0932456403970718,0.105865962803364,0.990076541900635,-0.0924169346690178,0.105258785188198,0.990063607692719,-0.0932456403970718,0.10667210072279,0.99009096622467,-0.0913283005356789,0.106564968824387,0.990088880062103,-0.0914771407842636,0.105865962803364,0.990076541900635,-0.0924169346690178,0.10667210072279,0.99009096622467,-0.0913283005356789,0.107764855027199,0.99010956287384,-0.0898310169577599,0.107453465461731,0.990107953548431,-0.0902219265699387,0.106564968824387,0.990088880062103,-0.0914771407842636,0.107807688415051,0.99010819196701,-0.0897959321737289, +0.107805237174034,0.990108668804169,-0.0897933021187782,0.107453465461731,0.990107953548431,-0.0902219265699387,0.107764855027199,0.99010956287384,-0.0898310169577599,0.10791976749897,0.989981114864349,-0.0910536125302315,0.1079086586833,0.98996913433075,-0.0911964625120163,0.107907451689243,0.98996764421463,-0.0912140905857086,0.107917986810207,0.989979445934296,-0.091072604060173,0.10793486982584,0.989994168281555,-0.0908934473991394,0.10791976749897,0.989981114864349,-0.0910536125302315,0.107917986810207,0.989979445934296,-0.091072604060173,0.107932977378368,0.989992618560791,-0.0909129157662392,0.107950791716576,0.990008473396301,-0.0907187983393669,0.10793486982584,0.989994168281555,-0.0908934473991394,0.107932977378368,0.989992618560791,-0.0909129157662392,0.107949279248714,0.990006923675537,-0.0907371565699577,0.107513964176178,0.989977180957794,-0.0915748700499535,0.107944793999195,0.989896893501282,-0.091935358941555,0.107595026493073,0.98997038602829,-0.0915535986423492,0.107513964176178,0.989977180957794,-0.0915748700499535,0.107595026493073,0.98997038602829,-0.0915535986423492,0.107407599687576,0.990011990070343,-0.0913233384490013,0.107386566698551,0.990012526512146,-0.0913423597812653,0.107513964176178,0.989977180957794,-0.0915748700499535,0.107386566698551,0.990012526512146,-0.0913423597812653,0.107180453836918,0.989942491054535,-0.0923375487327576,0.107513964176178,0.989977180957794,-0.0915748700499535,0.107180453836918,0.989942491054535,-0.0923375487327576,0.107271119952202,0.98995453119278,-0.0921035334467888,0.107308752834797,0.989956617355347,-0.0920367315411568,0.107513964176178,0.989977180957794,-0.0915748700499535,0.107271119952202,0.98995453119278,-0.0921035334467888,0.107290789484978,0.98995578289032,-0.0920664146542549,0.108246572315693,0.990035772323608,-0.0900662317872047,0.107928663492203,0.99007248878479,-0.0900432169437408,0.108025416731834,0.990055441856384,-0.0901149958372116,0.106834016740322,0.99019730091095,-0.0899761915206909,0.106820687651634,0.990198910236359,-0.0899747237563133, +0.108025416731834,0.990055441856384,-0.0901149958372116,0.107928663492203,0.99007248878479,-0.0900432169437408,0.107478767633438,0.98993968963623,-0.0920195654034615,0.107411541044712,0.989953994750977,-0.091945081949234,0.106968685984612,0.990028619766235,-0.0916571691632271,0.107169844210148,0.990003108978271,-0.0916970148682594,0.107143878936768,0.990008056163788,-0.0916752219200134,0.107135780155659,0.990008056163788,-0.0916837528347969,0.107411541044712,0.989953994750977,-0.091945081949234,0.107169844210148,0.990003108978271,-0.0916970148682594,0.107135780155659,0.990008056163788,-0.0916837528347969,0.107126303017139,0.990009009838104,-0.0916855335235596,0.10722828656435,0.989994943141937,-0.0917181745171547,0.107294574379921,0.989981174468994,-0.0917882174253464,0.107338063418865,0.989972233772278,-0.0918350368738174,0.107294574379921,0.989981174468994,-0.0917882174253464,0.107375852763653,0.989961743354797,-0.0919034332036972,0.10735060274601,0.989970028400421,-0.0918430536985397,0.107338063418865,0.989972233772278,-0.0918350368738174,0.107375852763653,0.989961743354797,-0.0919034332036972,0.10737069696188,0.989966452121735,-0.0918574631214142,0.10735060274601,0.989970028400421,-0.0918430536985397,0.10737069696188,0.989966452121735,-0.0918574631214142,0.107375852763653,0.989961743354797,-0.0919034332036972,0.107398018240929,0.989956974983215,-0.0919291079044342,0.107366777956486,0.989955425262451,-0.0919815972447395,0.107390664517879,0.989955127239227,-0.091957114636898,0.107373535633087,0.989956438541412,-0.0919626504182816,0.107366777956486,0.989955425262451,-0.0919815972447395,0.107373535633087,0.989956438541412,-0.0919626504182816,0.107308752834797,0.989956617355347,-0.0920367315411568,0.107356190681458,0.989954650402069,-0.0920022949576378,0.107305735349655,0.98994380235672,-0.0921782925724983,0.107308752834797,0.989956617355347,-0.0920367315411568,0.107297763228416,0.989939451217651,-0.092234343290329,0.107150129973888,0.989971399307251,-0.0920619890093803,0.107150197029114,0.989971160888672,-0.0920651108026505, +0.107135534286499,0.98993706703186,-0.0924481377005577,0.107139259576797,0.989935100078583,-0.092464953660965,0.107073791325092,0.989987552165985,-0.0919776856899261,0.106932945549488,0.98999810218811,-0.0920275151729584,0.107147194445133,0.989972412586212,-0.0920545905828476,0.107150197029114,0.989971160888672,-0.0920651108026505,0.107150129973888,0.989971399307251,-0.0920619890093803,0.109385825693607,0.98989075422287,-0.0902827605605125,0.107805237174034,0.990108668804169,-0.0897933021187782,0.107807688415051,0.99010819196701,-0.0897959321737289,0.109489046037197,0.989869117736816,-0.0903948321938515,-0.209106370806694,0.811998307704926,-0.544915795326233,-0.292901903390884,0.769643068313599,-0.567325294017792,-0.30839017033577,0.761007130146027,-0.570757210254669,-0.239218771457672,0.797632575035095,-0.553675711154938,-0.0507490150630474,0.919102966785431,-0.390735656023026,-0.136086225509644,0.862029552459717,-0.488247513771057,-0.14872108399868,0.847546756267548,-0.509456932544708,-0.0727804228663445,0.908120632171631,-0.41233491897583,-0.607207596302032,0.616229236125946,-0.501558125019073,-0.615140914916992,0.614202201366425,-0.494325131177902,-0.554683864116669,0.63566517829895,-0.536894381046295,-0.530680358409882,0.646599531173706,-0.547984838485718,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.0268522948026657,-0.295383661985397,0.95500123500824,0.0996147990226746,-0.310065031051636,0.945482134819031,0.156814828515053,-0.311870008707047,0.937094509601593,0.192522287368774,-0.307569831609726,0.931845486164093,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.0996147990226746,-0.310065031051636,0.945482134819031,0.156814828515053,-0.311870008707047,0.937094509601593,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.00680324109271169,-0.743137419223785,0.669104218482971,-0.00839583296328783,-0.740432560443878,0.672078192234039,-0.0352162383496761,-0.736778855323792,0.67521595954895,-0.00272547081112862,-0.531193137168884,0.847246408462524, +-0.00839583296328783,-0.740432560443878,0.672078192234039,-0.0551369413733482,-0.734911680221558,0.675917744636536,-0.0632151067256927,-0.734642386436462,0.675503015518188,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.193154454231262,-0.313466012477875,0.929747462272644,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.208944365382195,-0.304562926292419,0.929292023181915,0.208944365382195,-0.304562926292419,0.929292023181915,-0.00272547081112862,-0.531193137168884,0.847246408462524,0.210368201136589,-0.303417325019836,0.929345548152924,-0.0705677196383476,-0.247022330760956,0.966436862945557,-0.0349617376923561,-0.269924968481064,0.962246477603912,-0.00272547081112862,-0.531193137168884,0.847246408462524,-0.798272311687469,0.530124366283417,-0.285883903503418,-0.816087126731873,0.552609443664551,-0.169188529253006,-0.814059317111969,0.537978768348694,-0.218829795718193,-0.689720392227173,0.582654774188995,-0.429882705211639,-0.743477463722229,0.553153276443481,-0.375849336385727,-0.814059317111969,0.537978768348694,-0.218829795718193,0.107920706272125,0.989850044250488,-0.0924662202596664,0.107899308204651,0.989865064620972,-0.0923299267888069,0.107965543866158,0.989872992038727,-0.0921672657132149,-0.75459223985672,0.465805470943451,-0.462185889482498,-0.823954045772552,0.305536270141602,-0.477228790521622,-0.748102724552155,0.32606166601181,-0.57794976234436,-0.641277730464935,0.478990405797958,-0.599442362785339,-0.823954045772552,0.305536270141602,-0.477228790521622,-0.898703098297119,0.171856060624123,-0.403482407331467,-0.834174335002899,0.171858638525009,-0.5240398645401,-0.748102724552155,0.32606166601181,-0.57794976234436,-0.915740847587585,-0.128389105200768,-0.380703210830688,-0.883838593959808,-0.0550799034535885,-0.464538037776947,-0.914596796035767,-0.0584048591554165,-0.400126904249191,-0.93591433763504,-0.155002787709236,-0.316288858652115,-0.893979787826538,-0.394452691078186,0.212619945406914,-0.870072960853577,-0.391978114843369,0.298875033855438,-0.900952637195587,-0.363071650266647,0.237620115280151, +-0.909937858581543,-0.378480046987534,0.169605419039726,-0.879079759120941,0.0545361153781414,-0.473544776439667,-0.914596796035767,-0.0584048591554165,-0.400126904249191,-0.883838593959808,-0.0550799034535885,-0.464538037776947,-0.843964040279388,0.0443088226020336,-0.534566581249237,-0.930738568305969,-0.287072390317917,-0.226528599858284,-0.929230988025665,-0.181308254599571,-0.321958243846893,-0.942311406135559,-0.255702167749405,-0.216022416949272,-0.929230988025665,-0.181308254599571,-0.321958243846893,-0.915740847587585,-0.128389105200768,-0.380703210830688,-0.93591433763504,-0.155002787709236,-0.316288858652115,-0.942311406135559,-0.255702167749405,-0.216022416949272,-0.942311406135559,-0.255702167749405,-0.216022416949272,-0.93591433763504,-0.155002787709236,-0.316288858652115,-0.966890752315521,-0.143484875559807,-0.21103148162365,-0.960497677326202,-0.258555889129639,-0.102922067046165,-0.542803108692169,-0.499213099479675,0.675389587879181,-0.62445455789566,-0.477743417024612,0.617914080619812,-0.659939706325531,-0.463738262653351,0.591122925281525,-0.568780422210693,-0.483123153448105,0.665643155574799,-0.856022953987122,-0.446936935186386,0.259753704071045,-0.833627700805664,-0.454055666923523,0.314480870962143,-0.806883811950684,-0.447147369384766,0.386002361774445,-0.836326658725739,-0.436529457569122,0.331662327051163,0.0727533102035522,-0.966231167316437,-0.247192934155464,0.173500835895538,-0.983356356620789,-0.0539235472679138,0.23435415327549,-0.939100682735443,-0.25133228302002,0.15466719865799,-0.929469048976898,-0.334911048412323,0.0062291999347508,-0.990969955921173,-0.133938610553741,0.138218611478806,-0.970393598079681,0.198070451617241,0.173500835895538,-0.983356356620789,-0.0539235472679138,0.0727533102035522,-0.966231167316437,-0.247192934155464,0.271911472082138,-0.961562275886536,0.038238100707531,0.173500835895538,-0.983356356620789,-0.0539235472679138,0.138218611478806,-0.970393598079681,0.198070451617241,0.250744193792343,-0.850114345550537,0.463069230318069,0.223243102431297,-0.753952860832214,0.617833077907562, +0.340499520301819,-0.925959706306458,0.163274735212326,0.271911472082138,-0.961562275886536,0.038238100707531,0.250744193792343,-0.850114345550537,0.463069230318069,-0.928229689598083,-0.368470788002014,-0.051173560321331,-0.934256553649902,-0.328212589025497,-0.139431312680244,-0.943566024303436,-0.327481031417847,-0.0493887029588223,-0.924871206283569,-0.380095243453979,0.0118655255064368,-0.934256553649902,-0.328212589025497,-0.139431312680244,-0.942311406135559,-0.255702167749405,-0.216022416949272,-0.960497677326202,-0.258555889129639,-0.102922067046165,-0.943566024303436,-0.327481031417847,-0.0493887029588223,-0.942121505737305,0.0769172087311745,-0.326329469680786,-0.963285148143768,-0.0192505791783333,-0.267789155244827,-0.914596796035767,-0.0584048591554165,-0.400126904249191,-0.879079759120941,0.0545361153781414,-0.473544776439667,-0.963285148143768,-0.0192505791783333,-0.267789155244827,-0.989501714706421,-0.0315624251961708,-0.141032323241234,-0.989092409610748,-0.0998007878661156,-0.108332894742489,-0.966890752315521,-0.143484875559807,-0.21103148162365,-0.976318955421448,-0.215805724263191,0.0151368416845798,-0.989118337631226,-0.146823719143867,0.00936732348054647,-0.920321881771088,-0.327427268028259,0.214006915688515,-0.914900362491608,-0.38656622171402,0.116292290389538,0.114090070128441,0.98940247297287,-0.089811697602272,0.114090204238892,0.98940247297287,-0.0898119136691093,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090204238892,0.98940247297287,-0.0898119136691093,0.11409005522728,0.989402532577515,-0.0898117944598198,0.114090047776699,0.98940247297287,-0.089811772108078,0.11409005522728,0.989402532577515,-0.0898117944598198,0.11408993601799,0.989402532577515,-0.0898115113377571,0.114090047776699,0.98940247297287,-0.089811772108078,0.11408993601799,0.989402532577515,-0.0898115113377571,0.114090271294117,0.989402413368225,-0.0898120850324631,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090271294117,0.989402413368225,-0.0898120850324631,0.114089742302895,0.989402651786804,-0.0898110866546631, +0.114090047776699,0.98940247297287,-0.089811772108078,0.114089742302895,0.989402651786804,-0.0898110866546631,0.11409043520689,0.989402234554291,-0.0898137167096138,0.114090047776699,0.98940247297287,-0.089811772108078,0.11409043520689,0.989402234554291,-0.0898137167096138,0.114090695977211,0.98940235376358,-0.0898119211196899,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090695977211,0.98940235376358,-0.0898119211196899,0.114089630544186,0.98940247297287,-0.0898116827011108,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089630544186,0.98940247297287,-0.0898116827011108,0.114088885486126,0.989402711391449,-0.0898105651140213,0.114090047776699,0.98940247297287,-0.089811772108078,0.114088885486126,0.989402711391449,-0.0898105651140213,0.114091038703918,0.989402532577515,-0.0898104682564735,0.114090047776699,0.98940247297287,-0.089811772108078,0.114088527858257,0.989402830600739,-0.0898103043437004,0.114089973270893,0.989402413368225,-0.0898124203085899,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089973270893,0.989402413368225,-0.0898124203085899,0.11409106105566,0.98940235376358,-0.0898122489452362,0.114090047776699,0.98940247297287,-0.089811772108078,0.11409106105566,0.98940235376358,-0.0898122489452362,0.11409030854702,0.989402592182159,-0.0898109897971153,0.114090047776699,0.98940247297287,-0.089811772108078,0.11409030854702,0.989402592182159,-0.0898109897971153,0.114089719951153,0.98940247297287,-0.0898117199540138,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089719951153,0.98940247297287,-0.0898117199540138,0.114089995622635,0.989402413368225,-0.0898125693202019,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089995622635,0.989402413368225,-0.0898125693202019,0.114089772105217,0.989402532577515,-0.0898114740848541,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089772105217,0.989402532577515,-0.0898114740848541,0.114089995622635,0.98940247297287,-0.0898120924830437,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089995622635,0.98940247297287,-0.0898120924830437, +0.114090070128441,0.98940247297287,-0.0898114740848541,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090070128441,0.98940247297287,-0.0898114740848541,0.114090286195278,0.98940247297287,-0.0898123607039452,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090286195278,0.98940247297287,-0.0898123607039452,0.114090017974377,0.98940247297287,-0.0898113399744034,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090017974377,0.98940247297287,-0.0898113399744034,0.114089958369732,0.989402532577515,-0.0898117572069168,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089958369732,0.989402532577515,-0.0898117572069168,0.114089772105217,0.98940247297287,-0.0898119062185287,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089772105217,0.98940247297287,-0.0898119062185287,0.114089995622635,0.98940247297287,-0.0898116081953049,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089995622635,0.98940247297287,-0.0898116081953049,0.114090092480183,0.989402413368225,-0.0898121148347855,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090092480183,0.989402413368225,-0.0898121148347855,0.114090152084827,0.98940247297287,-0.0898116454482079,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090152084827,0.98940247297287,-0.0898116454482079,0.114090159535408,0.989402413368225,-0.0898119807243347,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090159535408,0.989402413368225,-0.0898119807243347,0.114090010523796,0.989402532577515,-0.0898114740848541,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090010523796,0.989402532577515,-0.0898114740848541,0.114089794456959,0.989402592182159,-0.0898116454482079,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089794456959,0.989402592182159,-0.0898116454482079,0.114089980721474,0.98940247297287,-0.0898116454482079,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089980721474,0.98940247297287,-0.0898116454482079,0.114090144634247,0.989402532577515,-0.0898116007447243,0.114090047776699,0.98940247297287,-0.089811772108078, +0.114090144634247,0.989402532577515,-0.0898116007447243,0.114089913666248,0.989402592182159,-0.0898116901516914,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089913666248,0.989402592182159,-0.0898116901516914,0.114090122282505,0.98940247297287,-0.0898118987679482,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090122282505,0.98940247297287,-0.0898118987679482,0.114090092480183,0.989402413368225,-0.0898117497563362,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090092480183,0.989402413368225,-0.0898117497563362,0.114090099930763,0.989402592182159,-0.0898116827011108,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090099930763,0.989402592182159,-0.0898116827011108,0.114090114831924,0.989402413368225,-0.089811772108078,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090114831924,0.989402413368225,-0.089811772108078,0.114089801907539,0.989402532577515,-0.0898116752505302,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089801907539,0.989402532577515,-0.0898116752505302,0.114089787006378,0.989402532577515,-0.0898117199540138,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089787006378,0.989402532577515,-0.0898117199540138,0.11409018933773,0.98940247297287,-0.0898118615150452,0.114090047776699,0.98940247297287,-0.089811772108078,0.11409018933773,0.98940247297287,-0.0898118615150452,0.11409018933773,0.989402413368225,-0.0898117497563362,0.114090047776699,0.98940247297287,-0.089811772108078,0.11409018933773,0.989402413368225,-0.0898117497563362,0.114090234041214,0.98940247297287,-0.0898118168115616,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090234041214,0.98940247297287,-0.0898118168115616,0.114090032875538,0.989402413368225,-0.0898117423057556,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090032875538,0.989402413368225,-0.0898117423057556,0.114089839160442,0.98940247297287,-0.0898116454482079,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089839160442,0.98940247297287,-0.0898116454482079,0.114090263843536,0.989402413368225,-0.0898118987679482, +0.114090047776699,0.98940247297287,-0.089811772108078,0.114090263843536,0.989402413368225,-0.0898118987679482,0.114090219140053,0.989402532577515,-0.0898118242621422,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090219140053,0.989402532577515,-0.0898118242621422,0.114090070128441,0.989402532577515,-0.0898117497563362,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090070128441,0.989402532577515,-0.0898117497563362,0.11409005522728,0.98940235376358,-0.0898118019104004,0.114090047776699,0.98940247297287,-0.089811772108078,0.11409005522728,0.98940235376358,-0.0898118019104004,0.114089868962765,0.98940247297287,-0.0898117050528526,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089868962765,0.98940247297287,-0.0898117050528526,0.11409018933773,0.989402413368225,-0.0898117795586586,0.114090047776699,0.98940247297287,-0.089811772108078,0.11409018933773,0.989402413368225,-0.0898117795586586,0.114090174436569,0.989402532577515,-0.0898117944598198,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090174436569,0.989402532577515,-0.0898117944598198,0.114089883863926,0.98940247297287,-0.0898116379976273,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089883863926,0.98940247297287,-0.0898116379976273,0.114090092480183,0.989402413368225,-0.0898117646574974,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090092480183,0.989402413368225,-0.0898117646574974,0.114090323448181,0.989402413368225,-0.0898119509220123,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090323448181,0.989402413368225,-0.0898119509220123,0.114090219140053,0.98940247297287,-0.089811846613884,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090219140053,0.98940247297287,-0.089811846613884,0.114089854061604,0.989402532577515,-0.0898115709424019,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089854061604,0.989402532577515,-0.0898115709424019,0.114090070128441,0.98940247297287,-0.089811772108078,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090070128441,0.98940247297287,-0.089811772108078, +0.114089965820313,0.989402532577515,-0.0898116528987885,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089965820313,0.989402532577515,-0.0898116528987885,0.114090524613857,0.98940247297287,-0.0898121893405914,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090524613857,0.98940247297287,-0.0898121893405914,0.114089988172054,0.98940247297287,-0.089811697602272,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089988172054,0.98940247297287,-0.089811697602272,0.114089921116829,0.98940247297287,-0.0898115783929825,0.114090047776699,0.98940247297287,-0.089811772108078,0.114089921116829,0.98940247297287,-0.0898115783929825,0.114090107381344,0.98940247297287,-0.0898117125034332,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090107381344,0.98940247297287,-0.0898117125034332,0.114090040326118,0.989402532577515,-0.0898117870092392,0.114090047776699,0.98940247297287,-0.089811772108078,0.114090040326118,0.989402532577515,-0.0898117870092392,0.114090070128441,0.98940247297287,-0.089811697602272,0.114090047776699,0.98940247297287,-0.089811772108078,0.106857977807522,0.990013599395752,-0.0919482707977295,0.106857351958752,0.990013718605042,-0.0919475108385086,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857351958752,0.990013718605042,-0.0919475108385086,0.106858611106873,0.990013480186462,-0.091948613524437,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106858611106873,0.990013480186462,-0.091948613524437,0.106856793165207,0.990013718605042,-0.091948077082634,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106856793165207,0.990013718605042,-0.091948077082634,0.106858380138874,0.990013599395752,-0.0919478014111519,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106858380138874,0.990013599395752,-0.0919478014111519,0.10685683786869,0.990013659000397,-0.091948427259922,0.106857426464558,0.990013718605042,-0.0919481813907623,0.10685683786869,0.990013659000397,-0.091948427259922,0.106856971979141,0.990013718605042,-0.0919481813907623,0.106857426464558,0.990013718605042,-0.0919481813907623, +0.106856971979141,0.990013718605042,-0.0919481813907623,0.106857761740685,0.990013659000397,-0.0919477120041847,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857761740685,0.990013659000397,-0.0919477120041847,0.10685833543539,0.990013539791107,-0.0919484347105026,0.106857426464558,0.990013718605042,-0.0919481813907623,0.10685833543539,0.990013539791107,-0.0919484347105026,0.106857433915138,0.990013539791107,-0.0919484198093414,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857433915138,0.990013539791107,-0.0919484198093414,0.106858111917973,0.990013659000397,-0.0919482782483101,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106858111917973,0.990013659000397,-0.0919482782483101,0.106857597827911,0.990013659000397,-0.0919479355216026,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857597827911,0.990013659000397,-0.0919479355216026,0.106856793165207,0.990013778209686,-0.0919479578733444,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106856793165207,0.990013778209686,-0.0919479578733444,0.106857120990753,0.990013659000397,-0.091948002576828,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857120990753,0.990013659000397,-0.091948002576828,0.106857135891914,0.990013659000397,-0.0919480696320534,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857135891914,0.990013659000397,-0.0919480696320534,0.106857918202877,0.990013599395752,-0.0919479131698608,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857918202877,0.990013599395752,-0.0919479131698608,0.106857389211655,0.990013718605042,-0.0919482558965683,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857389211655,0.990013718605042,-0.0919482558965683,0.106856517493725,0.990013599395752,-0.0919487029314041,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106856517493725,0.990013599395752,-0.0919487029314041,0.106857016682625,0.990013659000397,-0.0919481888413429,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857016682625,0.990013659000397,-0.0919481888413429, +0.106857851147652,0.990013599395752,-0.0919481813907623,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857851147652,0.990013599395752,-0.0919481813907623,0.106857143342495,0.990013599395752,-0.091948077082634,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857143342495,0.990013599395752,-0.091948077082634,0.106857307255268,0.990013599395752,-0.0919480621814728,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857307255268,0.990013599395752,-0.0919480621814728,0.106857784092426,0.990013599395752,-0.091948114335537,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857784092426,0.990013599395752,-0.091948114335537,0.106856785714626,0.990013659000397,-0.0919478461146355,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106856785714626,0.990013659000397,-0.0919478461146355,0.10685683786869,0.990013718605042,-0.0919479876756668,0.106857426464558,0.990013718605042,-0.0919481813907623,0.10685683786869,0.990013718605042,-0.0919479876756668,0.106857806444168,0.990013659000397,-0.0919482335448265,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857806444168,0.990013659000397,-0.0919482335448265,0.106857061386108,0.990013778209686,-0.0919480174779892,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857061386108,0.990013778209686,-0.0919480174779892,0.106857523322105,0.990013599395752,-0.091948114335537,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857523322105,0.990013599395752,-0.091948114335537,0.106858603656292,0.990013480186462,-0.0919486507773399,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106858603656292,0.990013480186462,-0.0919486507773399,0.106857843697071,0.990013599395752,-0.0919483974575996,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857843697071,0.990013599395752,-0.0919483974575996,0.10685745626688,0.990013718605042,-0.0919478312134743,0.106857426464558,0.990013718605042,-0.0919481813907623,0.10685745626688,0.990013718605042,-0.0919478312134743,0.106856845319271,0.990013837814331,-0.0919479578733444, +0.106857426464558,0.990013718605042,-0.0919481813907623,0.106856845319271,0.990013837814331,-0.0919479578733444,0.10685707628727,0.990013718605042,-0.0919481515884399,0.106857426464558,0.990013718605042,-0.0919481813907623,0.10685707628727,0.990013718605042,-0.0919481515884399,0.106857784092426,0.990013539791107,-0.0919485166668892,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857784092426,0.990013539791107,-0.0919485166668892,0.10685770213604,0.990013718605042,-0.0919481217861176,0.106857426464558,0.990013718605042,-0.0919481813907623,0.10685770213604,0.990013718605042,-0.0919481217861176,0.106857143342495,0.990013718605042,-0.091947890818119,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857143342495,0.990013718605042,-0.091947890818119,0.106857359409332,0.990013659000397,-0.0919480994343758,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857359409332,0.990013659000397,-0.0919480994343758,0.106857948005199,0.990013480186462,-0.0919486209750175,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857948005199,0.990013480186462,-0.0919486209750175,0.106857150793076,0.990013659000397,-0.0919478088617325,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857150793076,0.990013659000397,-0.0919478088617325,0.106856517493725,0.990013837814331,-0.0919472128152847,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106856517493725,0.990013837814331,-0.0919472128152847,0.106857687234879,0.990013539791107,-0.0919485539197922,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857687234879,0.990013539791107,-0.0919485539197922,0.106857471168041,0.990013659000397,-0.0919483006000519,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857471168041,0.990013659000397,-0.0919483006000519,0.106857560575008,0.990013718605042,-0.0919478014111519,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857560575008,0.990013718605042,-0.0919478014111519,0.106858000159264,0.990013480186462,-0.0919491723179817,0.106857426464558,0.990013718605042,-0.0919481813907623, +0.106858000159264,0.990013480186462,-0.0919491723179817,0.106856688857079,0.990013778209686,-0.091947577893734,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106856688857079,0.990013778209686,-0.091947577893734,0.106858678162098,0.990013301372528,-0.0919495597481728,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106858678162098,0.990013301372528,-0.0919495597481728,0.106857262551785,0.990013778209686,-0.0919471755623817,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857262551785,0.990013778209686,-0.0919471755623817,0.106857366859913,0.990013659000397,-0.0919479504227638,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857366859913,0.990013659000397,-0.0919479504227638,0.106858424842358,0.990013360977173,-0.0919496715068817,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106858424842358,0.990013360977173,-0.0919496715068817,0.106856673955917,0.990013718605042,-0.0919480472803116,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106856673955917,0.990013718605042,-0.0919480472803116,0.106859318912029,0.990013301372528,-0.0919497460126877,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106859318912029,0.990013301372528,-0.0919497460126877,0.106856472790241,0.99001407623291,-0.0919447690248489,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106856472790241,0.99001407623291,-0.0919447690248489,0.10685720294714,0.990013301372528,-0.0919514149427414,0.106857426464558,0.990013718605042,-0.0919481813907623,0.10685720294714,0.990013301372528,-0.0919514149427414,0.106857225298882,0.990013957023621,-0.0919448882341385,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106857225298882,0.990013957023621,-0.0919448882341385,0.106859974563122,0.990013360977173,-0.0919488966464996,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106859974563122,0.990013360977173,-0.0919488966464996,0.106853879988194,0.990013122558594,-0.0919580459594727,0.106857426464558,0.990013718605042,-0.0919481813907623,0.10686132311821,0.990013062953949,-0.0919494777917862, +0.106855131685734,0.990013837814331,-0.0919491052627563,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106855131685734,0.990013837814331,-0.0919491052627563,0.106861047446728,0.990013122558594,-0.0919505879282951,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106861047446728,0.990013122558594,-0.0919505879282951,0.106856286525726,0.990013897418976,-0.0919471979141235,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106856286525726,0.990013897418976,-0.0919471979141235,0.106858849525452,0.990013539791107,-0.0919477194547653,0.106857426464558,0.990013718605042,-0.0919481813907623,0.106858849525452,0.990013539791107,-0.0919477194547653,0.10685570538044,0.990013599395752,-0.091950498521328,0.106857426464558,0.990013718605042,-0.0919481813907623,0.10685570538044,0.990013599395752,-0.091950498521328,0.106857977807522,0.990013599395752,-0.0919482707977295,0.106857426464558,0.990013718605042,-0.0919481813907623,0.108189195394516,0.989902436733246,-0.091586709022522,0.108187332749367,0.989902794361115,-0.0915856286883354,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108187332749367,0.989902794361115,-0.0915856286883354,0.108189724385738,0.989902496337891,-0.091587021946907,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108189724385738,0.989902496337891,-0.091587021946907,0.108187034726143,0.98990261554718,-0.0915889143943787,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108187034726143,0.98990261554718,-0.0915889143943787,0.108185231685638,0.989903151988983,-0.0915834009647369,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108189880847931,0.989903092384338,-0.0915803238749504,0.108186654746532,0.989902794361115,-0.0915864333510399,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108186654746532,0.989902794361115,-0.0915864333510399,0.108190655708313,0.989902377128601,-0.0915862247347832,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108190655708313,0.989902377128601,-0.0915862247347832,0.108186848461628,0.98990261554718,-0.0915882736444473, +0.108188599348068,0.989902555942535,-0.0915865376591682,0.108186848461628,0.98990261554718,-0.0915882736444473,0.108188770711422,0.989902496337891,-0.0915871262550354,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188770711422,0.989902496337891,-0.0915871262550354,0.108188703656197,0.98990261554718,-0.0915865525603294,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188703656197,0.98990261554718,-0.0915865525603294,0.108187608420849,0.989902675151825,-0.0915874019265175,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108187608420849,0.989902675151825,-0.0915874019265175,0.108189985156059,0.989902555942535,-0.0915845930576324,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108189985156059,0.989902555942535,-0.0915845930576324,0.108188413083553,0.989902436733246,-0.0915881171822548,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188413083553,0.989902436733246,-0.0915881171822548,0.108189202845097,0.989902675151825,-0.0915854796767235,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108189202845097,0.989902675151825,-0.0915854796767235,0.108188785612583,0.98990261554718,-0.0915860086679459,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188785612583,0.98990261554718,-0.0915860086679459,0.108188234269619,0.989902436733246,-0.0915878638625145,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188234269619,0.989902436733246,-0.0915878638625145,0.108188807964325,0.989902675151825,-0.0915861427783966,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188807964325,0.989902675151825,-0.0915861427783966,0.1081887409091,0.989902496337891,-0.0915867611765862,0.108188599348068,0.989902555942535,-0.0915865376591682,0.1081887409091,0.989902496337891,-0.0915867611765862,0.108189612627029,0.989902555942535,-0.0915858373045921,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108189612627029,0.989902555942535,-0.0915858373045921,0.108188316226006,0.98990261554718,-0.0915869027376175,0.108188599348068,0.989902555942535,-0.0915865376591682, +0.108188316226006,0.98990261554718,-0.0915869027376175,0.108187839388847,0.98990261554718,-0.091586597263813,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108187839388847,0.98990261554718,-0.091586597263813,0.10818836838007,0.98990261554718,-0.0915867537260056,0.108188599348068,0.989902555942535,-0.0915865376591682,0.10818836838007,0.98990261554718,-0.0915867537260056,0.108188711106777,0.98990261554718,-0.0915864184498787,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188711106777,0.98990261554718,-0.0915864184498787,0.108188159763813,0.98990261554718,-0.0915864929556847,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188159763813,0.98990261554718,-0.0915864929556847,0.108188450336456,0.989902555942535,-0.0915865302085876,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188450336456,0.989902555942535,-0.0915865302085876,0.108188144862652,0.989902675151825,-0.0915864333510399,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188144862652,0.989902675151825,-0.0915864333510399,0.108189277350903,0.989902496337891,-0.0915865078568459,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108189277350903,0.989902496337891,-0.0915865078568459,0.108189508318901,0.989902496337891,-0.0915865004062653,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108189508318901,0.989902496337891,-0.0915865004062653,0.108187817037106,0.989902675151825,-0.0915864035487175,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108187817037106,0.989902675151825,-0.0915864035487175,0.108188293874264,0.989902675151825,-0.0915865004062653,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188293874264,0.989902675151825,-0.0915865004062653,0.108188837766647,0.989902555942535,-0.0915865451097488,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188837766647,0.989902555942535,-0.0915865451097488,0.108188837766647,0.98990261554718,-0.0915865451097488,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188837766647,0.98990261554718,-0.0915865451097488, +0.10818874835968,0.989902555942535,-0.0915864780545235,0.108188599348068,0.989902555942535,-0.0915865376591682,0.10818874835968,0.989902555942535,-0.0915864780545235,0.108188420534134,0.98990261554718,-0.0915864855051041,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188420534134,0.98990261554718,-0.0915864855051041,0.108188763260841,0.989902555942535,-0.0915866494178772,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188763260841,0.989902555942535,-0.0915866494178772,0.108188539743423,0.98990261554718,-0.0915864929556847,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188539743423,0.98990261554718,-0.0915864929556847,0.108188763260841,0.98990261554718,-0.0915865749120712,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188763260841,0.98990261554718,-0.0915865749120712,0.108188807964325,0.989902555942535,-0.091586746275425,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188807964325,0.989902555942535,-0.091586746275425,0.108188472688198,0.989902555942535,-0.0915864035487175,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188472688198,0.989902555942535,-0.0915864035487175,0.108188152313232,0.989902675151825,-0.0915864333510399,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188152313232,0.989902675151825,-0.0915864333510399,0.108189150691032,0.989902436733246,-0.0915869250893593,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108189150691032,0.989902436733246,-0.0915869250893593,0.108188390731812,0.989902675151825,-0.091586247086525,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188390731812,0.989902675151825,-0.091586247086525,0.108188144862652,0.989902675151825,-0.0915856137871742,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188144862652,0.989902675151825,-0.0915856137871742,0.108189105987549,0.989902436733246,-0.0915872976183891,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108189105987549,0.989902436733246,-0.0915872976183891,0.108188532292843,0.989902555942535,-0.0915865451097488, +0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188532292843,0.989902555942535,-0.0915865451097488,0.108188390731812,0.989902675151825,-0.0915861874818802,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188390731812,0.989902675151825,-0.0915861874818802,0.1081882417202,0.98990261554718,-0.0915862992405891,0.108188599348068,0.989902555942535,-0.0915865376591682,0.1081882417202,0.98990261554718,-0.0915862992405891,0.108189143240452,0.989902436733246,-0.0915872156620026,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108189143240452,0.989902436733246,-0.0915872156620026,0.108188256621361,0.989902675151825,-0.0915864035487175,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188256621361,0.989902675151825,-0.0915864035487175,0.108188658952713,0.989902555942535,-0.0915868803858757,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188658952713,0.989902555942535,-0.0915868803858757,0.108188830316067,0.989902555942535,-0.0915868058800697,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188830316067,0.989902555942535,-0.0915868058800697,0.108188614249229,0.989902377128601,-0.0915886610746384,0.108188599348068,0.989902555942535,-0.0915865376591682,0.108188614249229,0.989902377128601,-0.0915886610746384,0.108188465237617,0.989902794361115,-0.0915847048163414,0.108188599348068,0.989902555942535,-0.0915865376591682,0.109754249453545,0.989453196525574,-0.0945330560207367,0.10975343734026,0.989453375339508,-0.0945329964160919,0.109753735363483,0.989453315734863,-0.0945325121283531,0.10975343734026,0.989453375339508,-0.0945329964160919,0.109754048287868,0.989453196525574,-0.0945326313376427,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109754048287868,0.989453196525574,-0.0945326313376427,0.109753713011742,0.989453256130219,-0.0945323631167412,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753713011742,0.989453256130219,-0.0945323631167412,0.109753884375095,0.989453196525574,-0.0945326909422874,0.109753735363483,0.989453315734863,-0.0945325121283531, +0.109753884375095,0.989453196525574,-0.0945326909422874,0.109753921627998,0.989453196525574,-0.0945326387882233,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753921627998,0.989453196525574,-0.0945326387882233,0.109753608703613,0.989453256130219,-0.0945324823260307,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753608703613,0.989453256130219,-0.0945324823260307,0.109753727912903,0.989453256130219,-0.0945323631167412,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753727912903,0.989453256130219,-0.0945323631167412,0.109753929078579,0.989453256130219,-0.0945325121283531,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753929078579,0.989453256130219,-0.0945325121283531,0.109753519296646,0.989453315734863,-0.0945324674248695,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753519296646,0.989453315734863,-0.0945324674248695,0.109753496944904,0.989453256130219,-0.0945322439074516,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753496944904,0.989453256130219,-0.0945322439074516,0.109753713011742,0.989453196525574,-0.0945324376225471,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753713011742,0.989453196525574,-0.0945324376225471,0.10975381731987,0.989453256130219,-0.094532735645771,0.109753735363483,0.989453315734863,-0.0945325121283531,0.10975381731987,0.989453256130219,-0.094532735645771,0.109753824770451,0.989453256130219,-0.0945326164364815,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753824770451,0.989453256130219,-0.0945326164364815,0.109753556549549,0.989453315734863,-0.0945323333144188,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753556549549,0.989453315734863,-0.0945323333144188,0.10975406318903,0.989453136920929,-0.0945327281951904,0.109753735363483,0.989453315734863,-0.0945325121283531,0.10975406318903,0.989453136920929,-0.0945327281951904,0.109753683209419,0.989453196525574,-0.0945325940847397,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753683209419,0.989453196525574,-0.0945325940847397, +0.109753750264645,0.989453315734863,-0.0945325344800949,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753750264645,0.989453315734863,-0.0945325344800949,0.109753660857677,0.989453315734863,-0.0945325493812561,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753660857677,0.989453315734863,-0.0945325493812561,0.109753742814064,0.989453196525574,-0.0945325866341591,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753742814064,0.989453196525574,-0.0945325866341591,0.109753742814064,0.989453196525574,-0.0945329070091248,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753742814064,0.989453196525574,-0.0945329070091248,0.109753653407097,0.989453256130219,-0.0945324003696442,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753653407097,0.989453256130219,-0.0945324003696442,0.109753809869289,0.989453256130219,-0.0945322662591934,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753809869289,0.989453256130219,-0.0945322662591934,0.109753519296646,0.989453256130219,-0.0945327579975128,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753519296646,0.989453256130219,-0.0945327579975128,0.109753914177418,0.989453196525574,-0.094532385468483,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753914177418,0.989453196525574,-0.094532385468483,0.10975394397974,0.989453196525574,-0.0945324376225471,0.109753735363483,0.989453315734863,-0.0945325121283531,0.10975394397974,0.989453196525574,-0.0945324376225471,0.109753221273422,0.989453256130219,-0.0945325046777725,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753221273422,0.989453256130219,-0.0945325046777725,0.109753780066967,0.989453494548798,-0.0945309922099113,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753780066967,0.989453494548798,-0.0945309922099113,0.10975356400013,0.989453196525574,-0.0945333912968636,0.109753735363483,0.989453315734863,-0.0945325121283531,0.10975356400013,0.989453196525574,-0.0945333912968636,0.109753273427486,0.989453434944153,-0.0945309177041054, +0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753273427486,0.989453434944153,-0.0945309177041054,0.109753243625164,0.989453554153442,-0.0945303365588188,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753243625164,0.989453554153442,-0.0945303365588188,0.109753899276257,0.989453017711639,-0.0945350527763367,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753899276257,0.989453017711639,-0.0945350527763367,0.10975307226181,0.989453077316284,-0.0945354923605919,0.109753735363483,0.989453315734863,-0.0945325121283531,0.10975307226181,0.989453077316284,-0.0945354923605919,0.109755367040634,0.989453256130219,-0.0945299714803696,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109755367040634,0.989453256130219,-0.0945299714803696,0.10975656658411,0.989453196525574,-0.0945297032594681,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109751977026463,0.989453136920929,-0.0945365205407143,0.109753124415874,0.989453613758087,-0.0945294722914696,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753124415874,0.989453613758087,-0.0945294722914696,0.10975519567728,0.989453136920929,-0.0945320278406143,0.109753735363483,0.989453315734863,-0.0945325121283531,0.10975519567728,0.989453136920929,-0.0945320278406143,0.109753705561161,0.989453017711639,-0.0945357233285904,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753705561161,0.989453017711639,-0.0945357233285904,0.109753280878067,0.989453315734863,-0.09453234821558,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753280878067,0.989453315734863,-0.09453234821558,0.109753631055355,0.989453315734863,-0.0945317447185516,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753631055355,0.989453315734863,-0.0945317447185516,0.109753966331482,0.989453136920929,-0.0945325493812561,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753966331482,0.989453136920929,-0.0945325493812561,0.10975331813097,0.989453196525574,-0.0945326685905457,0.109753735363483,0.989453315734863,-0.0945325121283531, +0.10975331813097,0.989453196525574,-0.0945326685905457,0.10975343734026,0.989453256130219,-0.0945331454277039,0.109753735363483,0.989453315734863,-0.0945325121283531,0.10975343734026,0.989453256130219,-0.0945331454277039,0.109754048287868,0.989453256130219,-0.0945324823260307,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109754048287868,0.989453256130219,-0.0945324823260307,0.109753839671612,0.989453315734863,-0.0945314094424248,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753839671612,0.989453315734863,-0.0945314094424248,0.109753668308258,0.989453256130219,-0.0945328399538994,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753668308258,0.989453256130219,-0.0945328399538994,0.109754033386707,0.989453196525574,-0.0945330411195755,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109754033386707,0.989453196525574,-0.0945330411195755,0.109753794968128,0.989453315734863,-0.094532422721386,0.109753735363483,0.989453315734863,-0.0945325121283531,0.109753794968128,0.989453315734863,-0.094532422721386,0.109754122793674,0.989453256130219,-0.0945320799946785,0.109753735363483,0.989453315734863,-0.0945325121283531,0.0585432685911655,0.989585757255554,0.131501480937004,-0.0144305266439915,0.993595123291016,0.11207389831543,-0.0710952132940292,0.971910059452057,0.224357604980469,0.0295109953731298,0.966083645820618,0.256537348031998,-0.0144305266439915,0.993595123291016,0.11207389831543,-0.0986434742808342,0.990710437297821,0.09360671043396,-0.169115841388702,0.972970604896545,0.157251447439194,-0.0710952132940292,0.971910059452057,0.224357604980469,-0.0710952132940292,0.971910059452057,0.224357604980469,-0.169115841388702,0.972970604896545,0.157251447439194,-0.192353665828705,0.965033531188965,0.178073450922966,-0.0966108292341232,0.961719989776611,0.256439119577408,0.0295109953731298,0.966083645820618,0.256537348031998,-0.0710952132940292,0.971910059452057,0.224357604980469,-0.0966108292341232,0.961719989776611,0.256439119577408,0.0187322087585926,0.953490376472473,0.300840944051743, +0.260824173688889,0.924907684326172,0.276616334915161,0.249975740909576,0.935905635356903,0.248179093003273,0.133974656462669,0.953800857067108,0.268913984298706,0.141845315694809,0.94062465429306,0.308391392230988,0.249975740909576,0.935905635356903,0.248179093003273,0.215556353330612,0.963026463985443,0.16160286962986,0.132685199379921,0.980655133724213,0.143910318613052,0.133974656462669,0.953800857067108,0.268913984298706,0.133974656462669,0.953800857067108,0.268913984298706,0.132685199379921,0.980655133724213,0.143910318613052,0.0585432685911655,0.989585757255554,0.131501480937004,0.0295109953731298,0.966083645820618,0.256537348031998,0.141845315694809,0.94062465429306,0.308391392230988,0.133974656462669,0.953800857067108,0.268913984298706,0.0295109953731298,0.966083645820618,0.256537348031998,0.0187322087585926,0.953490376472473,0.300840944051743,-0.0986434742808342,0.990710437297821,0.09360671043396,-0.108395107090473,0.994076550006866,0.00788620486855507,-0.225694879889488,0.972765743732452,0.0528065599501133,-0.169115841388702,0.972970604896545,0.157251447439194,-0.108395107090473,0.994076550006866,0.00788620486855507,-0.120283201336861,0.99049836397171,-0.0666704103350639,-0.247332230210304,0.967613458633423,-0.0505068115890026,-0.225694879889488,0.972765743732452,0.0528065599501133,-0.225694879889488,0.972765743732452,0.0528065599501133,-0.247332230210304,0.967613458633423,-0.0505068115890026,-0.292406469583511,0.955259084701538,-0.0444811545312405,-0.26026326417923,0.962641954421997,0.074723444879055,-0.169115841388702,0.972970604896545,0.157251447439194,-0.225694879889488,0.972765743732452,0.0528065599501133,-0.26026326417923,0.962641954421997,0.074723444879055,-0.192353665828705,0.965033531188965,0.178073450922966,0.441340416669846,0.890070021152496,0.113991238176823,0.405190855264664,0.909769892692566,0.0902170613408089,0.343973875045776,0.922328352928162,0.176046893000603,0.364334255456924,0.907253623008728,0.210122242569923,0.405190855264664,0.909769892692566,0.0902170613408089,0.300873428583145,0.953361093997955,0.0240395404398441, +0.260128080844879,0.961605787277222,0.087450735270977,0.343973875045776,0.922328352928162,0.176046893000603,0.343973875045776,0.922328352928162,0.176046893000603,0.260128080844879,0.961605787277222,0.087450735270977,0.215556353330612,0.963026463985443,0.16160286962986,0.249975740909576,0.935905635356903,0.248179093003273,0.364334255456924,0.907253623008728,0.210122242569923,0.343973875045776,0.922328352928162,0.176046893000603,0.249975740909576,0.935905635356903,0.248179093003273,0.260824173688889,0.924907684326172,0.276616334915161,-0.120283201336861,0.99049836397171,-0.0666704103350639,-0.125098630785942,0.98198401927948,-0.141624316573143,-0.248958125710487,0.955941140651703,-0.155551910400391,-0.247332230210304,0.967613458633423,-0.0505068115890026,-0.125098630785942,0.98198401927948,-0.141624316573143,-0.134292796254158,0.964885473251343,-0.225746154785156,-0.216642439365387,0.938569128513336,-0.26861509680748,-0.248958125710487,0.955941140651703,-0.155551910400391,-0.248958125710487,0.955941140651703,-0.155551910400391,-0.216642439365387,0.938569128513336,-0.26861509680748,-0.24370177090168,0.927855908870697,-0.282299160957336,-0.28726652264595,0.943095922470093,-0.167475476861,-0.247332230210304,0.967613458633423,-0.0505068115890026,-0.248958125710487,0.955941140651703,-0.155551910400391,-0.28726652264595,0.943095922470093,-0.167475476861,-0.292406469583511,0.955259084701538,-0.0444811545312405,0.106863476336002,0.989989578723907,-0.0922004282474518,-0.00302709429524839,0.996758997440338,-0.0803893059492111,0.00317902839742601,0.999993681907654,0.0015716643538326,0.0840503796935081,0.99633252620697,0.0160347316414118,-0.00302709429524839,0.996758997440338,-0.0803893059492111,-0.120283201336861,0.99049836397171,-0.0666704103350639,-0.108395107090473,0.994076550006866,0.00788620486855507,0.00317902839742601,0.999993681907654,0.0015716643538326,0.00317902839742601,0.999993681907654,0.0015716643538326,-0.108395107090473,0.994076550006866,0.00788620486855507,-0.0986434742808342,0.990710437297821,0.09360671043396, +-0.0144305266439915,0.993595123291016,0.11207389831543,0.0840503796935081,0.99633252620697,0.0160347316414118,0.00317902839742601,0.999993681907654,0.0015716643538326,-0.0144305266439915,0.993595123291016,0.11207389831543,0.0585432685911655,0.989585757255554,0.131501480937004,0.215556353330612,0.963026463985443,0.16160286962986,0.260128080844879,0.961605787277222,0.087450735270977,0.163221701979637,0.985929191112518,0.0360901281237602,0.132685199379921,0.980655133724213,0.143910318613052,0.260128080844879,0.961605787277222,0.087450735270977,0.300873428583145,0.953361093997955,0.0240395404398441,0.20186647772789,0.978740274906158,-0.0362955369055271,0.163221701979637,0.985929191112518,0.0360901281237602,0.163221701979637,0.985929191112518,0.0360901281237602,0.20186647772789,0.978740274906158,-0.0362955369055271,0.106863476336002,0.989989578723907,-0.0922004282474518,0.0840503796935081,0.99633252620697,0.0160347316414118,0.132685199379921,0.980655133724213,0.143910318613052,0.163221701979637,0.985929191112518,0.0360901281237602,0.0840503796935081,0.99633252620697,0.0160347316414118,0.0585432685911655,0.989585757255554,0.131501480937004,0.106863476336002,0.989989578723907,-0.0922004282474518,0.0607813708484173,0.979446768760681,-0.192326679825783,-0.0149876913055778,0.98681777715683,-0.161139667034149,-0.00302709429524839,0.996758997440338,-0.0803893059492111,0.0607813708484173,0.979446768760681,-0.192326679825783,0.0107556087896228,0.954895317554474,-0.296747773885727,-0.0562415234744549,0.963268399238586,-0.262584865093231,-0.0149876913055778,0.98681777715683,-0.161139667034149,-0.0149876913055778,0.98681777715683,-0.161139667034149,-0.0562415234744549,0.963268399238586,-0.262584865093231,-0.134292796254158,0.964885473251343,-0.225746154785156,-0.125098630785942,0.98198401927948,-0.141624316573143,-0.00302709429524839,0.996758997440338,-0.0803893059492111,-0.0149876913055778,0.98681777715683,-0.161139667034149,-0.125098630785942,0.98198401927948,-0.141624316573143,-0.120283201336861,0.99049836397171,-0.0666704103350639, +-0.134292796254158,0.964885473251343,-0.225746154785156,-0.0562415234744549,0.963268399238586,-0.262584865093231,-0.135704323649406,0.925084829330444,-0.354686200618744,-0.216642439365387,0.938569128513336,-0.26861509680748,-0.0562415234744549,0.963268399238586,-0.262584865093231,0.0107556087896228,0.954895317554474,-0.296747773885727,-0.0445082671940327,0.912373840808868,-0.406931072473526,-0.135704323649406,0.925084829330444,-0.354686200618744,-0.135704323649406,0.925084829330444,-0.354686200618744,-0.0445082671940327,0.912373840808868,-0.406931072473526,-0.0645535439252853,0.893123269081116,-0.445155829191208,-0.167440429329872,0.910414218902588,-0.378298223018646,-0.216642439365387,0.938569128513336,-0.26861509680748,-0.135704323649406,0.925084829330444,-0.354686200618744,-0.167440429329872,0.910414218902588,-0.378298223018646,-0.24370177090168,0.927855908870697,-0.282299160957336,0.490662813186646,0.862331211566925,-0.125039651989937,0.462327927350998,0.87811279296875,-0.123169839382172,0.447942972183228,0.894043862819672,-0.00572804221883416,0.485381990671158,0.874301195144653,-0.00130613497458398,0.462327927350998,0.87811279296875,-0.123169839382172,0.374585539102554,0.919822573661804,-0.116671159863472,0.334584683179855,0.941390872001648,-0.0428528115153313,0.447942972183228,0.894043862819672,-0.00572804221883416,0.447942972183228,0.894043862819672,-0.00572804221883416,0.334584683179855,0.941390872001648,-0.0428528115153313,0.300873428583145,0.953361093997955,0.0240395404398441,0.405190855264664,0.909769892692566,0.0902170613408089,0.485381990671158,0.874301195144653,-0.00130613497458398,0.447942972183228,0.894043862819672,-0.00572804221883416,0.405190855264664,0.909769892692566,0.0902170613408089,0.441340416669846,0.890070021152496,0.113991238176823,0.0107556087896228,0.954895317554474,-0.296747773885727,0.0805115029215813,0.942755818367004,-0.32361888885498,0.0548829659819603,0.896357893943787,-0.439920991659164,-0.0445082671940327,0.912373840808868,-0.406931072473526,0.0805115029215813,0.942755818367004,-0.32361888885498, +0.157768309116364,0.921019852161407,-0.356134474277496,0.172845751047134,0.879844605922699,-0.442716479301453,0.0548829659819603,0.896357893943787,-0.439920991659164,0.0548829659819603,0.896357893943787,-0.439920991659164,0.172845751047134,0.879844605922699,-0.442716479301453,0.177308216691017,0.864271700382233,-0.470739990472794,0.0540634542703629,0.876941561698914,-0.477546453475952,-0.0445082671940327,0.912373840808868,-0.406931072473526,0.0548829659819603,0.896357893943787,-0.439920991659164,0.0540634542703629,0.876941561698914,-0.477546453475952,-0.0645535439252853,0.893123269081116,-0.445155829191208,0.389618545770645,0.852462589740753,-0.348575592041016,0.359225958585739,0.876357078552246,-0.320866107940674,0.422237008810043,0.875354468822479,-0.235521480441093,0.45814374089241,0.854489326477051,-0.244851723313332,0.359225958585739,0.876357078552246,-0.320866107940674,0.271249413490295,0.931825220584869,-0.241092190146446,0.319005489349365,0.930058240890503,-0.182283028960228,0.422237008810043,0.875354468822479,-0.235521480441093,0.422237008810043,0.875354468822479,-0.235521480441093,0.319005489349365,0.930058240890503,-0.182283028960228,0.374585539102554,0.919822573661804,-0.116671159863472,0.462327927350998,0.87811279296875,-0.123169839382172,0.45814374089241,0.854489326477051,-0.244851723313332,0.422237008810043,0.875354468822479,-0.235521480441093,0.462327927350998,0.87811279296875,-0.123169839382172,0.490662813186646,0.862331211566925,-0.125039651989937,0.106863476336002,0.989989578723907,-0.0922004282474518,0.187478616833687,0.968276858329773,-0.165201753377914,0.133803337812424,0.964551150798798,-0.22745954990387,0.0607813708484173,0.979446768760681,-0.192326679825783,0.187478616833687,0.968276858329773,-0.165201753377914,0.271249413490295,0.931825220584869,-0.241092190146446,0.217480629682541,0.930603802204132,-0.294412434101105,0.133803337812424,0.964551150798798,-0.22745954990387,0.133803337812424,0.964551150798798,-0.22745954990387,0.217480629682541,0.930603802204132,-0.294412434101105,0.157768309116364,0.921019852161407,-0.356134474277496, +0.0805115029215813,0.942755818367004,-0.32361888885498,0.0607813708484173,0.979446768760681,-0.192326679825783,0.133803337812424,0.964551150798798,-0.22745954990387,0.0805115029215813,0.942755818367004,-0.32361888885498,0.0107556087896228,0.954895317554474,-0.296747773885727,0.374585539102554,0.919822573661804,-0.116671159863472,0.319005489349365,0.930058240890503,-0.182283028960228,0.244099646806717,0.963989078998566,-0.105548426508904,0.334584683179855,0.941390872001648,-0.0428528115153313,0.319005489349365,0.930058240890503,-0.182283028960228,0.271249413490295,0.931825220584869,-0.241092190146446,0.187478616833687,0.968276858329773,-0.165201753377914,0.244099646806717,0.963989078998566,-0.105548426508904,0.244099646806717,0.963989078998566,-0.105548426508904,0.187478616833687,0.968276858329773,-0.165201753377914,0.106863476336002,0.989989578723907,-0.0922004282474518,0.20186647772789,0.978740274906158,-0.0362955369055271,0.334584683179855,0.941390872001648,-0.0428528115153313,0.244099646806717,0.963989078998566,-0.105548426508904,0.20186647772789,0.978740274906158,-0.0362955369055271,0.300873428583145,0.953361093997955,0.0240395404398441,0.271249413490295,0.931825220584869,-0.241092190146446,0.359225958585739,0.876357078552246,-0.320866107940674,0.280517578125,0.876195430755615,-0.391907513141632,0.217480629682541,0.930603802204132,-0.294412434101105,0.359225958585739,0.876357078552246,-0.320866107940674,0.389618545770645,0.852462589740753,-0.348575592041016,0.293134182691574,0.855518460273743,-0.426802784204483,0.280517578125,0.876195430755615,-0.391907513141632,0.280517578125,0.876195430755615,-0.391907513141632,0.293134182691574,0.855518460273743,-0.426802784204483,0.177308216691017,0.864271700382233,-0.470739990472794,0.172845751047134,0.879844605922699,-0.442716479301453,0.217480629682541,0.930603802204132,-0.294412434101105,0.280517578125,0.876195430755615,-0.391907513141632,0.172845751047134,0.879844605922699,-0.442716479301453,0.157768309116364,0.921019852161407,-0.356134474277496,0.736553311347961,-0.11196456849575,-0.667048037052155, +0.737174510955811,-0.111971810460091,-0.666360318660736,0.907998144626617,-0.107240930199623,-0.405017018318176,0.907795608043671,-0.107259593904018,-0.40546578168869,0.867674469947815,-0.0180830024182796,0.496803760528564,0.867270112037659,-0.0179699081927538,0.497513443231583,0.976671755313873,-0.0578579567372799,0.206796556711197,0.976747870445251,-0.0579015724360943,0.206424564123154,0.976747870445251,-0.0579015724360943,0.206424564123154,0.976671755313873,-0.0578579567372799,0.206796556711197,0.99058586359024,-0.0885631516575813,-0.104385673999786,0.990592479705811,-0.0885583162307739,-0.104325763881207,0.493700951337814,-0.102401830255985,-0.863581657409668,0.494724005460739,-0.102464288473129,-0.862988591194153,0.737174510955811,-0.111971810460091,-0.666360318660736,0.736553311347961,-0.11196456849575,-0.667048037052155,0.202882677316666,-0.079334445297718,-0.97598397731781,0.204285591840744,-0.0794678628444672,-0.975680410861969,0.494724005460739,-0.102464288473129,-0.862988591194153,0.493700951337814,-0.102401830255985,-0.863581657409668,0.673901796340942,0.0268357638269663,0.738333463668823,0.673089206218719,0.0269982926547527,0.739068388938904,0.867270112037659,-0.0179699081927538,0.497513443231583,0.867674469947815,-0.0180830024182796,0.496803760528564,0.414506673812866,0.0725948140025139,0.907146215438843,0.413248896598816,0.0727920681238174,0.90770411491394,0.673089206218719,0.0269982926547527,0.739068388938904,0.673901796340942,0.0268357638269663,0.738333463668823,-0.406947553157806,-0.0031334301456809,-0.913446128368378,-0.405681312084198,-0.00333214341662824,-0.914008498191833,-0.106013588607311,-0.0453701876103878,-0.993329107761383,-0.107417285442352,-0.0451949052512646,-0.993186354637146,-0.107417285442352,-0.0451949052512646,-0.993186354637146,-0.106013588607311,-0.0453701876103878,-0.993329107761383,0.204285591840744,-0.0794678628444672,-0.975680410861969,0.202882677316666,-0.079334445297718,-0.97598397731781,0.114891462028027,0.114544920623302,0.986751914024353,0.113501064479351,0.114718407392502,0.986892700195313, +0.413248896598816,0.0727920681238174,0.90770411491394,0.414506673812866,0.0725948140025139,0.907146215438843,-0.195373445749283,0.148732110857964,0.969385385513306,-0.196763783693314,0.148864179849625,0.969083845615387,0.113501064479351,0.114718407392502,0.986892700195313,0.114891462028027,0.114544920623302,0.986751914024353,-0.859810888767242,0.0875153541564941,-0.503057062625885,-0.859410166740417,0.0874032825231552,-0.503760755062103,-0.665394842624664,0.0423746593296528,-0.745287954807281,-0.66620796918869,0.0425373502075672,-0.74455189704895,-0.66620796918869,0.0425373502075672,-0.74455189704895,-0.665394842624664,0.0423746593296528,-0.745287954807281,-0.405681312084198,-0.00333214341662824,-0.914008498191833,-0.406947553157806,-0.0031334301456809,-0.913446128368378,-0.728773951530457,0.181296020746231,0.660318195819855,-0.729396343231201,0.181303232908249,0.659628689289093,-0.487104743719101,0.171732768416405,0.856292545795441,-0.486087590456009,0.171670749783516,0.856882691383362,-0.486087590456009,0.171670749783516,0.856882691383362,-0.487104743719101,0.171732768416405,0.856292545795441,-0.196763783693314,0.148864179849625,0.969083845615387,-0.195373445749283,0.148732110857964,0.969385385513306,-0.982597649097443,0.157913058996201,0.0978024825453758,-0.982589483261108,0.157918944954872,0.0978755280375481,-0.968709111213684,0.12716381251812,-0.213147923350334,-0.968782901763916,0.127206072211266,-0.212787225842476,-0.968782901763916,0.127206072211266,-0.212787225842476,-0.968709111213684,0.12716381251812,-0.213147923350334,-0.859410166740417,0.0874032825231552,-0.503760755062103,-0.859810888767242,0.0875153541564941,-0.503057062625885,-0.899882614612579,0.176504775881767,0.398819863796234,-0.900088906288147,0.176485791802406,0.398362666368484,-0.729396343231201,0.181303232908249,0.659628689289093,-0.728773951530457,0.181296020746231,0.660318195819855,-0.982597649097443,0.157913058996201,0.0978024825453758,-0.900088906288147,0.176485791802406,0.398362666368484,-0.899882614612579,0.176504775881767,0.398819863796234, +-0.982589483261108,0.157918944954872,0.0978755280375481,-0.413324683904648,0.0730375126004219,-0.907649874687195,-0.413319170475006,0.073036752641201,-0.90765243768692,-0.11610609292984,0.0367279127240181,-0.992557525634766,-0.116119585931301,0.0367293655872345,-0.992555856704712,0.0968436449766159,0.991799890995026,-0.0833930671215057,0.2141233086586,0.971960961818695,-0.0971757844090462,0.209674164652824,0.968295693397522,-0.135794118046761,0.18262292444706,0.969424188137054,-0.163907423615456,0.0968436449766159,0.991799890995026,-0.0833930671215057,0.18262292444706,0.969424188137054,-0.163907423615456,0.156323745846748,0.968725264072418,-0.192702203989029,0.118104510009289,0.972732663154602,-0.199605703353882,0.0968436449766159,0.991799890995026,-0.0833930671215057,0.118104510009289,0.972732663154602,-0.199605703353882,0.0800002366304398,0.974942147731781,-0.207576155662537,0.045259702950716,0.980610609054565,-0.190668225288391,0.0968436449766159,0.991799890995026,-0.0833930671215057,0.045259702950716,0.980610609054565,-0.190668225288391,0.00986147858202457,0.984561026096344,-0.174763724207878,-0.00810384284704924,0.990038156509399,-0.140565872192383,0.0968436449766159,0.991799890995026,-0.0833930671215057,0.200524926185608,0.979371070861816,-0.0249402169138193,0.219632729887962,0.97382253408432,-0.0585767216980457,0.2141233086586,0.971960961818695,-0.0971757844090462,0.009743413887918,0.99995094537735,-0.00178469193633646,0.0968436449766159,0.991799890995026,-0.0833930671215057,-0.0216618627309799,0.997420072555542,-0.0684391036629677,-0.0173947121948004,0.999406456947327,-0.0297336876392365,0.0968436449766159,0.991799890995026,-0.0833930671215057,0.14704293012619,0.988810181617737,0.0251549612730742,0.182352721691132,0.983188152313232,0.00941635295748711,0.200524926185608,0.979371070861816,-0.0249402169138193,-0.0273183602839708,0.993901252746582,-0.106836318969727,-0.0907085984945297,0.988838016986847,-0.118201144039631,-0.0931697860360146,0.993904531002045,-0.0589350126683712,-0.0216618627309799,0.997420072555542,-0.0684391036629677, +0.0968436449766159,0.991799890995026,-0.0833930671215057,0.0741646587848663,0.99666690826416,0.0339776948094368,0.112120240926743,0.992800354957581,0.0421490892767906,0.14704293012619,0.988810181617737,0.0251549612730742,0.0968436449766159,0.991799890995026,-0.0833930671215057,0.009743413887918,0.99995094537735,-0.00178469193633646,0.0358377359807491,0.998988330364227,0.0271657519042492,0.0741646587848663,0.99666690826416,0.0339776948094368,-0.00810384284704924,0.990038156509399,-0.140565872192383,-0.0273183602839708,0.993901252746582,-0.106836318969727,-0.0216618627309799,0.997420072555542,-0.0684391036629677,0.0968436449766159,0.991799890995026,-0.0833930671215057,-0.00810384284704924,0.990038156509399,-0.140565872192383,-0.0715125575661659,0.982116281986237,-0.1741653829813,-0.0907085984945297,0.988838016986847,-0.118201144039631,-0.0273183602839708,0.993901252746582,-0.106836318969727,0.00986147858202457,0.984561026096344,-0.174763724207878,-0.0347621105611324,0.974776685237885,-0.220458775758743,-0.0715125575661659,0.982116281986237,-0.1741653829813,-0.00810384284704924,0.990038156509399,-0.140565872192383,0.045259702950716,0.980610609054565,-0.190668225288391,0.0137093728408217,0.967040538787842,-0.254253208637238,-0.0347621105611324,0.974776685237885,-0.220458775758743,0.00986147858202457,0.984561026096344,-0.174763724207878,0.0800002366304398,0.974942147731781,-0.207576155662537,0.0708034634590149,0.96026998758316,-0.269941389560699,0.0137093728408217,0.967040538787842,-0.254253208637238,0.045259702950716,0.980610609054565,-0.190668225288391,0.118104510009289,0.972732663154602,-0.199605703353882,0.130132839083672,0.954415798187256,-0.268618822097778,0.0708034634590149,0.96026998758316,-0.269941389560699,0.0800002366304398,0.974942147731781,-0.207576155662537,0.233345523476601,0.949094533920288,-0.211587607860565,0.185832515358925,0.950865983963013,-0.247628718614578,0.156323745846748,0.968725264072418,-0.192702203989029,0.18262292444706,0.969424188137054,-0.163907423615456,0.283760398626328,0.953145921230316,-0.104847349226475, +0.266315698623657,0.950198829174042,-0.161858901381493,0.209674164652824,0.968295693397522,-0.135794118046761,0.2141233086586,0.971960961818695,-0.0971757844090462,0.185832515358925,0.950865983963013,-0.247628718614578,0.130132839083672,0.954415798187256,-0.268618822097778,0.118104510009289,0.972732663154602,-0.199605703353882,0.156323745846748,0.968725264072418,-0.192702203989029,0.261988818645477,0.965011656284332,0.0106917843222618,0.281315624713898,0.958539307117462,-0.0454305149614811,0.219632729887962,0.97382253408432,-0.0585767216980457,0.200524926185608,0.979371070861816,-0.0249402169138193,0.266315698623657,0.950198829174042,-0.161858901381493,0.233345523476601,0.949094533920288,-0.211587607860565,0.18262292444706,0.969424188137054,-0.163907423615456,0.209674164652824,0.968295693397522,-0.135794118046761,0.225087359547615,0.972669243812561,0.057010680437088,0.182352721691132,0.983188152313232,0.00941635295748711,0.14704293012619,0.988810181617737,0.0251549612730742,0.176430642604828,0.980119943618774,0.0907592847943306,0.281315624713898,0.958539307117462,-0.0454305149614811,0.283760398626328,0.953145921230316,-0.104847349226475,0.2141233086586,0.971960961818695,-0.0971757844090462,0.219632729887962,0.97382253408432,-0.0585767216980457,0.225087359547615,0.972669243812561,0.057010680437088,0.261988818645477,0.965011656284332,0.0106917843222618,0.200524926185608,0.979371070861816,-0.0249402169138193,0.182352721691132,0.983188152313232,0.00941635295748711,0.0599126443266869,0.992687106132507,0.104798950254917,0.119252882897854,0.987160086631775,0.106272004544735,0.112120240926743,0.992800354957581,0.0421490892767906,0.0741646587848663,0.99666690826416,0.0339776948094368,0.0358377359807491,0.998988330364227,0.0271657519042492,0.00434280373156071,0.996486127376556,0.0836451351642609,0.0599126443266869,0.992687106132507,0.104798950254917,0.0741646587848663,0.99666690826416,0.0339776948094368,0.119252882897854,0.987160086631775,0.106272004544735,0.176430642604828,0.980119943618774,0.0907592847943306,0.14704293012619,0.988810181617737,0.0251549612730742, +0.112120240926743,0.992800354957581,0.0421490892767906,0.009743413887918,0.99995094537735,-0.00178469193633646,-0.0430223122239113,0.997940242290497,0.0475863181054592,0.00434280373156071,0.996486127376556,0.0836451351642609,0.0358377359807491,0.998988330364227,0.0271657519042492,-0.0173947121948004,0.999406456947327,-0.0297336876392365,-0.0758008733391762,0.997120678424835,-0.00210135220550001,-0.0430223122239113,0.997940242290497,0.0475863181054592,0.009743413887918,0.99995094537735,-0.00178469193633646,-0.0216618627309799,0.997420072555542,-0.0684391036629677,-0.0931697860360146,0.993904531002045,-0.0589350126683712,-0.0758008733391762,0.997120678424835,-0.00210135220550001,-0.0173947121948004,0.999406456947327,-0.0297336876392365,-0.116119585931301,0.0367293655872345,-0.992555856704712,-0.11610609292984,0.0367279127240181,-0.992557525634766,0.193363919854164,0.00759111950173974,-0.98109769821167,0.193349659442902,0.00759227992966771,-0.981100499629974,0.484751641750336,-0.0120517276227474,-0.874568819999695,0.484744966030121,-0.0120513867586851,-0.874572515487671,0.193349659442902,0.00759227992966771,-0.981100499629974,0.193363919854164,0.00759111950173974,-0.98109769821167,0.729694426059723,-0.0197668913751841,-0.683487594127655,0.72969651222229,-0.0197669062763453,-0.683485329151154,0.484744966030121,-0.0120513867586851,-0.874572515487671,0.484751641750336,-0.0120517276227474,-0.874568819999695,-0.858207583427429,0.151541396975517,-0.490423321723938,-0.858214974403381,0.151543289422989,-0.490409642457962,-0.669114351272583,0.112427055835724,-0.734606087207794,-0.669110894203186,0.112426452338696,-0.734609305858612,-0.669110894203186,0.112426452338696,-0.734609305858612,-0.669114351272583,0.112427055835724,-0.734606087207794,-0.413319170475006,0.073036752641201,-0.90765243768692,-0.413324683904648,0.0730375126004219,-0.907649874687195,0.90435117483139,-0.0153290824964643,-0.426513850688934,0.904357016086578,-0.0153286065906286,-0.426501303911209,0.72969651222229,-0.0197669062763453,-0.683485329151154,0.729694426059723,-0.0197668913751841,-0.683487594127655, +0.99168860912323,0.00135528785176575,-0.128653824329376,0.9916912317276,0.00135671929456294,-0.128633812069893,0.904357016086578,-0.0153286065906286,-0.426501303911209,0.90435117483139,-0.0153290824964643,-0.426513850688934,-0.970771908760071,0.212997004389763,0.110608115792274,-0.970769464969635,0.212998375296593,0.110627196729183,-0.962161421775818,0.186017513275146,-0.199105337262154,-0.962157547473907,0.186015412211418,-0.199125736951828,-0.962157547473907,0.186015412211418,-0.199125736951828,-0.962161421775818,0.186017513275146,-0.199105337262154,-0.858214974403381,0.151543289422989,-0.490409642457962,-0.858207583427429,0.151541396975517,-0.490423321723938,0.983062386512756,0.0281355045735836,0.181098744273186,0.98305881023407,0.0281374584883451,0.181117832660675,0.9916912317276,0.00135671929456294,-0.128633812069893,0.99168860912323,0.00135528785176575,-0.128653824329376,0.879146635532379,0.0629294514656067,0.472378045320511,0.879141986370087,0.0629306435585022,0.472386717796326,0.98305881023407,0.0281374584883451,0.181117832660675,0.983062386512756,0.0281355045735836,0.181098744273186,-0.708775997161865,0.234047189354897,0.665476083755493,-0.708777904510498,0.23404723405838,0.665474116802216,-0.883464157581329,0.229363724589348,0.408513605594635,-0.883468151092529,0.229363396763802,0.408505201339722,-0.883468151092529,0.229363396763802,0.408505201339722,-0.883464157581329,0.229363724589348,0.408513605594635,-0.970769464969635,0.212998375296593,0.110627196729183,-0.970771908760071,0.212997004389763,0.110608115792274,0.690017461776733,0.101796291768551,0.716598570346832,0.69001966714859,0.101795874536037,0.716596364974976,0.879141986370087,0.0629306435585022,0.472386717796326,0.879146635532379,0.0629294514656067,0.472378045320511,0.434247612953186,0.141432330012321,0.889621198177338,0.434261739253998,0.141430377960205,0.889614522457123,0.69001966714859,0.101795874536037,0.716596364974976,0.690017461776733,0.101796291768551,0.716598570346832,-0.172420248389244,0.206763342022896,0.963078439235687,-0.172444045543671,0.206765308976173,0.963073909282684, +-0.463859230279922,0.226088434457779,0.856573820114136,-0.463844835758209,0.226087719202042,0.856581807136536,-0.463844835758209,0.226087719202042,0.856581807136536,-0.463859230279922,0.226088434457779,0.856573820114136,-0.708777904510498,0.23404723405838,0.665474116802216,-0.708775997161865,0.234047189354897,0.665476083755493,0.137004718184471,0.177424490451813,0.974551320075989,0.137029409408569,0.177421823143959,0.974548280239105,0.434261739253998,0.141430377960205,0.889614522457123,0.434247612953186,0.141432330012321,0.889621198177338,-0.172420248389244,0.206763342022896,0.963078439235687,0.137029409408569,0.177421823143959,0.974548280239105,0.137004718184471,0.177424490451813,0.974551320075989,-0.172444045543671,0.206765308976173,0.963073909282684,-0.72879433631897,0.181255295872688,0.660307109355927,-0.729385733604431,0.181262165307999,0.659651815891266,-0.487126529216766,0.171778947114944,0.856270849704742,-0.486057341098785,0.171713769435883,0.856891214847565,0.195964440703392,0.608727753162384,0.768796861171722,0.3606076836586,0.514312386512756,0.778103351593018,0.235839396715164,0.939466059207916,0.248562440276146,0.16491624712944,0.963234961032867,0.212087199091911,0.488055199384689,0.516645491123199,0.703476786613464,0.285941869020462,0.941942691802979,0.176015049219131,0.235839396715164,0.939466059207916,0.248562440276146,0.3606076836586,0.514312386512756,0.778103351593018,0.18606261909008,0.980156540870667,0.0683649033308029,0.16491624712944,0.963234961032867,0.212087199091911,0.235839396715164,0.939466059207916,0.248562440276146,0.285941869020462,0.941942691802979,0.176015049219131,0.697272956371307,0.509706199169159,0.503994166851044,0.335128784179688,0.938011586666107,0.0884469449520111,0.312038868665695,0.942311406135559,0.12116514146328,0.594008028507233,0.545458078384399,0.59129524230957,0.335128784179688,0.938011586666107,0.0884469449520111,0.220971032977104,0.974068105220795,-0.0486098490655422,0.198664575815201,0.980019986629486,-0.0096497368067503,0.312038868665695,0.942311406135559,0.12116514146328, +0.312038868665695,0.942311406135559,0.12116514146328,0.198664575815201,0.980019986629486,-0.0096497368067503,0.18606261909008,0.980156540870667,0.0683649033308029,0.285941869020462,0.941942691802979,0.176015049219131,0.594008028507233,0.545458078384399,0.59129524230957,0.312038868665695,0.942311406135559,0.12116514146328,0.285941869020462,0.941942691802979,0.176015049219131,0.488055199384689,0.516645491123199,0.703476786613464,0.0792111530900002,0.996154367923737,0.0374446548521519,0.0734359622001648,0.973601460456848,0.216119065880775,0.1217897310853,0.971090316772461,0.205306842923164,0.121316581964493,0.992106378078461,0.0317347794771194,0.0734359622001648,0.973601460456848,0.216119065880775,-0.091823048889637,0.591379463672638,0.801148355007172,0.0453802682459354,0.631865561008453,0.773748338222504,0.1217897310853,0.971090316772461,0.205306842923164,0.1217897310853,0.971090316772461,0.205306842923164,0.0453802682459354,0.631865561008453,0.773748338222504,0.195964440703392,0.608727753162384,0.768796861171722,0.16491624712944,0.963234961032867,0.212087199091911,0.121316581964493,0.992106378078461,0.0317347794771194,0.1217897310853,0.971090316772461,0.205306842923164,0.16491624712944,0.963234961032867,0.212087199091911,0.18606261909008,0.980156540870667,0.0683649033308029,-0.368089437484741,0.645393550395966,0.669311106204987,-0.255521774291992,0.574448585510254,0.777635812759399,-0.00422780867666006,0.971269249916077,0.237945824861526,-0.0322656817734241,0.984496712684631,0.172409415245056,-0.091823048889637,0.591379463672638,0.801148355007172,0.0734359622001648,0.973601460456848,0.216119065880775,-0.00422780867666006,0.971269249916077,0.237945824861526,-0.255521774291992,0.574448585510254,0.777635812759399,0.0792111530900002,0.996154367923737,0.0374446548521519,-0.0322656817734241,0.984496712684631,0.172409415245056,-0.00422780867666006,0.971269249916077,0.237945824861526,0.0734359622001648,0.973601460456848,0.216119065880775,0.220971032977104,0.974068105220795,-0.0486098490655422,0.129193440079689,0.987907767295837,-0.0857159346342087, +0.125402331352234,0.990324318408966,-0.0594305396080017,0.198664575815201,0.980019986629486,-0.0096497368067503,0.129193440079689,0.987907767295837,-0.0857159346342087,0.106719866394997,0.989906668663025,-0.0932505428791046,0.101717486977577,0.992560744285583,-0.0669069662690163,0.125402331352234,0.990324318408966,-0.0594305396080017,0.125402331352234,0.990324318408966,-0.0594305396080017,0.101717486977577,0.992560744285583,-0.0669069662690163,0.0792111530900002,0.996154367923737,0.0374446548521519,0.121316581964493,0.992106378078461,0.0317347794771194,0.198664575815201,0.980019986629486,-0.0096497368067503,0.125402331352234,0.990324318408966,-0.0594305396080017,0.121316581964493,0.992106378078461,0.0317347794771194,0.18606261909008,0.980156540870667,0.0683649033308029,0.697272956371307,0.509706199169159,0.503994166851044,0.810074210166931,0.418966799974442,0.41017872095108,0.399758577346802,0.913723587989807,0.0728162080049515,0.335128784179688,0.938011586666107,0.0884469449520111,0.866002261638641,0.431202918291092,0.253187894821167,0.385908871889114,0.922463178634644,-0.0116609483957291,0.399758577346802,0.913723587989807,0.0728162080049515,0.810074210166931,0.418966799974442,0.41017872095108,0.220971032977104,0.974068105220795,-0.0486098490655422,0.335128784179688,0.938011586666107,0.0884469449520111,0.399758577346802,0.913723587989807,0.0728162080049515,0.385908871889114,0.922463178634644,-0.0116609483957291,0.880633413791656,0.471596837043762,-0.0456205904483795,0.386597126722336,0.913945257663727,-0.123477108776569,0.378778219223022,0.922943115234375,-0.0685785263776779,0.874832332134247,0.474793434143066,0.0961230471730232,0.386597126722336,0.913945257663727,-0.123477108776569,0.257245153188705,0.956354260444641,-0.138604685664177,0.218888655304909,0.97173273563385,-0.0884494706988335,0.378778219223022,0.922943115234375,-0.0685785263776779,0.378778219223022,0.922943115234375,-0.0685785263776779,0.218888655304909,0.97173273563385,-0.0884494706988335,0.220971032977104,0.974068105220795,-0.0486098490655422,0.385908871889114,0.922463178634644,-0.0116609483957291, +0.874832332134247,0.474793434143066,0.0961230471730232,0.378778219223022,0.922943115234375,-0.0685785263776779,0.385908871889114,0.922463178634644,-0.0116609483957291,0.866002261638641,0.431202918291092,0.253187894821167,-0.0368760153651237,0.999223113059998,0.0139048416167498,-0.125320062041283,0.98256653547287,0.137324184179306,-0.0683277994394302,0.985704481601715,0.154006704688072,0.0371717922389507,0.999165892601013,0.0169080402702093,-0.125320062041283,0.98256653547287,0.137324184179306,-0.601396024227142,0.620813608169556,0.502904891967773,-0.47236579656601,0.664360225200653,0.579220235347748,-0.0683277994394302,0.985704481601715,0.154006704688072,-0.0683277994394302,0.985704481601715,0.154006704688072,-0.47236579656601,0.664360225200653,0.579220235347748,-0.368089437484741,0.645393550395966,0.669311106204987,-0.0322656817734241,0.984496712684631,0.172409415245056,0.0371717922389507,0.999165892601013,0.0169080402702093,-0.0683277994394302,0.985704481601715,0.154006704688072,-0.0322656817734241,0.984496712684631,0.172409415245056,0.0792111530900002,0.996154367923737,0.0374446548521519,-0.731759607791901,0.644273459911346,0.222350135445595,-0.711689829826355,0.588897824287415,0.383010298013687,-0.204345032572746,0.97356390953064,0.102060832083225,-0.179799482226372,0.983466327190399,0.0215928666293621,-0.601396024227142,0.620813608169556,0.502904891967773,-0.125320062041283,0.98256653547287,0.137324184179306,-0.204345032572746,0.97356390953064,0.102060832083225,-0.711689829826355,0.588897824287415,0.383010298013687,-0.0368760153651237,0.999223113059998,0.0139048416167498,-0.179799482226372,0.983466327190399,0.0215928666293621,-0.204345032572746,0.97356390953064,0.102060832083225,-0.125320062041283,0.98256653547287,0.137324184179306,-0.00853883940726519,0.995258748531342,-0.09688750654459,-0.171362951397896,0.98052442073822,-0.0959504693746567,-0.173232361674309,0.984283804893494,-0.0342905819416046,-0.0126282032579184,0.99809318780899,-0.0604208000004292,-0.171362951397896,0.98052442073822,-0.0959504693746567, +-0.744038939476013,0.66496068239212,-0.0650637075304985,-0.738719344139099,0.669542014598846,0.0775060877203941,-0.173232361674309,0.984283804893494,-0.0342905819416046,-0.173232361674309,0.984283804893494,-0.0342905819416046,-0.738719344139099,0.669542014598846,0.0775060877203941,-0.731759607791901,0.644273459911346,0.222350135445595,-0.179799482226372,0.983466327190399,0.0215928666293621,-0.0126282032579184,0.99809318780899,-0.0604208000004292,-0.173232361674309,0.984283804893494,-0.0342905819416046,-0.179799482226372,0.983466327190399,0.0215928666293621,-0.0368760153651237,0.999223113059998,0.0139048416167498,-0.00853883940726519,0.995258748531342,-0.09688750654459,-0.000177086258190684,0.9923375248909,-0.123556837439537,-0.159276530146599,0.975232601165771,-0.153468027710915,-0.171362951397896,0.98052442073822,-0.0959504693746567,-0.000177086258190684,0.9923375248909,-0.123556837439537,-0.00437980331480503,0.984823048114777,-0.173506110906601,-0.155519887804985,0.967899441719055,-0.197444185614586,-0.159276530146599,0.975232601165771,-0.153468027710915,-0.159276530146599,0.975232601165771,-0.153468027710915,-0.155519887804985,0.967899441719055,-0.197444185614586,-0.730019629001617,0.590766489505768,-0.343607664108276,-0.737855792045593,0.642761528491974,-0.205976665019989,-0.171362951397896,0.98052442073822,-0.0959504693746567,-0.159276530146599,0.975232601165771,-0.153468027710915,-0.737855792045593,0.642761528491974,-0.205976665019989,-0.744038939476013,0.66496068239212,-0.0650637075304985,0.257245153188705,0.956354260444641,-0.138604685664177,0.136099696159363,0.985639810562134,-0.099956139922142,0.131295248866081,0.987066805362701,-0.0919817462563515,0.218888655304909,0.97173273563385,-0.0884494706988335,0.136099696159363,0.985639810562134,-0.099956139922142,0.106719695031643,0.989906430244446,-0.0932527035474777,0.106718778610229,0.98990672826767,-0.09325110912323,0.131295248866081,0.987066805362701,-0.0919817462563515,0.131295248866081,0.987066805362701,-0.0919817462563515,0.106718778610229,0.98990672826767,-0.09325110912323, +0.106719866394997,0.989906668663025,-0.0932505428791046,0.129193440079689,0.987907767295837,-0.0857159346342087,0.218888655304909,0.97173273563385,-0.0884494706988335,0.131295248866081,0.987066805362701,-0.0919817462563515,0.129193440079689,0.987907767295837,-0.0857159346342087,0.220971032977104,0.974068105220795,-0.0486098490655422,0.882107615470886,0.331433296203613,-0.334720939397812,0.783384263515472,0.403131932020187,-0.473068535327911,0.397764444351196,0.897064864635468,-0.192504495382309,0.891128420829773,0.419426769018173,-0.173122435808182,0.783384263515472,0.403131932020187,-0.473068535327911,0.692607641220093,0.443135261535645,-0.56914484500885,0.371048808097839,0.895207524299622,-0.246832191944122,0.397764444351196,0.897064864635468,-0.192504495382309,0.397764444351196,0.897064864635468,-0.192504495382309,0.371048808097839,0.895207524299622,-0.246832191944122,0.257245153188705,0.956354260444641,-0.138604685664177,0.386597126722336,0.913945257663727,-0.123477108776569,0.891128420829773,0.419426769018173,-0.173122435808182,0.397764444351196,0.897064864635468,-0.192504495382309,0.386597126722336,0.913945257663727,-0.123477108776569,0.880633413791656,0.471596837043762,-0.0456205904483795,-0.597647726535797,0.515091478824615,-0.614408552646637,-0.708903789520264,0.506207466125488,-0.491130799055099,-0.1878702044487,0.942828893661499,-0.275278896093369,-0.124872162938118,0.941835463047028,-0.312014162540436,-0.730019629001617,0.590766489505768,-0.343607664108276,-0.155519887804985,0.967899441719055,-0.197444185614586,-0.1878702044487,0.942828893661499,-0.275278896093369,-0.708903789520264,0.506207466125488,-0.491130799055099,-0.00437980331480503,0.984823048114777,-0.173506110906601,-0.124872162938118,0.941835463047028,-0.312014162540436,-0.1878702044487,0.942828893661499,-0.275278896093369,-0.155519887804985,0.967899441719055,-0.197444185614586,-0.00437980331480503,0.984823048114777,-0.173506110906601,0.0180247593671083,0.975980758666992,-0.217110008001328,-0.0824871137738228,0.936447083950043,-0.340973079204559, +-0.124872162938118,0.941835463047028,-0.312014162540436,0.0180247593671083,0.975980758666992,-0.217110008001328,0.038515068590641,0.951553165912628,-0.305062413215637,-0.0543354414403439,0.923723101615906,-0.379187703132629,-0.0824871137738228,0.936447083950043,-0.340973079204559,-0.0824871137738228,0.936447083950043,-0.340973079204559,-0.0543354414403439,0.923723101615906,-0.379187703132629,-0.362795621156693,0.507979810237885,-0.781239867210388,-0.467881292104721,0.543572306632996,-0.696861684322357,-0.124872162938118,0.941835463047028,-0.312014162540436,-0.0824871137738228,0.936447083950043,-0.340973079204559,-0.467881292104721,0.543572306632996,-0.696861684322357,-0.597647726535797,0.515091478824615,-0.614408552646637,0.692607641220093,0.443135261535645,-0.56914484500885,0.593485593795776,0.445265531539917,-0.670457541942596,0.336744964122772,0.891629874706268,-0.302653133869171,0.371048808097839,0.895207524299622,-0.246832191944122,0.593485593795776,0.445265531539917,-0.670457541942596,0.480477899312973,0.428850650787354,-0.765002071857452,0.285145282745361,0.883533477783203,-0.371565341949463,0.336744964122772,0.891629874706268,-0.302653133869171,0.336744964122772,0.891629874706268,-0.302653133869171,0.285145282745361,0.883533477783203,-0.371565341949463,0.239119872450829,0.930712759494781,-0.276758581399918,0.238962292671204,0.952512264251709,-0.188725486397743,0.371048808097839,0.895207524299622,-0.246832191944122,0.336744964122772,0.891629874706268,-0.302653133869171,0.238962292671204,0.952512264251709,-0.188725486397743,0.257245153188705,0.956354260444641,-0.138604685664177,0.239119872450829,0.930712759494781,-0.276758581399918,0.1655353307724,0.95172131061554,-0.258504629135132,0.141002967953682,0.981338441371918,-0.130740150809288,0.238962292671204,0.952512264251709,-0.188725486397743,0.1655353307724,0.95172131061554,-0.258504629135132,0.134882971644402,0.957155644893646,-0.256241083145142,0.112357504665852,0.985805928707123,-0.124749228358269,0.141002967953682,0.981338441371918,-0.130740150809288,0.141002967953682,0.981338441371918,-0.130740150809288, +0.112357504665852,0.985805928707123,-0.124749228358269,0.106719695031643,0.989906430244446,-0.0932527035474777,0.136099696159363,0.985639810562134,-0.099956139922142,0.238962292671204,0.952512264251709,-0.188725486397743,0.141002967953682,0.981338441371918,-0.130740150809288,0.136099696159363,0.985639810562134,-0.099956139922142,0.257245153188705,0.956354260444641,-0.138604685664177,0.206341102719307,0.435525953769684,-0.876208066940308,0.158889204263687,0.898476183414459,-0.40926131606102,0.210373863577843,0.890852451324463,-0.402647137641907,0.34665659070015,0.423333913087845,-0.837028980255127,0.158889204263687,0.898476183414459,-0.40926131606102,0.134882971644402,0.957155644893646,-0.256241083145142,0.1655353307724,0.95172131061554,-0.258504629135132,0.210373863577843,0.890852451324463,-0.402647137641907,0.210373863577843,0.890852451324463,-0.402647137641907,0.1655353307724,0.95172131061554,-0.258504629135132,0.239119872450829,0.930712759494781,-0.276758581399918,0.285145282745361,0.883533477783203,-0.371565341949463,0.34665659070015,0.423333913087845,-0.837028980255127,0.210373863577843,0.890852451324463,-0.402647137641907,0.285145282745361,0.883533477783203,-0.371565341949463,0.480477899312973,0.428850650787354,-0.765002071857452,-0.0926565006375313,0.406751424074173,-0.908827781677246,-0.251266896724701,0.413900852203369,-0.874957740306854,-0.0201708320528269,0.89576244354248,-0.444075167179108,0.0555714257061481,0.898397624492645,-0.435652852058411,-0.362795621156693,0.507979810237885,-0.781239867210388,-0.0543354414403439,0.923723101615906,-0.379187703132629,-0.0201708320528269,0.89576244354248,-0.444075167179108,-0.251266896724701,0.413900852203369,-0.874957740306854,0.038515068590641,0.951553165912628,-0.305062413215637,0.0555714257061481,0.898397624492645,-0.435652852058411,-0.0201708320528269,0.89576244354248,-0.444075167179108,-0.0543354414403439,0.923723101615906,-0.379187703132629,0.106719866394997,0.989906668663025,-0.0932505428791046,0.084814041852951,0.991880774497986,-0.0947577357292175,0.0777324587106705,0.994619607925415,-0.0684798434376717, +0.101717486977577,0.992560744285583,-0.0669069662690163,0.084814041852951,0.991880774497986,-0.0947577357292175,-0.00853883940726519,0.995258748531342,-0.09688750654459,-0.0126282032579184,0.99809318780899,-0.0604208000004292,0.0777324587106705,0.994619607925415,-0.0684798434376717,0.0777324587106705,0.994619607925415,-0.0684798434376717,-0.0126282032579184,0.99809318780899,-0.0604208000004292,-0.0368760153651237,0.999223113059998,0.0139048416167498,0.0371717922389507,0.999165892601013,0.0169080402702093,0.101717486977577,0.992560744285583,-0.0669069662690163,0.0777324587106705,0.994619607925415,-0.0684798434376717,0.0371717922389507,0.999165892601013,0.0169080402702093,0.0792111530900002,0.996154367923737,0.0374446548521519,0.106719695031643,0.989906430244446,-0.0932527035474777,0.0827154293656349,0.990592956542969,-0.109012804925442,0.0845814943313599,0.991328060626984,-0.100571721792221,0.106718778610229,0.98990672826767,-0.09325110912323,0.0827154293656349,0.990592956542969,-0.109012804925442,-0.00437980331480503,0.984823048114777,-0.173506110906601,-0.000177086258190684,0.9923375248909,-0.123556837439537,0.0845814943313599,0.991328060626984,-0.100571721792221,0.0845814943313599,0.991328060626984,-0.100571721792221,-0.000177086258190684,0.9923375248909,-0.123556837439537,-0.00853883940726519,0.995258748531342,-0.09688750654459,0.084814041852951,0.991880774497986,-0.0947577357292175,0.106718778610229,0.98990672826767,-0.09325110912323,0.0845814943313599,0.991328060626984,-0.100571721792221,0.084814041852951,0.991880774497986,-0.0947577357292175,0.106719866394997,0.989906668663025,-0.0932505428791046,0.134882971644402,0.957155644893646,-0.256241083145142,0.108515508472919,0.957774341106415,-0.266256958246231,0.0879685878753662,0.985778212547302,-0.143188655376434,0.112357504665852,0.985805928707123,-0.124749228358269,0.108515508472919,0.957774341106415,-0.266256958246231,0.038515068590641,0.951553165912628,-0.305062413215637,0.0180247593671083,0.975980758666992,-0.217110008001328,0.0879685878753662,0.985778212547302,-0.143188655376434, +0.0879685878753662,0.985778212547302,-0.143188655376434,0.0180247593671083,0.975980758666992,-0.217110008001328,-0.00437980331480503,0.984823048114777,-0.173506110906601,0.0827154293656349,0.990592956542969,-0.109012804925442,0.112357504665852,0.985805928707123,-0.124749228358269,0.0879685878753662,0.985778212547302,-0.143188655376434,0.0827154293656349,0.990592956542969,-0.109012804925442,0.106719695031643,0.989906430244446,-0.0932527035474777,0.206341102719307,0.435525953769684,-0.876208066940308,0.0635582432150841,0.436065107584,-0.89766788482666,0.116645380854607,0.899822533130646,-0.420372664928436,0.158889204263687,0.898476183414459,-0.40926131606102,0.0635582432150841,0.436065107584,-0.89766788482666,-0.0926565006375313,0.406751424074173,-0.908827781677246,0.0555714257061481,0.898397624492645,-0.435652852058411,0.116645380854607,0.899822533130646,-0.420372664928436,0.116645380854607,0.899822533130646,-0.420372664928436,0.0555714257061481,0.898397624492645,-0.435652852058411,0.038515068590641,0.951553165912628,-0.305062413215637,0.108515508472919,0.957774341106415,-0.266256958246231,0.158889204263687,0.898476183414459,-0.40926131606102,0.116645380854607,0.899822533130646,-0.420372664928436,0.108515508472919,0.957774341106415,-0.266256958246231,0.134882971644402,0.957155644893646,-0.256241083145142,0.523070812225342,-0.0364433191716671,0.851509749889374,0.541304230690002,-0.190030559897423,0.819071471691132,0.242693021893501,-0.101827703416348,0.96474415063858,0.136801093816757,0.0539715811610222,0.989127159118652,0.260682344436646,-0.749895870685577,0.608030319213867,0.130298003554344,-0.0680463314056396,0.989137053489685,0.242693021893501,-0.101827703416348,0.96474415063858,0.541304230690002,-0.190030559897423,0.819071471691132,0.0449380464851856,0.0890485420823097,0.995013058185577,0.136801093816757,0.0539715811610222,0.989127159118652,0.242693021893501,-0.101827703416348,0.96474415063858,0.130298003554344,-0.0680463314056396,0.989137053489685,0.932422339916229,-0.0739331170916557,0.353726327419281,0.884072303771973,-0.291312426328659,0.36544942855835, +0.718802809715271,-0.222135215997696,0.658770442008972,0.768363118171692,-0.0450748279690742,0.638424932956696,0.884072303771973,-0.291312426328659,0.36544942855835,0.51873117685318,-0.810997605323792,0.270556479692459,0.418720752000809,-0.760615527629852,0.496121734380722,0.718802809715271,-0.222135215997696,0.658770442008972,0.718802809715271,-0.222135215997696,0.658770442008972,0.418720752000809,-0.760615527629852,0.496121734380722,0.260682344436646,-0.749895870685577,0.608030319213867,0.541304230690002,-0.190030559897423,0.819071471691132,0.768363118171692,-0.0450748279690742,0.638424932956696,0.718802809715271,-0.222135215997696,0.658770442008972,0.541304230690002,-0.190030559897423,0.819071471691132,0.523070812225342,-0.0364433191716671,0.851509749889374,0.932422339916229,-0.0739331170916557,0.353726327419281,0.993481457233429,-0.113169342279434,0.0136861745268106,0.944084763526917,-0.328169614076614,0.0317600890994072,0.884072303771973,-0.291312426328659,0.36544942855835,0.993481457233429,-0.113169342279434,0.0136861745268106,0.934512138366699,-0.138709619641304,-0.327790588140488,0.88655024766922,-0.354235053062439,-0.297567218542099,0.944084763526917,-0.328169614076614,0.0317600890994072,0.944084763526917,-0.328169614076614,0.0317600890994072,0.88655024766922,-0.354235053062439,-0.297567218542099,0.501958727836609,-0.849680185317993,-0.161496549844742,0.585918664932251,-0.808387160301208,0.0566522739827633,0.884072303771973,-0.291312426328659,0.36544942855835,0.944084763526917,-0.328169614076614,0.0317600890994072,0.585918664932251,-0.808387160301208,0.0566522739827633,0.51873117685318,-0.810997605323792,0.270556479692459,0.51873117685318,-0.810997605323792,0.270556479692459,0.25001922249794,-0.935357987880707,0.250191420316696,0.218308195471764,-0.921590805053711,0.320954531431198,0.418720752000809,-0.760615527629852,0.496121734380722,0.25001922249794,-0.935357987880707,0.250191420316696,0.477071106433868,-0.816278159618378,0.325719475746155,0.395717263221741,-0.833828091621399,0.384887546300888,0.218308195471764,-0.921590805053711,0.320954531431198, +0.218308195471764,-0.921590805053711,0.320954531431198,0.395717263221741,-0.833828091621399,0.384887546300888,0.34729927778244,-0.823476850986481,0.448630064725876,0.173049360513687,-0.909850060939789,0.377129584550858,0.418720752000809,-0.760615527629852,0.496121734380722,0.218308195471764,-0.921590805053711,0.320954531431198,0.173049360513687,-0.909850060939789,0.377129584550858,0.260682344436646,-0.749895870685577,0.608030319213867,0.934512138366699,-0.138709619641304,-0.327790588140488,0.762862801551819,-0.147504091262817,-0.62950998544693,0.722540974617004,-0.35379895567894,-0.593936860561371,0.88655024766922,-0.354235053062439,-0.297567218542099,0.762862801551819,-0.147504091262817,-0.62950998544693,0.499274969100952,-0.138520330190659,-0.855299174785614,0.468315243721008,-0.332643985748291,-0.818552851676941,0.722540974617004,-0.35379895567894,-0.593936860561371,0.722540974617004,-0.35379895567894,-0.593936860561371,0.468315243721008,-0.332643985748291,-0.818552851676941,0.254512250423431,-0.827064692974091,-0.501186013221741,0.418608695268631,-0.831982314586639,-0.364104747772217,0.88655024766922,-0.354235053062439,-0.297567218542099,0.722540974617004,-0.35379895567894,-0.593936860561371,0.418608695268631,-0.831982314586639,-0.364104747772217,0.501958727836609,-0.849680185317993,-0.161496549844742,0.281380355358124,-0.666498124599457,0.69036602973938,0.132488697767258,-0.759632468223572,0.636714398860931,0.118533574044704,-0.88715922832489,0.445980042219162,0.305135101079941,-0.788690626621246,0.533722400665283,0.132488697767258,-0.759632468223572,0.636714398860931,0.113953396677971,-0.730107367038727,0.673763871192932,0.0723857805132866,-0.894047498703003,0.442085266113281,0.118533574044704,-0.88715922832489,0.445980042219162,0.118533574044704,-0.88715922832489,0.445980042219162,0.0723857805132866,-0.894047498703003,0.442085266113281,0.260682344436646,-0.749895870685577,0.608030319213867,0.173049360513687,-0.909850060939789,0.377129584550858,0.305135101079941,-0.788690626621246,0.533722400665283,0.118533574044704,-0.88715922832489,0.445980042219162, +0.173049360513687,-0.909850060939789,0.377129584550858,0.34729927778244,-0.823476850986481,0.448630064725876,0.500812232494354,0.107974261045456,0.858794927597046,0.371465355157852,0.139413505792618,0.917920172214508,0.282893389463425,-0.376979976892471,0.881962180137634,0.414099097251892,-0.356570422649384,0.837484061717987,0.371465355157852,0.139413505792618,0.917920172214508,0.319900095462799,0.155496552586555,0.934604048728943,0.248861879110336,-0.372503072023392,0.894040942192078,0.282893389463425,-0.376979976892471,0.881962180137634,0.282893389463425,-0.376979976892471,0.881962180137634,0.248861879110336,-0.372503072023392,0.894040942192078,0.113953396677971,-0.730107367038727,0.673763871192932,0.132488697767258,-0.759632468223572,0.636714398860931,0.414099097251892,-0.356570422649384,0.837484061717987,0.282893389463425,-0.376979976892471,0.881962180137634,0.132488697767258,-0.759632468223572,0.636714398860931,0.281380355358124,-0.666498124599457,0.69036602973938,0.371465355157852,0.139413505792618,0.917920172214508,0.3606076836586,0.514312386512756,0.778103351593018,0.195964440703392,0.608727753162384,0.768796861171722,0.319900095462799,0.155496552586555,0.934604048728943,0.642990112304688,0.0825932845473289,0.761407911777496,0.594008028507233,0.545458078384399,0.59129524230957,0.488055199384689,0.516645491123199,0.703476786613464,0.500812232494354,0.107974261045456,0.858794927597046,0.765482783317566,0.0573053285479546,0.640899538993835,0.697272956371307,0.509706199169159,0.503994166851044,0.594008028507233,0.545458078384399,0.59129524230957,0.642990112304688,0.0825932845473289,0.761407911777496,0.938690066337585,0.00888647884130478,0.344647496938705,0.866002261638641,0.431202918291092,0.253187894821167,0.810074210166931,0.418966799974442,0.41017872095108,0.864990055561066,0.0323569849133492,0.500744581222534,0.281380355358124,-0.666498124599457,0.69036602973938,0.305135101079941,-0.788690626621246,0.533722400665283,0.542338788509369,-0.42004406452179,0.727620542049408,0.414099097251892,-0.356570422649384,0.837484061717987, +0.305135101079941,-0.788690626621246,0.533722400665283,0.34729927778244,-0.823476850986481,0.448630064725876,0.629578471183777,-0.475825071334839,0.614183723926544,0.542338788509369,-0.42004406452179,0.727620542049408,0.542338788509369,-0.42004406452179,0.727620542049408,0.629578471183777,-0.475825071334839,0.614183723926544,0.765482783317566,0.0573053285479546,0.640899538993835,0.642990112304688,0.0825932845473289,0.761407911777496,0.414099097251892,-0.356570422649384,0.837484061717987,0.542338788509369,-0.42004406452179,0.727620542049408,0.642990112304688,0.0825932845473289,0.761407911777496,0.500812232494354,0.107974261045456,0.858794927597046,0.864990055561066,0.0323569849133492,0.500744581222534,0.810074210166931,0.418966799974442,0.41017872095108,0.697272956371307,0.509706199169159,0.503994166851044,0.765482783317566,0.0573053285479546,0.640899538993835,0.984001576900482,-0.0119387488812208,0.177759140729904,0.874832332134247,0.474793434143066,0.0961230471730232,0.866002261638641,0.431202918291092,0.253187894821167,0.938690066337585,0.00888647884130478,0.344647496938705,0.34729927778244,-0.823476850986481,0.448630064725876,0.395717263221741,-0.833828091621399,0.384887546300888,0.708089590072632,-0.502128601074219,0.496463447809219,0.629578471183777,-0.475825071334839,0.614183723926544,0.395717263221741,-0.833828091621399,0.384887546300888,0.477071106433868,-0.816278159618378,0.325719475746155,0.782279670238495,-0.503050863742828,0.367394059896469,0.708089590072632,-0.502128601074219,0.496463447809219,0.708089590072632,-0.502128601074219,0.496463447809219,0.782279670238495,-0.503050863742828,0.367394059896469,0.938690066337585,0.00888647884130478,0.344647496938705,0.864990055561066,0.0323569849133492,0.500744581222534,0.629578471183777,-0.475825071334839,0.614183723926544,0.708089590072632,-0.502128601074219,0.496463447809219,0.864990055561066,0.0323569849133492,0.500744581222534,0.765482783317566,0.0573053285479546,0.640899538993835,0.999539196491241,-0.0297996178269386,0.00578913511708379,0.880633413791656,0.471596837043762,-0.0456205904483795, +0.874832332134247,0.474793434143066,0.0961230471730232,0.984001576900482,-0.0119387488812208,0.177759140729904,0.939837157726288,-0.0763355568051338,-0.332985013723373,0.882107615470886,0.331433296203613,-0.334720939397812,0.891128420829773,0.419426769018173,-0.173122435808182,0.986880242824554,-0.0543313957750797,-0.152037724852562,0.477071106433868,-0.816278159618378,0.325719475746155,0.554675400257111,-0.809454441070557,0.192662209272385,0.834798753261566,-0.510235249996185,0.206811517477036,0.782279670238495,-0.503050863742828,0.367394059896469,0.554675400257111,-0.809454441070557,0.192662209272385,0.506812989711761,-0.859692633152008,0.0637903809547424,0.837610721588135,-0.54451185464859,0.0437630265951157,0.834798753261566,-0.510235249996185,0.206811517477036,0.834798753261566,-0.510235249996185,0.206811517477036,0.837610721588135,-0.54451185464859,0.0437630265951157,0.999539196491241,-0.0297996178269386,0.00578913511708379,0.984001576900482,-0.0119387488812208,0.177759140729904,0.782279670238495,-0.503050863742828,0.367394059896469,0.834798753261566,-0.510235249996185,0.206811517477036,0.984001576900482,-0.0119387488812208,0.177759140729904,0.938690066337585,0.00888647884130478,0.344647496938705,0.477071106433868,-0.816278159618378,0.325719475746155,0.25001922249794,-0.935357987880707,0.250191420316696,0.282114326953888,-0.943650662899017,0.173017159104347,0.554675400257111,-0.809454441070557,0.192662209272385,0.51873117685318,-0.810997605323792,0.270556479692459,0.285738706588745,-0.952033877372742,0.109474629163742,0.282114326953888,-0.943650662899017,0.173017159104347,0.25001922249794,-0.935357987880707,0.250191420316696,0.506812989711761,-0.859692633152008,0.0637903809547424,0.554675400257111,-0.809454441070557,0.192662209272385,0.282114326953888,-0.943650662899017,0.173017159104347,0.285738706588745,-0.952033877372742,0.109474629163742,0.501958727836609,-0.849680185317993,-0.161496549844742,0.271746754646301,-0.962299466133118,-0.0115419002249837,0.290758222341537,-0.955450057983398,0.0507441386580467, +0.585918664932251,-0.808387160301208,0.0566522739827633,0.271746754646301,-0.962299466133118,-0.0115419002249837,0.50409734249115,-0.858626782894135,-0.092983216047287,0.482148200273514,-0.876082718372345,-0.00348360114730895,0.290758222341537,-0.955450057983398,0.0507441386580467,0.290758222341537,-0.955450057983398,0.0507441386580467,0.482148200273514,-0.876082718372345,-0.00348360114730895,0.506812989711761,-0.859692633152008,0.0637903809547424,0.285738706588745,-0.952033877372742,0.109474629163742,0.585918664932251,-0.808387160301208,0.0566522739827633,0.290758222341537,-0.955450057983398,0.0507441386580467,0.285738706588745,-0.952033877372742,0.109474629163742,0.51873117685318,-0.810997605323792,0.270556479692459,0.986880242824554,-0.0543313957750797,-0.152037724852562,0.891128420829773,0.419426769018173,-0.173122435808182,0.880633413791656,0.471596837043762,-0.0456205904483795,0.999539196491241,-0.0297996178269386,0.00578913511708379,0.860794126987457,-0.0730971768498421,-0.50367671251297,0.783384263515472,0.403131932020187,-0.473068535327911,0.882107615470886,0.331433296203613,-0.334720939397812,0.939837157726288,-0.0763355568051338,-0.332985013723373,0.506812989711761,-0.859692633152008,0.0637903809547424,0.482148200273514,-0.876082718372345,-0.00348360114730895,0.817303240299225,-0.568074584007263,-0.0964717268943787,0.837610721588135,-0.54451185464859,0.0437630265951157,0.482148200273514,-0.876082718372345,-0.00348360114730895,0.50409734249115,-0.858626782894135,-0.092983216047287,0.79157567024231,-0.561494052410126,-0.241106361150742,0.817303240299225,-0.568074584007263,-0.0964717268943787,0.817303240299225,-0.568074584007263,-0.0964717268943787,0.79157567024231,-0.561494052410126,-0.241106361150742,0.939837157726288,-0.0763355568051338,-0.332985013723373,0.986880242824554,-0.0543313957750797,-0.152037724852562,0.837610721588135,-0.54451185464859,0.0437630265951157,0.817303240299225,-0.568074584007263,-0.0964717268943787,0.986880242824554,-0.0543313957750797,-0.152037724852562,0.999539196491241,-0.0297996178269386,0.00578913511708379, +0.769747734069824,-0.064057819545269,-0.635126113891602,0.692607641220093,0.443135261535645,-0.56914484500885,0.783384263515472,0.403131932020187,-0.473068535327911,0.860794126987457,-0.0730971768498421,-0.50367671251297,0.507099211215973,-0.0555352978408337,-0.86009669303894,0.480477899312973,0.428850650787354,-0.765002071857452,0.593485593795776,0.445265531539917,-0.670457541942596,0.648320019245148,-0.0620114766061306,-0.758838355541229,0.50409734249115,-0.858626782894135,-0.092983216047287,0.271746754646301,-0.962299466133118,-0.0115419002249837,0.24688184261322,-0.964694857597351,-0.0917241871356964,0.480375379323959,-0.842303335666656,-0.244467809796333,0.501958727836609,-0.849680185317993,-0.161496549844742,0.208818003535271,-0.967404544353485,-0.143260210752487,0.24688184261322,-0.964694857597351,-0.0917241871356964,0.271746754646301,-0.962299466133118,-0.0115419002249837,0.357892125844955,-0.878893494606018,-0.31537202000618,0.480375379323959,-0.842303335666656,-0.244467809796333,0.24688184261322,-0.964694857597351,-0.0917241871356964,0.208818003535271,-0.967404544353485,-0.143260210752487,0.50409734249115,-0.858626782894135,-0.092983216047287,0.480375379323959,-0.842303335666656,-0.244467809796333,0.730014503002167,-0.55535089969635,-0.39832678437233,0.79157567024231,-0.561494052410126,-0.241106361150742,0.480375379323959,-0.842303335666656,-0.244467809796333,0.357892125844955,-0.878893494606018,-0.31537202000618,0.626300096511841,-0.574298799037933,-0.52718985080719,0.730014503002167,-0.55535089969635,-0.39832678437233,0.730014503002167,-0.55535089969635,-0.39832678437233,0.626300096511841,-0.574298799037933,-0.52718985080719,0.769747734069824,-0.064057819545269,-0.635126113891602,0.860794126987457,-0.0730971768498421,-0.50367671251297,0.79157567024231,-0.561494052410126,-0.241106361150742,0.730014503002167,-0.55535089969635,-0.39832678437233,0.860794126987457,-0.0730971768498421,-0.50367671251297,0.939837157726288,-0.0763355568051338,-0.332985013723373,0.254512250423431,-0.827064692974091,-0.501186013221741, +0.105130478739738,-0.959527969360352,-0.261254012584686,0.179274216294289,-0.963176608085632,-0.200378715991974,0.418608695268631,-0.831982314586639,-0.364104747772217,0.105130478739738,-0.959527969360352,-0.261254012584686,0.194940179586411,-0.892410159111023,-0.40694272518158,0.279224276542664,-0.894013643264771,-0.350390404462814,0.179274216294289,-0.963176608085632,-0.200378715991974,0.179274216294289,-0.963176608085632,-0.200378715991974,0.279224276542664,-0.894013643264771,-0.350390404462814,0.357892125844955,-0.878893494606018,-0.31537202000618,0.208818003535271,-0.967404544353485,-0.143260210752487,0.418608695268631,-0.831982314586639,-0.364104747772217,0.179274216294289,-0.963176608085632,-0.200378715991974,0.208818003535271,-0.967404544353485,-0.143260210752487,0.501958727836609,-0.849680185317993,-0.161496549844742,0.648320019245148,-0.0620114766061306,-0.758838355541229,0.593485593795776,0.445265531539917,-0.670457541942596,0.692607641220093,0.443135261535645,-0.56914484500885,0.769747734069824,-0.064057819545269,-0.635126113891602,0.350751668214798,-0.0444522313773632,-0.93541294336319,0.34665659070015,0.423333913087845,-0.837028980255127,0.480477899312973,0.428850650787354,-0.765002071857452,0.507099211215973,-0.0555352978408337,-0.86009669303894,0.357892125844955,-0.878893494606018,-0.31537202000618,0.279224276542664,-0.894013643264771,-0.350390404462814,0.515078246593475,-0.588847875595093,-0.62285840511322,0.626300096511841,-0.574298799037933,-0.52718985080719,0.279224276542664,-0.894013643264771,-0.350390404462814,0.194940179586411,-0.892410159111023,-0.40694272518158,0.390435695648193,-0.586348593235016,-0.709757149219513,0.515078246593475,-0.588847875595093,-0.62285840511322,0.515078246593475,-0.588847875595093,-0.62285840511322,0.390435695648193,-0.586348593235016,-0.709757149219513,0.507099211215973,-0.0555352978408337,-0.86009669303894,0.648320019245148,-0.0620114766061306,-0.758838355541229,0.626300096511841,-0.574298799037933,-0.52718985080719,0.515078246593475,-0.588847875595093,-0.62285840511322, +0.648320019245148,-0.0620114766061306,-0.758838355541229,0.769747734069824,-0.064057819545269,-0.635126113891602,0.184516310691833,-0.0295266266912222,-0.982385814189911,0.206341102719307,0.435525953769684,-0.876208066940308,0.34665659070015,0.423333913087845,-0.837028980255127,0.350751668214798,-0.0444522313773632,-0.93541294336319,-0.159361720085144,0.00921289622783661,-0.98717725276947,-0.0926565006375313,0.406751424074173,-0.908827781677246,0.0635582432150841,0.436065107584,-0.89766788482666,0.0129120843484998,-0.0116300331428647,-0.999849021434784,0.194940179586411,-0.892410159111023,-0.40694272518158,0.105301514267921,-0.884687483310699,-0.454136252403259,0.255075216293335,-0.574078559875488,-0.778055548667908,0.390435695648193,-0.586348593235016,-0.709757149219513,0.105301514267921,-0.884687483310699,-0.454136252403259,0.0383026339113712,-0.861689388751984,-0.505988419055939,0.119454942643642,-0.545478701591492,-0.829568266868591,0.255075216293335,-0.574078559875488,-0.778055548667908,0.255075216293335,-0.574078559875488,-0.778055548667908,0.119454942643642,-0.545478701591492,-0.829568266868591,0.184516310691833,-0.0295266266912222,-0.982385814189911,0.350751668214798,-0.0444522313773632,-0.93541294336319,0.390435695648193,-0.586348593235016,-0.709757149219513,0.255075216293335,-0.574078559875488,-0.778055548667908,0.350751668214798,-0.0444522313773632,-0.93541294336319,0.507099211215973,-0.0555352978408337,-0.86009669303894,0.0129120843484998,-0.0116300331428647,-0.999849021434784,0.0635582432150841,0.436065107584,-0.89766788482666,0.206341102719307,0.435525953769684,-0.876208066940308,0.184516310691833,-0.0295266266912222,-0.982385814189911,-0.326463609933853,0.0326915383338928,-0.944644212722778,-0.251266896724701,0.413900852203369,-0.874957740306854,-0.0926565006375313,0.406751424074173,-0.908827781677246,-0.159361720085144,0.00921289622783661,-0.98717725276947,0.254512250423431,-0.827064692974091,-0.501186013221741,0.0561441034078598,-0.812276005744934,-0.580564856529236,0.0163288563489914,-0.954587280750275,-0.29748347401619, +0.105130478739738,-0.959527969360352,-0.261254012584686,0.0561441034078598,-0.812276005744934,-0.580564856529236,-0.162868335843086,-0.81348592042923,-0.558314144611359,-0.0482113659381866,-0.953867793083191,-0.296330571174622,0.0163288563489914,-0.954587280750275,-0.29748347401619,0.0163288563489914,-0.954587280750275,-0.29748347401619,-0.0482113659381866,-0.953867793083191,-0.296330571174622,0.0383026339113712,-0.861689388751984,-0.505988419055939,0.105301514267921,-0.884687483310699,-0.454136252403259,0.105130478739738,-0.959527969360352,-0.261254012584686,0.0163288563489914,-0.954587280750275,-0.29748347401619,0.105301514267921,-0.884687483310699,-0.454136252403259,0.194940179586411,-0.892410159111023,-0.40694272518158,0.0383026339113712,-0.861689388751984,-0.505988419055939,-0.0795714855194092,-0.811856746673584,-0.578409194946289,-0.0414482168853283,-0.511232793331146,-0.858442306518555,0.119454942643642,-0.545478701591492,-0.829568266868591,-0.0795714855194092,-0.811856746673584,-0.578409194946289,-0.225367411971092,-0.819051027297974,-0.527603030204773,-0.209517896175385,-0.504189908504486,-0.837791621685028,-0.0414482168853283,-0.511232793331146,-0.858442306518555,-0.0414482168853283,-0.511232793331146,-0.858442306518555,-0.209517896175385,-0.504189908504486,-0.837791621685028,-0.159361720085144,0.00921289622783661,-0.98717725276947,0.0129120843484998,-0.0116300331428647,-0.999849021434784,0.119454942643642,-0.545478701591492,-0.829568266868591,-0.0414482168853283,-0.511232793331146,-0.858442306518555,0.0129120843484998,-0.0116300331428647,-0.999849021434784,0.184516310691833,-0.0295266266912222,-0.982385814189911,-0.482875227928162,0.0576346628367901,-0.873790383338928,-0.362795621156693,0.507979810237885,-0.781239867210388,-0.251266896724701,0.413900852203369,-0.874957740306854,-0.326463609933853,0.0326915383338928,-0.944644212722778,-0.747107148170471,0.108265995979309,-0.655827283859253,-0.597647726535797,0.515091478824615,-0.614408552646637,-0.467881292104721,0.543572306632996,-0.696861684322357,-0.624432563781738,0.0829091891646385,-0.776665985584259, +0.499274969100952,-0.138520330190659,-0.855299174785614,0.17555259168148,-0.112843081355095,-0.977981448173523,0.14927439391613,-0.320335865020752,-0.935469031333923,0.468315243721008,-0.332643985748291,-0.818552851676941,0.17555259168148,-0.112843081355095,-0.977981448173523,-0.169540241360664,-0.0735346376895905,-0.9827761054039,-0.188952401280403,-0.29125252366066,-0.937800109386444,0.14927439391613,-0.320335865020752,-0.935469031333923,0.14927439391613,-0.320335865020752,-0.935469031333923,-0.188952401280403,-0.29125252366066,-0.937800109386444,-0.162868335843086,-0.81348592042923,-0.558314144611359,0.0561441034078598,-0.812276005744934,-0.580564856529236,0.468315243721008,-0.332643985748291,-0.818552851676941,0.14927439391613,-0.320335865020752,-0.935469031333923,0.0561441034078598,-0.812276005744934,-0.580564856529236,0.254512250423431,-0.827064692974091,-0.501186013221741,-0.759297072887421,0.0259127113968134,-0.650228083133698,-0.765134453773499,-0.184830442070961,-0.616771519184113,-0.509838342666626,-0.235357001423836,-0.827449023723602,-0.494196057319641,-0.0253481715917587,-0.868980884552002,-0.765134453773499,-0.184830442070961,-0.616771519184113,-0.551145136356354,-0.767867386341095,-0.32652536034584,-0.402529001235962,-0.757841289043427,-0.513465583324432,-0.509838342666626,-0.235357001423836,-0.827449023723602,-0.509838342666626,-0.235357001423836,-0.827449023723602,-0.402529001235962,-0.757841289043427,-0.513465583324432,-0.162868335843086,-0.81348592042923,-0.558314144611359,-0.188952401280403,-0.29125252366066,-0.937800109386444,-0.494196057319641,-0.0253481715917587,-0.868980884552002,-0.509838342666626,-0.235357001423836,-0.827449023723602,-0.188952401280403,-0.29125252366066,-0.937800109386444,-0.169540241360664,-0.0735346376895905,-0.9827761054039,0.0383026339113712,-0.861689388751984,-0.505988419055939,-0.0482113659381866,-0.953867793083191,-0.296330571174622,-0.111520692706108,-0.945804715156555,-0.304986208677292,-0.0795714855194092,-0.811856746673584,-0.578409194946289,-0.162868335843086,-0.81348592042923,-0.558314144611359, +-0.193569764494896,-0.937784731388092,-0.288254201412201,-0.111520692706108,-0.945804715156555,-0.304986208677292,-0.0482113659381866,-0.953867793083191,-0.296330571174622,-0.225367411971092,-0.819051027297974,-0.527603030204773,-0.0795714855194092,-0.811856746673584,-0.578409194946289,-0.111520692706108,-0.945804715156555,-0.304986208677292,-0.193569764494896,-0.937784731388092,-0.288254201412201,-0.225367411971092,-0.819051027297974,-0.527603030204773,-0.299090057611465,-0.83678662776947,-0.458621203899384,-0.350755989551544,-0.503471612930298,-0.789611577987671,-0.209517896175385,-0.504189908504486,-0.837791621685028,-0.299090057611465,-0.83678662776947,-0.458621203899384,-0.371196568012238,-0.826523542404175,-0.423168957233429,-0.481773257255554,-0.477170169353485,-0.734985172748566,-0.350755989551544,-0.503471612930298,-0.789611577987671,-0.350755989551544,-0.503471612930298,-0.789611577987671,-0.481773257255554,-0.477170169353485,-0.734985172748566,-0.482875227928162,0.0576346628367901,-0.873790383338928,-0.326463609933853,0.0326915383338928,-0.944644212722778,-0.209517896175385,-0.504189908504486,-0.837791621685028,-0.350755989551544,-0.503471612930298,-0.789611577987671,-0.326463609933853,0.0326915383338928,-0.944644212722778,-0.159361720085144,0.00921289622783661,-0.98717725276947,-0.162868335843086,-0.81348592042923,-0.558314144611359,-0.402529001235962,-0.757841289043427,-0.513465583324432,-0.266149967908859,-0.925383806228638,-0.269868552684784,-0.193569764494896,-0.937784731388092,-0.288254201412201,-0.402529001235962,-0.757841289043427,-0.513465583324432,-0.551145136356354,-0.767867386341095,-0.32652536034584,-0.330713361501694,-0.917411923408508,-0.221323743462563,-0.266149967908859,-0.925383806228638,-0.269868552684784,-0.266149967908859,-0.925383806228638,-0.269868552684784,-0.330713361501694,-0.917411923408508,-0.221323743462563,-0.371196568012238,-0.826523542404175,-0.423168957233429,-0.299090057611465,-0.83678662776947,-0.458621203899384,-0.193569764494896,-0.937784731388092,-0.288254201412201, +-0.266149967908859,-0.925383806228638,-0.269868552684784,-0.299090057611465,-0.83678662776947,-0.458621203899384,-0.225367411971092,-0.819051027297974,-0.527603030204773,-0.624432563781738,0.0829091891646385,-0.776665985584259,-0.467881292104721,0.543572306632996,-0.696861684322357,-0.362795621156693,0.507979810237885,-0.781239867210388,-0.482875227928162,0.0576346628367901,-0.873790383338928,-0.846618473529816,0.133226603269577,-0.515255212783813,-0.708903789520264,0.506207466125488,-0.491130799055099,-0.597647726535797,0.515091478824615,-0.614408552646637,-0.747107148170471,0.108265995979309,-0.655827283859253,-0.371196568012238,-0.826523542404175,-0.423168957233429,-0.463261038064957,-0.79176926612854,-0.398108661174774,-0.610283613204956,-0.421151548624039,-0.670958578586578,-0.481773257255554,-0.477170169353485,-0.734985172748566,-0.463261038064957,-0.79176926612854,-0.398108661174774,-0.622750818729401,-0.669189751148224,-0.405421376228333,-0.743065297603607,-0.357363820075989,-0.565813660621643,-0.610283613204956,-0.421151548624039,-0.670958578586578,-0.610283613204956,-0.421151548624039,-0.670958578586578,-0.743065297603607,-0.357363820075989,-0.565813660621643,-0.747107148170471,0.108265995979309,-0.655827283859253,-0.624432563781738,0.0829091891646385,-0.776665985584259,-0.481773257255554,-0.477170169353485,-0.734985172748566,-0.610283613204956,-0.421151548624039,-0.670958578586578,-0.624432563781738,0.0829091891646385,-0.776665985584259,-0.482875227928162,0.0576346628367901,-0.873790383338928,-0.919817447662354,0.156583786010742,-0.359746336936951,-0.730019629001617,0.590766489505768,-0.343607664108276,-0.708903789520264,0.506207466125488,-0.491130799055099,-0.846618473529816,0.133226603269577,-0.515255212783813,-0.980540215969086,0.195154637098312,-0.0213450044393539,-0.744038939476013,0.66496068239212,-0.0650637075304985,-0.737855792045593,0.642761528491974,-0.205976665019989,-0.964932203292847,0.177273228764534,-0.193597480654716,-0.551145136356354,-0.767867386341095,-0.32652536034584,-0.437858611345291,-0.893918812274933,-0.0958587452769279, +-0.401037156581879,-0.899380087852478,-0.174024909734726,-0.330713361501694,-0.917411923408508,-0.221323743462563,-0.437858611345291,-0.893918812274933,-0.0958587452769279,-0.624588072299957,-0.770599365234375,-0.126753240823746,-0.610060155391693,-0.759268343448639,-0.226579293608665,-0.401037156581879,-0.899380087852478,-0.174024909734726,-0.401037156581879,-0.899380087852478,-0.174024909734726,-0.610060155391693,-0.759268343448639,-0.226579293608665,-0.622750818729401,-0.669189751148224,-0.405421376228333,-0.463261038064957,-0.79176926612854,-0.398108661174774,-0.330713361501694,-0.917411923408508,-0.221323743462563,-0.401037156581879,-0.899380087852478,-0.174024909734726,-0.463261038064957,-0.79176926612854,-0.398108661174774,-0.371196568012238,-0.826523542404175,-0.423168957233429,-0.622750818729401,-0.669189751148224,-0.405421376228333,-0.610060155391693,-0.759268343448639,-0.226579293608665,-0.833289265632629,-0.370911568403244,-0.409943550825119,-0.743065297603607,-0.357363820075989,-0.565813660621643,-0.610060155391693,-0.759268343448639,-0.226579293608665,-0.624588072299957,-0.770599365234375,-0.126753240823746,-0.883116960525513,-0.387044280767441,-0.26514345407486,-0.833289265632629,-0.370911568403244,-0.409943550825119,-0.833289265632629,-0.370911568403244,-0.409943550825119,-0.883116960525513,-0.387044280767441,-0.26514345407486,-0.919817447662354,0.156583786010742,-0.359746336936951,-0.846618473529816,0.133226603269577,-0.515255212783813,-0.743065297603607,-0.357363820075989,-0.565813660621643,-0.833289265632629,-0.370911568403244,-0.409943550825119,-0.846618473529816,0.133226603269577,-0.515255212783813,-0.747107148170471,0.108265995979309,-0.655827283859253,-0.964932203292847,0.177273228764534,-0.193597480654716,-0.737855792045593,0.642761528491974,-0.205976665019989,-0.730019629001617,0.590766489505768,-0.343607664108276,-0.919817447662354,0.156583786010742,-0.359746336936951,-0.965936124324799,0.209999918937683,0.151220098137856,-0.738719344139099,0.669542014598846,0.0775060877203941,-0.744038939476013,0.66496068239212,-0.0650637075304985, +-0.980540215969086,0.195154637098312,-0.0213450044393539,-0.624588072299957,-0.770599365234375,-0.126753240823746,-0.648356318473816,-0.759698152542114,-0.0499282218515873,-0.918026566505432,-0.376194357872009,-0.125319734215736,-0.883116960525513,-0.387044280767441,-0.26514345407486,-0.648356318473816,-0.759698152542114,-0.0499282218515873,-0.699372410774231,-0.714239358901978,0.0272115804255009,-0.940192401409149,-0.340154469013214,0.018252294510603,-0.918026566505432,-0.376194357872009,-0.125319734215736,-0.918026566505432,-0.376194357872009,-0.125319734215736,-0.940192401409149,-0.340154469013214,0.018252294510603,-0.980540215969086,0.195154637098312,-0.0213450044393539,-0.964932203292847,0.177273228764534,-0.193597480654716,-0.883116960525513,-0.387044280767441,-0.26514345407486,-0.918026566505432,-0.376194357872009,-0.125319734215736,-0.964932203292847,0.177273228764534,-0.193597480654716,-0.919817447662354,0.156583786010742,-0.359746336936951,-0.921850383281708,0.220954567193985,0.318387925624847,-0.731759607791901,0.644273459911346,0.222350135445595,-0.738719344139099,0.669542014598846,0.0775060877203941,-0.965936124324799,0.209999918937683,0.151220098137856,-0.751296818256378,0.229321882128716,0.618841230869293,-0.601396024227142,0.620813608169556,0.502904891967773,-0.711689829826355,0.588897824287415,0.383010298013687,-0.84971672296524,0.227315247058868,0.475719749927521,-0.71759694814682,-0.690557718276978,0.0904697775840759,-0.482708603143692,-0.874333918094635,0.0503260716795921,-0.475203096866608,-0.879516541957855,-0.0251538716256618,-0.705270230770111,-0.690717816352844,-0.159695640206337,-0.482708603143692,-0.874333918094635,0.0503260716795921,-0.699372410774231,-0.714239358901978,0.0272115804255009,-0.648356318473816,-0.759698152542114,-0.0499282218515873,-0.475203096866608,-0.879516541957855,-0.0251538716256618,-0.475203096866608,-0.879516541957855,-0.0251538716256618,-0.648356318473816,-0.759698152542114,-0.0499282218515873,-0.624588072299957,-0.770599365234375,-0.126753240823746,-0.437858611345291,-0.893918812274933,-0.0958587452769279, +-0.705270230770111,-0.690717816352844,-0.159695640206337,-0.475203096866608,-0.879516541957855,-0.0251538716256618,-0.437858611345291,-0.893918812274933,-0.0958587452769279,-0.551145136356354,-0.767867386341095,-0.32652536034584,-0.759297072887421,0.0259127113968134,-0.650228083133698,-0.932647883892059,0.0740212947130203,-0.353113085031509,-0.933306276798248,-0.139619678258896,-0.330825835466385,-0.765134453773499,-0.184830442070961,-0.616771519184113,-0.932647883892059,0.0740212947130203,-0.353113085031509,-0.993481338024139,0.113185070455074,-0.0135716535151005,-0.993995606899261,-0.109222657978535,0.00657588988542557,-0.933306276798248,-0.139619678258896,-0.330825835466385,-0.933306276798248,-0.139619678258896,-0.330825835466385,-0.993995606899261,-0.109222657978535,0.00657588988542557,-0.71759694814682,-0.690557718276978,0.0904697775840759,-0.705270230770111,-0.690717816352844,-0.159695640206337,-0.765134453773499,-0.184830442070961,-0.616771519184113,-0.933306276798248,-0.139619678258896,-0.330825835466385,-0.705270230770111,-0.690717816352844,-0.159695640206337,-0.551145136356354,-0.767867386341095,-0.32652536034584,-0.699372410774231,-0.714239358901978,0.0272115804255009,-0.722082257270813,-0.669520139694214,0.174183458089828,-0.932105839252472,-0.311069816350937,0.185510873794556,-0.940192401409149,-0.340154469013214,0.018252294510603,-0.722082257270813,-0.669520139694214,0.174183458089828,-0.640169501304626,-0.711661458015442,0.289345532655716,-0.882172465324402,-0.320429146289825,0.345104217529297,-0.932105839252472,-0.311069816350937,0.185510873794556,-0.932105839252472,-0.311069816350937,0.185510873794556,-0.882172465324402,-0.320429146289825,0.345104217529297,-0.921850383281708,0.220954567193985,0.318387925624847,-0.965936124324799,0.209999918937683,0.151220098137856,-0.940192401409149,-0.340154469013214,0.018252294510603,-0.932105839252472,-0.311069816350937,0.185510873794556,-0.965936124324799,0.209999918937683,0.151220098137856,-0.980540215969086,0.195154637098312,-0.0213450044393539,-0.84971672296524,0.227315247058868,0.475719749927521, +-0.711689829826355,0.588897824287415,0.383010298013687,-0.731759607791901,0.644273459911346,0.222350135445595,-0.921850383281708,0.220954567193985,0.318387925624847,-0.629688024520874,0.227267488837242,0.742861032485962,-0.47236579656601,0.664360225200653,0.579220235347748,-0.601396024227142,0.620813608169556,0.502904891967773,-0.751296818256378,0.229321882128716,0.618841230869293,-0.699372410774231,-0.714239358901978,0.0272115804255009,-0.482708603143692,-0.874333918094635,0.0503260716795921,-0.486018031835556,-0.863619327545166,0.133970662951469,-0.722082257270813,-0.669520139694214,0.174183458089828,-0.71759694814682,-0.690557718276978,0.0904697775840759,-0.468056410551071,-0.8617063164711,0.195922389626503,-0.486018031835556,-0.863619327545166,0.133970662951469,-0.482708603143692,-0.874333918094635,0.0503260716795921,-0.640169501304626,-0.711661458015442,0.289345532655716,-0.722082257270813,-0.669520139694214,0.174183458089828,-0.486018031835556,-0.863619327545166,0.133970662951469,-0.468056410551071,-0.8617063164711,0.195922389626503,-0.640169501304626,-0.711661458015442,0.289345532655716,-0.582160174846649,-0.732815742492676,0.352236419916153,-0.813584268093109,-0.334094494581223,0.475879728794098,-0.882172465324402,-0.320429146289825,0.345104217529297,-0.582160174846649,-0.732815742492676,0.352236419916153,-0.521885216236115,-0.734028935432434,0.434554278850555,-0.725624561309814,-0.33569061756134,0.600650250911713,-0.813584268093109,-0.334094494581223,0.475879728794098,-0.813584268093109,-0.334094494581223,0.475879728794098,-0.725624561309814,-0.33569061756134,0.600650250911713,-0.751296818256378,0.229321882128716,0.618841230869293,-0.84971672296524,0.227315247058868,0.475719749927521,-0.882172465324402,-0.320429146289825,0.345104217529297,-0.813584268093109,-0.334094494581223,0.475879728794098,-0.84971672296524,0.227315247058868,0.475719749927521,-0.921850383281708,0.220954567193985,0.318387925624847,-0.489092618227005,0.220863208174706,0.843805551528931,-0.368089437484741,0.645393550395966,0.669311106204987, +-0.47236579656601,0.664360225200653,0.579220235347748,-0.629688024520874,0.227267488837242,0.742861032485962,-0.166868150234222,0.194981217384338,0.966507792472839,-0.091823048889637,0.591379463672638,0.801148355007172,-0.255521774291992,0.574448585510254,0.777635812759399,-0.333457350730896,0.209863230586052,0.919110238552094,-0.591373443603516,-0.639189958572388,0.491643756628036,-0.408083885908127,-0.846757411956787,0.341276258230209,-0.458004415035248,-0.850409090518951,0.258913636207581,-0.700745344161987,-0.644317448139191,0.306285917758942,-0.408083885908127,-0.846757411956787,0.341276258230209,-0.521885216236115,-0.734028935432434,0.434554278850555,-0.582160174846649,-0.732815742492676,0.352236419916153,-0.458004415035248,-0.850409090518951,0.258913636207581,-0.458004415035248,-0.850409090518951,0.258913636207581,-0.582160174846649,-0.732815742492676,0.352236419916153,-0.640169501304626,-0.711661458015442,0.289345532655716,-0.468056410551071,-0.8617063164711,0.195922389626503,-0.700745344161987,-0.644317448139191,0.306285917758942,-0.458004415035248,-0.850409090518951,0.258913636207581,-0.468056410551071,-0.8617063164711,0.195922389626503,-0.71759694814682,-0.690557718276978,0.0904697775840759,-0.993481338024139,0.113185070455074,-0.0135716535151005,-0.934660494327545,0.138693362474442,0.327374070882797,-0.937466382980347,-0.0744922906160355,0.340011239051819,-0.993995606899261,-0.109222657978535,0.00657588988542557,-0.934660494327545,0.138693362474442,0.327374070882797,-0.763463735580444,0.147508710622787,0.628779947757721,-0.769975185394287,-0.052407618612051,0.635917961597443,-0.937466382980347,-0.0744922906160355,0.340011239051819,-0.937466382980347,-0.0744922906160355,0.340011239051819,-0.769975185394287,-0.052407618612051,0.635917961597443,-0.591373443603516,-0.639189958572388,0.491643756628036,-0.700745344161987,-0.644317448139191,0.306285917758942,-0.993995606899261,-0.109222657978535,0.00657588988542557,-0.937466382980347,-0.0744922906160355,0.340011239051819,-0.700745344161987,-0.644317448139191,0.306285917758942, +-0.71759694814682,-0.690557718276978,0.0904697775840759,-0.521885216236115,-0.734028935432434,0.434554278850555,-0.452304810285568,-0.732300877571106,0.509073317050934,-0.61960780620575,-0.333907604217529,0.710346281528473,-0.725624561309814,-0.33569061756134,0.600650250911713,-0.452304810285568,-0.732300877571106,0.509073317050934,-0.401596128940582,-0.710753977298737,0.577537417411804,-0.504265904426575,-0.320052981376648,0.802048563957214,-0.61960780620575,-0.333907604217529,0.710346281528473,-0.61960780620575,-0.333907604217529,0.710346281528473,-0.504265904426575,-0.320052981376648,0.802048563957214,-0.489092618227005,0.220863208174706,0.843805551528931,-0.629688024520874,0.227267488837242,0.742861032485962,-0.725624561309814,-0.33569061756134,0.600650250911713,-0.61960780620575,-0.333907604217529,0.710346281528473,-0.629688024520874,0.227267488837242,0.742861032485962,-0.751296818256378,0.229321882128716,0.618841230869293,-0.333457350730896,0.209863230586052,0.919110238552094,-0.255521774291992,0.574448585510254,0.777635812759399,-0.368089437484741,0.645393550395966,0.669311106204987,-0.489092618227005,0.220863208174706,0.843805551528931,-0.0224012807011604,0.190630093216896,0.981406331062317,0.0453802682459354,0.631865561008453,0.773748338222504,-0.091823048889637,0.591379463672638,0.801148355007172,-0.166868150234222,0.194981217384338,0.966507792472839,0.0345584079623222,0.194889694452286,0.980216145515442,0.195964440703392,0.608727753162384,0.768796861171722,0.0453802682459354,0.631865561008453,0.773748338222504,-0.0224012807011604,0.190630093216896,0.981406331062317,-0.401596128940582,-0.710753977298737,0.577537417411804,-0.304312258958817,-0.668131709098816,0.678965449333191,-0.357182770967484,-0.310647815465927,0.880862355232239,-0.504265904426575,-0.320052981376648,0.802048563957214,-0.304312258958817,-0.668131709098816,0.678965449333191,-0.155783250927925,-0.712305068969727,0.684363305568695,-0.194743618369102,-0.339578628540039,0.920196294784546,-0.357182770967484,-0.310647815465927,0.880862355232239, +-0.357182770967484,-0.310647815465927,0.880862355232239,-0.194743618369102,-0.339578628540039,0.920196294784546,-0.166868150234222,0.194981217384338,0.966507792472839,-0.333457350730896,0.209863230586052,0.919110238552094,-0.504265904426575,-0.320052981376648,0.802048563957214,-0.357182770967484,-0.310647815465927,0.880862355232239,-0.333457350730896,0.209863230586052,0.919110238552094,-0.489092618227005,0.220863208174706,0.843805551528931,-0.591373443603516,-0.639189958572388,0.491643756628036,-0.43216934800148,-0.645631432533264,0.62959498167038,-0.335946649312973,-0.850031793117523,0.405691742897034,-0.408083885908127,-0.846757411956787,0.341276258230209,-0.43216934800148,-0.645631432533264,0.62959498167038,-0.217279553413391,-0.720939457416534,0.65805459022522,-0.275155603885651,-0.861631691455841,0.426473945379257,-0.335946649312973,-0.850031793117523,0.405691742897034,-0.335946649312973,-0.850031793117523,0.405691742897034,-0.275155603885651,-0.861631691455841,0.426473945379257,-0.401596128940582,-0.710753977298737,0.577537417411804,-0.452304810285568,-0.732300877571106,0.509073317050934,-0.408083885908127,-0.846757411956787,0.341276258230209,-0.335946649312973,-0.850031793117523,0.405691742897034,-0.452304810285568,-0.732300877571106,0.509073317050934,-0.521885216236115,-0.734028935432434,0.434554278850555,-0.155783250927925,-0.712305068969727,0.684363305568695,-0.0918362513184547,-0.761615872383118,0.641488432884216,-0.0851995944976807,-0.378553926944733,0.921649634838104,-0.194743618369102,-0.339578628540039,0.920196294784546,-0.0918362513184547,-0.761615872383118,0.641488432884216,-0.0744673237204552,-0.793397784233093,0.604131162166595,-0.0497882105410099,-0.395428687334061,0.917146265506744,-0.0851995944976807,-0.378553926944733,0.921649634838104,-0.0851995944976807,-0.378553926944733,0.921649634838104,-0.0497882105410099,-0.395428687334061,0.917146265506744,0.0345584079623222,0.194889694452286,0.980216145515442,-0.0224012807011604,0.190630093216896,0.981406331062317,-0.194743618369102,-0.339578628540039,0.920196294784546, +-0.0851995944976807,-0.378553926944733,0.921649634838104,-0.0224012807011604,0.190630093216896,0.981406331062317,-0.166868150234222,0.194981217384338,0.966507792472839,-0.401596128940582,-0.710753977298737,0.577537417411804,-0.275155603885651,-0.861631691455841,0.426473945379257,-0.218725368380547,-0.863269031047821,0.454890698194504,-0.304312258958817,-0.668131709098816,0.678965449333191,-0.217279553413391,-0.720939457416534,0.65805459022522,-0.131207466125488,-0.878165304660797,0.460011154413223,-0.218725368380547,-0.863269031047821,0.454890698194504,-0.275155603885651,-0.861631691455841,0.426473945379257,-0.155783250927925,-0.712305068969727,0.684363305568695,-0.304312258958817,-0.668131709098816,0.678965449333191,-0.218725368380547,-0.863269031047821,0.454890698194504,-0.131207466125488,-0.878165304660797,0.460011154413223,-0.217279553413391,-0.720939457416534,0.65805459022522,-0.062260840088129,-0.73326051235199,0.677091300487518,-0.0878561437129974,-0.879987418651581,0.466801404953003,-0.131207466125488,-0.878165304660797,0.460011154413223,-0.062260840088129,-0.73326051235199,0.677091300487518,-0.0615049377083778,-0.776434361934662,0.627189636230469,-0.0785560980439186,-0.877247929573059,0.473566383123398,-0.0878561437129974,-0.879987418651581,0.466801404953003,-0.0878561437129974,-0.879987418651581,0.466801404953003,-0.0785560980439186,-0.877247929573059,0.473566383123398,-0.0744673237204552,-0.793397784233093,0.604131162166595,-0.0918362513184547,-0.761615872383118,0.641488432884216,-0.131207466125488,-0.878165304660797,0.460011154413223,-0.0878561437129974,-0.879987418651581,0.466801404953003,-0.0918362513184547,-0.761615872383118,0.641488432884216,-0.155783250927925,-0.712305068969727,0.684363305568695,-0.763463735580444,0.147508710622787,0.628779947757721,-0.511143922805786,0.123268328607082,0.850609660148621,-0.520782232284546,-0.0689528211951256,0.850900292396545,-0.769975185394287,-0.052407618612051,0.635917961597443,-0.511143922805786,0.123268328607082,0.850609660148621,-0.243686705827713,0.0730328485369682,0.967100262641907, +-0.235269486904144,-0.119221068918705,0.96459037065506,-0.520782232284546,-0.0689528211951256,0.850900292396545,-0.520782232284546,-0.0689528211951256,0.850900292396545,-0.235269486904144,-0.119221068918705,0.96459037065506,-0.217279553413391,-0.720939457416534,0.65805459022522,-0.43216934800148,-0.645631432533264,0.62959498167038,-0.769975185394287,-0.052407618612051,0.635917961597443,-0.520782232284546,-0.0689528211951256,0.850900292396545,-0.43216934800148,-0.645631432533264,0.62959498167038,-0.591373443603516,-0.639189958572388,0.491643756628036,-0.217279553413391,-0.720939457416534,0.65805459022522,-0.235269486904144,-0.119221068918705,0.96459037065506,-0.00219990056939423,-0.191059678792953,0.981575965881348,-0.062260840088129,-0.73326051235199,0.677091300487518,-0.243686705827713,0.0730328485369682,0.967100262641907,0.00814706832170486,-0.145578622817993,0.989313185214996,-0.00219990056939423,-0.191059678792953,0.981575965881348,-0.235269486904144,-0.119221068918705,0.96459037065506,-0.0615049377083778,-0.776434361934662,0.627189636230469,-0.062260840088129,-0.73326051235199,0.677091300487518,-0.00219990056939423,-0.191059678792953,0.981575965881348,0.00814706832170486,-0.145578622817993,0.989313185214996,0.672519743442535,0.486121237277985,-0.558035135269165,0.656684815883636,0.521762132644653,-0.544544994831085,0.788762450218201,0.529458224773407,-0.312294155359268,0.809114456176758,0.494286417961121,-0.317828327417374,0.83449399471283,0.548793256282806,-0.0494547784328461,0.856545865535736,0.514019906520844,-0.0459638237953186,0.809114456176758,0.494286417961121,-0.317828327417374,0.788762450218201,0.529458224773407,-0.312294155359268,0.786917269229889,0.579457640647888,0.212108731269836,0.807138621807098,0.546014726161957,0.224489063024521,0.856545865535736,0.514019906520844,-0.0459638237953186,0.83449399471283,0.548793256282806,-0.0494547784328461,-0.0694252774119377,0.544295430183411,-0.836015939712524,-0.0608091168105602,0.57748931646347,-0.814130365848541,0.204234510660172,0.547387003898621,-0.811576068401337, +0.204471573233604,0.51281863451004,-0.833791613578796,0.204471573233604,0.51281863451004,-0.833791613578796,0.204234510660172,0.547387003898621,-0.811576068401337,0.453362137079239,0.528726696968079,-0.717572867870331,0.4620281457901,0.493673741817474,-0.736760556697845,-0.535783410072327,0.62191778421402,-0.57109922170639,-0.512739300727844,0.652508914470673,-0.557969987392426,-0.310049474239349,0.613343000411987,-0.726415574550629,-0.326763272285461,0.581169724464417,-0.745296895503998,0.453362137079239,0.528726696968079,-0.717572867870331,0.396808296442032,0.687020540237427,-0.608725011348724,0.56265652179718,0.681521356105804,-0.467916816473007,0.656684815883636,0.521762132644653,-0.544544994831085,0.396808296442032,0.687020540237427,-0.608725011348724,0.373927861452103,0.734987616539001,-0.565659821033478,0.525404691696167,0.72986364364624,-0.437320202589035,0.56265652179718,0.681521356105804,-0.467916816473007,0.56265652179718,0.681521356105804,-0.467916816473007,0.525404691696167,0.72986364364624,-0.437320202589035,0.623240172863007,0.735972881317139,-0.264415413141251,0.670139372348785,0.687968850135803,-0.278589189052582,0.656684815883636,0.521762132644653,-0.544544994831085,0.56265652179718,0.681521356105804,-0.467916816473007,0.670139372348785,0.687968850135803,-0.278589189052582,0.788762450218201,0.529458224773407,-0.312294155359268,0.623240172863007,0.735972881317139,-0.264415413141251,0.657617688179016,0.75018298625946,-0.0690262168645859,0.707545161247253,0.703723728656769,-0.0644424557685852,0.670139372348785,0.687968850135803,-0.278589189052582,0.657617688179016,0.75018298625946,-0.0690262168645859,0.621787071228027,0.773087859153748,0.125363603234291,0.668542981147766,0.728669047355652,0.148632258176804,0.707545161247253,0.703723728656769,-0.0644424557685852,0.707545161247253,0.703723728656769,-0.0644424557685852,0.668542981147766,0.728669047355652,0.148632258176804,0.786917269229889,0.579457640647888,0.212108731269836,0.83449399471283,0.548793256282806,-0.0494547784328461,0.670139372348785,0.687968850135803,-0.278589189052582, +0.707545161247253,0.703723728656769,-0.0644424557685852,0.83449399471283,0.548793256282806,-0.0494547784328461,0.788762450218201,0.529458224773407,-0.312294155359268,0.370017647743225,0.828665435314178,0.42000088095665,0.3925701379776,0.789712488651276,0.471426248550415,0.55958104133606,0.7579705119133,0.335186332464218,0.522585690021515,0.799623668193817,0.295814394950867,0.3925701379776,0.789712488651276,0.471426248550415,0.448235303163528,0.654921054840088,0.608410537242889,0.653049647808075,0.615665972232819,0.441000461578369,0.55958104133606,0.7579705119133,0.335186332464218,0.55958104133606,0.7579705119133,0.335186332464218,0.653049647808075,0.615665972232819,0.441000461578369,0.786917269229889,0.579457640647888,0.212108731269836,0.668542981147766,0.728669047355652,0.148632258176804,0.522585690021515,0.799623668193817,0.295814394950867,0.55958104133606,0.7579705119133,0.335186332464218,0.668542981147766,0.728669047355652,0.148632258176804,0.621787071228027,0.773087859153748,0.125363603234291,-0.0608091168105602,0.57748931646347,-0.814130365848541,-0.0221166629344225,0.726166605949402,-0.68716299533844,0.193839520215988,0.701911211013794,-0.685380876064301,0.204234510660172,0.547387003898621,-0.811576068401337,-0.0221166629344225,0.726166605949402,-0.68716299533844,-0.00837270356714725,0.770519495010376,-0.637361407279968,0.188757866621017,0.748310804367065,-0.635925590991974,0.193839520215988,0.701911211013794,-0.685380876064301,0.193839520215988,0.701911211013794,-0.685380876064301,0.188757866621017,0.748310804367065,-0.635925590991974,0.373927861452103,0.734987616539001,-0.565659821033478,0.396808296442032,0.687020540237427,-0.608725011348724,0.204234510660172,0.547387003898621,-0.811576068401337,0.193839520215988,0.701911211013794,-0.685380876064301,0.396808296442032,0.687020540237427,-0.608725011348724,0.453362137079239,0.528726696968079,-0.717572867870331,-0.326763272285461,0.581169724464417,-0.745296895503998,-0.310049474239349,0.613343000411987,-0.726415574550629,-0.0608091168105602,0.57748931646347,-0.814130365848541, +-0.0694252774119377,0.544295430183411,-0.836015939712524,-0.72054535150528,0.690126657485962,-0.0673753172159195,-0.691949665546417,0.718548595905304,-0.0699548199772835,-0.645807266235352,0.688413679599762,-0.330181181430817,-0.673140347003937,0.658784091472626,-0.33598455786705,-0.512739300727844,0.652508914470673,-0.557969987392426,-0.390144884586334,0.786716103553772,-0.478398263454437,-0.225183919072151,0.755051016807556,-0.615784108638763,-0.310049474239349,0.613343000411987,-0.726415574550629,-0.390144884586334,0.786716103553772,-0.478398263454437,-0.34444260597229,0.825627684593201,-0.44687619805336,-0.193939968943596,0.79664534330368,-0.572488784790039,-0.225183919072151,0.755051016807556,-0.615784108638763,-0.225183919072151,0.755051016807556,-0.615784108638763,-0.193939968943596,0.79664534330368,-0.572488784790039,-0.00837270356714725,0.770519495010376,-0.637361407279968,-0.0221166629344225,0.726166605949402,-0.68716299533844,-0.310049474239349,0.613343000411987,-0.726415574550629,-0.225183919072151,0.755051016807556,-0.615784108638763,-0.0221166629344225,0.726166605949402,-0.68716299533844,-0.0608091168105602,0.57748931646347,-0.814130365848541,-0.673140347003937,0.658784091472626,-0.33598455786705,-0.645807266235352,0.688413679599762,-0.330181181430817,-0.512739300727844,0.652508914470673,-0.557969987392426,-0.535783410072327,0.62191778421402,-0.57109922170639,-0.539189398288727,0.71757048368454,0.440871030092239,-0.516096830368042,0.745157778263092,0.422355204820633,-0.647475957870483,0.737652659416199,0.191424742341042,-0.674853026866913,0.709625840187073,0.202496066689491,-0.691949665546417,0.718548595905304,-0.0699548199772835,-0.536120653152466,0.840246319770813,-0.0809994637966156,-0.498679876327515,0.815775573253632,-0.292965054512024,-0.645807266235352,0.688413679599762,-0.330181181430817,-0.536120653152466,0.840246319770813,-0.0809994637966156,-0.477798849344254,0.874440848827362,-0.0840326473116875,-0.443862944841385,0.851992547512054,-0.277658820152283,-0.498679876327515,0.815775573253632,-0.292965054512024, +-0.498679876327515,0.815775573253632,-0.292965054512024,-0.443862944841385,0.851992547512054,-0.277658820152283,-0.34444260597229,0.825627684593201,-0.44687619805336,-0.390144884586334,0.786716103553772,-0.478398263454437,-0.645807266235352,0.688413679599762,-0.330181181430817,-0.498679876327515,0.815775573253632,-0.292965054512024,-0.390144884586334,0.786716103553772,-0.478398263454437,-0.512739300727844,0.652508914470673,-0.557969987392426,-0.674853026866913,0.709625840187073,0.202496066689491,-0.647475957870483,0.737652659416199,0.191424742341042,-0.691949665546417,0.718548595905304,-0.0699548199772835,-0.72054535150528,0.690126657485962,-0.0673753172159195,-0.0752960294485092,0.691723823547363,0.718226075172424,-0.0666707530617714,0.720204949378967,0.69055038690567,-0.31493079662323,0.738544821739197,0.596129357814789,-0.331673830747604,0.710492789745331,0.62063866853714,-0.516096830368042,0.745157778263092,0.422355204820633,-0.392969131469727,0.862096846103668,0.319944262504578,-0.50011533498764,0.855851054191589,0.131923168897629,-0.647475957870483,0.737652659416199,0.191424742341042,-0.392969131469727,0.862096846103668,0.319944262504578,-0.347057491540909,0.894439697265625,0.282008320093155,-0.445187330245972,0.888596713542938,0.110472999513149,-0.50011533498764,0.855851054191589,0.131923168897629,-0.50011533498764,0.855851054191589,0.131923168897629,-0.445187330245972,0.888596713542938,0.110472999513149,-0.477798849344254,0.874440848827362,-0.0840326473116875,-0.536120653152466,0.840246319770813,-0.0809994637966156,-0.647475957870483,0.737652659416199,0.191424742341042,-0.50011533498764,0.855851054191589,0.131923168897629,-0.536120653152466,0.840246319770813,-0.0809994637966156,-0.691949665546417,0.718548595905304,-0.0699548199772835,-0.331673830747604,0.710492789745331,0.62063866853714,-0.31493079662323,0.738544821739197,0.596129357814789,-0.516096830368042,0.745157778263092,0.422355204820633,-0.539189398288727,0.71757048368454,0.440871030092239,0.456763476133347,0.624147653579712,0.633882164955139,0.448235303163528,0.654921054840088,0.608410537242889, +0.198273777961731,0.690596163272858,0.695531845092773,0.198445543646812,0.660845756530762,0.723810970783234,-0.0666707530617714,0.720204949378967,0.69055038690567,-0.0268855169415474,0.842279553413391,0.538370072841644,-0.229204714298248,0.856943547725677,0.461641550064087,-0.31493079662323,0.738544821739197,0.596129357814789,-0.0268855169415474,0.842279553413391,0.538370072841644,-0.0128084560856223,0.876478374004364,0.481270909309387,-0.197676211595535,0.889688372612,0.411556303501129,-0.229204714298248,0.856943547725677,0.461641550064087,-0.229204714298248,0.856943547725677,0.461641550064087,-0.197676211595535,0.889688372612,0.411556303501129,-0.347057491540909,0.894439697265625,0.282008320093155,-0.392969131469727,0.862096846103668,0.319944262504578,-0.31493079662323,0.738544821739197,0.596129357814789,-0.229204714298248,0.856943547725677,0.461641550064087,-0.392969131469727,0.862096846103668,0.319944262504578,-0.516096830368042,0.745157778263092,0.422355204820633,0.198445543646812,0.660845756530762,0.723810970783234,0.198273777961731,0.690596163272858,0.695531845092773,-0.0666707530617714,0.720204949378967,0.69055038690567,-0.0752960294485092,0.691723823547363,0.718226075172424,0.786917269229889,0.579457640647888,0.212108731269836,0.653049647808075,0.615665972232819,0.441000461578369,0.668707609176636,0.583259165287018,0.461127907037735,0.807138621807098,0.546014726161957,0.224489063024521,0.448235303163528,0.654921054840088,0.608410537242889,0.3925701379776,0.789712488651276,0.471426248550415,0.18897970020771,0.818468987941742,0.542581975460052,0.198273777961731,0.690596163272858,0.695531845092773,0.3925701379776,0.789712488651276,0.471426248550415,0.370017647743225,0.828665435314178,0.42000088095665,0.184251517057419,0.854707717895508,0.48531037569046,0.18897970020771,0.818468987941742,0.542581975460052,0.18897970020771,0.818468987941742,0.542581975460052,0.184251517057419,0.854707717895508,0.48531037569046,-0.0128084560856223,0.876478374004364,0.481270909309387,-0.0268855169415474,0.842279553413391,0.538370072841644, +0.198273777961731,0.690596163272858,0.695531845092773,0.18897970020771,0.818468987941742,0.542581975460052,-0.0268855169415474,0.842279553413391,0.538370072841644,-0.0666707530617714,0.720204949378967,0.69055038690567,0.668707609176636,0.583259165287018,0.461127907037735,0.653049647808075,0.615665972232819,0.441000461578369,0.448235303163528,0.654921054840088,0.608410537242889,0.456763476133347,0.624147653579712,0.633882164955139,0.500812232494354,0.107974261045456,0.858794927597046,0.488055199384689,0.516645491123199,0.703476786613464,0.3606076836586,0.514312386512756,0.778103351593018,0.371465355157852,0.139413505792618,0.917920172214508,0.133109658956528,0.973982870578766,0.183409988880157,0.059325784444809,0.988282203674316,0.140636757016182,0.0229205619543791,0.965104758739471,0.260859102010727,0.139949336647987,0.950560748577118,0.277215510606766,0.059325784444809,0.988282203674316,0.140636757016182,-0.00758182816207409,0.994350075721741,0.105879805982113,-0.0728901922702789,0.97349739074707,0.21677103638649,0.0229205619543791,0.965104758739471,0.260859102010727,0.0229205619543791,0.965104758739471,0.260859102010727,-0.0728901922702789,0.97349739074707,0.21677103638649,-0.0963941588997841,0.961841285228729,0.256065726280212,0.0186329185962677,0.95335578918457,0.301273077726364,0.139949336647987,0.950560748577118,0.277215510606766,0.0229205619543791,0.965104758739471,0.260859102010727,0.0186329185962677,0.95335578918457,0.301273077726364,0.141815289855003,0.940769135951996,0.307964116334915,0.364068448543549,0.90743488073349,0.209800228476524,0.3365338742733,0.92518812417984,0.175419077277184,0.25171822309494,0.938117206096649,0.237853065133095,0.260984420776367,0.924741744995117,0.277019560337067,0.3365338742733,0.92518812417984,0.175419077277184,0.256613552570343,0.963279068470001,0.0790122598409653,0.198236525058746,0.971948325634003,0.126564711332321,0.25171822309494,0.938117206096649,0.237853065133095,0.25171822309494,0.938117206096649,0.237853065133095,0.198236525058746,0.971948325634003,0.126564711332321, +0.133109658956528,0.973982870578766,0.183409988880157,0.139949336647987,0.950560748577118,0.277215510606766,0.260984420776367,0.924741744995117,0.277019560337067,0.25171822309494,0.938117206096649,0.237853065133095,0.139949336647987,0.950560748577118,0.277215510606766,0.141815289855003,0.940769135951996,0.307964116334915,-0.00758182816207409,0.994350075721741,0.105879805982113,-0.0711288377642632,0.99534809589386,0.0649839788675308,-0.158850803971291,0.975016057491302,0.155274331569672,-0.0728901922702789,0.97349739074707,0.21677103638649,-0.0711288377642632,0.99534809589386,0.0649839788675308,-0.145516201853752,0.989115178585052,0.0218182727694511,-0.231591701507568,0.970866799354553,0.0615059100091457,-0.158850803971291,0.975016057491302,0.155274331569672,-0.158850803971291,0.975016057491302,0.155274331569672,-0.231591701507568,0.970866799354553,0.0615059100091457,-0.259867519140244,0.962763607501984,0.074533075094223,-0.192683473229408,0.964911460876465,0.178378850221634,-0.0728901922702789,0.97349739074707,0.21677103638649,-0.158850803971291,0.975016057491302,0.155274331569672,-0.192683473229408,0.964911460876465,0.178378850221634,-0.0963941588997841,0.961841285228729,0.256065726280212,0.484988987445831,0.874519169330597,-0.00140692805871367,0.457107394933701,0.889366805553436,-0.00891966931521893,0.406997174024582,0.908176422119141,0.0978206470608711,0.44169208407402,0.889866292476654,0.11421936750412,0.457107394933701,0.889366805553436,-0.00891966931521893,0.370683789253235,0.9282386302948,-0.0310890264809132,0.309474140405655,0.950549066066742,0.0261232331395149,0.406997174024582,0.908176422119141,0.0978206470608711,0.406997174024582,0.908176422119141,0.0978206470608711,0.309474140405655,0.950549066066742,0.0261232331395149,0.256613552570343,0.963279068470001,0.0790122598409653,0.3365338742733,0.92518812417984,0.175419077277184,0.44169208407402,0.889866292476654,0.11421936750412,0.406997174024582,0.908176422119141,0.0978206470608711,0.3365338742733,0.92518812417984,0.175419077277184,0.364068448543549,0.90743488073349,0.209800228476524, +-0.145516201853752,0.989115178585052,0.0218182727694511,-0.12865899503231,0.989695847034454,-0.0628412142395973,-0.253496766090393,0.965764284133911,-0.0551264174282551,-0.231591701507568,0.970866799354553,0.0615059100091457,-0.12865899503231,0.989695847034454,-0.0628412142395973,-0.117075510323048,0.983586072921753,-0.137301653623581,-0.242386072874069,0.956915557384491,-0.159879967570305,-0.253496766090393,0.965764284133911,-0.0551264174282551,-0.253496766090393,0.965764284133911,-0.0551264174282551,-0.242386072874069,0.956915557384491,-0.159879967570305,-0.286841720342636,0.943237960338593,-0.167403519153595,-0.292838841676712,0.955129444599152,-0.04442073777318,-0.231591701507568,0.970866799354553,0.0615059100091457,-0.253496766090393,0.965764284133911,-0.0551264174282551,-0.292838841676712,0.955129444599152,-0.04442073777318,-0.259867519140244,0.962763607501984,0.074533075094223,0.133109658956528,0.973982870578766,0.183409988880157,0.198236525058746,0.971948325634003,0.126564711332321,0.121258020401001,0.991496682167053,0.0472311712801456,0.059325784444809,0.988282203674316,0.140636757016182,0.198236525058746,0.971948325634003,0.126564711332321,0.256613552570343,0.963279068470001,0.0790122598409653,0.180363580584526,0.983553647994995,-0.00956266559660435,0.121258020401001,0.991496682167053,0.0472311712801456,0.121258020401001,0.991496682167053,0.0472311712801456,0.180363580584526,0.983553647994995,-0.00956266559660435,0.106862850487232,0.989989519119263,-0.0922006666660309,0.0518587529659271,0.998648047447205,0.00359120033681393,0.059325784444809,0.988282203674316,0.140636757016182,0.121258020401001,0.991496682167053,0.0472311712801456,0.0518587529659271,0.998648047447205,0.00359120033681393,-0.00758182816207409,0.994350075721741,0.105879805982113,0.106862850487232,0.989989519119263,-0.0922006666660309,-0.0014554678928107,0.993391036987305,-0.114769838750362,-0.0207206141203642,0.999172627925873,-0.0349968150258064,0.0518587529659271,0.998648047447205,0.00359120033681393,-0.0014554678928107,0.993391036987305,-0.114769838750362, +-0.117075510323048,0.983586072921753,-0.137301653623581,-0.12865899503231,0.989695847034454,-0.0628412142395973,-0.0207206141203642,0.999172627925873,-0.0349968150258064,-0.0207206141203642,0.999172627925873,-0.0349968150258064,-0.12865899503231,0.989695847034454,-0.0628412142395973,-0.145516201853752,0.989115178585052,0.0218182727694511,-0.0711288377642632,0.99534809589386,0.0649839788675308,0.0518587529659271,0.998648047447205,0.00359120033681393,-0.0207206141203642,0.999172627925873,-0.0349968150258064,-0.0711288377642632,0.99534809589386,0.0649839788675308,-0.00758182816207409,0.994350075721741,0.105879805982113,-0.117075510323048,0.983586072921753,-0.137301653623581,-0.0985154882073402,0.972764611244202,-0.209818661212921,-0.211531668901443,0.942163527011871,-0.259965747594833,-0.242386072874069,0.956915557384491,-0.159879967570305,-0.0985154882073402,0.972764611244202,-0.209818661212921,-0.0811165049672127,0.952939808368683,-0.292106062173843,-0.145767629146576,0.922606527805328,-0.357140183448792,-0.211531668901443,0.942163527011871,-0.259965747594833,-0.211531668901443,0.942163527011871,-0.259965747594833,-0.145767629146576,0.922606527805328,-0.357140183448792,-0.167143762111664,0.910590946674347,-0.378004223108292,-0.24408432841301,0.927694857120514,-0.282497942447662,-0.242386072874069,0.956915557384491,-0.159879967570305,-0.211531668901443,0.942163527011871,-0.259965747594833,-0.24408432841301,0.927694857120514,-0.282497942447662,-0.286841720342636,0.943237960338593,-0.167403519153595,0.370683789253235,0.9282386302948,-0.0310890264809132,0.337708979845047,0.93469500541687,-0.110896356403828,0.242113530635834,0.96826446056366,-0.0620071962475777,0.309474140405655,0.950549066066742,0.0261232331395149,0.337708979845047,0.93469500541687,-0.110896356403828,0.310271173715591,0.933153212070465,-0.1815405189991,0.206441715359688,0.968928039073944,-0.136236190795898,0.242113530635834,0.96826446056366,-0.0620071962475777,0.242113530635834,0.96826446056366,-0.0620071962475777,0.206441715359688,0.968928039073944,-0.136236190795898, +0.106862850487232,0.989989519119263,-0.0922006666660309,0.180363580584526,0.983553647994995,-0.00956266559660435,0.309474140405655,0.950549066066742,0.0261232331395149,0.242113530635834,0.96826446056366,-0.0620071962475777,0.180363580584526,0.983553647994995,-0.00956266559660435,0.256613552570343,0.963279068470001,0.0790122598409653,0.45777890086174,0.854728937149048,-0.244697421789169,0.419762283563614,0.878386855125427,-0.228552594780922,0.453539162874222,0.881997346878052,-0.12799659371376,0.491055637598038,0.862103343009949,-0.125068515539169,0.419762283563614,0.878386855125427,-0.228552594780922,0.310271173715591,0.933153212070465,-0.1815405189991,0.337708979845047,0.93469500541687,-0.110896356403828,0.453539162874222,0.881997346878052,-0.12799659371376,0.453539162874222,0.881997346878052,-0.12799659371376,0.337708979845047,0.93469500541687,-0.110896356403828,0.370683789253235,0.9282386302948,-0.0310890264809132,0.457107394933701,0.889366805553436,-0.00891966931521893,0.491055637598038,0.862103343009949,-0.125068515539169,0.453539162874222,0.881997346878052,-0.12799659371376,0.457107394933701,0.889366805553436,-0.00891966931521893,0.484988987445831,0.874519169330597,-0.00140692805871367,0.106862850487232,0.989989519119263,-0.0922006666660309,0.0939406827092171,0.975035309791565,-0.201199576258659,0.012124503031373,0.980741620063782,-0.194933071732521,-0.0014554678928107,0.993391036987305,-0.114769838750362,0.0939406827092171,0.975035309791565,-0.201199576258659,0.078909307718277,0.945798873901367,-0.315020382404327,0.00448178965598345,0.952891707420349,-0.303278028964996,0.012124503031373,0.980741620063782,-0.194933071732521,0.012124503031373,0.980741620063782,-0.194933071732521,0.00448178965598345,0.952891707420349,-0.303278028964996,-0.0811165049672127,0.952939808368683,-0.292106062173843,-0.0985154882073402,0.972764611244202,-0.209818661212921,-0.0014554678928107,0.993391036987305,-0.114769838750362,0.012124503031373,0.980741620063782,-0.194933071732521,-0.0985154882073402,0.972764611244202,-0.209818661212921, +-0.117075510323048,0.983586072921753,-0.137301653623581,-0.0811165049672127,0.952939808368683,-0.292106062173843,0.00448178965598345,0.952891707420349,-0.303278028964996,-0.0420562550425529,0.909353613853455,-0.413893014192581,-0.145767629146576,0.922606527805328,-0.357140183448792,0.00448178965598345,0.952891707420349,-0.303278028964996,0.078909307718277,0.945798873901367,-0.315020382404327,0.0610625334084034,0.898208558559418,-0.435307651758194,-0.0420562550425529,0.909353613853455,-0.413893014192581,-0.0420562550425529,0.909353613853455,-0.413893014192581,0.0610625334084034,0.898208558559418,-0.435307651758194,0.054118275642395,0.877157986164093,-0.477142453193665,-0.0647405162453651,0.892925381660461,-0.445525616407394,-0.145767629146576,0.922606527805328,-0.357140183448792,-0.0420562550425529,0.909353613853455,-0.413893014192581,-0.0647405162453651,0.892925381660461,-0.445525616407394,-0.167143762111664,0.910590946674347,-0.378004223108292,0.29293766617775,0.855757236480713,-0.426458716392517,0.279692500829697,0.872001647949219,-0.401727735996246,0.36666813492775,0.873491287231445,-0.320261716842651,0.389910519123077,0.852222442626953,-0.348836183547974,0.279692500829697,0.872001647949219,-0.401727735996246,0.237819746136665,0.915186882019043,-0.325383961200714,0.275489687919617,0.928576827049255,-0.248697355389595,0.36666813492775,0.873491287231445,-0.320261716842651,0.36666813492775,0.873491287231445,-0.320261716842651,0.275489687919617,0.928576827049255,-0.248697355389595,0.310271173715591,0.933153212070465,-0.1815405189991,0.419762283563614,0.878386855125427,-0.228552594780922,0.389910519123077,0.852222442626953,-0.348836183547974,0.36666813492775,0.873491287231445,-0.320261716842651,0.419762283563614,0.878386855125427,-0.228552594780922,0.45777890086174,0.854728937149048,-0.244697421789169,0.237819746136665,0.915186882019043,-0.325383961200714,0.153817757964134,0.935244262218475,-0.318838745355606,0.174539893865585,0.961605727672577,-0.211778685450554,0.275489687919617,0.928576827049255,-0.248697355389595, +0.153817757964134,0.935244262218475,-0.318838745355606,0.078909307718277,0.945798873901367,-0.315020382404327,0.0939406827092171,0.975035309791565,-0.201199576258659,0.174539893865585,0.961605727672577,-0.211778685450554,0.174539893865585,0.961605727672577,-0.211778685450554,0.0939406827092171,0.975035309791565,-0.201199576258659,0.106862850487232,0.989989519119263,-0.0922006666660309,0.206441715359688,0.968928039073944,-0.136236190795898,0.275489687919617,0.928576827049255,-0.248697355389595,0.174539893865585,0.961605727672577,-0.211778685450554,0.206441715359688,0.968928039073944,-0.136236190795898,0.310271173715591,0.933153212070465,-0.1815405189991,0.237819746136665,0.915186882019043,-0.325383961200714,0.279692500829697,0.872001647949219,-0.401727735996246,0.166161075234413,0.884596884250641,-0.435751020908356,0.153817757964134,0.935244262218475,-0.318838745355606,0.279692500829697,0.872001647949219,-0.401727735996246,0.29293766617775,0.855757236480713,-0.426458716392517,0.177381500601768,0.864045739173889,-0.471127182245255,0.166161075234413,0.884596884250641,-0.435751020908356,0.166161075234413,0.884596884250641,-0.435751020908356,0.177381500601768,0.864045739173889,-0.471127182245255,0.054118275642395,0.877157986164093,-0.477142453193665,0.0610625334084034,0.898208558559418,-0.435307651758194,0.153817757964134,0.935244262218475,-0.318838745355606,0.166161075234413,0.884596884250641,-0.435751020908356,0.0610625334084034,0.898208558559418,-0.435307651758194,0.078909307718277,0.945798873901367,-0.315020382404327,-0.899870336055756,0.176551148295403,0.398827105760574,-0.900087058544159,0.176531195640564,0.398346543312073,-0.729385733604431,0.181262165307999,0.659651815891266,-0.72879433631897,0.181255295872688,0.660307109355927,0.113468304276466,0.114764235913754,0.986891090869904,0.114931359887123,0.114581689238548,0.986742973327637,-0.195414692163467,0.148690983653069,0.969383358955383,-0.196736931800842,0.148816540837288,0.969096541404724,-0.196736931800842,0.148816540837288,0.969096541404724,-0.195414692163467,0.148690983653069,0.969383358955383, +-0.486057341098785,0.171713769435883,0.856891214847565,-0.487126529216766,0.171778947114944,0.856270849704742,-0.98259574174881,0.15787898004055,0.0978771522641182,-0.982603490352631,0.15787336230278,0.0978075861930847,-0.900087058544159,0.176531195640564,0.398346543312073,-0.899870336055756,0.176551148295403,0.398827105760574,-0.968700289726257,0.127209797501564,-0.213160425424576,-0.968777775764465,0.127254202961922,-0.21278141438961,-0.982603490352631,0.15787336230278,0.0978075861930847,-0.98259574174881,0.15787898004055,0.0978771522641182,0.413278013467789,0.0727398619055748,0.907695114612579,0.414474993944168,0.0725521594285965,0.90716415643692,0.114931359887123,0.114581689238548,0.986742973327637,0.113468304276466,0.114764235913754,0.986891090869904,0.67307323217392,0.0270436014980078,0.739081203937531,0.673927783966064,0.0268727112561464,0.738308250904083,0.414474993944168,0.0725521594285965,0.90716415643692,0.413278013467789,0.0727398619055748,0.907695114612579,-0.665366113185883,0.0424131155014038,-0.745311319828033,-0.666221499443054,0.0425842478871346,-0.744537174701691,-0.859805166721344,0.0874700471758842,-0.503074586391449,-0.859423935413361,0.0873634293675423,-0.503743946552277,-0.859423935413361,0.0873634293675423,-0.503743946552277,-0.859805166721344,0.0874700471758842,-0.503074586391449,-0.968777775764465,0.127254202961922,-0.21278141438961,-0.968700289726257,0.127209797501564,-0.213160425424576,0.976672947406769,-0.0578109323978424,0.206803977489471,0.976753115653992,-0.0578568689525127,0.206412240862846,0.867660343647003,-0.0181227382272482,0.496827125549316,0.867275655269623,-0.018015144392848,0.497502326965332,0.867275655269623,-0.018015144392848,0.497502326965332,0.867660343647003,-0.0181227382272482,0.496827125549316,0.673927783966064,0.0268727112561464,0.738308250904083,0.67307323217392,0.0270436014980078,0.739081203937531,-0.105975456535816,-0.0453309752047062,-0.993335008621216,-0.107451289892197,-0.0451466701924801,-0.993184864521027,-0.406924545764923,-0.00318196299485862,-0.913456201553345, +-0.405720144510269,-0.00337097304873168,-0.913991153240204,-0.405720144510269,-0.00337097304873168,-0.913991153240204,-0.406924545764923,-0.00318196299485862,-0.913456201553345,-0.666221499443054,0.0425842478871346,-0.744537174701691,-0.665366113185883,0.0424131155014038,-0.745311319828033,0.990582525730133,-0.0886063948273659,-0.104379713535309,0.990589022636414,-0.0886017754673958,-0.104322612285614,0.976753115653992,-0.0578568689525127,0.206412240862846,0.976672947406769,-0.0578109323978424,0.206803977489471,0.907794892787933,-0.107216820120811,-0.405478775501251,0.908007979393005,-0.107197165489197,-0.405006498098373,0.990589022636414,-0.0886017754673958,-0.104322612285614,0.990582525730133,-0.0886063948273659,-0.104379713535309,0.204248651862144,-0.0795102491974831,-0.975684762001038,0.202914044260979,-0.0793833211064339,-0.97597336769104,-0.107451289892197,-0.0451466701924801,-0.993184864521027,-0.105975456535816,-0.0453309752047062,-0.993335008621216,0.494753330945969,-0.102423533797264,-0.862976610660553,0.493677467107773,-0.10235783457756,-0.863600313663483,0.202914044260979,-0.0793833211064339,-0.97597336769104,0.204248651862144,-0.0795102491974831,-0.975684762001038,0.736565589904785,-0.112009197473526,-0.667027056217194,0.737156212329865,-0.112016074359417,-0.666373193264008,0.908007979393005,-0.107197165489197,-0.405006498098373,0.907794892787933,-0.107216820120811,-0.405478775501251,0.494753330945969,-0.102423533797264,-0.862976610660553,0.737156212329865,-0.112016074359417,-0.666373193264008,0.736565589904785,-0.112009197473526,-0.667027056217194,0.493677467107773,-0.10235783457756,-0.863600313663483,-0.120922073721886,-0.796792149543762,0.592030465602875,0.0560094863176346,-0.800770044326782,0.596347272396088,0.114941537380219,-0.628887295722961,0.768953204154968,-0.0372417308390141,-0.630433738231659,0.775349199771881,-0.0372417308390141,-0.630433738231659,0.775349199771881,0.114941537380219,-0.628887295722961,0.768953204154968,0.168256357312202,-0.562811374664307,0.809279382228851,0.00524980621412396,-0.56268435716629,0.826655209064484, +0.0505971424281597,-0.561986446380615,0.825597405433655,0.222108885645866,-0.581344664096832,0.782755374908447,0.238651618361473,-0.614571750164032,0.751895606517792,0.0517490766942501,-0.584344327449799,0.809854090213776,0.0440645031630993,-0.548213720321655,0.835176706314087,0.210249751806259,-0.558273375034332,0.802574574947357,0.222108885645866,-0.581344664096832,0.782755374908447,0.0505971424281597,-0.561986446380615,0.825597405433655,-0.17906941473484,-0.898161649703979,-0.401546686887741,-0.0752215906977654,-0.939485132694244,-0.334229528903961,-0.168534994125366,-0.963177740573883,-0.209486365318298,-0.21100489795208,-0.967498242855072,-0.139370232820511,0.0560094863176346,-0.800770044326782,0.596347272396088,-0.120922073721886,-0.796792149543762,0.592030465602875,-0.21100489795208,-0.967498242855072,-0.139370232820511,-0.168534994125366,-0.963177740573883,-0.209486365318298,0.34551602602005,-0.547184944152832,0.762369453907013,0.0757328197360039,-0.591529428958893,0.802718818187714,0.0522819422185421,-0.612648069858551,0.788624703884125,0.263171046972275,-0.646720767021179,0.715886414051056,0.210249751806259,-0.558273375034332,0.802574574947357,0.805096328258514,-0.408620595932007,0.429940730333328,0.811607718467712,-0.451141238212585,0.371166437864304,0.222108885645866,-0.581344664096832,0.782755374908447,0.222108885645866,-0.581344664096832,0.782755374908447,0.811607718467712,-0.451141238212585,0.371166437864304,0.808335423469543,-0.4960657954216,0.317037284374237,0.238651618361473,-0.614571750164032,0.751895606517792,0.0517490766942501,-0.584344327449799,0.809854090213776,0.238651618361473,-0.614571750164032,0.751895606517792,0.263171046972275,-0.646720767021179,0.715886414051056,0.0522819422185421,-0.612648069858551,0.788624703884125,0.0293660964816809,-0.545553147792816,0.83756160736084,0.195458739995956,-0.548572957515717,0.812935173511505,0.210249751806259,-0.558273375034332,0.802574574947357,0.0440645031630993,-0.548213720321655,0.835176706314087,0.168256357312202,-0.562811374664307,0.809279382228851, +0.764118254184723,-0.392846882343292,0.511658847332001,0.789217948913574,-0.381893932819366,0.480928182601929,0.195458739995956,-0.548572957515717,0.812935173511505,0.195458739995956,-0.548572957515717,0.812935173511505,0.789217948913574,-0.381893932819366,0.480928182601929,0.805096328258514,-0.408620595932007,0.429940730333328,0.210249751806259,-0.558273375034332,0.802574574947357,0.957287073135376,-0.159694164991379,0.241038009524345,0.961817800998688,-0.153128549456596,0.226843908429146,0.916231691837311,-0.245608419179916,0.316537797451019,0.904985010623932,-0.257052779197693,0.339007496833801,0.961817800998688,-0.153128549456596,0.226843908429146,0.962435662746429,-0.195332586765289,0.188580885529518,0.920750677585602,-0.279901653528214,0.271796375513077,0.916231691837311,-0.245608419179916,0.316537797451019,0.916231691837311,-0.245608419179916,0.316537797451019,0.920750677585602,-0.279901653528214,0.271796375513077,0.805096328258514,-0.408620595932007,0.429940730333328,0.789217948913574,-0.381893932819366,0.480928182601929,0.904985010623932,-0.257052779197693,0.339007496833801,0.916231691837311,-0.245608419179916,0.316537797451019,0.789217948913574,-0.381893932819366,0.480928182601929,0.764118254184723,-0.392846882343292,0.511658847332001,0.962435662746429,-0.195332586765289,0.188580885529518,0.956763863563538,-0.254457592964172,0.140904784202576,0.917343437671661,-0.332713723182678,0.218592181801796,0.920750677585602,-0.279901653528214,0.271796375513077,0.956763863563538,-0.254457592964172,0.140904784202576,0.947105348110199,-0.306441962718964,0.0953143984079361,0.908020615577698,-0.384223371744156,0.166946083307266,0.917343437671661,-0.332713723182678,0.218592181801796,0.917343437671661,-0.332713723182678,0.218592181801796,0.908020615577698,-0.384223371744156,0.166946083307266,0.808335423469543,-0.4960657954216,0.317037284374237,0.811607718467712,-0.451141238212585,0.371166437864304,0.920750677585602,-0.279901653528214,0.271796375513077,0.917343437671661,-0.332713723182678,0.218592181801796,0.811607718467712,-0.451141238212585,0.371166437864304, +0.805096328258514,-0.408620595932007,0.429940730333328,0.962435662746429,-0.195332586765289,0.188580885529518,0.993463337421417,-0.0900336280465126,0.0701745003461838,0.984600722789764,-0.172808200120926,0.0264338031411171,0.956763863563538,-0.254457592964172,0.140904784202576,0.984600722789764,-0.172808200120926,0.0264338031411171,0.991695463657379,-0.12180233001709,-0.0412830114364624,0.979274749755859,-0.190438091754913,-0.0689504593610764,0.971636950969696,-0.236453786492348,-0.00334442663006485,0.990266382694244,-0.031278844922781,0.135624825954437,0.995225012302399,0.0501480400562286,0.0837393775582314,0.997232258319855,0.04695063829422,0.0576497688889503,0.993057072162628,-0.0288658943027258,0.114037081599236,0.956763863563538,-0.254457592964172,0.140904784202576,0.984600722789764,-0.172808200120926,0.0264338031411171,0.971636950969696,-0.236453786492348,-0.00334442663006485,0.947105348110199,-0.306441962718964,0.0953143984079361,0.957287073135376,-0.159694164991379,0.241038009524345,0.990266382694244,-0.031278844922781,0.135624825954437,0.993057072162628,-0.0288658943027258,0.114037081599236,0.961817800998688,-0.153128549456596,0.226843908429146,0.993057072162628,-0.0288658943027258,0.114037081599236,0.997232258319855,0.04695063829422,0.0576497688889503,0.999643266201019,-0.0254778657108545,0.00800609681755304,0.993463337421417,-0.0900336280465126,0.0701745003461838,0.985217273235321,-0.170761033892632,0.0136926500126719,0.995588302612305,0.0150219947099686,0.0926193594932556,0.988030672073364,-0.0654799789190292,0.1396704018116,0.965638220310211,-0.252793818712234,0.0603184327483177,0.961817800998688,-0.153128549456596,0.226843908429146,0.993057072162628,-0.0288658943027258,0.114037081599236,0.993463337421417,-0.0900336280465126,0.0701745003461838,0.962435662746429,-0.195332586765289,0.188580885529518,0.961485803127289,-0.273847252130508,-0.0235093832015991,0.97016566991806,-0.228210285305977,-0.0818448066711426,0.994631409645081,-0.0965240821242332,-0.0373022481799126,0.992032468318939,-0.12291557341814,0.0276256836950779, +0.853363752365112,-0.387169480323792,0.349098891019821,0.424127370119095,0.76212751865387,0.489160090684891,0.372758716344833,0.574042499065399,0.729058444499969,0.34551602602005,-0.547184944152832,0.762369453907013,0.34551602602005,-0.547184944152832,0.762369453907013,0.372758716344833,0.574042499065399,0.729058444499969,0.289177030324936,0.263845503330231,0.920196831226349,0.0757328197360039,-0.591529428958893,0.802718818187714,0.424127370119095,0.76212751865387,0.489160090684891,0.408780544996262,0.807273805141449,0.425684571266174,0.313579738140106,0.851016700267792,0.421234279870987,0.307173520326614,0.819123923778534,0.484438240528107,0.408780544996262,0.807273805141449,0.425684571266174,0.403937876224518,0.827993869781494,0.388922125101089,0.309285551309586,0.866391241550446,0.392056912183762,0.313579738140106,0.851016700267792,0.421234279870987,0.403937876224518,0.827993869781494,0.388922125101089,0.403245002031326,0.848338961601257,0.343095242977142,0.312057614326477,0.882471084594727,0.351944416761398,0.309285551309586,0.866391241550446,0.392056912183762,0.403245002031326,0.848338961601257,0.343095242977142,0.404508620500565,0.875312983989716,0.264953106641769,0.319656014442444,0.907958209514618,0.270983278751373,0.312057614326477,0.882471084594727,0.351944416761398,0.382089138031006,0.918239116668701,0.104137971997261,0.357529997825623,0.926915526390076,-0.114016823470592,0.321462333202362,0.937324345111847,-0.134480744600296,0.325790643692017,0.941037356853485,0.0911546275019646,0.404508620500565,0.875312983989716,0.264953106641769,0.382089138031006,0.918239116668701,0.104137971997261,0.325790643692017,0.941037356853485,0.0911546275019646,0.319656014442444,0.907958209514618,0.270983278751373,0.34263402223587,0.872563421726227,-0.348188251256943,0.311021596193314,0.75811356306076,-0.573174774646759,0.264924615621567,0.766633629798889,-0.584882736206055,0.299597144126892,0.877606213092804,-0.374231219291687,0.357529997825623,0.926915526390076,-0.114016823470592,0.34263402223587,0.872563421726227,-0.348188251256943, +0.299597144126892,0.877606213092804,-0.374231219291687,0.321462333202362,0.937324345111847,-0.134480744600296,0.270093947649002,0.615147471427917,-0.740704298019409,0.195976674556732,0.37444531917572,-0.906302332878113,0.160423308610916,0.410944581031799,-0.897434592247009,0.225151002407074,0.629360795021057,-0.743782222270966,0.311021596193314,0.75811356306076,-0.573174774646759,0.270093947649002,0.615147471427917,-0.740704298019409,0.225151002407074,0.629360795021057,-0.743782222270966,0.264924615621567,0.766633629798889,-0.584882736206055,0.195976674556732,0.37444531917572,-0.906302332878113,0.114599019289017,0.098651334643364,-0.988501310348511,0.0769924074411392,0.133565947413445,-0.988044679164886,0.160423308610916,0.410944581031799,-0.897434592247009,0.114599019289017,0.098651334643364,-0.988501310348511,0.0509980022907257,-0.159659311175346,-0.985854029655457,0.00630171503871679,-0.129187032580376,-0.991600275039673,0.0769924074411392,0.133565947413445,-0.988044679164886,0.0509980022907257,-0.159659311175346,-0.985854029655457,-0.0143258543685079,-0.447848588228226,-0.893994688987732,-0.0584856197237968,-0.427987277507782,-0.901890456676483,0.00630171503871679,-0.129187032580376,-0.991600275039673,-0.0143258543685079,-0.447848588228226,-0.893994688987732,-0.0679105594754219,-0.648036420345306,-0.75857549905777,-0.107560306787491,-0.643963098526001,-0.757457911968231,-0.0584856197237968,-0.427987277507782,-0.901890456676483,-0.0756486728787422,-0.781587302684784,-0.619191944599152,-0.0570948235690594,-0.863382339477539,-0.501309514045715,-0.148749649524689,-0.854888260364532,-0.497030764818192,-0.137573942542076,-0.779442250728607,-0.611181735992432,-0.0679105594754219,-0.648036420345306,-0.75857549905777,-0.0756486728787422,-0.781587302684784,-0.619191944599152,-0.137573942542076,-0.779442250728607,-0.611181735992432,-0.107560306787491,-0.643963098526001,-0.757457911968231,-0.0581422075629234,-0.894277453422546,-0.443719923496246,-0.0556419752538204,-0.90953803062439,-0.411879301071167,-0.158308282494545,-0.885948479175568,-0.435928642749786, +-0.154334560036659,-0.879126489162445,-0.450907528400421,-0.0570948235690594,-0.863382339477539,-0.501309514045715,-0.0581422075629234,-0.894277453422546,-0.443719923496246,-0.154334560036659,-0.879126489162445,-0.450907528400421,-0.148749649524689,-0.854888260364532,-0.497030764818192,-0.0573645792901516,-0.920928478240967,-0.38548681139946,-0.0752215906977654,-0.939485132694244,-0.334229528903961,-0.17906941473484,-0.898161649703979,-0.401546686887741,-0.16148878633976,-0.889263927936554,-0.42793807387352,-0.0556419752538204,-0.90953803062439,-0.411879301071167,-0.0573645792901516,-0.920928478240967,-0.38548681139946,-0.16148878633976,-0.889263927936554,-0.42793807387352,-0.158308282494545,-0.885948479175568,-0.435928642749786,0.808335423469543,-0.4960657954216,0.317037284374237,0.801076352596283,-0.527779519557953,0.282357096672058,0.263171046972275,-0.646720767021179,0.715886414051056,0.238651618361473,-0.614571750164032,0.751895606517792,0.372758716344833,0.574042499065399,0.729058444499969,0.424127370119095,0.76212751865387,0.489160090684891,0.307173520326614,0.819123923778534,0.484438240528107,0.289177030324936,0.263845503330231,0.920196831226349,0.263171046972275,-0.646720767021179,0.715886414051056,0.801076352596283,-0.527779519557953,0.282357096672058,0.853363752365112,-0.387169480323792,0.349098891019821,0.34551602602005,-0.547184944152832,0.762369453907013,0.738822281360626,-0.418475747108459,0.528223097324371,0.114941537380219,-0.628887295722961,0.768953204154968,0.0560094863176346,-0.800770044326782,0.596347272396088,0.678896248340607,-0.571734845638275,0.460672557353973,0.808335423469543,-0.4960657954216,0.317037284374237,0.908020615577698,-0.384223371744156,0.166946083307266,0.899293720722198,-0.418350130319595,0.127491384744644,0.801076352596283,-0.527779519557953,0.282357096672058,0.908020615577698,-0.384223371744156,0.166946083307266,0.947105348110199,-0.306441962718964,0.0953143984079361,0.939069032669067,-0.338647753000259,0.0588810592889786,0.899293720722198,-0.418350130319595,0.127491384744644, +0.899293720722198,-0.418350130319595,0.127491384744644,0.939069032669067,-0.338647753000259,0.0588810592889786,0.977363884449005,-0.181835681200027,0.1081473082304,0.945762753486633,-0.268299341201782,0.18316188454628,0.801076352596283,-0.527779519557953,0.282357096672058,0.899293720722198,-0.418350130319595,0.127491384744644,0.945762753486633,-0.268299341201782,0.18316188454628,0.853363752365112,-0.387169480323792,0.349098891019821,0.168256357312202,-0.562811374664307,0.809279382228851,0.114941537380219,-0.628887295722961,0.768953204154968,0.738822281360626,-0.418475747108459,0.528223097324371,0.764118254184723,-0.392846882343292,0.511658847332001,0.678896248340607,-0.571734845638275,0.460672557353973,0.844574511051178,-0.458491832017899,0.276548504829407,0.891765058040619,-0.292142897844315,0.345554292201996,0.738822281360626,-0.418475747108459,0.528223097324371,0.844574511051178,-0.458491832017899,0.276548504829407,0.917723953723907,-0.364136159420013,0.158706203103065,0.952116906642914,-0.191384583711624,0.238422676920891,0.891765058040619,-0.292142897844315,0.345554292201996,0.891765058040619,-0.292142897844315,0.345554292201996,0.952116906642914,-0.191384583711624,0.238422676920891,0.957287073135376,-0.159694164991379,0.241038009524345,0.904985010623932,-0.257052779197693,0.339007496833801,0.738822281360626,-0.418475747108459,0.528223097324371,0.891765058040619,-0.292142897844315,0.345554292201996,0.904985010623932,-0.257052779197693,0.339007496833801,0.764118254184723,-0.392846882343292,0.511658847332001,0.917723953723907,-0.364136159420013,0.158706203103065,0.965638220310211,-0.252793818712234,0.0603184327483177,0.988030672073364,-0.0654799789190292,0.1396704018116,0.952116906642914,-0.191384583711624,0.238422676920891,0.995225012302399,0.0501480400562286,0.0837393775582314,0.990266382694244,-0.031278844922781,0.135624825954437,0.988030672073364,-0.0654799789190292,0.1396704018116,0.995588302612305,0.0150219947099686,0.0926193594932556,0.961485803127289,-0.273847252130508,-0.0235093832015991,0.971636950969696,-0.236453786492348,-0.00334442663006485, +0.979274749755859,-0.190438091754913,-0.0689504593610764,0.97016566991806,-0.228210285305977,-0.0818448066711426,0.952116906642914,-0.191384583711624,0.238422676920891,0.988030672073364,-0.0654799789190292,0.1396704018116,0.990266382694244,-0.031278844922781,0.135624825954437,0.957287073135376,-0.159694164991379,0.241038009524345,0.961485803127289,-0.273847252130508,-0.0235093832015991,0.992032468318939,-0.12291557341814,0.0276256836950779,0.977363884449005,-0.181835681200027,0.1081473082304,0.939069032669067,-0.338647753000259,0.0588810592889786,0.971636950969696,-0.236453786492348,-0.00334442663006485,0.961485803127289,-0.273847252130508,-0.0235093832015991,0.939069032669067,-0.338647753000259,0.0588810592889786,0.947105348110199,-0.306441962718964,0.0953143984079361,0.979274749755859,-0.190438091754913,-0.0689504593610764,0.983071625232697,-0.0982128530740738,-0.154675483703613,0.976445436477661,-0.132953330874443,-0.169934794306755,0.97016566991806,-0.228210285305977,-0.0818448066711426,0.983071625232697,-0.0982128530740738,-0.154675483703613,0.955471992492676,0.106036491692066,-0.275371819734573,0.953835844993591,0.115404516458511,-0.277270346879959,0.976445436477661,-0.132953330874443,-0.169934794306755,0.976445436477661,-0.132953330874443,-0.169934794306755,0.953835844993591,0.115404516458511,-0.277270346879959,0.952373325824738,0.185751110315323,-0.241829872131348,0.990070581436157,0.0396915674209595,-0.134850814938545,0.97016566991806,-0.228210285305977,-0.0818448066711426,0.976445436477661,-0.132953330874443,-0.169934794306755,0.990070581436157,0.0396915674209595,-0.134850814938545,0.994631409645081,-0.0965240821242332,-0.0373022481799126,0.999643266201019,-0.0254778657108545,0.00800609681755304,0.997947573661804,0.0414303541183472,-0.0488281920552254,0.992963492870331,-0.0448107868432999,-0.109615385532379,0.991695463657379,-0.12180233001709,-0.0412830114364624,0.997947573661804,0.0414303541183472,-0.0488281920552254,0.960422933101654,0.146282494068146,-0.237042784690857,0.959870219230652,0.117984555661678,-0.254418551921844, +0.992963492870331,-0.0448107868432999,-0.109615385532379,0.992963492870331,-0.0448107868432999,-0.109615385532379,0.959870219230652,0.117984555661678,-0.254418551921844,0.955471992492676,0.106036491692066,-0.275371819734573,0.983071625232697,-0.0982128530740738,-0.154675483703613,0.991695463657379,-0.12180233001709,-0.0412830114364624,0.992963492870331,-0.0448107868432999,-0.109615385532379,0.983071625232697,-0.0982128530740738,-0.154675483703613,0.979274749755859,-0.190438091754913,-0.0689504593610764,0.999643266201019,-0.0254778657108545,0.00800609681755304,0.997232258319855,0.04695063829422,0.0576497688889503,0.993392586708069,0.11474684625864,-0.00210137176327407,0.997947573661804,0.0414303541183472,-0.0488281920552254,0.997232258319855,0.04695063829422,0.0576497688889503,0.995225012302399,0.0501480400562286,0.0837393775582314,0.992398381233215,0.121888265013695,0.0169951301068068,0.993392586708069,0.11474684625864,-0.00210137176327407,0.993392586708069,0.11474684625864,-0.00210137176327407,0.992398381233215,0.121888265013695,0.0169951301068068,0.962220013141632,0.125712662935257,-0.241514161229134,0.959905803203583,0.159898340702057,-0.230246275663376,0.997947573661804,0.0414303541183472,-0.0488281920552254,0.993392586708069,0.11474684625864,-0.00210137176327407,0.959905803203583,0.159898340702057,-0.230246275663376,0.960422933101654,0.146282494068146,-0.237042784690857,0.995225012302399,0.0501480400562286,0.0837393775582314,0.995588302612305,0.0150219947099686,0.0926193594932556,0.996597826480865,0.0782498121261597,0.0258811935782433,0.992398381233215,0.121888265013695,0.0169951301068068,0.995588302612305,0.0150219947099686,0.0926193594932556,0.985217273235321,-0.170761033892632,0.0136926500126719,0.983413219451904,-0.141686156392097,-0.113240525126457,0.996597826480865,0.0782498121261597,0.0258811935782433,0.996597826480865,0.0782498121261597,0.0258811935782433,0.983413219451904,-0.141686156392097,-0.113240525126457,0.946087241172791,-0.113326989114285,-0.303440093994141,0.965829789638519,0.0350226163864136,-0.256800055503845, +0.992398381233215,0.121888265013695,0.0169951301068068,0.996597826480865,0.0782498121261597,0.0258811935782433,0.965829789638519,0.0350226163864136,-0.256800055503845,0.962220013141632,0.125712662935257,-0.241514161229134,0.945762753486633,-0.268299341201782,0.18316188454628,0.408780544996262,0.807273805141449,0.425684571266174,0.424127370119095,0.76212751865387,0.489160090684891,0.853363752365112,-0.387169480323792,0.349098891019821,0.992032468318939,-0.12291557341814,0.0276256836950779,0.403245002031326,0.848338961601257,0.343095242977142,0.403937876224518,0.827993869781494,0.388922125101089,0.977363884449005,-0.181835681200027,0.1081473082304,0.945762753486633,-0.268299341201782,0.18316188454628,0.977363884449005,-0.181835681200027,0.1081473082304,0.403937876224518,0.827993869781494,0.388922125101089,0.408780544996262,0.807273805141449,0.425684571266174,0.990070581436157,0.0396915674209595,-0.134850814938545,0.382089138031006,0.918239116668701,0.104137971997261,0.404508620500565,0.875312983989716,0.264953106641769,0.994631409645081,-0.0965240821242332,-0.0373022481799126,0.992032468318939,-0.12291557341814,0.0276256836950779,0.994631409645081,-0.0965240821242332,-0.0373022481799126,0.404508620500565,0.875312983989716,0.264953106641769,0.403245002031326,0.848338961601257,0.343095242977142,0.953835844993591,0.115404516458511,-0.277270346879959,0.34263402223587,0.872563421726227,-0.348188251256943,0.357529997825623,0.926915526390076,-0.114016823470592,0.952373325824738,0.185751110315323,-0.241829872131348,0.990070581436157,0.0396915674209595,-0.134850814938545,0.952373325824738,0.185751110315323,-0.241829872131348,0.357529997825623,0.926915526390076,-0.114016823470592,0.382089138031006,0.918239116668701,0.104137971997261,0.959870219230652,0.117984555661678,-0.254418551921844,0.270093947649002,0.615147471427917,-0.740704298019409,0.311021596193314,0.75811356306076,-0.573174774646759,0.955471992492676,0.106036491692066,-0.275371819734573,0.953835844993591,0.115404516458511,-0.277270346879959,0.955471992492676,0.106036491692066,-0.275371819734573, +0.311021596193314,0.75811356306076,-0.573174774646759,0.34263402223587,0.872563421726227,-0.348188251256943,0.959905803203583,0.159898340702057,-0.230246275663376,0.114599019289017,0.098651334643364,-0.988501310348511,0.195976674556732,0.37444531917572,-0.906302332878113,0.960422933101654,0.146282494068146,-0.237042784690857,0.959870219230652,0.117984555661678,-0.254418551921844,0.960422933101654,0.146282494068146,-0.237042784690857,0.195976674556732,0.37444531917572,-0.906302332878113,0.270093947649002,0.615147471427917,-0.740704298019409,0.965829789638519,0.0350226163864136,-0.256800055503845,-0.0143258543685079,-0.447848588228226,-0.893994688987732,0.0509980022907257,-0.159659311175346,-0.985854029655457,0.962220013141632,0.125712662935257,-0.241514161229134,0.959905803203583,0.159898340702057,-0.230246275663376,0.962220013141632,0.125712662935257,-0.241514161229134,0.0509980022907257,-0.159659311175346,-0.985854029655457,0.114599019289017,0.098651334643364,-0.988501310348511,0.983413219451904,-0.141686156392097,-0.113240525126457,-0.0756486728787422,-0.781587302684784,-0.619191944599152,-0.0679105594754219,-0.648036420345306,-0.75857549905777,0.946087241172791,-0.113326989114285,-0.303440093994141,0.965829789638519,0.0350226163864136,-0.256800055503845,0.946087241172791,-0.113326989114285,-0.303440093994141,-0.0679105594754219,-0.648036420345306,-0.75857549905777,-0.0143258543685079,-0.447848588228226,-0.893994688987732,0.965638220310211,-0.252793818712234,0.0603184327483177,-0.0581422075629234,-0.894277453422546,-0.443719923496246,-0.0570948235690594,-0.863382339477539,-0.501309514045715,0.985217273235321,-0.170761033892632,0.0136926500126719,0.983413219451904,-0.141686156392097,-0.113240525126457,0.985217273235321,-0.170761033892632,0.0136926500126719,-0.0570948235690594,-0.863382339477539,-0.501309514045715,-0.0756486728787422,-0.781587302684784,-0.619191944599152,0.844574511051178,-0.458491832017899,0.276548504829407,-0.0573645792901516,-0.920928478240967,-0.38548681139946,-0.0556419752538204,-0.90953803062439,-0.411879301071167, +0.917723953723907,-0.364136159420013,0.158706203103065,0.965638220310211,-0.252793818712234,0.0603184327483177,0.917723953723907,-0.364136159420013,0.158706203103065,-0.0556419752538204,-0.90953803062439,-0.411879301071167,-0.0581422075629234,-0.894277453422546,-0.443719923496246,0.0560094863176346,-0.800770044326782,0.596347272396088,-0.168534994125366,-0.963177740573883,-0.209486365318298,-0.0752215906977654,-0.939485132694244,-0.334229528903961,0.678896248340607,-0.571734845638275,0.460672557353973,0.844574511051178,-0.458491832017899,0.276548504829407,0.678896248340607,-0.571734845638275,0.460672557353973,-0.0752215906977654,-0.939485132694244,-0.334229528903961,-0.0573645792901516,-0.920928478240967,-0.38548681139946,-0.361598193645477,-0.0712266489863396,0.929609358310699,-0.223783940076828,-0.0620397366583347,0.972662270069122,-0.241753429174423,-0.118984073400497,0.963015019893646,-0.377830564975739,-0.134092688560486,0.916113138198853,-0.223783940076828,-0.0620397366583347,0.972662270069122,-0.0719060972332954,-0.0729462131857872,0.994740426540375,-0.0638728961348534,-0.115245945751667,0.991281270980835,-0.241753429174423,-0.118984073400497,0.963015019893646,-0.241753429174423,-0.118984073400497,0.963015019893646,-0.0638728961348534,-0.115245945751667,0.991281270980835,-0.0505745559930801,-0.216818541288376,0.974900960922241,-0.246597662568092,-0.220601618289948,0.943676114082336,-0.377830564975739,-0.134092688560486,0.916113138198853,-0.241753429174423,-0.118984073400497,0.963015019893646,-0.246597662568092,-0.220601618289948,0.943676114082336,-0.383984088897705,-0.234084814786911,0.893174409866333,-0.0505745559930801,-0.216818541288376,0.974900960922241,-0.0366969034075737,-0.326264381408691,0.944566011428833,-0.218548327684402,-0.327068358659744,0.91938179731369,-0.246597662568092,-0.220601618289948,0.943676114082336,-0.0366969034075737,-0.326264381408691,0.944566011428833,-0.0189602691680193,-0.400181174278259,0.916239857673645,-0.170277550816536,-0.404759556055069,0.898429274559021,-0.218548327684402,-0.327068358659744,0.91938179731369, +-0.218548327684402,-0.327068358659744,0.91938179731369,-0.170277550816536,-0.404759556055069,0.898429274559021,-0.286367982625961,-0.412363976240158,0.864840686321259,-0.336872100830078,-0.329913675785065,0.881858348846436,-0.246597662568092,-0.220601618289948,0.943676114082336,-0.218548327684402,-0.327068358659744,0.91938179731369,-0.336872100830078,-0.329913675785065,0.881858348846436,-0.383984088897705,-0.234084814786911,0.893174409866333,-0.0505745559930801,-0.216818541288376,0.974900960922241,0.132243692874908,-0.221355408430099,0.966184973716736,0.127728149294853,-0.31869900226593,0.939210593700409,-0.0366969034075737,-0.326264381408691,0.944566011428833,0.132243692874908,-0.221355408430099,0.966184973716736,0.239903971552849,-0.232672840356827,0.942501604557037,0.231495544314384,-0.308972954750061,0.922467112541199,0.127728149294853,-0.31869900226593,0.939210593700409,0.127728149294853,-0.31869900226593,0.939210593700409,0.231495544314384,-0.308972954750061,0.922467112541199,0.216270118951797,-0.383504271507263,0.897859513759613,0.117903113365173,-0.393635481595993,0.911674320697784,-0.0366969034075737,-0.326264381408691,0.944566011428833,0.127728149294853,-0.31869900226593,0.939210593700409,0.117903113365173,-0.393635481595993,0.911674320697784,-0.0189602691680193,-0.400181174278259,0.916239857673645,-0.0505745559930801,-0.216818541288376,0.974900960922241,-0.0638728961348534,-0.115245945751667,0.991281270980835,0.119567766785622,-0.132719412446022,0.983915209770203,0.132243692874908,-0.221355408430099,0.966184973716736,-0.0638728961348534,-0.115245945751667,0.991281270980835,-0.0719060972332954,-0.0729462131857872,0.994740426540375,0.105405665934086,-0.097995325922966,0.989589154720306,0.119567766785622,-0.132719412446022,0.983915209770203,0.119567766785622,-0.132719412446022,0.983915209770203,0.105405665934086,-0.097995325922966,0.989589154720306,0.230566099286079,-0.129147917032242,0.964448034763336,0.236911699175835,-0.164822086691856,0.95744788646698,0.132243692874908,-0.221355408430099,0.966184973716736, +0.119567766785622,-0.132719412446022,0.983915209770203,0.236911699175835,-0.164822086691856,0.95744788646698,0.239903971552849,-0.232672840356827,0.942501604557037,-0.412259370088577,-0.423253208398819,0.806783199310303,-0.847694575786591,0.124245829880238,0.515729606151581,-0.919804930686951,-0.00966078788042068,0.392257064580917,-0.454911768436432,-0.377364009618759,0.806629836559296,-0.11481212079525,0.451685428619385,0.88475900888443,-0.0903512537479401,-0.411389738321304,0.906970322132111,0.0229927208274603,-0.400102198123932,0.916182100772858,0.0782046020030975,0.440203160047531,0.894485950469971,-0.900490939617157,0.243682205677032,0.36018767952919,-0.970040380954742,0.0697225108742714,0.232724115252495,-0.919804930686951,-0.00966078788042068,0.392257064580917,-0.847694575786591,0.124245829880238,0.515729606151581,-0.128651574254036,0.729240596294403,0.672054350376129,-0.11481212079525,0.451685428619385,0.88475900888443,0.0782046020030975,0.440203160047531,0.894485950469971,0.0693512484431267,0.729604065418243,0.68034416437149,0.618682980537415,0.574087142944336,0.536335110664368,0.458892345428467,0.640223622322083,0.616061329841614,0.462847888469696,0.400285243988037,0.790913164615631,0.623217284679413,0.403633743524551,0.669835805892944,-0.721783638000488,0.439077705144882,0.535013377666473,-0.814375281333923,0.356889963150024,0.457626968622208,-0.776377260684967,0.210155785083771,0.594199419021606,-0.681693971157074,0.325799614191055,0.655093789100647,-0.361598193645477,-0.0712266489863396,0.929609358310699,-0.48458868265152,-0.105301007628441,0.868380963802338,-0.471959143877029,-0.0620030835270882,0.879437506198883,-0.339758068323135,-0.0431800857186317,0.939521074295044,-0.585571706295013,-0.198790028691292,0.785867929458618,-0.567092537879944,-0.228768303990364,0.791246473789215,-0.471959143877029,-0.0620030835270882,0.879437506198883,-0.48458868265152,-0.105301007628441,0.868380963802338,-0.407099634408951,-0.198706284165382,0.8915074467659,-0.339758068323135,-0.0431800857186317,0.939521074295044,-0.471959143877029,-0.0620030835270882,0.879437506198883, +-0.567092537879944,-0.228768303990364,0.791246473789215,-0.361598193645477,-0.0712266489863396,0.929609358310699,-0.377830564975739,-0.134092688560486,0.916113138198853,-0.484679877758026,-0.153816804289818,0.861060917377472,-0.48458868265152,-0.105301007628441,0.868380963802338,-0.377830564975739,-0.134092688560486,0.916113138198853,-0.383984088897705,-0.234084814786911,0.893174409866333,-0.479119747877121,-0.204021453857422,0.853709280490875,-0.484679877758026,-0.153816804289818,0.861060917377472,-0.484679877758026,-0.153816804289818,0.861060917377472,-0.479119747877121,-0.204021453857422,0.853709280490875,-0.552909731864929,-0.228045359253883,0.8014275431633,-0.568797051906586,-0.19967782497406,0.797871291637421,-0.48458868265152,-0.105301007628441,0.868380963802338,-0.484679877758026,-0.153816804289818,0.861060917377472,-0.568797051906586,-0.19967782497406,0.797871291637421,-0.585571706295013,-0.198790028691292,0.785867929458618,-0.0669142454862595,-0.205793768167496,0.97630500793457,-0.0682230293750763,-0.0804064050316811,0.994424641132355,-0.212203949689865,-0.0491056703031063,0.975990772247314,-0.237986877560616,-0.173030719161034,0.955731451511383,-0.0682230293750763,-0.0804064050316811,0.994424641132355,-0.0719060972332954,-0.0729462131857872,0.994740426540375,-0.223783940076828,-0.0620397366583347,0.972662270069122,-0.212203949689865,-0.0491056703031063,0.975990772247314,-0.212203949689865,-0.0491056703031063,0.975990772247314,-0.223783940076828,-0.0620397366583347,0.972662270069122,-0.361598193645477,-0.0712266489863396,0.929609358310699,-0.339758068323135,-0.0431800857186317,0.939521074295044,-0.237986877560616,-0.173030719161034,0.955731451511383,-0.212203949689865,-0.0491056703031063,0.975990772247314,-0.339758068323135,-0.0431800857186317,0.939521074295044,-0.407099634408951,-0.198706284165382,0.8915074467659,-0.412259370088577,-0.423253208398819,0.806783199310303,-0.454911768436432,-0.377364009618759,0.806629836559296,-0.402608722448349,-0.350464731454849,0.845624446868896,-0.351397037506104,-0.426370710134506,0.833503544330597, +-0.454911768436432,-0.377364009618759,0.806629836559296,-0.496195793151855,-0.333043038845062,0.801793038845062,-0.439279973506927,-0.301905035972595,0.846100687980652,-0.402608722448349,-0.350464731454849,0.845624446868896,-0.402608722448349,-0.350464731454849,0.845624446868896,-0.439279973506927,-0.301905035972595,0.846100687980652,-0.383984088897705,-0.234084814786911,0.893174409866333,-0.336872100830078,-0.329913675785065,0.881858348846436,-0.351397037506104,-0.426370710134506,0.833503544330597,-0.402608722448349,-0.350464731454849,0.845624446868896,-0.336872100830078,-0.329913675785065,0.881858348846436,-0.286367982625961,-0.412363976240158,0.864840686321259,-0.383984088897705,-0.234084814786911,0.893174409866333,-0.439279973506927,-0.301905035972595,0.846100687980652,-0.472199559211731,-0.26583132147789,0.840453028678894,-0.479119747877121,-0.204021453857422,0.853709280490875,-0.496195793151855,-0.333043038845062,0.801793038845062,-0.536540269851685,-0.283029109239578,0.794996201992035,-0.472199559211731,-0.26583132147789,0.840453028678894,-0.439279973506927,-0.301905035972595,0.846100687980652,-0.552909731864929,-0.228045359253883,0.8014275431633,-0.479119747877121,-0.204021453857422,0.853709280490875,-0.472199559211731,-0.26583132147789,0.840453028678894,-0.536540269851685,-0.283029109239578,0.794996201992035,0.236912176012993,-0.243171826004982,0.94060617685318,0.22446146607399,-0.130397111177444,0.96571934223175,0.104917764663696,-0.116474136710167,0.987636625766754,0.114658609032631,-0.24471028149128,0.962792932987213,0.22446146607399,-0.130397111177444,0.96571934223175,0.230566099286079,-0.129147917032242,0.964448034763336,0.105405665934086,-0.097995325922966,0.989589154720306,0.104917764663696,-0.116474136710167,0.987636625766754,0.104917764663696,-0.116474136710167,0.987636625766754,0.105405665934086,-0.097995325922966,0.989589154720306,-0.0719060972332954,-0.0729462131857872,0.994740426540375,-0.0682230293750763,-0.0804064050316811,0.994424641132355,0.114658609032631,-0.24471028149128,0.962792932987213, +0.104917764663696,-0.116474136710167,0.987636625766754,-0.0682230293750763,-0.0804064050316811,0.994424641132355,-0.0669142454862595,-0.205793768167496,0.97630500793457,-0.286367982625961,-0.412363976240158,0.864840686321259,-0.225928321480751,-0.469884485006332,0.853325843811035,-0.296786695718765,-0.485381364822388,0.822388410568237,-0.351397037506104,-0.426370710134506,0.833503544330597,-0.225928321480751,-0.469884485006332,0.853325843811035,-0.182404056191444,-0.438867300748825,0.879843294620514,-0.261822164058685,-0.465789586305618,0.845274686813354,-0.296786695718765,-0.485381364822388,0.822388410568237,-0.296786695718765,-0.485381364822388,0.822388410568237,-0.261822164058685,-0.465789586305618,0.845274686813354,-0.346330404281616,-0.460980534553528,0.817038655281067,-0.37027370929718,-0.465006291866302,0.804155766963959,-0.351397037506104,-0.426370710134506,0.833503544330597,-0.296786695718765,-0.485381364822388,0.822388410568237,-0.37027370929718,-0.465006291866302,0.804155766963959,-0.412259370088577,-0.423253208398819,0.806783199310303,-0.0189602691680193,-0.400181174278259,0.916239857673645,0.00177561328746378,-0.4400594830513,0.897966921329498,-0.122560799121857,-0.449457794427872,0.884853959083557,-0.170277550816536,-0.404759556055069,0.898429274559021,0.00177561328746378,-0.4400594830513,0.897966921329498,0.0229927208274603,-0.400102198123932,0.916182100772858,-0.0903512537479401,-0.411389738321304,0.906970322132111,-0.122560799121857,-0.449457794427872,0.884853959083557,-0.122560799121857,-0.449457794427872,0.884853959083557,-0.0903512537479401,-0.411389738321304,0.906970322132111,-0.182404056191444,-0.438867300748825,0.879843294620514,-0.225928321480751,-0.469884485006332,0.853325843811035,-0.170277550816536,-0.404759556055069,0.898429274559021,-0.122560799121857,-0.449457794427872,0.884853959083557,-0.225928321480751,-0.469884485006332,0.853325843811035,-0.286367982625961,-0.412363976240158,0.864840686321259,0.216270118951797,-0.383504271507263,0.897859513759613,0.201531961560249,-0.434956938028336,0.877608895301819, +0.114331297576427,-0.437331885099411,0.892002880573273,0.117903113365173,-0.393635481595993,0.911674320697784,0.201531961560249,-0.434956938028336,0.877608895301819,0.220540538430214,-0.394343793392181,0.892106950283051,0.131273165345192,-0.39772629737854,0.908064544200897,0.114331297576427,-0.437331885099411,0.892002880573273,0.114331297576427,-0.437331885099411,0.892002880573273,0.131273165345192,-0.39772629737854,0.908064544200897,0.0229927208274603,-0.400102198123932,0.916182100772858,0.00177561328746378,-0.4400594830513,0.897966921329498,0.117903113365173,-0.393635481595993,0.911674320697784,0.114331297576427,-0.437331885099411,0.892002880573273,0.00177561328746378,-0.4400594830513,0.897966921329498,-0.0189602691680193,-0.400181174278259,0.916239857673645,0.216270118951797,-0.383504271507263,0.897859513759613,0.282440990209579,-0.367244601249695,0.886204540729523,0.266518086194992,-0.424554049968719,0.865287184715271,0.201531961560249,-0.434956938028336,0.877608895301819,0.282440990209579,-0.367244601249695,0.886204540729523,0.365729153156281,-0.331634670495987,0.869632422924042,0.359492719173431,-0.371799319982529,0.855879783630371,0.266518086194992,-0.424554049968719,0.865287184715271,0.266518086194992,-0.424554049968719,0.865287184715271,0.359492719173431,-0.371799319982529,0.855879783630371,0.370895147323608,-0.358845561742783,0.856543481349945,0.294801712036133,-0.388044625520706,0.873220145702362,0.201531961560249,-0.434956938028336,0.877608895301819,0.266518086194992,-0.424554049968719,0.865287184715271,0.294801712036133,-0.388044625520706,0.873220145702362,0.220540538430214,-0.394343793392181,0.892106950283051,0.239903971552849,-0.232672840356827,0.942501604557037,0.300563216209412,-0.242200523614883,0.922496974468231,0.294351637363434,-0.300367742776871,0.907268524169922,0.231495544314384,-0.308972954750061,0.922467112541199,0.300563216209412,-0.242200523614883,0.922496974468231,0.383601158857346,-0.250067114830017,0.888997554779053,0.375633716583252,-0.286741435527802,0.881293773651123,0.294351637363434,-0.300367742776871,0.907268524169922, +0.294351637363434,-0.300367742776871,0.907268524169922,0.375633716583252,-0.286741435527802,0.881293773651123,0.365729153156281,-0.331634670495987,0.869632422924042,0.282440990209579,-0.367244601249695,0.886204540729523,0.231495544314384,-0.308972954750061,0.922467112541199,0.294351637363434,-0.300367742776871,0.907268524169922,0.282440990209579,-0.367244601249695,0.886204540729523,0.216270118951797,-0.383504271507263,0.897859513759613,0.239903971552849,-0.232672840356827,0.942501604557037,0.236911699175835,-0.164822086691856,0.95744788646698,0.297306209802628,-0.190878018736839,0.935507714748383,0.300563216209412,-0.242200523614883,0.922496974468231,0.236911699175835,-0.164822086691856,0.95744788646698,0.230566099286079,-0.129147917032242,0.964448034763336,0.289451569318771,-0.153645500540733,0.944780766963959,0.297306209802628,-0.190878018736839,0.935507714748383,0.297306209802628,-0.190878018736839,0.935507714748383,0.289451569318771,-0.153645500540733,0.944780766963959,0.373124986886978,-0.202009201049805,0.905521988868713,0.380534142255783,-0.220748320221901,0.898033320903778,0.300563216209412,-0.242200523614883,0.922496974468231,0.297306209802628,-0.190878018736839,0.935507714748383,0.380534142255783,-0.220748320221901,0.898033320903778,0.383601158857346,-0.250067114830017,0.888997554779053,0.230566099286079,-0.129147917032242,0.964448034763336,0.22446146607399,-0.130397111177444,0.96571934223175,0.279363065958023,-0.137008920311928,0.950360298156738,0.289451569318771,-0.153645500540733,0.944780766963959,0.22446146607399,-0.130397111177444,0.96571934223175,0.236912176012993,-0.243171826004982,0.94060617685318,0.304406195878983,-0.231145277619362,0.924071848392487,0.279363065958023,-0.137008920311928,0.950360298156738,0.279363065958023,-0.137008920311928,0.950360298156738,0.304406195878983,-0.231145277619362,0.924071848392487,0.373046189546585,-0.249453872442245,0.893649399280548,0.365832269191742,-0.199143707752228,0.909125149250031,0.289451569318771,-0.153645500540733,0.944780766963959,0.279363065958023,-0.137008920311928,0.950360298156738, +0.365832269191742,-0.199143707752228,0.909125149250031,0.373124986886978,-0.202009201049805,0.905521988868713,-0.128651574254036,0.729240596294403,0.672054350376129,-0.310238599777222,0.683921277523041,0.660305917263031,-0.282006829977036,0.429831296205521,0.857739567756653,-0.11481212079525,0.451685428619385,0.88475900888443,0.277505606412888,0.692933082580566,0.665458023548126,0.0693512484431267,0.729604065418243,0.68034416437149,0.0782046020030975,0.440203160047531,0.894485950469971,0.282529473304749,0.412075579166412,0.866239428520203,-0.282006829977036,0.429831296205521,0.857739567756653,-0.182404056191444,-0.438867300748825,0.879843294620514,-0.0903512537479401,-0.411389738321304,0.906970322132111,-0.11481212079525,0.451685428619385,0.88475900888443,0.131273165345192,-0.39772629737854,0.908064544200897,0.282529473304749,0.412075579166412,0.866239428520203,0.0782046020030975,0.440203160047531,0.894485950469971,0.0229927208274603,-0.400102198123932,0.916182100772858,0.220540538430214,-0.394343793392181,0.892106950283051,0.462847888469696,0.400285243988037,0.790913164615631,0.282529473304749,0.412075579166412,0.866239428520203,0.131273165345192,-0.39772629737854,0.908064544200897,0.294801712036133,-0.388044625520706,0.873220145702362,0.623217284679413,0.403633743524551,0.669835805892944,0.462847888469696,0.400285243988037,0.790913164615631,0.220540538430214,-0.394343793392181,0.892106950283051,0.282529473304749,0.412075579166412,0.866239428520203,0.462847888469696,0.400285243988037,0.790913164615631,0.458892345428467,0.640223622322083,0.616061329841614,0.277505606412888,0.692933082580566,0.665458023548126,0.876497983932495,0.370111793279648,0.307845175266266,0.754851043224335,0.491556465625763,0.434249073266983,0.759623885154724,0.387804299592972,0.522091269493103,0.86459869146347,0.26935151219368,0.424168467521667,0.370895147323608,-0.358845561742783,0.856543481349945,0.759623885154724,0.387804299592972,0.522091269493103,0.623217284679413,0.403633743524551,0.669835805892944,0.294801712036133,-0.388044625520706,0.873220145702362, +0.359492719173431,-0.371799319982529,0.855879783630371,0.86459869146347,0.26935151219368,0.424168467521667,0.759623885154724,0.387804299592972,0.522091269493103,0.370895147323608,-0.358845561742783,0.856543481349945,0.623217284679413,0.403633743524551,0.669835805892944,0.759623885154724,0.387804299592972,0.522091269493103,0.754851043224335,0.491556465625763,0.434249073266983,0.618682980537415,0.574087142944336,0.536335110664368,0.997382342815399,0.0232578236609697,0.0684653520584106,0.965314388275146,0.196019992232323,0.172465354204178,0.943304181098938,0.128372773528099,0.306100636720657,0.981013894081116,-0.0117729753255844,0.193579733371735,0.365729153156281,-0.331634670495987,0.869632422924042,0.943304181098938,0.128372773528099,0.306100636720657,0.86459869146347,0.26935151219368,0.424168467521667,0.359492719173431,-0.371799319982529,0.855879783630371,0.375633716583252,-0.286741435527802,0.881293773651123,0.981013894081116,-0.0117729753255844,0.193579733371735,0.943304181098938,0.128372773528099,0.306100636720657,0.365729153156281,-0.331634670495987,0.869632422924042,0.86459869146347,0.26935151219368,0.424168467521667,0.943304181098938,0.128372773528099,0.306100636720657,0.965314388275146,0.196019992232323,0.172465354204178,0.876497983932495,0.370111793279648,0.307845175266266,0.94016820192337,-0.327006787061691,-0.0956574603915215,0.988169252872467,-0.152193292975426,-0.0189404767006636,0.981830060482025,-0.167551264166832,0.0890869945287704,0.940913081169128,-0.338644057512283,-0.00165489944629371,0.383601158857346,-0.250067114830017,0.888997554779053,0.981830060482025,-0.167551264166832,0.0890869945287704,0.981013894081116,-0.0117729753255844,0.193579733371735,0.375633716583252,-0.286741435527802,0.881293773651123,0.380534142255783,-0.220748320221901,0.898033320903778,0.940913081169128,-0.338644057512283,-0.00165489944629371,0.981830060482025,-0.167551264166832,0.0890869945287704,0.383601158857346,-0.250067114830017,0.888997554779053,0.981013894081116,-0.0117729753255844,0.193579733371735,0.981830060482025,-0.167551264166832,0.0890869945287704, +0.988169252872467,-0.152193292975426,-0.0189404767006636,0.997382342815399,0.0232578236609697,0.0684653520584106,0.856194317340851,-0.510900676250458,-0.0768877789378166,0.727087378501892,-0.672134101390839,-0.139926940202713,0.729136347770691,-0.654512882232666,-0.199932724237442,0.853769600391388,-0.496542721986771,-0.156597539782524,0.373124986886978,-0.202009201049805,0.905521988868713,0.856194317340851,-0.510900676250458,-0.0768877789378166,0.940913081169128,-0.338644057512283,-0.00165489944629371,0.380534142255783,-0.220748320221901,0.898033320903778,0.365832269191742,-0.199143707752228,0.909125149250031,0.727087378501892,-0.672134101390839,-0.139926940202713,0.856194317340851,-0.510900676250458,-0.0768877789378166,0.373124986886978,-0.202009201049805,0.905521988868713,0.940913081169128,-0.338644057512283,-0.00165489944629371,0.856194317340851,-0.510900676250458,-0.0768877789378166,0.853769600391388,-0.496542721986771,-0.156597539782524,0.94016820192337,-0.327006787061691,-0.0956574603915215,0.572177529335022,-0.78836715221405,-0.226031363010406,0.729136347770691,-0.654512882232666,-0.199932724237442,0.727087378501892,-0.672134101390839,-0.139926940202713,0.562346935272217,-0.80561751127243,-0.186403825879097,0.373046189546585,-0.249453872442245,0.893649399280548,0.562346935272217,-0.80561751127243,-0.186403825879097,0.727087378501892,-0.672134101390839,-0.139926940202713,0.365832269191742,-0.199143707752228,0.909125149250031,0.304406195878983,-0.231145277619362,0.924071848392487,0.401149272918701,-0.897936999797821,-0.181075692176819,0.562346935272217,-0.80561751127243,-0.186403825879097,0.373046189546585,-0.249453872442245,0.893649399280548,0.562346935272217,-0.80561751127243,-0.186403825879097,0.401149272918701,-0.897936999797821,-0.181075692176819,0.403690844774246,-0.885030686855316,-0.23184996843338,0.572177529335022,-0.78836715221405,-0.226031363010406,0.235043451189995,-0.947100698947906,-0.218528747558594,0.403690844774246,-0.885030686855316,-0.23184996843338,0.401149272918701,-0.897936999797821,-0.181075692176819, +0.240498393774033,-0.957556545734406,-0.158889651298523,0.236912176012993,-0.243171826004982,0.94060617685318,0.240498393774033,-0.957556545734406,-0.158889651298523,0.401149272918701,-0.897936999797821,-0.181075692176819,0.304406195878983,-0.231145277619362,0.924071848392487,0.114658609032631,-0.24471028149128,0.962792932987213,0.0643944293260574,-0.989104747772217,-0.132382750511169,0.240498393774033,-0.957556545734406,-0.158889651298523,0.236912176012993,-0.243171826004982,0.94060617685318,0.240498393774033,-0.957556545734406,-0.158889651298523,0.0643944293260574,-0.989104747772217,-0.132382750511169,0.0553398728370667,-0.978889048099518,-0.19675786793232,0.235043451189995,-0.947100698947906,-0.218528747558594,-0.104748412966728,-0.978583991527557,-0.177203863859177,0.0553398728370667,-0.978889048099518,-0.19675786793232,0.0643944293260574,-0.989104747772217,-0.132382750511169,-0.0985886305570602,-0.98917955160141,-0.108646079897881,-0.0669142454862595,-0.205793768167496,0.97630500793457,-0.0985886305570602,-0.98917955160141,-0.108646079897881,0.0643944293260574,-0.989104747772217,-0.132382750511169,0.114658609032631,-0.24471028149128,0.962792932987213,-0.237986877560616,-0.173030719161034,0.955731451511383,-0.242297366261482,-0.965703547000885,-0.0933192744851112,-0.0985886305570602,-0.98917955160141,-0.108646079897881,-0.0669142454862595,-0.205793768167496,0.97630500793457,-0.246732145547867,-0.95541512966156,-0.162188559770584,-0.104748412966728,-0.978583991527557,-0.177203863859177,-0.0985886305570602,-0.98917955160141,-0.108646079897881,-0.242297366261482,-0.965703547000885,-0.0933192744851112,-0.534683763980865,-0.8309525847435,-0.153724133968353,-0.384059578180313,-0.910068273544312,-0.155801400542259,-0.380317509174347,-0.920312523841858,-0.0915611013770103,-0.52061265707016,-0.847798109054565,-0.100999020040035,-0.407099634408951,-0.198706284165382,0.8915074467659,-0.380317509174347,-0.920312523841858,-0.0915611013770103,-0.242297366261482,-0.965703547000885,-0.0933192744851112,-0.237986877560616,-0.173030719161034,0.955731451511383, +-0.567092537879944,-0.228768303990364,0.791246473789215,-0.52061265707016,-0.847798109054565,-0.100999020040035,-0.380317509174347,-0.920312523841858,-0.0915611013770103,-0.407099634408951,-0.198706284165382,0.8915074467659,-0.242297366261482,-0.965703547000885,-0.0933192744851112,-0.380317509174347,-0.920312523841858,-0.0915611013770103,-0.384059578180313,-0.910068273544312,-0.155801400542259,-0.246732145547867,-0.95541512966156,-0.162188559770584,-0.85432243347168,-0.515300035476685,-0.0678168907761574,-0.716776907444,-0.685909032821655,-0.125536918640137,-0.700315713882446,-0.71111524105072,-0.0622322708368301,-0.847757458686829,-0.530034124851227,0.0192654859274626,-0.585571706295013,-0.198790028691292,0.785867929458618,-0.700315713882446,-0.71111524105072,-0.0622322708368301,-0.52061265707016,-0.847798109054565,-0.100999020040035,-0.567092537879944,-0.228768303990364,0.791246473789215,-0.568797051906586,-0.19967782497406,0.797871291637421,-0.847757458686829,-0.530034124851227,0.0192654859274626,-0.700315713882446,-0.71111524105072,-0.0622322708368301,-0.585571706295013,-0.198790028691292,0.785867929458618,-0.52061265707016,-0.847798109054565,-0.100999020040035,-0.700315713882446,-0.71111524105072,-0.0622322708368301,-0.716776907444,-0.685909032821655,-0.125536918640137,-0.534683763980865,-0.8309525847435,-0.153724133968353,-0.918535530567169,-0.384820908308029,0.0905834510922432,-0.954505980014801,-0.250996142625809,0.160994619131088,-0.971522390842438,-0.228973612189293,0.060953427106142,-0.929130494594574,-0.369726091623306,-0.00436316197738051,-0.552909731864929,-0.228045359253883,0.8014275431633,-0.918535530567169,-0.384820908308029,0.0905834510922432,-0.847757458686829,-0.530034124851227,0.0192654859274626,-0.568797051906586,-0.19967782497406,0.797871291637421,-0.536540269851685,-0.283029109239578,0.794996201992035,-0.954505980014801,-0.250996142625809,0.160994619131088,-0.918535530567169,-0.384820908308029,0.0905834510922432,-0.552909731864929,-0.228045359253883,0.8014275431633,-0.847757458686829,-0.530034124851227,0.0192654859274626, +-0.918535530567169,-0.384820908308029,0.0905834510922432,-0.929130494594574,-0.369726091623306,-0.00436316197738051,-0.85432243347168,-0.515300035476685,-0.0678168907761574,-0.955842137336731,-0.13347302377224,0.26182222366333,-0.987255454063416,-0.0893165767192841,0.13171598315239,-0.971522390842438,-0.228973612189293,0.060953427106142,-0.954505980014801,-0.250996142625809,0.160994619131088,-0.496195793151855,-0.333043038845062,0.801793038845062,-0.955842137336731,-0.13347302377224,0.26182222366333,-0.954505980014801,-0.250996142625809,0.160994619131088,-0.536540269851685,-0.283029109239578,0.794996201992035,-0.37027370929718,-0.465006291866302,0.804155766963959,-0.776377260684967,0.210155785083771,0.594199419021606,-0.847694575786591,0.124245829880238,0.515729606151581,-0.412259370088577,-0.423253208398819,0.806783199310303,-0.847694575786591,0.124245829880238,0.515729606151581,-0.776377260684967,0.210155785083771,0.594199419021606,-0.814375281333923,0.356889963150024,0.457626968622208,-0.900490939617157,0.243682205677032,0.36018767952919,-0.310238599777222,0.683921277523041,0.660305917263031,-0.542902648448944,0.568708002567291,0.617922246456146,-0.482747435569763,0.386345118284225,0.785934209823608,-0.282006829977036,0.429831296205521,0.857739567756653,-0.346330404281616,-0.460980534553528,0.817038655281067,-0.681693971157074,0.325799614191055,0.655093789100647,-0.776377260684967,0.210155785083771,0.594199419021606,-0.37027370929718,-0.465006291866302,0.804155766963959,-0.261822164058685,-0.465789586305618,0.845274686813354,-0.482747435569763,0.386345118284225,0.785934209823608,-0.681693971157074,0.325799614191055,0.655093789100647,-0.346330404281616,-0.460980534553528,0.817038655281067,-0.681693971157074,0.325799614191055,0.655093789100647,-0.482747435569763,0.386345118284225,0.785934209823608,-0.542902648448944,0.568708002567291,0.617922246456146,-0.721783638000488,0.439077705144882,0.535013377666473,-0.282006829977036,0.429831296205521,0.857739567756653,-0.482747435569763,0.386345118284225,0.785934209823608, +-0.261822164058685,-0.465789586305618,0.845274686813354,-0.182404056191444,-0.438867300748825,0.879843294620514,-0.454911768436432,-0.377364009618759,0.806629836559296,-0.919804930686951,-0.00966078788042068,0.392257064580917,-0.955842137336731,-0.13347302377224,0.26182222366333,-0.496195793151855,-0.333043038845062,0.801793038845062,0.907795608043671,-0.107259593904018,-0.40546578168869,0.907998144626617,-0.107240930199623,-0.405017018318176,0.990592479705811,-0.0885583162307739,-0.104325763881207,0.99058586359024,-0.0885631516575813,-0.104385673999786,0.4620281457901,0.493673741817474,-0.736760556697845,0.453362137079239,0.528726696968079,-0.717572867870331,0.656684815883636,0.521762132644653,-0.544544994831085,0.672519743442535,0.486121237277985,-0.558035135269165,0.993463337421417,-0.0900336280465126,0.0701745003461838,0.999643266201019,-0.0254778657108545,0.00800609681755304,0.991695463657379,-0.12180233001709,-0.0412830114364624,0.984600722789764,-0.172808200120926,0.0264338031411171,-0.919804930686951,-0.00966078788042068,0.392257064580917,-0.970040380954742,0.0697225108742714,0.232724115252495,-0.987255454063416,-0.0893165767192841,0.13171598315239,-0.955842137336731,-0.13347302377224,0.26182222366333,0.00524980621412396,-0.56268435716629,0.826655209064484,0.168256357312202,-0.562811374664307,0.809279382228851,0.195458739995956,-0.548572957515717,0.812935173511505,0.0293660964816809,-0.545553147792816,0.83756160736084 + } + NormalsW: *11977 { + 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 + } + } + LayerElementBinormal: 0 { + Version: 102 + Name: "DiffuseUV" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Binormals: *35931 { + a: -0.435546845197678,-0.826435923576355,-0.356794983148575,-0.431961983442307,-0.763501405715942,-0.480077594518661,-0.434305608272552,-0.789192080497742,-0.434228807687759,-0.382856279611588,-0.782141089439392,-0.491606026887894,-0.337825417518616,-0.912336766719818,-0.231334879994392,-0.335917979478836,-0.915172696113586,-0.222751140594482,-0.419468402862549,-0.768499791622162,-0.483171194791794,-0.382249861955643,-0.896764039993286,-0.222933426499367,-0.386958509683609,-0.888336837291718,-0.247226610779762,-0.378336191177368,-0.889832735061646,-0.255067765712738,-0.343377619981766,-0.795237123966217,-0.499689757823944,-0.378694117069244,-0.890880525112152,-0.25084400177002,-0.381808787584305,-0.775619029998779,-0.502630114555359,-0.381684899330139,-0.738266170024872,-0.556129217147827,-0.381642192602158,-0.782568335533142,-0.491869986057281,0.341345816850662,-0.630866944789886,0.696771085262299,0.342128723859787,-0.629957437515259,0.69720983505249,0.354366302490234,-0.636445701122284,0.685099601745605,0.35371270775795,-0.637361884117126,0.684585452079773,0.440655112266541,-0.501179575920105,0.7447429895401,0.445807248353958,-0.49666428565979,0.744701683521271,0.453827112913132,-0.494952261447906,0.74098801612854,0.449234992265701,-0.499942511320114,0.74043607711792,0.552346110343933,-0.416196286678314,0.722284197807312,0.585568964481354,-0.371983170509338,0.720234453678131,0.62183552980423,-0.336061894893646,0.7073774933815,0.592744410037994,-0.385590612888336,0.707088470458984,0.626835525035858,-0.392082422971725,0.673311769962311,0.617066502571106,-0.366174161434174,0.696523904800415,0.615447282791138,-0.367367625236511,0.697327494621277,0.62552684545517,-0.392851293087006,0.67408013343811,0.571598529815674,-0.503406465053558,0.647963762283325,0.624311804771423,-0.43244943022728,0.650555372238159,0.673867762088776,-0.405501931905746,0.617633044719696,0.623774945735931,-0.483584970235825,0.614044368267059,-0.503817141056061,-0.826773464679718,-0.250228106975555,-0.503837049007416,-0.829124450683594,-0.242283061146736, +-0.489196211099625,-0.738239705562592,-0.464423537254333,-0.0885846763849258,0.893189311027527,0.440869152545929,-0.155381575226784,0.88665109872818,0.435553133487701,-0.0884893760085106,0.892309010028839,0.44266739487648,-0.0212919358164072,0.89511102437973,0.445334583520889,0.00194425880908966,0.569551467895508,-0.821953356266022,0.066726915538311,0.578719019889832,-0.812792539596558,0.0223320722579956,0.597847878932953,-0.801298439502716,-0.0395916104316711,0.591976821422577,-0.80498194694519,0.0842535719275475,0.403779059648514,-0.910968720912933,0.103640601038933,0.452957063913345,-0.885487735271454,0.085504487156868,0.468093901872635,-0.879532337188721,0.0677741169929504,0.421139061450958,-0.904460430145264,0.0409573018550873,0.224735900759697,-0.97355854511261,0.115134768188,0.260071158409119,-0.958700656890869,0.110553912818432,0.266802698373795,-0.957389235496521,0.0366478152573109,0.231902465224266,-0.97204852104187,-0.0556612685322762,0.0394348576664925,-0.997670710086823,0.00952167436480522,0.110063873231411,-0.993878901004791,-0.00663767475634813,0.144605174660683,-0.989467263221741,-0.0691747069358826,0.0765238478779793,-0.994665324687958,-0.195949375629425,-0.188537001609802,-0.962318897247314,-0.105085767805576,-0.121901914477348,-0.98696357011795,-0.11556138843298,-0.0852794423699379,-0.989632844924927,-0.204945027828217,-0.149940326809883,-0.967220544815063,-0.445846796035767,-0.393906056880951,-0.803777813911438,-0.356341272592545,-0.361408770084381,-0.861629128456116,-0.361836165189743,-0.332944333553314,-0.870759904384613,-0.450820654630661,-0.365097224712372,-0.814533412456512,0.387815862894058,0.470318973064423,-0.792716145515442,0.391402900218964,0.461625933647156,-0.796056032180786,0.390538781881332,0.453971892595291,-0.80086761713028,0.388330787420273,0.462372452020645,-0.797126829624176,-0.400079756975174,-0.775907754898071,-0.487753361463547,-0.381273150444031,-0.879429936408997,-0.285015732049942,-0.386659622192383,-0.862303555011749,-0.326997071504593,-0.457519769668579,-0.594700038433075,-0.661065578460693, +-0.457473993301392,-0.596613883972168,-0.659370422363281,-0.439260244369507,-0.760498344898224,-0.478218257427216,0.449581682682037,0.0380786322057247,-0.892427325248718,0.419350951910019,0.0715612545609474,-0.904999315738678,0.420477718114853,0.0356344282627106,-0.90660285949707,0.45524525642395,0.0030144564807415,-0.89036101102829,0.633380472660065,-0.152453780174255,-0.758674621582031,0.531890869140625,-0.150063157081604,-0.833410561084747,0.543654561042786,-0.202784091234207,-0.814443707466125,0.65129679441452,-0.197527572512627,-0.732663214206696,0.895616710186005,0.0792648568749428,-0.437707662582397,0.830632090568542,0.00415751384571195,-0.556806266307831,0.856741189956665,-0.0309093333780766,-0.51481968164444,0.918279647827148,0.0432011224329472,-0.393568754196167,-0.271797150373459,-0.257906198501587,0.927152037620544,-0.322538137435913,-0.2540403008461,0.91182941198349,-0.316939264535904,-0.237066820263863,0.91834032535553,-0.263983249664307,-0.241455718874931,0.933815777301788,-0.400224268436432,-0.775854051113129,-0.487720131874084,-0.394993245601654,-0.83875983953476,-0.374783098697662,-0.39858266711235,-0.807292580604553,-0.435213476419449,-0.439405232667923,-0.760438144207001,-0.478180944919586,-0.454725682735443,-0.598352193832397,-0.659696340560913,-0.454724460840225,-0.598471462726593,-0.659588932991028,-0.132618635892868,-0.297933161258698,0.945329666137695,-0.134646132588387,-0.298706203699112,0.944798946380615,-0.195442765951157,-0.256344109773636,0.946620225906372,-0.194529682397842,-0.255875915288925,0.946934938430786,-0.0423660427331924,-0.384026288986206,0.922349691390991,-0.0283170640468597,-0.371208727359772,0.928117632865906,-0.0555664896965027,-0.31582847237587,0.947187900543213,-0.068963885307312,-0.330817997455597,0.941171288490295,0.0102499881759286,-0.475534021854401,0.879637718200684,-0.00232763588428497,-0.421498775482178,0.906826019287109,-0.0210006684064865,-0.435204863548279,0.900086522102356,-0.00907088816165924,-0.486611217260361,0.873571574687958,0.0384918712079525,-0.547438442707062,0.835960209369659, +0.0675782039761543,-0.537627398967743,0.840470135211945,0.0789358764886856,-0.491275727748871,0.867419898509979,0.0509423166513443,-0.504404306411743,0.86196357011795,-0.0884746462106705,-0.622827589511871,0.777340471744537,-0.0219418220221996,-0.620945334434509,0.783546686172485,0.0378111302852631,-0.580578207969666,0.813326120376587,-0.0276588276028633,-0.593076407909393,0.804671049118042,-0.302592873573303,-0.796242713928223,-0.523865520954132,-0.321950554847717,-0.793858230113983,-0.515884757041931,-0.348295718431473,-0.735028207302094,-0.581741988658905,-0.328529626131058,-0.735278725624084,-0.592818260192871,-0.365070343017578,-0.893039405345917,-0.263067305088043,-0.338433265686035,-0.796763360500336,-0.500630736351013,-0.362443566322327,-0.881636261940002,-0.302245676517487,-0.439953655004501,-0.760209858417511,-0.478039592504501,-0.452312380075455,-0.623261034488678,-0.637933611869812,-0.45244425535202,-0.607257604598999,-0.653094530105591,-0.408213078975677,-0.611323118209839,-0.677972078323364,-0.408315479755402,-0.608202159404755,-0.680711805820465,-0.38873702287674,-0.780048966407776,-0.49031326174736,-0.412823855876923,-0.771085858345032,-0.484771192073822,-0.404470384120941,-0.589064836502075,-0.699575841426849,-0.405240058898926,-0.595656991004944,-0.693522453308105,-0.350562781095505,-0.792974531650543,-0.498294353485107,-0.337376236915588,-0.605329275131226,-0.720939517021179,-0.337649047374725,-0.607452630996704,-0.71902322769165,-0.433580309152603,-0.762840867042542,-0.479668647050858,-0.425482571125031,-0.581367969512939,-0.693524241447449,-0.424816936254501,-0.575971245765686,-0.698418021202087,-0.392151415348053,-0.778817176818848,-0.489551961421967,-0.387073487043381,-0.614683270454407,-0.687269032001495,-0.389269232749939,-0.639385223388672,-0.663065612316132,-0.371099442243576,-0.770217061042786,-0.518701195716858,-0.370898485183716,-0.786280751228333,-0.494162976741791,-0.370305627584457,-0.729637563228607,-0.574893891811371,-0.320454329252243,-0.616659343242645,-0.71905517578125,-0.329868704080582,-0.7993483543396,-0.502223908901215, +-0.321098178625107,-0.622727811336517,-0.713516771793365,-0.584357678890228,0.807530283927917,0.0801315531134605,-0.568991899490356,0.817984104156494,0.0845596566796303,-0.5923912525177,0.793386936187744,0.140035077929497,-0.611468851566315,0.778969824314117,0.138967469334602,-0.691257238388062,0.683018565177917,-0.235900580883026,-0.723531365394592,0.651818692684174,-0.227232828736305,-0.692396521568298,0.668120920658112,-0.272399753332138,-0.655466496944427,0.70005077123642,-0.283359408378601,-0.458329141139984,0.863749861717224,0.209453016519547,-0.453371822834015,0.863500714302063,0.220953762531281,-0.474239230155945,0.837556660175323,0.271286189556122,-0.484124779701233,0.833921432495117,0.264949947595596,-0.626294136047363,0.699187874794006,-0.344807326793671,-0.656567990779877,0.677227258682251,-0.332087069749832,-0.606133937835693,0.705894947052002,-0.36648878455162,-0.580178678035736,0.722735226154327,-0.375561565160751,-0.569637656211853,0.817620992660522,0.0837192833423615,-0.559042036533356,0.821851015090942,0.109695568680763,-0.552084147930145,0.831292629241943,0.064463846385479,-0.564448535442352,0.824402689933777,0.041930329054594,-0.57339882850647,0.801442563533783,-0.170010790228844,-0.546730041503906,0.799012184143066,-0.250331521034241,-0.55810558795929,0.773108005523682,-0.301367372274399,-0.588172614574432,0.777487218379974,-0.222635895013809,-0.518074333667755,0.854249119758606,0.0430972725152969,-0.497061371803284,0.865184128284454,0.0662305057048798,-0.474067211151123,0.880454897880554,0.00770905613899231,-0.497642159461975,0.867301881313324,-0.0118223577737808,-0.232319012284279,0.905311942100525,0.355581611394882,-0.157632529735565,0.906389772891998,0.391930490732193,-0.260211944580078,0.87321150302887,0.412057489156723,-0.335363179445267,0.862269639968872,0.379503041505814,-0.451451480388641,0.873149037361145,0.183854520320892,-0.449552893638611,0.864539861679077,0.224662363529205,-0.425277054309845,0.873233377933502,0.237913578748703,-0.423022866249084,0.885707020759583,0.191245853900909, +-0.252554595470428,0.921471118927002,0.295139372348785,-0.189830094575882,0.940409421920776,0.282125353813171,-0.184065252542496,0.958215475082397,0.218959450721741,-0.251793414354324,0.938209056854248,0.237410500645638,-0.356754243373871,0.932733774185181,0.0522906854748726,-0.352132648229599,0.935345649719238,-0.0336336679756641,-0.419543564319611,0.90632551908493,-0.0505687296390533,-0.425444662570953,0.904269695281982,0.035960465669632,-0.496284067630768,0.599647581577301,-0.627793729305267,-0.489778816699982,0.619103312492371,-0.613863110542297,-0.431447088718414,0.629502892494202,-0.646203994750977,-0.436114251613617,0.610785245895386,-0.66086745262146,-0.451158046722412,0.674140393733978,-0.584800183773041,-0.432902097702026,0.714649498462677,-0.549428761005402,-0.492265611886978,0.722274541854858,-0.485792309045792,-0.509569764137268,0.68300849199295,-0.523295342922211,-0.295440256595612,0.954839587211609,0.0315682962536812,-0.297404497861862,0.94813084602356,0.112243756651878,-0.230367124080658,0.96617180109024,0.115944609045982,-0.223509579896927,0.974243402481079,0.0298908613622189,-0.165571376681328,0.983171701431274,-0.0771977007389069,-0.192044511437416,0.981384694576263,0.00172980129718781,-0.124301671981812,0.992244124412537,0.000842083245515823,-0.093922033905983,0.992282688617706,-0.080954909324646,-0.320097386837006,0.524240136146545,-0.789119780063629,-0.224260210990906,0.518038809299469,-0.825435221195221,-0.208276331424713,0.563272655010223,-0.799590528011322,-0.295387506484985,0.573355972766876,-0.764205038547516,-0.373146802186966,0.737521886825562,-0.56287032365799,-0.275695204734802,0.735076665878296,-0.619398474693298,-0.272414088249207,0.710967540740967,-0.648317635059357,-0.369132608175278,0.714956045150757,-0.593783736228943,-0.132814079523087,0.475558221340179,-0.869600474834442,-0.0512558743357658,0.470188200473785,-0.881076574325562,-0.0230174027383327,0.451777428388596,-0.891833782196045,-0.100548356771469,0.459098607301712,-0.882676959037781,-0.19929476082325,0.661117792129517,-0.723329067230225, +-0.112487211823463,0.642505168914795,-0.757980108261108,-0.0960196629166603,0.617896735668182,-0.78037416934967,-0.183411329984665,0.638297080993652,-0.74762099981308,0.0392110086977482,0.369704157114029,-0.928321897983551,0.113655783236027,0.359114319086075,-0.926347374916077,0.149870648980141,0.343740284442902,-0.927028238773346,0.0721741691231728,0.355021983385086,-0.932067811489105,-0.0398604907095432,0.552239894866943,-0.832731783390045,0.0415459722280502,0.524953365325928,-0.850116431713104,0.0711902752518654,0.500687181949615,-0.86269599199295,-0.0109033631160855,0.530225455760956,-0.847786605358124,0.188406154513359,0.252039164304733,-0.949199378490448,0.260175943374634,0.236429408192635,-0.936167538166046,0.30458652973175,0.221255153417587,-0.926430344581604,0.233673304319382,0.237826123833656,-0.942780733108521,0.304111301898956,0.174968853592873,-0.93643057346344,0.2559734582901,0.191685304045677,-0.94748842716217,0.326178193092346,0.171976342797279,-0.929533183574677,0.372262269258499,0.154581159353256,-0.915164172649384,0.102667614817619,0.432842940092087,-0.895604014396667,0.178709775209427,0.397845059633255,-0.899878978729248,0.222123354673386,0.369476169347763,-0.902301788330078,0.144689351320267,0.407287180423737,-0.901766240596771,0.42291185259819,0.0393502861261368,-0.905316054821014,0.373038619756699,0.0627564489841461,-0.92569100856781,0.432869791984558,0.03622767329216,-0.900728225708008,0.47859650850296,0.0132346898317337,-0.877935290336609,0.231218785047531,0.309479862451553,-0.922366619110107,0.299476265907288,0.266570270061493,-0.916108191013336,0.35220342874527,0.228483945131302,-0.907605528831482,0.283524394035339,0.274300456047058,-0.918897867202759,0.500092804431915,-0.100712284445763,-0.860095500946045,0.455204337835312,-0.0707975998520851,-0.88756787776947,0.502632796764374,-0.102064222097397,-0.858453929424286,0.542463421821594,-0.130220577120781,-0.829925417900085,0.33954656124115,0.183665052056313,-0.922483205795288,0.396421909332275,0.134426102042198,-0.908173680305481,0.450784027576447,0.0839816480875015,-0.888673663139343, +0.395497977733612,0.13510474562645,-0.908475697040558,0.554588913917542,-0.214937627315521,-0.80388617515564,0.499415725469589,-0.205352991819382,-0.84167343378067,0.522937595844269,-0.259900540113449,-0.81178081035614,0.579860806465149,-0.271604716777802,-0.768109500408173,0.423736929893494,0.0566136986017227,-0.904014348983765,0.465479224920273,0.00599555764347315,-0.885038495063782,0.514714062213898,-0.0562853664159775,-0.855512320995331,0.475432872772217,-0.00483040558174253,-0.879738867282867,0.572524309158325,-0.3667813539505,-0.733271718025208,0.521846532821655,-0.340142160654068,-0.782291173934937,0.535725355148315,-0.395499676465988,-0.746041774749756,0.586008727550507,-0.423118084669113,-0.691060721874237,0.478957772254944,-0.0655262470245361,-0.875388979911804,0.501257240772247,-0.126098588109016,-0.856060981750488,0.556438326835632,-0.19180965423584,-0.808446407318115,0.53432160615921,-0.126706078648567,-0.835730791091919,0.539234638214111,-0.521355628967285,-0.661373138427734,0.516205012798309,-0.466661274433136,-0.718164086341858,0.531391680240631,-0.503114998340607,-0.681541085243225,0.553332388401031,-0.558923602104187,-0.617598414421082,0.523245275020599,-0.185850650072098,-0.831669449806213,0.545129776000977,-0.247873663902283,-0.800869703292847,0.570336520671844,-0.329305589199066,-0.75251179933548,0.55358761548996,-0.27213528752327,-0.787072479724884,0.491360157728195,-0.638622879981995,-0.59222137928009,0.481402814388275,-0.568669199943542,-0.666983366012573,0.487459272146225,-0.60650509595871,-0.628120303153992,0.494946241378784,-0.677073001861572,-0.544610381126404,0.548606216907501,-0.312635898590088,-0.77542906999588,0.554195940494537,-0.362536370754242,-0.749289214611053,0.559363067150116,-0.436249762773514,-0.704839766025543,0.557027876377106,-0.393047392368317,-0.731596708297729,0.555148839950562,-0.438053101301193,-0.707049608230591,0.551048040390015,-0.363570868968964,-0.751107335090637,0.549060821533203,-0.409671992063522,-0.728492379188538,0.550491392612457,-0.484419584274292,-0.679924249649048, +0.404415190219879,-0.720862686634064,-0.562854707241058,0.384663820266724,-0.769237995147705,-0.510202646255493,0.367286115884781,-0.827542543411255,-0.424587070941925,0.388483285903931,-0.788881897926331,-0.476178795099258,0.533814013004303,-0.53958123922348,-0.651072025299072,0.546733379364014,-0.455328047275543,-0.702679932117462,0.537453055381775,-0.506851196289063,-0.673977851867676,0.518618762493134,-0.599749565124512,-0.609372675418854,0.59305739402771,-0.294054716825485,-0.749543070793152,0.585065484046936,-0.227403253316879,-0.778451263904572,0.570202052593231,-0.140152424573898,-0.809460997581482,0.582634687423706,-0.211711332201958,-0.784675180912018,0.637262940406799,-0.26056832075119,-0.725258648395538,0.642362773418427,-0.168697580695152,-0.747603714466095,0.646006107330322,-0.225816041231155,-0.729166150093079,0.637360572814941,-0.316129177808762,-0.702733099460602,0.322370797395706,-0.817625343799591,-0.477038830518723,0.290876716375351,-0.856365561485291,-0.426648259162903,0.255319058895111,-0.903234362602234,-0.344934612512589,0.287576586008072,-0.872068047523499,-0.395976096391678,0.480693399906158,-0.666613876819611,-0.569701492786407,0.524538159370422,-0.566929578781128,-0.635177671909332,0.50137859582901,-0.628551661968231,-0.594594240188599,0.450805336236954,-0.725556433200836,-0.519944608211517,0.644288778305054,-0.362648367881775,-0.673333585262299,0.667030930519104,-0.276076257228851,-0.691991209983826,0.665739774703979,-0.326101392507553,-0.671154618263245,0.639763176441193,-0.41023850440979,-0.64992892742157,0.214045986533165,-0.887032091617584,-0.409094631671906,0.17609104514122,-0.915141820907593,-0.362639546394348,0.124703481793404,-0.948507130146027,-0.2911756336689,0.16136659681797,-0.927716493606567,-0.336605191230774,0.400416851043701,-0.776991009712219,-0.485748410224915,0.474352955818176,-0.684875786304474,-0.553113520145416,0.439984977245331,-0.73572963476181,-0.514893352985382,0.36128294467926,-0.821250438690186,-0.441613405942917,0.641273975372314,-0.46514481306076,-0.610252380371094, +0.681604564189911,-0.379898577928543,-0.625373840332031,0.668040156364441,-0.437604427337646,-0.601851224899292,0.620118916034698,-0.527867794036865,-0.580351829528809,0.0805790200829506,-0.93114823102951,-0.355626255273819,0.0237032808363438,-0.954124331474304,-0.298471331596375,-0.048620730638504,-0.970893681049347,-0.234523832798004,0.00853307638317347,-0.955656349658966,-0.294360816478729,0.290824145078659,-0.858360826969147,-0.42265596985817,0.401427239179611,-0.78386002779007,-0.473729610443115,0.359918087720871,-0.832422077655792,-0.421346247196198,0.246694549918175,-0.897365570068359,-0.365892052650452,0.605379641056061,-0.591474950313568,-0.532609462738037,0.66986346244812,-0.502731800079346,-0.546391546726227,0.643374502658844,-0.561207115650177,-0.520687878131866,0.57134073972702,-0.649737596511841,-0.501408994197845,0.755480527877808,-0.208218708634377,-0.621203720569611,0.760976612567902,-0.18958193063736,-0.620462119579315,0.749903738498688,-0.248736619949341,-0.613004505634308,0.743504464626312,-0.266943663358688,-0.613141357898712,0.763971388339996,-0.329369515180588,-0.554854452610016,0.768635988235474,-0.312820285558701,-0.557980597019196,0.748213291168213,-0.369992583990097,-0.550710797309875,0.742342591285706,-0.387122601270676,-0.54686713218689,0.717657387256622,-0.206646293401718,-0.665030181407928,0.697157800197601,-0.274155855178833,-0.662427067756653,0.69779771566391,-0.219410419464111,-0.681863248348236,0.715762794017792,-0.149725437164307,-0.682104051113129,0.730862319469452,-0.449002802371979,-0.514039635658264,0.75984662771225,-0.43935039639473,-0.479170560836792,0.745325207710266,-0.502585887908936,-0.438061505556107,0.717305302619934,-0.51121574640274,-0.473425358533859,0.66695761680603,-0.0973765403032303,-0.738705277442932,0.658393323421478,-0.0258831307291985,-0.752228975296021,0.657139778137207,0.0269847996532917,-0.753285646438599,0.667548060417175,-0.0354059524834156,-0.743724405765533,0.573276281356812,-0.155071943998337,-0.804553985595703,0.555705964565277,-0.0867877826094627,-0.826836705207825, +0.519720911979675,-0.0132056344300508,-0.854234099388123,0.538825392723083,-0.0767009556293488,-0.838918447494507,0.629778444766998,0.039826326072216,-0.775753259658813,0.613780081272125,0.108054108917713,-0.782047629356384,0.602579534053802,0.147471070289612,-0.78431510925293,0.619082868099213,0.0855716541409492,-0.780649662017822,0.532009780406952,-0.0210440307855606,-0.846476674079895,0.50016188621521,0.0397412516176701,-0.865019559860229,0.462405771017075,0.104956291615963,-0.880434632301331,0.495280086994171,0.0477768331766129,-0.867418646812439,0.578386425971985,0.167689487338066,-0.798341751098633,0.552845478057861,0.232863485813141,-0.800085425376892,0.540356636047363,0.261059373617172,-0.799914240837097,0.565448760986328,0.201486080884933,-0.799794316291809,0.473397523164749,0.112364754080772,-0.873652696609497,0.427135050296783,0.174644082784653,-0.887161254882813,0.385689944028854,0.227326259016991,-0.894184589385986,0.432149767875671,0.168957412242889,-0.885832965373993,0.511934876441956,0.29402968287468,-0.807136535644531,0.474102795124054,0.36331570148468,-0.80201518535614,0.463432788848877,0.383851051330566,-0.798679232597351,0.499969333410263,0.319580137729645,-0.804921925067902,0.386568039655685,0.255657464265823,-0.886117577552795,0.326190710067749,0.314910054206848,-0.891308724880219,0.288364976644516,0.353087306022644,-0.890042185783386,0.34654513001442,0.298877120018005,-0.889145135879517,0.429893285036087,0.431498020887375,-0.793095946311951,0.382123678922653,0.497941583395004,-0.778482973575592,0.380483269691467,0.506818771362305,-0.773542046546936,0.424143344163895,0.446944504976273,-0.787618637084961,0.272855669260025,0.399221658706665,-0.875312447547913,0.199731081724167,0.452562540769577,-0.869076907634735,0.172366723418236,0.479013413190842,-0.860718309879303,0.242602288722992,0.42990055680275,-0.869672179222107,0.333355307579041,0.568776547908783,-0.751909255981445,0.272385448217392,0.633429408073425,-0.724274456501007,0.282270818948746,0.63558566570282,-0.718577861785889,0.340007841587067,0.574299097061157,-0.744698166847229, +0.136054068803787,0.53858608007431,-0.831513345241547,0.0564758777618408,0.58247321844101,-0.810885548591614,0.0445014871656895,0.602908074855804,-0.796568691730499,0.12079681456089,0.562040030956268,-0.818241536617279,0.223201394081116,0.707758903503418,-0.670267462730408,0.15787535905838,0.762859582901001,-0.626993417739868,0.185744062066078,0.76097297668457,-0.621626317501068,0.245202824473381,0.70881986618042,-0.661400079727173,-0.0153050422668457,0.665573954582214,-0.746175050735474,-0.101365506649017,0.699446260929108,-0.707460224628448,-0.0965032577514648,0.719763040542603,-0.687479734420776,-0.0128479171544313,0.68735545873642,-0.726207613945007,0.105164244771004,0.829794347286224,-0.548071026802063,0.032445389777422,0.872203171253204,-0.488066762685776,0.0752246975898743,0.870853900909424,-0.4857517182827,0.145233780145645,0.827311813831329,-0.542643904685974,-0.177317917346954,0.772872924804688,-0.609283089637756,-0.262297540903091,0.79237574338913,-0.550763726234436,-0.239415943622589,0.815137803554535,-0.527475535869598,-0.156805440783501,0.795626640319824,-0.58514130115509,-0.0170924961566925,0.922445893287659,-0.385747909545898,-0.0824252665042877,0.94712769985199,-0.31008905172348,-0.0250585824251175,0.950225055217743,-0.310555040836334,0.0359325297176838,0.923369646072388,-0.382227033376694,-0.342168658971786,0.838716268539429,-0.423645853996277,-0.4100461602211,0.844917356967926,-0.343477785587311,-0.370648056268692,0.873848438262939,-0.31465682387352,-0.304509490728378,0.867094933986664,-0.394234180450439,-0.0111958151683211,0.956457316875458,-0.291657298803329,-0.0715718641877174,0.953809440135956,-0.291762143373489,-0.141347646713257,0.969039142131805,-0.202444925904274,-0.0744123905897141,0.975210547447205,-0.208392336964607,-0.399507462978363,0.863030314445496,-0.30914831161499,-0.437128067016602,0.87078458070755,-0.225063338875771,-0.386885702610016,0.902438640594482,-0.189536318182945,-0.35110080242157,0.895482540130615,-0.273567706346512,-0.117704927921295,0.99301552772522,0.00810647290199995, +-0.177860409021378,0.983854174613953,0.0199202168732882,-0.222844615578651,0.968503713607788,0.111089065670967,-0.15714456140995,0.98315042257309,0.0933863073587418,-0.106022737920284,0.951371967792511,0.289224028587341,-0.1604083776474,0.938956737518311,0.304351001977921,-0.150767534971237,0.922616481781006,0.355032444000244,-0.0983134582638741,0.934250593185425,0.342797935009003,-0.097588375210762,0.924096465110779,0.369489312171936,-0.158475011587143,0.906442761421204,0.391468286514282,-0.117346718907356,0.905013918876648,0.408876240253448,-0.0625531375408173,0.914916515350342,0.398766696453094,-0.0682148635387421,0.90153443813324,0.427296698093414,-0.026002574712038,0.897612690925598,0.440017521381378,-0.0906017646193504,0.863429307937622,0.496267199516296,-0.13577689230442,0.859200358390808,0.493294388055801,0.020363612100482,0.902425348758698,0.430364668369293,-0.00593789760023355,0.894961357116699,0.446104258298874,-0.0247579365968704,0.898489356040955,0.438296794891357,0.000313736527459696,0.904445111751556,0.426590085029602,0.0629801675677299,0.888818323612213,0.453911274671555,0.0189729798585176,0.89399778842926,0.44766953587532,-0.0401698984205723,0.851812720298767,0.522304058074951,0.00321883289143443,0.84564220905304,0.533740520477295,0.0817791447043419,0.891470670700073,0.445637077093124,0.0630436688661575,0.888555705547333,0.454416453838348,0.0801133364439011,0.886739611625671,0.455274283885956,0.098199725151062,0.887603878974915,0.450017929077148,0.129728600382805,0.879297316074371,0.458265125751495,0.109312817454338,0.882638692855835,0.457165002822876,0.0859730690717697,0.83542811870575,0.542833745479584,0.105845481157303,0.831673324108124,0.545083701610565,0.144747823476791,0.883216142654419,0.446068793535233,0.130586564540863,0.879763245582581,0.457125663757324,0.144361689686775,0.87752777338028,0.457279831171036,0.158758714795113,0.88551390171051,0.436647444963455,-0.288523286581039,-0.8519167304039,-0.437026798725128,-0.291892558336258,-0.851114809513092,-0.436351329088211,-0.304438084363937,-0.798083305358887,-0.519981384277344, +-0.302169531583786,-0.796327888965607,-0.523980379104614,-0.381448328495026,-0.77896386384964,-0.497707217931747,-0.333024889230728,-0.840418756008148,-0.427540600299835,-0.361377686262131,-0.835243582725525,-0.414456844329834,-0.410548865795135,-0.769917249679565,-0.488545745611191,-0.28547278046608,-0.852570235729218,-0.437754780054092,-0.292387098073959,-0.851150989532471,-0.435949414968491,-0.281370013952255,-0.868348062038422,-0.408414721488953,-0.274577230215073,-0.86938738822937,-0.410819739103317,-0.424714505672455,-0.774714469909668,-0.468439131975174,-0.376727163791656,-0.83328241109848,-0.404619574546814,-0.397840738296509,-0.827233970165253,-0.396745204925537,-0.445488154888153,-0.765973567962646,-0.463491976261139,-0.333248883485794,-0.841760396957397,-0.424717128276825,-0.328339904546738,-0.84128999710083,-0.429446220397949,-0.312914669513702,-0.864665269851685,-0.392986595630646,-0.319990605115891,-0.860381126403809,-0.396674036979675,-0.420653343200684,-0.825918436050415,-0.375379294157028,-0.477539002895355,-0.812419712543488,-0.334560692310333,-0.568347811698914,-0.738602876663208,-0.362555533647537,-0.513441324234009,-0.758947730064392,-0.400470435619354,-0.377993047237396,-0.83162784576416,-0.406837284564972,-0.372025907039642,-0.834100961685181,-0.407274186611176,-0.346486628055573,-0.866123497486115,-0.360245853662491,-0.354678452014923,-0.860885143280029,-0.364801347255707,-0.459771156311035,-0.792160630226135,-0.401362746953964,-0.45489376783371,-0.819838285446167,-0.347760021686554,-0.476931840181351,-0.767715811729431,-0.427958518266678,-0.464242994785309,-0.758996665477753,-0.456511318683624,-0.410857260227203,-0.827841758728027,-0.381934940814972,-0.420653909444809,-0.825918316841125,-0.375378847122192,-0.372395277023315,-0.87206369638443,-0.317532151937485,-0.370323419570923,-0.865684568881989,-0.336824834346771,-0.59118789434433,-0.71984988451004,-0.363748759031296,-0.586114525794983,-0.727195978164673,-0.357289493083954,-0.600188910961151,-0.707114696502686,-0.373847633600235,-0.595652103424072,-0.712889552116394,-0.370117664337158, +-0.605138719081879,-0.723343193531036,-0.332538396120071,-0.604439973831177,-0.726960301399231,-0.325854301452637,-0.603147268295288,-0.725895583629608,-0.330588966608047,-0.598601281642914,-0.728934168815613,-0.332161873579025,-0.405181348323822,-0.855187773704529,-0.323236793279648,-0.388716548681259,-0.87331360578537,-0.293637603521347,-0.347116887569427,-0.90363621711731,-0.25090166926384,-0.369714021682739,-0.883456945419312,-0.287776798009872,-0.511365294456482,-0.780173182487488,-0.360326737165451,-0.505501210689545,-0.791036248207092,-0.344572693109512,-0.460428267717361,-0.830822765827179,-0.312632948160172,-0.47259509563446,-0.815966308116913,-0.332946091890335,0.669980883598328,-0.530748546123505,0.51906806230545,0.676072537899017,-0.492590367794037,0.547978818416595,0.708282291889191,-0.437521398067474,0.553995668888092,0.703570246696472,-0.478775054216385,0.52513188123703,-0.641928255558014,-0.685980618000031,-0.342576771974564,-0.654778718948364,-0.671912372112274,-0.346119344234467,-0.630608856678009,-0.699618577957153,-0.335955947637558,-0.624919414520264,-0.705134809017181,-0.335053324699402,-0.605201840400696,-0.713860034942627,-0.352327525615692,-0.603401184082031,-0.715683341026306,-0.351716458797455,-0.571393251419067,-0.7497398853302,-0.333766162395477,-0.580182015895844,-0.740805983543396,-0.338519394397736,-0.638587594032288,-0.701239347457886,-0.316969037055969,-0.664301991462708,-0.675195217132568,-0.320646792650223,-0.662526667118073,-0.676252961158752,-0.322087556123734,-0.631734848022461,-0.707506597042084,-0.316773653030396,-0.635046243667603,-0.720723807811737,-0.277981221675873,-0.667562901973724,-0.691134035587311,-0.276936143636703,-0.668071866035461,-0.690189957618713,-0.27806082367897,-0.637090265750885,-0.718555450439453,-0.278916001319885,-0.576260924339294,-0.749675154685974,-0.325438946485519,-0.609736084938049,-0.71642142534256,-0.339060992002487,-0.600085735321045,-0.725950717926025,-0.335995107889175,-0.559436857700348,-0.765172839164734,-0.318655073642731,-0.551949024200439,-0.780912220478058,-0.292452216148376, +-0.603162944316864,-0.73914897441864,-0.299755454063416,-0.605421245098114,-0.73928564786911,-0.294825166463852,-0.550231695175171,-0.783606827259064,-0.288453876972198,-0.492373764514923,-0.811137795448303,-0.315631806850433,-0.470284819602966,-0.830786943435669,-0.297700047492981,-0.395604133605957,-0.881873488426208,-0.256508588790894,-0.43053075671196,-0.857529640197754,-0.281578242778778,-0.347396165132523,-0.902691960334778,-0.253895878791809,-0.305154860019684,-0.92746376991272,-0.216082036495209,-0.246004328131676,-0.955276966094971,-0.164097458124161,-0.294979721307755,-0.932680130004883,-0.20759291946888,-0.275405824184418,-0.939299762248993,-0.204615905880928,-0.247655436396599,-0.95069420337677,-0.186674416065216,-0.160724446177483,-0.979243576526642,-0.123489677906036,-0.199539497494698,-0.968419790267944,-0.149489983916283,-0.395274817943573,-0.881868183612823,-0.257034122943878,-0.472435295581818,-0.831034064292908,-0.293576687574387,-0.465450793504715,-0.837648928165436,-0.285832226276398,-0.378732621669769,-0.892247915267944,-0.245876803994179,-0.187312915921211,-0.966159880161285,-0.177338883280754,-0.129781529307365,-0.979198515415192,-0.155971229076385,-0.0395639128983021,-0.993701756000519,-0.104841031134129,-0.090630330145359,-0.988181233406067,-0.123628690838814,-0.358527004718781,-0.903188705444336,-0.236026704311371,-0.459952145814896,-0.845990121364594,-0.269712209701538,-0.426444828510284,-0.867218494415283,-0.257054388523102,-0.312306612730026,-0.924396872520447,-0.218986421823502,-0.552964806556702,-0.789645373821259,-0.265876293182373,-0.611701130867004,-0.74528843164444,-0.265267938375473,-0.593895375728607,-0.761458396911621,-0.259748965501785,-0.52863347530365,-0.807964265346527,-0.260270237922668,-0.642558872699738,-0.722550570964813,-0.255027234554291,-0.671905636787415,-0.699810206890106,-0.242504805326462,-0.634799599647522,-0.735130906105042,-0.237933039665222,-0.627126276493073,-0.738532304763794,-0.247553408145905,-0.343970507383347,-0.913188815116882,-0.218564823269844,-0.290499269962311,-0.932199656963348,-0.215902701020241, +-0.148204028606415,-0.969036757946014,-0.197492748498917,-0.206964001059532,-0.95712149143219,-0.202692985534668,-0.497059464454651,-0.83768093585968,-0.226324081420898,-0.569342195987701,-0.792971432209015,-0.216900750994682,-0.543638527393341,-0.810813307762146,-0.216885060071945,-0.463075816631317,-0.856913447380066,-0.226406961679459,-0.0733324885368347,-0.983843445777893,-0.163323119282722,-0.0157158300280571,-0.989455282688141,-0.143983870744705,0.0815783813595772,-0.99058073759079,-0.109976693987846,0.0243494734168053,-0.991204380989075,-0.130081295967102,-0.605623841285706,-0.756424248218536,-0.247066929936409,-0.615717530250549,-0.760590076446533,-0.205900073051453,-0.589881241321564,-0.788955450057983,-0.17201566696167,-0.584232449531555,-0.783216655254364,-0.212706446647644,0.0611372068524361,-0.984069108963013,-0.166944354772568,0.129178240895271,-0.979625284671783,-0.153776749968529,0.224680736660957,-0.965236306190491,-0.133557304739952,0.161920666694641,-0.975808560848236,-0.146899744868279,-0.147590950131416,-0.968357682228088,-0.201247215270996,-0.290942937135696,-0.933490514755249,-0.209636896848679,-0.223811894655228,-0.951193869113922,-0.212457880377769,-0.0772246122360229,-0.976482570171356,-0.201291307806969,0.229607313871384,-0.959496438503265,-0.163239613175392,0.131504312157631,-0.975426316261292,-0.17677740752697,0.199771568179131,-0.965371429920197,-0.167777433991432,0.291078239679337,-0.944236040115356,-0.153921261429787,-0.417942225933075,-0.885757207870483,-0.20188707113266,-0.506233692169189,-0.842934906482697,-0.182176351547241,-0.45667439699173,-0.868604898452759,-0.192286640405655,-0.358003377914429,-0.909333884716034,-0.212003484368324,-0.551871836185455,-0.817074477672577,-0.166814222931862,-0.561248302459717,-0.810218453407288,-0.168956816196442,-0.529210031032562,-0.828047037124634,-0.18513460457325,-0.514581024646759,-0.837372541427612,-0.184427529573441,-0.419806361198425,-0.894910514354706,-0.151320546865463,-0.366411775350571,-0.913332760334015,-0.177667379379272,-0.349374681711197,-0.918475329875946,-0.185311928391457, +-0.403428554534912,-0.901084065437317,-0.159037470817566,-0.00569808157160878,-0.976336658000946,-0.216181024909019,-0.152422204613686,-0.965855598449707,-0.209500402212143,-0.0790481492877007,-0.971573770046234,-0.223149627447128,0.066170409321785,-0.971737682819366,-0.226599887013435,0.35638952255249,-0.912902414798737,-0.198986440896988,0.269165277481079,-0.938083231449127,-0.218059375882149,0.344740360975266,-0.909975111484528,-0.230432942509651,0.42670214176178,-0.879677593708038,-0.209982559084892,-0.325569808483124,-0.932143807411194,-0.158468440175056,-0.260415524244308,-0.948223471641541,-0.181813225150108,-0.143631830811501,-0.96374922990799,-0.224849596619606,-0.21615606546402,-0.955227434635162,-0.202032774686813,-0.271356493234634,-0.953869819641113,-0.128445401787758,-0.221510499715805,-0.959698021411896,-0.172953516244888,-0.199413016438484,-0.963804483413696,-0.176962032914162,-0.250986397266388,-0.959018528461456,-0.131488740444183,0.138891577720642,-0.957096934318542,-0.254312336444855,-0.000576987862586975,-0.973061144351959,-0.230546608567238,0.0807041972875595,-0.964879870414734,-0.249987348914146,0.218147486448288,-0.937861621379852,-0.2698655128479,0.49636971950531,-0.826324820518494,-0.266091048717499,0.419038027524948,-0.863737165927887,-0.279938191175461,0.491570919752121,-0.81799727678299,-0.298728197813034,0.562483191490173,-0.776895701885223,-0.282923877239227,-0.161368280649185,-0.97659170627594,-0.142228648066521,-0.0851860791444778,-0.982121407985687,-0.167871534824371,0.0290069505572319,-0.971407771110535,-0.235638573765755,-0.0526372566819191,-0.976236462593079,-0.210218131542206,-0.126735225319862,-0.977529525756836,-0.168446823954582,-0.0425421744585037,-0.978582262992859,-0.201412335038185,-0.0491130575537682,-0.970743775367737,-0.235041797161102,-0.130389958620071,-0.970191836357117,-0.20427006483078,-0.0147804170846939,-0.977645993232727,-0.209737718105316,0.0529823377728462,-0.963008284568787,-0.264211863279343,0.170783311128616,-0.928268551826477,-0.330379605293274,0.10235358029604,-0.954890370368958,-0.278762012720108, +0.543413400650024,-0.707947373390198,-0.451123595237732,0.6288121342659,-0.626257598400116,-0.460865318775177,0.585299491882324,-0.685102462768555,-0.433657765388489,0.493184268474579,-0.762314260005951,-0.419101864099503,0.294510543346405,-0.904743134975433,-0.30773913860321,0.162532940506935,-0.946987986564636,-0.277122557163239,0.240931421518326,-0.920062899589539,-0.308927804231644,0.369319289922714,-0.866817831993103,-0.335007578134537,0.705904185771942,-0.580213129520416,-0.4062659740448,0.724177896976471,-0.567778646945953,-0.39139986038208,0.681416213512421,-0.630198895931244,-0.372184664011002,0.662476301193237,-0.641352891921997,-0.387029320001602,-0.92547482252121,0.345766961574554,-0.154730558395386,-0.918090045452118,0.357869684696198,-0.170411705970764,-0.912924706935883,0.355408042669296,-0.200632989406586,-0.920710563659668,0.343225985765457,-0.185709789395332,0.934792459011078,-0.145741432905197,-0.32391744852066,0.929663836956024,-0.115789167582989,-0.34973993897438,0.922748804092407,-0.086277037858963,-0.375620752573013,0.929326295852661,-0.116470344364643,-0.350410163402557,0.941356420516968,-0.151735097169876,-0.301371425390244,0.938447952270508,-0.172670602798462,-0.299166053533554,0.939647972583771,-0.184990763664246,-0.287819564342499,0.942443490028381,-0.164804041385651,-0.290929555892944,0.929542124271393,-0.367974609136581,-0.0233708322048187,0.928611636161804,-0.370680510997772,-0.016627311706543,0.924949765205383,-0.378418803215027,-0.0355977267026901,0.925902009010315,-0.375438272953033,-0.0418515801429749,0.875819683074951,-0.468254268169403,0.11695308983326,0.87439489364624,-0.470426261425018,0.118882074952126,0.874398767948151,-0.471948683261871,0.112656190991402,0.875123858451843,-0.471527636051178,0.108719572424889,0.772093415260315,-0.607604324817657,0.186249390244484,0.767922222614288,-0.612944006919861,0.185998231172562,0.783310294151306,-0.582209885120392,0.217845976352692,0.786694526672363,-0.57751852273941,0.218138337135315,0.614338040351868,-0.755893349647522,0.226304993033409, +0.614346146583557,-0.755915760993958,0.226208731532097,0.625772178173065,-0.73692387342453,0.255641162395477,0.625836730003357,-0.736275434494019,0.257345825433731,0.465429276227951,-0.814543187618256,0.346258789300919,0.468912214040756,-0.812887251377106,0.345450073480606,0.458713829517365,-0.826170921325684,0.327144294977188,0.455268025398254,-0.827410459518433,0.328820705413818,0.306456625461578,-0.829787909984589,0.466408133506775,0.302089303731918,-0.830300509929657,0.468340694904327,0.30172723531723,-0.840694427490234,0.449659377336502,0.305828750133514,-0.840494453907013,0.447256147861481,0.228465735912323,-0.830446004867554,0.508097350597382,0.21734893321991,-0.840028047561646,0.497104108333588,0.20938166975975,-0.84074729681015,0.49930277466774,0.220642149448395,-0.831059038639069,0.510546863079071,0.0258328914642334,-0.816037118434906,0.577421963214874,0.0254654698073864,-0.823680400848389,0.566482365131378,0.0236987620592117,-0.823263466358185,0.567164599895477,0.0241379849612713,-0.815555393695831,0.57817530632019,-0.165081635117531,-0.76900589466095,0.617558181285858,-0.164253354072571,-0.779104769229889,0.604993104934692,-0.167422205209732,-0.777989327907562,0.605559587478638,-0.168171912431717,-0.767854392528534,0.618156790733337,-0.34950852394104,-0.677559554576874,0.647114217281342,-0.34908452630043,-0.696990251541138,0.626374185085297,-0.353572458028793,-0.694830894470215,0.626255989074707,-0.353747308254242,-0.675503790378571,0.646960318088531,-0.530588865280151,-0.58063668012619,0.61752450466156,-0.525680601596832,-0.580599665641785,0.621742784976959,-0.529979825019836,-0.577968955039978,0.620542824268341,-0.534954428672791,-0.578380584716797,0.615873038768768,-0.697332918643951,-0.47761458158493,0.534426033496857,-0.695425391197205,-0.476007640361786,0.538331031799316,-0.696829438209534,-0.475047677755356,0.537362575531006,-0.698680758476257,-0.476398974657059,0.533750236034393,-0.842873215675354,-0.303261905908585,0.444518804550171,-0.844020545482635,-0.316034853458405,0.433302730321884,-0.845216989517212,-0.313914477825165,0.432511240243912, +-0.843929290771484,-0.300848871469498,0.444154500961304,-0.941041231155396,-0.134197279810905,0.310536086559296,-0.935955166816711,-0.136403292417526,0.324626058340073,-0.939653158187866,-0.127922102808952,0.317313522100449,-0.944956421852112,-0.127425894141197,0.301363676786423,-0.990233421325684,0.00596995651721954,0.139292016625404,-0.988024830818176,0.0142617747187614,0.153634577989578,-0.988691508769989,0.0150689873844385,0.149205103516579,-0.990697264671326,0.00761605054140091,0.135870948433876,-0.987740218639374,0.15574038028717,-0.0106881782412529,-0.989007413387299,0.147860243916512,-0.00136478256899863,-0.987640202045441,0.156421825289726,-0.00996055547147989,-0.98620080947876,0.16444793343544,-0.0191007703542709,-0.875328660011292,0.452848017215729,-0.169495090842247,-0.818694114685059,0.51906555891037,-0.24558287858963,-0.756725668907166,0.561544120311737,-0.33471554517746,-0.823392271995544,0.502806007862091,-0.263080507516861,-0.632048189640045,0.35273277759552,-0.689996182918549,-0.636282324790955,0.347730666399002,-0.688642382621765,-0.638834893703461,0.344843685626984,-0.687730252742767,-0.632119476795197,0.352817475795746,-0.689887583255768,-0.673501670360565,-0.575487077236176,0.463907539844513,-0.621464610099792,-0.610391438007355,0.491125285625458,-0.595791518688202,-0.625453352928162,0.503826141357422,-0.667413175106049,-0.578050851821899,0.46948578953743,-0.913481831550598,-0.321283131837845,0.249655961990356,-0.95118260383606,-0.239040896296501,0.19522051513195,-0.955874681472778,-0.221660807728767,0.19279557466507,-0.92649257183075,-0.292965561151505,0.236183911561966,-0.508755087852478,-0.753180861473083,0.416997373104095,-0.4123714864254,-0.777116239070892,0.475436866283417,-0.413834929466248,-0.75305438041687,0.511517226696014,-0.503291487693787,-0.733377873897552,0.457006186246872,-0.990279197692871,0.020507637411356,0.1375742405653,-0.977519035339355,-0.0745476707816124,0.197229146957397,-0.977011322975159,-0.0816339254379272,0.196938842535019,-0.990380764007568,0.0152068920433521,0.137530907988548, +-0.663642764091492,-0.679645717144012,0.312506020069122,-0.601696252822876,-0.723106265068054,0.339232951402664,-0.580206394195557,-0.736546576023102,0.347649067640305,-0.658759474754333,-0.702935755252838,0.268174052238464,-0.7121861577034,-0.63718569278717,0.294593393802643,-0.581996977329254,-0.765546798706055,0.274258553981781,-0.535172939300537,-0.806086301803589,0.252615988254547,-0.304532527923584,-0.870139300823212,0.387449979782104,-0.307254701852798,-0.859555602073669,0.4083611369133,-0.407067120075226,-0.833464086055756,0.373676240444183,-0.386231154203415,-0.850476324558258,0.357093453407288,-0.426330924034119,-0.807508885860443,0.407641381025314,-0.441673696041107,-0.794161558151245,0.417410880327225,-0.523404240608215,-0.754362106323242,0.396214455366135,-0.508639097213745,-0.768715679645538,0.387766242027283,-0.268938183784485,-0.856837511062622,0.439888417720795,-0.296864807605743,-0.841958343982697,0.450530022382736,-0.377307534217834,-0.816733837127686,0.436560451984406,-0.353217422962189,-0.832006275653839,0.427788376808167,-0.100321806967258,-0.91727203130722,0.385418742895126,-0.0853411629796028,-0.928400576114655,0.361648112535477,-0.199705392122269,-0.903269290924072,0.379766285419464,-0.203206479549408,-0.890985369682312,0.406020164489746,-0.166697293519974,-0.874823331832886,0.454858332872391,-0.0620137080550194,-0.888795375823975,0.454089283943176,-0.088972732424736,-0.880463838577271,0.465690225362778,-0.195423185825348,-0.863974571228027,0.464066386222839,0.0422337912023067,-0.889459252357483,0.455059081315994,0.145942062139511,-0.885272443294525,0.441580891609192,0.124832935631275,-0.882512092590332,0.453419357538223,0.0168326608836651,-0.884876132011414,0.465522319078445,0.121983662247658,-0.891905188560486,0.435459673404694,0.141587480902672,-0.891818761825562,0.429665595293045,0.0270593836903572,-0.898397624492645,0.438348650932312,0.0136078651994467,-0.895669460296631,0.444512069225311,0.373342394828796,-0.839067459106445,0.395703732967377,0.365431427955627,-0.838762402534485,0.403655409812927, +0.245673850178719,-0.865900814533234,0.435729384422302,0.26155036687851,-0.865625739097595,0.426946699619293,0.365790367126465,-0.837506175041199,0.405932009220123,0.382605314254761,-0.843059360980988,0.377973765134811,0.262939512729645,-0.868621706962585,0.419951289892197,0.247615307569504,-0.859059631824493,0.447999149560928,0.559426724910736,-0.75825309753418,0.33480441570282,0.562406361103058,-0.755077540874481,0.336982429027557,0.467234820127487,-0.800291001796722,0.375800430774689,0.468432396650314,-0.801325261592865,0.372087329626083,0.573634266853333,-0.694042563438416,0.435027211904526,0.570860743522644,-0.67233669757843,0.471255242824554,0.481875419616699,-0.746764242649078,0.458409547805786,0.47381454706192,-0.772218585014343,0.423294723033905,0.739973068237305,-0.628298699855804,0.240167856216431,0.742347538471222,-0.625443816184998,0.240291893482208,0.659308254718781,-0.693040013313293,0.291561722755432,0.655584990978241,-0.696278691291809,0.292240381240845,0.749804079532623,-0.586779594421387,0.305750697851181,0.749171376228333,-0.598876953125,0.282999604940414,0.668491244316101,-0.661425828933716,0.340052127838135,0.667672514915466,-0.649449288845062,0.363908141851425,0.860971450805664,-0.488128364086151,0.143034964799881,0.859932899475098,-0.489563763141632,0.144370511174202,0.806593775749207,-0.558757483959198,0.192864596843719,0.807051241397858,-0.5582435131073,0.192438781261444,0.868990778923035,-0.40417218208313,0.285481780767441,0.856982707977295,-0.401511043310165,0.323062837123871,0.808274388313293,-0.491162717342377,0.32473349571228,0.815625727176666,-0.500626683235168,0.290047407150269,0.941184341907501,-0.335413545370102,0.0408631637692451,0.941904067993164,-0.333646416664124,0.0386901907622814,0.906501650810242,-0.412442266941071,0.0902566835284233,0.906582117080688,-0.412066727876663,0.0911597833037376,0.950794160366058,-0.275615841150284,0.141515150666237,0.946222305297852,-0.281837671995163,0.158842444419861,0.90968918800354,-0.359245598316193,0.208346650004387,0.91536808013916,-0.35439744591713,0.191059201955795, +0.980599403381348,-0.187785893678665,-0.0562260672450066,0.981001496315002,-0.18433466553688,-0.0604724511504173,0.965378642082214,-0.260530948638916,-0.0129494648426771,0.964725136756897,-0.263100028038025,-0.00914875976741314,0.990432739257813,-0.0974795743823051,0.0976769626140594,0.9881591796875,-0.121181137859821,0.0941104143857956,0.97161066532135,-0.205996990203857,0.116352885961533,0.975101053714752,-0.185443475842476,0.121608421206474,0.609794318675995,-0.756584525108337,-0.236074149608612,0.620187640190125,-0.755457639694214,-0.211307927966118,0.60255765914917,-0.784501612186432,-0.146566361188889,0.589054524898529,-0.790245771408081,-0.168897673487663,0.986831784248352,-0.0225189942866564,-0.160174697637558,0.987061321735382,-0.124439649283886,-0.101117640733719,0.986603856086731,-0.127518564462662,-0.101744554936886,0.986757516860962,-0.0280286930501461,-0.159762755036354,0.361602216959,-0.825680255889893,0.433007895946503,0.43201208114624,-0.808950006961823,0.398704797029495,0.446284174919128,-0.799904048442841,0.401228278875351,0.374686777591705,-0.817951738834381,0.436537325382233,0.380290687084198,-0.795884668827057,0.471112161874771,0.44091922044754,-0.819170296192169,0.366810888051987,0.518617153167725,-0.738039612770081,0.431664019823074,0.420150697231293,-0.725673675537109,0.544858753681183,-0.390287518501282,0.617863357067108,-0.682583749294281,-0.422277331352234,0.582811057567596,-0.694271683692932,-0.385281354188919,0.620004117488861,-0.683486044406891,-0.368045151233673,0.647809028625488,-0.666997909545898,-0.654685795307159,0.331217050552368,-0.679471731185913,-0.640964925289154,0.347403943538666,-0.684451937675476,-0.638202130794525,0.350029945373535,-0.685694694519043,-0.651420414447784,0.334419667720795,-0.681039571762085,-0.747492671012878,0.375701248645782,-0.54781699180603,-0.747007191181183,0.367509663105011,-0.554000854492188,-0.732983946800232,0.394019514322281,-0.554511725902557,-0.733020901679993,0.402471244335175,-0.548358678817749,-0.807435393333435,0.425138145685196,-0.409030109643936, +-0.798677980899811,0.451167583465576,-0.398197799921036,-0.80031955242157,0.4634108543396,-0.380446046590805,-0.808612704277039,0.438711643218994,-0.392017602920532,-0.867134690284729,0.475036084651947,-0.149727433919907,-0.836598753929138,0.521883010864258,-0.166555270552635,-0.834328174591064,0.527310311794281,-0.160750135779381,-0.866231083869934,0.478613257408142,-0.143433049321175,-0.892355561256409,0.450475424528122,0.0278137624263763,-0.894173145294189,0.447189450263977,0.0218234565109015,-0.872947812080383,0.487758696079254,0.00733375642448664,-0.871279418468475,0.490596532821655,0.0136879533529282,-0.864318132400513,0.457254648208618,0.209457069635391,-0.867576599121094,0.453843772411346,0.203314363956451,-0.854966163635254,0.480233728885651,0.195980682969093,-0.851745545864105,0.483342438936234,0.202261507511139,-0.827431976795197,0.463313519954681,0.317327946424484,-0.832089424133301,0.459101736545563,0.311212062835693,-0.822795510292053,0.477616846561432,0.308042138814926,-0.818296432495117,0.481092572212219,0.314548641443253,-0.846044600009918,0.409856259822845,0.340920209884644,-0.846048712730408,0.40889847278595,0.342058330774307,-0.83996844291687,0.435548365116119,0.323651939630508,-0.839834332466125,0.436826229095459,0.32227498292923,-0.479249507188797,0.445632666349411,-0.756129324436188,-0.481815129518509,0.471234947443008,-0.738777220249176,-0.568930864334106,0.509990215301514,-0.645157217979431,-0.544764578342438,0.479731231927872,-0.687815070152283,-0.920717477798462,0.263927936553955,0.287439256906509,-0.924413323402405,0.257756918668747,0.281107693910599,-0.917742431163788,0.293204367160797,0.267918258905411,-0.913978219032288,0.298762232065201,0.27456346154213,-0.958203911781311,0.145475596189499,0.246337369084358,-0.96320378780365,0.134471401572227,0.232714340090752,-0.957975506782532,0.175641283392906,0.226788863539696,-0.952625155448914,0.186456918716431,0.240289986133575,-0.956979513168335,0.0863507837057114,0.277008771896362,-0.95426869392395,0.0870073363184929,0.286009073257446,-0.958652377128601,0.111705452203751,0.261739253997803, +-0.961167097091675,0.109899386763573,0.25314012169838,-0.956421971321106,0.00472137378528714,0.291950047016144,-0.957396566867828,-0.000532239675521851,0.288775861263275,-0.961065828800201,0.0365825407207012,0.273887544870377,-0.960078358650208,0.0432258248329163,0.276371419429779,-0.940498888492584,-0.0658543556928635,0.333354324102402,-0.930187821388245,-0.0507726892828941,0.363555818796158,-0.94817590713501,-0.0332485102117062,0.316001892089844,-0.957170605659485,-0.0483575984835625,0.285457581281662,-0.336286276578903,-0.748550593852997,0.571474969387054,-0.421761065721512,-0.59086287021637,0.687749028205872,-0.537064731121063,-0.689666390419006,0.48571789264679,-0.45354813337326,-0.818470120429993,0.352705121040344,-0.905919015407562,-0.0964029580354691,0.412331312894821,-0.913062572479248,-0.0662589892745018,0.402401179075241,-0.914436042308807,-0.0678464248776436,0.399003148078918,-0.906727850437164,-0.0997676402330399,0.409745335578918,-0.897405683994293,-0.185056120157242,0.400521159172058,-0.909351348876953,-0.147421836853027,0.389033377170563,-0.909711539745331,-0.150958210229874,0.386828899383545,-0.897932171821594,-0.187965884804726,0.397978246212006,-0.848130881786346,-0.180739894509315,0.498003304004669,-0.863505125045776,-0.140206202864647,0.484459698200226,-0.863423585891724,-0.142150744795799,0.484038293361664,-0.848375380039215,-0.181757360696793,0.497215807437897,-0.747665703296661,-0.220223724842072,0.626496195793152,-0.74538779258728,-0.216776251792908,0.630400836467743,-0.758321046829224,-0.180671662092209,0.626344203948975,-0.76070761680603,-0.184014543890953,0.622464835643768,-0.723142445087433,-0.252045065164566,0.643069505691528,-0.742752850055695,-0.214713603258133,0.634205281734467,-0.740925848484039,-0.214956521987915,0.636256694793701,-0.720593392848969,-0.253742396831512,0.645259618759155,-0.655190348625183,-0.274397671222687,0.703869044780731,-0.67489355802536,-0.260721832513809,0.69032084941864,-0.663289666175842,-0.258288502693176,0.702377378940582,-0.64310085773468,-0.272785872220993,0.7155482172966, +0.411102294921875,-0.852898716926575,0.321805417537689,0.490570366382599,-0.824761271476746,0.281264096498489,0.44678795337677,-0.84134316444397,0.304174900054932,0.601075351238251,-0.764635562896729,-0.232467204332352,0.561428427696228,-0.776436507701874,-0.286259800195694,0.5483278632164,-0.745912730693817,-0.378088474273682,0.589946925640106,-0.736227691173553,-0.331558972597122,0.853094458580017,0.483883261680603,-0.195158630609512,0.845802068710327,0.497623026371002,-0.192328661680222,0.839604437351227,0.505836248397827,-0.197975397109985,0.847066342830658,0.492027819156647,-0.200966149568558,-0.428060710430145,0.807165324687958,-0.406507313251495,-0.441716372966766,0.771686434745789,-0.457588195800781,-0.490364074707031,0.784784495830536,-0.379020392894745,-0.473024517297745,0.818354070186615,-0.326411545276642,0.395282983779907,-0.874524474143982,0.280995577573776,0.398542106151581,-0.873476564884186,0.279648214578629,0.330244243144989,-0.891266107559204,0.310779064893723,0.31844362616539,-0.89381355047226,0.31573885679245,0.224159777164459,-0.889963269233704,0.397136956453323,0.240966975688934,-0.885241568088531,0.397847235202789,0.144947782158852,-0.889704823493958,0.432914972305298,0.127111867070198,-0.893032550811768,0.431665867567062,-0.986836612224579,0.0225042626261711,0.160147398710251,-0.985892295837402,0.0307816490530968,0.164526402950287,-0.97220641374588,-0.0655158087611198,0.224771797657013,-0.972670435905457,-0.0736234784126282,0.220208764076233,0.0301302261650562,-0.882237255573273,0.469839990139008,0.0483704619109631,-0.877762258052826,0.476648598909378,-0.0469724982976913,-0.862222015857697,0.504347920417786,-0.0646382048726082,-0.865788757801056,0.496217548847198,-0.599409461021423,-0.652827501296997,0.463167905807495,-0.621734201908112,-0.613625943660736,0.486733883619308,-0.569296181201935,-0.671425044536591,0.47443675994873,-0.559622883796692,-0.700253903865814,0.44324579834938,0.1635602414608,-0.841288447380066,0.515249371528625,0.261101484298706,-0.835143446922302,0.484108865261078,0.278770983219147,-0.828982055187225,0.484845817089081, +0.18281415104866,-0.836130738258362,0.517169654369354,-0.151938170194626,-0.834422826766968,0.529767453670502,-0.140332132577896,-0.83480978012085,0.53235274553299,-0.239416778087616,-0.805367827415466,0.542275249958038,-0.245599389076233,-0.805808007717133,0.538845539093018,0.202689930796623,-0.756603300571442,0.62166565656662,0.300651013851166,-0.723156869411469,0.621814429759979,0.326706051826477,-0.738531351089478,0.589775145053864,0.226386547088623,-0.77322381734848,0.592346370220184,-0.0326018035411835,-0.82178658246994,0.568862080574036,0.0647550746798515,-0.832419216632843,0.55034989118576,0.0827797204256058,-0.830574214458466,0.550721347332001,-0.0175972152501345,-0.820746123790741,0.571022212505341,-0.344722807407379,-0.763578772544861,0.54599803686142,-0.338827103376389,-0.764230191707611,0.548770070075989,-0.436354994773865,-0.716644465923309,0.544072687625885,-0.445492088794708,-0.713817358016968,0.540371835231781,-0.0153336469084024,-0.813905239105225,0.580795407295227,0.0756162032485008,-0.852576673030853,0.517102837562561,0.106251552700996,-0.826367139816284,0.553017199039459,0.00704214628785849,-0.784064173698425,0.620639801025391,-0.22770519554615,-0.772278606891632,0.593073487281799,-0.127821028232574,-0.799287140369415,0.587198317050934,-0.1202222853899,-0.800180971622467,0.587585806846619,-0.224023833870888,-0.772401690483093,0.594313979148865,-0.533544421195984,-0.658132016658783,0.531218111515045,-0.522333323955536,-0.665760040283203,0.532852292060852,-0.597561120986938,-0.613350450992584,0.516451358795166,-0.609098434448242,-0.604524672031403,0.513370335102081,-0.207137033343315,-0.723758041858673,0.658231377601624,-0.0971497669816017,-0.730295717716217,0.676187992095947,-0.103385008871555,-0.754077434539795,0.648597598075867,-0.217134073376656,-0.747011959552765,0.628351747989655,-0.426543831825256,-0.689615786075592,0.585226953029633,-0.328408092260361,-0.734995543956757,0.59323662519455,-0.323104500770569,-0.738076865673065,0.592322647571564,-0.41678187251091,-0.69531774520874,0.585513532161713, +-0.733274638652802,-0.494289696216583,0.466889828443527,-0.740644812583923,-0.484471768140793,0.465545296669006,-0.676062941551208,-0.547005474567413,0.493684023618698,-0.667196273803711,-0.557073175907135,0.49448835849762,-0.407467037439346,-0.670934557914734,0.619530141353607,-0.30576029419899,-0.690348207950592,0.655690431594849,-0.309211641550064,-0.715200960636139,0.626798093318939,-0.405116468667984,-0.69804173707962,0.590439140796661,-0.588805615901947,-0.590571463108063,0.551845371723175,-0.51345682144165,-0.641964614391327,0.569423913955688,-0.5012246966362,-0.651927828788757,0.569002628326416,-0.576457381248474,-0.601864516735077,0.552680730819702,-0.855348229408264,-0.34060063958168,0.390346884727478,-0.802169501781464,-0.41180545091629,0.432366281747818,-0.795178592205048,-0.426660656929016,0.430873155593872,-0.848364531993866,-0.357270479202271,0.39068603515625,-0.578761100769043,-0.607465445995331,0.544078409671783,-0.499767035245895,-0.648244142532349,0.574467122554779,-0.491674214601517,-0.666532218456268,0.560349404811859,-0.570527851581573,-0.6263507604599,0.531208693981171,-0.725814998149872,-0.475267261266708,0.497306555509567,-0.65964537858963,-0.537698090076447,0.525117933750153,-0.649690628051758,-0.550378739833832,0.524390459060669,-0.717192769050598,-0.487959742546082,0.497523665428162,-0.897027015686035,-0.276825726032257,0.344543218612671,-0.89284884929657,-0.289785474538803,0.344739705324173,-0.928166627883911,-0.218039005994797,0.301605075597763,-0.929198145866394,-0.210449993610382,0.303811848163605,-0.725270211696625,-0.506834030151367,0.46594250202179,-0.656858026981354,-0.567639827728271,0.496308982372284,-0.648841321468353,-0.584514260292053,0.487183749675751,-0.71999204158783,-0.521348893642426,0.458046793937683,-0.841308355331421,-0.338839799165726,0.421174585819244,-0.788583159446716,-0.409596562385559,0.45865797996521,-0.78058123588562,-0.425531476736069,0.457838416099548,-0.834006309509277,-0.355767607688904,0.421737909317017,-0.957633554935455,-0.141369864344597,0.250903695821762, +-0.958333432674408,-0.14622388780117,0.245388999581337,-0.976616978645325,-0.0801713019609451,0.199479311704636,-0.976651787757874,-0.0712563320994377,0.202666878700256,-0.848158061504364,-0.391473412513733,0.356898337602615,-0.799712121486664,-0.475692898035049,0.366301447153091,-0.795979738235474,-0.471261411905289,0.379906326532364,-0.845004618167877,-0.38551652431488,0.370600134134293,-0.921921193599701,-0.200502932071686,0.331451117992401,-0.886462569236755,-0.272365361452103,0.374167591333389,-0.882807672023773,-0.286728292703629,0.372072041034698,-0.92126739025116,-0.209712564945221,0.327547162771225,-0.926500201225281,-0.297494202852249,0.230422705411911,-0.889404058456421,-0.363322407007217,0.277411997318268,-0.883713245391846,-0.374471843242645,0.28075248003006,-0.91344428062439,-0.324396729469299,0.24573627114296,-0.934496343135834,-0.247802823781967,0.255559235811234,-0.899270236492157,-0.334419339895248,0.281916588544846,-0.9013791680336,-0.328563898801804,0.282066106796265,-0.936372935771942,-0.240263164043427,0.255889356136322,-0.97100555896759,-0.061943531036377,0.23089225590229,-0.952831268310547,-0.129194661974907,0.274629443883896,-0.953756511211395,-0.135191485285759,0.268461883068085,-0.971533238887787,-0.0704279243946075,0.226192459464073,-0.980891227722168,-0.102494925260544,0.165369912981987,-0.964058876037598,-0.167954429984093,0.205868929624557,-0.968719124794006,-0.163201868534088,0.186945185065269,-0.985594034194946,-0.0899823531508446,0.143205031752586,-0.457310378551483,-0.868572115898132,0.190917819738388,-0.508829057216644,-0.838282823562622,0.195894807577133,-0.665318667888641,-0.722097873687744,0.189540982246399,-0.536375343799591,-0.821609139442444,0.193028092384338,0.324870437383652,0.259247362613678,-0.909532904624939,0.356745570898056,0.344263583421707,-0.868455648422241,0.375933557748795,0.310685008764267,-0.873011469841003,0.34856590628624,0.232522413134575,-0.907984137535095,0.214112088084221,0.303530246019363,-0.928453207015991,0.212392956018448,0.291164517402649,-0.932798266410828, +0.206047505140305,0.294721126556396,-0.933104515075684,0.211967825889587,0.311891436576843,-0.926171362400055,0.281577348709106,0.6472247838974,-0.708388566970825,0.27372682094574,0.646254360675812,-0.712340414524078,0.172957435250282,0.581791341304779,-0.794735550880432,0.184344530105591,0.58542388677597,-0.789490938186646,0.538810431957245,0.597648918628693,-0.593716442584991,0.552594780921936,0.594601035118103,-0.584027886390686,0.448149859905243,0.590615749359131,-0.671069920063019,0.443958282470703,0.591590702533722,-0.672994375228882,0.725417494773865,0.29181370139122,-0.623389422893524,0.727870285511017,0.288276642560959,-0.622174799442291,0.681288242340088,0.320479542016983,-0.658133149147034,0.674839675426483,0.328374654054642,-0.66087943315506,-0.61169022321701,0.593124389648438,-0.523486912250519,-0.657352328300476,0.624018847942352,-0.422478854656219,-0.775139808654785,0.604188024997711,-0.184702500700951,-0.730916321277618,0.605382442474365,-0.315076947212219,0.17850923538208,0.0907023400068283,-0.979748725891113,0.212892174720764,0.0950082689523697,-0.972445547580719,0.291533708572388,-0.0197888165712357,-0.95635586977005,0.259222507476807,-0.0321626290678978,-0.965281963348389,0.0657856836915016,0.19353298842907,-0.978885769844055,0.210671663284302,0.0943071767687798,-0.972997307777405,0.100474692881107,0.0663116052746773,-0.992727398872375,-0.0473651401698589,0.170936599373817,-0.984142959117889,-0.186385571956635,0.325811773538589,-0.926880359649658,-0.156202867627144,0.25112110376358,-0.955268979072571,-0.174181297421455,0.249725997447968,-0.952521860599518,-0.203922882676125,0.323340445756912,-0.924048900604248,-0.187426835298538,0.389941871166229,-0.901563405990601,-0.207056775689125,0.371473520994186,-0.905060768127441,-0.185549959540367,0.375350832939148,-0.908120572566986,-0.16583751142025,0.393744975328445,-0.904136598110199,-0.212740451097488,0.365089386701584,-0.906339526176453,-0.217006087303162,0.377579241991043,-0.90019017457962,-0.213928386569023,0.377060979604721,-0.901143491268158,-0.209737077355385,0.364907473325729,-0.9071124792099, +-0.159969374537468,0.31759449839592,-0.934635519981384,-0.171919494867325,0.352313250303268,-0.919956088066101,-0.163332581520081,0.351461201906204,-0.921844661235809,-0.151068925857544,0.314605951309204,-0.937123954296112,-0.0453983061015606,0.401777982711792,-0.914611101150513,0.0442257896065712,0.408060759305954,-0.911882936954498,-0.0404107682406902,0.340797871351242,-0.939267754554749,-0.127494469285011,0.316240429878235,-0.940072953701019,-0.345446556806564,0.118065774440765,-0.930981874465942,-0.0908574834465981,-0.0924253091216087,-0.991565704345703,-0.194948494434357,0.185739532113075,-0.963065922260284,-0.427063047885895,0.331232517957687,-0.841369271278381,-0.648231089115143,0.228203892707825,-0.72644305229187,-0.631093680858612,0.233315169811249,-0.739787101745605,-0.630948662757874,0.234842166304588,-0.739427447319031,-0.649959444999695,0.230300694704056,-0.724233627319336,-0.401045769453049,0.517958700656891,-0.755566895008087,-0.581388115882874,0.389402389526367,-0.714390397071838,-0.700251162052155,0.190435349941254,-0.688028275966644,-0.575418651103973,0.380976319313049,-0.723706066608429,0.324082583189011,0.364412784576416,-0.873025715351105,0.240143865346909,0.456584513187408,-0.856657266616821,0.173122420907021,0.558030307292938,-0.811560750007629,0.262639194726944,0.477169334888458,-0.838647723197937,0.549298703670502,-0.507191598415375,0.664099216461182,0.553152799606323,-0.49810528755188,0.667767345905304,0.516752123832703,-0.524309396743774,0.676806449890137,0.523068785667419,-0.52705442905426,0.669785559177399,0.701845347881317,-0.438357830047607,0.561476290225983,0.681415379047394,-0.493255883455276,0.540714204311371,0.748499095439911,-0.297262251377106,0.592776775360107,0.768114268779755,-0.18333388864994,0.613505721092224,0.553378760814667,-0.435644954442978,0.709919333457947,0.4879429936409,-0.416783183813095,0.766944229602814,0.428296685218811,-0.381625682115555,0.819099426269531,0.52785462141037,-0.392287492752075,0.753312706947327,0.870066106319427,0.0663048699498177,0.488455593585968, +0.77736759185791,-0.0636579096317291,0.62581729888916,0.85422420501709,0.0192432701587677,0.519548654556274,0.92780202627182,0.128292247653008,0.350320905447006,0.554811000823975,-0.499198496341705,0.665571689605713,0.549916386604309,-0.508140325546265,0.66286164522171,0.600489854812622,-0.451057523488998,0.660272002220154,0.649723827838898,-0.381237387657166,0.657660305500031,0.220960229635239,0.423125982284546,-0.878715574741364,0.268133521080017,0.447186201810837,-0.853304743766785,0.312400907278061,0.424981027841568,-0.849586248397827,0.26565009355545,0.392444849014282,-0.880577743053436,0.449642837047577,0.744150459766388,0.494025766849518,0.33930692076683,0.788811683654785,0.51249086856842,0.220824539661407,0.866075694561005,0.44849693775177,0.337508082389832,0.835127949714661,0.434338122606277,0.664295434951782,-0.367325365543365,0.650986731052399,0.706444084644318,-0.325333535671234,0.628565788269043,0.628039419651031,-0.371010154485703,0.684045374393463,0.585511326789856,-0.408508241176605,0.700212478637695,0.554441452026367,-0.420655876398087,0.718083143234253,0.499071002006531,-0.45535272359848,0.737280309200287,0.49417370557785,-0.460614293813705,0.737310647964478,0.546165406703949,-0.428960740566254,0.719511032104492,0.555742621421814,-0.528188705444336,0.64200222492218,0.576269388198853,-0.397721111774445,0.713954925537109,0.482896685600281,-0.322789520025253,0.814013421535492,0.466575652360916,-0.461487650871277,0.754543781280518,0.465230911970139,-0.447021335363388,0.764023721218109,0.413979977369308,-0.474248498678207,0.776987195014954,0.357608795166016,-0.503372967243195,0.786594986915588,0.410057067871094,-0.476335942745209,0.777790069580078,0.488322496414185,-0.447354108095169,0.749276697635651,0.491992235183716,-0.435446113348007,0.753876924514771,0.424288213253021,-0.466424524784088,0.776162147521973,0.409611165523529,-0.48407831788063,0.773231387138367,0.546187281608582,-0.283751487731934,0.788139939308167,0.763358473777771,-0.170520663261414,0.623062252998352,0.694020628929138,-0.160380765795708,0.701864182949066, +0.45301142334938,-0.286339968442917,0.844268918037415,0.848539352416992,0.028166051954031,0.528382122516632,0.77434766292572,-0.0611833706498146,0.629795432090759,0.647000074386597,-0.265962511301041,0.714601278305054,0.707519471645355,-0.181841462850571,0.682898163795471,0.363274693489075,-0.513234376907349,0.777574419975281,0.359832674264908,-0.515855073928833,0.77744060754776,0.294158071279526,-0.54846727848053,0.782722592353821,0.314026862382889,-0.538290977478027,0.782067716121674,0.242443487048149,-0.515444934368134,0.821911096572876,0.217265009880066,-0.526265621185303,0.822095155715942,0.145637050271034,-0.554895222187042,0.81907331943512,0.171133011579514,-0.545091092586517,0.820724785327911,-0.313384860754013,-0.547938466072083,0.775598645210266,-0.424917876720428,-0.568884432315826,0.704141616821289,-0.350847214460373,-0.614733457565308,0.706405758857727,-0.17774124443531,-0.59597647190094,0.783083736896515,-0.714150309562683,-0.393226444721222,0.579104840755463,-0.81590747833252,-0.388501822948456,0.428207248449326,-0.763719081878662,-0.473923444747925,0.438326120376587,-0.657629728317261,-0.480696111917496,0.580046951770782,-0.610237598419189,-0.320765376091003,0.724375367164612,-0.715862393379211,-0.358599901199341,0.599121928215027,-0.661173462867737,-0.440409511327744,0.607362508773804,-0.544002592563629,-0.412567496299744,0.730649948120117,0.069956935942173,-0.546063303947449,0.834817886352539,0.0802163183689117,-0.484834730625153,0.870919406414032,-0.099453791975975,-0.559330761432648,0.82295697927475,-0.17573855817318,-0.62091588973999,0.763923823833466,-0.215554028749466,-0.539169371128082,0.814145445823669,-0.307181715965271,-0.588025808334351,0.748241305351257,-0.173351168632507,-0.647456645965576,0.742124855518341,-0.0950834229588509,-0.592730522155762,0.799768567085266,-0.543125569820404,-0.665994226932526,0.51133781671524,-0.642020404338837,-0.378483176231384,0.666753530502319,-0.401326358318329,-0.176694720983505,0.898730397224426,-0.497354686260223,-0.441901832818985,0.746566295623779,-0.350891917943954,-0.412119954824448,0.840852081775665, +-0.293504327535629,-0.402675867080688,0.867010533809662,-0.120540618896484,-0.449664175510406,0.885026574134827,-0.185188814997673,-0.459704846143723,0.868548631668091,0.332127571105957,-0.365086823701859,0.869714260101318,0.074718289077282,-0.446471780538559,0.891672670841217,0.0592032894492149,-0.430278480052948,0.900752782821655,0.327855944633484,-0.345211207866669,0.879397451877594,0.765625953674316,-0.176766335964203,0.618522822856903,0.565971791744232,-0.348167210817337,0.747298896312714,0.559592723846436,-0.33005678653717,0.760209560394287,0.755560994148254,-0.184077143669128,0.628683805465698,0.887316584587097,-0.0514478236436844,0.458282083272934,0.852598309516907,-0.0878706425428391,0.51512610912323,0.933925032615662,0.0178558211773634,0.357022762298584,0.953078866004944,0.059165894985199,0.296883940696716,0.0915028899908066,-0.555735468864441,0.826308310031891,0.0924980416893959,-0.541818916797638,0.835389912128448,0.267351388931274,-0.506661713123322,0.819644570350647,0.291300177574158,-0.515896797180176,0.805602133274078,-0.122844912111759,-0.6060791015625,0.785860896110535,-0.307574331760406,-0.581069886684418,0.753495752811432,-0.277917861938477,-0.591214001178741,0.757117986679077,-0.101768933236599,-0.612998902797699,0.783502101898193,0.487818121910095,-0.418821454048157,0.765912532806396,0.44545391201973,-0.423887372016907,0.788600385189056,0.623628258705139,-0.336271584033966,0.70569771528244,0.67372739315033,-0.316183090209961,0.667921960353851,0.819220423698425,-0.163863942027092,0.549569368362427,0.779740393161774,-0.194641500711441,0.59507954120636,0.90212070941925,-0.0425057411193848,0.429384976625443,0.919878363609314,-0.0187127590179443,0.391757249832153,0.896475434303284,-0.0251754075288773,0.442377686500549,0.777440011501312,-0.185864046216011,0.600867390632629,0.746720731258392,-0.207397967576981,0.631976544857025,0.87750780582428,-0.0493791922926903,0.477013230323792,0.418929994106293,-0.434842675924301,0.797125816345215,0.398576855659485,-0.428939700126648,0.810646176338196,0.562433540821075,-0.345406264066696,0.751240968704224, +0.587789297103882,-0.344688951969147,0.731910765171051,0.268226087093353,-0.5202357172966,0.810808002948761,0.0926759392023087,-0.556325852870941,0.825780093669891,0.0965877771377563,-0.543401181697845,0.83389812707901,0.254971772432327,-0.509645640850067,0.821736335754395,0.839803278446198,-0.0135385543107986,0.542722105979919,0.71280175447464,-0.184335619211197,0.676708221435547,0.690564751625061,-0.185624331235886,0.699045062065125,0.821618497371674,-0.0179453641176224,0.56975519657135,0.763643324375153,0.0586144924163818,0.64297217130661,0.643655955791473,-0.117795750498772,0.756195306777954,0.625581443309784,-0.10846720635891,0.772581934928894,0.745798647403717,0.0685157030820847,0.662638664245605,0.375673294067383,-0.393572002649307,0.839029610157013,0.360476225614548,-0.380254536867142,0.85174149274826,0.510786533355713,-0.293652802705765,0.808000802993774,0.529689252376556,-0.30373078584671,0.791944980621338,0.244998186826706,-0.497980028390884,0.831860363483429,0.0980963706970215,-0.533637762069702,0.840004682540894,0.0963350012898445,-0.521750628948212,0.847641289234161,0.235522657632828,-0.487510651350021,0.840751111507416,0.651550889015198,0.157067149877548,0.742166697978973,0.555240511894226,-0.0248492658138275,0.831318497657776,0.524515509605408,-0.0290768593549728,0.850904226303101,0.619494557380676,0.153519064188004,0.76984304189682,0.330917924642563,-0.312956422567368,0.890253722667694,0.307734757661819,-0.299140274524689,0.903224408626556,0.445280075073242,-0.205797985196114,0.8714200258255,0.470079481601715,-0.218339145183563,0.855191946029663,0.421887159347534,-0.157984793186188,0.892777740955353,0.291404515504837,-0.25312939286232,0.922501444816589,0.25819930434227,-0.248675972223282,0.933538198471069,0.386864989995956,-0.154779061675072,0.909053802490234,0.487193942070007,0.180013567209244,0.854539155960083,0.40582549571991,0.0171681195497513,0.913789391517639,0.361682802438736,-0.0604595616459846,0.930338740348816,0.445936888456345,0.0940184593200684,0.8901127576828,0.221480667591095,-0.442515909671783,0.868979811668396, +0.0894059017300606,-0.482128232717514,0.871526896953583,0.0810736268758774,-0.46892112493515,0.87951135635376,0.210246577858925,-0.430192202329636,0.877912938594818,0.247848629951477,0.0561540201306343,0.967170059680939,0.189853340387344,-0.060598224401474,0.97994065284729,0.130749449133873,-0.16991338133812,0.976746618747711,0.191013872623444,-0.0583022236824036,0.979854345321655,0.292950928211212,-0.0995656698942184,0.950929284095764,0.183341905474663,-0.191970571875572,0.964123010635376,0.132073655724525,-0.218078672885895,0.966953158378601,0.231565698981285,-0.134372889995575,0.963494300842285,0.00450294837355614,-0.122748106718063,0.9924276471138,-0.0550773218274117,-0.255401939153671,0.965264976024628,-0.0930697098374367,-0.325967192649841,0.940788745880127,-0.0433767437934875,-0.214265748858452,0.975811839103699,0.130490943789482,-0.169764041900635,0.976807177066803,0.208315491676331,-0.0726576820015907,0.975359261035919,0.143627122044563,-0.152978867292404,0.977736592292786,0.0896564126014709,-0.216824769973755,0.972084760665894,0.26218593120575,-0.25773486495018,0.929963052272797,0.296225547790527,-0.266551434993744,0.91717004776001,0.17202764749527,-0.336077600717545,0.925990462303162,0.141088321805,-0.325405329465866,0.934989631175995,0.0688481032848358,-0.244637578725815,0.967167258262634,-0.0352526903152466,-0.294001877307892,0.955154597759247,-0.0859527587890625,-0.30421394109726,0.948718190193176,0.015702223405242,-0.256897568702698,0.966311037540436,-0.237861096858978,-0.284802734851837,0.92860621213913,-0.321795701980591,-0.376815021038055,0.868595480918884,-0.400722295045853,-0.463123738765717,0.790530323982239,-0.309784740209579,-0.361058115959167,0.879585385322571,-0.0828865766525269,-0.219214737415314,0.972149610519409,-0.178887724876404,-0.261538296937943,0.948470830917358,-0.240302920341492,-0.317547261714935,0.917288601398468,-0.13713926076889,-0.271887868642807,0.952507138252258,-0.429155856370926,-0.443391799926758,0.786910951137543,-0.377062648534775,-0.319204926490784,0.869443535804749, +-0.484868586063385,-0.362011581659317,0.796146988868713,-0.547175586223602,-0.498615324497223,0.672295808792114,-0.262913554906845,-0.285637021064758,0.921568214893341,-0.191136911511421,-0.238424628973007,0.952166199684143,-0.288677185773849,-0.274002730846405,0.917381048202515,-0.363428324460983,-0.321164458990097,0.874513149261475,-0.0893336087465286,-0.296297997236252,0.950908482074738,-0.0358574353158474,-0.292144060134888,0.955701947212219,-0.144233837723732,-0.333273857831955,0.931732296943665,-0.195950448513031,-0.335315525531769,0.921502590179443,0.0293245613574982,-0.386599242687225,0.921781539916992,0.0559216663241386,-0.400525510311127,0.914577603340149,-0.066044807434082,-0.437443107366562,0.896817445755005,-0.0889992043375969,-0.422165483236313,0.902139365673065,-0.709915459156036,-0.300697505474091,0.636868238449097,-0.648560166358948,-0.273016691207886,0.710515081882477,-0.503644347190857,-0.232171475887299,0.832129061222076,-0.577484846115112,-0.264335125684738,0.772423624992371,-0.313312023878098,-0.363292306661606,0.877413392066956,-0.266978353261948,-0.356602907180786,0.895297169685364,-0.396934032440186,-0.367899239063263,0.840888619422913,-0.448579609394073,-0.372578799724579,0.812380194664001,-0.88981431722641,-0.224489793181419,0.397284418344498,-0.97560977935791,-0.216821938753128,0.0342628508806229,-0.975915729999542,-0.194482296705246,0.0988191366195679,-0.879476368427277,-0.19540573656559,0.433979153633118,-0.214901655912399,-0.472497016191483,0.854730248451233,-0.19847646355629,-0.465323686599731,0.862601339817047,-0.345067828893661,-0.463855266571045,0.815945088863373,-0.358013451099396,-0.47005021572113,0.806770801544189,-0.789769530296326,-0.303816676139832,0.532878637313843,-0.717591166496277,-0.307190656661987,0.625057518482208,-0.574799060821533,-0.331642299890518,0.748077213764191,-0.670575380325317,-0.333181977272034,0.662811100482941,-0.784906566143036,-0.333234071731567,0.522376179695129,-0.819382846355438,-0.309407532215118,0.482575207948685,-0.932133674621582,-0.24231792986393,0.269088864326477, +-0.907230138778687,-0.269815534353256,0.322696536779404,-0.505808770656586,-0.4793741106987,0.717187523841858,-0.504301428794861,-0.470768809318542,0.723917782306671,-0.673270881175995,-0.417268544435501,0.610404312610626,-0.667807281017303,-0.428383529186249,0.608704447746277,-0.0613412223756313,-0.472263038158417,0.879320740699768,0.0657301545143127,-0.452195703983307,0.889493525028229,0.0775511264801025,-0.443921476602554,0.892703533172607,-0.0512181371450424,-0.464987844228745,0.883834362030029,-0.185229599475861,-0.545317351818085,0.817507863044739,-0.184518098831177,-0.535811960697174,0.823928833007813,-0.339184045791626,-0.523553550243378,0.781566381454468,-0.338327914476395,-0.532960653305054,0.775556027889252,-0.0413949638605118,-0.538433134555817,0.84165096282959,0.0936306938529015,-0.521920680999756,0.847839713096619,0.0956789404153824,-0.513563334941864,0.852700591087341,-0.0422008335590363,-0.53053480386734,0.84661203622818,-0.505310475826263,-0.530274212360382,0.680786728858948,-0.508922576904297,-0.518950223922729,0.686795949935913,-0.682713687419891,-0.445462375879288,0.579193711280823,-0.678984403610229,-0.457230865955353,0.574386835098267,-0.353192061185837,-0.572833299636841,0.739673852920532,-0.518422245979309,-0.52387148141861,0.67586761713028,-0.513802289962769,-0.533254981040955,0.672046482563019,-0.345200538635254,-0.582844853401184,0.735614418983459,-0.0462752282619476,-0.57322371006012,0.818091213703156,0.0996109396219254,-0.561934351921082,0.821162283420563,0.0969267189502716,-0.554570257663727,0.826472640037537,-0.05677405372262,-0.565857172012329,0.822546243667603,-0.394602596759796,-0.563477873802185,0.725797116756439,-0.544792354106903,-0.509080827236176,0.666361927986145,-0.526271998882294,-0.527992010116577,0.666530072689056,-0.367769539356232,-0.583256959915161,0.724263072013855,-0.278060913085938,-0.592915773391724,0.755733549594879,-0.307638913393021,-0.582572340965271,0.752308368682861,-0.471982091665268,-0.523418784141541,0.709412217140198,-0.440634459257126,-0.540950655937195,0.716389358043671, +-0.696547091007233,-0.447292804718018,0.561027050018311,-0.840992450714111,-0.321052551269531,0.435496270656586,-0.83765184879303,-0.336145430803299,0.430517941713333,-0.687751889228821,-0.465238153934479,0.55727082490921,-0.75982940196991,-0.358237057924271,0.542517840862274,-0.8709636926651,-0.236151948571205,0.430876553058624,-0.848902821540833,-0.277353078126907,0.449932605028152,-0.723260283470154,-0.405292749404907,0.559135437011719,-0.767228484153748,-0.411581665277481,0.491895288228989,-0.808823347091675,-0.449326813220978,0.379354894161224,-0.887998640537262,-0.29776594042778,0.350419819355011,-0.828087449073792,-0.276485711336136,0.487675040960312,-0.954328417778015,-0.0373149402439594,0.296420335769653,-0.972479343414307,0.0393976308405399,0.22963410615921,-0.976985573768616,0.0637541934847832,0.20355486869812,-0.95311039686203,-0.0488818436861038,0.298649072647095,-0.953559279441833,-0.104734718799591,0.282409965991974,-0.989245295524597,0.06341253221035,0.131805509328842,-0.990651249885559,0.0645248368382454,0.120195083320141,-0.947129726409912,-0.131634548306465,0.292604744434357,-0.967254519462585,0.149303674697876,0.205249115824699,-0.963913202285767,0.221506699919701,0.147669091820717,-0.952438354492188,0.294671326875687,0.0776528269052505,-0.964448690414429,0.213909357786179,0.155182495713234,-0.687127470970154,-0.468862324953079,0.554999053478241,-0.83886981010437,-0.349793434143066,0.417063623666763,-0.840862512588501,-0.358713746070862,0.405308246612549,-0.686424434185028,-0.480294913053513,0.54602038860321,-0.947806477546692,-0.187315568327904,0.258022785186768,-0.998067200183868,0.0128137525171041,0.060809101909399,-0.999277532100677,0.0197114422917366,0.0324936956167221,-0.94809877872467,-0.197537839412689,0.249173790216446,-0.931772530078888,0.340002745389938,0.127271771430969,-0.908037066459656,0.417964726686478,0.027827862650156,-0.86270797252655,0.483323782682419,-0.148772075772285,-0.910420417785645,0.412421762943268,-0.0322960317134857,-0.991763174533844,0.0588609464466572,0.113759115338326, +-0.990747451782227,0.0564015060663223,0.12344391644001,-0.975110828876495,0.220342934131622,-0.024655394256115,-0.96202689409256,0.263151288032532,-0.0724966302514076,-0.572198569774628,0.583772718906403,-0.576019287109375,-0.499399393796921,0.595718860626221,-0.629062294960022,-0.711356520652771,0.503231525421143,-0.49064239859581,-0.762486577033997,0.479190766811371,-0.434730380773544,-0.679849803447723,0.587929487228394,-0.438341349363327,-0.575691759586334,0.639590799808502,-0.509413957595825,-0.500515818595886,0.554778397083282,-0.664608836174011,-0.566692888736725,0.515238583087921,-0.642952919006348,-0.710949182510376,0.471404403448105,-0.521851778030396,-0.49885618686676,0.562434315681458,-0.65940135717392,-0.557306289672852,0.509050071239471,-0.655955672264099,-0.687150537967682,0.461629241704941,-0.561001479625702,-0.814504146575928,0.361021369695663,-0.454143851995468,-0.700890183448792,0.438417732715607,-0.562621414661407,-0.913922429084778,0.240341290831566,-0.327081054449081,-0.938843727111816,0.200800567865372,-0.279735147953033,-0.998500347137451,-0.0105959558859468,-0.0537115707993507,-0.997453927993774,-0.0269983075559139,-0.0660064816474915,-0.950477242469788,-0.243737131357193,0.192834973335266,-0.951764464378357,-0.227410286664963,0.205983102321625,-0.998786568641663,-0.0056005697697401,-0.0489294715225697,-0.998109698295593,-0.0283068679273129,-0.0545522980391979,-0.91241466999054,0.222337692975998,-0.343606561422348,-0.907308578491211,0.248722046613693,-0.339011311531067,-0.996807098388672,-0.0423743575811386,-0.0676767379045486,-0.995216012001038,-0.0652240812778473,-0.0727389305830002,-0.942563891410828,-0.264242678880692,0.204326301813126,-0.948218107223511,-0.239320024847984,0.208826616406441,-0.904899001121521,0.170253768563271,-0.390091836452484,-0.700644016265869,0.333398759365082,-0.6308274269104,-0.701087296009064,0.304978936910629,-0.644565403461456,-0.904178142547607,0.142463609576225,-0.40269860625267,-0.992038249969482,-0.0968962162733078,-0.0804442539811134,-0.989928722381592,-0.125154912471771,-0.0661622658371925, +-0.926637411117554,-0.281501471996307,0.249198824167252,-0.938685178756714,-0.252505719661713,0.234757274389267,-0.890467345714569,0.0653365179896355,-0.450332283973694,-0.683832049369812,0.201407045125961,-0.701290905475616,-0.686448395252228,0.228246629238129,-0.690428972244263,-0.89768785238266,0.0842265188694,-0.432507187128067,-0.880517601966858,-0.0394946001470089,-0.472365111112595,-0.662969291210175,0.0514155030250549,-0.746878921985626,-0.689595401287079,0.0552990213036537,-0.722080528736115,-0.902728915214539,-0.0377827323973179,-0.42854768037796,-0.917393743991852,-0.116293378174305,-0.380610734224319,-0.716610372066498,-0.0798414722084999,-0.692888915538788,-0.750190258026123,-0.0208322051912546,-0.660893857479095,-0.939805626869202,-0.0619467981159687,-0.336047679185867,-0.682788610458374,0.20259702205658,-0.701964557170868,-0.682488441467285,0.19472998380661,-0.704478442668915,-0.472345292568207,0.268936216831207,-0.839382767677307,-0.473337352275848,0.27776163816452,-0.83594274520874,-0.690345108509064,0.0626379922032356,-0.720763623714447,-0.665726065635681,0.0656528770923615,-0.743302404880524,-0.458945423364639,0.112733080983162,-0.881283402442932,-0.475190788507462,0.113236173987389,-0.872565984725952,-0.497288823127747,0.0304028019309044,-0.867052316665649,-0.358422785997391,0.0421841852366924,-0.932605862617493,-0.361564844846725,0.0275827776640654,-0.931938886642456,-0.516174256801605,0.0167118292301893,-0.856320559978485,-0.627463340759277,0.267818182706833,-0.731138288974762,-0.593015968799591,0.220003262162209,-0.77455198764801,-0.680984675884247,0.341361999511719,-0.647867262363434,-0.721924662590027,0.411491572856903,-0.556326806545258,-0.593930602073669,0.413335263729095,-0.690217614173889,-0.524572968482971,0.300924837589264,-0.796409130096436,-0.453945100307465,0.201110109686852,-0.868037223815918,-0.527096509933472,0.305261790752411,-0.793085396289825,-0.504830539226532,0.0752125680446625,-0.859935581684113,-0.346507012844086,0.0404749773442745,-0.937173783779144,-0.327976226806641,0.0425794199109077,-0.943725883960724, +-0.487803399562836,0.075843557715416,-0.869652628898621,-0.286135375499725,0.219310820102692,-0.932753682136536,-0.337955564260483,0.394294917583466,-0.854586184024811,-0.372255831956863,0.257494390010834,-0.891696274280548,-0.322436273097992,0.17633093893528,-0.930022776126862,-0.0684328973293304,0.0481949523091316,-0.996490955352783,0.022972023114562,-0.0692488551139832,-0.997334957122803,0.0801119208335876,-0.134091198444366,-0.987725496292114,-0.0108812628313899,-0.0077478215098381,-0.999910831451416,-0.463926911354065,0.19215239584446,-0.864782810211182,-0.55966579914093,0.260785162448883,-0.786616444587708,-0.431870847940445,0.134572759270668,-0.891839623451233,-0.383692711591721,0.108282439410686,-0.91709041595459,-0.275028079748154,0.0671218186616898,-0.959090411663055,-0.217331036925316,0.0741852298378944,-0.973274827003479,-0.191667407751083,0.0817840024828911,-0.978046596050262,-0.261252582073212,0.0754989832639694,-0.96231335401535,-0.345176488161087,0.131881326436996,-0.929225862026215,-0.33218914270401,0.132868185639381,-0.933807492256165,-0.246108263731003,0.140200912952423,-0.959048688411713,-0.261283904314041,0.139224648475647,-0.955168664455414,-0.238575711846352,0.0504027754068375,-0.969815135002136,-0.16763673722744,0.0463361628353596,-0.984759390354156,-0.136953040957451,0.047960102558136,-0.989415884017944,-0.214463829994202,0.0530283637344837,-0.97529137134552,-0.176870480179787,0.0608382634818554,-0.982352018356323,-0.0945421680808067,0.0302386786788702,-0.99506151676178,-0.0269577167928219,0.00530561059713364,-0.999622583389282,-0.137246713042259,0.0480261594057083,-0.98937201499939,-0.117684945464134,0.0928029417991638,-0.988705158233643,-0.0889986827969551,0.0941051989793777,-0.991576313972473,-0.0365002155303955,0.0927444100379944,-0.995020806789398,-0.0745926201343536,0.0926275178790092,-0.992902874946594,-0.191224724054337,0.0883901417255402,-0.977558314800262,-0.216645076870918,0.099914662539959,-0.971124112606049,-0.197611048817635,0.110693067312241,-0.974010705947876,-0.153008729219437,0.0987469106912613,-0.983278870582581, +-0.016725305467844,0.0512498579919338,-0.99854588508606,0.0338961966335773,0.035929050296545,-0.99877941608429,0.1583231985569,-0.00699872523546219,-0.987362623214722,0.0856216326355934,0.0173353683203459,-0.996176898479462,0.199929386377335,-0.0723291411995888,-0.97713702917099,0.262515485286713,-0.147665962576866,-0.953562021255493,0.35094553232193,-0.277517288923264,-0.894327342510223,0.286134511232376,-0.188962310552597,-0.939372301101685,0.0873628333210945,0.0848936438560486,-0.992552757263184,0.113993614912033,0.0751965865492821,-0.990631639957428,0.287355750799179,0.0124623253941536,-0.957742929458618,0.244091242551804,0.0288013815879822,-0.96932452917099,-0.0314598493278027,0.126009300351143,-0.991530120372772,-0.0861930325627327,0.129101529717445,-0.987878322601318,-0.067871168255806,0.129406422376633,-0.989266157150269,-0.00615186337381601,0.125474274158478,-0.992077887058258,0.62600302696228,-0.52507746219635,-0.576553463935852,0.625664710998535,-0.484482735395432,-0.611408293247223,0.606342077255249,-0.302039325237274,-0.735609650611877,0.614766895771027,-0.348515272140503,-0.707530081272125,0.406685948371887,-0.249875754117966,-0.878731310367584,0.308049529790878,-0.103265427052975,-0.945749402046204,0.35833615064621,-0.164925917983055,-0.91890960931778,0.454790413379669,-0.319670975208282,-0.831249833106995,0.157931119203568,0.151263251900673,-0.975795686244965,0.177177876234055,0.14170914888382,-0.97392326593399,0.390832126140594,0.0599575266242027,-0.918507218360901,0.360463529825211,0.0743623897433281,-0.929804444313049,0.212287679314613,0.210208997130394,-0.954330205917358,0.227485239505768,0.200766205787659,-0.952860713005066,0.463161945343018,0.107261165976524,-0.879759192466736,0.445305407047272,0.118450224399567,-0.887509226799011,0.667531907558441,-0.0621960461139679,-0.741979002952576,0.677849411964417,-0.0823677182197571,-0.730572164058685,0.78216826915741,-0.300775587558746,-0.545661807060242,0.777892768383026,-0.283710211515427,-0.560706317424774,0.256043702363968,0.254692673683167,-0.932509124279022, +0.307595908641815,0.23377513885498,-0.922352433204651,0.517669141292572,0.149347320199013,-0.842445373535156,0.503206789493561,0.158934578299522,-0.84942489862442,0.728623628616333,-0.0300165973603725,-0.684256374835968,0.733035445213318,-0.0395012944936752,-0.679042518138885,0.84418785572052,-0.255485713481903,-0.471247434616089,0.841664433479309,-0.243951886892319,-0.481755644083023,0.742547929286957,0.0202310215681791,-0.669487357139587,0.80258309841156,-0.0761702880263329,-0.591657340526581,0.862672209739685,-0.211370289325714,-0.459477037191391,0.868749380111694,-0.218951478600502,-0.444224059581757,0.824404776096344,-0.270576655864716,-0.497136890888214,0.758457660675049,-0.15809828042984,-0.63225531578064,0.832885384559631,-0.291886955499649,-0.470216870307922,0.831290364265442,-0.271704912185669,-0.48490497469902,0.740336418151855,0.0146946329623461,-0.672075986862183,0.763279795646667,0.0261386223137379,-0.645539104938507,0.521696031093597,0.16436468064785,-0.837148547172546,0.500375807285309,0.165324911475182,-0.849877536296844,0.369685292243958,0.274120330810547,-0.887801110744476,0.31464946269989,0.282629370689392,-0.906154751777649,0.132593899965286,0.316945314407349,-0.939129650592804,0.182089567184448,0.30417674779892,-0.935050785541534,0.763125777244568,-0.367885738611221,-0.531318306922913,0.759744226932526,-0.375603914260864,-0.530764162540436,0.754255533218384,-0.345871299505234,-0.558096587657928,0.751120209693909,-0.320503830909729,-0.577144503593445,0.532930195331573,-0.402989983558655,-0.744032621383667,0.431667566299438,-0.6346395611763,-0.641011595726013,0.218871921300888,-0.578872740268707,-0.785494327545166,0.333912432193756,-0.373040914535522,-0.865646004676819,0.131468951702118,0.305024117231369,-0.943226516246796,0.312412917613983,0.266572296619415,-0.911777019500732,0.261340856552124,0.280777603387833,-0.923506796360016,0.0981253683567047,0.313643842935562,-0.944456934928894,0.212556675076485,0.211373403668404,-0.954013168811798,0.195499256253242,0.217820838093758,-0.956208229064941, +0.0526626706123352,0.246565490961075,-0.967694222927094,0.0642782375216484,0.241449430584908,-0.968282282352448,0.0364735126495361,0.343745321035385,-0.938354313373566,0.0143820950761437,0.348206728696823,-0.937307417392731,-0.0529965050518513,0.353574275970459,-0.933903932571411,-0.0323936603963375,0.34953111410141,-0.936364591121674,0.00341981509700418,0.335542529821396,-0.942018806934357,-0.00669405609369278,0.340047538280487,-0.94038450717926,-0.0725756734609604,0.345682978630066,-0.935540497303009,-0.0633935108780861,0.341336816549301,-0.937800943851471,-0.284647226333618,0.45094233751297,-0.845947444438934,-0.24004302918911,0.452022105455399,-0.859101593494415,-0.16664245724678,0.455494731664658,-0.874502658843994,-0.187974408268929,0.458369851112366,-0.868655741214752,-0.0992195755243301,0.407833069562912,-0.907649517059326,-0.11185809969902,0.411679476499557,-0.904437899589539,-0.164812713861465,0.410692274570465,-0.896754443645477,-0.15028689801693,0.407831966876984,-0.900603652000427,0.158504664897919,0.153567627072334,-0.975342690944672,0.135660737752914,0.159023225307465,-0.977909922599792,0.0182631406933069,0.180969804525375,-0.983319103717804,0.0314277596771717,0.177606165409088,-0.983599662780762,-0.0192966870963573,0.289719700813293,-0.956916987895966,-0.027762720361352,0.294009476900101,-0.95539927482605,-0.089618556201458,0.29928794503212,-0.949944913387299,-0.082192026078701,0.295110821723938,-0.951921343803406,-0.204386636614799,0.51332414150238,-0.83350133895874,-0.243546932935715,0.50509124994278,-0.827990233898163,-0.354838132858276,0.476557403802872,-0.804352581501007,-0.282643526792526,0.495955884456635,-0.821060597896576,-0.358313262462616,0.512773513793945,-0.780176281929016,-0.243947178125381,0.512073338031769,-0.823571920394897,-0.285986125469208,0.482038468122482,-0.828161180019379,-0.43017166852951,0.470379531383514,-0.770516335964203,-0.361708998680115,0.597412049770355,-0.71572732925415,-0.499241888523102,0.578476071357727,-0.645075917243958,-0.574662744998932,0.560950636863708,-0.595900356769562, +-0.414200305938721,0.605095505714417,-0.679924666881561,-0.140371143817902,0.35212242603302,-0.925367891788483,-0.148339599370956,0.358099281787872,-0.92182445526123,-0.220888987183571,0.35874992609024,-0.906921565532684,-0.211121588945389,0.353050231933594,-0.911473155021667,-0.461716115474701,0.451780617237091,-0.763356149196625,-0.303872168064117,0.461790233850479,-0.833313524723053,-0.317072153091431,0.429120868444443,-0.845766365528107,-0.474588811397552,0.41701140999794,-0.775156140327454,-0.45252799987793,0.523539662361145,-0.721889615058899,-0.503114998340607,0.622269630432129,-0.599713087081909,-0.408589273691177,0.621236383914948,-0.668670475482941,-0.387419819831848,0.536185324192047,-0.749940872192383,-0.667802095413208,0.602544546127319,-0.437013208866119,-0.633387863636017,0.690701067447662,-0.348929762840271,-0.533388793468475,0.686582684516907,-0.494065344333649,-0.567683339118958,0.609491229057312,-0.553404092788696,-0.369688808917999,0.542330324649811,-0.754458665847778,-0.380906283855438,0.60154265165329,-0.702180147171021,-0.311934441328049,0.55565482378006,-0.770678102970123,-0.308794975280762,0.50774484872818,-0.804264187812805,-0.413189589977264,0.647181510925293,-0.640648484230042,-0.396027594804764,0.697323083877563,-0.597413301467896,-0.324089080095291,0.657580494880676,-0.680113315582275,-0.338730454444885,0.609831571578979,-0.716496467590332,-0.182127922773361,0.51067978143692,-0.840259194374084,-0.170903414487839,0.569353461265564,-0.804132342338562,-0.104169957339764,0.543118536472321,-0.833169221878052,-0.116497419774532,0.486184239387512,-0.866056144237518,-0.0953197777271271,0.54743480682373,-0.831402063369751,-0.145060122013092,0.582615077495575,-0.799698233604431,-0.155232846736908,0.643509566783905,-0.749531984329224,-0.106013655662537,0.611276388168335,-0.784284591674805,0.0578184723854065,0.498678743839264,-0.864856421947479,0.0472147166728973,0.539929628372192,-0.840384960174561,0.0825872868299484,0.508877098560333,-0.856868386268616,0.0906738042831421,0.470562934875488,-0.877695143222809, +-0.0951472669839859,0.561898708343506,-0.821715891361237,-0.0688145384192467,0.522263884544373,-0.850002944469452,-0.0468373894691467,0.490709364414215,-0.870063543319702,-0.0668702274560928,0.519357442855835,-0.851936817169189,0.0144923608750105,0.511313736438751,-0.859271883964539,0.0406526029109955,0.472499310970306,-0.880393028259277,0.0482256859540939,0.457988262176514,-0.887649178504944,0.0236585699021816,0.49443781375885,-0.868891000747681,0.194321140646935,0.473163366317749,-0.859276294708252,0.229683876037598,0.413280606269836,-0.881160914897919,0.25788950920105,0.361025899648666,-0.896188318729401,0.224545925855637,0.427040189504623,-0.875908493995667,0.207575067877769,0.345202058553696,-0.915285885334015,0.156732946634293,0.396225601434708,-0.904676854610443,0.220558226108551,0.303152322769165,-0.927066802978516,0.277422547340393,0.2463688403368,-0.928622186183929,0.157676517963409,0.291827291250229,-0.943384885787964,0.154884770512581,0.395764887332916,-0.905196607112885,0.133786007761955,0.404471278190613,-0.904712319374084,0.12413414567709,0.354586482048035,-0.926746547222137,0.153361365199089,0.416191577911377,-0.896250486373901,0.190148532390594,0.397199839353561,-0.897817254066467,0.201020032167435,0.421963095664978,-0.884046494960785,0.153578490018845,0.459316790103912,-0.874895334243774,0.0410216748714447,0.422366917133331,-0.90549623966217,0.0714320093393326,0.399949878454208,-0.913749217987061,0.0867563039064407,0.394634485244751,-0.914733290672302,0.0564658418297768,0.416852444410324,-0.907218635082245,0.167045056819916,0.443400472402573,-0.880620241165161,0.184988915920258,0.455879032611847,-0.870605230331421,0.168433040380478,0.427099019289017,-0.88837867975235,0.14737007021904,0.431912213563919,-0.889794290065765,0.1256073564291,0.337251096963882,-0.932997703552246,0.0810668542981148,0.395772665739059,-0.914763510227203,0.0997563228011131,0.399859637022018,-0.911131739616394,0.136685565114021,0.34877946972847,-0.927183985710144,0.163810208439827,0.105613201856613,-0.980822205543518,0.0343521237373352,0.17268280684948,-0.984378337860107, +0.0761298909783363,0.218412727117538,-0.972882390022278,0.186542943120003,0.163235068321228,-0.968791007995605,0.168647095561028,0.410725593566895,-0.896026134490967,0.198508277535439,0.406264096498489,-0.891932845115662,0.218550145626068,0.427635967731476,-0.87713360786438,0.19517420232296,0.415327668190002,-0.888487458229065,0.320947736501694,-0.0610529631376266,-0.945127010345459,0.215300709009171,-0.0112923756241798,-0.976482570171356,0.212349757552147,0.0503158643841743,-0.975897550582886,0.305246889591217,0.00754571054130793,-0.952243447303772,0.12378366291523,0.340402781963348,-0.932096362113953,0.127907410264015,0.367154985666275,-0.921323537826538,0.167263224720955,0.34021332859993,-0.925352811813354,0.176195859909058,0.292849779129028,-0.939784049987793,0.44006222486496,-0.15236884355545,-0.884945750236511,0.382713466882706,-0.125689044594765,-0.915277481079102,0.351849615573883,-0.062089204788208,-0.933995127677917,0.405582070350647,-0.082059308886528,-0.910367846488953,0.0853156000375748,0.396704733371735,-0.913973033428192,0.106350116431713,0.368140131235123,-0.923667907714844,0.137983694672585,0.325808525085449,-0.935312509536743,0.113458074629307,0.359377980232239,-0.926269292831421,0.105136767029762,0.382806301116943,-0.917826652526855,0.121250413358212,0.351842969655991,-0.928172826766968,0.125880688428879,0.332999616861343,-0.93448668718338,0.108318723738194,0.365262717008591,-0.924581050872803,0.166383758187294,0.198188900947571,-0.965938746929169,0.135167747735977,0.251062750816345,-0.958486914634705,0.181309625506401,0.211479306221008,-0.960418343544006,0.219053894281387,0.148840442299843,-0.964293479919434,-0.68399852514267,0.661820709705353,-0.306821525096893,-0.743634641170502,0.631341218948364,-0.220035836100578,-0.769265413284302,0.59887683391571,-0.222659632563591,-0.715207934379578,0.628744542598724,-0.305217802524567,0.139704078435898,0.328744113445282,-0.934028923511505,0.166545867919922,0.292992383241653,-0.941497802734375,0.180493846535683,0.270453542470932,-0.945662200450897,0.145645007491112,0.31416979432106,-0.938128352165222, +0.10348729044199,0.315943419933319,-0.943117260932922,0.128230214118958,0.284085541963577,-0.950185537338257,0.171796336770058,0.23144194483757,-0.957559704780579,0.141120672225952,0.270107090473175,-0.95243227481842,0.262256443500519,0.0923378840088844,-0.960570335388184,0.210696190595627,0.155145481228828,-0.965161681175232,0.247376874089241,0.122206829488277,-0.96118175983429,0.297855079174042,0.0575972571969032,-0.952871918678284,0.142029717564583,0.25529083609581,-0.956375479698181,0.190057456493378,0.207073077559471,-0.959686875343323,0.243224963545799,0.144722953438759,-0.959112524986267,0.194009318947792,0.197091475129128,-0.960997104644775,-0.0405974984169006,0.223923355340958,-0.973760843276978,-0.0493069291114807,0.22704042494297,-0.972636342048645,-0.106020823121071,0.231178060173988,-0.967117547988892,-0.0983035564422607,0.228169485926628,-0.968646109104156,-0.32858419418335,0.33899775147438,-0.881540179252625,-0.323859095573425,0.365488320589066,-0.872659027576447,-0.220771282911301,0.355223149061203,-0.908337295055389,-0.227272540330887,0.328641206026077,-0.916701853275299,-0.0658477544784546,0.157468944787979,-0.98532623052597,-0.0837251394987106,0.158705845475197,-0.983769536018372,-0.13168041408062,0.160821616649628,-0.97815990447998,-0.117740221321583,0.159835949540138,-0.980096876621246,-0.477465689182281,0.367373645305634,-0.798162400722504,-0.324958652257919,0.381318271160126,-0.865446805953979,-0.329651325941086,0.354369640350342,-0.875072717666626,-0.479960441589355,0.340906262397766,-0.808344542980194,-0.171356961131096,0.1913091391325,-0.966456294059753,-0.182979881763458,0.194184690713882,-0.963748335838318,-0.247955620288849,0.193599596619606,-0.949229836463928,-0.237357586622238,0.190790355205536,-0.952502191066742,-0.122326269745827,-0.0788765326142311,-0.98935067653656,-0.104540124535561,-0.0809653326869011,-0.991219520568848,-0.0867112055420876,-0.0829459503293037,-0.992774486541748,-0.104531198740005,-0.0808827579021454,-0.991227209568024,-0.133346632122993,-0.0776940956711769,-0.988019406795502, +-0.154972091317177,-0.0750339105725288,-0.985065340995789,-0.133342757821083,-0.0776582136750221,-0.988022744655609,-0.111652031540871,-0.0802732110023499,-0.990499973297119,-0.0860047340393066,-0.0834239944815636,-0.992795884609222,-0.0812824890017509,-0.0839513465762138,-0.993149220943451,-0.10923358052969,-0.0805598348379135,-0.990746259689331,-0.141802787780762,-0.0766768828034401,-0.986920833587646,-0.101488158106804,-0.0814656093716621,-0.991495609283447,-0.106909789144993,-0.0805090889334679,-0.991003811359406,-0.0356774628162384,-0.0885103419423103,-0.995436191558838,-0.106896057724953,-0.0803823471069336,-0.991015613079071,-0.177586257457733,-0.0720525458455086,-0.981464087963104,-0.208606630563736,-0.0679809302091599,-0.975634098052979,-0.208585500717163,-0.0677854493260384,-0.97565221786499,-0.208586469292641,-0.0677942410111427,-0.975651502609253,-0.189814031124115,-0.0703366473317146,-0.979297459125519,-0.148800253868103,-0.0753975957632065,-0.985988736152649,-0.107516020536423,-0.0802377462387085,-0.990960240364075,-0.148791387677193,-0.0753162056207657,-0.985996246337891,-0.172098249197006,-0.0723691284656525,-0.9824178814888,-0.149873495101929,-0.0750852227210999,-0.985850036144257,-0.127562373876572,-0.0776768326759338,-0.98878425359726,-0.149863988161087,-0.0749977603554726,-0.985858142375946,-0.0928488746285439,-0.0821482241153717,-0.992285668849945,-0.0791085213422775,-0.0836437195539474,-0.993350684642792,-0.0928400084376335,-0.0820662006735802,-0.992293357849121,-0.106562606990337,-0.0805557817220688,-0.991037487983704,-0.105076782405376,-0.0785540640354156,-0.991356790065765,-0.14648711681366,-0.0736323893070221,-0.986468434333801,-0.187635451555252,-0.0685465261340141,-0.979844033718109,-0.146483391523361,-0.0735984891653061,-0.98647141456604,0.00554894283413887,-0.0928017720580101,-0.99566912651062,-0.0480863600969315,-0.0869497358798981,-0.995051443576813,-0.101591870188713,-0.0809390023350716,-0.991528153419495,-0.0480970554053783,-0.0870480984449387,-0.995042443275452,-0.142491951584816,-0.0752537250518799,-0.986931145191193, +-0.145359322428703,-0.0749562382698059,-0.986535489559174,-0.142391011118889,-0.0743288025259972,-0.987015724182129,-0.139520406723022,-0.0746093094348907,-0.987404465675354,-0.139257028698921,-0.0756448060274124,-0.987362802028656,-0.184092655777931,-0.0707191452383995,-0.980361521244049,-0.22848653793335,-0.0651048645377159,-0.971367716789246,-0.184035867452621,-0.0701947659254074,-0.980409920215607,-0.130630925297737,-0.0772293508052826,-0.988418519496918,-0.178322792053223,-0.0714348405599594,-0.981375634670258,-0.130635783076286,-0.0772740840911865,-0.988414406776428,-0.0826367065310478,-0.0828933194279671,-0.993126332759857,-0.0994799435138702,-0.0814726501703262,-0.991698563098907,-0.0943334102630615,-0.0820641592144966,-0.992152631282806,-0.0891756415367126,-0.0825732573866844,-0.992587208747864,-0.0943246185779572,-0.081982858479023,-0.992160141468048,-0.571774005889893,0.548166215419769,-0.610400080680847,-0.6506267786026,0.536542356014252,-0.53740793466568,-0.715003371238708,0.626015365123749,-0.311247527599335,-0.620986342430115,0.651825308799744,-0.435315698385239,-0.106021918356419,-0.0786583870649338,-0.991247832775116,-0.0937941372394562,-0.0803145840764046,-0.992346882820129,-0.106040976941586,-0.0788300707936287,-0.991232097148895,-0.118253469467163,-0.0771714597940445,-0.989980220794678,-0.103215232491493,-0.0802216455340385,-0.991418838500977,-0.141659751534462,-0.0751371011137962,-0.987059831619263,-0.103173837065697,-0.0798488333821297,-0.991453111171722,-0.0645715221762657,-0.0848109945654869,-0.9943026304245,-0.108999729156494,-0.0803295373916626,-0.990790724754333,-0.10388408601284,-0.080389179289341,-0.991335332393646,-0.10899979621172,-0.0803300812840462,-0.990790724754333,-0.114057064056396,-0.0797597169876099,-0.990267395973206,-0.135923907160759,-0.076912023127079,-0.98772931098938,-0.135934561491013,-0.077009841799736,-0.987720251083374,-0.135887697339058,-0.0765802264213562,-0.987760126590729,-0.103653743863106,-0.0787369385361671,-0.991492092609406,-0.103177525103092,-0.0787954330444336,-0.991537034511566, +-0.103652082383633,-0.0787218734622002,-0.991493463516235,-0.104127563536167,-0.0786567628383636,-0.991448819637299,-0.153819173574448,-0.07609873265028,-0.98516434431076,0.00212015933357179,-0.0939561724662781,-0.995574057102203,0.158008694648743,-0.109473288059235,-0.981350541114807,0.00211983430199325,-0.09395931661129,-0.995573818683624,-0.184875711798668,-0.0715268850326538,-0.98015558719635,-0.184870809316635,-0.0714819803833961,-0.980159819126129,-0.184895470738411,-0.0717079415917397,-0.980138659477234,0.0283621661365032,-0.379950165748596,-0.924571990966797,0.0470654591917992,-0.416546761989594,-0.90789520740509,0.0424326360225677,-0.416379779577255,-0.908200085163116,0.0236858949065208,-0.379599541425705,-0.924847662448883,0.000815697130747139,-0.295088589191437,-0.955469608306885,0.0302787087857723,-0.332853138446808,-0.942492425441742,0.0180067420005798,-0.335206806659698,-0.941972494125366,-0.0114136328920722,-0.297369003295898,-0.954694449901581,-0.0622358992695808,-0.217251539230347,-0.974129676818848,-0.0637460649013519,-0.269988209009171,-0.960751175880432,-0.0435464829206467,-0.259152859449387,-0.964854121208191,-0.0420825853943825,-0.205942898988724,-0.977658748626709,-0.0520947948098183,-0.106206156313419,-0.992978572845459,-0.0340313911437988,-0.151917546987534,-0.987807214260101,-0.0333852097392082,-0.148684680461884,-0.988321006298065,-0.0513775497674942,-0.102970972657204,-0.993356704711914,-0.0300271492451429,0.00592382531613111,-0.99953156709671,-0.0170787535607815,-0.0389723181724548,-0.999094307422638,-0.0132515849545598,-0.0345655679702759,-0.999314546585083,-0.026078425347805,0.0101353153586388,-0.999608516693115,-0.0490284860134125,0.0910808369517326,-0.994635820388794,-0.0377151742577553,0.0505960211157799,-0.998006820678711,-0.0352540537714958,0.053917158395052,-0.997922897338867,-0.046449214220047,0.0941164419054985,-0.994477033615112,0.05202716588974,0.198634460568428,-0.978691816329956,0.0523340404033661,0.16485820710659,-0.984927892684937,0.0612037666141987,0.169266358017921,-0.983668148517609, +0.0610351078212261,0.202453672885895,-0.977387964725494,0.0136375185102224,0.24617400765419,-0.969129800796509,0.0333573296666145,0.223873645067215,-0.974047183990479,0.0196005143225193,0.221642285585403,-0.974931061267853,-0.000227756827371195,0.244146808981895,-0.969738304615021,-0.0195288751274347,0.284237951040268,-0.958554863929749,-0.035983644425869,0.260617673397064,-0.964771270751953,-0.0163179356604815,0.264820486307144,-0.964159667491913,0.000255800783634186,0.287377625703812,-0.957817316055298,-0.0582570657134056,0.312129586935043,-0.948251724243164,-0.0749789699912071,0.295214712619781,-0.952484428882599,-0.0570666939020157,0.297583609819412,-0.952988624572754,-0.0402991399168968,0.313564211130142,-0.948711574077606,-0.0994296371936798,0.332055509090424,-0.938004732131958,-0.103995636105537,0.32184687256813,-0.941063046455383,-0.099479004740715,0.32215628027916,-0.941445350646973,-0.0949442535638809,0.332107692956924,-0.938450932502747,-0.0848188772797585,0.341879844665527,-0.935908079147339,-0.105452120304108,0.344111710786819,-0.932988166809082,-0.0848525315523148,0.341658115386963,-0.935986042022705,-0.0640751868486404,0.34004870057106,-0.938222408294678,-0.110233083367348,0.338223785161972,-0.934587299823761,-0.101832821965218,0.336481839418411,-0.936167776584625,-0.109234809875488,0.342681527137756,-0.933079361915588,-0.117740362882614,0.343963503837585,-0.931571960449219,-0.128493249416351,0.334254682064056,-0.933682680130005,-0.0983687043190002,0.335833013057709,-0.936770975589752,-0.0699209123849869,0.330585569143295,-0.941182374954224,-0.100362308323383,0.32832670211792,-0.939217269420624,-0.0107410466298461,0.273047000169754,-0.961940765380859,-0.0164547171443701,0.292954951524734,-0.955984652042389,-0.0277245230972767,0.296927511692047,-0.954497516155243,-0.0217652022838593,0.27767139673233,-0.960429549217224,-0.121678292751312,0.271193116903305,-0.954802930355072,-0.100011862814426,0.284076541662216,-0.953571259975433,-0.0854982957243919,0.280006438493729,-0.956183254718781,-0.107280232012272,0.266908496618271,-0.957732081413269, +0.0157271474599838,0.152776092290878,-0.988135695457458,0.00903302524238825,0.188941955566406,-0.981946706771851,-0.0101613253355026,0.199659571051598,-0.979812681674957,-0.00303900288417935,0.164416745305061,-0.986386358737946,-0.149013638496399,0.132251471281052,-0.97995126247406,-0.153086021542549,0.131453320384026,-0.979430913925171,-0.133596330881119,0.158946976065636,-0.97820657491684,-0.129611238837242,0.159565314650536,-0.978641927242279,-0.139208853244781,0.0392928868532181,-0.989483237266541,-0.141884908080101,0.0370539948344231,-0.989189386367798,-0.120440505445004,0.0696176961064339,-0.990276455879211,-0.11785800755024,0.0716707780957222,-0.990440726280212,-0.212403610348701,-0.0107885524630547,-0.977122485637665,-0.214320510625839,-0.0138649791479111,-0.976665019989014,-0.191773876547813,0.0212227571755648,-0.981209635734558,-0.189920544624329,0.0241599343717098,-0.981502175331116,-0.265145480632782,-0.0796039029955864,-0.960916876792908,-0.271431475877762,-0.0797426030039787,-0.959148645401001,-0.243281453847885,-0.0460207872092724,-0.968863368034363,-0.236975133419037,-0.0458846390247345,-0.970431566238403,-0.241783827543259,-0.203729510307312,-0.948701739311218,-0.219120860099792,-0.223026588559151,-0.949865937232971,-0.219971925020218,-0.169418260455132,-0.960682034492493,-0.242302745580673,-0.149704813957214,-0.958581209182739,-0.211936920881271,-0.323747575283051,-0.922101020812988,-0.195366233587265,-0.33695513010025,-0.921028435230255,-0.192376613616943,-0.290921151638031,-0.937206566333771,-0.208587318658829,-0.276998102664948,-0.937957048416138,-0.307623028755188,-0.35882842540741,-0.881254911422729,-0.345048099756241,-0.339638322591782,-0.87497866153717,-0.290678560733795,-0.326898187398911,-0.899246156215668,-0.253044992685318,-0.345949441194534,-0.903486132621765,-0.26221364736557,-0.459085375070572,-0.848813652992249,-0.233780086040497,-0.473493546247482,-0.849206030368805,-0.250286787748337,-0.432044208049774,-0.866426289081573,-0.2779780626297,-0.415908575057983,-0.865880012512207,-0.166437938809395,-0.0739507973194122,-0.983275055885315, +-0.124374777078629,-0.0788357630372047,-0.98909854888916,-0.166444659233093,-0.0740125775337219,-0.983269214630127,-0.208171024918556,-0.0686922669410706,-0.975677311420441,-0.114935711026192,-0.0799630433320999,-0.990149319171906,-0.11492382735014,-0.0798540115356445,-0.990159571170807,-0.114921294152737,-0.079830713570118,-0.990161776542664,-0.0796159207820892,-0.083792932331562,-0.993297636508942,-0.0732779502868652,-0.0848362594842911,-0.993696749210358,-0.0668706744909286,-0.0852683186531067,-0.994111478328705,-0.0732453837990761,-0.0845376625657082,-0.993724524974823,-0.126800581812859,-0.0788890868425369,-0.988786220550537,-0.170556396245956,-0.0735318139195442,-0.982600510120392,-0.213971838355064,-0.0680071488022804,-0.974469721317291,-0.170568317174911,-0.073641411960125,-0.982590138912201,-0.254457473754883,-0.0628765672445297,-0.965037763118744,-0.254461020231247,-0.0629089996218681,-0.96503484249115,-0.254470825195313,-0.0629988089203835,-0.965026378631592,-0.309403598308563,-0.497740805149078,-0.810261428356171,-0.281430333852768,-0.509646415710449,-0.81305456161499,-0.301664501428604,-0.474347084760666,-0.827039062976837,-0.328970611095428,-0.460639297962189,-0.824372470378876,-0.0806238725781441,-0.0845960378646851,-0.993148148059845,-0.0806095451116562,-0.0844644755125046,-0.993160605430603,-0.0806201323866844,-0.0845616161823273,-0.993151485919952,-0.246011763811111,-0.559091687202454,-0.791766881942749,-0.263090431690216,-0.554824471473694,-0.789273858070374,-0.242929846048355,-0.544138073921204,-0.803056061267853,-0.225906297564507,-0.548682034015656,-0.804931342601776,-0.242761552333832,-0.579956293106079,-0.777635991573334,-0.228321939706802,-0.582507312297821,-0.780098974704742,-0.242197245359421,-0.572357714176178,-0.783420205116272,-0.256544202566147,-0.568945229053497,-0.78133624792099,-0.164798736572266,-0.592230677604675,-0.788735866546631,-0.170039281249046,-0.59118115901947,-0.788410782814026,-0.17527873814106,-0.590459644794464,-0.787803888320923,-0.170044183731079,-0.591782808303833,-0.787958204746246, +-0.173720240592957,-0.0734410509467125,-0.982052803039551,-0.129424437880516,-0.0788582265377045,-0.988448619842529,-0.173727810382843,-0.0735105872154236,-0.982046246528625,-0.217670053243637,-0.0679398253560066,-0.973655045032501,-0.169618487358093,-0.580594182014465,-0.796329081058502,-0.176519483327866,-0.587965369224548,-0.789390683174133,-0.168720543384552,-0.588306665420532,-0.790840566158295,-0.161869242787361,-0.580475568771362,-0.798026621341705,-0.189615219831467,-0.0715539455413818,-0.979247808456421,-0.140663430094719,-0.0775650441646576,-0.987014412879944,-0.189611718058586,-0.0715217515826225,-0.979250729084015,-0.238094702363014,-0.0653678327798843,-0.969039678573608,-0.250411540269852,-0.539410173892975,-0.803946971893311,-0.230032473802567,-0.538173198699951,-0.810835778713226,-0.204535469412804,-0.554885804653168,-0.806391417980194,-0.225198149681091,-0.555712103843689,-0.800293684005737,-0.192227080464363,-0.0714653506875038,-0.978744864463806,-0.129368245601654,-0.0790894329547882,-0.988437592983246,-0.19221094250679,-0.0713160559535027,-0.978758871555328,-0.254274994134903,-0.0633430480957031,-0.965055406093597,-0.4643594622612,0.628636360168457,-0.62384831905365,-0.448143780231476,0.638742685317993,-0.625439763069153,-0.410846710205078,0.614413738250732,-0.673573136329651,-0.426902055740356,0.603880524635315,-0.673114418983459,-0.103398904204369,-0.0811214745044708,-0.991326451301575,-0.102605707943439,-0.0811702609062195,-0.991404831409454,-0.103387482464314,-0.0810170993208885,-0.991336107254028,-0.104176893830299,-0.0809341371059418,-0.991260230541229,-0.111474059522152,-0.0800659731030464,-0.990536749362946,-0.096213161945343,-0.0818605050444603,-0.991988837718964,-0.11148002743721,-0.0801206082105637,-0.990531623363495,-0.126704663038254,-0.0782179161906242,-0.98885190486908,0.0168473869562149,-0.094236321747303,-0.995407342910767,0.0168435759842396,-0.0942714437842369,-0.995404064655304,0.0168445575982332,-0.0942624360322952,-0.995404958724976,-0.110518641769886,-0.0797945186495781,-0.990665674209595, +-0.137400910258293,-0.0766706615686417,-0.987543821334839,-0.164166450500488,-0.0733539313077927,-0.983701527118683,-0.137393891811371,-0.076605960726738,-0.987549781799316,-0.0659604966640472,-0.08547143638134,-0.994154930114746,-0.0945413559675217,-0.0818908885121346,-0.992147088050842,-0.123081736266613,-0.0785950794816017,-0.989279448986053,-0.0945659503340721,-0.0821179077029228,-0.992126047611237,-0.142605781555176,-0.0759685188531876,-0.986859858036041,-0.142606750130653,-0.0759774073958397,-0.986859083175659,-0.142603844404221,-0.0759505182504654,-0.98686158657074,-0.279499620199203,-0.058894794434309,-0.958337903022766,-0.279505848884583,-0.0589525774121284,-0.958332419395447,-0.279504895210266,-0.0589438155293465,-0.958333313465118,-0.196222528815269,-0.0674104914069176,-0.978239595890045,-0.196223616600037,-0.0674206465482712,-0.978238642215729,-0.196223974227905,-0.0674240812659264,-0.97823828458786,-0.116150289773941,-0.0793521404266357,-0.990056753158569,-0.116125591099262,-0.0791234448552132,-0.990078032016754,-0.116124659776688,-0.0791149958968163,-0.990078747272491,-0.0874039232730865,-0.080897256731987,-0.992882788181305,-0.0874154269695282,-0.0810002014040947,-0.992873430252075,-0.0874469801783562,-0.0812827944755554,-0.992847502231598,-0.115912288427353,-0.0779218226671219,-0.990198254585266,-0.23276786506176,-0.0628657937049866,-0.970498323440552,-0.115884087979794,-0.0776677578687668,-0.990221560001373,0.00262400135397911,-0.0916283279657364,-0.99578982591629,0.0278636328876019,-0.0954524800181389,-0.995043933391571,0.0437549315392971,-0.0970895662903786,-0.994313478469849,0.0596368908882141,-0.0986846461892128,-0.993330240249634,0.0437524169683456,-0.0971127152442932,-0.994311273097992,-0.0172673352062702,-0.0905672833323479,-0.995740652084351,-0.103142745792866,-0.0808218941092491,-0.991377592086792,-0.0172634348273277,-0.0905314311385155,-0.995743989944458,0.068741500377655,-0.0995964258909225,-0.992650628089905,-0.102120459079742,-0.0799412503838539,-0.991554737091064,-0.0388768129050732,-0.0869584679603577,-0.995453059673309, +-0.102084212005138,-0.0796147137880325,-0.991584777832031,-0.164912715554237,-0.0722756460309029,-0.983656525611877,-0.110878497362137,-0.0803262963891029,-0.990582525730133,-0.103098914027214,-0.0812294036149979,-0.99134886264801,-0.0953037217259407,-0.0820423737168312,-0.992061614990234,-0.103089578449726,-0.0811432227492332,-0.99135684967041,0.109615370631218,-0.106575526297092,-0.988243997097015,0.109615258872509,-0.10657649487257,-0.988243877887726,0.109615333378315,-0.106575898826122,-0.988243997097015,-0.467695266008377,0.437672466039658,-0.767921805381775,-0.51145076751709,0.473441004753113,-0.71712738275528,-0.503996849060059,0.479709684848785,-0.718237996101379,-0.460347503423691,0.444134563207626,-0.768651127815247,-0.362097710371017,0.755826890468597,-0.545537352561951,-0.34162512421608,0.763675034046173,-0.547807395458221,-0.312974601984024,0.746510982513428,-0.587169706821442,-0.333402216434479,0.738134860992432,-0.586515188217163,-0.117365039885044,-0.0793427377939224,-0.989914238452911,-0.117370501160622,-0.0793932527303696,-0.989909529685974,-0.117365427315235,-0.0793463885784149,-0.989913880825043,-0.257054775953293,0.830968201160431,-0.493370771408081,-0.233801454305649,0.835371851921082,-0.497484594583511,-0.210297182202339,0.823926627635956,-0.526232063770294,-0.233742713928223,0.818962216377258,-0.524085223674774,-0.34714475274086,0.147171944379807,-0.926191687583923,-0.404225379228592,0.201113685965538,-0.892275333404541,-0.407808125019073,0.195096880197525,-0.891980767250061,-0.350563168525696,0.141006678342819,-0.925863146781921,-0.0904273390769958,0.866506576538086,-0.490906685590744,-0.0785187557339668,0.866031050682068,-0.493786543607712,-0.0682694688439369,0.86048412322998,-0.504882514476776,-0.0803968757390976,0.860559821128845,-0.502964437007904,-0.238893121480942,0.0114199072122574,-0.970978736877441,-0.298740476369858,0.0738870948553085,-0.951469898223877,-0.307157546281815,0.0598465800285339,-0.949775040149689,-0.247091889381409,-0.00278900563716888,-0.968988060951233,0.119465224444866,0.833951711654663,-0.538751125335693, +0.138441845774651,0.835635602474213,-0.531551718711853,0.122291311621666,0.839334189891815,-0.529682040214539,0.103626772761345,0.838131666183472,-0.535534143447876,-0.11369464546442,-0.275496810674667,-0.954554915428162,-0.0978178530931473,-0.249695420265198,-0.963371157646179,-0.153864711523056,-0.177147716283798,-0.972082495689392,-0.169461771845818,-0.203338488936424,-0.964332044124603,-0.0248538702726364,-0.434342712163925,-0.900404810905457,-0.00671425461769104,-0.408946812152863,-0.912533521652222,-0.0569095686078072,-0.339870065450668,-0.938749074935913,-0.0742085352540016,-0.366142749786377,-0.927595019340515,0.217025578022003,0.710897326469421,-0.668972969055176,0.209388896822929,0.747902989387512,-0.629918694496155,0.240059658885002,0.728609383106232,-0.641482472419739,0.245515987277031,0.689253747463226,-0.681653261184692,0.00275124609470367,-0.61691951751709,-0.787021517753601,0.028340607881546,-0.590689778327942,-0.806400895118713,-0.00454424321651459,-0.525981962680817,-0.850483655929565,-0.0284584164619446,-0.554152131080627,-0.831928849220276,0.139781773090363,0.626756906509399,-0.766574740409851,0.12452295422554,0.64432954788208,-0.754541873931885,0.146171987056732,0.681180715560913,-0.717374801635742,0.163121894001961,0.664792358875275,-0.729000985622406,0.108491435647011,-0.678119719028473,-0.726899743080139,0.134476631879807,-0.656254768371582,-0.742459297180176,0.110325440764427,-0.599690020084381,-0.792590856552124,0.0860609859228134,-0.623385369777679,-0.777164220809937,0.131097286939621,0.369720458984375,-0.919847965240479,0.108963944017887,0.414394676685333,-0.903550803661346,0.156623214483261,0.488668382167816,-0.85829621553421,0.182658866047859,0.446485221385956,-0.875949084758759,0.00509090768173337,-0.795652389526367,-0.605732142925262,0.00335480226203799,-0.751137137413025,-0.66013765335083,-0.0289539135992527,-0.771460056304932,-0.63561874628067,-0.0294595025479794,-0.812839686870575,-0.581741988658905,0.081932470202446,0.257660776376724,-0.962755382061005,0.062606193125248,0.306537508964539,-0.949797451496124, +0.123711712658405,0.386613607406616,-0.913906574249268,0.146384090185165,0.339715510606766,-0.929066836833954,-1.43051147460938e-05,-0.859150588512421,-0.511722922325134,0.000721305550541729,-0.832363784313202,-0.554229140281677,-0.0217814166098833,-0.841359376907349,-0.540037155151367,-0.0238299854099751,-0.866472363471985,-0.498656123876572,-0.0913513526320457,0.178596392273903,-0.979672610759735,-0.104003340005875,0.218684554100037,-0.970237255096436,-0.0410293228924274,0.285666614770889,-0.957450389862061,-0.0271371118724346,0.246378466486931,-0.968793749809265,-0.0223562512546778,-0.899212896823883,-0.436939835548401,0.00635124836117029,-0.878118097782135,-0.478402018547058,-0.0338995419442654,-0.887247562408447,-0.460046231746674,-0.0641846507787704,-0.90489399433136,-0.420769602060318,-0.205808699131012,-0.0224006231874228,-0.978335916996002,-0.213114857673645,0.00393788563087583,-0.977019309997559,-0.139827042818069,0.0582818016409874,-0.988459289073944,-0.132366865873337,0.0319565832614899,-0.99068558216095,-0.132935494184494,-0.920167326927185,-0.368266582489014,-0.159711852669716,-0.915391027927399,-0.369528770446777,-0.135534316301346,-0.916004300117493,-0.377579808235168,-0.108153291046619,-0.921050190925598,-0.37412491440773,-0.280287981033325,-0.0651824846863747,-0.957700312137604,-0.206718638539314,-0.0152950566262007,-0.97828084230423,-0.200678884983063,-0.0375712253153324,-0.978936314582825,-0.27417927980423,-0.0873668938875198,-0.957701861858368,-0.266367048025131,-0.895506739616394,-0.356533765792847,-0.282627016305923,-0.890965282917023,-0.35539111495018,-0.29890912771225,-0.891725420951843,-0.339822471141815,-0.282749205827713,-0.896004140377045,-0.342387855052948,-0.411597788333893,-0.182611286640167,-0.892883241176605,-0.341116428375244,-0.143305659294128,-0.929033398628235,-0.337933987379074,-0.156041339039803,-0.928144335746765,-0.408201605081558,-0.195207551121712,-0.891776621341705,-0.231832906603813,-0.892459869384766,-0.387000143527985,-0.250348210334778,-0.886581599712372,-0.388971507549286, +-0.272487431764603,-0.887393891811371,-0.371863752603531,-0.253810346126556,-0.893046081066132,-0.371549487113953,-0.488295763731003,-0.363734215497971,-0.793262124061584,-0.424770653247833,-0.33927121758461,-0.839324116706848,-0.426299661397934,-0.339039415121078,-0.838642299175262,-0.489790797233582,-0.363471150398254,-0.792460560798645,-0.373537182807922,-0.799328863620758,-0.470683813095093,-0.39087250828743,-0.789126873016357,-0.473811745643616,-0.422812461853027,-0.792327165603638,-0.439826309680939,-0.40516921877861,-0.802344143390656,-0.438271641731262,-0.592712998390198,-0.510982096195221,-0.622566223144531,-0.583681166172028,-0.521627068519592,-0.622271299362183,-0.533405005931854,-0.510315418243408,-0.674579381942749,-0.542229533195496,-0.499570518732071,-0.675585985183716,-0.326408267021179,-0.774847447872162,-0.541358590126038,-0.365654408931732,-0.778833568096161,-0.50962245464325,-0.349423140287399,-0.789031982421875,-0.505304038524628,-0.310714900493622,-0.785207986831665,-0.535634815692902,-0.387276977300644,0.590368032455444,-0.708154141902924,-0.382877171039581,0.593329131603241,-0.708071827888489,-0.337454527616501,0.551818490028381,-0.762640655040741,-0.341710388660431,0.5487100481987,-0.76298850774765,-0.239396780729294,0.446370035409927,-0.862231373786926,-0.302497655153275,0.491613805294037,-0.816585004329681,-0.298203766345978,0.495121121406555,-0.816045224666595,-0.235283344984055,0.450009256601334,-0.861471712589264,-0.249461114406586,0.767525732517242,-0.590485632419586,-0.245924934744835,0.768762290477753,-0.590360462665558,-0.224962770938873,0.740339338779449,-0.633474111557007,-0.228410422801971,0.73895674943924,-0.633854568004608,-0.165431052446365,0.254982471466064,-0.952689170837402,-0.240299314260483,0.313811451196671,-0.918574273586273,-0.243261694908142,0.309212505817413,-0.919353783130646,-0.168169647455215,0.250214278697968,-0.953473567962646,-0.215692028403282,0.83072829246521,-0.513193428516388,-0.197900921106339,0.834402084350586,-0.514401078224182,-0.176035240292549,0.818288564682007,-0.547188758850098, +-0.193697884678841,0.813940405845642,-0.547706365585327,-0.0470269657671452,0.0578331425786018,-0.997218072414398,-0.126721411943436,0.131389051675797,-0.983198165893555,-0.137177884578705,0.114069998264313,-0.983956456184387,-0.0570686496794224,0.0402382425963879,-0.997559070587158,-0.100704580545425,0.871044456958771,-0.480770409107208,-0.0867600217461586,0.871051073074341,-0.483469694852829,-0.0745185241103172,0.863100528717041,-0.499504238367081,-0.0886490494012833,0.862512350082397,-0.498210787773132,0.0829321295022964,0.853473782539368,-0.514494657516479,0.0742172449827194,0.858589589595795,-0.50726306438446,0.0845198109745979,0.857001125812531,-0.508335947990417,0.0929755121469498,0.851237535476685,-0.516478538513184,0.240669131278992,0.762911081314087,-0.600037574768066,0.273897171020508,0.772570252418518,-0.572813749313354,0.290520250797272,0.764264523983002,-0.575758397579193,0.256583690643311,0.754020929336548,-0.604662954807281,0.266418874263763,0.658844709396362,-0.70352303981781,0.317502647638321,0.672285139560699,-0.668748676776886,0.332400411367416,0.660420000553131,-0.673316776752472,0.280370354652405,0.646503746509552,-0.709524810314178,0.230618059635162,0.38960400223732,-0.891641199588776,0.227897390723228,0.393791019916534,-0.890500664710999,0.304324597120285,0.423151135444641,-0.853422403335571,0.30725622177124,0.419043064117432,-0.854398429393768,0.217144966125488,-0.489774942398071,-0.844374775886536,0.217678278684616,-0.488435387611389,-0.845013022422791,0.114668667316437,-0.425170302391052,-0.897820353507996,0.113827243447304,-0.426320433616638,-0.897381901741028,0.0996979773044586,0.233236223459244,-0.967295825481415,0.101230144500732,0.228266894817352,-0.968321681022644,0.190921038389206,0.267739713191986,-0.944385826587677,0.189133524894714,0.272600114345551,-0.943354487419128,0.0964026898145676,-0.782649576663971,-0.614952266216278,0.12478905916214,-0.764877319335938,-0.631973385810852,0.100335597991943,-0.712218821048737,-0.694749772548676,0.0741796717047691,-0.732392013072968,-0.676830351352692, +-0.0579197704792023,0.0501860827207565,-0.997059047222137,-0.0522765591740608,0.0313022695481777,-0.998142004013062,0.0438283979892731,0.0843258053064346,-0.995473861694336,0.0377884544432163,0.103050217032433,-0.993958175182343,0.0623616799712181,-0.845756411552429,-0.52991247177124,0.0574694499373436,-0.804584383964539,-0.591050922870636,0.0264148116111755,-0.82090550661087,-0.570452809333801,0.0289187282323837,-0.859098851680756,-0.510992050170898,-0.134561166167259,-0.0678103864192963,-0.988582372665405,-0.039604727178812,-0.00725986110046506,-0.999189138412476,-0.0479688420891762,0.0198133531957865,-0.998652338981628,-0.142772167921066,-0.0406884141266346,-0.988918900489807,-0.0551410913467407,-0.920976161956787,-0.385697215795517,-0.0491953641176224,-0.90538477897644,-0.421732425689697,-0.0687819495797157,-0.908850073814392,-0.411413013935089,-0.0757410675287247,-0.923056125640869,-0.377134948968887,-0.290952086448669,-0.258678674697876,-0.921103835105896,-0.206082746386528,-0.191577911376953,-0.959597826004028,-0.218187883496284,-0.155231982469559,-0.963481783866882,-0.304035186767578,-0.222844809293747,-0.926230370998383,-0.133146941661835,-0.936195492744446,-0.325284540653229,-0.124955415725708,-0.932659864425659,-0.338425546884537,-0.135627299547195,-0.932449460029602,-0.33487805724144,-0.144096031785011,-0.935424566268921,-0.322827011346817,-0.401603609323502,-0.453526496887207,-0.795630753040314,-0.340333253145218,-0.38577127456665,-0.857527792453766,-0.35888335108757,-0.344727009534836,-0.86739045381546,-0.422608643770218,-0.413912326097488,-0.80627453327179,-0.251488208770752,-0.907692074775696,-0.335929960012436,-0.270436823368073,-0.901847243309021,-0.336950272321701,-0.253251403570175,-0.91382509469986,-0.317470580339432,-0.234009340405464,-0.918628990650177,-0.318371415138245,-0.4605593085289,-0.610211074352264,-0.644614338874817,-0.427100777626038,-0.552374839782715,-0.715868055820465,-0.450779736042023,-0.51701432466507,-0.727663338184357,-0.487126260995865,-0.576779544353485,-0.655769407749176, +-0.481986403465271,-0.75692343711853,-0.441311717033386,-0.510152220726013,-0.735529899597168,-0.445803344249725,-0.499994367361069,-0.774234175682068,-0.388029843568802,-0.470177471637726,-0.793658435344696,-0.386056303977966,-0.515622556209564,-0.731296718120575,-0.44647353887558,-0.519398510456085,-0.683928787708282,-0.512314856052399,-0.549656689167023,-0.654547035694122,-0.519081711769104,-0.548347234725952,-0.70423835515976,-0.450958609580994,0.110463328659534,0.111511990427971,-0.987604737281799,0.108165875077248,0.125560939311981,-0.986171722412109,0.0184903051704168,0.0785751640796661,-0.996736705303192,0.0204849559813738,0.0642560571432114,-0.997723162174225,-0.125142768025398,-0.142727836966515,-0.981818735599518,-0.0375474877655506,-0.0823574140667915,-0.995895326137543,-0.0442416407167912,-0.0538469478487968,-0.997568666934967,-0.13208295404911,-0.114127025008202,-0.984646677970886,0.259158551692963,0.247414529323578,-0.933607578277588,0.260144144296646,0.251345992088318,-0.932282269001007,0.176627412438393,0.213955283164978,-0.960742354393005,0.175440460443497,0.209872722625732,-0.961859703063965,-0.263711899518967,-0.324669778347015,-0.908320248126984,-0.189092129468918,-0.257468193769455,-0.947604477405548,-0.200807332992554,-0.219296991825104,-0.954769849777222,-0.276941418647766,-0.287037789821625,-0.917013049125671,0.340589225292206,0.430441796779633,-0.835894048213959,0.347557961940765,0.423820734024048,-0.836408734321594,0.275665789842606,0.39875853061676,-0.874642848968506,0.268959313631058,0.405513644218445,-0.873624503612518,-0.3947893679142,-0.440508902072906,-0.806283712387085,-0.335944324731827,-0.3789381980896,-0.862291872501373,-0.35006782412529,-0.343797236680984,-0.871353030204773,-0.411107242107391,-0.406232416629791,-0.816067576408386,0.390723764896393,0.563450157642365,-0.727914094924927,0.401548504829407,0.55429470539093,-0.72905158996582,0.34491029381752,0.534546375274658,-0.771555066108704,0.334515064954758,0.544015407562256,-0.769510865211487,-0.406282186508179,-0.706310510635376,-0.579707026481628, +-0.375369697809219,-0.734531223773956,-0.565297663211823,-0.365615576505661,-0.686572730541229,-0.628445029258728,-0.393277108669281,-0.656060636043549,-0.644140899181366,0.33950412273407,0.671461939811707,-0.658692479133606,0.291554480791092,0.659038901329041,-0.693299233913422,0.275920689105988,0.670584619045258,-0.688610196113586,0.323176562786102,0.682528078556061,-0.655524492263794,-0.490003556013107,-0.726711630821228,-0.481442391872406,-0.461723446846008,-0.749261319637299,-0.474783152341843,-0.463165402412415,-0.70799857378006,-0.533118963241577,-0.4891057908535,-0.683634102344513,-0.541682600975037,0.296406805515289,0.767045557498932,-0.569020390510559,0.238821744918823,0.771479666233063,-0.589731574058533,0.19609060883522,0.791919112205505,-0.57828426361084,0.252479940652847,0.787131547927856,-0.56274151802063,-0.401255398988724,-0.834136724472046,-0.378430992364883,-0.379969507455826,-0.844880282878876,-0.376564085483551,-0.391304969787598,-0.821115732192993,-0.415511041879654,-0.411553233861923,-0.809179425239563,-0.419347941875458,0.0894371792674065,0.856602430343628,-0.508166491985321,0.0403161384165287,0.862377762794495,-0.504657447338104,-0.0075511047616601,0.86933159828186,-0.494171679019928,0.0406300611793995,0.863179504871368,-0.503259718418121,-0.311336189508438,-0.892220616340637,-0.327127248048782,-0.296077251434326,-0.896914124488831,-0.328456223011017,-0.310442090034485,-0.884917795658112,-0.347197681665421,-0.325435370206833,-0.879406630992889,-0.347470581531525,-0.888191223144531,0.349652051925659,0.298093676567078,-0.894240617752075,0.321154832839966,0.311758428812027,-0.896567463874817,0.317746609449387,0.308551281690598,-0.890531301498413,0.346532166004181,0.294736325740814,-0.0743785798549652,-0.932707071304321,-0.352881491184235,-0.0604658052325249,-0.93631786108017,-0.34590870141983,-0.0470512434840202,-0.937022686004639,-0.346085011959076,-0.0610114485025406,-0.933133184909821,-0.354316413402557,-0.137411817908287,0.80719518661499,-0.574068069458008,-0.158337086439133,0.800662279129028,-0.577814340591431, +-0.14472608268261,0.826266944408417,-0.544368743896484,-0.12305660545826,0.831159591674805,-0.542246043682098,-0.00398542685434222,-0.914265513420105,-0.405095845460892,0.0240515060722828,-0.922156870365143,-0.386067926883698,0.0453769937157631,-0.919988512992859,-0.389309734106064,0.0169184431433678,-0.911750078201294,-0.410396844148636,-0.265387892723083,0.683680653572083,-0.67981618642807,-0.299381136894226,0.662160277366638,-0.686960577964783,-0.289023905992508,0.716369867324829,-0.63504296541214,-0.252838492393494,0.734833896160126,-0.629358291625977,0.155950322747231,-0.824407279491425,-0.544088304042816,0.19923996925354,-0.839658141136169,-0.505250215530396,0.218371540307999,-0.832549035549164,-0.509093403816223,0.174562230706215,-0.816981494426727,-0.54960823059082,-0.244115442037582,0.571670651435852,-0.783326506614685,-0.276322036981583,0.542855381965637,-0.793066322803497,-0.284486800432205,0.611401975154877,-0.73841381072998,-0.249542653560638,0.637320101261139,-0.729075968265533,0.177925109863281,-0.634720623493195,-0.751978993415833,0.169345334172249,-0.639724731445313,-0.749716281890869,0.23057547211647,-0.670260012149811,-0.705398142337799,0.239391013979912,-0.665368020534515,-0.707090854644775,-0.309788018465042,0.413710296154022,-0.856081247329712,-0.336541384458542,0.489631175994873,-0.80436384677887,-0.308474689722061,0.517807304859161,-0.797946870326996,-0.284115582704544,0.443823546171188,-0.849881827831268,0.0821941271424294,-0.517099678516388,-0.851969659328461,0.0769213661551476,-0.519396960735321,-0.851064085960388,0.149560391902924,-0.558799982070923,-0.815704822540283,0.154921859502792,-0.556470692157745,-0.816296279430389,-0.242018789052963,0.228101551532745,-0.943078339099884,-0.289635211229324,0.312699824571609,-0.904616117477417,-0.266065835952759,0.345319747924805,-0.899979591369629,-0.220404878258705,0.261886477470398,-0.939594268798828,0.0152236446738243,-0.298789829015732,-0.954197585582733,0.0197957437485456,-0.286466389894485,-0.9578857421875,0.0960854515433311,-0.347491323947906,-0.9327472448349, +0.0911989733576775,-0.359380155801773,-0.92872416973114,-0.1277085095644,0.0492064952850342,-0.990590393543243,-0.192017048597336,0.133220434188843,-0.972307443618774,-0.174684122204781,0.164075791835785,-0.970857739448547,-0.111407287418842,0.080368734896183,-0.990519762039185,-0.0808677896857262,-0.069196954369545,-0.994319975376129,-0.0702384635806084,-0.0460241921246052,-0.9964679479599,0.00435144128277898,-0.12157267332077,-0.992573082447052,-0.00615651160478592,-0.144441485404968,-0.989494264125824,-0.0740854814648628,-0.515519261360168,-0.853669285774231,0.00505027920007706,-0.465961933135986,-0.884790360927582,-0.0826798900961876,-0.488551318645477,-0.868609070777893,-0.162272334098816,-0.530356466770172,-0.832099556922913,-0.437502205371857,-0.71112334728241,-0.550359427928925,-0.41138756275177,-0.771661639213562,-0.485075950622559,-0.397630929946899,-0.773503482341766,-0.4935402572155,-0.424820125102997,-0.710121750831604,-0.561475694179535,-0.460241258144379,-0.712572872638702,-0.5295450091362,-0.431644350290298,-0.773173987865448,-0.464634448289871,-0.422648429870605,-0.771883606910706,-0.474935859441757,-0.451396346092224,-0.712535858154297,-0.537153720855713,-0.486286103725433,-0.765650153160095,-0.421077013015747,-0.52402275800705,-0.75419282913208,-0.395718783140182,-0.514821469783783,-0.697078108787537,-0.49904003739357,-0.475664913654327,-0.706329107284546,-0.524253904819489,-0.414216756820679,-0.765332460403442,-0.492636471986771,-0.381340801715851,-0.782328307628632,-0.492485105991364,-0.43428635597229,-0.715347051620483,-0.547424912452698,-0.461647510528564,-0.708486139774323,-0.533787369728088,-0.478830248117447,-0.730527997016907,-0.486878395080566,-0.483136296272278,-0.739520609378815,-0.468709588050842,-0.489895224571228,-0.703206300735474,-0.515270471572876,-0.477152824401855,-0.713715195655823,-0.512772619724274,-0.518868088722229,-0.743839263916016,-0.421282649040222,-0.527337789535522,-0.726931035518646,-0.439870685338974,-0.533039629459381,-0.713780581951141,-0.454297482967377,-0.523204028606415,-0.734548687934875,-0.432083129882813, +-0.77415132522583,0.632029891014099,0.0350434482097626,-0.711883544921875,0.700171709060669,-0.054602175951004,-0.700607180595398,0.708538115024567,-0.0844002962112427,-0.772433638572693,0.634823322296143,0.0185937881469727,-0.600359737873077,0.752031743526459,0.272059768438339,-0.5765221118927,0.798001646995544,0.175544232130051,-0.551493227481842,0.813477754592896,0.184686630964279,-0.571176528930664,0.772916674613953,0.276328176259995,-0.444144159555435,0.845506072044373,0.29640457034111,-0.452882766723633,0.843263506889343,0.28948912024498,-0.495996415615082,0.792129814624786,0.355693489313126,-0.494427442550659,0.784944832324982,0.373367220163345,-0.309681802988052,0.865931034088135,0.392760574817657,-0.31217685341835,0.869479537010193,0.382819622755051,-0.351775884628296,0.808486580848694,0.471808522939682,-0.351772904396057,0.801583111286163,0.483446568250656,-0.110025592148304,0.858887732028961,0.500206172466278,-0.132003396749496,0.865515291690826,0.483175456523895,-0.180357113480568,0.806835293769836,0.562572777271271,-0.158967167139053,0.799924314022064,0.578662693500519,-0.0250877663493156,0.847214698791504,0.530657947063446,-0.0718158036470413,0.853247344493866,0.516537964344025,-0.134178966283798,0.792883455753326,0.594417333602905,-0.0879823267459869,0.78642213344574,0.611391425132751,-0.989354252815247,0.0918297171592712,0.112895980477333,-0.936034500598907,0.350993305444717,-0.025359321385622,-0.80121123790741,0.572598278522491,-0.173758178949356,-0.937942981719971,0.344720900058746,-0.0378217995166779,0.923008680343628,-0.0770562589168549,0.376984566450119,0.917807221412659,-0.106432415544987,0.382494747638702,0.918415307998657,-0.128417879343033,0.374195575714111,0.92399263381958,-0.099411278963089,0.369262903928757,0.937817513942719,-0.0352030992507935,0.345339059829712,0.938217401504517,-0.0424614250659943,0.343431562185287,0.927151024341583,-0.0458383485674858,0.371873438358307,0.926037788391113,-0.0389718897640705,0.375413596630096,0.950337648391724,0.14926840364933,0.273088723421097,0.950064241886139,0.147760570049286,0.274854123592377, +0.933046042919159,0.117958381772041,0.33986908197403,0.933185994625092,0.120549879968166,0.338573038578033,0.97606348991394,0.122951507568359,0.179396331310272,0.968352437019348,0.0652783736586571,0.240899324417114,0.964547634124756,0.0891765877604485,0.248385980725288,0.971073269844055,0.147339388728142,0.187903806567192,0.744693875312805,-0.304180711507797,-0.594058275222778,0.61673504114151,-0.164119556546211,-0.769871950149536,0.743436217308044,-0.301942020654678,-0.596769392490387,0.764072477817535,-0.278742015361786,-0.581804275512695,0.715566337108612,-0.355214536190033,-0.601487696170807,0.723672211170197,-0.339168012142181,-0.601052045822144,0.713761031627655,-0.352629750967026,-0.605142533779144,0.705477833747864,-0.368594706058502,-0.605342149734497,0.699914813041687,-0.386876165866852,-0.600371718406677,0.69873172044754,-0.381029009819031,-0.605467557907104,0.697156190872192,-0.383263289928436,-0.60587340593338,0.698432147502899,-0.389296680688858,-0.600533604621887,0.583813071250916,-0.567445337772369,-0.580661833286285,0.586674630641937,-0.564924836158752,-0.580235242843628,0.58071631193161,-0.549687325954437,-0.60051017999649,0.578248798847198,-0.552420556545258,-0.600383102893829,0.476980209350586,-0.686945736408234,-0.548265814781189,0.472406804561615,-0.688550174236298,-0.550209522247314,0.461961895227432,-0.676227688789368,-0.573853015899658,0.466234594583511,-0.673773109912872,-0.573284566402435,0.312055349349976,-0.751949608325958,0.580683410167694,0.312176883220673,-0.751867592334747,0.580724239349365,0.295592069625854,-0.750769019126892,0.590737879276276,0.295421063899994,-0.750892877578735,0.590666055679321,0.497323453426361,-0.43543666601181,0.750376164913177,0.497461438179016,-0.443381190299988,0.745617389678955,0.497307926416397,-0.443363428115845,0.745730340480804,0.497126162052155,-0.434946537017822,0.750791132450104,0.649441659450531,-0.352965801954269,0.673528611660004,0.65599662065506,-0.358424156904221,0.664229333400726,0.650028824806213,-0.360666066408157,0.668866693973541,0.64345794916153,-0.355993419885635,0.677665591239929, +0.782651662826538,-0.277614533901215,0.557123422622681,0.77250474691391,-0.27819436788559,0.570827841758728,0.781863689422607,-0.271312773227692,0.561318635940552,0.791804134845734,-0.270587712526321,0.547566115856171,0.874651730060577,-0.192925542593002,0.444706976413727,0.872142791748047,-0.194885760545731,0.448761165142059,0.874509394168854,-0.19207726418972,0.445353448390961,0.876976013183594,-0.189982607960701,0.441383838653564,0.977866888046265,-0.018029622733593,0.208450019359589,0.976993680000305,-0.00664628949016333,0.213164538145065,0.976346075534821,-0.00997184216976166,0.215983629226685,0.977188229560852,-0.0214064717292786,0.211293578147888,0.986531615257263,0.0391861870884895,0.158807903528214,0.988089501857758,0.0426361300051212,0.147856369614601,0.987287998199463,0.0353615395724773,0.154958426952362,0.985520482063293,0.0324036404490471,0.166431680321693,0.979318261146545,0.198458850383759,0.0393701829016209,0.980784475803375,0.191659420728683,0.0364499911665916,0.980298459529877,0.194434195756912,0.0347908437252045,0.978921413421631,0.200809508562088,0.0372617095708847,0.898562908172607,0.415215879678726,-0.142058521509171,0.892109990119934,0.426207304000854,-0.149957269430161,0.899731934070587,0.410056084394455,-0.149453908205032,0.905861735343933,0.399453401565552,-0.14089623093605,0.671529114246368,0.671345591545105,-0.313598096370697,0.674309015274048,0.669174313545227,-0.312270939350128,0.671602308750153,0.670870363712311,-0.314457416534424,0.668852746486664,0.672781050205231,-0.316230475902557,0.542279243469238,0.752197861671448,-0.374341428279877,0.539473235607147,0.753174424171448,-0.376426726579666,0.542119085788727,0.755352318286896,-0.368170768022537,0.544863045215607,0.75417572259903,-0.366528570652008,0.432879149913788,0.803105652332306,-0.40943506360054,0.432465523481369,0.803317844867706,-0.409455835819244,0.432884812355042,0.803214609622955,-0.409215211868286,0.433305084705353,0.803143084049225,-0.408910572528839,0.325165778398514,0.843388915061951,-0.427741199731827,0.315835237503052,0.846660256385803,-0.428269177675247, +0.306855112314224,0.852007150650024,-0.424174249172211,0.316230058670044,0.848977029323578,-0.423363417387009,0.176230043172836,0.869540870189667,-0.461347550153732,0.183391556143761,0.875628411769867,-0.44681391119957,0.177992939949036,0.876625716686249,-0.447041213512421,0.171050831675529,0.870571792125702,-0.461353003978729,0.196386098861694,0.862151682376862,-0.467040628194809,0.291743814945221,0.838185429573059,-0.460793733596802,0.197113797068596,0.864766180515289,-0.461872041225433,0.10003125667572,0.88096809387207,-0.462481260299683,0.00677105691283941,0.489836245775223,-0.871788144111633,-0.00122027099132538,0.491388827562332,-0.870939552783966,0.00496560288593173,0.480943351984024,-0.876737594604492,0.0129119846969843,0.47930583357811,-0.877552926540375,0.172102823853493,0.461741775274277,-0.870158195495605,0.167310073971748,0.463179528713226,-0.870328783988953,0.171219110488892,0.458458214998245,-0.872066557407379,0.176016733050346,0.457064270973206,-0.871843099594116,0.352034568786621,0.397310465574265,-0.847476303577423,0.361800014972687,0.393069684505463,-0.845338404178619,0.352048099040985,0.397352367639542,-0.847451090812683,0.342320382595062,0.401790231466293,-0.849341750144958,0.517341613769531,0.309771597385406,-0.797746419906616,0.519069910049438,0.308813959360123,-0.796994507312775,0.516385853290558,0.307397872209549,-0.799282371997833,0.514699518680573,0.308467179536819,-0.799957752227783,0.676283299922943,0.198463663458824,-0.709403336048126,0.663336217403412,0.211321070790291,-0.717863857746124,0.67327219247818,0.192295610904694,-0.713951647281647,0.68609619140625,0.179716944694519,-0.704963803291321,0.786761403083801,0.0432477295398712,-0.615740239620209,0.78569895029068,0.0435735732316971,-0.617072582244873,0.79378354549408,0.0559426546096802,-0.605622172355652,0.794396758079529,0.0550306066870689,-0.604901134967804,0.834675073623657,-0.137825310230255,-0.533218443393707,0.838247120380402,-0.151518687605858,-0.523816645145416,0.845963001251221,-0.121082842350006,-0.519312500953674,0.842169106006622,-0.106704607605934,-0.528550267219543, +0.872358858585358,-0.280283480882645,-0.4005386531353,0.874742150306702,-0.294273853302002,-0.385005325078964,0.868528187274933,-0.285222351551056,-0.405348241329193,0.866050004959106,-0.270694315433502,-0.420335859060287,0.867164254188538,-0.420392870903015,-0.267013221979141,0.865377902984619,-0.425903499126434,-0.264059573411942,0.8700892329216,-0.416896402835846,-0.262948989868164,0.871265172958374,-0.412006944417953,-0.266734391450882,0.823011338710785,-0.558139562606812,-0.105511248111725,0.823445081710815,-0.558868527412415,-0.0980016142129898,0.814929902553558,-0.567395210266113,-0.118119165301323,0.816341400146484,-0.564378440380096,-0.122734680771828,0.75054144859314,-0.655131459236145,0.0865475162863731,0.752871036529541,-0.652883768081665,0.0832353532314301,0.747182846069336,-0.661496758460999,0.0643424913287163,0.744352459907532,-0.66449511051178,0.0662245452404022,0.718609929084778,-0.685698509216309,0.115833431482315,0.725610494613647,-0.678610682487488,0.113916367292404,0.720545291900635,-0.682960331439972,0.119915530085564,0.712929248809814,-0.690772652626038,0.120685920119286,0.605512261390686,-0.774056136608124,0.184910804033279,0.615369558334351,-0.76477712392807,0.190882816910744,0.609787106513977,-0.768265426158905,0.194750815629959,0.599899649620056,-0.777459383010864,0.188884720206261,0.472791314125061,-0.842096745967865,0.259502500295639,0.476461231708527,-0.838100373744965,0.265654861927032,0.47534853219986,-0.838618099689484,0.266014128923416,0.471740543842316,-0.842496156692505,0.260117650032043,0.280834138393402,-0.886712074279785,0.367251843214035,0.287021070718765,-0.891428768634796,0.350676029920578,0.296980649232864,-0.890146493911743,0.345603585243225,0.290649801492691,-0.885718107223511,0.361975401639938,0.245634764432907,-0.887114882469177,0.390756666660309,0.234193563461304,-0.893033027648926,0.384246408939362,0.225104182958603,-0.894563317298889,0.386114805936813,0.236687824130058,-0.888389468193054,0.393374085426331,0.11714992672205,-0.899071395397186,0.4218370616436,0.139346688985825,-0.895437836647034,0.422816246747971, +0.159840568900108,-0.894653916358948,0.417187541723251,0.137660905718803,-0.898696005344391,0.416407257318497,-0.00306342542171478,-0.897757411003113,0.440479606389999,-0.00711539480835199,-0.896976351737976,0.44202134013176,-0.00290243327617645,-0.897376358509064,0.441256642341614,0.00118184089660645,-0.898064076900482,0.439863175153732,0.282316625118256,-0.468155711889267,0.837333679199219,0.274167716503143,-0.469360142946243,0.83936482667923,0.26604488492012,-0.470034658908844,0.841598272323608,0.274230718612671,-0.468674004077911,0.839727401733398,-0.323115438222885,-0.0529910996556282,-0.944874823093414,-0.323109209537506,-0.0529333911836147,-0.944880247116089,-0.323192477226257,-0.0537054687738419,-0.944808185100555,-0.184174194931984,-0.0720090419054031,-0.980252325534821,-0.25239497423172,-0.0633135810494423,-0.965550780296326,-0.184161961078644,-0.0718950405716896,-0.98026305437088,-0.11496552079916,-0.0796259790658951,-0.990173101425171,-0.146135240793228,-0.0736751928925514,-0.986517310142517,-0.00813935324549675,-0.0896892547607422,-0.995936572551727,-0.146145179867744,-0.0737664699554443,-0.986509084701538,-0.281309992074966,-0.0563443265855312,-0.95796149969101,-0.285988122224808,0.813705205917358,-0.506057918071747,-0.314341455698013,0.77822482585907,-0.543650329113007,-0.346594363451004,0.764816522598267,-0.543072760105133,-0.319248080253601,0.80301171541214,-0.503242313861847,-0.336994618177414,-0.0505270920693874,-0.94014984369278,-0.232041165232658,-0.0646713748574257,-0.970553755760193,-0.124275334179401,-0.078072302043438,-0.98917156457901,-0.232042968273163,-0.0646878704428673,-0.970552265644073,-0.425968766212463,0.39308825135231,-0.814881861209869,-0.48829248547554,0.417142242193222,-0.766526579856873,-0.468306481838226,0.436385810375214,-0.768281519412994,-0.40622740983963,0.412657409906387,-0.815287172794342,-0.471718907356262,0.498248010873795,-0.727482199668884,-0.371299207210541,0.52015882730484,-0.7691370844841,-0.406289994716644,0.583185970783234,-0.703436315059662,-0.499492466449738,0.556385219097137,-0.664035320281982, +-0.521550953388214,0.603533089160919,-0.603102385997772,-0.460981726646423,0.512541770935059,-0.724428653717041,-0.536022067070007,0.495491474866867,-0.683497309684753,-0.619549214839935,0.582276999950409,-0.526414513587952,-0.0835454612970352,-0.0833143293857574,-0.993015110492706,-0.0877188295125961,-0.0829142183065414,-0.992688596248627,-0.0835523754358292,-0.0833778753876686,-0.993009150028229,-0.07938302308321,-0.0838267877697945,-0.993313431739807,-0.0832157582044601,-0.0832563117146492,-0.993047595024109,-0.0832261368632317,-0.0833513811230659,-0.993038833141327,-0.083166316151619,-0.0828031376004219,-0.99308967590332,0.041564155369997,-0.0961443483829498,-0.994499206542969,-0.149985179305077,-0.0746686905622482,-0.985864698886871,-0.335957258939743,-0.0504672154784203,-0.940524280071259,-0.14996574819088,-0.0744911506772041,-0.985881090164185,-0.42602801322937,-0.765897750854492,-0.481560915708542,-0.42948591709137,-0.686061918735504,-0.587248563766479,-0.428914785385132,-0.655217945575714,-0.621869444847107,-0.159011676907539,-0.0754443630576134,-0.984389901161194,0.0755227878689766,-0.101570919156075,-0.991957485675812,0.305849850177765,-0.122010447084904,-0.944229483604431,0.0755211412906647,-0.101586118340492,-0.991956114768982,-0.206041678786278,-0.069024920463562,-0.976105749607086,-0.206044793128967,-0.0690534561872482,-0.976103067398071,-0.206021696329117,-0.0688419342041016,-0.976122915744781,-0.0185110792517662,-0.348749339580536,-0.937033295631409,-0.0137706827372313,-0.349275469779968,-0.936918914318085,0.00649238377809525,-0.38750159740448,-0.921846151351929,0.00177764124237001,-0.387151479721069,-0.922014355659485,-0.0539195761084557,-0.263338685035706,-0.963195443153381,-0.0420139282941818,-0.261267364025116,-0.964351773262024,-0.011989938095212,-0.300138115882874,-0.953820466995239,-0.0239583030343056,-0.30227866768837,-0.952918469905853,-0.0373049601912498,-0.150367349386215,-0.987926125526428,-0.054917935281992,-0.160848677158356,-0.985450029373169,-0.0535347461700439,-0.213627815246582,-0.975447177886963, +-0.0359568819403648,-0.203361570835114,-0.978443264961243,-0.0670275390148163,-0.0571367479860783,-0.996113896369934,-0.0674966499209404,-0.0601620897650719,-0.99590402841568,-0.0498278066515923,-0.105237931013107,-0.993198037147522,-0.0494517795741558,-0.102148734033108,-0.993539273738861,-0.0311339031904936,0.0554936192929745,-0.997973501682281,-0.0332601368427277,0.0523069575428963,-0.998077034950256,-0.0199349839240313,0.0100126732140779,-0.999751150608063,-0.0179243795573711,0.0134300123900175,-0.999749183654785,-0.0389366745948792,0.137434139847755,-0.989745378494263,-0.0364847593009472,0.136438325047493,-0.989976525306702,-0.0221186727285385,0.100704036653042,-0.994670569896698,-0.0246283374726772,0.101888880133629,-0.99449098110199,-0.00987518858164549,0.214359775185585,-0.976704835891724,-0.0196844153106213,0.210715144872665,-0.97734934091568,-0.0213720090687275,0.177833646535873,-0.983828544616699,-0.0116962045431137,0.182092368602753,-0.983211874961853,-0.0319187827408314,0.262040436267853,-0.964528918266296,-0.0168731510639191,0.264057338237762,-0.964359402656555,0.00267085805535316,0.243876710534096,-0.969802618026733,-0.0122663136571646,0.241596773266792,-0.970299303531647,-0.0820663720369339,0.29471617937088,-0.952054440975189,-0.101697936654091,0.291975170373917,-0.951003730297089,-0.118829935789108,0.268968015909195,-0.955790638923645,-0.0993075147271156,0.272738307714462,-0.956949353218079,-0.123103298246861,0.32093808054924,-0.93906569480896,-0.14087487757206,0.319797575473785,-0.936954617500305,-0.158047154545784,0.303223252296448,-0.939721643924713,-0.14031146466732,0.305265337228775,-0.941873610019684,-0.1789590716362,0.340120196342468,-0.92319655418396,-0.185566291213036,0.340163081884384,-0.921875476837158,-0.179445341229439,0.330221325159073,-0.926689505577087,-0.172770023345947,0.330477148294449,-0.927866041660309,0.0248680096119642,0.33263087272644,-0.94272917509079,0.0045425989665091,0.333753347396851,-0.94264954328537,-0.0156932510435581,0.33576488494873,-0.941815078258514,0.00456351088359952,0.334012567996979,-0.942557632923126, +-0.0289247408509254,0.33508226275444,-0.941744804382324,-0.0208441540598869,0.328777402639389,-0.944177389144897,-0.0119468197226524,0.327056109905243,-0.944929420948029,-0.0199308823794127,0.333823800086975,-0.942424833774567,-0.180372506380081,0.337500870227814,-0.92388254404068,-0.208815544843674,0.343867540359497,-0.91550600528717,-0.178167566657066,0.344687193632126,-0.921654582023621,-0.149277359247208,0.338997662067413,-0.928868591785431,-0.105257980525494,0.286945670843124,-0.952146530151367,-0.0945987328886986,0.282166600227356,-0.954690098762512,-0.0995143428444862,0.301818311214447,-0.948157548904419,-0.110428668558598,0.305936723947525,-0.945625901222229,-0.164163157343864,0.266718655824661,-0.949690341949463,-0.178336203098297,0.271118521690369,-0.945881128311157,-0.156064957380295,0.284370988607407,-0.945926427841187,-0.141754001379013,0.280169129371643,-0.949426710605621,-0.100757479667664,0.179587006568909,-0.978568553924561,-0.0821054056286812,0.167508810758591,-0.982445657253265,-0.0882246941328049,0.203536689281464,-0.975084245204926,-0.107286676764488,0.214653432369232,-0.970779895782471,-0.100295409560204,0.17935074865818,-0.978659451007843,-0.119329646229744,0.153964459896088,-0.980844259262085,-0.124377742409706,0.153904840350151,-0.980226278305054,-0.105269774794579,0.179441347718239,-0.978120267391205,-0.0771640241146088,0.090604342520237,-0.992893099784851,-0.0965534448623657,0.058703288435936,-0.993595242500305,-0.0983375981450081,0.0561175420880318,-0.993569612503052,-0.0788305699825287,0.0882400050759315,-0.992975115776062,-0.163929879665375,0.0549815334379673,-0.984938621520996,-0.185312747955322,0.0211228355765343,-0.982452630996704,-0.18710196018219,0.0181349664926529,-0.982173144817352,-0.165631756186485,0.0521730668842793,-0.984806656837463,-0.202842265367508,-0.0172700136899948,-0.979059159755707,-0.229768842458725,-0.0508792847394943,-0.971914410591125,-0.235275536775589,-0.0515880063176155,-0.970558643341064,-0.208340868353844,-0.0179295018315315,-0.97789192199707,-0.253089338541031,-0.0880834683775902,-0.963424742221832, +-0.2569180727005,-0.139603674411774,-0.956296980381012,-0.238480687141418,-0.156826630234718,-0.958400905132294,-0.234810948371887,-0.105399057269096,-0.96630996465683,-0.194138810038567,-0.235033303499222,-0.952401995658875,-0.199492305517197,-0.28265506029129,-0.938247919082642,-0.18378584086895,-0.296166032552719,-0.9372878074646,-0.178718820214272,-0.249092116951942,-0.951847076416016,-0.177133649587631,-0.344010651111603,-0.922106564044952,-0.232868418097496,-0.357531666755676,-0.904402315616608,-0.270454257726669,-0.338959664106369,-0.901088714599609,-0.214774265885353,-0.32558611035347,-0.920796275138855,-0.246120601892471,-0.393018305301666,-0.885980486869812,-0.230709686875343,-0.439384788274765,-0.868167161941528,-0.200628682971001,-0.455594509840012,-0.867284119129181,-0.216828346252441,-0.410979986190796,-0.885483503341675,-0.226021468639374,-0.0664484649896622,-0.971853375434875,-0.225996315479279,-0.0662179812788963,-0.971875011920929,-0.226015046238899,-0.0663895756006241,-0.97185891866684,-0.116563744843006,-0.0800121203064919,-0.989955008029938,-0.116525746881962,-0.0796633660793304,-0.989987671375275,-0.116537623107433,-0.0797723382711411,-0.989977478981018,-0.175330892205238,-0.07304797321558,-0.981795847415924,-0.175335615873337,-0.0730910673737526,-0.981791853904724,-0.175319612026215,-0.0729445442557335,-0.981805562973022,-0.285188585519791,-0.448395729064941,-0.847117900848389,-0.265336006879807,-0.488439977169037,-0.831278085708618,-0.235151350498199,-0.501892745494843,-0.832350611686707,-0.255758464336395,-0.463766396045685,-0.848238408565521,-0.0556373968720436,-0.0874641910195351,-0.994612753391266,-0.159201607108116,-0.075222834944725,-0.984376192092896,-0.0556324534118176,-0.0874186828732491,-0.99461704492569,0.0485341809689999,-0.0987776815891266,-0.993925333023071,-0.14389668405056,-0.554457902908325,-0.819676876068115,-0.165534391999245,-0.56540310382843,-0.808033347129822,-0.183151215314865,-0.56129515171051,-0.80709570646286,-0.161405727267265,-0.550100326538086,-0.819352090358734, +-0.145606845617294,-0.077035054564476,-0.98633885383606,-0.16093185544014,-0.0750945508480072,-0.984104514122009,-0.145607605576515,-0.0770420059561729,-0.986338198184967,-0.1302400380373,-0.0788984894752502,-0.98833829164505,-0.178334534168243,-0.575607895851135,-0.798042893409729,-0.164757505059242,-0.587282478809357,-0.792435765266418,-0.149903178215027,-0.589845418930054,-0.793480575084686,-0.163607373833656,-0.579079210758209,-0.798686385154724,-0.256815254688263,-0.58197146654129,-0.771592676639557,-0.251363396644592,-0.582516431808472,-0.772975564002991,-0.245890289545059,-0.583290874958038,-0.774150907993317,-0.251363098621368,-0.582528471946716,-0.772966504096985,-0.239144444465637,-0.569854259490967,-0.786178052425385,-0.246678963303566,-0.570033192634583,-0.78371661901474,-0.252795249223709,-0.578291893005371,-0.775675892829895,-0.245186850428581,-0.578608453273773,-0.777878999710083,-0.162055820226669,-0.075070396065712,-0.983922004699707,-0.201878353953362,-0.0701500922441483,-0.976895153522491,-0.241348445415497,-0.0649519115686417,-0.968262434005737,-0.201867416501045,-0.0700487941503525,-0.9769047498703,-0.109528474509716,-0.0802369490265846,-0.990739941596985,-0.109531849622726,-0.080268070101738,-0.990737020969391,-0.109549760818481,-0.0804333239793777,-0.990721642971039,-0.146136909723282,-0.567205905914307,-0.810506939888,-0.170645520091057,-0.551876783370972,-0.816279530525208,-0.149948284029961,-0.550446629524231,-0.821294069290161,-0.125231966376305,-0.566194593906403,-0.814702868461609,-0.389287143945694,0.574226200580597,-0.720222055912018,-0.403772920370102,0.563849806785583,-0.720444858074188,-0.445705324411392,0.590627789497375,-0.672685384750366,-0.430997848510742,0.600610017776489,-0.673430323600769,-0.0932015255093575,-0.0821088701486588,-0.992255926132202,-0.0932056456804276,-0.082146905362606,-0.992252349853516,-0.0932208672165871,-0.0822872817516327,-0.992239236831665,-0.179521575570107,-0.0724091157317162,-0.981085598468781,-0.142578363418579,-0.0769629254937172,-0.986786842346191, +-0.220950394868851,-0.0669220983982086,-0.972986340522766,-0.302590161561966,-0.0559759028255939,-0.951475620269775,-0.259664505720139,-0.0619364604353905,-0.96371066570282,-0.216428324580193,-0.0672160759568214,-0.973981976509094,-0.259530693292618,-0.0615335591137409,-0.963772535324097,-0.212293073534966,-0.0678006708621979,-0.974851191043854,-0.194726198911667,-0.0702042132616043,-0.978341996669769,-0.224719703197479,-0.0664353668689728,-0.97215610742569,-0.249329805374146,-0.0636206567287445,-0.966326653957367,-0.276421010494232,-0.0600390657782555,-0.959159374237061,-0.258436352014542,-0.0625220015645027,-0.964003026485443,-0.173730611801147,-0.0732954069972038,-0.982061922550201,-0.253867149353027,-0.0629625469446182,-0.965187668800354,-0.2878577709198,-0.0583722144365311,-0.955892622470856,0.132262960076332,-0.0911403000354767,-0.987015724182129,0.126074478030205,-0.0976689904928207,-0.98720109462738,0.206698194146156,-0.235781386494637,-0.949569940567017,0.215634122490883,-0.238297641277313,-0.946950972080231,-0.305986076593399,0.717194855213165,-0.626102328300476,-0.339329808950424,0.735555112361908,-0.586356580257416,-0.318646669387817,0.744160890579224,-0.587102115154266,-0.285489469766617,0.726336538791656,-0.625244796276093,-0.334144413471222,0.289139956235886,-0.897076070308685,-0.336153447628021,0.28779274225235,-0.896758675575256,-0.391936302185059,0.332061737775803,-0.857974886894226,-0.389933586120605,0.333403617143631,-0.858366966247559,-0.202343761920929,0.807658612728119,-0.553845167160034,-0.229143440723419,0.820001661777496,-0.524491012096405,-0.205222323536873,0.824965298175812,-0.526608288288116,-0.178415089845657,0.813203513622284,-0.553956925868988,-0.310402274131775,0.05499267578125,-0.949013292789459,-0.304495245218277,0.0653569474816322,-0.950268983840942,-0.363470643758774,0.124020375311375,-0.923313617706299,-0.36958035826683,0.113828204572201,-0.922200441360474,-0.0403473526239395,0.854230344295502,-0.518326699733734,-0.0517176054418087,0.860286295413971,-0.507181227207184,-0.0393999367952347,0.859909355640411,-0.508923947811127, +-0.0279064923524857,0.854270040988922,-0.51908004283905,-0.204282075166702,-0.0960995703935623,-0.974183678627014,-0.193356513977051,-0.0771972686052322,-0.978086829185486,-0.252984821796417,-0.0101411789655685,-0.967417120933533,-0.264053761959076,-0.0289737582206726,-0.964072704315186,0.060147725045681,0.843154013156891,-0.534297406673431,0.0590910613536835,0.843502342700958,-0.533865213394165,0.0612136796116829,0.848341166973114,-0.525899350643158,0.0623418837785721,0.848057448863983,-0.526224434375763,-0.217512011528015,-0.116903342306614,-0.969031512737274,-0.160367473959923,-0.189176425337791,-0.968759298324585,-0.145680248737335,-0.164427906274796,-0.975572049617767,-0.202840238809586,-0.0920069515705109,-0.974879860877991,0.150553360581398,0.780711770057678,-0.60648387670517,0.110491648316383,0.800908923149109,-0.58850359916687,0.0798885077238083,0.828109741210938,-0.554844260215759,0.122382014989853,0.811688303947449,-0.571125984191895,-0.126806274056435,-0.295135080814362,-0.947003483772278,-0.0787168592214584,-0.372457027435303,-0.924705028533936,-0.0568408668041229,-0.339772492647171,-0.938788414001465,-0.105631642043591,-0.261460900306702,-0.959416568279266,0.202443808317184,0.680295169353485,-0.704425275325775,0.174935534596443,0.703340947628021,-0.68899142742157,0.172001332044601,0.741996347904205,-0.647963762283325,0.201890528202057,0.721331000328064,-0.662511885166168,-0.077653206884861,-0.500732481479645,-0.862112045288086,-0.0404170155525208,-0.567159414291382,-0.822615742683411,-0.0166048537939787,-0.539552092552185,-0.841788411140442,-0.0552985146641731,-0.47138512134552,-0.880192160606384,0.208900988101959,0.674805343151093,-0.707812249660492,0.190643414855003,0.637941598892212,-0.746113717556,0.174496993422508,0.654500305652618,-0.735649466514587,0.191165745258331,0.690185129642487,-0.697925627231598,0.0395874343812466,-0.580791532993317,-0.81308913230896,0.0684783607721329,-0.639040470123291,-0.766118824481964,0.0929490625858307,-0.615859746932983,-0.782353758811951,0.0624360665678978,-0.555892825126648,-0.828905820846558, +0.230100959539413,0.516483545303345,-0.824801981449127,0.181664422154427,0.448090791702271,-0.87533575296402,0.16056852042675,0.482580184936523,-0.861007690429688,0.205895379185677,0.548921704292297,-0.810118675231934,0.00758083257824183,-0.830162882804871,-0.557469546794891,0.0424288958311081,-0.814898073673248,-0.578049182891846,0.0454483814537525,-0.774235844612122,-0.631263434886932,0.0126962661743164,-0.792452156543732,-0.609801948070526,0.0166785549372435,-0.875903069972992,-0.48219883441925,0.0406713224947453,-0.869174301624298,-0.492830663919449,0.0450806431472301,-0.844179630279541,-0.534161388874054,0.0222550202161074,-0.852488994598389,-0.522271335124969,0.0559844225645065,0.316890776157379,-0.946808338165283,-0.0247165560722351,0.240067318081856,-0.970441579818726,-0.0394525825977325,0.281597524881363,-0.958721280097961,0.0397234261035919,0.357345402240753,-0.933127224445343,-0.070529006421566,-0.914506733417511,-0.398375451564789,-0.00790929887443781,-0.908875107765198,-0.416993618011475,0.0444788783788681,-0.886680424213409,-0.460238605737686,-0.0162715762853622,-0.898503124713898,-0.438665628433228,-0.0648711696267128,0.103101640939713,-0.992553234100342,-0.136570438742638,0.0443673878908157,-0.989636421203613,-0.145366027951241,0.0748100578784943,-0.986545562744141,-0.0741386860609055,0.133361756801605,-0.98829060792923,-0.0769458711147308,-0.925755798816681,-0.370210409164429,-0.0948379039764404,-0.925073266029358,-0.367756962776184,-0.114110514521599,-0.920831561088562,-0.372891664505005,-0.0964765250682831,-0.921228051185608,-0.37687012553215,-0.338438302278519,-0.154677093029022,-0.928188800811768,-0.343118757009506,-0.137791365385056,-0.929130256175995,-0.270491033792496,-0.0936769396066666,-0.958154082298279,-0.266001850366592,-0.110704749822617,-0.957594633102417,-0.319948613643646,-0.890387237071991,-0.32379561662674,-0.305468171834946,-0.88977438211441,-0.339102983474731,-0.32101708650589,-0.885299801826477,-0.336440712213516,-0.33527335524559,-0.886190593242645,-0.319778233766556,-0.464251220226288,-0.256567060947418,-0.847728788852692, +-0.466035187244415,-0.249069347977638,-0.848985075950623,-0.39868825674057,-0.215535312891006,-0.891399145126343,-0.397087275981903,-0.22314664721489,-0.890240073204041,-0.291490703821182,-0.888190507888794,-0.355177283287048,-0.271540820598602,-0.887549757957458,-0.372184187173843,-0.289719551801682,-0.881723761558533,-0.37232506275177,-0.309676349163055,-0.882609367370605,-0.353696674108505,-0.53448361158371,-0.410655856132507,-0.738707780838013,-0.531143605709076,-0.414187550544739,-0.73914498090744,-0.472164213657379,-0.393810838460922,-0.788653373718262,-0.475458443164825,-0.390265762805939,-0.788436353206635,-0.436543881893158,-0.803388595581055,-0.404964447021484,-0.408579885959625,-0.800360679626465,-0.438731342554092,-0.426040232181549,-0.790373623371124,-0.440226495265961,-0.45417121052742,-0.793603718280792,-0.404872357845306,-0.506235957145691,-0.457195729017258,-0.731229960918427,-0.561386466026306,-0.471656978130341,-0.679989039897919,-0.554561734199524,-0.480037480592728,-0.679724514484406,-0.499584764242172,-0.465648174285889,-0.730470359325409,-0.38481792807579,-0.792426407337189,-0.473260462284088,-0.349935322999954,-0.788698434829712,-0.505470156669617,-0.366040527820587,-0.778573215007782,-0.509743332862854,-0.401336699724197,-0.782476782798767,-0.476087093353271,-0.270657420158386,0.520287215709686,-0.809966504573822,-0.28179606795311,0.510739088058472,-0.812241733074188,-0.342868715524673,0.547752022743225,-0.763157248497009,-0.331232964992523,0.556899309158325,-0.761674404144287,-0.186961352825165,0.378118574619293,-0.906681776046753,-0.188620328903198,0.376938939094543,-0.906829357147217,-0.258005887269974,0.426751434803009,-0.866784930229187,-0.256307035684586,0.427913457155228,-0.866716086864471,-0.14703194797039,0.734128475189209,-0.662900447845459,-0.201117560267448,0.750790059566498,-0.629178881645203,-0.169360190629959,0.76347827911377,-0.623232007026672,-0.116427570581436,0.747674167156219,-0.653779804706573,-0.111970759928226,0.152831807732582,-0.98188853263855,-0.106365978717804,0.162488728761673,-0.980960607528687, +-0.185218647122383,0.227427780628204,-0.956018149852753,-0.191166654229164,0.218015104532242,-0.957039594650269,-0.152110368013382,0.800178647041321,-0.580152273178101,-0.178791522979736,0.817679941654205,-0.547204792499542,-0.160828143358231,0.821858823299408,-0.546518385410309,-0.134483054280281,0.805050492286682,-0.577761292457581,0.0281815081834793,-0.0946744978427887,-0.99510931968689,0.0410254336893559,-0.0700253397226334,-0.996701240539551,-0.0660570114850998,0.0268105082213879,-0.997455596923828,-0.0799987316131592,0.00270846881903708,-0.996791362762451,-0.0415313057601452,0.854935765266418,-0.517068862915039,-0.0562219396233559,0.863633334636688,-0.500975549221039,-0.0415056832134724,0.863829374313354,-0.502072036266327,-0.0268028844147921,0.855747997760773,-0.516698181629181,-0.0135480388998985,-0.164092600345612,-0.98635196685791,0.062826119363308,-0.285856783390045,-0.956210732460022,0.097880445420742,-0.228901505470276,-0.968516230583191,0.0199511889368296,-0.105358228087425,-0.994234204292297,0.0417785346508026,0.857204020023346,-0.513279616832733,0.0321934781968594,0.859492421150208,-0.510133564472198,0.0245881080627441,0.864575564861298,-0.501901090145111,0.0345408767461777,0.862908005714417,-0.504179358482361,0.206961542367935,0.750515341758728,-0.627609491348267,0.191412374377251,0.760043859481812,-0.62104332447052,0.229096114635468,0.769202888011932,-0.596524953842163,0.245567977428436,0.76023143529892,-0.601452171802521,0.228637307882309,0.626630842685699,-0.745022654533386,0.216135144233704,0.639191210269928,-0.73805159330368,0.273143947124481,0.652868747711182,-0.706508815288544,0.286689460277557,0.640735149383545,-0.71222722530365,0.365209341049194,0.464332759380341,-0.806856393814087,0.29554694890976,0.437170565128326,-0.849431574344635,0.291138887405396,0.443428844213486,-0.84770804643631,0.360455811023712,0.470440328121185,-0.805454850196838,0.0416578054428101,-0.318497121334076,-0.947008013725281,0.104936599731445,-0.438301235437393,-0.892681539058685,0.147283971309662,-0.379936307668686,-0.913211941719055, +0.0805400088429451,-0.256550639867783,-0.96316933631897,0.258913725614548,0.337881118059158,-0.904875695705414,0.174933850765228,0.303296953439713,-0.93670117855072,0.174596771597862,0.303119033575058,-0.936821699142456,0.258624762296677,0.33773136138916,-0.905014216899872,0.0168241709470749,-0.696035623550415,-0.717810153961182,0.0478335469961166,-0.751249432563782,-0.658282876014709,0.0749261230230331,-0.731501817703247,-0.6777104139328,0.0416176207363605,-0.673848509788513,-0.737696588039398,0.119221530854702,0.184194907546043,-0.975632309913635,0.0256287008523941,0.137545585632324,-0.990163922309875,0.0294458456337452,0.125291615724564,-0.991682946681976,0.123466342687607,0.172116637229919,-0.977308571338654,0.0713707283139229,-0.874609351158142,-0.479546457529068,0.105091482400894,-0.862860918045044,-0.494395524263382,0.107260659337044,-0.825739085674286,-0.55376011133194,0.075623095035553,-0.84025251865387,-0.536895632743835,-0.22491067647934,-0.135405406355858,-0.964925169944763,-0.214222818613052,-0.168300569057465,-0.962176501750946,-0.123027943074703,-0.102952018380165,-0.987048625946045,-0.133351162075996,-0.0698540359735489,-0.988604068756104,-0.0295228362083435,-0.929440379142761,-0.367789417505264,-0.00878830999135971,-0.927497565746307,-0.373726040124893,0.000955402851104736,-0.913067817687988,-0.407806783914566,-0.0189980417490005,-0.916302263736725,-0.400036513805389,-0.376282960176468,-0.304905891418457,-0.874896287918091,-0.360044121742249,-0.34315025806427,-0.867534577846527,-0.284587651491165,-0.274955868721008,-0.918373107910156,-0.299178808927536,-0.235833331942558,-0.924594342708588,-0.0962352156639099,-0.940977036952972,-0.324501216411591,-0.085067093372345,-0.941663980484009,-0.325626462697983,-0.0753701403737068,-0.938311398029327,-0.337477385997772,-0.0863880217075348,-0.938166201114655,-0.335233360528946,-0.477203696966171,-0.475235104560852,-0.739207863807678,-0.453144431114197,-0.513904511928558,-0.728397071361542,-0.404404491186142,-0.448485136032104,-0.797068476676941,-0.425633043050766,-0.408100724220276,-0.807644903659821, +-0.277008414268494,-0.912734031677246,-0.30030483007431,-0.295957177877426,-0.901770532131195,-0.314990937709808,-0.314473539590836,-0.895929396152496,-0.313714861869812,-0.295594036579132,-0.907927989959717,-0.297137945890427,-0.527864158153534,-0.612350583076477,-0.588545918464661,-0.499856203794479,-0.643544554710388,-0.579650163650513,-0.477768421173096,-0.589035153388977,-0.651747643947601,-0.50299996137619,-0.55586040019989,-0.661823511123657,-0.498107939958572,-0.798492729663849,-0.338079899549484,-0.515605449676514,-0.763554155826569,-0.388762176036835,-0.543014943599701,-0.743693649768829,-0.389941871166229,-0.526760995388031,-0.780509412288666,-0.336642444133759,-0.511385321617126,-0.630841612815857,-0.583544194698334,-0.519470036029816,-0.683728039264679,-0.512510359287262,-0.486780166625977,-0.713147222995758,-0.504446446895599,-0.481549441814423,-0.662649214267731,-0.573590695858002,-0.0596713088452816,-0.00858242157846689,-0.998181223869324,-0.0557414256036282,-0.0292246006429195,-0.998017430305481,0.0346988178789616,0.0239024944603443,-0.999112010002136,0.0306114703416824,0.0442949011921883,-0.998549461364746,-0.207456469535828,-0.201557889580727,-0.957254528999329,-0.198438331484795,-0.233306586742401,-0.951940298080444,-0.115182414650917,-0.170790866017342,-0.978551805019379,-0.123437076807022,-0.138906747102737,-0.982582449913025,0.104985632002354,0.125938698649406,-0.986467242240906,0.192637652158737,0.169129520654678,-0.9665846824646,0.191626757383347,0.178667575120926,-0.965068459510803,0.104282885789871,0.13571335375309,-0.985244691371918,-0.343146920204163,-0.358500182628632,-0.868175029754639,-0.329528391361237,-0.391920626163483,-0.858958184719086,-0.261303514242172,-0.3301742374897,-0.907031118869781,-0.273135244846344,-0.296114265918732,-0.915266931056976,0.209775120019913,0.346539825201035,-0.914278149604797,0.287267535924911,0.374828100204468,-0.881465435028076,0.29212811589241,0.371051520109177,-0.8814657330513,0.214518755674362,0.342726647853851,-0.914614796638489,-0.463836401700974,-0.463049650192261,-0.755275368690491, +-0.444803297519684,-0.496813952922821,-0.745202004909515,-0.39679890871048,-0.436933517456055,-0.807242155075073,-0.413316488265991,-0.40207576751709,-0.817009568214417,0.28193724155426,0.512050628662109,-0.811366498470306,0.344416409730911,0.532480895519257,-0.773202180862427,0.353966176509857,0.523853719234467,-0.774780750274658,0.291053116321564,0.503164947032928,-0.81370347738266,-0.346172511577606,-0.628140568733215,-0.69685298204422,-0.367893695831299,-0.682419955730438,-0.631630659103394,-0.337632358074188,-0.713537812232971,-0.613895952701569,-0.319441646337509,-0.66164892911911,-0.678364098072052,0.363164395093918,0.696053564548492,-0.61937153339386,0.380215108394623,0.685412526130676,-0.621004164218903,0.337562739849091,0.672959864139557,-0.658161461353302,0.321060091257095,0.684116244316101,-0.654908657073975,-0.449331223964691,-0.665519058704376,-0.595974802970886,-0.457695543766022,-0.711371600627899,-0.533352971076965,-0.429301172494888,-0.735939741134644,-0.523539185523987,-0.423612147569656,-0.69197940826416,-0.584565937519073,0.356768846511841,0.760166347026825,-0.543012976646423,0.349444448947906,0.76438707113266,-0.541849732398987,0.34482678771019,0.74163031578064,-0.575394630432129,0.351689606904984,0.736930429935455,-0.577276468276978,-0.370596766471863,-0.808820068836212,-0.456583231687546,-0.36430835723877,-0.834780693054199,-0.412820279598236,-0.342167466878891,-0.846261322498322,-0.408366441726685,-0.349780529737473,-0.821565508842468,-0.450204193592072,0.161225840449333,0.847706198692322,-0.505371510982513,0.139303147792816,0.851242542266846,-0.50594562292099,0.160298988223076,0.843250572681427,-0.513062238693237,0.181843340396881,0.838053643703461,-0.514392077922821,-0.281923800706863,-0.884815812110901,-0.370971649885178,-0.269572407007217,-0.897736191749573,-0.348425835371017,-0.25359645485878,-0.902548849582672,-0.347986340522766,-0.266404837369919,-0.890470147132874,-0.368905663490295,-0.0391357019543648,0.86369526386261,-0.502492785453796,-0.0530088618397713,0.854387164115906,-0.516926288604736, +-0.0667907819151878,0.852974951267242,-0.517660796642303,-0.053020678460598,0.863272905349731,-0.501945018768311,-0.1095971763134,-0.927834331989288,-0.356527477502823,-0.122953407466412,-0.927303910255432,-0.353539377450943,-0.10812321305275,-0.931177377700806,-0.348163843154907,-0.0945770144462585,-0.932006418704987,-0.34988459944725,-0.0293153040111065,-0.904892981052399,-0.424628615379333,-0.0500432178378105,-0.907549500465393,-0.416952729225159,-0.0192254334688187,-0.916100263595581,-0.400488197803497,0.00215936452150345,-0.913819253444672,-0.406115531921387,-0.279865831136703,0.759775638580322,-0.586869955062866,-0.297886997461319,0.713270664215088,-0.634435474872589,-0.331206411123276,0.694472372531891,-0.638756930828094,-0.315000385046005,0.74388188123703,-0.589418888092041,0.132108762860298,-0.79651141166687,-0.590014278888702,0.114324674010277,-0.804321467876434,-0.583092510700226,0.162939101457596,-0.821249544620514,-0.546809077262878,0.18138000369072,-0.813766539096832,-0.552164375782013,-0.27838996052742,0.676247477531433,-0.682047188282013,-0.280582457780838,0.616196930408478,-0.735917747020721,-0.313028365373611,0.590663611888885,-0.743727028369904,-0.313320696353912,0.653588593006134,-0.688950061798096,0.280536681413651,-0.704120278358459,-0.652314305305481,0.224863901734352,-0.677067637443542,-0.700725197792053,0.214612990617752,-0.682953953742981,-0.698222875595093,0.270015120506287,-0.709845542907715,-0.650546908378601,-0.239444643259048,0.376361548900604,-0.894996285438538,-0.263321578502655,0.344554245471954,-0.901079416275024,-0.29980131983757,0.424262136220932,-0.85447108745575,-0.273646146059036,0.454405188560486,-0.84772264957428,0.207800433039665,-0.60721480846405,-0.76688277721405,0.141430482268333,-0.570650637149811,-0.808922290802002,0.135955795645714,-0.573060631752014,-0.808156967163086,0.202249795198441,-0.609628736972809,-0.7664515376091,-0.168817788362503,0.172609940171242,-0.970415651798248,-0.187603056430817,0.139772072434425,-0.972249388694763,-0.244472742080688,0.224748209118843,-0.943250417709351, +-0.224181070923805,0.256874948740005,-0.940084159374237,0.151477307081223,-0.432256102561951,-0.88893711566925,0.0754003822803497,-0.381452202796936,-0.92130833864212,0.0753795206546783,-0.376632064580917,-0.923290967941284,0.15163916349411,-0.427700817584991,-0.891110301017761,-0.0676335990428925,-0.0477933138608932,-0.996564865112305,-0.138157069683075,0.0327649973332882,-0.98986828327179,-0.124229677021503,0.0604094676673412,-0.990412950515747,-0.0542375296354294,-0.020208328962326,-0.998323559761047,0.0541192591190338,-0.239482253789902,-0.969391226768494,-0.0226257164031267,-0.170862302184105,-0.985035181045532,-0.0151001736521721,-0.152901202440262,-0.988126158714294,0.0617943331599236,-0.221937373280525,-0.973100900650024,-0.205008953809738,-0.0679296106100082,-0.976400077342987,-0.205009132623672,-0.0679314211010933,-0.976399838924408,-0.205009147524834,-0.0679313614964485,-0.976399898529053,-0.443934082984924,-0.742769777774811,-0.501214146614075,-0.444461107254028,-0.784766793251038,-0.431967079639435,-0.444456696510315,-0.758322238922119,-0.476870626211166,-0.496048808097839,-0.564197063446045,-0.66001307964325,-0.495688080787659,-0.560164928436279,-0.663708209991455,-0.495820283889771,-0.735054135322571,-0.462447553873062,-0.388087213039398,-0.877067029476166,-0.283093512058258,-0.410543948411942,-0.771961748600006,-0.485313028097153,-0.382478028535843,-0.889894962310791,-0.24859145283699,-0.38903546333313,-0.779941856861115,-0.490247040987015,-0.390137165784836,-0.735397577285767,-0.554060816764832,-0.389451503753662,-0.700121164321899,-0.59846293926239,-0.413258671760559,-0.872357666492462,-0.261169135570526,-0.414222449064255,-0.875182569026947,-0.249950632452965,-0.379142045974731,-0.783443212509155,-0.492410451173782,0.350266724824905,-0.655635833740234,0.668920814990997,0.341484695672989,-0.652360916137695,0.676619172096252,0.34183332324028,-0.651826202869415,0.676958382129669,0.350603491067886,-0.655098974704742,0.669270217418671,0.456760823726654,-0.493104606866837,0.740417122840881,0.461831659078598,-0.486122965812683,0.741886854171753, +0.467663258314133,-0.479606449604034,0.742474794387817,0.461864501237869,-0.486135870218277,0.741857886314392,0.553708970546722,-0.390808999538422,0.735305964946747,0.569738686084747,-0.386839628219604,0.72508829832077,0.580817639827728,-0.376495450735092,0.721735537052155,0.564159691333771,-0.379287302494049,0.733392834663391,0.556250333786011,-0.464553624391556,0.689039587974548,0.5551438331604,-0.465040624141693,0.689603209495544,0.552435219287872,-0.437388926744461,0.709581851959229,0.553213119506836,-0.436888575553894,0.709283947944641,0.47056770324707,-0.584936797618866,0.660617232322693,0.499652624130249,-0.579865097999573,0.643509030342102,0.47921022772789,-0.53103643655777,0.698826134204865,0.449588119983673,-0.538013160228729,0.713030517101288,-0.0481256768107414,0.625205457210541,-0.778974950313568,-0.0125264693051577,0.643384635448456,-0.76544064283371,0.0109085580334067,0.637129843235016,-0.770679295063019,-0.0266339033842087,0.617245554924011,-0.786319732666016,-0.543314933776855,-0.545871376991272,-0.637834966182709,-0.538527727127075,-0.713118314743042,-0.448832005262375,-0.543759047985077,-0.552746891975403,-0.631503701210022,-0.0487761646509171,0.66388863325119,-0.746239066123962,-0.0361320525407791,0.662080347537994,-0.748561382293701,-0.0528378784656525,0.6535964012146,-0.754996716976166,-0.0649137794971466,0.656271815299988,-0.751726984977722,0.0131358336657286,0.52433043718338,-0.851413547992706,0.020761176943779,0.558904886245728,-0.828971862792969,0.00497659994289279,0.567815721035004,-0.823140621185303,-0.00134417426306754,0.535182178020477,-0.844735622406006,0.0116667607799172,0.396786987781525,-0.917836666107178,0.0280596315860748,0.375719130039215,-0.926308751106262,0.0576387718319893,0.430884420871735,-0.900564551353455,0.0393769405782223,0.449486434459686,-0.89241886138916,-0.0207896884530783,0.174118593335152,-0.984505176544189,0.0537372156977654,0.202872037887573,-0.977729737758636,0.0498042032122612,0.209452778100967,-0.976549685001373,-0.0240446589887142,0.181253969669342,-0.9831423163414, +-0.148245215415955,0.0185136217623949,-0.98877739906311,-0.135755583643913,-0.0261579677462578,-0.990396976470947,-0.0597218349575996,0.0499408878386021,-0.996965050697327,-0.0751040428876877,0.0919100940227509,-0.992931067943573,-0.299269735813141,-0.17940080165863,-0.937151551246643,-0.290282785892487,-0.225758999586105,-0.929929494857788,-0.203785985708237,-0.159747585654259,-0.965894460678101,-0.214153558015823,-0.114794731140137,-0.970031201839447,-0.282433211803436,-0.254491776227951,-0.924913763999939,-0.370070219039917,-0.293283611536026,-0.881494641304016,-0.36530989408493,-0.32079216837883,-0.87386566400528,-0.277134358882904,-0.281219363212585,-0.918755888938904,0.377103388309479,0.428375244140625,-0.821150243282318,0.375376135110855,0.436719298362732,-0.817538440227509,0.389950573444366,0.427353918552399,-0.815663576126099,0.390258282423019,0.419164568185806,-0.819755792617798,-0.359028846025467,-0.790240228176117,-0.49660724401474,-0.365595370531082,-0.675575613975525,-0.640263795852661,-0.36543533205986,-0.650464057922363,-0.665848016738892,-0.395380198955536,-0.859217643737793,-0.324684023857117,-0.399994701147079,-0.83695387840271,-0.373513698577881,-0.406324028968811,-0.773567676544189,-0.486306309700012,-0.394556313753128,-0.771185517311096,-0.499598145484924,-0.394444584846497,-0.777982711791992,-0.489036172628403,-0.393013536930084,-0.809288144111633,-0.436569780111313,0.487467408180237,0.01668481528759,-0.87298172712326,0.47829082608223,0.0437205918133259,-0.877112507820129,0.445110291242599,0.0648435428738594,-0.893124938011169,0.450196236371994,0.035886887460947,-0.892208218574524,0.732039272785187,-0.0578681752085686,-0.678800284862518,0.710698425769806,-0.0293374694883823,-0.702884793281555,0.604536175727844,-0.0837287232279778,-0.792165040969849,0.620878756046295,-0.119155585765839,-0.774797797203064,0.789494514465332,-0.167678475379944,-0.590408563613892,0.861724495887756,-0.0395967103540897,-0.505829215049744,0.861828923225403,-0.0473250448703766,-0.504986524581909,0.789759933948517,-0.176901116967201,-0.587354600429535, +-0.347956478595734,-0.199101358652115,0.916124999523163,-0.344463527202606,-0.182700395584106,0.920850396156311,-0.298345267772675,-0.181444138288498,0.937052965164185,-0.303867369890213,-0.197318077087402,0.932057023048401,-0.316308557987213,-0.803290367126465,-0.504651844501495,-0.329799205064774,-0.633406639099121,-0.700020372867584,-0.329799920320511,-0.633348762989044,-0.700072467327118,-0.262898862361908,-0.238512724637985,0.934877455234528,-0.263582319021225,-0.240585923194885,0.93415355682373,-0.206563413143158,-0.275042057037354,0.938980042934418,-0.206214040517807,-0.273535013198853,0.939496874809265,-0.153619572520256,-0.32329472899437,0.933745980262756,-0.119061820209026,-0.379011452198029,0.91770076751709,-0.105650596320629,-0.364605337381363,0.925149142742157,-0.14120988547802,-0.306677281856537,0.941280484199524,-0.0548301786184311,-0.39411985874176,0.91742205619812,-0.0395365804433823,-0.447546601295471,0.893386244773865,-0.0196528881788254,-0.433297336101532,0.901036739349365,-0.0356762520968914,-0.377266407012939,0.925417304039001,0.0603671297430992,-0.447278380393982,0.89235532283783,0.0296508073806763,-0.465487837791443,0.884557485580444,0.0216791797429323,-0.517162203788757,0.855612814426422,0.0537186414003372,-0.502789855003357,0.862737894058228,-0.0276668965816498,-0.567393183708191,0.822982132434845,-0.049343965947628,-0.596607148647308,0.801015079021454,-0.0189248770475388,-0.591515719890594,0.80607134103775,0.00189463794231415,-0.558690071105957,0.829374432563782,-0.152871251106262,-0.62201189994812,0.767939805984497,-0.13035386800766,-0.633296370506287,0.762852311134338,-0.107945218682289,-0.636490881443024,0.76369309425354,-0.130294427275658,-0.622613489627838,0.771606087684631,-0.308823794126511,-0.794968843460083,-0.522161245346069,-0.301566004753113,-0.74093109369278,-0.600066006183624,-0.31856369972229,-0.73544853925705,-0.598024010658264,-0.325429797172546,-0.790334343910217,-0.519102394580841,-0.345918148756027,-0.794443130493164,-0.499200135469437,-0.360411673784256,-0.624639689922333,-0.692768931388855, +-0.360394060611725,-0.625933170318604,-0.691609621047974,-0.358445465564728,-0.883171260356903,-0.302531719207764,-0.345244556665421,-0.794654250144958,-0.499330371618271,-0.356001615524292,-0.858950078487396,-0.368059396743774,-0.343613773584366,-0.625914216041565,-0.700115025043488,-0.324960291385651,-0.800796508789063,-0.503116071224213,-0.343667596578598,-0.624303340911865,-0.701525449752808,-0.397736787796021,-0.614219605922699,-0.681571483612061,-0.381408393383026,-0.782650411128998,-0.491920739412308,-0.397513687610626,-0.624261617660522,-0.672517895698547,-0.358701258897781,-0.624070703983307,-0.694168031215668,-0.365825623273849,-0.787991046905518,-0.495218932628632,-0.357420891523361,-0.61204993724823,-0.705439746379852,0.193951949477196,0.358915776014328,-0.912996292114258,0.28366631269455,0.389040797948837,-0.876459240913391,0.370838493108749,0.410364478826523,-0.833114624023438,0.283786177635193,0.390556365251541,-0.875746130943298,-0.344220459461212,-0.794974446296692,-0.499527782201767,-0.331726938486099,-0.609288513660431,-0.720225512981415,-0.332221806049347,-0.613288104534149,-0.716593623161316,-0.413479208946228,-0.579010486602783,-0.702696144580841,-0.423812389373779,-0.766781985759735,-0.48210820555687,-0.413640320301056,-0.580247044563293,-0.701580464839935,-0.388138771057129,-0.679852724075317,-0.622212707996368,-0.388020783662796,-0.780305743217468,-0.490471929311752,-0.38569051027298,-0.640597343444824,-0.663986444473267,-0.389090955257416,-0.679530739784241,-0.621969640254974,-0.39066869020462,-0.722803354263306,-0.570029377937317,-0.389780730009079,-0.77967381477356,-0.490081399679184,-0.683163523674011,0.73020601272583,-0.00932028889656067,-0.704516708850861,0.709680497646332,-0.00315070198848844,-0.669588625431061,0.740159332752228,-0.0617686584591866,-0.648062705993652,0.758501768112183,-0.0684828013181686,-0.698008596897125,0.654224574565887,-0.291160196065903,-0.660522103309631,0.664407014846802,-0.349676758050919,-0.625611960887909,0.701566100120544,-0.341196030378342,-0.656702518463135,0.69704407453537,-0.287873893976212, +-0.64505922794342,0.549421012401581,-0.531069874763489,-0.604784548282623,0.625441610813141,-0.493009597063065,-0.640734016895294,0.651334464550018,-0.406476825475693,-0.687455952167511,0.574872851371765,-0.443762958049774,-0.637875080108643,0.667262375354767,-0.384546995162964,-0.6899493932724,0.644460916519165,-0.329605728387833,-0.720510303974152,0.613626420497894,-0.322997689247131,-0.676600277423859,0.634633541107178,-0.373433202505112,-0.351401269435883,0.864496052265167,0.35939359664917,-0.319799423217773,0.900581240653992,0.294417798519135,-0.32563179731369,0.890769839286804,0.317006379365921,-0.346254736185074,0.863554716110229,0.366580337285995,0.505394399166107,-0.856235265731812,0.106948003172874,0.494710087776184,-0.86487877368927,0.0851270109415054,0.560829997062683,-0.825628876686096,0.0616995170712471,0.571819305419922,-0.816186845302582,0.0828361064195633,-0.551551997661591,0.654200315475464,-0.517505884170532,-0.60192734003067,0.553709268569946,-0.575403809547424,-0.642926752567291,0.603164076805115,-0.472057491540909,-0.584369242191315,0.699715971946716,-0.410986959934235,-0.521957397460938,0.846822023391724,0.102239772677422,-0.512851297855377,0.857327342033386,0.0444219969213009,-0.533635318279266,0.845542550086975,0.0170616954565048,-0.543173730373383,0.836405515670776,0.0734030678868294,-0.620305895805359,0.769986152648926,-0.149472668766975,-0.59722226858139,0.789382040500641,-0.142132550477982,-0.623016893863678,0.776431977748871,-0.0948865860700607,-0.648771941661835,0.7543785572052,-0.100039750337601,-0.627848327159882,0.771182358264923,-0.105282872915268,-0.647709965705872,0.758859872817993,-0.0678494572639465,-0.670959234237671,0.738724172115326,-0.0640341192483902,-0.650177597999573,0.752806961536407,-0.102716661989689,-0.572802901268005,0.616610288619995,-0.540082037448883,-0.491230726242065,0.639316916465759,-0.591579437255859,-0.502460479736328,0.652865886688232,-0.566833019256592,-0.54801481962204,0.648652672767639,-0.528137683868408,-0.496456921100616,0.600873589515686,-0.626483380794525, +-0.458024054765701,0.633108258247375,-0.624009549617767,-0.50639533996582,0.624048054218292,-0.595086455345154,-0.544427096843719,0.590156853199005,-0.596082270145416,-0.50961035490036,0.844458222389221,-0.164887011051178,-0.524779379367828,0.847667932510376,-0.0778833478689194,-0.480111062526703,0.876441836357117,-0.0366505831480026,-0.467173367738724,0.875394582748413,-0.124230846762657,-0.558112740516663,0.81146103143692,-0.173324346542358,-0.595380008220673,0.791609704494476,-0.137392669916153,-0.613881170749664,0.777690172195435,-0.135455206036568,-0.570556581020355,0.802302777767181,-0.175429448485374,-0.193736925721169,0.865573287010193,0.461788803339005,-0.126542836427689,0.90485030412674,0.406488567590714,-0.087241992354393,0.902566909790039,0.421618044376373,-0.150325730443001,0.872377872467041,0.465144217014313,-0.319772481918335,0.891328573226929,0.321370422840118,-0.281812131404877,0.904937148094177,0.31885838508606,-0.281458735466003,0.921980142593384,0.265957742929459,-0.325736910104752,0.90376877784729,0.277664065361023,-0.24317130446434,0.924591302871704,0.293255358934402,-0.235977828502655,0.94008594751358,0.246075361967087,-0.282596975564957,0.921043634414673,0.267987996339798,-0.285912901163101,0.906604170799255,0.310358971357346,-0.379410833120346,0.908668279647827,0.174268111586571,-0.413114845752716,0.894014477729797,0.173419505357742,-0.41915088891983,0.881222367286682,0.218540072441101,-0.388411790132523,0.89406430721283,0.223126322031021,-0.135744079947472,0.973714351654053,0.182904005050659,-0.134334519505501,0.985632419586182,0.102387048304081,-0.17754827439785,0.981319546699524,0.0740851014852524,-0.18155275285244,0.970672845840454,0.157584667205811,-0.385386109352112,0.912089467048645,0.139893978834152,-0.39414119720459,0.897931396961212,0.195887595415115,-0.351042777299881,0.914139986038208,0.2027737647295,-0.337941408157349,0.930349588394165,0.142285987734795,-0.549660623073578,0.794684171676636,-0.257585436105728,-0.471255660057068,0.821490406990051,-0.321047931909561,-0.474243938922882,0.828015983104706,-0.299136072397232, +-0.540909469127655,0.8058061003685,-0.241026118397713,-0.501026749610901,0.741580486297607,-0.446128517389297,-0.492253482341766,0.722545027732849,-0.485402256250381,-0.565402865409851,0.711235463619232,-0.417688608169556,-0.575551629066467,0.727171361446381,-0.374115169048309,-0.4284987449646,0.613678514957428,-0.663164854049683,-0.392859756946564,0.627237617969513,-0.672483563423157,-0.398326724767685,0.62678062915802,-0.669687986373901,-0.436335563659668,0.611994326114655,-0.65960156917572,-0.400891363620758,0.63589608669281,-0.659486472606659,-0.454455316066742,0.617791354656219,-0.64171975851059,-0.496805191040039,0.603373408317566,-0.623799026012421,-0.438635289669037,0.624909639358521,-0.645822823047638,0.465392023324966,-0.853184342384338,0.235556274652481,0.472260802984238,-0.849671006202698,0.234582513570786,0.396585732698441,-0.876372575759888,0.273296147584915,0.392301976680756,-0.878489911556244,0.27268049120903,-0.304063141345978,0.952401578426361,0.0218363553285599,-0.247792273759842,0.966200590133667,-0.0711028054356575,-0.315547168254852,0.946776747703552,-0.0635921061038971,-0.366574168205261,0.930027604103088,0.0259224772453308,-0.37596869468689,0.910998582839966,-0.16949662566185,-0.421211719512939,0.888079822063446,-0.184105634689331,-0.478407382965088,0.872414469718933,-0.100096687674522,-0.439601063728333,0.894536852836609,-0.0809610933065414,-0.0704491585493088,0.995312690734863,-0.0662548914551735,-0.0695360600948334,0.996264040470123,-0.0512122511863708,-0.133831366896629,0.990956962108612,-0.00967571977525949,-0.131243407726288,0.990971565246582,-0.0273983553051949,-0.188947081565857,0.497070848941803,-0.846888184547424,-0.1892971098423,0.531002283096313,-0.825955867767334,-0.26924267411232,0.536570012569427,-0.799750745296478,-0.274465769529343,0.50044858455658,-0.821108937263489,-0.294275939464569,0.620379686355591,-0.727001190185547,-0.376348704099655,0.683396399021149,-0.625564575195313,-0.377602964639664,0.58686351776123,-0.716245293617249,-0.280060797929764,0.51955509185791,-0.80723512172699, +-0.373034179210663,0.568132042884827,-0.733533620834351,-0.417680263519287,0.577242136001587,-0.701665699481964,-0.332391083240509,0.584191799163818,-0.740429759025574,-0.294682383537292,0.570827841758728,-0.76636677980423,-0.270755916833878,0.640467405319214,-0.718674302101135,-0.245223701000214,0.620673894882202,-0.744734406471252,-0.339210122823715,0.620784938335419,-0.706797420978546,-0.368572801351547,0.637316346168518,-0.676743626594543,-0.344182699918747,0.649734318256378,-0.677778482437134,-0.427908897399902,0.652598679065704,-0.625307202339172,-0.451138317584991,0.67471319437027,-0.584154486656189,-0.369417160749435,0.673506021499634,-0.640250444412231,-0.44562166929245,0.74551659822464,-0.495607048273087,-0.440488696098328,0.7742879986763,-0.454365491867065,-0.365316450595856,0.769289433956146,-0.524154245853424,-0.368235021829605,0.739314794540405,-0.563752293586731,-0.0225501675158739,0.449770033359528,-0.892859637737274,-0.0157711450010538,0.437212705612183,-0.899219930171967,-0.0861799195408821,0.434693992137909,-0.896445274353027,-0.0969625487923622,0.445826500654221,-0.889852285385132,-0.096027247607708,0.469363957643509,-0.877767860889435,-0.171910315752029,0.47524556517601,-0.862895429134369,-0.189235299825668,0.498050481081009,-0.846248090267181,-0.109957933425903,0.493824601173401,-0.862581253051758,-0.190945714712143,0.503868639469147,-0.842410981655121,-0.224589824676514,0.519580721855164,-0.824375689029694,-0.141050651669502,0.518065392971039,-0.843630850315094,-0.1116027161479,0.499879121780396,-0.8588747382164,-0.095112144947052,0.54998368024826,-0.829742014408112,-0.0608413964509964,0.529293775558472,-0.846254408359528,-0.145736500620842,0.542498588562012,-0.827318727970123,-0.180348098278046,0.561200320720673,-0.807792544364929,-0.152624398469925,0.578783452510834,-0.801071465015411,-0.238620638847351,0.587209463119507,-0.773463189601898,-0.269080400466919,0.605704069137573,-0.7488112449646,-0.182056844234467,0.599441230297089,-0.779439270496368,-0.272061765193939,0.682921528816223,-0.677938520908356, +-0.281206488609314,0.706114828586578,-0.64986526966095,-0.193785279989243,0.693472683429718,-0.693932890892029,-0.184172496199608,0.668753683567047,-0.720311760902405,0.152283445000648,0.324694067239761,-0.933479368686676,0.165907353162766,0.302267521619797,-0.938674211502075,0.0841784924268723,0.317992389202118,-0.944348871707916,0.0746596306562424,0.340809851884842,-0.937163114547729,0.0733404383063316,0.37890100479126,-0.922526597976685,-0.00598891172558069,0.395812213420868,-0.918312072753906,-0.016451720148325,0.423398584127426,-0.905794084072113,0.0627782344818115,0.407169610261917,-0.91119259595871,-0.0132023598998785,0.40921825170517,-0.912341058254242,-0.0440784841775894,0.425462365150452,-0.903902113437653,0.033873874694109,0.416932761669159,-0.908305943012238,0.0641622394323349,0.399641156196594,-0.91442346572876,0.0662645176053047,0.435555994510651,-0.897719383239746,0.110240295529366,0.415158331394196,-0.903045237064362,0.03171681240201,0.435488045215607,-0.89963561296463,-0.0126236882060766,0.453900635242462,-0.890962898731232,0.0270760953426361,0.474405914545059,-0.879889786243439,-0.0547070801258087,0.491553723812103,-0.86912727355957,-0.0943043082952499,0.509954929351807,-0.855016231536865,-0.01172268204391,0.494848072528839,-0.8689004778862,-0.0956813767552376,0.586814224720001,-0.804048597812653,-0.118444718420506,0.608840525150299,-0.784400463104248,-0.0329677686095238,0.585623741149902,-0.809912383556366,-0.010143818333745,0.561550855636597,-0.827380061149597,0.304545968770981,0.212002664804459,-0.92860472202301,0.319330245256424,0.197209507226944,-0.926896274089813,0.249795094132423,0.213033422827721,-0.944573640823364,0.234227418899536,0.227611273527145,-0.945161759853363,0.247393891215324,0.247797101736069,-0.936692595481873,0.172224104404449,0.25032314658165,-0.952720999717712,0.160386487841606,0.255616426467896,-0.953381657600403,0.232807606458664,0.252868145704269,-0.939073204994202,0.15560981631279,0.297355800867081,-0.942000567913055,0.116220206022263,0.310606300830841,-0.943406999111176, +0.189200669527054,0.298203647136688,-0.935562789440155,0.230826795101166,0.283968865871429,-0.930634558200836,0.318415492773056,0.127985134720802,-0.939271807670593,0.384068161249161,0.104577757418156,-0.917363166809082,0.430881023406982,0.0844580754637718,-0.898447751998901,0.368016242980957,0.108145467936993,-0.923508882522583,0.430266261100769,0.0807893872261047,-0.899079561233521,0.442883282899857,0.0693344473838806,-0.89389443397522,0.381968975067139,0.0893842428922653,-0.919842481613159,0.367287576198578,0.100959226489067,-0.924611866474152,0.38519474864006,0.130739077925682,-0.913527369499207,0.319379985332489,0.143892094492912,-0.936638414859772,0.303626596927643,0.152026146650314,-0.940584421157837,0.370927214622498,0.138999328017235,-0.918200492858887,0.209856554865837,0.311125218868256,-0.926909685134888,0.264335930347443,0.28749880194664,-0.920581936836243,0.18937760591507,0.314460575580597,-0.930188596248627,0.134573757648468,0.336174458265305,-0.93213552236557,0.189575284719467,0.352784961462021,-0.916299164295197,0.112677171826363,0.376034587621689,-0.919729351997375,0.0631227269768715,0.395180732011795,-0.916432023048401,0.140005677938461,0.373898059129715,-0.916841685771942,0.0688967257738113,0.470058530569077,-0.879942119121552,0.0334618538618088,0.493047297000885,-0.869358777999878,0.111835390329361,0.462053686380386,-0.879772305488586,0.148688063025475,0.436508536338806,-0.887328684329987,0.418529957532883,-0.00390611588954926,-0.908194601535797,0.472531259059906,-0.0331303216516972,-0.88069099187851,0.515431761741638,-0.0586332008242607,-0.854922413825989,0.466875493526459,-0.0307809635996819,-0.883787274360657,0.51553338766098,-0.0583440586924553,-0.854880809783936,0.523167967796326,-0.0694530010223389,-0.849394857883453,0.4775170981884,-0.0448989644646645,-0.87747448682785,0.46631520986557,-0.0327947251498699,-0.884010493755341,0.48865595459938,0.00016620010137558,-0.872476577758789,0.435100495815277,0.0209374502301216,-0.9001384973526,0.421350926160812,0.0310634076595306,-0.906365573406219, +0.477713018655777,0.00978104677051306,-0.878461480140686,0.333861798048019,0.179714575409889,-0.925331890583038,0.394576996564865,0.147137105464935,-0.907005906105042,0.327831745147705,0.181830048561096,-0.927072942256927,0.265339910984039,0.21305438876152,-0.940320432186127,0.333720445632935,0.218592002987862,-0.916977763175964,0.261331766843796,0.249801427125931,-0.932365298271179,0.202120721340179,0.275689125061035,-0.939756810665131,0.275310814380646,0.246252566576004,-0.929281294345856,0.216431751847267,0.342045783996582,-0.914418935775757,0.168616011738777,0.371672570705414,-0.912922918796539,0.241965651512146,0.332429260015488,-0.911561012268066,0.290828883647919,0.299832195043564,-0.908580899238586,0.480573385953903,-0.140489593148232,-0.865628123283386,0.508156716823578,-0.193000078201294,-0.839361548423767,0.565012454986572,-0.196916729211807,-0.801239609718323,0.536427974700928,-0.143243029713631,-0.8317009806633,0.551819026470184,-0.219640970230103,-0.804520666599274,0.57095330953598,-0.205554634332657,-0.794833123683929,0.538643062114716,-0.161872550845146,-0.82683801651001,0.520731031894684,-0.175906389951706,-0.835401833057404,0.546604216098785,-0.143936723470688,-0.824927866458893,0.50571483373642,-0.12010432779789,-0.854299366474152,0.496167659759521,-0.111021876335144,-0.861099183559418,0.53985857963562,-0.135874301195145,-0.830717086791992,0.4282386302948,0.0447475463151932,-0.902557194232941,0.487686038017273,0.00146095466334373,-0.873017907142639,0.434557527303696,0.0411011800169945,-0.899705767631531,0.371161580085754,0.0845507755875587,-0.924710869789124,0.445847481489182,0.0746125727891922,-0.891993880271912,0.385961681604385,0.112033940851688,-0.91568660736084,0.322014361619949,0.149285778403282,-0.934890747070313,0.384791135787964,0.112573839724064,-0.916112959384918,0.343521922826767,0.205132469534874,-0.916467905044556,0.288397759199142,0.246809020638466,-0.925155162811279,0.350849896669388,0.200707733631134,-0.914669752120972,0.405450105667114,0.156488955020905,-0.9006227850914,0.512965977191925,-0.27169069647789,-0.814278900623322, +0.533432900905609,-0.328635215759277,-0.779389679431915,0.588156044483185,-0.348489463329315,-0.72981333732605,0.566985547542572,-0.289810627698898,-0.771062433719635,0.573750138282776,-0.365368902683258,-0.733018636703491,0.592176139354706,-0.361133903264999,-0.720353901386261,0.563677251338959,-0.313557416200638,-0.764165997505188,0.546081125736237,-0.318245768547058,-0.774929046630859,0.5898157954216,-0.275570839643478,-0.759064078330994,0.56834214925766,-0.210324689745903,-0.795456290245056,0.540310204029083,-0.238819450139999,-0.806864500045776,0.558091640472412,-0.302072465419769,-0.772842884063721,0.489188015460968,-0.0876138433814049,-0.867766737937927,0.542577981948853,-0.142141506075859,-0.827891826629639,0.503646433353424,-0.100250035524368,-0.858073592185974,0.446968287229538,-0.0452144630253315,-0.893406510353088,0.519623875617981,-0.0710404440760612,-0.85143655538559,0.473882436752319,-0.0301120914518833,-0.880073189735413,0.413140654563904,0.0193097591400146,-0.910462498664856,0.463166296482086,-0.0224532056599855,-0.885987043380737,0.439773082733154,0.0646239146590233,-0.895780920982361,0.385107457637787,0.119891785085201,-0.915050983428955,0.434951096773148,0.0689686983823776,-0.897809028625488,0.487279802560806,0.0125257670879364,-0.873156070709229,0.524579882621765,-0.404825091362,-0.74895441532135,0.546712279319763,-0.445037186145782,-0.709258556365967,0.572843074798584,-0.494371831417084,-0.653794586658478,0.552723824977875,-0.455120861530304,-0.698112726211548,0.571716785430908,-0.495306104421616,-0.654073238372803,0.575689077377319,-0.508630335330963,-0.640216708183289,0.555151045322418,-0.469870924949646,-0.686315357685089,0.550981283187866,-0.456738173961639,-0.698433876037598,0.592630386352539,-0.43298751115799,-0.679198801517487,0.565270364284515,-0.393002480268478,-0.725271344184875,0.560621798038483,-0.380309522151947,-0.73557323217392,0.588573396205902,-0.420560836791992,-0.690441846847534,0.51055645942688,-0.232320263981819,-0.827864408493042,0.574786305427551,-0.28553232550621,-0.766871631145477, +0.553348302841187,-0.222551941871643,-0.802668333053589,0.489349901676178,-0.172973126173019,-0.854761362075806,0.56282913684845,-0.210448652505875,-0.799334049224854,0.537384331226349,-0.150056466460228,-0.829880177974701,0.469413638114929,-0.111074775457382,-0.875964283943176,0.494118958711624,-0.168209046125412,-0.852966725826263,0.502685248851776,-0.0712015479803085,-0.861532330513,0.454902142286301,-0.00405895756557584,-0.890532255172729,0.490924715995789,-0.0557189211249352,-0.869418382644653,0.536648154258728,-0.124226704239845,-0.834611654281616,0.501212477684021,-0.520675778388977,-0.691146075725555,0.511053025722504,-0.554706811904907,-0.656601250171661,0.527309417724609,-0.618870079517365,-0.582189559936523,0.518586933612823,-0.582138419151306,-0.626244723796844,0.527588605880737,-0.618710279464722,-0.582106471061707,0.53193998336792,-0.635133564472198,-0.560040473937988,0.521294176578522,-0.598379790782928,-0.608435690402985,0.516827404499054,-0.583269774913788,-0.626646518707275,0.547779083251953,-0.580430507659912,-0.602526783943176,0.531286656856537,-0.544615387916565,-0.648944199085236,0.525418102741241,-0.531933069229126,-0.664065539836884,0.541824877262115,-0.5668004155159,-0.620615065097809,0.539465129375458,-0.348730534315109,-0.766397058963776,0.570984721183777,-0.426922202110291,-0.701223194599152,0.553516149520874,-0.380221515893936,-0.740980088710785,0.517663598060608,-0.298660665750504,-0.80176454782486,0.57794725894928,-0.358410269021988,-0.73315691947937,0.563559651374817,-0.297563761472702,-0.770620822906494,0.505397617816925,-0.236703813076019,-0.829785883426666,0.521477162837982,-0.295915365219116,-0.800309836864471,0.550861358642578,-0.196887001395226,-0.811040878295898,0.50181919336319,-0.125705912709236,-0.855789482593536,0.519912302494049,-0.187827333807945,-0.833313941955566,0.567113935947418,-0.261745870113373,-0.780942380428314,0.459305316209793,-0.617053806781769,-0.63897043466568,0.447584122419357,-0.664422452449799,-0.598507583141327,0.455716788768768,-0.732344090938568,-0.505958914756775, +0.470572650432587,-0.688026428222656,-0.552432000637054,0.454382240772247,-0.732833683490753,-0.506450116634369,0.454603791236877,-0.749828577041626,-0.480720996856689,0.454829692840576,-0.714340925216675,-0.53183376789093,0.453723847866058,-0.695197820663452,-0.557525634765625,0.477005064487457,-0.7044837474823,-0.525517642498016,0.472375333309174,-0.668102979660034,-0.57489138841629,0.469645500183105,-0.649789869785309,-0.597667396068573,0.47497147321701,-0.686100959777832,-0.551060497760773,0.524334251880646,-0.450721353292465,-0.722442984580994,0.536548018455505,-0.541928052902222,-0.646861910820007,0.532428205013275,-0.502492666244507,-0.681191086769104,0.517676591873169,-0.412643551826477,-0.74949061870575,0.556726157665253,-0.48752436041832,-0.672589004039764,0.54673570394516,-0.445020169019699,-0.709251224994659,0.521294713020325,-0.359687387943268,-0.773871243000031,0.534728348255157,-0.404337257146835,-0.742008805274963,0.558977007865906,-0.336575597524643,-0.7578005194664,0.53985607624054,-0.25047978758812,-0.803626358509064,0.553506910800934,-0.31066569685936,-0.772733449935913,0.567448496818542,-0.387598901987076,-0.726477384567261,0.550518929958344,-0.409285426139832,-0.727608680725098,0.545531809329987,-0.455576628446579,-0.703452169895172,0.537712872028351,-0.538470268249512,-0.648779332637787,0.546436488628387,-0.485836923122406,-0.682180106639862,0.493714481592178,-0.550162971019745,-0.673473656177521,0.488249957561493,-0.651620626449585,-0.580519318580627,0.500484228134155,-0.60134744644165,-0.622813642024994,0.501590847969055,-0.500485956668854,-0.705634832382202,0.514088094234467,-0.595766305923462,-0.617070436477661,0.514709234237671,-0.552919149398804,-0.655251801013947,0.51022744178772,-0.456227749586105,-0.729057013988495,0.512910842895508,-0.496960937976837,-0.699966013431549,0.346318662166595,-0.831663250923157,-0.434050321578979,0.354469358921051,-0.842808187007904,-0.405001074075699,0.382330596446991,-0.805403888225555,-0.45293253660202,0.373653620481491,-0.792572021484375,-0.48188453912735, +0.400849044322968,-0.800286591053009,-0.445938676595688,0.414616703987122,-0.764217376708984,-0.49402928352356,0.411063134670258,-0.747645437717438,-0.521587491035461,0.397815823554993,-0.78643786907196,-0.472502022981644,0.43009614944458,-0.741391658782959,-0.515126943588257,0.434060215950012,-0.668305218219757,-0.604119181632996,0.419905543327332,-0.717491030693054,-0.555775165557861,0.413482964038849,-0.782119274139404,-0.466177254915237,0.539671421051025,-0.506529569625854,-0.672445237636566,0.523993372917175,-0.566969215869904,-0.635591685771942,0.489919036626816,-0.665170907974243,-0.563495278358459,0.513009011745453,-0.601008713245392,-0.612870633602142,0.454643666744232,-0.670195519924164,-0.586632013320923,0.420574843883514,-0.762872278690338,-0.491062790155411,0.442507028579712,-0.712126970291138,-0.545034646987915,0.473279714584351,-0.609025478363037,-0.636470198631287,0.4581538438797,-0.708095133304596,-0.537304759025574,0.474500775337219,-0.656142711639404,-0.586792767047882,0.490454763174057,-0.55095773935318,-0.675203442573547,0.478405117988586,-0.608077466487885,-0.633538007736206,0.619928598403931,-0.120212189853191,-0.775395095348358,0.607938766479492,-0.0401152856647968,-0.792969822883606,0.61762261390686,-0.108500421047211,-0.778954446315765,0.62673819065094,-0.197057098150253,-0.753901720046997,0.627159416675568,-0.106429532170296,-0.771585285663605,0.633309125900269,-0.170202240347862,-0.754950881004333,0.633661448955536,-0.261632680892944,-0.728025794029236,0.631172001361847,-0.195512309670448,-0.750597596168518,0.590024292469025,-0.273788005113602,-0.75954681634903,0.594382405281067,-0.348621487617493,-0.724687993526459,0.593394041061401,-0.293907731771469,-0.749334275722504,0.585471034049988,-0.210806116461754,-0.782805502414703,0.655588746070862,-0.22474305331707,-0.72089809179306,0.656887352466583,-0.276598900556564,-0.701421558856964,0.639644145965576,-0.363499939441681,-0.67729115486145,0.641453385353088,-0.315135627985001,-0.699447751045227,0.598591029644012,-0.370269119739532,-0.710344672203064, +0.588299691677094,-0.445966750383377,-0.674549698829651,0.593264758586884,-0.397172629833221,-0.700207710266113,0.60045713186264,-0.32450532913208,-0.730854034423828,0.592804133892059,-0.397311508655548,-0.700519025325775,0.594755709171295,-0.348485827445984,-0.724446892738342,0.594758987426758,-0.272532671689987,-0.756298720836639,0.595426261425018,-0.325569689273834,-0.734487593173981,0.245867386460304,-0.903754055500031,-0.350396752357483,0.239359468221664,-0.913361430168152,-0.329359918832779,0.266749650239944,-0.885735630989075,-0.379890978336334,0.273883372545242,-0.873382687568665,-0.402728974819183,0.292786628007889,-0.882767379283905,-0.367420524358749,0.313784867525101,-0.85047858953476,-0.422167420387268,0.320884317159653,-0.836012244224548,-0.445103377103806,0.300150483846664,-0.870673418045044,-0.389663130044937,0.342250913381577,-0.832406163215637,-0.435849130153656,0.366836756467819,-0.77187979221344,-0.519261479377747,0.339942216873169,-0.81629341840744,-0.467016518115997,0.313898175954819,-0.868940412998199,-0.382636427879333,0.502161681652069,-0.628554224967957,-0.59393048286438,0.473044037818909,-0.684774935245514,-0.554357826709747,0.407765924930573,-0.776918530464172,-0.47971323132515,0.442380249500275,-0.726253151893616,-0.526171267032623,0.380111396312714,-0.776829838752747,-0.502046465873718,0.320297211408615,-0.855399012565613,-0.407065659761429,0.3551866710186,-0.814854443073273,-0.458098948001862,0.411532819271088,-0.728103041648865,-0.548184931278229,0.373133420944214,-0.812814831733704,-0.447329431772232,0.40242925286293,-0.766266465187073,-0.500885665416718,0.445773988962173,-0.671253800392151,-0.592202544212341,0.419585764408112,-0.727724194526672,-0.542554438114166,0.676819324493408,-0.326286524534225,-0.659888386726379,0.670354306697845,-0.378876119852066,-0.638026654720306,0.634423971176147,-0.465392023324966,-0.617184340953827,0.64631313085556,-0.409489393234253,-0.643892705440521,0.597265839576721,-0.465963631868362,-0.65280282497406,0.561513781547546,-0.563550293445587,-0.605898797512054, +0.580403506755829,-0.499829828739166,-0.642885684967041,0.607397496700287,-0.413396000862122,-0.678359866142273,0.579017221927643,-0.500083446502686,-0.643937528133392,0.5887650847435,-0.445853173732758,-0.674218535423279,0.604084372520447,-0.369438946247101,-0.706113994121552,0.599802136421204,-0.414012402296066,-0.684712529182434,0.0963173732161522,-0.945062458515167,-0.312378019094467,0.108819797635078,-0.953561782836914,-0.280852794647217,0.164578959345818,-0.935874104499817,-0.31153392791748,0.152003943920135,-0.927123486995697,-0.342544585466385,0.182856425642967,-0.936213195323944,-0.300113946199417,0.216990649700165,-0.914457499980927,-0.341588377952576,0.220325440168381,-0.904615700244904,-0.364866077899933,0.184903040528297,-0.928704023361206,-0.321433752775192,0.229350835084915,-0.904401004314423,-0.359801441431046,0.273711234331131,-0.856436252593994,-0.437720417976379,0.239493787288666,-0.888894200325012,-0.390525102615356,0.196088537573814,-0.928918480873108,-0.314101725816727,0.440292537212372,-0.735776305198669,-0.514563679695129,0.40248367190361,-0.784100651741028,-0.472433269023895,0.307683885097504,-0.860874056816101,-0.405248612165451,0.349379450082779,-0.820463597774506,-0.452519059181213,0.287115812301636,-0.857743620872498,-0.426427662372589,0.200392633676529,-0.918139636516571,-0.341851413249969,0.239127740263939,-0.88887357711792,-0.390796214342117,0.325653284788132,-0.818285465240479,-0.473665356636047,0.264959454536438,-0.889876484870911,-0.37137097120285,0.302790105342865,-0.856104493141174,-0.418811857700348,0.373113751411438,-0.776654124259949,-0.507537722587585,0.337332487106323,-0.819457650184631,-0.4633529484272,0.679753243923187,-0.439588934183121,-0.58710914850235,0.659251749515533,-0.500020027160645,-0.561575651168823,0.598770499229431,-0.590692281723022,-0.540884971618652,0.627099096775055,-0.528163313865662,-0.572529673576355,0.570395231246948,-0.58669638633728,-0.574836194515228,0.501978695392609,-0.686495423316956,-0.526062250137329,0.534287452697754,-0.628070831298828,-0.565741956233978, +0.59538733959198,-0.526393115520477,-0.606979548931122,0.534075438976288,-0.628077864646912,-0.565934300422668,0.561280190944672,-0.56357604265213,-0.606091201305389,0.605329573154449,-0.465945273637772,-0.6453458070755,0.587332487106323,-0.525776326656342,-0.61530464887619,-0.0451053902506828,-0.971949815750122,-0.230822652578354,-0.0790207237005234,-0.967836499214172,-0.238847747445107,-0.0448342263698578,-0.948206424713135,-0.314475119113922,-0.00847126636654139,-0.951014399528503,-0.309030652046204,-0.00719711184501648,-0.959022402763367,-0.28323882818222,0.020245922729373,-0.939175724983215,-0.342839628458023,0.0473738759756088,-0.936370491981506,-0.347801893949509,0.0179112125188112,-0.958001852035522,-0.286202251911163,0.0773433297872543,-0.942103683948517,-0.326280057430267,0.140867337584496,-0.909183502197266,-0.391844063997269,0.0966069772839546,-0.935406029224396,-0.340121686458588,0.0330942943692207,-0.961475491523743,-0.272891223430634,0.361729949712753,-0.832959234714508,-0.418724864721298,0.30652129650116,-0.87999552488327,-0.362839818000793,0.183063447475433,-0.931942343711853,-0.313003867864609,0.240561723709106,-0.896002888679504,-0.373241037130356,0.168744757771492,-0.927619278430939,-0.333238363265991,0.0525163412094116,-0.9628826379776,-0.264762550592422,0.107583962380886,-0.938050389289856,-0.329373747110367,0.222917079925537,-0.891648650169373,-0.394044160842896,0.12384519726038,-0.941558599472046,-0.313256800174713,0.164713859558105,-0.913423776626587,-0.372191220521927,0.270154744386673,-0.854630947113037,-0.443421304225922,0.229139477014542,-0.893256902694702,-0.386765033006668,0.65324991941452,-0.564630925655365,-0.504436790943146,0.619650423526764,-0.622197329998016,-0.478438913822174,0.537216007709503,-0.706226706504822,-0.461132168769836,0.577881157398224,-0.651018798351288,-0.492166608572006,0.517665326595306,-0.700303494930267,-0.491525918245316,0.422304630279541,-0.788241147994995,-0.447587698698044,0.465328812599182,-0.739104390144348,-0.487025409936905,0.554197013378143,-0.646059095859528,-0.524855554103851, +0.465410053730011,-0.739113688468933,-0.48693373799324,0.502857267856598,-0.686530530452728,-0.525176525115967,0.577812075614929,-0.587836444377899,-0.566199243068695,0.546969413757324,-0.644376218318939,-0.534419238567352,0.770309031009674,-0.251481086015701,-0.585987508296967,0.765663683414459,-0.312240958213806,-0.562374293804169,0.747506678104401,-0.326701611280441,-0.578359723091125,0.752216935157776,-0.267812967300415,-0.6020348072052,0.731055200099945,-0.323874235153198,-0.60055285692215,0.702116310596466,-0.381517291069031,-0.601229846477509,0.711371302604675,-0.326328694820404,-0.622463345527649,0.738135457038879,-0.266389101743698,-0.619832932949066,0.701754510402679,-0.326402813196182,-0.633247196674347,0.705948054790497,-0.273484706878662,-0.653332650661469,0.728951394557953,-0.207177132368088,-0.652462720870972,0.726434469223022,-0.265133142471313,-0.634032666683197,0.757347702980042,-0.372576951980591,-0.536293745040894,0.730363547801971,-0.428024023771286,-0.532320082187653,0.720738172531128,-0.445418238639832,-0.53116762638092,0.749368011951447,-0.388856679201126,-0.535945892333984,0.716134607791901,-0.443763256072998,-0.538725733757019,0.684051871299744,-0.506168186664581,-0.525230228900909,0.715570986270905,-0.444876551628113,-0.538556456565857,0.741194844245911,-0.386835932731628,-0.548623919487,0.695752263069153,-0.442104041576385,-0.566103160381317,0.711984276771545,-0.382174998521805,-0.589084684848785,0.742770254611969,-0.325903356075287,-0.584875524044037,0.730538785457611,-0.384133070707321,-0.564583897590637,0.689446270465851,-0.220548301935196,-0.689943790435791,0.687317073345184,-0.16062980890274,-0.708373785018921,0.698859333992004,-0.092658519744873,-0.709232032299042,0.704064846038818,-0.149848520755768,-0.694145679473877,0.714947283267975,-0.0915011763572693,-0.693165123462677,0.729912519454956,-0.0733951106667519,-0.679588854312897,0.739292562007904,-0.130519434809685,-0.660614252090454,0.723817110061646,-0.149614408612251,-0.673575758934021,0.755162537097931,-0.130856350064278,-0.642344236373901, +0.763043463230133,-0.189737930893898,-0.617870628833771,0.743450164794922,-0.207783699035645,-0.635694742202759,0.735855400562286,-0.149406462907791,-0.660450279712677,0.747533142566681,-0.503646612167358,-0.433052241802216,0.716274738311768,-0.563019990921021,-0.412260919809341,0.697033524513245,-0.575241267681122,-0.428067535161972,0.729112923145294,-0.516516745090485,-0.449004292488098,0.691470682621002,-0.572071552276611,-0.441137790679932,0.635532975196838,-0.6291424036026,-0.447524070739746,0.672015368938446,-0.570766687393188,-0.47182697057724,0.722541689872742,-0.51358437538147,-0.462779402732849,0.662822604179382,-0.56782466173172,-0.488099694252014,0.692157447338104,-0.508026838302612,-0.512666463851929,0.736185610294342,-0.450855433940887,-0.504737734794617,0.712480425834656,-0.509009718894958,-0.482991516590118,0.687275409698486,0.0325169898569584,-0.725668847560883,0.686384320259094,0.0461111254990101,-0.725775718688965,0.691418349742889,-0.0166970416903496,-0.722261667251587,0.691905975341797,-0.0323132574558258,-0.721264243125916,0.705214500427246,-0.0153910089284182,-0.708827018737793,0.710184991359711,-0.0740752965211868,-0.700107336044312,0.704786121845245,-0.0922407507896423,-0.703397631645203,0.700360834598541,-0.0312077850103378,-0.713106453418732,0.686715245246887,-0.0934844091534615,-0.72089034318924,0.67964231967926,-0.162081390619278,-0.715413212776184,0.675017237663269,-0.0954570919275284,-0.731600821018219,0.679311156272888,-0.0339290089905262,-0.733065605163574,0.575421035289764,0.0181601215153933,-0.817655801773071,0.554255664348602,0.0838682502508163,-0.828110337257385,0.574526786804199,0.0210954900830984,-0.818213820457458,0.594243943691254,-0.0503506287932396,-0.802707374095917,0.582954108715057,0.0238950550556183,-0.81215363740921,0.598394453525543,-0.042706336826086,-0.800062775611877,0.613199830055237,-0.122998997569084,-0.780293047428131,0.599466025829315,-0.0477775558829308,-0.798972904682159,0.561350226402283,-0.14355081319809,-0.815033197402954,0.586539208889008,-0.226621925830841,-0.777569532394409, +0.574212431907654,-0.154475271701813,-0.804000914096832,0.545817852020264,-0.0734676942229271,-0.834676921367645,0.637056052684784,0.157262548804283,-0.754604578018188,0.634365379810333,0.166367441415787,-0.754918932914734,0.64817750453949,0.105364561080933,-0.754164695739746,0.651065349578857,0.0929903909564018,-0.7533038854599,0.660861909389496,0.10789579898119,-0.742711305618286,0.674215137958527,0.0442690774798393,-0.737207055091858,0.679705619812012,0.0311122238636017,-0.732824921607971,0.666659712791443,0.0966475903987885,-0.739069759845734,0.642511069774628,0.0243547279387712,-0.765889406204224,0.650843739509583,-0.0280732586979866,-0.758692502975464,0.639517664909363,0.043225672096014,-0.767560362815857,0.630139589309692,0.0881244838237762,-0.771464884281158,0.516374945640564,0.145335912704468,-0.843939781188965,0.490181714296341,0.198498338460922,-0.848716855049133,0.519236266613007,0.13961735367775,-0.843149363994598,0.54549914598465,0.0805543437600136,-0.834231317043304,0.523660182952881,0.141694143414497,-0.84006130695343,0.548282146453857,0.081488199532032,-0.83231395483017,0.571969091892242,0.0161668378859758,-0.820115923881531,0.547990322113037,0.0822150111198425,-0.83243453502655,0.521519184112549,-0.0122183263301849,-0.85315215587616,0.554490268230438,-0.0876947790384293,-0.827556729316711,0.527681529521942,-0.0247739665210247,-0.849080920219421,0.493433773517609,0.0465957708656788,-0.868534505367279,0.573947548866272,0.274568825960159,-0.77148962020874,0.575344800949097,0.280720144510269,-0.76822817325592,0.600798606872559,0.220515862107277,-0.768383979797363,0.599993169307709,0.213261127471924,-0.771056413650513,0.608898222446442,0.222938776016235,-0.761276185512543,0.629237771034241,0.165104508399963,-0.759473860263824,0.62833559513092,0.154780998826027,-0.762389123439789,0.607148110866547,0.215697571635246,-0.764752089977264,0.595049321651459,0.145339086651802,-0.790438532829285,0.605421423912048,0.104603245854378,-0.789001405239105,0.583843886852264,0.170314729213715,-0.793800592422485,0.574073016643524,0.204427570104599,-0.792874217033386, +0.437791377305984,0.277998208999634,-0.855017960071564,0.411169290542603,0.319117486476898,-0.853875875473022,0.452879369258881,0.257204979658127,-0.853666245937347,0.480619013309479,0.210372596979141,-0.851321816444397,0.452996909618378,0.257278114557266,-0.853581726551056,0.487776577472687,0.197189480066299,-0.850406050682068,0.515207827091217,0.144447281956673,-0.844805300235748,0.480071932077408,0.209899097681046,-0.851747274398804,0.465806603431702,0.107459910213947,-0.878337442874908,0.505261838436127,0.0448095090687275,-0.861801981925964,0.467321217060089,0.105393499135971,-0.877783179283142,0.427029877901077,0.164642363786697,-0.889122366905212,0.498448371887207,0.402055501937866,-0.768049895763397,0.497877478599548,0.407297611236572,-0.765654563903809,0.53194385766983,0.340727806091309,-0.775203347206116,0.532476782798767,0.334647059440613,-0.777482986450195,0.535520017147064,0.342218071222305,-0.772078394889832,0.565828621387482,0.277308017015457,-0.776490926742554,0.568419218063354,0.272351920604706,-0.776353061199188,0.53855949640274,0.337446004152298,-0.772064685821533,0.534328401088715,0.258625388145447,-0.804739773273468,0.546989798545837,0.229629307985306,-0.805029571056366,0.515723168849945,0.296398133039474,-0.803851962089539,0.503420114517212,0.321187913417816,-0.802126228809357,0.3381607234478,0.415748536586761,-0.844275236129761,0.318575501441956,0.442676365375519,-0.83818107843399,0.370060443878174,0.38460910320282,-0.845654249191284,0.393500983715057,0.350925534963608,-0.849710702896118,0.365908890962601,0.381326615810394,-0.848940968513489,0.413110077381134,0.32048425078392,-0.852425932884216,0.439723163843155,0.279896974563599,-0.853405654430389,0.390091061592102,0.347126752138138,-0.852837681770325,0.391998827457428,0.233409464359283,-0.88986349105835,0.433670222759247,0.183355197310448,-0.88221949338913,0.379733324050903,0.245006322860718,-0.892061948776245,0.338947415351868,0.290505617856979,-0.894830226898193,0.411460250616074,0.52636194229126,-0.744072318077087,0.408758848905563,0.524697959423065,-0.746731758117676, +0.455414861440659,0.46805813908577,-0.757310271263123,0.459494918584824,0.467239111661911,-0.755349040031433,0.460285782814026,0.470574736595154,-0.752792477607727,0.497459918260574,0.407102167606354,-0.766029715538025,0.496936649084091,0.401277035474777,-0.769435405731201,0.458888649940491,0.466895759105682,-0.75592964887619,0.462582021951675,0.383404314517975,-0.799386560916901,0.472398996353149,0.362122714519501,-0.803558588027954,0.429224014282227,0.430978119373322,-0.79374098777771,0.422338306903839,0.44589376449585,-0.789182484149933,0.217686280608177,0.552232027053833,-0.804768621921539,0.210250794887543,0.569018006324768,-0.794992566108704,0.274948239326477,0.513099074363708,-0.813100814819336,0.285974383354187,0.491781890392303,-0.822416663169861,0.266710579395294,0.505045473575592,-0.820849895477295,0.32469853758812,0.448076546192169,-0.832945585250854,0.342660278081894,0.421414822340012,-0.839638948440552,0.280655324459076,0.484229385852814,-0.828706502914429,0.297073662281036,0.364040106534958,-0.88273561000824,0.333119720220566,0.327618658542633,-0.884136557579041,0.26599308848381,0.384270161390305,-0.884072542190552,0.2328050583601,0.415833055973053,-0.879138588905334,0.326265960931778,0.667123198509216,-0.669699311256409,0.342645019292831,0.672646880149841,-0.655851066112518,0.391435980796814,0.604401707649231,-0.693885147571564,0.375034630298615,0.598016619682312,-0.708325624465942,0.376353859901428,0.595363676548004,-0.709859132766724,0.416893094778061,0.529313385486603,-0.73893678188324,0.404714107513428,0.522156476974487,-0.75070583820343,0.363243579864502,0.590152859687805,-0.720953345298767,0.384339451789856,0.509283363819122,-0.77000880241394,0.384490013122559,0.499964207410812,-0.776017546653748,0.329873293638229,0.565531373023987,-0.755882203578949,0.333540618419647,0.569805264472961,-0.751047730445862,0.0851480886340141,0.682933747768402,-0.725500702857971,0.0966913849115372,0.694186866283417,-0.713270962238312,0.166017681360245,0.646298229694366,-0.744806468486786,0.159908816218376,0.631705462932587,-0.758536458015442, +0.153829514980316,0.632455825805664,-0.759168028831482,0.220772206783295,0.580241739749908,-0.783950984477997,0.224026829004288,0.562301576137543,-0.796008110046387,0.152422919869423,0.618642330169678,-0.770745754241943,0.183035179972649,0.496437907218933,-0.848556280136108,0.206366747617722,0.469898343086243,-0.858258962631226,0.129737496376038,0.518718302249908,-0.845044136047363,0.109640181064606,0.541550695896149,-0.833487749099731,0.211931228637695,0.780228435993195,-0.58849710226059,0.219388097524643,0.777732968330383,-0.589067280292511,0.283842444419861,0.730427742004395,-0.621215581893921,0.277657210826874,0.732171177864075,-0.621958076953888,0.281656533479691,0.729034781455994,-0.623841285705566,0.345174044370651,0.674205303192139,-0.652918100357056,0.339233666658401,0.675965011119843,-0.654210865497589,0.275773346424103,0.730862259864807,-0.62433123588562,0.292039215564728,0.642785251140594,-0.70819503068924,0.277900278568268,0.638917922973633,-0.717325091362,0.215219348669052,0.699540495872498,-0.681413054466248,0.233773201704025,0.700204253196716,-0.6745845079422,-0.0589471161365509,0.797545671463013,-0.600371778011322,-0.0278094112873077,0.808607518672943,-0.587690830230713,0.0494988039135933,0.769717693328857,-0.636462688446045,0.0223768670111895,0.758227288722992,-0.651606321334839,0.0357184112071991,0.753255367279053,-0.656757593154907,0.109678864479065,0.70953780412674,-0.69607949256897,0.0929848477244377,0.697571694850922,-0.71045595407486,0.0144688952714205,0.743053019046783,-0.669076204299927,0.0558066517114639,0.625842452049255,-0.777950406074524,0.0621961914002895,0.60401314496994,-0.79454380273819,-0.0204791184514761,0.642972052097321,-0.76561576128006,-0.024231169372797,0.662643551826477,-0.748542845249176,0.106591954827309,0.890909552574158,-0.441495537757874,0.122819066047668,0.891956448554993,-0.43511974811554,0.19580066204071,0.849727153778076,-0.489516019821167,0.178413972258568,0.849485576152802,-0.496530711650848,0.190460905432701,0.846702873706818,-0.496808916330338,0.241810172796249,0.791884005069733,-0.560756385326385, +0.213881254196167,0.781607866287231,-0.585955500602722,0.161193132400513,0.838316261768341,-0.520809590816498,0.197645142674446,0.769890546798706,-0.606799006462097,0.166562765836716,0.771835088729858,-0.61361837387085,0.0964387059211731,0.821071743965149,-0.562619626522064,0.132480680942535,0.818076968193054,-0.559641897678375,-0.197895541787148,0.883184432983398,-0.425232589244843,-0.145514771342278,0.898161649703979,-0.414886951446533,-0.0730077847838402,0.873396217823029,-0.481507122516632,-0.120770774781704,0.860236883163452,-0.495385706424713,-0.0878390371799469,0.858040511608124,-0.506014823913574,-0.0130435097962618,0.825561046600342,-0.564162194728851,-0.0505496561527252,0.813077509403229,-0.579956769943237,-0.130036816000938,0.845000326633453,-0.518714606761932,-0.0850024148821831,0.745065748691559,-0.661552429199219,-0.0964303240180016,0.722515285015106,-0.68459689617157,-0.182522773742676,0.750130891799927,-0.635601341724396,-0.168259307742119,0.771885514259338,-0.613091766834259,-0.00550298346206546,0.95885294675827,-0.283849745988846,0.00365661131218076,0.957653641700745,-0.287899762392044,0.0773914679884911,0.93756639957428,-0.339087039232254,0.0685622617602348,0.939584732055664,-0.335380077362061,0.0826564729213715,0.93972259759903,-0.331797152757645,0.142495810985565,0.901965498924255,-0.407619059085846,0.11369389295578,0.895065307617188,-0.431198358535767,0.0546997562050819,0.933085978031158,-0.355469524860382,0.0888543426990509,0.879906535148621,-0.466764807701111,0.0419064611196518,0.880841493606567,-0.471553027629852,-0.0273577012121677,0.914473354816437,-0.403720438480377,0.0220091510564089,0.915483355522156,-0.401753664016724,-0.317686140537262,0.925589323043823,-0.205815613269806,-0.248669862747192,0.948245227336884,-0.197469830513,-0.192251741886139,0.939849972724915,-0.282349675893784,-0.259852975606918,0.920211255550385,-0.292724519968033,-0.210584163665771,0.926728069782257,-0.311174601316452,-0.131043031811714,0.910964012145996,-0.391116887331009,-0.188070550560951,0.896482944488525,-0.401182889938354, +-0.270994514226913,0.908663034439087,-0.317637532949448,-0.228210553526878,0.835549294948578,-0.499777287244797,-0.256533414125443,0.812827050685883,-0.522974967956543,-0.349014014005661,0.821049928665161,-0.45173704624176,-0.319501042366028,0.844700932502747,-0.429417550563812,-0.129486426711082,0.974387645721436,-0.18385311961174,-0.178604543209076,0.979243874549866,-0.0958220362663269,-0.109270110726357,0.988999545574188,-0.0997002869844437,-0.058566939085722,0.980458736419678,-0.187804669141769,-0.0714680701494217,0.99600350856781,-0.0535668209195137,-0.063531868159771,0.996284365653992,-0.0581487230956554,0.00885746348649263,0.99291604757309,-0.118487700819969,-0.0016200952231884,0.993574023246765,-0.113172829151154,0.0371347405016422,0.995887100696564,-0.0826441124081612,0.0601223185658455,0.975142598152161,-0.213265791535378,-0.00229134410619736,0.96016252040863,-0.279433012008667,-0.0278702490031719,0.98863959312439,-0.147699177265167,-0.228040590882301,0.959177076816559,-0.167263254523277,-0.303416162729263,0.93613874912262,-0.177716329693794,-0.333549857139587,0.938000977039337,-0.0943328738212585,-0.25786030292511,0.962480425834656,-0.0844953507184982,0.763529658317566,0.256352841854095,-0.592710494995117,0.833564639091492,0.151307761669159,-0.53129655122757,0.763326525688171,0.256014376878738,-0.593118369579315,0.67705374956131,0.353787243366241,-0.645316123962402,0.487142622470856,-0.529318451881409,0.694632351398468,0.430752456188202,-0.539663434028625,0.723336577415466,0.476965248584747,-0.496217131614685,0.725446581840515,0.527750015258789,-0.48685896396637,0.696023166179657,-0.054092038422823,0.983429551124573,0.173033148050308,-0.0582186430692673,0.997068047523499,0.0496590137481689,-0.128493130207062,0.9917032122612,-0.00378052145242691,-0.12658517062664,0.984432280063629,0.121939986944199,-0.104761935770512,0.951818346977234,0.28821337223053,-0.109102241694927,0.933438658714294,0.341744303703308,-0.056174248456955,0.944886088371277,0.322544485330582,-0.0486882925033569,0.963113784790039,0.264653205871582, +-0.0240599550306797,0.938910186290741,0.343320518732071,-0.0103858560323715,0.940132081508636,0.340652048587799,0.0120781380683184,0.955276250839233,0.295468509197235,-0.00276513397693634,0.954054594039917,0.29962033033371,-0.151560947299004,0.922681272029877,0.354525744915009,-0.181295081973076,0.907557129859924,0.378777265548706,-0.145687326788902,0.927334070205688,0.344712466001511,-0.121421009302139,0.936410903930664,0.329229086637497,-0.0924869626760483,0.923595547676086,0.37204509973526,-0.0809369906783104,0.92649257183075,0.367506295442581,-0.0628019273281097,0.934131741523743,0.351360023021698,-0.0745769292116165,0.931338667869568,0.356436133384705,-0.00410552322864532,0.923637330532074,0.38324561715126,-0.025021567940712,0.94312584400177,0.331492990255356,-0.0690111592411995,0.946882128715515,0.314088970422745,-0.0504286140203476,0.92766147851944,0.370001494884491,-0.0655390247702599,0.900208353996277,0.430499315261841,-0.0861823856830597,0.903162956237793,0.420558422803879,-0.0559291020035744,0.911744594573975,0.40693199634552,-0.032822024077177,0.911216378211975,0.410618305206299,-0.0257804580032825,0.908761084079742,0.416519582271576,0.000938370707444847,0.907383680343628,0.420302182435989,0.027128417044878,0.90475070476532,0.425077021121979,-0.000187516183359548,0.906072735786438,0.423121809959412,-0.0230889469385147,0.913422763347626,0.406356662511826,0.0144270677119493,0.911159634590149,0.411801129579544,-0.0227260440587997,0.913756012916565,0.405627310276031,-0.0602939575910568,0.914668500423431,0.399682760238647,-0.0328114703297615,0.85135293006897,0.52356618642807,0.027001615613699,0.893141090869904,0.448965519666672,-0.0121092367917299,0.89726322889328,0.441330045461655,-0.0706067308783531,0.857235193252563,0.510061204433441,0.042782224714756,0.890170335769653,0.453614950180054,0.0263509750366211,0.893212676048279,0.448861569166183,0.0460000783205032,0.896590888500214,0.440464287996292,0.0635826587677002,0.895533442497253,0.44042831659317,0.0644043385982513,0.894107520580292,0.4431973695755,0.0627114698290825,0.894518256187439,0.44261109828949, +0.0619372054934502,0.896693527698517,0.438297480344772,0.0632640719413757,0.895588040351868,0.440363228321075,0.051839254796505,0.898372530937195,0.436164498329163,0.074087917804718,0.894393086433411,0.441103219985962,0.0509408563375473,0.897048354148865,0.43898668885231,0.0289040580391884,0.900897085666656,0.433069288730621,0.0985645651817322,0.883934438228607,0.457104921340942,0.0709338784217834,0.887886881828308,0.454560816287994,0.0338185355067253,0.843168497085571,0.536584734916687,0.0612419471144676,0.837842702865601,0.54246574640274,0.0997387394309044,0.884027659893036,0.456669986248016,0.114904172718525,0.881922960281372,0.457175105810165,0.131136178970337,0.885251104831696,0.446244120597839,0.1155049726367,0.884968757629395,0.45109760761261,0.131073161959648,0.885260224342346,0.446244776248932,0.133258670568466,0.885568916797638,0.444982945919037,0.134610712528229,0.881367683410645,0.452847838401794,0.132602855563164,0.882091522216797,0.452029794454575,0.134343281388283,0.88141530752182,0.45283442735672,0.169074773788452,0.873897552490234,0.455759763717651,0.134453147649765,0.881727635860443,0.452193289995193,0.0993076339364052,0.887443542480469,0.45009109377861,-0.316548436880112,-0.846016049385071,-0.429015070199966,-0.339243590831757,-0.788209319114685,-0.513458728790283,-0.33233106136322,-0.788953185081482,-0.516825795173645,-0.309848427772522,-0.846533894538879,-0.432867586612701,0.987654685974121,-0.0473650433123112,0.149314269423485,0.989501476287842,-0.119149997830391,-0.0817934721708298,0.986610054969788,-0.0578402578830719,0.15249639749527,0.928421318531036,0.0312512703239918,0.370212435722351,0.183851271867752,0.883929252624512,0.429962635040283,0.208812534809113,0.872054159641266,0.442627370357513,0.183573707938194,0.876463055610657,0.445099174976349,0.158505648374557,0.885549187660217,0.436667621135712,-0.332420289516449,-0.739908933639526,-0.584834635257721,-0.392996340990067,-0.722199082374573,-0.569194555282593,-0.44862362742424,-0.75394082069397,-0.479906320571899,-0.389799296855927,-0.772943019866943,-0.500615358352661, +0.226727768778801,0.864992678165436,0.447640806436539,0.126875102519989,0.891196668148041,0.435512542724609,0.0269365571439266,0.895992815494537,0.443250954151154,0.128016963601112,0.879491567611694,0.458373695611954,-0.277470260858536,-0.869108557701111,-0.409463703632355,-0.262318968772888,-0.873759090900421,-0.409553319215775,-0.247178584337234,-0.878253877162933,-0.409356594085693,-0.262803375720978,-0.871887266635895,-0.413215398788452,-0.386763989925385,-0.777737677097321,-0.495517700910568,-0.381439834833145,-0.781057000160217,-0.494422495365143,-0.353202044963837,-0.836464822292328,-0.419016689062119,-0.357977956533432,-0.835372924804688,-0.417137831449509,-0.290473163127899,-0.868415892124176,-0.401844918727875,-0.270347356796265,-0.873398542404175,-0.405076891183853,-0.291180312633514,-0.866921365261078,-0.404550909996033,-0.310815215110779,-0.862285554409027,-0.399822056293488,-0.300323039293289,-0.865212380886078,-0.401514321565628,-0.296958416700363,-0.866903364658356,-0.400367677211761,-0.294666618108749,-0.865637123584747,-0.404776334762573,-0.297703295946121,-0.864850699901581,-0.404235243797302,-0.293357670307159,-0.865912199020386,-0.405138790607452,-0.305891752243042,-0.848355054855347,-0.432115763425827,-0.313162863254547,-0.845892906188965,-0.431734055280685,-0.300341099500656,-0.864349246025085,-0.403355419635773,-0.402104079723358,-0.779354274272919,-0.480540752410889,-0.415440648794174,-0.780566215515137,-0.467039048671722,-0.398319482803345,-0.830047845840454,-0.390335947275162,-0.385037273168564,-0.831769704818726,-0.399881958961487,-0.333038419485092,-0.868239343166351,-0.367757976055145,-0.319797366857529,-0.873518824577332,-0.367007553577423,-0.333220273256302,-0.867984294891357,-0.368195056915283,-0.346402227878571,-0.86251163482666,-0.36888924241066,-0.341957300901413,-0.86638879776001,-0.363917320966721,-0.339147955179214,-0.861671924591064,-0.377491891384125,-0.334016114473343,-0.860633909702301,-0.384372979402542,-0.337683945894241,-0.86413711309433,-0.373144447803497,-0.336975544691086,-0.860028684139252,-0.383142471313477, +-0.354358494281769,-0.836147546768188,-0.418673396110535,-0.349246233701706,-0.837171256542206,-0.420917302370071,-0.32906499505043,-0.86565625667572,-0.377300292253494,-0.561848998069763,-0.723726153373718,-0.400682181119919,-0.53131628036499,-0.755706071853638,-0.382898807525635,-0.52133983373642,-0.780753135681152,-0.344426274299622,-0.562052190303802,-0.736599385738373,-0.376189887523651,-0.37137159705162,-0.872217118740082,-0.318308711051941,-0.341350615024567,-0.882018387317657,-0.324843555688858,-0.325128942728043,-0.876599311828613,-0.3547742664814,-0.354617983102798,-0.868172883987427,-0.34716260433197,-0.35337495803833,-0.872744202613831,-0.336814224720001,-0.353806525468826,-0.868161141872406,-0.348019152879715,-0.360932588577271,-0.863600313663483,-0.352025836706161,-0.361443191766739,-0.867132365703583,-0.342695713043213,-0.362829118967056,-0.863249599933624,-0.35093492269516,-0.393242061138153,-0.830192565917969,-0.39514696598053,-0.399149984121323,-0.829908132553101,-0.389784216880798,-0.365818321704865,-0.866432309150696,-0.339811593294144,-0.567628562450409,-0.722184181213379,-0.39528214931488,-0.577241480350494,-0.713393270969391,-0.397319108247757,-0.569139063358307,-0.730332016944885,-0.37775120139122,-0.549914419651031,-0.752137303352356,-0.36315792798996,-0.603546738624573,-0.717784285545349,-0.347155719995499,-0.607636988162994,-0.709537267684937,-0.356839299201965,-0.59072470664978,-0.729415357112885,-0.344960302114487,-0.593231022357941,-0.728623628616333,-0.342322558164597,-0.337165415287018,-0.904813647270203,-0.260061085224152,-0.322787076234818,-0.912832915782928,-0.250089168548584,-0.346144109964371,-0.893296122550964,-0.286716610193253,-0.359614491462708,-0.884822010993958,-0.296255737543106,-0.361468464136124,-0.891211628913879,-0.274011760950089,-0.390307396650314,-0.874414503574371,-0.288200378417969,-0.385208666324615,-0.87001097202301,-0.307726204395294,-0.358818620443344,-0.884922623634338,-0.296919465065002,-0.383932143449783,-0.870226502418518,-0.308710187673569,-0.429940164089203,-0.824443936347961,-0.368026822805405, +-0.398578375577927,-0.856035172939301,-0.329149067401886,-0.366719305515289,-0.883878886699677,-0.290301978588104,-0.448664277791977,-0.832050144672394,-0.326179295778275,-0.400502443313599,-0.871870696544647,-0.281849712133408,-0.419249176979065,-0.853139400482178,-0.31045663356781,-0.459275156259537,-0.817834734916687,-0.346717208623886,-0.421505600214005,-0.852779507637024,-0.308383047580719,-0.448890268802643,-0.821033835411072,-0.352705419063568,-0.480783671140671,-0.788968205451965,-0.382591426372528,-0.460072964429855,-0.817731976509094,-0.34590083360672,-0.498265981674194,-0.785770654678345,-0.36646357178688,-0.526118218898773,-0.756590485572815,-0.388291537761688,-0.510263681411743,-0.780282557010651,-0.361649394035339,-0.474143117666245,-0.815727710723877,-0.331325650215149,0.708552658557892,-0.389807879924774,0.588220179080963,0.703835248947144,-0.439310252666473,0.558231592178345,0.686056792736053,-0.481892645359039,0.545073926448822,0.691049873828888,-0.439646571874619,0.573725581169128,-0.628536283969879,-0.699158728122711,-0.340762913227081,-0.612336337566376,-0.716686189174652,-0.333774149417877,-0.615126311779022,-0.713733315467834,-0.334969282150269,-0.623232424259186,-0.70503443479538,-0.338389962911606,-0.610154747962952,-0.713832914829254,-0.343735218048096,-0.607322216033936,-0.717081487178802,-0.341985315084457,-0.597515881061554,-0.728026211261749,-0.336084365844727,-0.618062317371368,-0.704669773578644,-0.348481863737106,-0.602570235729218,-0.727260589599609,-0.328635185956955,-0.606463432312012,-0.72320830821991,-0.330411791801453,-0.640004813671112,-0.685633361339569,-0.346843987703323,-0.622968316078186,-0.705017924308777,-0.338910311460495,-0.55730265378952,-0.749544143676758,-0.357207745313644,-0.517411887645721,-0.790278315544128,-0.328245609998703,-0.530253291130066,-0.777904272079468,-0.337188750505447,-0.564418613910675,-0.742000579833984,-0.361755102872849,-0.526103019714355,-0.778468132019043,-0.34234943985939,-0.549613475799561,-0.752200245857239,-0.363483101129532,-0.56749039888382,-0.730605125427246,-0.37969833612442, +-0.557943999767303,-0.74231618642807,-0.37103259563446,-0.58797824382782,-0.7268146276474,-0.354995936155319,-0.594332873821259,-0.71935760974884,-0.359573423862457,-0.59889680147171,-0.713794708251953,-0.363070011138916,-0.575333952903748,-0.741239786148071,-0.345766603946686,-0.667599022388458,-0.67948579788208,-0.304319947957993,-0.662208139896393,-0.685309171676636,-0.30303755402565,-0.629837095737457,-0.717099905014038,-0.29845118522644,-0.637297689914703,-0.709740281105042,-0.3002008497715,-0.628278493881226,-0.715991735458374,-0.30433851480484,-0.602987170219421,-0.739069819450378,-0.300303786993027,-0.613922595977783,-0.729430913925171,-0.301711320877075,-0.635795176029205,-0.709150969982147,-0.304745048284531,-0.606895327568054,-0.727762520313263,-0.319436848163605,-0.617806494235992,-0.717167258262634,-0.322469055652618,-0.634427666664124,-0.70042473077774,-0.326965987682343,-0.628599166870117,-0.706187605857849,-0.325825363397598,-0.669335067272186,-0.692211508750916,-0.2698774933815,-0.668061792850494,-0.691908836364746,-0.273780554533005,-0.640023171901703,-0.718894422054291,-0.271221846342087,-0.639459371566772,-0.720984578132629,-0.266970098018646,-0.640238881111145,-0.719203293323517,-0.269890666007996,-0.610185861587524,-0.743864059448242,-0.272652804851532,-0.610521733760834,-0.742618381977081,-0.275283873081207,-0.63822203874588,-0.71971720457077,-0.273276001214981,-0.607888460159302,-0.740915775299072,-0.285509318113327,-0.606888175010681,-0.740788340568542,-0.287957400083542,-0.632595241069794,-0.719034731388092,-0.287771463394165,-0.635924577713013,-0.717356741428375,-0.284604012966156,-0.607345759868622,-0.727875769138336,-0.318320572376251,-0.599493384361267,-0.737464487552643,-0.311052739620209,-0.548823475837708,-0.780188083648682,-0.300165563821793,-0.564286828041077,-0.765650153160095,-0.308804929256439,-0.543466329574585,-0.778843820095062,-0.313124299049377,-0.475722342729568,-0.831379055976868,-0.287223219871521,-0.50050950050354,-0.811206817626953,-0.302380204200745,-0.55671501159668,-0.764868021011353,-0.324107259511948, +-0.497633427381516,-0.811204791069031,-0.307095766067505,-0.519420742988586,-0.790116965770721,-0.325449705123901,-0.563564896583557,-0.749699532985687,-0.346908181905746,-0.551930129528046,-0.764269709587097,-0.333564013242722,-0.607974529266357,-0.74097204208374,-0.285179793834686,-0.608681082725525,-0.742440104484558,-0.279803723096848,-0.549795687198639,-0.787975072860718,-0.277164250612259,-0.552656769752502,-0.784472584724426,-0.281377851963043,-0.54688560962677,-0.786381781101227,-0.287262707948685,-0.46052074432373,-0.846150457859039,-0.26823490858078,-0.470736742019653,-0.83860969543457,-0.274118036031723,-0.548724174499512,-0.783052027225494,-0.292799204587936,-0.469226449728012,-0.838348031044006,-0.277487277984619,-0.477581590414047,-0.83155620098114,-0.283601850271225,-0.546804547309875,-0.779696464538574,-0.305087119340897,-0.546286284923553,-0.782128989696503,-0.299742579460144,-0.390152037143707,-0.881742119789124,-0.265164762735367,-0.310650885105133,-0.927330493927002,-0.208696737885475,-0.355363577604294,-0.902128219604492,-0.244706645607948,-0.422502517700195,-0.857892513275146,-0.292424589395523,-0.359075933694839,-0.901818335056305,-0.240391701459885,-0.399228572845459,-0.872039139270782,-0.283133059740067,-0.449411153793335,-0.83198070526123,-0.325327396392822,-0.421693205833435,-0.857920289039612,-0.293509393930435,-0.461021840572357,-0.830753266811371,-0.311942130327225,-0.507298469543457,-0.790943264961243,-0.34213599562645,-0.489070057868958,-0.811054885387421,-0.320936918258667,-0.43030247092247,-0.857542157173157,-0.281888782978058,-0.273375779390335,-0.95300167798996,-0.13058902323246,-0.220928460359573,-0.961799621582031,-0.161654531955719,-0.228062465786934,-0.941357612609863,-0.24866358935833,-0.283124178647995,-0.933522939682007,-0.219944909214973,-0.276720076799393,-0.939794778823853,-0.200528517365456,-0.314290970563889,-0.913684487342834,-0.257685840129852,-0.333401530981064,-0.905213832855225,-0.263498276472092,-0.296495407819748,-0.93255203962326,-0.206002756953239,-0.345032066106796,-0.903897345066071,-0.252829283475876, +-0.387415558099747,-0.873457074165344,-0.294927150011063,-0.350461930036545,-0.902491331100464,-0.250371485948563,-0.301028460264206,-0.932141363620758,-0.20123216509819,-0.154677525162697,-0.979085326194763,-0.13216233253479,-0.12697933614254,-0.985550165176392,-0.112102836370468,-0.168730959296227,-0.97506308555603,-0.144159093499184,-0.191105589270592,-0.968354940414429,-0.160522133111954,-0.212339013814926,-0.973206698894501,-0.08821040391922,-0.293627858161926,-0.952998638153076,-0.0746753141283989,-0.269661962985992,-0.953418612480164,-0.13518713414669,-0.195589900016785,-0.968412637710571,-0.154666215181351,-0.240066528320313,-0.955531597137451,-0.171252593398094,-0.302290976047516,-0.927502036094666,-0.219909444451332,-0.277708142995834,-0.939355254173279,-0.201221257448196,-0.204024523496628,-0.968377828598022,-0.143590852618217,-0.466987252235413,-0.837940990924835,-0.282449692487717,-0.457841098308563,-0.845379054546356,-0.27516496181488,-0.358757585287094,-0.90321958065033,-0.235557541251183,-0.378597438335419,-0.892238676548004,-0.246118441224098,-0.355935305356979,-0.902825176715851,-0.241281539201736,-0.250454902648926,-0.950857579708099,-0.182050302624702,-0.279347062110901,-0.939385175704956,-0.198798462748528,-0.374784290790558,-0.891950607299805,-0.252905160188675,-0.281786978244781,-0.939414858818054,-0.195181787014008,-0.307377338409424,-0.927419424057007,-0.213101953268051,-0.390241086483002,-0.881744980812073,-0.265024065971375,-0.374797999858856,-0.891951739788055,-0.252880841493607,-0.0602494031190872,-0.996253311634064,-0.0620429888367653,-0.012622999958694,-0.995417237281799,-0.0947912037372589,-0.0251722261309624,-0.986525535583496,-0.161659300327301,-0.0838323011994362,-0.987298607826233,-0.13495822250843,-0.0718304216861725,-0.993446230888367,-0.0889106839895248,-0.121895872056484,-0.985377669334412,-0.119047269225121,-0.14826999604702,-0.978799164295197,-0.141309201717377,-0.0980916023254395,-0.988952219486237,-0.111138179898262,-0.153919696807861,-0.979057788848877,-0.13324648141861, +-0.24398946762085,-0.950439095497131,-0.192703649401665,-0.193038284778595,-0.967057943344116,-0.165937349200249,-0.101587250828743,-0.989241719245911,-0.105266094207764,-0.42931267619133,-0.86864298582077,-0.247285529971123,-0.383228719234467,-0.892708599567413,-0.237080961465836,-0.255818158388138,-0.944369673728943,-0.206695482134819,-0.31181737780571,-0.924266755580902,-0.220229625701904,-0.256136417388916,-0.944514751434326,-0.205635577440262,-0.129321739077568,-0.979075789451599,-0.157119899988174,-0.18787308037281,-0.966254532337189,-0.176227405667305,-0.310960590839386,-0.924035012722015,-0.222402274608612,-0.193809181451797,-0.9671670794487,-0.164395272731781,-0.246514201164246,-0.95061981678009,-0.188554495573044,-0.355808317661285,-0.902806639671326,-0.241538241505623,-0.311286389827728,-0.924123704433441,-0.22157683968544,-0.596976280212402,-0.766630947589874,-0.236424267292023,-0.568363130092621,-0.78875732421875,-0.234147682785988,-0.495512962341309,-0.834934651851654,-0.239480823278427,-0.532238245010376,-0.811267495155334,-0.24200764298439,-0.49481987953186,-0.833706438541412,-0.245126470923424,-0.383305579423904,-0.892774283885956,-0.236708462238312,-0.430420875549316,-0.869174599647522,-0.243461400270462,-0.530662298202515,-0.809837579727173,-0.250121027231216,-0.427666187286377,-0.867833614349365,-0.252916038036346,-0.462668895721436,-0.846739888191223,-0.262619972229004,-0.549984335899353,-0.788076400756836,-0.276500999927521,-0.526906967163086,-0.806343257427216,-0.268662869930267,-0.631954431533813,-0.725561141967773,-0.272386938333511,-0.610719799995422,-0.722249031066895,-0.324619174003601,-0.604139864444733,-0.747122883796692,-0.277168780565262,-0.629155576229095,-0.744468688964844,-0.223449647426605,-0.60633248090744,-0.762803673744202,-0.224703267216682,-0.568482458591461,-0.789244890213013,-0.232207119464874,-0.597537636756897,-0.767589211463928,-0.231853023171425,-0.629052698612213,-0.744149804115295,-0.224797427654266,-0.594536185264587,-0.762523412704468,-0.255117535591125,-0.613292157649994,-0.746772587299347,-0.257300347089767, +-0.642857551574707,-0.722985208034515,-0.253035098314285,-0.626825153827667,-0.737702906131744,-0.250768065452576,-0.149186015129089,-0.970099329948425,-0.19144444167614,-0.0128199532628059,-0.98778247833252,-0.155311197042465,-0.0726533383131027,-0.983551442623138,-0.165372386574745,-0.20773109793663,-0.957643091678619,-0.19941845536232,-0.075639933347702,-0.984801709651947,-0.156346932053566,-0.124974384903908,-0.977842688560486,-0.167943522334099,-0.255469113588333,-0.944209337234497,-0.207856252789497,-0.208043605089188,-0.957852780818939,-0.198080703616142,-0.255105167627335,-0.944040954113007,-0.209065034985542,-0.384560972452164,-0.893836498260498,-0.230584502220154,-0.343038231134415,-0.911925613880157,-0.225203171372414,-0.207282930612564,-0.957339525222778,-0.201333120465279,-0.543584883213043,-0.815286576747894,-0.199558243155479,-0.507712006568909,-0.83714348077774,-0.203517898917198,-0.418089509010315,-0.882058560848236,-0.217195764183998,-0.463828772306442,-0.859903395175934,-0.213141247630119,-0.41809207201004,-0.881951689720154,-0.217624202370644,-0.290142029523849,-0.931157827377319,-0.220823109149933,-0.343642324209213,-0.912746489048004,-0.220915868878365,-0.463673681020737,-0.859272181987762,-0.216004475951195,-0.342728585004807,-0.911501526832581,-0.227380990982056,-0.38455992937088,-0.893835604190826,-0.23058970272541,-0.496472209692001,-0.836637139320374,-0.231417164206505,-0.462885439395905,-0.856183767318726,-0.229535445570946,0.0806922540068626,-0.990951716899872,-0.107254944741726,0.107728764414787,-0.989482760429382,-0.0965323373675346,0.0499528795480728,-0.99162757396698,-0.119077667593956,0.0239576380699873,-0.991340637207031,-0.129112049937248,0.0199372619390488,-0.998651266098022,-0.0479383058845997,-0.0264790281653404,-0.997344493865967,-0.0678448677062988,-0.0524456426501274,-0.995554208755493,-0.0782386288046837,-0.00477776490151882,-0.998315513134003,-0.0578216053545475,-0.0284748412668705,-0.991415560245514,-0.127610802650452,-0.125209227204323,-0.977912724018097,-0.167360529303551, +-0.0783452764153481,-0.985858261585236,-0.148140773177147,0.0157867558300495,-0.993929266929626,-0.108882993459702,-0.59043937921524,-0.786479294300079,-0.181195199489594,-0.562033414840698,-0.8082674741745,-0.175562798976898,-0.554421305656433,-0.810046017169952,-0.190899655222893,-0.583677649497986,-0.78783106803894,-0.196577504277229,-0.554780781269073,-0.808923423290253,-0.194579750299454,-0.50791609287262,-0.836221396923065,-0.2067731320858,-0.543592035770416,-0.815056800842285,-0.200474858283997,-0.583375573158264,-0.789826929569244,-0.189331620931625,-0.543637096881866,-0.810641050338745,-0.217531219124794,-0.569416463375092,-0.79331511259079,-0.215444087982178,-0.606669783592224,-0.767751157283783,-0.206179693341255,-0.584087133407593,-0.784590065479279,-0.207991808652878,0.221847146749496,-0.968038976192474,-0.116980984807014,0.24830673635006,-0.962262511253357,-0.11133186519146,0.186531960964203,-0.974349677562714,-0.125891104340553,0.158220291137695,-0.978589594364166,-0.131639212369919,0.178392082452774,-0.979388415813446,-0.0947349369525909,0.113876864314079,-0.98686546087265,-0.114581041038036,0.0856850892305374,-0.988749623298645,-0.122605942189693,0.151141166687012,-0.983151912689209,-0.10280429571867,0.0903216376900673,-0.986459255218506,-0.136895194649696,-0.0107092037796974,-0.986477017402649,-0.163549408316612,0.0574284270405769,-0.987634360790253,-0.145878568291664,0.155115693807602,-0.980710685253143,-0.118936404585838,-0.223770797252655,-0.952528655529022,-0.206436261534691,-0.152867078781128,-0.964602589607239,-0.214880481362343,-0.00573893496766686,-0.977414488792419,-0.211253181099892,-0.076849602162838,-0.975585877895355,-0.205733522772789,-0.00584359839558601,-0.980078935623169,-0.198522374033928,0.131487011909485,-0.97545999288559,-0.176604107022285,0.0627816021442413,-0.982330203056335,-0.176311835646629,-0.0776619166135788,-0.977507352828979,-0.196081906557083,0.0603903979063034,-0.984826505184174,-0.162695661187172,-0.00949257519096136,-0.985691606998444,-0.168290987610817,-0.148587062954903,-0.969454944133759,-0.19513863325119, +-0.0780261904001236,-0.978343546390533,-0.191717952489853,0.20053693652153,-0.960178792476654,-0.194529071450233,0.269831210374832,-0.941263854503632,-0.20301142334938,0.355965554714203,-0.917147099971771,-0.17924752831459,0.29273310303688,-0.940660774707794,-0.171653002500534,0.356061547994614,-0.916331648826599,-0.183184221386909,0.378629118204117,-0.912724018096924,-0.153541550040245,0.314793616533279,-0.939342081546783,-0.136166736483574,0.292201012372971,-0.941867530345917,-0.165843948721886,0.314817726612091,-0.939303874969482,-0.136374622583389,0.255034297704697,-0.955560326576233,-0.147858172655106,0.227864235639572,-0.961659729480743,-0.152605980634689,0.289822906255722,-0.946625471115112,-0.141078189015388,-0.453566789627075,-0.87465113401413,-0.171063393354416,-0.398235768079758,-0.898159742355347,-0.18632584810257,-0.291333854198456,-0.932631134986877,-0.212893918156624,-0.356729984283447,-0.913181483745575,-0.197087123990059,-0.290524482727051,-0.934021592140198,-0.207844346761703,-0.153683722019196,-0.962188005447388,-0.224890202283859,-0.22382190823555,-0.950814127922058,-0.214140802621841,-0.356500148773193,-0.91382759809494,-0.194491595029831,-0.22385148704052,-0.949468851089478,-0.219998493790627,-0.290586620569229,-0.932454168796539,-0.214682832360268,-0.41794565320015,-0.885695517063141,-0.20215055346489,-0.357809633016586,-0.909950792789459,-0.209671154618263,-0.526654660701752,-0.832685112953186,-0.171085640788078,-0.485228449106216,-0.854350984096527,-0.186112508177757,-0.468705952167511,-0.862430393695831,-0.191124767065048,-0.512985527515411,-0.840308845043182,-0.17529059946537,-0.464035212993622,-0.868876814842224,-0.17240746319294,-0.400016784667969,-0.895651042461395,-0.194411918520927,-0.454288572072983,-0.873323082923889,-0.175865679979324,-0.509412109851837,-0.846319139003754,-0.155702963471413,-0.457458764314651,-0.86693286895752,-0.197886556386948,-0.50648832321167,-0.842030942440033,-0.18561652302742,-0.552251756191254,-0.816116869449615,-0.170209527015686,-0.513881027698517,-0.838681817054749,-0.180386319756508, +-0.339625090360641,-0.926345348358154,-0.162908375263214,-0.266243100166321,-0.943639278411865,-0.196620598435402,-0.328577250242233,-0.92939305305481,-0.168123990297318,-0.395356148481369,-0.908429980278015,-0.135825246572495,-0.338091343641281,-0.919759392738342,-0.199341386556625,-0.396007657051086,-0.901149034500122,-0.176375716924667,-0.458240479230881,-0.87606406211853,-0.150091916322708,-0.407687813043594,-0.896860122680664,-0.171559751033783,-0.460971653461456,-0.87278151512146,-0.160492435097694,-0.47665736079216,-0.865686118602753,-0.152922615408897,-0.427946865558624,-0.886682569980621,-0.175087302923203,-0.411410599946976,-0.892957150936127,-0.182671338319778,-0.0782317146658897,-0.972817897796631,-0.217956855893135,-0.00166135304607451,-0.97193855047226,-0.235229298472404,0.13999417424202,-0.9589923620224,-0.246445372700691,0.0657595172524452,-0.970300436019897,-0.232793629169464,0.142266929149628,-0.962744891643524,-0.229961603879929,0.269059091806412,-0.937583148479462,-0.220329701900482,0.20091824233532,-0.956784069538116,-0.210228785872459,0.0667954012751579,-0.973865270614624,-0.217082500457764,0.200570166110992,-0.959909737110138,-0.19581863284111,0.132855474948883,-0.972668886184692,-0.190432861447334,-0.00580417830497026,-0.979091942310333,-0.203335359692574,0.067185677587986,-0.97515732049942,-0.211078971624374,0.342861294746399,-0.906405568122864,-0.246729075908661,0.422252744436264,-0.867684066295624,-0.262349039316177,0.498866617679596,-0.831205070018768,-0.245418652892113,0.425596594810486,-0.874783456325531,-0.231562823057175,0.505456924438477,-0.844549179077148,-0.176776513457298,0.517967164516449,-0.828794121742249,-0.211684614419937,0.445921003818512,-0.859138667583466,-0.251068383455276,0.426377266645432,-0.878186106681824,-0.216775387525558,0.447997272014618,-0.872875988483429,-0.193354904651642,0.380259722471237,-0.904877305030823,-0.191310867667198,0.356445461511612,-0.912167191505432,-0.20223180949688,0.426970958709717,-0.88095498085022,-0.203995943069458,-0.140146017074585,-0.966747403144836,-0.213912680745125, +-0.00454498827457428,-0.968837678432465,-0.247654855251312,-0.080280102789402,-0.969635963439941,-0.231000646948814,-0.214243546128273,-0.957301080226898,-0.194098919630051,-0.0810798928141594,-0.968338370323181,-0.236107721924782,-0.15325902402401,-0.963462471961975,-0.219662666320801,-0.288248866796494,-0.937722265720367,-0.193880453705788,-0.218837380409241,-0.952175915241241,-0.213240206241608,-0.289439648389816,-0.935823261737823,-0.201145470142365,-0.393983840942383,-0.903727889060974,-0.167489349842072,-0.334393948316574,-0.923677563667297,-0.187083914875984,-0.220747917890549,-0.949895918369293,-0.22128763794899,-0.182660847902298,-0.971312761306763,-0.15227198600769,-0.106992155313492,-0.973125040531158,-0.203912958502769,-0.174164652824402,-0.970307469367981,-0.167839363217354,-0.243549644947052,-0.962646067142487,-0.118305526673794,-0.183565825223923,-0.965104162693024,-0.186755359172821,-0.250043720006943,-0.955621242523193,-0.155776143074036,-0.317695409059525,-0.941325008869171,-0.113916516304016,-0.257571786642075,-0.955585062503815,-0.143226847052574,-0.327400952577591,-0.93513810634613,-0.135371446609497,-0.337799906730652,-0.934268772602081,-0.114162638783455,-0.275458127260208,-0.95170259475708,-0.135592132806778,-0.265055954456329,-0.951424598693848,-0.156641900539398,0.080986425280571,-0.965093672275543,-0.24906949698925,0.163916870951653,-0.94778960943222,-0.273543834686279,0.297137230634689,-0.906945824623108,-0.298594504594803,0.216356843709946,-0.935826897621155,-0.278240710496902,0.300628393888474,-0.909774422645569,-0.28623953461647,0.417989760637283,-0.862425744533539,-0.285493552684784,0.340399920940399,-0.901630103588104,-0.266816318035126,0.219380721449852,-0.93923145532608,-0.26403871178627,0.342424809932709,-0.905566453933716,-0.250389099121094,0.268295168876648,-0.934033691883087,-0.23579429090023,0.141222581267357,-0.961046934127808,-0.237581640481949,0.221188873052597,-0.941192388534546,-0.255406647920609,0.487005025148392,-0.813818633556366,-0.317057430744171,0.553721368312836,-0.760326206684113,-0.339553773403168, +0.620119631290436,-0.714588582515717,-0.323751300573349,0.558669745922089,-0.771902084350586,-0.303406208753586,0.619649708271027,-0.714144647121429,-0.325625061988831,0.638603210449219,-0.707125425338745,-0.30357813835144,0.576175093650818,-0.767625510692596,-0.280665665864944,0.558718979358673,-0.771966576576233,-0.303151279687881,0.585975468158722,-0.782041788101196,-0.212234348058701,0.522148907184601,-0.840397834777832,-0.145230695605278,0.502187252044678,-0.83781909942627,-0.214166209101677,0.562961876392365,-0.777521014213562,-0.280241012573242,0.037786141037941,-0.975253522396088,-0.217836767435074,0.164134874939919,-0.947914600372314,-0.272979080677032,0.0793394297361374,-0.96383410692215,-0.254419088363647,-0.0468925163149834,-0.979483544826508,-0.195992439985275,0.0789582878351212,-0.963538467884064,-0.255654692649841,-0.00348030403256416,-0.970002174377441,-0.243071734905243,-0.132671520113945,-0.972667813301086,-0.1905667334795,-0.0510723181068897,-0.977145671844482,-0.206344828009605,-0.136172115802765,-0.969980418682098,-0.201482832431793,-0.244190379977226,-0.959384500980377,-0.141253441572189,-0.170666456222534,-0.972115755081177,-0.160822615027428,-0.0568110235035419,-0.973721861839294,-0.220541268587112,-0.0526661053299904,-0.969645261764526,-0.23877689242363,0.0233987141400576,-0.954021334648132,-0.298824071884155,-0.0415471717715263,-0.968136548995972,-0.24695248901844,-0.115721695125103,-0.975711464881897,-0.185999393463135,-0.0418548099696636,-0.968014717102051,-0.247377783060074,-0.107182264328003,-0.973038196563721,-0.204226970672607,-0.179936930537224,-0.972440004348755,-0.148267731070518,-0.119163066148758,-0.974469423294067,-0.190288126468658,-0.19616274535656,-0.965339422225952,-0.172162964940071,-0.207955181598663,-0.966038346290588,-0.153377711772919,-0.14534766972065,-0.970740377902985,-0.191147327423096,-0.134487003087997,-0.968544244766235,-0.209368973970413,0.185371488332748,-0.932586908340454,-0.309708178043365,0.309541344642639,-0.881100535392761,-0.357555687427521,0.239676281809807,-0.919491827487946,-0.311592817306519, +0.113660365343094,-0.958992838859558,-0.259642571210861,0.241239637136459,-0.920202016830444,-0.308272302150726,0.163139760494232,-0.947341084480286,-0.275554686784744,0.0364647917449474,-0.974699795246124,-0.220523804426193,0.115329712629318,-0.959558725357056,-0.256800144910812,0.0279376916587353,-0.97091269493103,-0.237798541784286,-0.0859595611691475,-0.981834530830383,-0.169150814414024,-0.0141840428113937,-0.977833390235901,-0.208903849124908,0.103604778647423,-0.955367267131805,-0.276657521724701,0.59385758638382,-0.689895331859589,-0.413977921009064,0.53801828622818,-0.749174952507019,-0.386358916759491,0.436422884464264,-0.817978382110596,-0.374762117862701,0.499495059251785,-0.764647364616394,-0.407209157943726,0.428999811410904,-0.814194858074188,-0.391211092472076,0.309346467256546,-0.881030082702637,-0.357897698879242,0.372492283582687,-0.835991561412811,-0.40294873714447,0.486832559108734,-0.759859085083008,-0.430822968482971,0.370765775442123,-0.835523545742035,-0.405503511428833,0.420953214168549,-0.787981867790222,-0.449313879013062,0.524533271789551,-0.70246684551239,-0.481045931577682,0.480145066976547,-0.757162928581238,-0.442905336618423,0.238960534334183,-0.919162929058075,-0.313109278678894,0.312555074691772,-0.882173776626587,-0.352248162031174,0.434518992900848,-0.81702733039856,-0.379024565219879,0.365700840950012,-0.86444890499115,-0.344950795173645,0.44194507598877,-0.820658326148987,-0.362221837043762,0.54504531621933,-0.754280745983124,-0.366041213274002,0.480710327625275,-0.807847559452057,-0.341027855873108,0.370167583227158,-0.867362558841705,-0.332653433084488,0.48524734377861,-0.812174558639526,-0.323894381523132,0.414732813835144,-0.858281493186951,-0.302240878343582,0.297805964946747,-0.907496571540833,-0.29624605178833,0.373998731374741,-0.869769990444183,-0.321908473968506,0.687516868114471,-0.63487696647644,-0.352493703365326,0.630127251148224,-0.69840270280838,-0.339372009038925,0.613384127616882,-0.70818030834198,-0.349629312753677,0.67058402299881,-0.647119164466858,-0.362703561782837, +0.613467395305634,-0.708260178565979,-0.349321335554123,0.546923875808716,-0.755615174770355,-0.360444068908691,0.605630457401276,-0.6961869597435,-0.385403007268906,0.667579472064972,-0.644996106624603,-0.371910959482193,0.597544968128204,-0.691905379295349,-0.405224621295929,0.644125521183014,-0.632705569267273,-0.429867506027222,0.700684010982513,-0.577300190925598,-0.419245004653931,0.658951997756958,-0.638811588287354,-0.397117227315903,0.848361194133759,0.104341700673103,-0.519033968448639,0.872584223747253,0.0791675075888634,-0.482005655765533,0.890379965305328,0.0442371964454651,-0.453063696622849,0.868387699127197,0.0701275020837784,-0.490902304649353,0.917530417442322,-0.0494602546095848,-0.394577860832214,0.910537719726563,-0.0261355936527252,-0.412599086761475,0.914041757583618,-0.0567931532859802,-0.401624441146851,0.920521080493927,-0.0794367641210556,-0.382532000541687,0.950528740882874,-0.238915860652924,-0.198530614376068,0.950980663299561,-0.239847093820572,-0.195216044783592,0.94473260641098,-0.250518143177032,-0.211473256349564,0.944617867469788,-0.248925969004631,-0.213852718472481,0.937562227249146,-0.328714221715927,-0.113684445619583,0.94329833984375,-0.316784501075745,-0.0991762429475784,0.943918287754059,-0.315630942583084,-0.0969302877783775,0.938006401062012,-0.327983886003494,-0.112118430435658,0.908451795578003,-0.417160272598267,0.0263201482594013,0.910133421421051,-0.411796629428864,0.0456154048442841,0.907686829566956,-0.416211545467377,0.0535970702767372,0.906297028064728,-0.421224474906921,0.0345780253410339,0.835253119468689,-0.521060883998871,0.175635546445847,0.828580021858215,-0.53413325548172,0.16780062019825,0.824688673019409,-0.539850473403931,0.168671935796738,0.832352161407471,-0.524511754512787,0.179101899266243,0.708585202693939,-0.660040140151978,0.24950784444809,0.693111956119537,-0.692127287387848,0.201384350657463,0.693699181079865,-0.692195773124695,0.199114337563515,0.709325075149536,-0.661257266998291,0.244124382734299,0.546229362487793,-0.791347742080688,0.274595081806183, +0.543798744678497,-0.792729020118713,0.275433778762817,0.541679978370667,-0.793596506118774,0.277105569839478,0.544007062911987,-0.79239410161972,0.275985389947891,0.388055086135864,-0.836858510971069,0.386110335588455,0.393693447113037,-0.822995781898499,0.409491688013077,0.392103791236877,-0.822957038879395,0.411091774702072,0.386752903461456,-0.836697399616241,0.387762248516083,0.118650823831558,-0.827042937278748,0.5494744181633,0.124871671199799,-0.827309310436249,0.547691822052002,0.128671899437904,-0.835266053676605,0.534578502178192,0.12234815955162,-0.835186183452606,0.536185503005981,-0.0766166225075722,-0.795794725418091,0.60070013999939,-0.0695894509553909,-0.797276198863983,0.599589884281158,-0.0644809454679489,-0.805817008018494,0.588643550872803,-0.0715635195374489,-0.804385364055634,0.589781999588013,-0.263077974319458,-0.726790308952332,0.634480834007263,-0.258141577243805,-0.728715062141418,0.634300589561462,-0.256415784358978,-0.74446564912796,0.616459131240845,-0.261502534151077,-0.742456495761871,0.616745412349701,-0.440271019935608,-0.625534236431122,0.64410275220871,-0.43909540772438,-0.626237213611603,0.644222259521484,-0.440400660037994,-0.638001382350922,0.631665647029877,-0.44161194562912,-0.637024760246277,0.631805717945099,-0.616277694702148,-0.536328554153442,0.576674520969391,-0.615686893463135,-0.536538600921631,0.57710999250412,-0.613219916820526,-0.528201937675476,0.587336480617523,-0.613883256912231,-0.528040587902069,0.586788415908813,-0.78718364238739,-0.383392214775085,0.483065515756607,-0.781014859676361,-0.39050480723381,0.487362176179886,-0.776087403297424,-0.404378741979599,0.48390719294548,-0.782436490058899,-0.397630661725998,0.479252457618713,-0.895348072052002,-0.216411769390106,0.389252901077271,-0.895603656768799,-0.215911775827408,0.388942450284958,-0.897215843200684,-0.221319288015366,0.38212776184082,-0.896787524223328,-0.221015483140945,0.383307218551636,-0.974635362625122,-0.0595741793513298,0.215723916888237,-0.973316192626953,-0.0614558011293411,0.221085622906685, +-0.96955943107605,-0.0514816269278526,0.23938325047493,-0.970972716808319,-0.0494559556245804,0.234021693468094,-0.994844317436218,0.0807653293013573,0.0613340511918068,-0.994837403297424,0.0802501812577248,0.0621170289814472,-0.994123697280884,0.0843104645609856,0.0678953528404236,-0.994264245033264,0.084002360701561,0.066198319196701,-0.973012447357178,0.219137191772461,-0.0722895264625549,-0.972774624824524,0.219897836446762,-0.0731740817427635,-0.972542285919189,0.220612317323685,-0.0741068348288536,-0.972797513008118,0.219742551445961,-0.0733367875218391,-0.953062534332275,0.274331867694855,-0.12811715900898,-0.955563366413116,0.272538602352142,-0.112344726920128,-0.952177047729492,0.280066907405853,-0.122153170406818,-0.949360251426697,0.282820135354996,-0.136850386857986,-0.892355442047119,0.398926943540573,-0.211090296506882,-0.905397772789001,0.398322761058807,-0.146948948502541,-0.885821998119354,0.427618026733398,-0.180173262953758,-0.871224820613861,0.4261634349823,-0.243622958660126,-0.830030560493469,-0.467777788639069,0.303699433803558,-0.883019804954529,-0.387737989425659,0.264453053474426,-0.889382839202881,-0.364071100950241,0.276496559381485,-0.846571326255798,-0.435778945684433,0.305636763572693,-0.970095276832581,-0.172197669744492,0.171064972877502,-0.986750721931458,-0.0934073328971863,0.132658019661903,-0.98739230632782,-0.0777963325381279,0.137855812907219,-0.976330637931824,-0.141868844628334,0.163253992795944,-0.995337069034576,-0.0923765599727631,-0.0277638398110867,-0.991148591041565,-0.010398855432868,-0.132349371910095,-0.981083691120148,-0.062136635184288,-0.183340817689896,-0.989840745925903,-0.0983186513185501,-0.102707594633102,-0.737383306026459,-0.57546865940094,0.353697180747986,-0.721565306186676,-0.602481067180634,0.341115951538086,-0.785554707050323,-0.530854046344757,0.317958921194077,-0.792998313903809,-0.509368062019348,0.334212690591812,-0.964171171188354,-0.0534268245100975,-0.259845644235611,-0.961703419685364,-0.00524621456861496,-0.274042010307312,-0.964460015296936,-0.085684560239315,-0.249950081110001, +-0.558240711688995,-0.690562605857849,0.459881156682968,-0.568046092987061,-0.657256364822388,0.495315909385681,-0.506144523620605,-0.719644546508789,0.475320488214493,-0.505410194396973,-0.745630323886871,0.43427649140358,-0.573809266090393,-0.728233397006989,0.374725371599197,-0.695042550563812,-0.611323714256287,0.378416836261749,-0.571861863136292,-0.729833781719208,0.374588698148727,-0.574760973453522,-0.731724500656128,0.36637282371521,-0.577894628047943,-0.783479392528534,0.228468328714371,-0.572123408317566,-0.815768897533417,0.0848291516304016,-0.559870362281799,-0.795298457145691,0.232477426528931,-0.322780221700668,-0.80245566368103,0.501874446868896,-0.230579152703285,-0.831640064716339,0.505181193351746,-0.259319663047791,-0.823395133018494,0.504751324653625,-0.34332799911499,-0.794595241546631,0.500743865966797,-0.406714349985123,-0.746147572994232,0.527112245559692,-0.320509642362595,-0.792709290981293,0.518541753292084,-0.343759149312973,-0.796161532402039,0.497952163219452,-0.41434434056282,-0.755038678646088,0.508168876171112,-0.453458487987518,-0.840898394584656,0.295407116413116,-0.386441588401794,-0.851338863372803,0.354803085327148,-0.408849865198135,-0.861431121826172,0.301294326782227,-0.508226215839386,-0.827200651168823,0.239677548408508,-0.563499093055725,-0.757556676864624,0.329509794712067,-0.509718835353851,-0.779269456863403,0.3645900785923,-0.524474322795868,-0.758026540279388,0.387714415788651,-0.576193988323212,-0.737220823764801,0.352853983640671,-0.258976370096207,-0.822208881378174,0.506856918334961,-0.230328544974327,-0.830684125423431,0.506865441799164,-0.127160936594009,-0.854201316833496,0.504152953624725,-0.158493265509605,-0.848105728626251,0.505565643310547,-0.126868367195129,-0.853170156478882,0.505969524383545,-0.021575378254056,-0.867948174476624,0.496186077594757,-0.0540797598659992,-0.86424994468689,0.500147581100464,-0.158010393381119,-0.846499741077423,0.508400499820709,-0.426216155290604,-0.806922316551208,0.40892094373703,-0.353637218475342,-0.833682060241699,0.424164026975632, +-0.377633035182953,-0.817894279956818,0.434099584817886,-0.441586166620255,-0.793861091136932,0.418074399232864,-0.302521675825119,-0.86262708902359,0.405407547950745,-0.20298108458519,-0.890214681625366,0.407819420099258,-0.199537441134453,-0.893182873725891,0.403000444173813,-0.307501971721649,-0.864388108253479,0.397839069366455,-0.26830667257309,-0.854627966880798,0.444547772407532,-0.16736800968647,-0.876956462860107,0.450483411550522,-0.195801243185997,-0.865303635597229,0.461423337459564,-0.296538501977921,-0.840783357620239,0.452932924032211,-0.0886284410953522,-0.879276216030121,0.467994034290314,-0.0613241195678711,-0.88673985004425,0.458183407783508,0.0415069200098515,-0.89156037569046,0.450995892286301,0.0164263732731342,-0.886265397071838,0.462886422872543,-0.102363526821136,-0.923371016979218,0.37001046538353,0.00853881612420082,-0.911559641361237,0.411079287528992,0.0270349346101284,-0.892132103443146,0.450965195894241,-0.085360936820507,-0.908340930938721,0.409426778554916,-0.0216654054820538,-0.868248224258423,0.495656818151474,0.0811167508363724,-0.872923731803894,0.481065660715103,0.0478076562285423,-0.872617363929749,0.486058950424194,-0.0542517229914665,-0.864802360534668,0.499173134565353,0.0839884355664253,-0.863414645195007,0.497454702854156,0.182891994714737,-0.867283761501312,0.463000535964966,0.148789122700691,-0.876923620700836,0.457019597291946,0.0483253747224808,-0.870986819267273,0.488924026489258,0.289258182048798,-0.858991026878357,0.422450095415115,0.394788473844528,-0.820785045623779,0.412860602140427,0.381521105766296,-0.811873316764832,0.441931307315826,0.266255259513855,-0.851070284843445,0.45253449678421,0.149356409907341,-0.875209867954254,0.460109174251556,0.17915540933609,-0.879001200199127,0.441882699728012,0.289730966091156,-0.85751211643219,0.425122439861298,0.264925301074982,-0.85533744096756,0.445210576057434,0.477620363235474,-0.793517529964447,0.377105712890625,0.562688648700714,-0.754196286201477,0.338481098413467,0.560105681419373,-0.756046056747437,0.338638693094254, +0.469673871994019,-0.79731810092926,0.379064977169037,0.379560589790344,-0.818970501422882,0.430373311042786,0.399469316005707,-0.803172767162323,0.44197028875351,0.480275571346283,-0.783991277217865,0.393310606479645,0.469693243503571,-0.79725444316864,0.379175007343292,0.125229999423027,-0.881159782409668,0.455933272838593,0.146737843751907,-0.882980525493622,0.44588503241539,0.260718703269958,-0.868048906326294,0.422512710094452,0.245245471596718,-0.867364346981049,0.43305179476738,0.121566101908684,-0.893236815929413,0.432839304208755,0.245597288012505,-0.866163671016693,0.435250043869019,0.26263427734375,-0.855127036571503,0.446968734264374,0.141528129577637,-0.884832561016083,0.443893194198608,0.654895424842834,-0.697718560695648,0.290346086025238,0.738664448261261,-0.632504522800446,0.233051538467407,0.738197267055511,-0.634062945842743,0.230280190706253,0.654743313789368,-0.699048459529877,0.287476271390915,0.56020200252533,-0.755728363990784,0.339187741279602,0.562631607055664,-0.754387497901917,0.338149905204773,0.654715776443481,-0.698304414749146,0.289341241121292,0.655000686645508,-0.698210716247559,0.288922101259232,0.374074637889862,-0.836869180202484,0.39964771270752,0.467722326517105,-0.803550064563751,0.368162006139755,0.466837167739868,-0.801741480827332,0.373194009065628,0.365895092487335,-0.83713698387146,0.406598627567291,0.806943476200104,-0.56303858757019,0.178408846259117,0.859773755073547,-0.496377944946289,0.119991563260555,0.85610032081604,-0.503533720970154,0.116387218236923,0.803666710853577,-0.569164037704468,0.173701196908951,0.738259673118591,-0.633867204189301,0.230618923902512,0.738263428211212,-0.633751928806305,0.230923622846603,0.806572675704956,-0.564178168773651,0.176475375890732,0.804503619670868,-0.566601693630219,0.178147926926613,0.362334817647934,-0.849028825759888,0.38453009724617,0.4699946641922,-0.789545297622681,0.394617795944214,0.483898550271988,-0.76679140329361,0.421750098466873,0.38223984837532,-0.827636539936066,0.410987317562103,0.55999344587326,-0.756414651870728,0.338000655174255, +0.655182957649231,-0.697612702846527,0.289951622486115,0.659120559692383,-0.693754732608795,0.290283381938934,0.562687516212463,-0.754022657871246,0.338869541883469,0.903442025184631,-0.423351436853409,0.0675731301307678,0.936307430267334,-0.350798696279526,0.0163942277431488,0.936351001262665,-0.350780248641968,0.0141501147300005,0.902248978614807,-0.425969630479813,0.067058265209198,0.85651433467865,-0.502337574958801,0.118491187691689,0.85846471786499,-0.500156223773956,0.11349879950285,0.902792811393738,-0.425236165523529,0.0643371418118477,0.902455031871796,-0.425363779067993,0.0681219771504402,0.5759157538414,-0.667799472808838,0.471555978059769,0.670168697834015,-0.624272286891937,0.401444911956787,0.667698979377747,-0.649686336517334,0.363436222076416,0.574127614498138,-0.694319069385529,0.433933854103088,0.740250825881958,-0.62735903263092,0.241763070225716,0.806901693344116,-0.558759868144989,0.191565155982971,0.806584179401398,-0.55879408121109,0.192798525094986,0.742442905902863,-0.625078022480011,0.240948393940926,0.958272576332092,-0.283266067504883,-0.0383956842124462,0.974103569984436,-0.209435522556305,-0.0852007493376732,0.974662184715271,-0.205827206373215,-0.0875725969672203,0.95894581079483,-0.280764073133469,-0.0399331599473953,0.93615460395813,-0.351240754127502,0.0156377386301756,0.95899510383606,-0.281257033348083,-0.034970797598362,0.958894908428192,-0.280902862548828,-0.0401774011552334,0.935800552368164,-0.352345883846283,0.0113939344882965,0.747906088829041,-0.599455952644348,0.285112470388412,0.814637780189514,-0.513018846511841,0.270512789487839,0.8105189204216,-0.507315754890442,0.292728394269943,0.748775005340576,-0.588742077350616,0.30449765920639,0.861008644104004,-0.487997353076935,0.143257468938828,0.906649887561798,-0.41182616353035,0.0915712639689445,0.906644225120544,-0.411916047334671,0.0912222638726234,0.85986340045929,-0.489826411008835,0.143892988562584,0.975283086299896,-0.0649431645870209,-0.211199671030045,0.976705312728882,-0.0555707141757011,-0.207264542579651,0.978598952293396,-0.150034040212631,-0.140833139419556, +0.9767946600914,-0.15495254099369,-0.147858291864395,0.973363816738129,-0.209281772375107,-0.0936167165637016,0.974324405193329,-0.208823829889297,-0.0841706171631813,0.980301916599274,-0.146052807569504,-0.132954373955727,0.978664696216583,-0.14987125992775,-0.140549644827843,0.867668867111206,-0.38234955072403,0.317741721868515,0.915066123008728,-0.322411954402924,0.242290616035461,0.909593462944031,-0.358236461877823,0.210490703582764,0.860845983028412,-0.420358687639236,0.286780118942261,0.941014766693115,-0.336012810468674,0.0398327335715294,0.965008437633514,-0.262113273143768,-0.00744598265737295,0.965720295906067,-0.259361565113068,-0.0107674449682236,0.941677927970886,-0.334453701972961,0.0371948331594467,0.950844943523407,-0.274134665727615,0.144027993083,0.975178122520447,-0.191054791212082,0.111917950212955,0.971650719642639,-0.206667482852936,0.11481899023056,0.946557223796844,-0.287539780139923,0.146117210388184,0.570476710796356,-0.819078922271729,-0.0605484396219254,0.528604865074158,-0.8404700756073,-0.119108870625496,0.5330491065979,-0.813946068286896,-0.230977296829224,0.575978219509125,-0.797893404960632,-0.177806794643402,0.980201661586761,-0.189141511917114,-0.0585688948631287,0.987265229225159,-0.125336617231369,-0.0979697853326797,0.987051427364349,-0.124470792710781,-0.101175777614117,0.980549573898315,-0.185806721448898,-0.0632331222295761,0.519138753414154,-0.770853400230408,0.369161188602448,0.446396172046661,-0.799458384513855,0.401991277933121,0.461477398872375,-0.782759368419647,0.417524337768555,0.601428329944611,-0.708152890205383,0.369869619607925,0.991009712219238,-0.108063392341137,0.0788800194859505,0.998122811317444,-0.0534058846533298,0.0299797970801592,0.997474074363708,-0.0472005195915699,0.0530815422534943,0.98748916387558,-0.11537816375494,0.107485190033913,-0.762602925300598,0.405014365911484,-0.504380941390991,-0.770877301692963,0.378833830356598,-0.512087285518646,-0.767745137214661,0.366314798593521,-0.525719583034515,-0.759950876235962,0.392505943775177,-0.518086612224579, +-0.681621670722961,0.36572277545929,-0.633749842643738,-0.685086011886597,0.377430319786072,-0.623059809207916,-0.696315288543701,0.347202628850937,-0.628168344497681,-0.693461775779724,0.334361493587494,-0.638211011886597,0.370358675718307,-0.466265320777893,0.803387403488159,0.371348798274994,-0.458970218896866,0.807122409343719,0.371903151273727,-0.458835333585739,0.806943774223328,0.370872050523758,-0.466185688972473,0.803196668624878,-0.819539546966553,0.507445931434631,-0.266183465719223,-0.818033814430237,0.514722526073456,-0.256673574447632,-0.838860750198364,0.482027441263199,-0.252907902002335,-0.840476632118225,0.474336355924606,-0.26192370057106,-0.858297169208527,0.506876111030579,-0.0800170376896858,-0.856592655181885,0.510977625846863,-0.0717694908380508,-0.885648906230927,0.461065232753754,-0.0551806390285492,-0.887129187583923,0.457161486148834,-0.0632882341742516,-0.846972465515137,0.504962980747223,0.1662827283144,-0.864131689071655,0.472345411777496,0.173684239387512,-0.868049442768097,0.468208849430084,0.16513879597187,-0.850878715515137,0.501205921173096,0.157474219799042,-0.852699518203735,0.46729451417923,0.233536422252655,-0.861757457256317,0.447778135538101,0.238472163677216,-0.864880204200745,0.444482028484344,0.23327648639679,-0.855750918388367,0.464338570833206,0.228210613131523,-0.848895311355591,0.446833848953247,0.282341003417969,-0.854148924350739,0.425217628479004,0.29936546087265,-0.853367626667023,0.424705982208252,0.302305400371552,-0.848065197467804,0.446690022945404,0.285049945116043,-0.943112015724182,0.232589453458786,0.237574994564056,-0.947712659835815,0.19458419084549,0.252938449382782,-0.950470089912415,0.188653141260147,0.24701589345932,-0.946000158786774,0.226658254861832,0.231753677129745,-0.966082811355591,0.130420446395874,0.222877830266953,-0.964198350906372,0.10407318174839,0.243906736373901,-0.963078618049622,0.103406600654125,0.248569250106812,-0.965038657188416,0.13087010383606,0.227097749710083,-0.956414818763733,0.0873626694083214,0.278637140989304,-0.957082867622375,0.0489269271492958,0.285654515028, +-0.960286259651184,0.0381215699017048,0.276400357484818,-0.959941565990448,0.0767589211463928,0.269481629133224,-0.967003345489502,-0.0182268861681223,0.254110962152481,-0.957293212413788,-0.0486322343349457,0.284999221563339,-0.953815698623657,-0.0447196997702122,0.297045171260834,-0.963849782943726,-0.0143220145255327,0.266061216592789,-0.925042152404785,-0.0389150269329548,0.37786591053009,-0.916106045246124,-0.0704056024551392,0.394705981016159,-0.915747761726379,-0.0703449174761772,0.395547598600388,-0.924150884151459,-0.0408384501934052,0.379838764667511,-0.936423659324646,-0.201653838157654,0.287134945392609,-0.936391055583954,-0.1982581615448,0.289595395326614,-0.945035219192505,-0.16813500225544,0.280426651239395,-0.945255517959595,-0.171132057905197,0.277859270572662,-0.853632390499115,-0.23632225394249,0.464180529117584,-0.855024456977844,-0.236907869577408,0.461311161518097,-0.869632959365845,-0.206497818231583,0.448438584804535,-0.868366777896881,-0.20564004778862,0.451277554035187,-0.808065235614777,-0.187808573246002,0.55835348367691,-0.797143936157227,-0.216221004724503,0.563746392726898,-0.796214699745178,-0.214073434472084,0.565875291824341,-0.807061076164246,-0.185766041278839,0.560485064983368,-0.650113582611084,-0.25016313791275,0.717475235462189,-0.643051862716675,-0.240929827094078,0.726936817169189,-0.650072753429413,-0.202663779258728,0.732347428798676,-0.657557785511017,-0.211272552609444,0.723174750804901,-0.608918964862823,-0.260434359312057,0.749260783195496,-0.608558595180511,-0.26022544503212,0.749626100063324,-0.613591551780701,-0.249697774648666,0.749103724956512,-0.611615478992462,-0.254256278276443,0.749186396598816,0.514809727668762,-0.857243359088898,-0.0102435806766152,0.513099431991577,-0.858200371265411,-0.0148716121912003,0.565966963768005,-0.821429431438446,-0.0702503025531769,0.565887212753296,-0.821770071983337,-0.0668256878852844,0.541474401950836,-0.702815175056458,-0.46136349439621,0.589365601539612,-0.698990702629089,-0.405043452978134,0.613919496536255,-0.726751863956451,-0.308114558458328, +0.564953565597534,-0.74085408449173,-0.363266915082932,0.630551278591156,-0.537823677062988,-0.559598803520203,0.626097142696381,-0.573239922523499,-0.528581500053406,0.609756529331207,-0.640099704265594,-0.467407166957855,0.606819331645966,-0.628800749778748,-0.486189365386963,0.588319003582001,-0.699331223964691,-0.405976146459579,0.586920201778412,-0.690083920955658,-0.423448771238327,0.610850036144257,-0.627546668052673,-0.482749879360199,0.60887485742569,-0.640384078025818,-0.468166351318359,0.445302307605743,-0.844214856624603,0.298340916633606,0.478740513324738,-0.841384053230286,0.250759661197662,0.541205406188965,-0.82171767950058,0.17854055762291,0.529194355010986,-0.819847702980042,0.218639373779297,-0.19164177775383,-0.0710524544119835,-0.97888970375061,-0.194457471370697,-0.0706861168146133,-0.978360772132874,-0.197267785668373,-0.0702854245901108,-0.97782689332962,-0.194467797875404,-0.0707810670137405,-0.978351891040802,0.43248587846756,-0.890410602092743,0.141862332820892,0.41424560546875,-0.90228670835495,0.119495809078217,0.50022166967392,-0.860637545585632,0.0952958464622498,0.512779474258423,-0.849926829338074,0.121167466044426,0.632970809936523,-0.477928400039673,-0.609042286872864,0.64005708694458,-0.45947253704071,-0.615801930427551,0.656981587409973,-0.394058227539063,-0.642723381519318,0.650987803936005,-0.401763051748276,-0.64405083656311,0.597120940685272,-0.581391274929047,-0.552657902240753,0.592818915843964,-0.547833502292633,-0.590291619300842,0.601544201374054,-0.468528717756271,-0.647012770175934,0.608353614807129,-0.484003931283951,-0.629004180431366,0.679680645465851,-0.394546091556549,-0.618358910083771,0.786546230316162,-0.352684587240219,-0.506910920143127,0.880715847015381,-0.253423869609833,-0.400144904851913,0.794346690177917,-0.294173926115036,-0.531483769416809,-0.735024392604828,-0.596492290496826,0.322391420602798,-0.674300849437714,-0.614800989627838,0.409069836139679,-0.667902529239655,-0.585696876049042,0.459200829267502,-0.723613023757935,-0.575877845287323,0.380458921194077, +0.729666829109192,0.623084306716919,-0.281695485115051,0.732283174991608,0.620709002017975,-0.280145972967148,0.729623734951019,0.623308122158051,-0.28131178021431,0.727004170417786,0.625628471374512,-0.282938212156296,0.540179193019867,-0.80490916967392,0.245616883039474,0.56368350982666,-0.794036626815796,0.227523237466812,0.622985482215881,-0.761547803878784,0.178700983524323,0.43158745765686,-0.809996783733368,0.397036164999008,0.469886839389801,-0.783968985080719,0.405707985162735,0.463538229465485,-0.773832738399506,0.431642591953278,0.448118627071381,-0.792331099510193,0.414006233215332,0.214397102594376,-0.907099723815918,0.362220942974091,0.308249682188034,-0.907792806625366,0.284419476985931,0.332245796918869,-0.887954115867615,0.318041175603867,0.24019530415535,-0.886874794960022,0.394663780927658,0.0288437008857727,-0.88515704870224,0.464397668838501,0.126843437552452,-0.89358514547348,0.430600047111511,0.145948603749275,-0.88739687204361,0.437293648719788,0.0474475249648094,-0.880085945129395,0.472438007593155,0.278009325265884,-0.831676661968231,0.480650514364243,0.259851425886154,-0.838729500770569,0.47855007648468,0.363143295049667,-0.82151073217392,0.43959903717041,0.37559974193573,-0.814614713191986,0.441959142684937,-0.153793349862099,-0.839206099510193,0.521613538265228,-0.0633108988404274,-0.862549543380737,0.501996099948883,-0.04602125659585,-0.859682142734528,0.508752226829529,-0.140880331397057,-0.83632093667984,0.52983033657074,0.297971338033676,-0.740324974060059,0.602604329586029,0.392388910055161,-0.727733194828033,0.562525868415833,0.420356035232544,-0.707172036170959,0.568514406681061,0.328665435314178,-0.719826400279999,0.61141562461853,0.0822529494762421,-0.83225417137146,0.548258543014526,0.0637899413704872,-0.835310697555542,0.546065032482147,0.164653390645981,-0.838053703308105,0.520149409770966,0.183519467711449,-0.833748579025269,0.52075332403183,-0.345191061496735,-0.764904081821442,0.543842852115631,-0.244930922985077,-0.804000675678253,0.541841089725494,-0.238956987857819,-0.804078340530396,0.544387459754944, +-0.339267700910568,-0.765479266643524,0.546753287315369,0.0860059410333633,-0.820063948631287,0.565772175788879,0.198190078139305,-0.777154803276062,0.597286581993103,0.215865403413773,-0.816741347312927,0.535103440284729,0.0942557826638222,-0.856621503829956,0.507262706756592,-0.120450139045715,-0.800841212272644,0.586638808250427,-0.12845866382122,-0.80114334821701,0.584523618221283,-0.0317733772099018,-0.819323062896729,0.572451174259186,-0.0171854477375746,-0.819510042667389,0.572807133197784,-0.53386664390564,-0.659065186977386,0.529735326766968,-0.444884330034256,-0.712050974369049,0.54319554567337,-0.436217784881592,-0.716257452964783,0.544692039489746,-0.522347331047058,-0.665798842906952,0.532790064811707,-0.0945134535431862,-0.732797145843506,0.673851311206818,-0.101903885602951,-0.745161414146423,0.659052431583405,-0.00484972447156906,-0.780751645565033,0.624822616577148,0.0129000935703516,-0.769891023635864,0.638045132160187,-0.322790324687958,-0.737202882766724,0.593581020832062,-0.328393787145615,-0.734955728054047,0.593293905258179,-0.227379336953163,-0.771351158618927,0.59440404176712,-0.224077865481377,-0.772555887699127,0.594093143939972,-0.666971504688263,-0.556472182273865,0.495467185974121,-0.676282227039337,-0.547619163990021,0.49270236492157,-0.608907699584961,-0.603983819484711,0.514232337474823,-0.597593486309052,-0.613438069820404,0.51630973815918,-0.310328423976898,-0.702824950218201,0.640104234218597,-0.216085225343704,-0.749640941619873,0.625576198101044,-0.213650941848755,-0.738021612167358,0.640060424804688,-0.301661461591721,-0.694232404232025,0.653484284877777,-0.500522017478943,-0.650148510932922,0.571650862693787,-0.513055682182312,-0.640921652317047,0.570958256721497,-0.426770329475403,-0.69022661447525,0.584340989589691,-0.417301207780838,-0.696699559688568,0.583497703075409,-0.794474303722382,-0.424747705459595,0.434050679206848,-0.802565574645996,-0.412940382957458,0.430544704198837,-0.740853786468506,-0.485064059495926,0.464595139026642,-0.73338794708252,-0.494593799114227,0.46638947725296, +-0.487574070692062,-0.655719816684723,0.576457381248474,-0.499801993370056,-0.648332178592682,0.574337422847748,-0.416633695363998,-0.694923996925354,0.58608615398407,-0.405977487564087,-0.700468182563782,0.586963951587677,-0.648706793785095,-0.548093855381012,0.527989268302917,-0.659008085727692,-0.536130487918854,0.527515411376953,-0.589342653751373,-0.591921210289001,0.549822270870209,-0.577330648899078,-0.603977262973785,0.549455046653748,-0.896546125411987,-0.275357037782669,0.346963286399841,-0.855928421020508,-0.342306405305862,0.38757312297821,-0.848899781703949,-0.358778893947601,0.388132572174072,-0.892444312572479,-0.288598775863647,0.346776694059372,-0.645679354667664,-0.577773094177246,0.499276041984558,-0.655214190483093,-0.563576221466064,0.503066837787628,-0.582910716533661,-0.617793202400208,0.527775287628174,-0.572800159454346,-0.631854951381683,0.522167921066284,-0.779480993747711,-0.423089444637299,0.461957633495331,-0.787895917892456,-0.407914519309998,0.461330711841583,-0.726471841335297,-0.476871967315674,0.494804918766022,-0.718218505382538,-0.490267425775528,0.493761122226715,-0.956982254981995,-0.139105513691902,0.254626244306564,-0.929468154907227,-0.211316600441933,0.302380830049515,-0.928752303123474,-0.219853490591049,0.298468947410583,-0.957739949226379,-0.144213899970055,0.248870819807053,-0.799631237983704,-0.47881942987442,0.36238357424736,-0.79409658908844,-0.458897948265076,0.398526310920715,-0.727577865123749,-0.512570798397064,0.455962359905243,-0.729243457317352,-0.539703488349915,0.420623511075974,-0.88166207075119,-0.28409206867218,0.376780688762665,-0.885553181171417,-0.270075857639313,0.377961158752441,-0.842110991477966,-0.340820044279099,0.417960286140442,-0.835107505321503,-0.358234047889709,0.417449355125427,-0.902154624462128,-0.330432265996933,0.277365624904633,-0.894974231719971,-0.31931272149086,0.311545521020889,-0.845783770084381,-0.384704917669296,0.369664549827576,-0.852379143238068,-0.400027871131897,0.336789906024933,-0.952572882175446,-0.132163614034653,0.27411276102066, +-0.951728880405426,-0.126132130622864,0.279826551675797,-0.922944962978363,-0.203186988830566,0.326936572790146,-0.92243367433548,-0.212513208389282,0.322419434785843,-0.962668597698212,-0.162499129772186,0.216479152441025,-0.934157371520996,-0.246558487415314,0.257990449666977,-0.938279747962952,-0.244774967432022,0.244369253516197,-0.966658294200897,-0.157493308186531,0.201910242438316,-0.989386677742004,0.0166649743914604,0.144348174333572,-0.99170845746994,0.00543032260611653,0.128393992781639,-0.982425332069397,-0.110068172216415,0.150749728083611,-0.982945144176483,-0.0810031890869141,0.16509784758091,0.998659908771515,0.0282995440065861,-0.0433304011821747,0.997866153717041,-0.055419784039259,0.0345230288803577,0.997613608837128,-0.0690310150384903,0.00138833175878972,0.996378898620605,0.0188860669732094,-0.0829012766480446,0.210988134145737,0.29020369052887,-0.933416247367859,0.240182429552078,0.265213519334793,-0.933795571327209,0.306854426860809,0.277653962373734,-0.910356402397156,0.278562635183334,0.303946882486343,-0.911053955554962,0.234405994415283,0.395911574363708,-0.887867033481598,0.229430794715881,0.389886796474457,-0.891823887825012,0.178960382938385,0.333698391914368,-0.92553699016571,0.18235932290554,0.337166458368301,-0.923614621162415,0.23424032330513,0.396054923534393,-0.887846827507019,0.309218913316727,0.471002012491226,-0.826160311698914,0.303437799215317,0.464428305625916,-0.83200466632843,0.229250982403755,0.390041470527649,-0.891802549362183,0.436006456613541,0.458304882049561,-0.774502992630005,0.507525682449341,0.476283609867096,-0.718033254146576,0.506867229938507,0.483339339494705,-0.713770866394043,0.426326394081116,0.464286923408508,-0.776326954364777,0.539620995521545,0.595825850963593,-0.594811618328094,0.67089056968689,0.414480984210968,-0.614907681941986,0.676708340644836,0.239429295063019,-0.696232378482819,0.607492804527283,0.428669989109039,-0.668726146221161,0.621533036231995,0.0335956811904907,-0.782667279243469,0.583778619766235,0.0590919181704521,-0.809759616851807, +0.571610033512115,0.0506407767534256,-0.818961262702942,0.61316853761673,0.0235153287649155,-0.789602041244507,-0.152336314320564,0.254419296979904,-0.955020666122437,-0.10498420894146,0.261675119400024,-0.959429323673248,-0.0368114151060581,0.170166924595833,-0.984727501869202,-0.0843967497348785,0.162006542086601,-0.983173966407776,-0.185633361339569,0.375335276126862,-0.908110022544861,-0.147082030773163,0.382460683584213,-0.912190079689026,-0.101948738098145,0.341092824935913,-0.934485018253326,-0.140707179903984,0.335433781147003,-0.931496560573578,-0.134842604398727,0.38996696472168,-0.910902440547943,-0.15021538734436,0.388821542263031,-0.908984661102295,-0.166344746947289,0.39367088675499,-0.904075562953949,-0.151091694831848,0.396230906248093,-0.905633747577667,-0.179544627666473,0.349039882421494,-0.919747173786163,-0.182015344500542,0.350782722234726,-0.918597757816315,-0.186079815030098,0.369447261095047,-0.910430192947388,-0.18379744887352,0.369111627340317,-0.911029756069183,-0.104277372360229,0.279855340719223,-0.954362273216248,-0.108593933284283,0.280823916196823,-0.953595995903015,-0.115541771054268,0.322833865880966,-0.939376592636108,-0.110839396715164,0.319114506244659,-0.941212356090546,-0.269104868173599,0.266286939382553,-0.925566732883453,-0.280849128961563,0.301030606031418,-0.911320209503174,-0.291733711957932,0.315847605466843,-0.90284651517868,-0.281084567308426,0.265844970941544,-0.922126889228821,-0.620328903198242,0.106819413602352,-0.777033984661102,-0.61444365978241,0.0623984709382057,-0.786489427089691,-0.339142858982086,0.0981744825839996,-0.935598134994507,-0.380464464426041,0.148024350404739,-0.912872195243835,-0.624728202819824,0.321282923221588,-0.711682498455048,-0.638205885887146,0.283625721931458,-0.715716302394867,-0.636276543140411,0.320947915315628,-0.701530158519745,-0.632333517074585,0.357943177223206,-0.687045156955719,-0.627944827079773,0.309827506542206,-0.713927328586578,-0.6320880651474,0.32294237613678,-0.704395532608032,-0.626071453094482,0.332645654678345,-0.705252826213837, +-0.626708924770355,0.321197956800461,-0.709977388381958,0.506157577037811,-0.504360616207123,0.69958907365799,0.536282539367676,-0.537098824977875,0.651095986366272,0.593255043029785,-0.524189949035645,0.610961139202118,0.577712059020996,-0.475291609764099,0.663586258888245,0.711080610752106,-0.285336881875992,0.642609715461731,0.783051431179047,-0.0683644711971283,0.618188381195068,0.812452077865601,0.116282172501087,0.57131439447403,0.75225305557251,-0.18054786324501,0.633654356002808,0.774378299713135,0.144551619887352,0.615989625453949,0.779861986637115,0.292811721563339,0.553241848945618,0.74117785692215,-0.0851167887449265,0.665890693664551,0.709428191184998,-0.17287914454937,0.683245599269867,0.800036311149597,-0.0869465842843056,0.593617975711823,0.757573843002319,-0.37557464838028,0.533877968788147,0.743341028690338,-0.431989848613739,0.5107142329216,0.797257304191589,-0.188361912965775,0.573498547077179,0.622114300727844,-0.412837773561478,0.665235936641693,0.606763184070587,-0.387999892234802,0.693753957748413,0.558331727981567,-0.449937462806702,0.697009325027466,0.554158210754395,-0.477815508842468,0.681616604328156,0.862939476966858,0.00503076612949371,0.505282282829285,0.877553284168243,0.0305251963436604,0.478506594896317,0.937767267227173,0.15361499786377,0.311440169811249,0.921008229255676,0.141329854726791,0.363001048564911,0.925665020942688,0.183346658945084,0.330950677394867,0.94248354434967,0.2950159907341,0.15713207423687,0.938052475452423,0.275556474924088,0.210062637925148,0.916091918945313,0.150341957807541,0.371716141700745,0.974386096000671,0.189520373940468,0.121052443981171,0.932158052921295,0.180849805474281,0.313647598028183,0.847839057445526,0.0868464484810829,0.523093342781067,0.924811363220215,0.134120345115662,0.355999708175659,0.606371343135834,-0.459012925624847,0.649323523044586,0.580061256885529,-0.469434857368469,0.665702521800995,0.705132365226746,-0.32573327422142,0.629830360412598,0.671714901924133,-0.395874798297882,0.626164734363556,0.699362874031067,-0.31953027844429,0.639368534088135, +0.795308589935303,-0.0787463635206223,0.601068556308746,0.722945511341095,-0.289143532514572,0.627491652965546,0.665081143379211,-0.391450136899948,0.635951161384583,0.720495223999023,-0.288359194993973,0.63066291809082,0.627660155296326,-0.485170513391495,0.60881233215332,0.603228986263275,-0.530551373958588,0.595508337020874,0.676783859729767,-0.399261593818665,0.618509352207184,0.607844352722168,-0.337966769933701,0.718542873859406,0.685519576072693,-0.319840282201767,0.654037714004517,0.662142157554626,-0.355260848999023,0.659816265106201,0.601884961128235,-0.367623716592789,0.708934009075165,0.118156753480434,0.403615534305573,-0.907267093658447,0.143920958042145,0.408141762018204,-0.901502668857574,0.159927427768707,0.443179249763489,-0.882051765918732,0.138330340385437,0.431465744972229,-0.891460716724396,0.636309504508972,-0.417318165302277,0.648811042308807,0.595310688018799,-0.49720972776413,0.631179630756378,0.543295800685883,-0.474061220884323,0.692889332771301,0.581980049610138,-0.395038276910782,0.710805237293243,0.537876009941101,-0.453227996826172,0.710826098918915,0.500856459140778,-0.46048629283905,0.732867777347565,0.55277556180954,-0.415659427642822,0.722264885902405,0.585616827011108,-0.4089195728302,0.699884116649628,0.554706215858459,-0.421455353498459,0.717409491539001,0.607774376869202,-0.392414808273315,0.690377414226532,0.66133439540863,-0.350921243429184,0.662941217422485,0.583369970321655,-0.40027379989624,0.706725060939789,0.519492745399475,-0.521156847476959,0.677143096923828,0.578947186470032,-0.467550218105316,0.667994737625122,0.594624638557434,-0.443199932575226,0.670817077159882,0.567032217979431,-0.477114111185074,0.671443700790405,0.579264461994171,-0.422948181629181,0.696826815605164,0.523047149181366,-0.467663466930389,0.712539553642273,0.555914223194122,-0.442904144525528,0.703416883945465,0.55381715297699,-0.446138083934784,0.703027307987213,0.550228238105774,-0.426781356334686,0.717709302902222,0.606286644935608,-0.38594388961792,0.695315599441528,0.554704189300537,-0.421449065208435,0.717414855957031, +0.545963764190674,-0.428514629602432,0.719929814338684,0.395013689994812,-0.576639175415039,0.715158343315125,0.455367267131805,-0.5575932264328,0.694068074226379,0.486365437507629,-0.530028522014618,0.694635510444641,0.433208763599396,-0.547602832317352,0.715864062309265,0.449972629547119,-0.540801405906677,0.710674643516541,0.392159909009933,-0.568075180053711,0.723533809185028,0.351115196943283,-0.590876221656799,0.726349413394928,0.436893045902252,-0.55134505033493,0.710734248161316,0.429737269878387,-0.481568306684494,0.763817965984344,0.498373687267303,-0.453360855579376,0.738977432250977,0.530192255973816,-0.425589442253113,0.733327984809875,0.464483857154846,-0.454764068126678,0.759897649288177,0.355299949645996,-0.497092813253403,0.791619062423706,0.303373634815216,-0.520574927330017,0.798101603984833,0.365625083446503,-0.492149710655212,0.790004432201385,0.408497989177704,-0.47178065776825,0.781378507614136,0.479160487651825,-0.344195663928986,0.807424783706665,0.429264336824417,-0.532033503055573,0.729844152927399,0.38511124253273,-0.684098839759827,0.619433701038361,0.33905103802681,-0.579496502876282,0.741099417209625,0.416060149669647,-0.499558806419373,0.759825766086578,0.470880806446075,-0.325451552867889,0.819971144199371,0.544816374778748,-0.41196945309639,0.730380892753601,0.529923915863037,-0.548060953617096,0.647155165672302,0.183346256613731,-0.640714526176453,0.745566248893738,0.368162721395493,-0.680873811244965,0.633140683174133,0.344021409749985,-0.572288751602173,0.744402408599854,0.215495139360428,-0.498136907815933,0.839893698692322,0.361871868371964,-0.481854796409607,0.798038125038147,0.298845916986465,-0.508534848690033,0.807516813278198,0.232272565364838,-0.539924204349518,0.809031069278717,0.318292379379272,-0.506623268127441,0.801263272762299,0.516095161437988,-0.367763519287109,0.773560523986816,0.494145095348358,-0.379299342632294,0.782274067401886,0.69180566072464,-0.156946644186974,0.704821050167084,0.628384172916412,-0.24788036942482,0.73735249042511,-0.620899438858032,0.618077456951141,-0.482145428657532, +-0.572746634483337,0.622698783874512,-0.533111214637756,-0.548187673091888,0.658217132091522,-0.515985012054443,-0.589022159576416,0.658403694629669,-0.46856963634491,0.752462983131409,-0.142078951001167,0.643127501010895,0.88468611240387,0.0127438008785248,0.466012954711914,0.856962561607361,0.0148503035306931,0.515164732933044,0.708938717842102,-0.184154510498047,0.680803239345551,0.286593824625015,-0.529999256134033,0.798100650310516,0.230135411024094,-0.556577384471893,0.798285245895386,0.254148930311203,-0.544417262077332,0.799386143684387,0.306477844715118,-0.518947839736938,0.797975182533264,0.253013283014297,-0.54160088300705,0.801656365394592,0.302920281887054,-0.519366085529327,0.799060821533203,0.354488372802734,-0.494893014431,0.793359279632568,0.306086838245392,-0.517950832843781,0.798772752285004,0.359054446220398,-0.507322013378143,0.783392786979675,0.414955735206604,-0.477313309907913,0.774586260318756,0.360995709896088,-0.506366491317749,0.783118903636932,0.311286211013794,-0.53124737739563,0.787957549095154,0.144271448254585,-0.551857054233551,0.821364521980286,0.0444267280399799,-0.568794965744019,0.821278631687164,0.0644504055380821,-0.539972007274628,0.839211821556091,0.162163019180298,-0.524584233760834,0.835771918296814,0.229498207569122,-0.533006072044373,0.814392566680908,0.297469675540924,-0.504889369010925,0.810307681560516,0.24751453101635,-0.527980983257294,0.812386989593506,0.175727888941765,-0.555551767349243,0.812700510025024,-0.185730680823326,-0.545806050300598,0.817067861557007,-0.302614331245422,-0.557472348213196,0.773077726364136,-0.213585287332535,-0.549401462078094,0.807799100875854,-0.104447215795517,-0.53200751543045,0.840273141860962,0.0550545081496239,-0.519066631793976,0.852958858013153,0.0333337038755417,-0.545079112052917,0.837721645832062,-0.0337159484624863,-0.549458801746368,0.83484023809433,-0.048697218298912,-0.533764183521271,0.844230055809021,-0.434634149074554,-0.471808135509491,0.767131268978119,-0.319450050592422,-0.501412391662598,0.804075479507446,-0.431021839380264,-0.515192151069641,0.740808606147766, +-0.535609364509583,-0.47891491651535,0.695530891418457,-0.43597599864006,-0.493648767471313,0.752486348152161,-0.485060155391693,-0.488505035638809,0.725313365459442,-0.591951608657837,-0.473124891519547,0.65249228477478,-0.534870028495789,-0.48369562625885,0.69278609752655,-0.562279760837555,0.728198349475861,-0.391878336668015,-0.600246489048004,0.726064562797546,-0.335461497306824,-0.628590106964111,0.691975653171539,-0.355026930570602,-0.58359694480896,0.69813346862793,-0.414758056402206,-0.102297432720661,-0.536359071731567,0.837767362594604,0.0828018113970757,-0.502926707267761,0.860353767871857,0.12060971558094,-0.484888553619385,0.866219580173492,-0.041779275983572,-0.515185236930847,0.856059968471527,0.144002333283424,-0.596070408821106,0.789913535118103,0.0741342455148697,-0.594204425811768,0.800890326499939,-0.0853026136755943,-0.597661972045898,0.797197461128235,-0.0250246487557888,-0.610928058624268,0.791290521621704,-0.293486297130585,-0.402512311935425,0.867092609405518,-0.331384301185608,-0.194365531206131,0.923258721828461,-0.399439126253128,0.0453234985470772,0.91563868522644,-0.40027043223381,-0.173003301024437,0.899918615818024,0.108606062829494,-0.688783228397369,0.71678614616394,0.16110135614872,-0.678565859794617,0.716655254364014,0.350414603948593,-0.617486953735352,0.704215526580811,0.194614946842194,-0.668933928012848,0.717392861843109,-0.121927604079247,-0.512175798416138,0.850182056427002,0.0828501135110855,-0.553533434867859,0.828695714473724,0.0668367967009544,-0.512077450752258,0.856335043907166,-0.185205787420273,-0.459225386381149,0.868798613548279,0.506724298000336,-0.175138399004936,0.844131052494049,0.453114807605743,-0.286561459302902,0.844138264656067,0.293861120939255,-0.440257757902145,0.848421335220337,0.32680481672287,-0.342968165874481,0.880665361881256,0.0697105601429939,-0.543366670608521,0.836596131324768,0.0822558477520943,-0.538177907466888,0.838807880878448,0.322507739067078,-0.494749248027802,0.806977093219757,0.352847695350647,-0.486683279275894,0.799148321151733, +0.320428401231766,-0.471367746591568,0.821667909622192,0.534278154373169,-0.373308300971985,0.758411347866058,0.570009171962738,-0.380380600690842,0.728285789489746,0.353428363800049,-0.490579158067703,0.796505212783813,0.561855971813202,-0.340292006731033,0.754002273082733,0.547559440135956,-0.287940263748169,0.785664737224579,0.323362618684769,-0.328994005918503,0.887242794036865,0.335284262895584,-0.383290082216263,0.860623836517334,0.567728579044342,-0.368576943874359,0.736094653606415,0.534263432025909,-0.373199105262756,0.758475422859192,0.726337611675262,-0.266347229480743,0.633634626865387,0.767805457115173,-0.237452834844589,0.595055520534515,0.721027016639709,-0.235290139913559,0.651735067367554,0.857633590698242,-0.110049650073051,0.502348124980927,0.893818259239197,-0.0794604197144508,0.441333174705505,0.764688372612,-0.222568511962891,0.604743659496307,0.886413276195526,-0.047859363257885,0.460413873195648,0.891776442527771,-0.00620846450328827,0.45243364572525,0.756771564483643,-0.153039187192917,0.635512292385101,0.751244843006134,-0.167790174484253,0.638339757919312,0.931754648685455,0.0260571502149105,0.362152308225632,0.979704439640045,0.160814538598061,0.119657404720783,0.976320505142212,0.202997624874115,0.0747691616415977,0.949795842170715,0.0721406638622284,0.304440200328827,0.977687239646912,0.197665557265282,0.0711052566766739,0.968664050102234,0.224832713603973,0.105547204613686,0.942698895931244,0.140393316745758,0.302669048309326,0.94352650642395,0.094750314950943,0.317459046840668,0.949849009513855,0.119761265814304,0.288867086172104,0.888608694076538,0.00243420922197402,0.458659827709198,0.877701997756958,-0.0160202383995056,0.478939145803452,0.946208596229553,0.0853831842541695,0.312088310718536,0.266635775566101,-0.496202170848846,0.826249957084656,0.447105228900909,-0.436968952417374,0.780484020709991,0.48931747674942,-0.433146357536316,0.756936371326447,0.290574550628662,-0.503508269786835,0.813661932945251,0.490818440914154,-0.448920071125031,0.746704876422882,0.540928840637207,-0.431138664484024,0.722160339355469, +0.323426395654678,-0.505942821502686,0.799635767936707,0.290814429521561,-0.507497191429138,0.811094045639038,0.324131995439529,-0.514997839927673,0.793546319007874,0.0830238908529282,-0.55812931060791,0.825589954853058,0.0914171040058136,-0.549955666065216,0.830175757408142,0.291377663612366,-0.517280697822571,0.80468612909317,-0.274909615516663,-0.557972073554993,0.783001899719238,-0.237009420990944,-0.572924971580505,0.784591317176819,-0.0763042569160461,-0.5894495844841,0.804193317890167,-0.100583449006081,-0.578758716583252,0.809272170066833,-0.0756024569272995,-0.572812736034393,0.816192269325256,0.0927965193986893,-0.567655026912689,0.818019986152649,0.0915696918964386,-0.560437381267548,0.823119044303894,-0.100046932697296,-0.564489722251892,0.819354712963104,0.0918985158205032,-0.58732658624649,0.804115831851959,0.0834930688142776,-0.570801973342896,0.816831707954407,-0.122779577970505,-0.586054503917694,0.800915360450745,-0.101468041539192,-0.603887856006622,0.790584325790405,0.62175041437149,-0.326202541589737,0.712052226066589,0.783150434494019,-0.208296656608582,0.585907816886902,0.822054028511047,-0.177081376314163,0.541174054145813,0.671736359596252,-0.303474366664886,0.675776243209839,0.82060718536377,-0.170216903090477,0.54555481672287,0.863584518432617,-0.14031408727169,0.484286904335022,0.727347433567047,-0.272934198379517,0.629660725593567,0.669953286647797,-0.292788058519363,0.682230055332184,0.731324434280396,-0.302163630723953,0.61144232749939,0.541214823722839,-0.434195339679718,0.720111787319183,0.488349080085754,-0.423756241798401,0.762853801250458,0.672852098941803,-0.310484141111374,0.671468317508698,0.901970028877258,-0.0420243628323078,0.429749071598053,0.963904738426208,0.14058643579483,0.226104289293289,0.967616677284241,0.179495170712471,0.177481144666672,0.9184410572052,-0.0136462170630693,0.395322561264038,0.96782660484314,0.178879141807556,0.176957294344902,0.971639275550842,0.189270585775375,0.141752883791924,0.935050845146179,0.0134577732533216,0.354258000850677,0.9181307554245,-0.012569472193718,0.396078109741211, +0.937459230422974,0.00367903662845492,0.348075717687607,0.859697639942169,-0.119949087500572,0.496520191431046,0.816845059394836,-0.153434544801712,0.556077361106873,0.919728994369507,-0.0181799549609423,0.392132997512817,0.744113087654114,-0.19863572716713,0.637839794158936,0.720406711101532,-0.206676080822945,0.662041664123535,0.853326678276062,-0.0438056588172913,0.519533216953278,0.870767831802368,-0.0315920412540436,0.490678429603577,0.85734224319458,-0.0534346252679825,0.511965990066528,0.936445713043213,0.126836344599724,0.327080905437469,0.937740921974182,0.151084527373314,0.312754839658737,0.868496477603912,-0.0258623361587524,0.495020270347595,0.938336372375488,0.149813249707222,0.311578094959259,0.949963927268982,0.17663149535656,0.257623642683029,0.896420896053314,-0.0250144749879837,0.442497253417969,0.874282598495483,-0.0407123267650604,0.483707010746002,0.560685992240906,-0.338012874126434,0.755895972251892,0.723536193370819,-0.216328501701355,0.655513048171997,0.74708616733551,-0.20864824950695,0.631132483482361,0.586037397384644,-0.336444139480591,0.737133383750916,0.749467968940735,-0.216939374804497,0.625487983226776,0.780783534049988,-0.198732167482376,0.592353403568268,0.622108221054077,-0.328088134527206,0.71087235212326,0.586446583271027,-0.338348716497421,0.735935270786285,0.623974144458771,-0.338175505399704,0.70448112487793,0.446662545204163,-0.433388531208038,0.782730460166931,0.418471246957779,-0.431702494621277,0.799071311950684,0.588163495063782,-0.346481502056122,0.730762779712677,0.0967966765165329,-0.550228714942932,0.829384565353394,0.0983212888240814,-0.537747204303741,0.837353587150574,0.245617419481277,-0.503880321979523,0.828116357326508,0.255386769771576,-0.514693021774292,0.818455040454865,0.244686648249626,-0.495044887065887,0.833701968193054,0.4005027115345,-0.440626591444016,0.803396463394165,0.420526266098022,-0.44604566693306,0.790063858032227,0.254603564739227,-0.505244553089142,0.824563443660736,0.420131921768188,-0.443235993385315,0.791852951049805,0.448203086853027,-0.446112513542175,0.774659752845764, +0.267574608325958,-0.510036766529083,0.81747567653656,0.254152774810791,-0.499947607517242,0.827924430370331,0.677703440189362,-0.153752833604813,0.719081461429596,0.658176124095917,-0.148230999708176,0.738127171993256,0.785567164421082,0.0254582613706589,0.618252396583557,0.801570534706116,0.018834175541997,0.597603619098663,0.792925894260406,0.0136910956352949,0.609164178371429,0.869356751441956,0.205933839082718,0.449233055114746,0.872655034065247,0.217779338359833,0.437087446451187,0.798225700855255,0.0246267654001713,0.601854979991913,0.872523188591003,0.217955976724625,0.437262684106827,0.896220803260803,0.19903376698494,0.396451741456985,0.842605471611023,-0.0195668768137693,0.538175702095032,0.814606487751007,-0.00464615225791931,0.579995393753052,0.604330122470856,-0.0709263905882835,0.793570756912231,0.580929577350616,-0.0619361028075218,0.811593890190125,0.688617169857025,0.120380342006683,0.715062975883484,0.712943077087402,0.109295055270195,0.692651987075806,0.711740016937256,0.0959804356098175,0.695854842662811,0.777391910552979,0.285122036933899,0.560684621334076,0.777078449726105,0.294970750808716,0.556004822254181,0.711232423782349,0.111323177814484,0.694086194038391,0.77703195810318,0.295010536909103,0.556048691272736,0.811169624328613,0.27178692817688,0.517818331718445,0.769398093223572,0.0501642450690269,0.636796891689301,0.739523231983185,0.0765917375683784,0.668759405612946,0.508288562297821,-0.285995990037918,0.812311053276062,0.662659764289856,-0.158013865351677,0.732061266899109,0.682234704494476,-0.164709702134132,0.712338745594025,0.527344286441803,-0.295673698186874,0.796545803546906,0.69468080997467,-0.196372866630554,0.691994488239288,0.716325342655182,-0.194503664970398,0.670109212398529,0.55696040391922,-0.322757303714752,0.765260100364685,0.534336805343628,-0.32013151049614,0.782304346561432,0.558906972408295,-0.330646574497223,0.760457694530487,0.396877288818359,-0.41892808675766,0.816693186759949,0.379128396511078,-0.410796821117401,0.829160809516907,0.536415934562683,-0.32767179608345,0.777746140956879, +0.0955329686403275,-0.511750161647797,0.85380631685257,0.091120570898056,-0.498184859752655,0.862269639968872,0.224468529224396,-0.461007177829742,0.858537375926971,0.233684912323952,-0.473541170358658,0.849205553531647,0.222861796617508,-0.451010495424271,0.864246547222137,0.363874197006226,-0.394974172115326,0.843558549880981,0.378067940473557,-0.405445516109467,0.832273244857788,0.232365220785141,-0.46371802687645,0.854969024658203,0.381523847579956,-0.423111647367477,0.821837067604065,0.398888200521469,-0.430803328752518,0.80950403213501,0.244032666087151,-0.488953500986099,0.837479829788208,0.234237819910049,-0.477707147598267,0.846716403961182,0.486618131399155,0.0142942387610674,0.87349796295166,0.458264589309692,-0.0308061353862286,0.888281762599945,0.55893611907959,0.137773424386978,0.817685127258301,0.581393718719482,0.18256413936615,0.792875647544861,0.577807366847992,0.125986322760582,0.806390881538391,0.620859682559967,0.319701582193375,0.715768218040466,0.625511467456818,0.357126891613007,0.693682789802551,0.5909703373909,0.175428315997124,0.787387430667877,0.624582648277283,0.357549220323563,0.694301962852478,0.680341243743896,0.351813822984695,0.642933011054993,0.674749374389648,0.134433165192604,0.725700378417969,0.624941527843475,0.149217888712883,0.766278147697449,0.442088156938553,-0.199134320020676,0.874587655067444,0.579281747341156,-0.0594991445541382,0.812952995300293,0.606193244457245,-0.0741281881928444,0.79185539484024,0.468263208866119,-0.213869899511337,0.857315242290497,0.627884805202484,-0.112679824233055,0.770106554031372,0.648190557956696,-0.127109453082085,0.750794470310211,0.500461518764496,-0.262652486562729,0.824955821037292,0.481435060501099,-0.24690280854702,0.840987145900726,0.502716243267059,-0.269281536340714,0.821440100669861,0.356140941381454,-0.361954092979431,0.861482977867126,0.340125620365143,-0.345252305269241,0.874708771705627,0.484319508075714,-0.254341006278992,0.837105393409729,0.241859167814255,-0.211924970149994,0.946885406970978,0.200894489884377,-0.223930165171623,0.953675389289856, +0.319555461406708,-0.134689405560493,0.937946200370789,0.365141659975052,-0.11938600987196,0.923265218734741,0.328136146068573,-0.146149724721909,0.933256149291992,0.44377213716507,-0.0173235088586807,0.89597225189209,0.48948347568512,0.0110898921266198,0.871942162513733,0.368307322263718,-0.124487310647964,0.921332001686096,0.518968105316162,-0.0225890278816223,0.854495048522949,0.551576614379883,-0.0197081118822098,0.833891451358795,0.420365542173386,-0.154952362179756,0.894026041030884,0.388668775558472,-0.157759770750999,0.907771229743958,0.295129209756851,-0.00995895266532898,0.955405473709106,0.247273504734039,-0.0982122719287872,0.963955581188202,0.315732568502426,0.0310284569859505,0.948340773582458,0.364032924175262,0.131261721253395,0.922090291976929,0.331271350383759,0.0251585766673088,0.94320011138916,0.359945386648178,0.194862633943558,0.912396728992462,0.37281459569931,0.297549337148666,0.878904819488525,0.350104153156281,0.137333318591118,0.926588773727417,0.476520299911499,0.281124025583267,0.83300518989563,0.482914716005325,0.361084192991257,0.797754168510437,0.461252599954605,0.194378763437271,0.865715324878693,0.444139063358307,0.0948657542467117,0.890921473503113,0.0774253383278847,-0.443030327558517,0.893157005310059,0.0614901855587959,-0.429904162883759,0.900778293609619,0.185267686843872,-0.387402892112732,0.903102993965149,0.204046219587326,-0.399335086345673,0.893810153007507,0.18287967145443,-0.37806299328804,0.907537043094635,0.313332676887512,-0.315289229154587,0.895776391029358,0.334983140230179,-0.327072292566299,0.883634567260742,0.202383145689964,-0.391184747219086,0.897783756256104,0.344848304986954,-0.36229196190834,0.865924000740051,0.359060317277908,-0.374220848083496,0.855005502700806,0.220042705535889,-0.433763861656189,0.873744964599609,0.20834544301033,-0.420648783445358,0.882976114749908,0.0766770094633102,-0.138485476374626,0.987391769886017,-0.00570134073495865,-0.286667466163635,0.958013236522675,0.0726650580763817,-0.146386593580246,0.986554980278015,0.129504457116127,-0.0376130789518356,0.990865230560303, +0.0622719116508961,-0.14282338321209,0.987787365913391,0.0883544608950615,-0.0505301281809807,0.994806587696075,0.11742739379406,0.0779785513877869,0.990015208721161,0.0935071408748627,-0.025516951456666,0.995291590690613,0.198264792561531,0.0764745995402336,0.977160573005676,0.223349645733833,0.203094407916069,0.953345477581024,0.197832211852074,0.0741501376032829,0.977427363395691,0.168690651655197,-0.0507906563580036,0.984359562397003,0.113278977572918,-0.189930140972137,0.975240647792816,0.0565850362181664,-0.231082081794739,0.971287488937378,0.142859429121017,-0.152238711714745,0.977964580059052,0.205011814832687,-0.104931131005287,0.973118543624878,0.172820687294006,-0.18111190199852,0.968158841133118,0.246188312768936,-0.0974984467029572,0.964305639266968,0.309672862291336,-0.0208568572998047,0.950614452362061,0.223130017518997,-0.124997645616531,0.96674120426178,0.351593226194382,-0.0526973456144333,0.93466854095459,0.409845590591431,0.0135672520846128,0.912054002285004,0.300077319145203,-0.108914919197559,0.947676777839661,0.252600997686386,-0.157843247056007,0.954608917236328,-0.128941833972931,-0.310751795768738,0.941704511642456,-0.114396035671234,-0.387363970279694,0.914802074432373,-0.0486988686025143,-0.214014187455177,0.975615918636322,-0.0740328058600426,-0.204662635922432,0.976028859615326,-0.0252534225583076,-0.215189605951309,0.976245760917664,0.0248835422098637,-0.0494932793080807,0.998464405536652,-0.0060935951769352,-0.119016245007515,0.99287360906601,-0.0426173321902752,-0.214500620961189,0.975793600082397,0.116796970367432,-0.127101317048073,0.984989285469055,0.036119632422924,-0.205585926771164,0.977972269058228,-0.0200690347701311,-0.258243232965469,0.965871572494507,0.0544868856668472,-0.187850266695023,0.980685234069824,-0.0218155458569527,-0.256575793027878,0.966277956962585,-0.0134023819118738,-0.281857341527939,0.959362745285034,0.108642578125,-0.157110214233398,0.981587052345276,0.058459684252739,-0.191138654947281,0.979820668697357,0.17397478222847,-0.34355765581131,0.922876477241516, +0.0548634007573128,-0.3949294090271,0.917071938514709,0.0278316661715508,-0.380723476409912,0.924270033836365,0.142970204353333,-0.331104665994644,0.932699918746948,0.0188771262764931,-0.345236748456955,0.938325822353363,-0.0210655927658081,-0.337113320827484,0.94122838973999,0.085532046854496,-0.284425288438797,0.95487517118454,0.12949874997139,-0.290397047996521,0.948103129863739,0.087072379887104,-0.288090437650681,0.953636407852173,0.199425205588341,-0.221247017383575,0.954609572887421,0.244690716266632,-0.218251183629036,0.944718420505524,0.128527894616127,-0.287471294403076,0.949126362800598,-0.102728545665741,-0.264539569616318,0.958887815475464,-0.159768328070641,-0.296797186136246,0.941480457782745,-0.0599315613508224,-0.254119247198105,0.965314269065857,-0.0032251481898129,-0.220869436860085,0.975298166275024,-0.048613615334034,-0.271102249622345,0.961322247982025,0.0422317944467068,-0.213219314813614,0.976091265678406,0.102763004601002,-0.174169853329659,0.979338943958282,0.00533369230106473,-0.237210005521774,0.971443831920624,0.124475337564945,-0.206701755523682,0.97045361995697,0.179965689778328,-0.185846328735352,0.965957403182983,0.0719840526580811,-0.252128481864929,0.965012729167938,0.0222028698772192,-0.269180446863174,0.962833762168884,-0.357885211706161,-0.491211712360382,0.79412168264389,-0.414783179759979,-0.589886248111725,0.692812561988831,-0.351886451244354,-0.472871661186218,0.807816982269287,-0.288012027740479,-0.373293220996857,0.881873786449432,-0.257916659116745,-0.49447375535965,0.830044984817505,-0.202632918953896,-0.376289814710617,0.904071807861328,-0.15632364153862,-0.298761457204819,0.941437482833862,-0.212977811694145,-0.412957966327667,0.885497748851776,-0.170251742005348,-0.292535841464996,0.940976679325104,-0.113127991557121,-0.217347264289856,0.969516515731812,-0.190451219677925,-0.324462324380875,0.926527142524719,-0.245678037405014,-0.39613801240921,0.884712874889374,-0.265132039785385,-0.282450765371323,0.92191469669342,-0.331004083156586,-0.367527663707733,0.869114398956299, +-0.21753653883934,-0.302031844854355,0.928145885467529,-0.170961335301399,-0.232451811432838,0.957464575767517,-0.17382624745369,-0.33793705701828,0.92497730255127,-0.0365077517926693,-0.267278671264648,0.962927520275116,-0.0615164488554001,-0.218222886323929,0.973958194255829,-0.160058349370956,-0.245293363928795,0.956144630908966,-0.0599291399121284,-0.219772860407829,0.973708629608154,0.00867771357297897,-0.171118631958961,0.98521226644516,-0.0694357976317406,-0.239742487668991,0.968350291252136,-0.129513308405876,-0.280618458986282,0.951041340827942,-0.518034398555756,-0.315932065248489,0.794875741004944,-0.609364449977875,-0.349607706069946,0.711652636528015,-0.70805037021637,-0.46317446231842,0.533042430877686,-0.617942571640015,-0.428854167461395,0.658962190151215,-0.765783727169037,-0.375597059726715,0.522017300128937,-0.730086266994476,-0.607735455036163,0.312460601329803,-0.590112149715424,-0.622083902359009,0.514567255973816,-0.631178557872772,-0.414573520421982,0.655547440052032,-0.556342124938965,-0.642974555492401,0.526371657848358,-0.45118659734726,-0.576244950294495,0.681448817253113,-0.47028437256813,-0.413202583789825,0.779805302619934,-0.578887462615967,-0.468640804290771,0.667281925678253,-0.297638326883316,-0.252645999193192,0.920641958713531,-0.395078003406525,-0.277677774429321,0.875676035881042,-0.469512194395065,-0.312877625226974,0.82563054561615,-0.379841238260269,-0.292125880718231,0.87771475315094,-0.48815330862999,-0.270169883966446,0.82988828420639,-0.608873546123505,-0.350498735904694,0.711634516716003,-0.512221455574036,-0.324253708124161,0.795291543006897,-0.403263509273529,-0.248710453510284,0.880637049674988,-0.475431144237518,-0.374535143375397,0.796045780181885,-0.360216498374939,-0.337250679731369,0.86977356672287,-0.287539452314377,-0.249692022800446,0.924648642539978,-0.387641370296478,-0.277936071157455,0.878911733627319,-0.144675925374031,-0.331527084112167,0.93228679895401,-0.26558917760849,-0.363866150379181,0.892784297466278,-0.314425468444824,-0.359292209148407,0.878661394119263, +-0.197781026363373,-0.330011546611786,0.923024892807007,-0.325605839490891,-0.317480593919754,0.890610456466675,-0.379385948181152,-0.32395213842392,0.86667263507843,-0.279787629842758,-0.294682204723358,0.913718402385712,-0.213533595204353,-0.283064693212509,0.935028254985809,-0.272064119577408,-0.312258780002594,0.910206437110901,-0.171304881572723,-0.275639653205872,0.945873916149139,-0.107456564903259,-0.253176629543304,0.96143364906311,-0.210509791970253,-0.292263567447662,0.932881414890289,-0.0661153793334961,-0.436909794807434,0.897072315216064,-0.199673175811768,-0.4507015645504,0.870056688785553,-0.217105016112328,-0.457927733659744,0.862071752548218,-0.0844047069549561,-0.445405960083008,0.8913414478302,-0.224476456642151,-0.4050113260746,0.886327385902405,-0.255808234214783,-0.412218630313873,0.874435842037201,-0.127944156527519,-0.395490139722824,0.909515142440796,-0.095817394554615,-0.386557698249817,0.917274415493011,-0.132497072219849,-0.378509938716888,0.916064858436584,-0.0201816875487566,-0.339769393205643,0.940292179584503,0.019526194781065,-0.347822934389114,0.937356948852539,-0.0954711735248566,-0.388399094343185,0.916532278060913,-0.485335230827332,-0.276825368404388,0.829347610473633,-0.402070164680481,-0.255839169025421,0.879139363765717,-0.529188990592957,-0.283192485570908,0.799850583076477,-0.568335652351379,-0.29338476061821,0.768713176250458,-0.531334936618805,-0.274171888828278,0.801569104194641,-0.7266765832901,-0.263979524374008,0.634236574172974,-0.71262389421463,-0.292578965425491,0.637624263763428,-0.562681794166565,-0.310408890247345,0.766182422637939,-0.395279794931412,-0.379902184009552,0.83631819486618,-0.521913886070251,-0.38813915848732,0.759574949741364,-0.568366944789886,-0.368788719177246,0.735495746135712,-0.450556695461273,-0.363662421703339,0.815321028232574,-0.575280964374542,-0.328606277704239,0.74904590845108,-0.713975369930267,-0.322543174028397,0.621454000473022,-0.517842411994934,-0.327587008476257,0.790269494056702,-0.458099067211151,-0.327414244413376,0.826404929161072, +-0.516646802425385,-0.331981629133224,0.789217472076416,-0.385621398687363,-0.305988401174545,0.87044095993042,-0.328209668397903,-0.307278662919998,0.893229186534882,-0.456365376710892,-0.336088895797729,0.823877990245819,-0.948053538799286,-0.296766638755798,0.114561304450035,-0.976830303668976,-0.162097454071045,0.139739602804184,-0.855598330497742,-0.187700256705284,0.482410728931427,-0.833400845527649,-0.33718129992485,0.437894880771637,-0.804364502429962,-0.30545848608017,0.509600639343262,-0.654027462005615,-0.261349409818649,0.70989054441452,-0.706313908100128,-0.311224520206451,0.635814428329468,-0.831484735012054,-0.341928511857986,0.437856316566467,-0.731574356555939,-0.229857444763184,0.641844749450684,-0.726579964160919,-0.26448255777359,0.634137749671936,-0.886675357818604,-0.240179091691971,0.395121514797211,-0.875564277172089,-0.2104731798172,0.434842824935913,-0.34444335103035,-0.479044556617737,0.80738776922226,-0.504483222961426,-0.456170916557312,0.733078956604004,-0.507131636142731,-0.463674634695053,0.726514577865601,-0.356267690658569,-0.485594123601913,0.798292994499207,-0.509779393672943,-0.42204225063324,0.749670147895813,-0.517415046691895,-0.426809340715408,0.741697669029236,-0.386024177074432,-0.438900649547577,0.811388731002808,-0.361464530229568,-0.435226619243622,0.824573457241058,-0.388137549161911,-0.426449418067932,0.817000687122345,-0.253545522689819,-0.422775894403458,0.870043218135834,-0.223007187247276,-0.416130304336548,0.881534695625305,-0.362656235694885,-0.421501874923706,0.831153869628906,-0.567002654075623,-0.375992894172668,0.732896566390991,-0.521589279174805,-0.391258358955383,0.758196294307709,-0.66878217458725,-0.369857788085938,0.644930839538574,-0.666500866413116,-0.363450676202774,0.650907278060913,-0.66875159740448,-0.370258867740631,0.644732296466827,-0.819568395614624,-0.3071049451828,0.48372945189476,-0.78785115480423,-0.31603741645813,0.528593361377716,-0.666332304477692,-0.364590555429459,0.650442183017731,-0.931766510009766,-0.245426654815674,0.267538815736771, +-0.988163352012634,-0.135914191603661,-0.0711377412080765,-0.985058486461639,-0.169676765799522,-0.0294924359768629,-0.90496438741684,-0.281896770000458,0.318706274032593,-0.982809662818909,-0.18168418109417,-0.0328027345240116,-0.980120301246643,-0.195149257779121,0.035791851580143,-0.883709251880646,-0.253990083932877,0.393124520778656,-0.911243200302124,-0.245930165052414,0.330384969711304,-0.884723305702209,-0.249367356300354,0.393802672624588,-0.717231452465057,-0.308757901191711,0.624697983264923,-0.786717474460602,-0.322859823703766,0.526153147220612,-0.907723903656006,-0.267063558101654,0.323595881462097,-0.673244178295135,-0.428414702415466,0.602663397789001,-0.830361127853394,-0.338238954544067,0.44282603263855,-0.82315993309021,-0.352525591850281,0.445121884346008,-0.666880667209625,-0.441328644752502,0.600415945053101,-0.824456572532654,-0.330840885639191,0.459146946668625,-0.81631463766098,-0.340525895357132,0.466553777456284,-0.664722561836243,-0.412588834762573,0.622827708721161,-0.669049441814423,-0.405445426702499,0.622886002063751,-0.665654361248016,-0.404157757759094,0.627344250679016,-0.515579998493195,-0.440417349338531,0.734989643096924,-0.509097278118134,-0.434800118207932,0.742811441421509,-0.669415652751923,-0.396017611026764,0.628532290458679,0.084145225584507,-0.490793079137802,0.86720335483551,0.0895353481173515,-0.483336210250854,0.87084424495697,-0.0435823835432529,-0.501212954521179,0.864225745201111,-0.0473528169095516,-0.508050918579102,0.860024392604828,-0.0427165254950523,-0.516229510307312,0.855384469032288,-0.184731334447861,-0.521148443222046,0.833233773708344,-0.186108559370041,-0.529108941555023,0.827893257141113,-0.0458148494362831,-0.524502038955688,0.850175678730011,-0.18795146048069,-0.489026308059692,0.851779043674469,-0.195731714367867,-0.49622431397438,0.845843076705933,-0.0590974390506744,-0.488380163908005,0.870627522468567,-0.049860555678606,-0.480401337146759,0.8756303191185,-0.339499235153198,-0.539751887321472,0.770329892635345,-0.508329451084137,-0.50359433889389,0.698565661907196, +-0.505408763885498,-0.516200244426727,0.691447257995605,-0.337866008281708,-0.552043557167053,0.762295544147491,-0.505003750324249,-0.481854051351547,0.716092109680176,-0.503739893436432,-0.492637753486633,0.709615588188171,-0.342037498950958,-0.522295773029327,0.781164228916168,-0.338619709014893,-0.512224733829498,0.789279758930206,-0.343168377876282,-0.504057288169861,0.7925665974617,-0.194221466779709,-0.511915326118469,0.83679187297821,-0.187337398529053,-0.503530323505402,0.843422830104828,-0.338701635599136,-0.496100127696991,0.799478530883789,0.0982372760772705,-0.54586523771286,0.832094073295593,0.0982884615659714,-0.537145733833313,0.837743282318115,-0.0464247167110443,-0.552471041679382,0.83223831653595,-0.0411871559917927,-0.560841739177704,0.826897919178009,-0.0463142693042755,-0.568210244178772,0.821579098701477,-0.194900512695313,-0.566042006015778,0.801005899906158,-0.187249541282654,-0.574503540992737,0.796795666217804,-0.0406363420188427,-0.576378047466278,0.816172182559967,-0.187072515487671,-0.549353182315826,0.81438010931015,-0.184070259332657,-0.558540046215057,0.808796107769012,-0.0403134152293205,-0.555993914604187,0.8302081823349,-0.0416683964431286,-0.546745479106903,0.836261510848999,-0.683182120323181,-0.456973761320114,0.569593966007233,-0.8398317694664,-0.347871333360672,0.416735172271729,-0.836131930351257,-0.36438861489296,0.410005360841751,-0.678898513317108,-0.473193883895874,0.561412990093231,-0.836237013339996,-0.344392240047455,0.42673397064209,-0.82972925901413,-0.361701428890228,0.425113469362259,-0.672374725341797,-0.462435632944107,0.577984035015106,-0.678877770900726,-0.446209937334061,0.583113789558411,-0.672915101051331,-0.44715228676796,0.589270830154419,-0.503048181533813,-0.509778320789337,0.697903037071228,-0.505303561687469,-0.49786365032196,0.704840540885925,-0.678591728210449,-0.43350687623024,0.592946112155914,-0.51298576593399,-0.519207537174225,0.683570921421051,-0.509249269962311,-0.530643343925476,0.67755651473999,-0.339731186628342,-0.573259294033051,0.745624959468842, +-0.344539135694504,-0.561738014221191,0.752159118652344,-0.339691817760468,-0.55706912279129,0.757814943790436,-0.183688044548035,-0.573732376098633,0.798179149627686,-0.18719619512558,-0.56393176317215,0.804324984550476,-0.343945801258087,-0.547110378742218,0.763132750988007,-0.187270283699036,-0.59031093120575,0.785151481628418,-0.195359945297241,-0.579130053520203,0.791481494903564,-0.352241188287735,-0.558782398700714,0.750791847705841,-0.344832092523575,-0.570188283920288,0.745638072490692,0.0973179042339325,-0.568108081817627,0.817179620265961,0.0927290543913841,-0.561128914356232,0.822517991065979,-0.0754078030586243,-0.568286180496216,0.819368362426758,-0.0569749251008034,-0.575758874416351,0.815632164478302,-0.0760243311524391,-0.5827516913414,0.809086501598358,-0.236778110265732,-0.570543885231018,0.786394238471985,-0.210067063570023,-0.583574533462524,0.784418702125549,-0.0573139302432537,-0.593284606933594,0.802949905395508,-0.209439337253571,-0.574060022830963,0.791574656963348,-0.195515811443329,-0.583898305892944,0.787931740283966,-0.0461372472345829,-0.589280307292938,0.80661016702652,-0.0570650696754456,-0.580313265323639,0.812391638755798,-0.525705099105835,-0.523472428321838,0.670530319213867,-0.519374191761017,-0.534654974937439,0.666629195213318,-0.354077517986298,-0.587555468082428,0.727604150772095,-0.366965234279633,-0.574842870235443,0.731363296508789,-0.353264421224594,-0.573968589305878,0.738758683204651,-0.195984020829201,-0.599591970443726,0.775938093662262,-0.21036271750927,-0.588190495967865,0.780883729457855,-0.365668714046478,-0.562031447887421,0.741894245147705,-0.211052447557449,-0.599339604377747,0.772171676158905,-0.238137602806091,-0.584790527820587,0.775442183017731,-0.392923772335052,-0.551525235176086,0.735819816589355,-0.366303980350494,-0.568203628063202,0.736862301826477,-0.47211965918541,-0.524707019329071,0.708368301391602,-0.649083197116852,-0.426439613103867,0.629952669143677,-0.588028192520142,-0.467023909091949,0.660387456417084,-0.440348982810974,-0.538937628269196,0.718080103397369, +-0.59049528837204,-0.480103462934494,0.648703396320343,-0.542714595794678,-0.497360795736313,0.676825761795044,-0.393191426992416,-0.553394198417664,0.734272062778473,-0.441397130489349,-0.546419501304626,0.711754381656647,-0.3917555809021,-0.543513059616089,0.742375433444977,-0.237132862210274,-0.574202537536621,0.783619463443756,-0.27684673666954,-0.578859150409698,0.76699286699295,-0.440053462982178,-0.536872386932373,0.719806253910065,-0.838062524795532,-0.339680939912796,0.426928699016571,-0.838829398155212,-0.34922656416893,0.417619466781616,-0.687524437904358,-0.474153876304626,0.549989402294159,-0.687621593475342,-0.464109987020493,0.558371305465698,-0.686474859714508,-0.461007714271545,0.56233823299408,-0.520392239093781,-0.547651648521423,0.655186712741852,-0.52716988325119,-0.535447001457214,0.659839749336243,-0.686160981655121,-0.452282518148422,0.569757580757141,-0.527755558490753,-0.540534913539886,0.65520703792572,-0.546786248683929,-0.52100020647049,0.655426323413849,-0.694762289524078,-0.436872094869614,0.571356475353241,-0.686180055141449,-0.452428907155991,0.569618284702301,-0.850745439529419,-0.285719901323318,0.441130697727203,-0.839474320411682,-0.311918973922729,0.444960027933121,-0.695998907089233,-0.444006741046906,0.564308047294617,-0.723774552345276,-0.407795608043671,0.5566446185112,-0.694136202335358,-0.433391481637955,0.574758052825928,-0.546690165996552,-0.520408153533936,0.65597665309906,-0.590551972389221,-0.480414003133774,0.648421764373779,-0.721743524074554,-0.398129045963287,0.566197574138641,-0.590702652931213,-0.481242418289185,0.647669792175293,-0.649398863315582,-0.429006457328796,0.627881050109863,-0.758633017539978,-0.352489441633224,0.54792982339859,-0.721263647079468,-0.395924925804138,0.568350493907928,-0.88209056854248,-0.223273158073425,0.414807438850403,-0.91831910610199,-0.121307268738747,0.376795411109924,-0.889407277107239,-0.11866007745266,0.44144606590271,-0.823901832103729,-0.254302650690079,0.506474077701569,-0.905885219573975,-0.174189507961273,0.386044234037399, +-0.870014727115631,-0.232480823993683,0.434772551059723,-0.759936332702637,-0.358761519193649,0.542021095752716,-0.828727722167969,-0.280232071876526,0.484438300132751,-0.758743762969971,-0.353012531995773,0.547439575195313,-0.643288493156433,-0.386116594076157,0.661130726337433,-0.755398094654083,-0.256986558437347,0.602770030498505,-0.82234513759613,-0.246843189001083,0.51265674829483,-0.977400243282318,0.0624340400099754,0.201967418193817,-0.979987025260925,0.0981779471039772,0.17316660284996,-0.947244763374329,-0.0806763097643852,0.310191661119461,-0.955106139183044,-0.0554588288068771,0.291026830673218,-0.947179913520813,-0.0804521888494492,0.310447841882706,-0.871139049530029,-0.23684087395668,0.430143147706985,-0.905637800693512,-0.173191010951996,0.387072443962097,-0.955093264579773,-0.0554151087999344,0.291077613830566,-0.898447751998901,-0.146811604499817,0.413809359073639,-0.911589026451111,-0.0973911583423615,0.399400144815445,-0.949563145637512,-0.0226103980094194,0.31275999546051,-0.950958371162415,-0.0421285033226013,0.306436777114868,-0.99538242816925,0.0367977023124695,0.0886550545692444,-0.996320605278015,0.0304196886718273,0.0801252573728561,-0.946077942848206,-0.172389432787895,0.274259805679321,-0.950287461280823,-0.149039387702942,0.273388087749481,-0.944839835166931,-0.163535669445992,0.28378501534462,-0.840905964374542,-0.320509016513824,0.436063289642334,-0.852387309074402,-0.293679356575012,0.432652771472931,-0.948785841464996,-0.140328750014305,0.283042848110199,-0.850835680961609,-0.28614404797554,0.440681517124176,-0.872489750385284,-0.242261558771133,0.424347847700119,-0.951617360115051,-0.0967929363250732,0.291642934083939,-0.945811212062836,-0.1252351552248,0.299595534801483,-0.963993906974792,0.261917322874069,0.045989703387022,-0.923616409301758,0.375827789306641,-0.0754080787301064,-0.961598038673401,0.272137820720673,0.0356406047940254,-0.976994395256042,0.17898154258728,0.115964166820049,-0.962764382362366,0.268516361713409,0.0313644409179688,-0.979086756706238,0.101048246026039,0.176573857665062, +-0.977704167366028,0.0614572763442993,0.200792506337166,-0.97774600982666,0.176580935716629,0.113277673721313,-0.96988832950592,0.084496483206749,0.228423029184341,-0.97063136100769,0.0450479909777641,0.236316427588463,-0.973125457763672,0.133509799838066,0.187621846795082,-0.967653155326843,0.205748289823532,0.145996630191803,-0.840645909309387,-0.352592378854752,0.411087661981583,-0.840038955211639,-0.364972710609436,0.401409417390823,-0.683670043945313,-0.481585025787354,0.548335015773773,-0.685915946960449,-0.468122959136963,0.557117819786072,-0.68346905708313,-0.467099964618683,0.560970366001129,-0.509495437145233,-0.544814944267273,0.666026413440704,-0.513726115226746,-0.531817495822906,0.673242747783661,-0.685178339481354,-0.455155789852142,0.568650960922241,-0.514481842517853,-0.547943472862244,0.659595668315887,-0.519338488578796,-0.534230053424835,0.666997611522675,-0.685941696166992,-0.45517173409462,0.567717134952545,-0.685835599899292,-0.46651953458786,0.558559894561768,-0.999827980995178,0.00563410017639399,0.0176731646060944,-0.99982750415802,0.0144272027537227,-0.0117059471085668,-0.950599312782288,-0.212361991405487,0.226414442062378,-0.948613524436951,-0.20574577152729,0.240418836474419,-0.950281858444214,-0.201735451817513,0.237207427620888,-0.839558064937592,-0.360938012599945,0.406037151813507,-0.839206516742706,-0.350658982992172,0.415657192468643,-0.947948932647705,-0.195484414696693,0.251353710889816,-0.839072346687317,-0.349264979362488,0.417099177837372,-0.842528581619263,-0.331292659044266,0.424724370241165,-0.946684241294861,-0.177197739481926,0.269053846597672,-0.94736659526825,-0.188386350870132,0.258857369422913,-0.883445382118225,0.434031516313553,-0.176468387246132,-0.706836760044098,0.531370043754578,-0.466934353113174,-0.828682899475098,0.487129330635071,-0.275662213563919,-0.92571359872818,0.3728848695755,-0.0633340775966644,-0.823154866695404,0.505358338356018,-0.258899867534637,-0.92343544960022,0.376394391059875,-0.0747946500778198,-0.962285041809082,0.267206430435181,0.0510718375444412, +-0.92690098285675,0.369461476802826,-0.065976083278656,-0.945517003536224,0.311636418104172,0.0942364633083344,-0.957830905914307,0.237027794122696,0.162412747740746,-0.946685791015625,0.305664926767349,0.101759716868401,-0.910747647285461,0.411649763584137,-0.0329115986824036,-0.976405799388885,0.213482856750488,-0.0325066708028316,-0.937995553016663,0.319329291582108,-0.134882539510727,-0.890116393566132,0.398132026195526,-0.221774488687515,-0.962974905967712,0.257845163345337,-0.0787106081843376,-0.895155906677246,0.355687290430069,-0.268667876720428,-0.86211621761322,0.391952365636826,-0.321137189865112,-0.959514677524567,0.234350442886353,-0.156241968274117,-0.96809858083725,0.216288149356842,-0.126509785652161,-0.95889949798584,0.242541998624802,-0.147259250283241,-0.997295737266541,0.0214535444974899,0.070292167365551,-0.996349036693573,0.0293505601584911,0.0801696106791496,-0.967164993286133,0.226953148841858,-0.114386677742004,-0.710750102996826,0.526091396808624,-0.466971307992935,-0.862290740013123,0.388195425271988,-0.325206279754639,-0.896132946014404,0.339027971029282,-0.286366730928421,-0.762474417686462,0.479329407215118,-0.434598803520203,-0.890670716762543,0.394671708345413,-0.225698798894882,-0.938487231731415,0.316747426986694,-0.137523993849754,-0.837091207504272,0.45439401268959,-0.304638266563416,-0.755826652050018,0.530712127685547,-0.383498102426529,-0.826430320739746,0.494809597730637,-0.268656522035599,-0.665331542491913,0.638293147087097,-0.387189745903015,-0.560299515724182,0.655338525772095,-0.506552875041962,-0.757247030735016,0.522126317024231,-0.392378866672516,-0.729894697666168,0.492525517940521,-0.473996251821518,-0.738603115081787,0.388035476207733,-0.551265895366669,-0.879144906997681,0.445043861865997,-0.170411854982376,-0.781006336212158,0.595563530921936,-0.187971353530884,-0.860455453395844,0.488171100616455,-0.145964384078979,-0.882910251617432,0.466521501541138,0.0531719326972961,-0.836569547653198,0.544385373592377,-0.0616130381822586,-0.817592859268188,0.536484837532043,-0.209107667207718, +-0.556443929672241,0.49500560760498,-0.667337715625763,-0.700188279151917,0.427118629217148,-0.572106778621674,-0.811659038066864,0.329220205545425,-0.482517957687378,-0.68266898393631,0.41411429643631,-0.602056741714478,-0.81562602519989,0.383317977190018,-0.433383792638779,-0.861844062805176,0.332423269748688,-0.38304004073143,-0.710952758789063,0.471508920192719,-0.521752417087555,-0.688517391681671,0.488800972700119,-0.535740077495575,-0.914251565933228,0.245443537831306,-0.322337627410889,-0.999528646469116,-0.00421418948099017,-0.0304081160575151,-0.99996542930603,-0.00451042829081416,0.00699002621695399,-0.940069913864136,0.223781228065491,-0.257275253534317,-0.999795615673065,0.00690150959417224,0.0190076846629381,-0.99881374835968,0.00175840989686549,0.0486634820699692,-0.960417509078979,0.214281529188156,-0.177993640303612,-0.940341651439667,0.244384586811066,-0.2367143034935,-0.960527420043945,0.197484746575356,-0.195925712585449,-0.862630724906921,0.352054357528687,-0.363216370344162,-0.815829157829285,0.390560984611511,-0.426479816436768,-0.94029426574707,0.233310744166374,-0.247815951704979,-0.951201915740967,-0.230229467153549,0.205448836088181,-0.839882612228394,-0.378657042980194,0.388865053653717,-0.841007947921753,-0.364274114370346,0.400012403726578,-0.95193886756897,-0.21634116768837,0.216815710067749,-0.84112012386322,-0.371187031269073,0.393366664648056,-0.83957427740097,-0.361246943473816,0.405728816986084,-0.950494289398193,-0.207969859242439,0.230887621641159,-0.951938033103943,-0.216481640934944,0.216678857803345,-0.950684070587158,-0.21858549118042,0.220046058297157,-0.999672055244446,0.000579095387365669,-0.0256009455770254,-0.998895287513733,-0.00344646722078323,-0.0468667037785053,-0.951728820800781,-0.22871421277523,0.20470030605793,-0.909750699996948,0.199570536613464,-0.364040404558182,-0.696732461452484,0.388668239116669,-0.602910459041595,-0.700619459152222,0.408728003501892,-0.5848708152771,-0.905675888061523,0.228184849023819,-0.357327342033386,-0.69690877199173,0.372091323137283,-0.613079369068146, +-0.70212858915329,0.344823390245438,-0.622986674308777,-0.905156075954437,0.171916484832764,-0.388763695955276,-0.902416110038757,0.200443357229233,-0.381402164697647,-0.90992134809494,0.209936752915382,-0.357728540897369,-0.997116327285767,-0.030739014968276,-0.0693840980529785,-0.995342969894409,-0.0440913215279579,-0.0857227593660355,-0.902702569961548,0.202529013156891,-0.379618346691132,-0.943953633308411,-0.249838709831238,0.215713381767273,-0.828789532184601,-0.379019737243652,0.41164568066597,-0.83625316619873,-0.354844570159912,0.418050408363342,-0.948888599872589,-0.225852280855179,0.220457062125206,-0.835805356502533,-0.376019328832626,0.400048851966858,-0.840025305747986,-0.360146284103394,0.405773729085922,-0.951606869697571,-0.216318264603615,0.218290656805038,-0.948586404323578,-0.232686340808868,0.21457177400589,-0.951402544975281,-0.224750518798828,0.210524544119835,-0.99801242351532,-0.020060645416379,-0.0597394146025181,-0.996615290641785,-0.0442709103226662,-0.0692691579461098,-0.947493195533752,-0.249684482812881,0.199785709381104,-0.694830417633057,0.265229225158691,-0.668479025363922,-0.697680652141571,0.28643673658371,-0.656655013561249,-0.902519881725311,0.125368595123291,-0.411995977163315,-0.897716283798218,0.108864299952984,-0.426912307739258,-0.902623295783997,0.126007243990898,-0.411574244499207,-0.99154794216156,-0.0911849141120911,-0.0922927558422089,-0.994902372360229,-0.0590977445244789,-0.0817115679383278,-0.905961275100708,0.153492316603661,-0.394555866718292,-0.993959784507751,-0.0661143735051155,-0.08759555965662,-0.996318697929382,-0.0386475622653961,-0.0765214934945107,-0.90732729434967,0.187182083725929,-0.376457124948502,-0.907077610492706,0.160993203520775,-0.388962209224701,-0.928664565086365,-0.268548309803009,0.255859315395355,-0.814169108867645,-0.357674837112427,0.457381129264832,-0.824220657348633,-0.335590094327927,0.45611360669136,-0.939687728881836,-0.242106065154076,0.241602122783661,-0.821726143360138,-0.369706720113754,0.433685630559921,-0.830227434635162,-0.346220046281815,0.436868458986282, +-0.945324540138245,-0.230213418602943,0.231005132198334,-0.938413023948669,-0.255087107419968,0.233048528432846,-0.94456821680069,-0.242063671350479,0.221802085638046,-0.994988679885864,-0.0670859068632126,-0.0741420984268188,-0.99210262298584,-0.0964617282152176,-0.0801720842719078,-0.935984492301941,-0.27509605884552,0.219671025872231,-0.669643700122833,0.130040809512138,-0.731209099292755,-0.678008496761322,0.142021641135216,-0.721203446388245,-0.890969038009644,0.0105751901865005,-0.45394104719162,-0.880812287330627,0.00521689653396606,-0.473437011241913,-0.89031445980072,0.00702483952045441,-0.455292046070099,-0.98380184173584,-0.159406572580338,-0.0819972828030586,-0.989462852478027,-0.112996838986874,-0.0905262231826782,-0.89101380109787,0.0487940087914467,-0.451346337795258,-0.988390445709229,-0.119095712900162,-0.0943433418869972,-0.991825938224792,-0.0894546583294868,-0.0909903049468994,-0.900368273258209,0.112752594053745,-0.420266360044479,-0.898127257823944,0.0868702530860901,-0.431069850921631,-0.681143462657928,-0.0106291845440865,-0.73207288980484,-0.721624493598938,-0.00675987359136343,-0.692251741886139,-0.922294020652771,-0.0728357285261154,-0.379563927650452,-0.897492945194244,-0.0702569186687469,-0.435396790504456,-0.922077000141144,-0.0751601234078407,-0.379638254642487,-0.984285891056061,-0.172585144639015,0.0373579859733582,-0.981716275215149,-0.187228262424469,-0.0343321077525616,-0.894176363945007,-0.0881097018718719,-0.438959419727325,-0.982635259628296,-0.182581022381783,-0.0330500975251198,-0.98452490568161,-0.155759051442146,-0.0803115665912628,-0.8858522772789,-0.0155089180916548,-0.463708072900772,-0.902483344078064,-0.0394607670605183,-0.428913205862045,-0.749855160713196,-0.0157612636685371,-0.661414384841919,-0.7521693110466,0.0283817537128925,-0.658358454704285,-0.93010950088501,0.0710135772824287,-0.360351949930191,-0.935792028903961,0.035887461155653,-0.35072135925293,-0.942008137702942,0.00139544159173965,-0.335587292909622,-0.995953917503357,-0.0300829913467169,0.0846812799572945, +-0.97782289981842,-0.185414090752602,0.0973857939243317,-0.935308218002319,-0.151999935507774,-0.319522738456726,-0.987015902996063,-0.133651077747345,0.08909060806036,-0.979869306087494,-0.196421876549721,0.0357027426362038,-0.910776019096375,-0.159311056137085,-0.380929440259933,-0.938793241977692,-0.101806625723839,-0.329093784093857,-0.468979239463806,0.244227483868599,-0.848770558834076,-0.328067362308502,0.268114864826202,-0.905807018280029,-0.334409236907959,0.274655938148499,-0.901517987251282,-0.470683336257935,0.251398980617523,-0.845727920532227,-0.328843295574188,0.199523344635963,-0.923066973686218,-0.336954087018967,0.20264507830143,-0.919454753398895,-0.466629564762115,0.181461617350578,-0.86563766002655,-0.461500883102417,0.178243786096573,-0.86904901266098,-0.468462586402893,0.201727509498596,-0.860144734382629,-0.677553057670593,0.138626784086227,-0.722291171550751,-0.670446932315826,0.133910715579987,-0.729773163795471,-0.463782906532288,0.194613859057426,-0.86430948972702,-0.458391547203064,0.108441658318043,-0.882109820842743,-0.331647783517838,0.126196295022964,-0.934924721717834,-0.344923943281174,0.125193998217583,-0.930244088172913,-0.47476053237915,0.106515996158123,-0.873645722866058,-0.342905163764954,0.0817363634705544,-0.935807228088379,-0.358414649963379,0.0752571150660515,-0.930524230003357,-0.49756583571434,0.0596609003841877,-0.865372121334076,-0.471770077943802,0.0667338371276855,-0.879192650318146,-0.497522413730621,0.0501191653311253,-0.866002082824707,-0.722459852695465,0.0186165552586317,-0.69116222858429,-0.686205744743347,0.0258844271302223,-0.726946830749512,-0.470944195985794,0.0572338737547398,-0.880304455757141,-0.36260724067688,0.0117167644202709,-0.931868493556976,-0.349673807621002,0.0201193541288376,-0.936655521392822,-0.514170706272125,0.031225673854351,-0.85711932182312,-0.515731394290924,0.022145701572299,-0.856464087963104,-0.517655551433563,0.0133978947997093,-0.855484187602997,-0.747848093509674,0.0467883460223675,-0.662219107151031,-0.745680630207062,0.0325671881437302,-0.665507256984711, +-0.517735362052917,-0.00420357659459114,-0.855530500411987,-0.748647153377533,0.000517934502568096,-0.662968516349792,-0.720937252044678,-0.0212704818695784,-0.692673861980438,-0.496283531188965,-0.00785277225077152,-0.868125021457672,-0.516151964664459,0.016990153118968,-0.85632848739624,-0.672812581062317,0.348705321550369,-0.652478277683258,-0.711370646953583,0.506721079349518,-0.487017065286636,-0.716165006160736,0.59647524356842,-0.362388044595718,-0.698893487453461,0.437016546726227,-0.566184163093567,-0.840147972106934,0.47529923915863,-0.261232107877731,-0.813785433769226,0.553283751010895,-0.177849844098091,-0.814961731433868,0.371675729751587,-0.444628536701202,-0.815603375434875,0.287735730409622,-0.501995503902435,-0.849468350410461,0.306265771389008,-0.429656684398651,-0.713364541530609,0.164795443415642,-0.681141316890717,-0.695227384567261,0.144179955124855,-0.70418119430542,-0.82677173614502,0.270093262195587,-0.49345526099205,-0.407073616981506,0.241687744855881,-0.880839407444,-0.31172177195549,0.0790242850780487,-0.946881651878357,-0.407402783632278,0.242340669035912,-0.880507826805115,-0.462080359458923,0.341784566640854,-0.818330645561218,-0.42138934135437,0.236122280359268,-0.875601053237915,-0.405361920595169,0.387661129236221,-0.827889382839203,-0.449952661991119,0.497995287179947,-0.74131190776825,-0.472460597753525,0.336199879646301,-0.814708888530731,-0.547886610031128,0.473854541778564,-0.689407169818878,-0.571850597858429,0.579128444194794,-0.581031203269958,-0.544403791427612,0.448967188596725,-0.708556950092316,-0.502780020236969,0.319361001253128,-0.803256392478943,-0.323927372694016,0.058008223772049,-0.944301962852478,-0.295188069343567,0.052475668489933,-0.953997075557709,-0.446271777153015,0.106521941721439,-0.88853508234024,-0.474180340766907,0.113753817975521,-0.87304812669754,-0.452000468969345,0.0950828045606613,-0.886935710906982,-0.60971212387085,0.198492139577866,-0.767366945743561,-0.649893760681152,0.230015531182289,-0.724383115768433,-0.474926292896271,0.111737072467804,-0.872903048992157, +-0.695555150508881,0.143502712249756,-0.703995764255524,-0.716211020946503,0.156399667263031,-0.680133044719696,-0.50745964050293,0.0633226186037064,-0.859345674514771,-0.493946492671967,0.0579366460442543,-0.867559909820557,-0.33428093791008,0.273139655590057,-0.902026116847992,-0.260854661464691,0.118402823805809,-0.958089590072632,-0.247940331697464,0.0533268451690674,-0.96730649471283,-0.309934824705124,0.179853528738022,-0.933591604232788,-0.251824110746384,0.0519164651632309,-0.966379523277283,-0.225057721138,0.052077192813158,-0.972952723503113,-0.265779256820679,0.219720333814621,-0.93866103887558,-0.288413435220718,0.185805216431618,-0.939305186271667,0.0167915560305119,-0.156269907951355,-0.987571656703949,0.0652244538068771,-0.20696847140789,-0.97617107629776,0.00462693953886628,-0.0792495757341385,-0.996844172477722,-0.0481690391898155,-0.0204186663031578,-0.998630523681641,-0.102604359388351,-0.0781964436173439,-0.991643965244293,-0.157906949520111,0.0514363348484039,-0.986113548278809,-0.199784830212593,0.0706038177013397,-0.977292776107788,-0.143579915165901,-0.0528116077184677,-0.988228678703308,-0.15986867249012,0.0846360325813293,-0.983503401279449,-0.214935153722763,0.152812987565994,-0.964599013328552,-0.119201995432377,0.00719786714762449,-0.992843925952911,-0.0817023888230324,-0.031808327883482,-0.996149063110352,-0.425904333591461,0.145914927124977,-0.892924666404724,-0.287145882844925,0.0727344825863838,-0.955121397972107,-0.262028157711029,0.0643724799156189,-0.962910890579224,-0.37402132153511,0.121979653835297,-0.919363379478455,-0.27291214466095,0.0481767803430557,-0.960831999778748,-0.287645012140274,0.0978336408734322,-0.952727079391479,-0.439238667488098,0.214100062847137,-0.872485339641571,-0.377868443727493,0.116553455591202,-0.918493747711182,-0.19369612634182,0.0496636517345905,-0.979803740978241,-0.166658163070679,0.0553193539381027,-0.984461724758148,-0.238214686512947,0.0531180277466774,-0.969758927822113,-0.263323217630386,0.0469674319028854,-0.963563680648804,-0.24117337167263,0.0304402131587267,-0.970004618167877, +-0.347914308309555,0.0315477624535561,-0.936995387077332,-0.36183300614357,0.0236322525888681,-0.931943416595459,-0.264850467443466,0.0236954335123301,-0.963998377323151,-0.359583735466003,0.0545298419892788,-0.931518137454987,-0.35842227935791,0.0421001687645912,-0.932609796524048,-0.275174111127853,0.0525741837918758,-0.959955871105194,-0.262081116437912,0.0644406005740166,-0.962892055511475,-0.246090188622475,0.139762654900551,-0.959117352962494,-0.182979598641396,0.141181528568268,-0.972926735877991,-0.19730082154274,0.141940996050835,-0.970012962818146,-0.261300295591354,0.140354335308075,-0.954998850822449,-0.197646781802177,0.104929834604263,-0.97464120388031,-0.216496735811234,0.104849971830845,-0.970636785030365,-0.274392992258072,0.104076616466045,-0.955968916416168,-0.260603874921799,0.104040279984474,-0.959823608398438,-0.274536430835724,0.0973730385303497,-0.956633806228638,-0.358278572559357,0.0904594361782074,-0.929222047328949,-0.343562573194504,0.0944365784525871,-0.934369683265686,-0.260536134243011,0.101253934204578,-0.960139870643616,-0.1368777602911,0.0483664385974407,-0.98940646648407,-0.0907737910747528,0.0420415885746479,-0.994983792304993,-0.177786767482758,0.0582772456109524,-0.982342004776001,-0.212507471442223,0.061919953674078,-0.975195646286011,-0.184276819229126,0.0400182753801346,-0.982059359550476,-0.289533257484436,0.0667600110173225,-0.954836964607239,-0.32015585899353,0.0720923915505409,-0.944617867469788,-0.216233447194099,0.0449113585054874,-0.975308239459991,-0.326032489538193,0.0500276014208794,-0.944033980369568,-0.345006883144379,0.0497959405183792,-0.93727833032608,-0.240631610155106,0.0346672795712948,-0.96999728679657,-0.218415066599846,0.03480439260602,-0.975235164165497,-0.0318965241312981,-0.00313352048397064,-0.999486327171326,0.0399247370660305,-0.0548573285341263,-0.997695744037628,-0.0822125300765038,0.0371112711727619,-0.995923638343811,-0.127002850174904,0.0640987381339073,-0.989829182624817,-0.114034786820412,0.0113908015191555,-0.993411540985107,-0.262560576200485,0.117104105651379,-0.957783222198486, +-0.251358360052109,0.0800821036100388,-0.964575529098511,-0.154448226094246,0.0208193939179182,-0.987781584262848,-0.250106632709503,0.0819143652915955,-0.964746952056885,-0.278423458337784,0.0942896008491516,-0.955819010734558,-0.181150957942009,0.04883873462677,-0.982241868972778,-0.146353229880333,0.0336571522057056,-0.988659739494324,-0.0382048450410366,0.0814073830842972,-0.995948493480682,0.043306078761816,0.0695889890193939,-0.996635377407074,-0.00944460276514292,0.0759135782718658,-0.997069656848907,-0.0759668722748756,0.0843493565917015,-0.993536293506622,-0.0161702539771795,0.0531326308846474,-0.998456537723541,-0.0840867981314659,0.0628635808825493,-0.99447363615036,-0.133149325847626,0.068325586616993,-0.988738119602203,-0.0796550884842873,0.0619402974843979,-0.994896292686462,-0.13297575712204,0.0692469477653503,-0.988697350025177,-0.165316253900528,0.0674327909946442,-0.983932614326477,-0.120003141462803,0.0677060633897781,-0.990462124347687,-0.0786173120141029,0.0682743042707443,-0.994564175605774,-0.197390481829643,0.134684339165688,-0.971028923988342,-0.182941854000092,0.134451672434807,-0.973886609077454,-0.132625743746758,0.134192451834679,-0.982040107250214,-0.151266574859619,0.134523749351501,-0.979296624660492,-0.133172556757927,0.117346964776516,-0.984121382236481,-0.0871079638600349,0.117852933704853,-0.989203214645386,-0.115415140986443,0.116569086909294,-0.986453771591187,-0.152217581868172,0.115518264472485,-0.981572926044464,-0.118336334824562,0.0858385935425758,-0.98925644159317,-0.163604855537415,0.0825555250048637,-0.983065724372864,-0.191912889480591,0.078063078224659,-0.978302478790283,-0.153755709528923,0.0819616764783859,-0.984703779220581,0.142235100269318,-0.0368951000273228,-0.98914510011673,0.276542544364929,-0.134163990616798,-0.951590418815613,0.195019960403442,-0.0768668800592422,-0.977782607078552,0.0783049091696739,0.00411938084289432,-0.996921002864838,0.165285035967827,-0.104105405509472,-0.980735898017883,0.0654013231396675,-0.0331469438970089,-0.997308373451233,-0.0172436833381653,0.0218900330364704,-0.999611675739288, +0.0599395930767059,-0.0289159622043371,-0.997783184051514,-0.0149865876883268,0.0257407836616039,-0.999556303024292,-0.0882390514016151,0.0499525591731071,-0.994846105575562,-0.0233064293861389,0.0288942568004131,-0.999310791492462,0.0732661634683609,-0.00496375747025013,-0.997300148010254,0.310497462749481,-0.296448022127151,-0.903166651725769,0.356860756874084,-0.401534169912338,-0.843457639217377,0.312687307596207,-0.309061884880066,-0.898168981075287,0.26099556684494,-0.200031116604805,-0.944388151168823,0.22079573571682,-0.316701650619507,-0.922469258308411,0.185049742460251,-0.203439116477966,-0.961441159248352,0.149075865745544,-0.109097674489021,-0.982788920402527,0.189705193042755,-0.230118811130524,-0.954493284225464,0.144244819879532,-0.110877379775047,-0.983310580253601,0.0749351307749748,-0.0249968431890011,-0.996875107288361,0.148851647973061,-0.118981629610062,-0.981675386428833,0.220681130886078,-0.217277616262436,-0.950836658477783,0.273243010044098,-0.0152447149157524,-0.961824297904968,0.451540172100067,-0.154272437095642,-0.878812611103058,0.404995381832123,-0.117134928703308,-0.90678459405899,0.235613018274307,0.0122153554111719,-0.971770286560059,0.371694803237915,-0.151491835713387,-0.915911197662354,0.3067686855793,-0.104537360370159,-0.946025907993317,0.161975994706154,-0.000161811694852076,-0.986794650554657,0.212118029594421,-0.0329457372426987,-0.976688623428345,0.171310573816299,0.0173934325575829,-0.98506361246109,0.0412109829485416,0.0620855987071991,-0.997219741344452,0.0780829563736916,0.0504778064787388,-0.995668113231659,0.228190273046494,-0.00217744708061218,-0.973614156246185,-0.0650135055184364,0.168793380260468,-0.983505010604858,-0.0533828921616077,0.16725979745388,-0.98446661233902,0.0155224148184061,0.160539358854294,-0.986907482147217,-0.000877730431966484,0.162641391158104,-0.986684858798981,0.0131040448322892,0.14249561727047,-0.989708781242371,0.126228034496307,0.122183799743652,-0.98444789648056,0.0986347198486328,0.127117618918419,-0.986971378326416,-0.00337687879800797,0.145060002803802,-0.989417135715485, +0.0895765349268913,0.0931491255760193,-0.991614580154419,0.0512014627456665,0.0979127585887909,-0.993876993656158,-0.0337768159806728,0.110765442252159,-0.993272542953491,-0.00850070081651211,0.108843594789505,-0.994022607803345,0.599794328212738,-0.306367099285126,-0.739179253578186,0.492507219314575,-0.109488159418106,-0.863393902778625,0.517620027065277,-0.149358049035072,-0.84247350692749,0.618438184261322,-0.346064269542694,-0.705530881881714,0.568884134292603,-0.089466854929924,-0.817536950111389,0.587693929672241,-0.124910458922386,-0.799383044242859,0.687778115272522,-0.335607379674911,-0.643683910369873,0.677061557769775,-0.304337054491043,-0.670049786567688,0.664352595806122,-0.353345483541489,-0.658621728420258,0.671027064323425,-0.535177290439606,-0.513135373592377,0.672232329845428,-0.505566000938416,-0.540838956832886,0.658885598182678,-0.317823648452759,-0.681804895401001,0.408262193202972,-0.11369489133358,-0.905756890773773,0.444152116775513,-0.162086203694344,-0.881168007850647,0.544663965702057,-0.340848684310913,-0.766265869140625,0.513040959835052,-0.287290930747986,-0.80885899066925,0.513484477996826,-0.358927071094513,-0.779426217079163,0.543362379074097,-0.511333703994751,-0.665804266929626,0.524887561798096,-0.452881067991257,-0.72068840265274,0.486624419689178,-0.302326887845993,-0.819631218910217,0.458363473415375,-0.468289315700531,-0.755386173725128,0.437339037656784,-0.388297587633133,-0.811147153377533,0.3994460105896,-0.253572195768356,-0.880990445613861,0.428637623786926,-0.333320766687393,-0.839742243289948,0.380069315433502,0.037346750497818,-0.924203813076019,0.582183182239532,-0.131586074829102,-0.80233895778656,0.555384814739227,-0.105747252702713,-0.824842512607574,0.353649914264679,0.0600094571709633,-0.933450996875763,0.520226359367371,-0.146433770656586,-0.841380834579468,0.486466944217682,-0.116253659129143,-0.865930199623108,0.298187226057053,0.03410504758358,-0.953897953033447,0.328795462846756,0.00911474134773016,-0.944357216358185,0.306309312582016,0.050559975206852,-0.950588405132294, +0.125035032629967,0.117563396692276,-0.985162496566772,0.147074744105339,0.108159765601158,-0.98319411277771,0.341836661100388,0.035543330013752,-0.93908703327179,0.453065395355225,0.0833985880017281,-0.887567818164825,0.666539907455444,-0.0988254398107529,-0.738889753818512,0.653162598609924,-0.0824903696775436,-0.752711057662964,0.437003791332245,0.0993349254131317,-0.893957734107971,0.624967455863953,-0.120328366756439,-0.771321475505829,0.60734486579895,-0.100513711571693,-0.788054049015045,0.398238480091095,0.0758172124624252,-0.914143264293671,0.417928785085678,0.0569429770112038,-0.906693577766418,0.406721442937851,0.0943020880222321,-0.908672094345093,0.186510860919952,0.180001512169838,-0.965822637081146,0.203001469373703,0.17064793407917,-0.964193820953369,0.42926687002182,0.0818951055407524,-0.899457216262817,0.771620869636536,-0.311546862125397,-0.55456268787384,0.772276282310486,-0.505100965499878,-0.385308384895325,0.777480840682983,-0.488395094871521,-0.396224498748779,0.772327721118927,-0.289229720830917,-0.56555837392807,0.74775904417038,-0.509024679660797,-0.426321893930435,0.749074876308441,-0.492607563734055,-0.442972660064697,0.739404678344727,-0.292908698320389,-0.606205582618713,0.743133246898651,-0.316807448863983,-0.589394569396973,0.732996344566345,-0.298508077859879,-0.611235916614532,0.624482214450836,-0.0784248188138008,-0.777091681957245,0.637352168560028,-0.104010984301567,-0.763520836830139,0.739133358001709,-0.320418745279312,-0.59246414899826,0.51109790802002,0.125803619623184,-0.85026615858078,0.726786077022552,-0.0518999025225639,-0.684900283813477,0.721075356006622,-0.043052326887846,-0.691517770290375,0.496105790138245,0.139881312847137,-0.85692024230957,0.701414167881012,-0.0754429697990417,-0.708750009536743,0.691099107265472,-0.0624188557267189,-0.72005969285965,0.469074487686157,0.121583640575409,-0.874749541282654,0.483589559793472,0.107567727565765,-0.868660151958466,0.476816475391388,0.140760913491249,-0.867659151554108,0.235222414135933,0.235500186681747,-0.942979454994202, +0.250127583742142,0.226444989442825,-0.941360175609589,0.492559969425201,0.130570158362389,-0.860427856445313,0.835127353668213,-0.268176347017288,-0.480253964662552,0.843101024627686,-0.43680614233017,-0.31365755200386,0.845047831535339,-0.442458093166351,-0.300208568572998,0.835073590278625,-0.252498745918274,-0.488770633935928,0.831838846206665,-0.456123799085617,-0.316220194101334,0.830742955207825,-0.455449223518372,-0.32005050778389,0.820359230041504,-0.25865250825882,-0.510009586811066,0.823765635490417,-0.266669422388077,-0.500297546386719,0.814751029014587,-0.265177994966507,-0.515617668628693,0.702256858348846,-0.0450046844780445,-0.71049976348877,0.710631132125854,-0.0605237185955048,-0.700956761837006,0.816859483718872,-0.275039732456207,-0.507044196128845,0.857001662254333,-0.220799937844276,-0.465613007545471,0.887643933296204,-0.361808151006699,-0.284926533699036,0.887068629264832,-0.360618710517883,-0.288207173347473,0.859872698783875,-0.23347195982933,-0.453993111848831,0.888612031936646,-0.358375579118729,-0.286243945360184,0.890656709671021,-0.376987546682358,-0.254187345504761,0.863619446754456,-0.226556211709976,-0.450370907783508,0.864659249782562,-0.225720673799515,-0.448792457580566,0.862092137336731,-0.228923141956329,-0.45209664106369,0.743672251701355,-0.0175686199218035,-0.668313562870026,0.729441404342651,-0.0115261375904083,-0.683946192264557,0.862059414386749,-0.229952961206436,-0.451636105775833,0.778130829334259,-0.366054862737656,-0.510408103466034,0.782680690288544,-0.347418367862701,-0.516441106796265,0.789643704891205,-0.334716856479645,-0.514225125312805,0.780923843383789,-0.343439668416977,-0.521734714508057,0.812071144580841,-0.304299086332321,-0.497938394546509,0.859414935112,-0.391823947429657,-0.328451037406921,0.850239992141724,-0.410789519548416,-0.329156637191772,0.801833212375641,-0.315238296985626,-0.507630288600922,0.86911404132843,-0.38367223739624,-0.312148362398148,0.86712634563446,-0.391545832157135,-0.307870030403137,0.824891924858093,-0.269881129264832,-0.49670672416687, +0.829673767089844,-0.274227052927017,-0.486252009868622,0.532329976558685,0.2066271007061,-0.820932507514954,0.312514930963516,0.267292141914368,-0.911531269550323,0.365776658058167,0.24185773730278,-0.898728132247925,0.507854044437408,0.199505388736725,-0.838022708892822,0.375629812479019,0.331429749727249,-0.865480542182922,0.403194278478622,0.297900319099426,-0.865268647670746,0.497161746025085,0.237048596143723,-0.834648549556732,0.51793098449707,0.25114718079567,-0.817724168300629,0.484018802642822,0.183825194835663,-0.855531573295593,0.826560080051422,-0.0231442544609308,-0.562372446060181,0.750937223434448,0.0419863164424896,-0.659037530422211,0.505475342273712,0.188313990831375,-0.842040657997131,0.132833108305931,0.319502949714661,-0.938228785991669,0.013498967513442,0.332339376211166,-0.943063259124756,0.0362516716122627,0.328263998031616,-0.943890154361725,0.182533726096153,0.311494916677475,-0.932551503181458,0.0368052273988724,0.368115544319153,-0.929051339626312,0.0658478885889053,0.353873759508133,-0.932972431182861,0.219172209501266,0.337123990058899,-0.915593326091766,0.184790149331093,0.351586878299713,-0.917735934257507,0.218905866146088,0.332419902086258,-0.917375206947327,0.40381646156311,0.301412463188171,-0.863760828971863,0.372649013996124,0.301127523183823,-0.877755641937256,0.18324813246727,0.323623090982437,-0.928271591663361,0.650574922561646,-0.453496843576431,-0.609174013137817,0.651368677616119,-0.477948784828186,-0.589308023452759,0.599309086799622,-0.355734944343567,-0.717134058475494,0.64505273103714,-0.423150688409805,-0.636278688907623,0.73125809431076,-0.240978181362152,-0.638115286827087,0.856309831142426,-0.204752206802368,-0.474141508340836,0.782915353775024,-0.410190165042877,-0.467747360467911,0.642753601074219,-0.425104230642319,-0.637302339076996,0.816286206245422,-0.377471566200256,-0.437255054712296,0.812751412391663,-0.451403319835663,-0.368334293365479,0.774498462677002,-0.35399866104126,-0.524249076843262,0.77294647693634,-0.295615911483765,-0.561395645141602,0.182920530438423,-0.171537101268768,-0.968047142028809, +0.0547379814088345,-0.435519278049469,-0.898513674736023,0.327034115791321,-0.518882036209106,-0.789816558361053,0.479022890329361,-0.306722074747086,-0.822471022605896,0.230670362710953,0.257431268692017,-0.938360452651978,0.247601002454758,0.420622885227203,-0.872794508934021,0.234228074550629,0.398012071847916,-0.886974453926086,0.224162876605988,0.13191631436348,-0.965582251548767,0.234405860304832,0.397981852293015,-0.886941015720367,0.261622816324234,0.341580420732498,-0.902705013751984,0.272618025541306,0.0162303596735001,-0.961985528469086,0.24166339635849,0.131462916731834,-0.9614138007164,0.118931144475937,0.0296415518969297,-0.992460012435913,0.0310269650071859,-0.436545819044113,-0.899146974086761,0.141489520668983,-0.178591579198837,-0.973697066307068,0.293080389499664,0.12986858189106,-0.947226524353027,0.257220476865768,0.260419636964798,-0.930601596832275,0.24198491871357,0.266831368207932,-0.932868897914886,0.083724319934845,0.29901260137558,-0.950569212436676,0.0959362089633942,0.293634235858917,-0.951091587543488,0.0847084298729897,0.307681024074554,-0.947711408138275,-0.00796545669436455,0.318863809108734,-0.94776713848114,0.00220971857197583,0.314610809087753,-0.949218273162842,0.0969692319631577,0.303043782711029,-0.948030292987823,0.00317824445664883,0.331374794244766,-0.943493843078613,0.0132087897509336,0.327120065689087,-0.944890558719635,0.132220447063446,0.312968462705612,-0.940515041351318,0.0988000258803368,0.319863945245743,-0.942298054695129,0.0544189773499966,0.260922878980637,-0.96382462978363,-0.0292163118720055,0.270971238613129,-0.962143957614899,-0.0206601768732071,0.267049580812454,-0.963461339473724,0.0660818740725517,0.256584972143173,-0.964260101318359,-0.01873436011374,0.298970639705658,-0.954078495502472,-0.00938037596642971,0.295019268989563,-0.955445230007172,0.0820208415389061,0.284093767404556,-0.955281853675842,0.0698521435260773,0.288468897342682,-0.954937934875488,0.0805924609303474,0.271665841341019,-0.959011256694794,0.236071363091469,0.239381209015846,-0.941789329051971, +0.2204629778862,0.246101498603821,-0.943838059902191,0.0685394406318665,0.277329355478287,-0.958327054977417,-0.052396047860384,0.377135694026947,-0.92467474937439,-0.111581832170486,0.380659550428391,-0.917958617210388,-0.0981832593679428,0.376353353261948,-0.921259045600891,-0.0325469560921192,0.372681081295013,-0.927388608455658,-0.0993673875927925,0.412592440843582,-0.905479848384857,-0.077993705868721,0.404877126216888,-0.911038756370544,-0.0104636065661907,0.399780958890915,-0.916551053524017,-0.0327434279024601,0.407812565565109,-0.912478446960449,-0.00898704025894403,0.366937428712845,-0.93020224571228,0.0652666911482811,0.370906800031662,-0.926373898983002,0.0368079729378223,0.368324100971222,-0.928968548774719,-0.0324934422969818,0.364275187253952,-0.930724382400513,-0.0719238519668579,0.369927585124969,-0.926272451877594,-0.131015211343765,0.37332421541214,-0.918402969837189,-0.120361983776093,0.368742316961288,-0.921706140041351,-0.0627879798412323,0.365177750587463,-0.928818106651306,-0.12035608291626,0.381977558135986,-0.916301131248474,-0.111547529697418,0.377565562725067,-0.919239640235901,-0.0524750761687756,0.374122023582458,-0.925893723964691,-0.0624259151518345,0.378612339496613,-0.923447728157043,-0.0530475080013275,0.351498693227768,-0.934684216976166,0.0142454281449318,0.345752865076065,-0.938217461109161,0.00426581688225269,0.35009554028511,-0.936704337596893,-0.0630339607596397,0.355713903903961,-0.932466924190521,-0.164616495370865,0.406362444162369,-0.898760795593262,-0.111807562410831,0.404800891876221,-0.90754359960556,-0.120265111327171,0.409227967262268,-0.904471635818481,-0.187121838331223,0.409628480672836,-0.892854988574982,-0.120321527123451,0.396338552236557,-0.910186052322388,-0.130955547094345,0.40095853805542,-0.90668785572052,-0.200775563716888,0.401092201471329,-0.893764138221741,-0.186812967061996,0.396897226572037,-0.898650944232941,-0.201254516839981,0.421512097120285,-0.884208261966705,-0.30240061879158,0.43245142698288,-0.849434971809387,-0.285127848386765,0.46123132109642,-0.840218901634216, +-0.18784573674202,0.448539316654205,-0.873800098896027,-0.166729941964149,0.457897543907166,-0.873230159282684,-0.239725053310394,0.447725266218185,-0.861437261104584,-0.200177147984505,0.452645003795624,-0.868931233882904,-0.152961239218712,0.457949370145798,-0.875719845294952,-0.205684915184975,0.535085022449493,-0.819376528263092,-0.20929054915905,0.523372173309326,-0.826001882553101,-0.150585919618607,0.517500936985016,-0.842328190803528,-0.155995979905128,0.528338849544525,-0.834579706192017,-0.147059291601181,0.404937326908112,-0.90244072675705,-0.0784818902611732,0.414175510406494,-0.90680730342865,-0.0992753356695175,0.409619718790054,-0.906838536262512,-0.149977132678032,0.40246769785881,-0.903065145015717,0.0202250722795725,0.19558273255825,-0.980478644371033,-0.0509658977389336,0.203135162591934,-0.977823495864868,-0.0420638434588909,0.200827330350876,-0.978723227977753,0.0333712473511696,0.192776396870613,-0.980675101280212,-0.0397867523133755,0.236488923430443,-0.970819294452667,-0.0315221957862377,0.233532294631004,-0.971838057041168,0.0499434843659401,0.224417045712471,-0.973212599754333,0.0378540754318237,0.227831184864044,-0.972964584827423,0.0483069829642773,0.21113333106041,-0.976262867450714,0.187495455145836,0.184097617864609,-0.964859306812286,0.167450398206711,0.189886763691902,-0.967421054840088,0.0362312458455563,0.215130656957626,-0.975912928581238,-0.0889429450035095,0.325307190418243,-0.941416203975677,-0.14827498793602,0.328811675310135,-0.932682931423187,-0.140232622623444,0.323824375867844,-0.935666978359222,-0.0816058143973351,0.320202380418777,-0.943827867507935,-0.140378937125206,0.355366259813309,-0.924125850200653,-0.130976408720016,0.350513339042664,-0.927354097366333,-0.0725446715950966,0.346884280443192,-0.935098171234131,-0.080776110291481,0.351870149374008,-0.932557106018066,-0.0731605887413025,0.321969270706177,-0.943919122219086,-0.00812365207821131,0.316211938858032,-0.948653757572174,-0.0173941589891911,0.320790559053421,-0.946990489959717,-0.0814512744545937,0.326405644416809,-0.941713988780975, +-0.360133558511734,0.534853577613831,-0.764353036880493,-0.493947625160217,0.483575046062469,-0.722613930702209,-0.360801815986633,0.534651696681976,-0.764179110527039,-0.28714182972908,0.554892599582672,-0.780796945095062,-0.360051155090332,0.514299392700195,-0.778369784355164,-0.340062320232391,0.497068524360657,-0.798298597335815,-0.285445988178253,0.482045233249664,-0.828343570232391,-0.283482313156128,0.505818605422974,-0.814730226993561,-0.284658491611481,0.431272387504578,-0.856138825416565,-0.207685276865959,0.39176806807518,-0.896317303180695,-0.199350595474243,0.441948980093002,-0.874608755111694,-0.28106302022934,0.478328794240952,-0.83198869228363,-0.286367863416672,0.492774456739426,-0.821685373783112,-0.303899258375168,0.462396383285522,-0.832967579364777,-0.461430668830872,0.448419749736786,-0.765507400035858,-0.431244671344757,0.485467731952667,-0.76049268245697,-0.463799059391022,0.479378372430801,-0.74504154920578,-0.695869445800781,0.381134897470474,-0.608688712120056,-0.554323792457581,0.468103349208832,-0.688189208507538,-0.432208895683289,0.500971794128418,-0.749815106391907,-0.554838120937347,0.473980844020844,-0.683737456798553,-0.497182428836823,0.52602207660675,-0.690007627010345,-0.360821515321732,0.544050991535187,-0.757506668567657,-0.431863009929657,0.4951411485672,-0.753876388072968,-0.56752872467041,0.61689817905426,-0.545296013355255,-0.670549392700195,0.627105832099915,-0.396360814571381,-0.457260072231293,0.647693276405334,-0.609431385993958,-0.415469586849213,0.593240261077881,-0.689529657363892,-0.47537562251091,0.581177890300751,-0.660492599010468,-0.407545149326324,0.568860173225403,-0.714356482028961,-0.373086422681808,0.546889662742615,-0.749478697776794,-0.417888075113297,0.567043840885162,-0.709810554981232,-0.370718061923981,0.57227635383606,-0.731483340263367,-0.337546229362488,0.565038859844208,-0.752857089042664,-0.361631214618683,0.5738924741745,-0.734758675098419,-0.417255580425262,0.574461877346039,-0.704195499420166,-0.221215724945068,0.369062304496765,-0.902694165706635, +-0.324748396873474,0.378187835216522,-0.86689817905426,-0.315664649009705,0.405079543590546,-0.858059644699097,-0.212456956505775,0.395227402448654,-0.893676340579987,-0.315852493047714,0.408089458942413,-0.856562972068787,-0.302492916584015,0.434124261140823,-0.848548293113708,-0.201326817274094,0.425014495849609,-0.882513642311096,-0.212591022253036,0.400381088256836,-0.891347348690033,-0.200173079967499,0.379769176244736,-0.903164505958557,-0.131012588739395,0.37901896238327,-0.916067838668823,-0.140372768044472,0.384389847517014,-0.912436366081238,-0.21216481924057,0.384758412837982,-0.898302316665649,-0.316817730665207,0.42449027299881,-0.848195016384125,-0.325889855623245,0.395890563726425,-0.858525693416595,-0.479027986526489,0.38146561384201,-0.790579736232758,-0.473896503448486,0.410180568695068,-0.779213726520538,-0.481926530599594,0.410969883203506,-0.773854434490204,-0.700106859207153,0.329489171504974,-0.633472383022308,-0.694914937019348,0.356551885604858,-0.624470949172974,-0.476404994726181,0.4364353120327,-0.763257741928101,-0.695686519145966,0.362343728542328,-0.620263993740082,-0.696015238761902,0.382372140884399,-0.607745230197906,-0.463470965623856,0.474580258131027,-0.748310327529907,-0.477536499500275,0.449998438358307,-0.754625976085663,-0.450883686542511,0.556867241859436,-0.697569251060486,-0.410067915916443,0.555118143558502,-0.723663032054901,-0.481464624404907,0.554209589958191,-0.679001867771149,-0.547615826129913,0.557392418384552,-0.624043881893158,-0.464997500181198,0.62134838104248,-0.630637407302856,-0.717055678367615,0.495549499988556,-0.490165233612061,-0.759048283100128,0.422738611698151,-0.495114088058472,-0.56662380695343,0.515399515628815,-0.642884790897369,-0.888917446136475,0.370711714029312,0.269069880247116,-0.89552891254425,0.341952711343765,0.284774214029312,-0.897093653678894,0.339558690786362,0.282706588506699,-0.890580356121063,0.368031144142151,0.267244666814804,-0.698612749576569,0.624400794506073,-0.349376648664474,-0.677664339542389,0.591355383396149,-0.437115430831909, +-0.732767462730408,0.602910935878754,-0.31551605463028,-0.745165646076202,0.634747564792633,-0.204508632421494,-0.743113100528717,0.637263476848602,-0.204152509570122,-0.739578008651733,0.593683183193207,-0.317119359970093,-0.810860514640808,0.548119604587555,-0.205110102891922,-0.810585081577301,0.583600521087646,-0.0486051104962826,-0.430201470851898,0.604407966136932,-0.670535385608673,-0.418001562356949,0.575387418270111,-0.702996492385864,-0.369987368583679,0.542068898677826,-0.754500389099121,-0.364665299654007,0.558970868587494,-0.744695067405701,-0.376635402441025,0.536210060119629,-0.755396962165833,-0.363640189170837,0.487891018390656,-0.793554186820984,-0.384886682033539,0.463968902826309,-0.797869086265564,-0.407160848379135,0.515600025653839,-0.753907680511475,-0.387474834918976,0.460494190454483,-0.798629105091095,-0.409368515014648,0.462019413709641,-0.786737203598022,-0.470603972673416,0.499749541282654,-0.72717422246933,-0.428759634494781,0.492159157991409,-0.757591247558594,-0.534399747848511,0.685815036296844,-0.494039177894592,-0.479787021875381,0.642722606658936,-0.597253739833832,-0.479168474674225,0.601762413978577,-0.638967573642731,-0.53445428609848,0.637357234954834,-0.555098533630371,-0.368684142827988,0.674593269824982,-0.639527916908264,-0.421411395072937,0.5728919506073,-0.702998757362366,-0.513382732868195,0.532544732093811,-0.672929704189301,-0.489957571029663,0.671636700630188,-0.555739045143127,-0.492533206939697,0.551687359809875,-0.673091471195221,-0.555076539516449,0.567319869995117,-0.608307659626007,-0.603683352470398,0.668588876724243,-0.434229731559753,-0.523952662944794,0.645749032497406,-0.555411458015442,-0.252701193094254,0.59148371219635,-0.765695214271545,-0.176101610064507,0.566617131233215,-0.804943025112152,-0.190052270889282,0.505638480186462,-0.841552078723907,-0.2711421251297,0.535736799240112,-0.799667477607727,-0.140055313706398,0.536513149738312,-0.832188844680786,-0.142112538218498,0.514804482460022,-0.845446884632111,-0.209155142307281,0.559329926967621,-0.802124798297882, +-0.204687610268593,0.581278324127197,-0.787539482116699,-0.265558123588562,0.514352202415466,-0.815426707267761,-0.347842067480087,0.504830539226532,-0.790033042430878,-0.333998709917068,0.572619318962097,-0.748700201511383,-0.232933551073074,0.562506139278412,-0.793302476406097,-0.321212261915207,0.659195780754089,-0.679914534091949,-0.294467687606812,0.610736727714539,-0.735043823719025,-0.271875709295273,0.58368194103241,-0.765113651752472,-0.299948245286942,0.632343173027039,-0.714264094829559,-0.189515680074692,0.627229034900665,-0.755425333976746,-0.140259653329849,0.585016250610352,-0.798801124095917,-0.155649855732918,0.642752647399902,-0.750094890594482,-0.203900709748268,0.681392669677734,-0.702942728996277,-0.252953141927719,0.591338813304901,-0.765724062919617,-0.333568751811981,0.632408499717712,-0.699136197566986,-0.3224056661129,0.700570642948151,-0.63659679889679,-0.243164032697678,0.662457227706909,-0.708534896373749,-0.0791107267141342,0.555186152458191,-0.827955186367035,-0.00576180219650269,0.516725659370422,-0.856131732463837,-0.0189061630517244,0.460282832384109,-0.887571096420288,-0.0928902477025986,0.499499499797821,-0.861319780349731,0.0908281952142715,0.514053881168365,-0.852935492992401,0.0550060495734215,0.485719859600067,-0.87238222360611,-0.0268737375736237,0.519431233406067,-0.854089617729187,0.00808285176753998,0.551790416240692,-0.833943724632263,-0.0582838207483292,0.501699566841125,-0.863076269626617,-0.140289515256882,0.516020059585571,-0.845010161399841,-0.102802842855453,0.558101236820221,-0.823379993438721,-0.019193023443222,0.538404583930969,-0.842467904090881,-0.225761473178864,0.608850836753845,-0.760481774806976,-0.244622275233269,0.63808935880661,-0.730069816112518,-0.218757748603821,0.598103940486908,-0.770984351634979,-0.196669787168503,0.566714465618134,-0.800097286701202,-0.160241261124611,0.627810835838318,-0.761693000793457,-0.143043220043182,0.587320387363434,-0.796613752841949,-0.123115211725235,0.545667231082916,-0.828908860683441,-0.146295487880707,0.59233283996582,-0.79230010509491, +-0.0389047861099243,0.585220813751221,-0.809940218925476,-0.0124450922012329,0.513665795326233,-0.857900142669678,-0.0606482028961182,0.563774108886719,-0.823699355125427,-0.0810972526669502,0.622320950031281,-0.778549790382385,0.000593796372413635,0.472906231880188,-0.881112635135651,0.00420346856117249,0.462647616863251,-0.886532306671143,0.0283183343708515,0.416502267122269,-0.908693671226501,0.0194551926106215,0.436306476593018,-0.899587750434875,0.169133603572845,0.475935757160187,-0.863063812255859,0.196466416120529,0.431876361370087,-0.880274832248688,0.161277383565903,0.487904638051987,-0.857868790626526,0.154545977711678,0.498814284801483,-0.852818846702576,0.180025070905685,0.496518522500992,-0.849152743816376,0.183441549539566,0.546428382396698,-0.817169070243835,0.150075644254684,0.539895534515381,-0.828245282173157,0.14334899187088,0.494033545255661,-0.857544183731079,0.000282794266240671,0.513826608657837,-0.857894062995911,0.00271151983179152,0.46198633313179,-0.886883020401001,0.0196315050125122,0.481620877981186,-0.87615978717804,0.00534307956695557,0.552942872047424,-0.833202004432678,0.0621517971158028,0.500293552875519,-0.863622307777405,0.0298385322093964,0.532524585723877,-0.845888495445251,-0.0198177695274353,0.593432128429413,-0.804640054702759,0.0147118289023638,0.557030141353607,-0.83036208152771,-0.128964468836784,0.542716264724731,-0.82995617389679,-0.16551162302494,0.575887560844421,-0.80059939622879,-0.129876390099525,0.544107675552368,-0.828902363777161,-0.0897920951247215,0.50792270898819,-0.856709957122803,0.0563023164868355,0.462965309619904,-0.88458639383316,0.0835919976234436,0.433811753988266,-0.897117495536804,0.0492728501558304,0.472311854362488,-0.880053281784058,0.0258659720420837,0.495580345392227,-0.868176937103271,0.143077328801155,0.513503015041351,-0.846075475215912,0.256768256425858,0.555685222148895,-0.790749132633209,0.112436324357986,0.562836110591888,-0.818885624408722,0.0099451094865799,0.487267643213272,-0.873196065425873,-0.0122351199388504,0.507830798625946,-0.861369967460632, +-0.0313361585140228,0.54169625043869,-0.839990019798279,-0.00645320024341345,0.499727308750153,-0.866158723831177,0.00121952593326569,0.48264068365097,-0.875817656517029,0.268087714910507,0.364124655723572,-0.891931712627411,0.318969577550888,0.295120984315872,-0.900645434856415,0.260795474052429,0.376485288143158,-0.88895708322525,0.218926310539246,0.425111055374146,-0.878266334533691,0.247586086392403,0.370293200016022,-0.895312309265137,0.210153877735138,0.438240319490433,-0.873945593833923,0.185179427266121,0.482042849063873,-0.856354713439941,0.218481451272964,0.424957752227783,-0.878451347351074,0.141403302550316,0.465054452419281,-0.873916268348694,0.0712329521775246,0.491032004356384,-0.868224382400513,0.144831940531731,0.457615822553635,-0.877275109291077,0.211259126663208,0.422456026077271,-0.881419658660889,0.175589427351952,0.0105067687109113,-0.984407484531403,0.163332208991051,-0.112760826945305,-0.980105876922607,0.155794382095337,0.062434583902359,-0.985814452171326,0.14338655769825,0.204121172428131,-0.968387842178345,0.178002029657364,0.0720532983541489,-0.981388688087463,0.210763230919838,0.244003817439079,-0.946594476699829,0.259765833616257,0.361598819494247,-0.895415067672729,0.218778192996979,0.22830405831337,-0.948690414428711,0.115641601383686,0.401016861200333,-0.908742249011993,0.118176929652691,0.403619557619095,-0.907262623310089,0.116292044520378,0.430226922035217,-0.895198822021484,0.126783847808838,0.354860335588455,-0.92628288269043,0.146537482738495,0.431872636079788,-0.889951050281525,0.156755298376083,0.427812069654465,-0.89017117023468,0.152247428894043,0.255704373121262,-0.954691648483276,0.141938596963882,0.356378525495529,-0.92349761724472,0.160525411367416,0.082259476184845,-0.983597993850708,0.167892843484879,0.00827611237764359,-0.985770523548126,0.122199445962906,0.1971375644207,-0.972730278968811,0.125963032245636,0.285685956478119,-0.950008928775787,0.201662868261337,0.42217355966568,-0.88379955291748,0.214424058794975,0.40989750623703,-0.886569976806641,0.18036100268364,0.468903839588165,-0.864638209342957, +0.171624973416328,0.466120779514313,-0.867914974689484,0.164966106414795,0.464091032743454,-0.870290577411652,0.184057861566544,0.532857596874237,-0.825945258140564,0.231470063328743,0.547386288642883,-0.804232537746429,0.211643412709236,0.480599403381348,-0.851017773151398,0.0664047002792358,0.480226159095764,-0.874627590179443,0.111838176846504,0.450031638145447,-0.885981917381287,0.157361656427383,0.418231189250946,-0.894606053829193,0.115586787462234,0.444445967674255,-0.888317227363586,0.0939367115497589,0.400052785873413,-0.911665320396423,0.116635642945766,0.375803411006927,-0.919330239295959,0.0926059037446976,0.401572406291962,-0.911133289337158,0.0695766806602478,0.425957560539246,-0.902063965797424,0.102970480918884,0.408442944288254,-0.906957268714905,0.080079659819603,0.431762993335724,-0.898425340652466,0.0523483753204346,0.46053409576416,-0.886097073554993,0.0793390572071075,0.432668119668961,-0.898055553436279,0.0499014854431152,0.459024429321289,-0.887021124362946,0.0380903631448746,0.470922827720642,-0.881351709365845,0.0660903304815292,0.439668625593185,-0.895725190639496,0.0758802220225334,0.430297255516052,-0.89949232339859,0.447953909635544,-0.143896222114563,-0.882400870323181,0.563888609409332,-0.224755063652992,-0.794679164886475,0.499872148036957,-0.0849564373493195,-0.861922383308411,0.426510334014893,-0.0598617419600487,-0.902499675750732,0.158228307962418,0.265999585390091,-0.95089852809906,0.173798188567162,0.254276007413864,-0.951387405395508,0.126465186476707,0.337562769651413,-0.932769060134888,0.121167398989201,0.343041777610779,-0.931472480297089,0.24006412923336,0.0754431933164597,-0.96782112121582,0.279733657836914,0.0500333607196808,-0.958773076534271,0.207181319594383,0.139830753207207,-0.968257904052734,0.180941075086594,0.158955827355385,-0.970563411712646,0.182748675346375,0.41590416431427,-0.89085727930069,0.207145974040031,0.405118346214294,-0.890488505363464,0.202544540166855,0.377973198890686,-0.903389096260071,0.168576911091805,0.407333493232727,-0.897586464881897,0.186787769198418,0.370648294687271,-0.909796833992004, +0.190675616264343,0.284343838691711,-0.939569771289825,0.122787080705166,0.343644708395004,-0.931038022041321,0.134651273488998,0.396698653697968,-0.908019363880157,0.16242253780365,0.358102291822433,-0.919446408748627,0.125417172908783,0.405059099197388,-0.905647695064545,0.146485105156898,0.406808137893677,-0.901692569255829,0.167900517582893,0.407126247882843,-0.897807240486145,0.362413197755814,-0.0508516132831573,-0.930629253387451,0.422517955303192,-0.0808615162968636,-0.902740359306335,0.373725146055222,-0.00401632487773895,-0.927530825138092,0.319396913051605,0.0219404865056276,-0.947367072105408,0.113198444247246,0.306743144989014,-0.945036947727203,0.1603624522686,0.269599229097366,-0.949526250362396,0.184700101613998,0.212369948625565,-0.959575355052948,0.128749549388885,0.262268602848053,-0.956367492675781,0.177368953824043,0.206698775291443,-0.962193310260773,0.250101238489151,0.0845953375101089,-0.964517056941986,0.178603306412697,0.157169684767723,-0.97128701210022,0.119075804948807,0.255957782268524,-0.959326088428497,0.203587561845779,0.176248624920845,-0.963062047958374,0.128330111503601,0.248861789703369,-0.959999680519104,0.103352226316929,0.330272763967514,-0.938210189342499,0.163639798760414,0.284817427396774,-0.94451105594635,0.707741856575012,-0.334504902362823,0.622260391712189,0.666392087936401,-0.379895597696304,0.641561388969421,0.693672835826874,-0.379756808280945,0.612048149108887,0.799080491065979,-0.284983992576599,0.529390871524811,0.135969445109367,0.324350595474243,-0.936113834381104,0.163550511002541,0.271933287382126,-0.948316216468811,0.121581137180328,0.312001168727875,-0.942270338535309,0.102279491722584,0.352309852838516,-0.930277705192566,0.163915157318115,0.338171273469925,-0.92669951915741,0.144181087613106,0.375167310237885,-0.915675282478333,0.122458085417747,0.400175988674164,-0.908219873905182,0.135906144976616,0.373404949903488,-0.917659223079681,0.115381196141243,0.396444499492645,-0.910779416561127,0.0804323703050613,0.43196901679039,-0.898294746875763,0.105436161160469,0.410068809986115,-0.905939817428589, +0.138887912034988,0.375251293182373,-0.91645872592926,0.114754714071751,0.323157578706741,-0.939361810684204,0.139422968029976,0.294114351272583,-0.945546388626099,0.113603748381138,0.324341922998428,-0.939093470573425,0.0911804884672165,0.351125508546829,-0.931878268718719,0.124196514487267,0.333089083433151,-0.934680104255676,0.098567396402359,0.362306535243988,-0.926832497119904,0.0769279226660728,0.387169927358627,-0.918793559074402,0.101228632032871,0.359432488679886,-0.927664399147034,0.0831123515963554,0.391873419284821,-0.916257381439209,0.078937716782093,0.405569493770599,-0.910649418830872,0.0972996056079865,0.376517713069916,-0.921285629272461,0.103240355849266,0.36108934879303,-0.926798760890961,0.16833122074604,0.200795769691467,-0.96506255865097,0.21435783803463,0.158417522907257,-0.963822960853577,0.262313216924667,0.0923914760351181,-0.960549712181091,0.211730659008026,0.14246641099453,-0.966888546943665,0.261689484119415,0.0918024182319641,-0.960776209831238,0.369930356740952,-0.0427879728376865,-0.928073763847351,0.315502494573593,0.0179656613618135,-0.948754727840424,0.209275454282761,0.140330374240875,-0.967735052108765,0.31112876534462,0.0135134775191545,-0.950271725654602,0.246557712554932,0.0813610479235649,-0.965706825256348,0.161166846752167,0.194142520427704,-0.96764349937439,0.216007769107819,0.146188631653786,-0.965385675430298,-0.466297179460526,-0.79454118013382,-0.388935953378677,-0.442862063646317,-0.800775766372681,-0.403275728225708,-0.422349631786346,-0.761279046535492,-0.492011189460754,-0.445810705423355,-0.755017459392548,-0.480834275484085,0.168510779738426,0.258127391338348,-0.951301455497742,0.199709206819534,0.217063903808594,-0.955510139465332,0.15734139084816,0.269493371248245,-0.950061559677124,0.132937788963318,0.302503079175949,-0.943832397460938,0.154855817556381,0.267191857099533,-0.951119422912598,0.136168032884598,0.291202217340469,-0.946921169757843,0.112076655030251,0.320780515670776,-0.940499186515808,0.12870916724205,0.298607558012009,-0.945657253265381,0.116745561361313,0.324922680854797,-0.938507258892059, +0.103810548782349,0.336790651082993,-0.935839414596558,0.125574097037315,0.316016525030136,-0.940406680107117,0.136859744787216,0.306110262870789,-0.942107260227203,0.169706284999847,0.229599669575691,-0.958375573158264,0.216885223984718,0.160676524043083,-0.962883114814758,0.170155614614487,0.20229871571064,-0.964428544044495,0.129847571253777,0.260939002037048,-0.95658266544342,0.183879911899567,0.213592872023582,-0.959461450576782,0.138747781515121,0.253706455230713,-0.957278490066528,0.108968183398247,0.304658859968185,-0.946207702159882,0.147029832005501,0.274898618459702,-0.950164794921875,0.121021561324596,0.313483148813248,-0.941850423812866,0.0889360755681992,0.35504561662674,-0.930608928203583,0.11241452395916,0.32335689663887,-0.939576208591461,0.148825258016586,0.276352494955063,-0.949463248252869,0.245449841022491,0.120434835553169,-0.961899161338806,0.293714821338654,0.0655034929513931,-0.953646123409271,0.343173623085022,0.00453451322391629,-0.939261138439178,0.298542648553848,0.0582594871520996,-0.952616453170776,0.344508051872253,0.00589083135128021,-0.938764870166779,0.461240649223328,-0.129613772034645,-0.877756953239441,0.418656826019287,-0.0682513415813446,-0.905576229095459,0.301527142524719,0.0611365810036659,-0.951495587825775,0.411107510328293,-0.0762479305267334,-0.908392548561096,0.376808702945709,-0.0353596955537796,-0.925615966320038,0.261048823595047,0.0911974757909775,-0.961008071899414,0.297983288764954,0.0577207282185555,-0.952824354171753,0.241672232747078,0.143150210380554,-0.959740877151489,0.298277169466019,0.0700423642992973,-0.951905965805054,0.247301340103149,0.122137382626534,-0.961209952831268,0.189843162894249,0.193283215165138,-0.96260130405426,0.249546706676483,0.124203041195869,-0.960364520549774,0.212818399071693,0.157041788101196,-0.964389085769653,0.161321729421616,0.222202345728874,-0.961562037467957,0.193832740187645,0.196930080652237,-0.961065828800201,0.165605157613754,0.225982785224915,-0.959951400756836,0.12366396188736,0.279982179403305,-0.952006936073303,0.150935083627701,0.263558268547058,-0.952762126922607, +0.198812589049339,0.201481252908707,-0.959103107452393,-0.105390265583992,0.254121124744415,-0.961413204669952,-0.162662163376808,0.257101595401764,-0.952596366405487,-0.154896646738052,0.252795487642288,-0.955040156841278,-0.0978372991085052,0.249726921319962,-0.963361024856567,-0.155293077230453,0.291679710149765,-0.943825840950012,-0.147937402129173,0.286914110183716,-0.946464359760284,-0.0899926573038101,0.283524960279465,-0.954732954502106,-0.0968720465898514,0.288384050130844,-0.952601969242096,-0.0904999747872353,0.260127872228622,-0.961323738098145,-0.0301811657845974,0.255441635847092,-0.966353356838226,-0.0383082814514637,0.259043037891388,-0.965105891227722,-0.0975097268819809,0.263617932796478,-0.959686160087585,-0.220123142004013,0.337203502655029,-0.915335774421692,-0.148228719830513,0.320181667804718,-0.935688018798828,-0.155327558517456,0.296968281269073,-0.942169427871704,-0.226733952760696,0.313843995332718,-0.922005355358124,-0.155211925506592,0.281321942806244,-0.946978032588959,-0.162670984864235,0.258423268795013,-0.952237129211426,-0.232320845127106,0.275316536426544,-0.932860016822815,-0.226109310984612,0.298254430294037,-0.927318155765533,-0.23277972638607,0.287571907043457,-0.929040372371674,-0.330261498689651,0.296300739049911,-0.896177113056183,-0.327112346887589,0.319537758827209,-0.889321804046631,-0.226632550358772,0.311211675405502,-0.922922015190125,-0.130901202559471,0.180904597043991,-0.974750518798828,-0.183025300502777,0.182555258274078,-0.966010093688965,-0.171243265271187,0.180293709039688,-0.968591749668121,-0.117243096232414,0.178565055131912,-0.976917922496796,-0.171570673584938,0.22483266890049,-0.959173500537872,-0.162308067083359,0.221178695559502,-0.961632072925568,-0.106343030929565,0.218477070331573,-0.970030426979065,-0.115911774337292,0.222215920686722,-0.968082904815674,-0.106817491352558,0.198234617710114,-0.974316775798798,-0.0515680685639381,0.194316238164902,-0.979582548141479,-0.0628872588276863,0.197045788168907,-0.978375315666199,-0.116594567894936,0.200826853513718,-0.972663521766663, +-0.328019767999649,0.331324368715286,-0.88466215133667,-0.331063330173492,0.307597875595093,-0.892065465450287,-0.47555473446846,0.294984996318817,-0.828753054141998,-0.477078855037689,0.317000478506088,-0.819699048995972,-0.478046536445618,0.317547619342804,-0.818923234939575,-0.69192361831665,0.246388748288155,-0.678626835346222,-0.694944083690643,0.265878945589066,-0.668102622032166,-0.479809910058975,0.339589804410934,-0.808987855911255,-0.699111223220825,0.291400074958801,-0.652939200401306,-0.698232412338257,0.316602855920792,-0.642054736614227,-0.480245292186737,0.393233060836792,-0.784048616886139,-0.482776999473572,0.367323756217957,-0.794984042644501,-0.248222321271896,0.203617438673973,-0.947061657905579,-0.336640626192093,0.197178855538368,-0.920757174491882,-0.32837387919426,0.19417068362236,-0.924374580383301,-0.237811118364334,0.200611293315887,-0.950368881225586,-0.33279550075531,0.249990150332451,-0.909259080886841,-0.328121900558472,0.268775016069412,-0.905591607093811,-0.231843411922455,0.263487875461578,-0.936388194561005,-0.23954963684082,0.244425341486931,-0.939612805843353,-0.231502592563629,0.255514323711395,-0.938679397106171,-0.162542119622231,0.242215424776077,-0.956510186195374,-0.171565845608711,0.223458096385002,-0.959495484828949,-0.23927628993988,0.236673533916473,-0.941664755344391,-0.515863656997681,-0.75508177280426,-0.404643386602402,-0.522027254104614,-0.742589592933655,-0.419581055641174,-0.521158516407013,-0.743520677089691,-0.419011861085892,-0.526536226272583,-0.733549952507019,-0.429725766181946,-0.376613259315491,-0.726386845111847,-0.57491272687912,-0.37508237361908,-0.730319321155548,-0.570917725563049,-0.361229121685028,-0.784885168075562,-0.503456950187683,-0.36150860786438,-0.783299326896667,-0.505720973014832,-0.380299091339111,-0.729678750038147,-0.568279564380646,-0.376185953617096,-0.727695345878601,-0.573536157608032,-0.358352720737457,-0.788621783256531,-0.49965888261795,-0.36358180642128,-0.785945355892181,-0.500098168849945,-0.514597415924072,-0.696808874607086,-0.499646872282028, +-0.494542628526688,-0.737792313098907,-0.459445506334305,-0.482594072818756,-0.755858540534973,-0.442471444606781,-0.5113525390625,-0.696224570274353,-0.503775656223297,-0.546447932720184,-0.709613978862762,-0.444795042276382,-0.537675499916077,-0.725314855575562,-0.429910987615585,-0.537375271320343,-0.722121179103851,-0.435624748468399,-0.551475763320923,-0.693461894989014,-0.463665008544922,-0.682341992855072,0.716234266757965,0.146348923444748,-0.714678466320038,0.686654984951019,0.133190542459488,-0.686917364597321,0.72640472650528,0.0219253581017256,-0.654151737689972,0.755651772022247,0.032804224640131,-0.730954587459564,0.65532374382019,-0.190410614013672,-0.810493111610413,0.583605349063873,-0.0500562116503716,-0.81888347864151,0.571882665157318,-0.0487871617078781,-0.748994112014771,0.638642251491547,-0.176476389169693,-0.371148139238358,0.805659294128418,0.46169501543045,-0.315781593322754,0.869101226329803,0.380716621875763,-0.33349609375,0.86492645740509,0.375076770782471,-0.381726533174515,0.810458242893219,0.444344967603683,-0.241475880146027,0.805052280426025,0.541830360889435,-0.166526898741722,0.866003692150116,0.471493929624557,-0.207380324602127,0.873165011405945,0.441108137369156,-0.282135486602783,0.809432566165924,0.514993607997894,-0.0872347429394722,0.792389869689941,0.60374528169632,-0.0488519370555878,0.852294027805328,0.520776808261871,-0.0664834976196289,0.856980979442596,0.511041700839996,-0.104008898139,0.798943638801575,0.592343926429749,0.0130441226065159,0.780777513980865,0.624672949314117,0.0509945303201675,0.83869069814682,0.542215347290039,0.0226852986961603,0.844161689281464,0.535608649253845,-0.0158674232661724,0.784168660640717,0.620344877243042,-0.0413583815097809,0.782575011253357,0.621180951595306,0.0233474709093571,0.782786130905151,0.62185275554657,0.090852864086628,0.833036065101624,0.54570746421814,0.0279285442084074,0.840273678302765,0.54144275188446,0.800737619400024,-0.308174192905426,0.513661324977875,0.920499622821808,-0.219402953982353,0.323330968618393,0.920412242412567,-0.237138971686363,0.310815870761871, +0.917271077632904,-0.223267912864685,0.329795718193054,0.923000037670135,-0.246798828244209,0.29523104429245,0.922985374927521,-0.243339985609055,0.298133760690689,0.926082491874695,-0.24358569085598,0.288161814212799,0.925806164741516,-0.247276812791824,0.28589740395546,0.941500902175903,-0.0918700248003006,0.324246853590012,0.959864735603333,-0.053096316754818,0.275391638278961,0.960017561912537,-0.0706925690174103,0.270866960287094,0.941715896129608,-0.110594287514687,0.317710608243942,0.91922914981842,0.337883204221725,0.202120959758759,0.942861914634705,0.283718228340149,0.17468649148941,0.957869470119476,0.19173888862133,0.213827669620514,0.939228594303131,0.24749681353569,0.2378970682621,0.693654656410217,-0.377449542284012,-0.613494157791138,0.682366728782654,-0.389887481927872,-0.618355393409729,0.667140007019043,-0.396137088537216,-0.630872189998627,0.679093658924103,-0.384702831506729,-0.625168442726135,0.654251158237457,-0.434987157583237,-0.618661165237427,0.653554201126099,-0.435537159442902,-0.619010746479034,0.650848984718323,-0.433405935764313,-0.623341858386993,0.651626825332642,-0.432957738637924,-0.622840464115143,0.604703009128571,-0.509333312511444,-0.612302124500275,0.607210218906403,-0.506068468093872,-0.612527966499329,0.604219615459442,-0.495838850736618,-0.62374871969223,0.601729989051819,-0.498826086521149,-0.623773634433746,0.64942455291748,-0.462309658527374,-0.603752851486206,0.653840184211731,-0.477385818958282,-0.587022840976715,0.657321751117706,-0.473031342029572,-0.586659610271454,0.652582287788391,-0.457995444536209,-0.603636085987091,0.571806371212006,-0.577748119831085,-0.582447052001953,0.595411479473114,-0.581465184688568,-0.554421782493591,0.580459594726563,-0.593265235424042,-0.557766079902649,0.556985378265381,-0.59007740020752,-0.584445059299469,0.467900156974792,-0.692087829113007,-0.54962158203125,0.49226987361908,-0.70630931854248,-0.508721590042114,0.473762840032578,-0.713833153247833,-0.515743255615234,0.449570119380951,-0.701214551925659,-0.553339838981628,0.332922011613846,-0.806171536445618,-0.489132344722748, +0.315764874219894,-0.780503153800964,-0.539543807506561,0.330117553472519,-0.777113676071167,-0.535832703113556,0.347060292959213,-0.803960680961609,-0.482904255390167,0.442297458648682,-0.457219511270523,0.771572113037109,0.438204348087311,-0.454373389482498,0.775578260421753,0.442438364028931,-0.453531831502914,0.773664891719818,0.446516841650009,-0.456217259168625,0.769732773303986,0.559861302375793,-0.400072157382965,0.725601613521576,0.565866351127625,-0.39824041724205,0.721941769123077,0.572254478931427,-0.410269260406494,0.710073292255402,0.56639176607132,-0.411768078804016,0.713896036148071,0.7244992852211,-0.311969071626663,0.614635050296783,0.722877860069275,-0.311379998922348,0.616838872432709,0.724326133728027,-0.310315489768982,0.615675210952759,0.72598785161972,-0.311334669589996,0.613198518753052,0.838506162166595,-0.232697755098343,0.492705971002579,0.830179214477539,-0.241027563810349,0.502701044082642,0.820931673049927,-0.244345456361771,0.516107261180878,0.829551815986633,-0.236694544553757,0.505786180496216,0.919536948204041,-0.133278295397758,0.369714438915253,0.919131517410278,-0.128201425075531,0.372507452964783,0.918704628944397,-0.128818958997726,0.373346388339996,0.919153034687042,-0.134139686822891,0.370356917381287,0.954863429069519,-0.0602354630827904,0.290873885154724,0.954653203487396,-0.0609191209077835,0.291420876979828,0.956626832485199,-0.0732670947909355,0.281952291727066,0.956803500652313,-0.0721687972545624,0.281635820865631,0.987543106079102,0.109272599220276,0.113217622041702,0.987572014331818,0.114044114947319,0.108145833015442,0.989757180213928,0.108760252594948,0.0924775972962379,0.989668130874634,0.104622282087803,0.0980372279882431,0.960506439208984,0.275954633951187,-0.0357295423746109,0.961487770080566,0.272828429937363,-0.0332551077008247,0.959887981414795,0.278476148843765,-0.0326529555022717,0.958929896354675,0.281431883573532,-0.0353498309850693,0.935845851898193,0.340413242578506,-0.0911679491400719,0.933770060539246,0.344621688127518,-0.0964859649538994,0.931425094604492,0.349770486354828,-0.100538514554501, +0.933605968952179,0.345324158668518,-0.0955575555562973,0.785516321659088,0.568147301673889,-0.245301634073257,0.783557534217834,0.571594774723053,-0.24355074763298,0.782018601894379,0.573089420795441,-0.244980931282043,0.783899009227753,0.570021629333496,-0.246125638484955,0.605893850326538,0.71760493516922,-0.343417793512344,0.604727983474731,0.717789828777313,-0.345082432031631,0.6035395860672,0.718102335929871,-0.346509695053101,0.604647397994995,0.718582570552826,-0.343570441007614,0.487869024276733,0.780991315841675,-0.389918446540833,0.488601624965668,0.777220010757446,-0.396481454372406,0.489273607730865,0.776705026626587,-0.396661996841431,0.488591760396957,0.780091941356659,-0.39081284403801,0.383439719676971,0.823808073997498,-0.417509853839874,0.377131581306458,0.826966047286987,-0.41701203584671,0.370731979608536,0.82947301864624,-0.417770713567734,0.377058684825897,0.826321721076965,-0.418352872133255,0.25015527009964,0.866503775119781,-0.431964844465256,0.252596199512482,0.858393788337708,-0.446492403745651,0.24869604408741,0.859632909297943,-0.446297734975815,0.24641016125679,0.867574453353882,-0.431968420743942,-0.0793888941407204,0.478217959403992,-0.8746457695961,-0.0793453007936478,0.477522969245911,-0.875029265880585,-0.0773726925253868,0.490536719560623,-0.867978751659393,-0.0775043815374374,0.491139471530914,-0.867626190185547,0.0951333567500114,0.472752004861832,-0.876045167446136,0.0873892679810524,0.480130106210709,-0.872833549976349,0.0783914029598236,0.482296586036682,-0.872493505477905,0.0861232653260231,0.47482618689537,-0.875855505466461,0.261301577091217,0.432344824075699,-0.863017678260803,0.259203225374222,0.435083776712418,-0.862273752689362,0.261808544397354,0.43405681848526,-0.862003982067108,0.263932645320892,0.431400805711746,-0.86268937587738,0.448214173316956,0.349334061145782,-0.822842478752136,0.437288075685501,0.355072259902954,-0.826258361339569,0.426326811313629,0.360853970050812,-0.8294757604599,0.437185049057007,0.354786396026611,-0.826435625553131,0.604427397251129,0.246052742004395,-0.757710814476013, +0.596828460693359,0.260132730007172,-0.759030222892761,0.586642742156982,0.268688678741455,-0.76397430896759,0.594157040119171,0.254170805215836,-0.763134717941284,0.742803812026978,0.125595137476921,-0.657623291015625,0.749422252178192,0.116116225719452,-0.651830732822418,0.742430031299591,0.124877661466599,-0.65818178653717,0.735554218292236,0.134080767631531,-0.664065003395081,0.823029816150665,-0.0160947144031525,-0.56777012348175,0.812776923179626,-0.0452966801822186,-0.580811381340027,0.814682602882385,-0.0533671677112579,-0.577446341514587,0.826139450073242,-0.0231559872627258,-0.562989711761475,0.853955626487732,-0.194844901561737,-0.482488691806793,0.855342268943787,-0.215893238782883,-0.470935165882111,0.859736263751984,-0.232098311185837,-0.454955071210861,0.857443392276764,-0.213047608733177,-0.468403309583664,0.875337243080139,-0.339257419109344,-0.34451287984848,0.877837359905243,-0.345132946968079,-0.332091689109802,0.877218723297119,-0.354669541120529,-0.323569178581238,0.876104116439819,-0.347299933433533,-0.334401935338974,0.849854409694672,-0.488317430019379,-0.198226645588875,0.846868932247162,-0.49371200799942,-0.197639942169189,0.84653377532959,-0.496033549308777,-0.193213403224945,0.847564816474915,-0.492917507886887,-0.196637541055679,0.777285218238831,-0.628566980361938,-0.027042344212532,0.792793750762939,-0.609484970569611,0.00251951836980879,0.792975723743439,-0.609239757061005,0.00407251762226224,0.77867603302002,-0.627018749713898,-0.0226126629859209,0.672314643859863,-0.72653591632843,0.141910910606384,0.684357523918152,-0.713553011417389,0.149990051984787,0.678231060504913,-0.71835857629776,0.154801785945892,0.666075944900513,-0.731268107891083,0.14693509042263,0.527417957782745,-0.816901445388794,0.233457371592522,0.532425820827484,-0.814499974250793,0.230461969971657,0.539586901664734,-0.809102118015289,0.232808828353882,0.53459894657135,-0.811541974544525,0.235804036259651,0.413630962371826,-0.864252269268036,0.286317348480225,0.403667718172073,-0.867253661155701,0.291416317224503, +0.415748357772827,-0.861391127109528,0.291819512844086,0.425589740276337,-0.858393788337708,0.286414921283722,0.368969261646271,-0.876440763473511,0.309375643730164,0.35089835524559,-0.879482865333557,0.321528136730194,0.331815093755722,-0.883291900157928,0.331201136112213,0.349843502044678,-0.880953192710876,0.318639248609543,0.192346930503845,-0.892650008201599,0.40764993429184,0.188329756259918,-0.892946898937225,0.408873945474625,0.184239119291306,-0.893367528915405,0.409817546606064,0.188340693712234,-0.892924964427948,0.408916801214218,0.0713932812213898,-0.901719927787781,0.426385045051575,0.0451696254312992,-0.900778949260712,0.431922614574432,0.0730107650160789,-0.898493647575378,0.432872772216797,0.0990928038954735,-0.899050951004028,0.426483273506165,0.181227833032608,-0.471804976463318,0.862876892089844,0.171143665909767,-0.482188045978546,0.859188318252563,0.16232368350029,-0.482734024524689,0.860592305660248,0.172413468360901,-0.472011864185333,0.864568293094635,-0.0692560970783234,-0.4843889772892,-0.872107148170471,0.0142428278923035,-0.425308078527451,-0.904936611652374,-0.0800959095358849,-0.453895330429077,-0.887447834014893,-0.164079740643501,-0.504783570766449,-0.847508907318115,0.230636909604073,0.506639003753662,-0.830736756324768,0.408749550580978,0.300885200500488,-0.861621737480164,0.556251525878906,0.0726030990481377,-0.827836334705353,0.420218795537949,0.309006303548813,-0.853188991546631,0.798051714897156,0.200328394770622,-0.568315207958221,0.832103729248047,0.156996041536331,-0.53193587064743,0.859958648681641,0.107307523488998,-0.498955309391022,0.830803990364075,0.154180884361267,-0.534783244132996,0.278177291154861,-0.746974885463715,0.60385924577713,0.277958571910858,-0.747099697589874,0.603805601596832,0.295811086893082,-0.750355899333954,0.591152906417847,0.295966118574142,-0.750253438949585,0.591205358505249,0.163386106491089,0.794184744358063,-0.585299551486969,0.146795094013214,0.815613090991974,-0.559666514396667,0.173552855849266,0.805394411087036,-0.566762089729309,0.188850313425064,0.782088160514832,-0.593863308429718, +-0.169014200568199,-0.0713102146983147,-0.983030617237091,-0.154091030359268,-0.0728184059262276,-0.985369801521301,-0.139178022742271,-0.0747215673327446,-0.987444281578064,-0.154117479920387,-0.0730587169528008,-0.985347747802734,0.00901523325592279,-0.0918304547667503,-0.995733857154846,-0.114258319139481,-0.0776540040969849,-0.990411579608917,-0.235762178897858,-0.0622148290276527,-0.969817340373993,-0.11424808204174,-0.0775617882609367,-0.990419924259186,-0.0774947851896286,-0.0819261595606804,-0.993620991706848,-0.0926294252276421,-0.0801372975111008,-0.992470622062683,-0.107739612460136,-0.0783042535185814,-0.991090595722198,-0.0926256850361824,-0.0801035240292549,-0.992473721504211,-0.120903305709362,-0.0767222046852112,-0.989695012569427,-0.159754991531372,-0.0719535648822784,-0.984530925750732,-0.198378220200539,-0.0672600269317627,-0.977815091609955,-0.159777760505676,-0.0721595957875252,-0.984512090682983,-0.19680979847908,-0.0674670860171318,-0.97811758518219,-0.196809157729149,-0.0674610584974289,-0.978118240833282,-0.196838736534119,-0.0677268207073212,-0.978093862533569,-0.135311409831047,-0.0748663991689682,-0.987970650196075,-0.111632168292999,-0.0782151818275452,-0.990666806697845,-0.135370805859566,-0.07541274279356,-0.987920880317688,-0.159019857645035,-0.0724632143974304,-0.98461252450943,-0.512543737888336,-0.77340567111969,-0.37301829457283,-0.523356676101685,-0.780455410480499,-0.342033833265305,-0.511879026889801,-0.780043542385101,-0.35987788438797,-0.500555634498596,-0.774571776390076,-0.38662987947464,0.727866768836975,0.523355841636658,0.443067252635956,0.668761789798737,0.584458470344543,0.459527999162674,0.602936863899231,0.672877669334412,0.428605735301971,0.667987823486328,0.617561280727386,0.415223360061646,0.0988985970616341,-0.650139331817627,0.753351151943207,-0.126956552267075,-0.633795320987701,0.763010799884796,0.0945931598544121,-0.669525504112244,0.736741304397583,0.310228407382965,-0.675924301147461,0.668494403362274,-0.384918838739395,-0.7981778383255,0.463410794734955, +-0.836824357509613,-0.412987291812897,0.35939759016037,-0.98844051361084,0.111367583274841,0.102871969342232,-0.839345753192902,-0.420226663351059,0.34483078122139,-0.571304261684418,-0.756519675254822,-0.318260192871094,-0.624729514122009,-0.714730799198151,-0.314440727233887,-0.572700500488281,-0.746037602424622,-0.339767813682556,-0.517135202884674,-0.783629655838013,-0.344232112169266,-0.991594135761261,0.0414999350905418,-0.122551776468754,-0.967530488967896,-0.0493631847202778,-0.247887223958969,-0.990506529808044,0.0541956946253777,-0.126331850886345,-0.994919300079346,0.0996625497937202,0.0142487771809101,-0.0432868786156178,-0.0877236276865005,-0.995203971862793,-0.0864379703998566,-0.0829112380743027,-0.992801249027252,-0.129233241081238,-0.0761465728282928,-0.988686263561249,-0.0862507224082947,-0.0811708867549896,-0.992961347103119,-0.428892970085144,0.288528978824615,-0.856038451194763,-0.477972537279129,0.336105018854141,-0.811526715755463,-0.478641599416733,0.33446592092514,-0.811809659004211,-0.429472714662552,0.286820769309998,-0.856321811676025,-0.226010426878929,-0.0636947304010391,-0.972040295600891,-0.19947874546051,-0.0671030655503273,-0.977601945400238,-0.226002991199493,-0.0636265203356743,-0.972046554088593,-0.252366691827774,-0.0601773858070374,-0.965758621692657,-0.0636358112096786,-0.0839994251728058,-0.994431793689728,-0.184989899396896,-0.0696549639105797,-0.980268836021423,-0.303526848554611,-0.0540920495986938,-0.951286196708679,-0.184971883893013,-0.0694891139864922,-0.980284035205841,-0.159185618162155,-0.0724955946207047,-0.98458331823349,-0.184690833091736,-0.0695090964436531,-0.980335593223572,-0.210053250193596,-0.0663107931613922,-0.975438714027405,-0.184672445058823,-0.0693402737379074,-0.980350971221924,-0.208063185214996,-0.0662537813186646,-0.975868940353394,-0.244483754038811,-0.0616516768932343,-0.967691421508789,-0.28054741024971,-0.05685855448246,-0.958154618740082,-0.244463741779327,-0.0614675432443619,-0.96770828962326,-0.170745894312859,-0.0707807838916779,-0.982769548892975, +-0.184119403362274,-0.0692118108272552,-0.980464100837708,-0.170738145709038,-0.070709802210331,-0.982775986194611,-0.157342776656151,-0.072356104850769,-0.984889805316925,-0.301196545362473,-0.0537815578281879,-0.952044248580933,-0.301214069128036,-0.0539434216916561,-0.952029526233673,-0.301204085350037,-0.0538509711623192,-0.952037930488586,-0.126039206981659,-0.0780734643340111,-0.988948345184326,-0.127858936786652,-0.0778601616621017,-0.988731443881989,-0.129687488079071,-0.0777319371700287,-0.988503456115723,-0.127868041396141,-0.0779443234205246,-0.988723635673523,-0.11163953691721,-0.0796862915158272,-0.990548729896545,-0.123496651649475,-0.0782869234681129,-0.989252209663391,-0.135345548391342,-0.0769650787115097,-0.987804710865021,-0.123506128787994,-0.0783746615052223,-0.989243984222412,-0.087119497358799,-0.0809417963027954,-0.992904186248779,-0.0885154381394386,-0.080786369740963,-0.992793381214142,-0.0872907340526581,-0.0825250223278999,-0.992758810520172,-0.0858950316905975,-0.0826836377382278,-0.992867350578308,-0.0781507417559624,-0.0818605795502663,-0.993575036525726,-0.08054169267416,-0.0815887898206711,-0.993406414985657,-0.0869533196091652,-0.0809660777449608,-0.992916703224182,-0.0777340531349182,-0.0820168629288673,-0.993594884872437,-0.0749324932694435,-0.082217775285244,-0.993793427944183,-0.0701178163290024,-0.0827656239271164,-0.994099318981171,-0.0909782350063324,-0.0805616453289986,-0.992588996887207,-0.0992240607738495,-0.0796109661459923,-0.991875350475311,-0.0909601002931595,-0.0803928002715111,-0.99260425567627,-0.0827080607414246,-0.0813396498560905,-0.993248820304871,-0.0763976722955704,-0.0821816101670265,-0.993684947490692,-0.132307276129723,-0.0756983384490013,-0.988314032554626,-0.0764022395014763,-0.0822241082787514,-0.993681013584137,-0.0202490016818047,-0.0884501561522484,-0.995874762535095,-0.135000616312027,-0.075366348028183,-0.987975060939789,-0.208190619945526,-0.0664188042283058,-0.975830495357513,-0.135001927614212,-0.0753784999251366,-0.987973988056183,-0.0610585100948811,-0.0839095562696457,-0.9946009516716, +-0.140002086758614,-0.0747918635606766,-0.987322509288788,-0.261218547821045,-0.0596312880516052,-0.96343606710434,-0.139999896287918,-0.0747714415192604,-0.987324297428131,-0.0166144650429487,-0.0887748003005981,-0.995913147926331,-0.0851972699165344,-0.0812432765960693,-0.993046343326569,-0.0583131574094296,-0.0842765942215919,-0.994734764099121,-0.0313801318407059,-0.0871916115283966,-0.995697259902954,-0.058307059109211,-0.0842197611927986,-0.994739890098572,-0.0425280407071114,-0.0861263573169708,-0.995376169681549,-0.061466883867979,-0.0840184316039085,-0.99456661939621,-0.0803738087415695,-0.0817911922931671,-0.993403375148773,-0.0614570379257202,-0.0839266330003738,-0.994574964046478,-0.0483499839901924,-0.0856103375554085,-0.995154857635498,-0.104118525981903,-0.0792772471904755,-0.991400241851807,-0.15954601764679,-0.0725859180092812,-0.984518349170685,-0.104106158018112,-0.0791619047522545,-0.991410851478577,-0.0312665216624737,-0.0876405164599419,-0.995661437511444,-0.129192650318146,-0.0764735862612724,-0.988666355609894,-0.225845128297806,-0.0644459426403046,-0.972029209136963,-0.129178792238235,-0.0763443484902382,-0.988678157329559,-0.2322938144207,-0.0644849762320518,-0.970505714416504,-0.186654731631279,-0.0702417716383934,-0.979911327362061,-0.140526205301285,-0.075124055147171,-0.987222790718079,-0.186577171087265,-0.0695206001400948,-0.979977548122406,-0.13050551712513,-0.0773729309439659,-0.988423883914948,-0.0970458537340164,-0.0813833549618721,-0.991947054862976,-0.0634307935833931,-0.0849103108048439,-0.994367599487305,-0.0970029756426811,-0.0809967070817947,-0.991982936859131,-0.19433556497097,-0.0695807337760925,-0.978464245796204,-0.182950884103775,-0.0709609985351563,-0.980557799339294,-0.182310700416565,-0.0708811581134796,-0.980682790279388,-0.200153231620789,-0.068648524582386,-0.977356731891632,-0.207216024398804,-0.0676687732338905,-0.9759521484375,-0.191542208194733,-0.0696452036499977,-0.979010343551636,-0.110849320888519,-0.0794771239161491,-0.990654349327087,-0.07847960293293,-0.0832245349884033,-0.993435800075531, +-0.0461620539426804,-0.088092714548111,-0.995042145252228,-0.0786047577857971,-0.0843516364693642,-0.993330895900726,-0.235550433397293,-0.06473059207201,-0.969704151153564,-0.0993432402610779,-0.0818791761994362,-0.991678774356842,0.0388228558003902,-0.0971015617251396,-0.994517028331757,-0.0993059203028679,-0.0815422683954239,-0.991710305213928,-0.0213421136140823,-0.0905584841966629,-0.995662450790405,-0.0888159275054932,-0.0827657580375671,-0.992603421211243,-0.15583673119545,-0.0742142572999001,-0.984990954399109,-0.0887747406959534,-0.0823944732546806,-0.992638051509857,-0.221936449408531,-0.0681722909212112,-0.972675085067749,-0.205217391252518,-0.0702895000576973,-0.976189196109772,-0.188214272260666,-0.0703082978725433,-0.979608237743378,-0.204998463392258,-0.0682436749339104,-0.976380288600922,-0.234091565012932,-0.0665747076272964,-0.969932436943054,-0.21723897755146,-0.0687249228358269,-0.973696172237396,-0.200325757265091,-0.0709030106663704,-0.977160394191742,-0.217243626713753,-0.0687688291072845,-0.973691999912262,-0.18356691300869,-0.072857528924942,-0.980303525924683,-0.200920820236206,-0.07071353495121,-0.977051913738251,-0.218216925859451,-0.0686010792851448,-0.973486125469208,-0.200927168130875,-0.070773147046566,-0.977046370506287,-0.165855765342712,-0.0749307349324226,-0.983299195766449,-0.184234976768494,-0.0726961269974709,-0.980190217494965,-0.202557057142258,-0.0705094188451767,-0.976728796958923,-0.184243261814117,-0.0727743729948997,-0.980182826519012,-0.154687911272049,-0.0761690065264702,-0.985022842884064,-0.165916353464127,-0.0748248174786568,-0.983297049999237,-0.177133172750473,-0.0735657960176468,-0.981433629989624,-0.165926679968834,-0.0749221593141556,-0.983287930488586,-0.141747266054153,-0.0775856375694275,-0.986857712268829,-0.149444684386253,-0.0766788125038147,-0.985792458057404,-0.157145023345947,-0.0758815258741379,-0.984656035900116,-0.149456933140755,-0.0767943188548088,-0.98578155040741,-0.132618591189384,-0.0785198584198952,-0.988052129745483,-0.136290162801743,-0.078096441924572,-0.987585961818695, +-0.139973819255829,-0.0778041556477547,-0.98709362745285,-0.13630422949791,-0.0782293826341629,-0.987573444843292,-0.119325257837772,-0.0799131989479065,-0.989634037017822,-0.122311443090439,-0.0795749351382256,-0.989296674728394,-0.125312522053719,-0.079386793076992,-0.988936126232147,-0.122327476739883,-0.0797262638807297,-0.989282429218292,-0.109210833907127,-0.0815002918243408,-0.990671873092651,-0.108938232064247,-0.0815342217683792,-0.990699172019958,-0.108622834086418,-0.0811654925346375,-0.990763962268829,-0.108894653618336,-0.0811239331960678,-0.990737557411194,0.0427462197840214,-0.0980766788125038,-0.994260430335999,0.232158273458481,-0.115594111382961,-0.965784966945648,0.0427306070923805,-0.0982223376631737,-0.994246780872345,-0.148231819272041,-0.0767881646752357,-0.985967040061951,-0.137847319245338,-0.0779859200119972,-0.987378478050232,-0.112058237195015,-0.0810491815209389,-0.990390837192535,-0.0929512679576874,-0.0833778455853462,-0.992173492908478,-0.099695511162281,-0.0826015844941139,-0.991583526134491,-0.10794723033905,-0.0816510319709778,-0.990797936916351,-0.148136630654335,-0.0760726407170296,-0.986036837100983,-0.158404320478439,-0.0748213529586792,-0.984535396099091,-0.148212179541588,-0.0767693966627121,-0.985971450805664,-0.137924164533615,-0.0779767706990242,-0.98736846446991,-0.115353956818581,-0.0800222754478455,-0.990095913410187,-0.173163205385208,-0.0730254203081131,-0.982182204723358,-0.115351237356663,-0.0799971297383308,-0.990098237991333,-0.0571431592106819,-0.0867130532860756,-0.994593143463135,-0.201231762766838,-0.069557212293148,-0.977070987224579,-0.266985803842545,-0.0610059425234795,-0.961767613887787,-0.201226741075516,-0.0695111751556396,-0.977075219154358,-0.134540438652039,-0.0777363777160645,-0.987854301929474,-0.201218068599701,-0.0696499049663544,-0.977067172527313,-0.256218791007996,-0.0625282600522041,-0.964594304561615,-0.201208293437958,-0.0695599764585495,-0.977075636386871,-0.145557507872581,-0.0764573812484741,-0.986391067504883,-0.243800133466721,-0.0642730370163918,-0.967693388462067, +-0.365305662155151,-0.0475587137043476,-0.929672002792358,-0.243788361549377,-0.0641651824116707,-0.967703521251678,-0.118263177573681,-0.0798207893967628,-0.989768922328949,-0.139315128326416,-0.0775284692645073,-0.987208545207977,-0.130936190485954,-0.0785365253686905,-0.988275170326233,-0.139302477240562,-0.0774127170443535,-0.987219393253326,-0.147671669721603,-0.0764006674289703,-0.986081182956696,-0.231464311480522,-0.0661188066005707,-0.970593988895416,-0.249123692512512,-0.0638086944818497,-0.966367304325104,-0.231450468301773,-0.0659924745559692,-0.970605850219727,-0.213713571429253,-0.0682790949940681,-0.974507331848145,-0.120776273310184,-0.0799812227487564,-0.989452540874481,-0.0931844189763069,-0.0832210034132004,-0.992164850234985,-0.120766647160053,-0.0798932239413261,-0.989460706710815,-0.148263722658157,-0.0765837430953979,-0.985978066921234,-0.107985183596611,-0.0814106613397598,-0.990813612937927,-0.139749199151993,-0.078721709549427,-0.987052798271179,-0.171264231204987,-0.0749664902687073,-0.982368886470795,-0.139699831604958,-0.0782634019851685,-0.987096190452576,-0.169039711356163,-0.0742470845580101,-0.982808768749237,-0.208458378911018,-0.0693206712603569,-0.975571572780609,-0.169028028845787,-0.0741401761770248,-0.982818841934204,-0.129335686564445,-0.0789613872766495,-0.988452017307281,-0.138722002506256,-0.0781447365880013,-0.987243413925171,-0.149096786975861,-0.076898992061615,-0.985827922821045,-0.138699904084206,-0.0779417604207993,-0.987262666225433,-0.128310233354568,-0.0791803449392319,-0.988568186759949,-0.187419429421425,-0.0723807439208031,-0.979609668254852,-0.248808562755585,-0.0645162388682365,-0.966401636600494,-0.187398046255112,-0.0721846967935562,-0.979628145694733,-0.125258088111877,-0.0797538608312607,-0.988913476467133,-0.107873395085335,-0.0819695219397545,-0.990779757499695,-0.119104370474815,-0.0806457102298737,-0.989601135253906,-0.107878215610981,-0.0820140168070793,-0.990775465965271,-0.0966328233480453,-0.0833235383033752,-0.991826295852661,-0.170040979981422,-0.0741885229945183,-0.982640385627747, +-0.195387035608292,-0.071535050868988,-0.978113889694214,-0.170075505971909,-0.0745079815387726,-0.982610285282135,-0.144669085741043,-0.077604241669178,-0.986432194709778,-0.0556384362280369,-0.0879480689764023,-0.994570016860962,-0.055652067065239,-0.0880760028958321,-0.994557917118073,-0.0555952116847038,-0.0875423476099968,-0.994608223438263,-0.121069304645061,-0.0804687663912773,-0.98937714099884,-0.121126666665077,-0.080996111035347,-0.989327073097229,-0.121080137789249,-0.0805683210492134,-0.989367663860321,-0.16723321378231,-0.0738197416067123,-0.983149945735931,-0.149252980947495,-0.0759817361831665,-0.985875427722931,-0.167259216308594,-0.0740658417344093,-0.983127057552338,-0.185146480798721,-0.0715302303433418,-0.980104207992554,-0.239861726760864,-0.064671091735363,-0.968650639057159,-0.239899858832359,-0.0650301203131676,-0.968617141246796,-0.239860787987709,-0.0646620243787766,-0.968651533126831,-0.188749149441719,-0.0710877925157547,-0.979448974132538,-0.166806027293205,-0.0737607926130295,-0.983226895332336,-0.188763409852982,-0.0712223872542381,-0.97943651676178,-0.210663944482803,-0.0690083727240562,-0.975119769573212,-0.0047048470005393,-0.092860609292984,-0.995667994022369,-0.00501102022826672,-0.0957129895687103,-0.995396435260773,-0.00482320133596659,-0.0939632654190063,-0.995564043521881,0.0105260126292706,-0.0944637060165405,-0.995472729206085,0.0105890333652496,-0.0938755199313164,-0.995527625083923,0.0102190468460321,-0.0973276719450951,-0.995199978351593,-0.164994686841965,-0.0743198394775391,-0.983490467071533,-0.156324654817581,-0.0755069330334663,-0.984815359115601,-0.12070244550705,-0.0789676010608673,-0.989542841911316,-0.151896327733994,-0.075283944606781,-0.985525250434875,-0.174007683992386,-0.0732433050870895,-0.982016742229462,-0.162317261099815,-0.074128270149231,-0.983950316905975,-0.172638058662415,-0.0733969211578369,-0.982246935367584,-0.162372231483459,-0.07464749366045,-0.983901917934418,-0.152033343911171,-0.0753699466586113,-0.985497534275055,-0.118899434804916,-0.0789676830172539,-0.989761173725128, +-0.125658258795738,-0.0784694403409958,-0.988965392112732,-0.11893068253994,-0.0792627856135368,-0.989733815193176,-0.112165302038193,-0.0797483548521996,-0.990484356880188,-0.127246558666229,-0.0780268684029579,-0.98879736661911,-0.146994963288307,-0.0756686255335808,-0.986238718032837,-0.127243399620056,-0.0779969170689583,-0.988800168037415,-0.10744372010231,-0.0803230032324791,-0.990961194038391,-0.148326441645622,-0.0757827535271645,-0.986030578613281,-0.157017633318901,-0.0745051130652428,-0.984781444072723,-0.148301362991333,-0.075545534491539,-0.986052572727203,-0.139598712325096,-0.0768192782998085,-0.987223923206329,-0.153938829898834,-0.0754161551594734,-0.985198080539703,-0.158666089177132,-0.0745485350489616,-0.984513938426971,-0.153907582163811,-0.0751205906271935,-0.985225558280945,-0.14917716383934,-0.0759907588362694,-0.985886216163635,-0.109003946185112,-0.0792594775557518,-0.990876495838165,-0.130464091897011,-0.0783187821507454,-0.988354921340942,-0.108936756849289,-0.0786451622843742,-0.990932822227478,-0.0875929668545723,-0.0810728743672371,-0.992851793766022,-0.185758650302887,-0.0705569237470627,-0.980058968067169,-0.185609564185143,-0.069174125790596,-0.980185747146606,-0.185870677232742,-0.07159823179245,-0.979962229728699,-0.165373936295509,-0.0749869719147682,-0.983376145362854,-0.165278449654579,-0.0741093754768372,-0.983458638191223,-0.165097787976265,-0.0724524855613708,-0.983612477779388,-0.149800390005112,-0.0766749605536461,-0.985738754272461,-0.169934123754501,-0.0749765411019325,-0.982599139213562,-0.149728268384933,-0.0760041400790215,-0.985801696777344,-0.129703268408775,-0.0792714729905128,-0.988379061222076,-0.182014971971512,-0.0733243077993393,-0.980558097362518,-0.18203367292881,-0.0734973475337029,-0.980541706085205,-0.181953266263008,-0.0727536976337433,-0.980612099170685,-0.101287424564362,-0.0817189961671829,-0.991495311260223,-0.133268371224403,-0.0793702676892281,-0.987896740436554,-0.164948657155037,-0.0754062309861183,-0.983415365219116,-0.133216336369514,-0.0788829773664474,-0.987942814826965, +-0.129478752613068,-0.0784227699041367,-0.98847621679306,-0.129574492573738,-0.0793125331401825,-0.988392651081085,-0.12935271859169,-0.0772529467940331,-0.988584816455841,-0.124358005821705,-0.0780070424079895,-0.989166378974915,-0.12446641176939,-0.0790144056081772,-0.989072740077972,-0.124340854585171,-0.0778479129076004,-0.989180982112885,-0.205273106694221,-0.0662503987550735,-0.976459860801697,-0.205320745706558,-0.0666917711496353,-0.976419806480408,-0.205471053719521,-0.0680871829390526,-0.976291835308075,0.0329912565648556,-0.0938355475664139,-0.995040953159332,-0.0668200179934502,-0.0828992873430252,-0.994315326213837,-0.166009575128555,-0.0716051757335663,-0.983520984649658,-0.0668243914842606,-0.0829390063881874,-0.994311630725861,-0.0520384162664413,-0.0858377441763878,-0.994949221611023,-0.143018662929535,-0.0753197893500328,-0.986849844455719,-0.232776537537575,-0.0640400797128677,-0.970419466495514,-0.143005266785622,-0.0751966908574104,-0.986861169338226,-0.120838724076748,-0.0776852667331696,-0.989627718925476,-0.259454101324081,-0.060368150472641,-0.963866829872131,-0.392819106578827,-0.041691217571497,-0.918670237064362,-0.259439051151276,-0.0602298118174076,-0.963879585266113,-0.209009408950806,-0.0666119232773781,-0.975642323493958,-0.251686275005341,-0.0612382292747498,-0.965869545936584,-0.293856918811798,-0.0555914416909218,-0.95423150062561,-0.251669526100159,-0.0610844120383263,-0.965883612632751,-0.0665005296468735,-0.0847416445612907,-0.994181334972382,-0.0665368586778641,-0.0850747898221016,-0.994150459766388,-0.066497728228569,-0.084715947508812,-0.994183778762817,-0.154385194182396,-0.0743670985102654,-0.985207974910736,-0.145274356007576,-0.0754444971680641,-0.986510813236237,-0.154360085725784,-0.074135459959507,-0.985229432582855,-0.163456737995148,-0.07304298132658,-0.983842849731445,-0.156821921467781,-0.0740689337253571,-0.984845519065857,-0.156799212098122,-0.0738594233989716,-0.984864890575409,-0.156908348202705,-0.074866846203804,-0.984771370887756,-0.153590112924576,-0.0744642615318298,-0.985324919223785, +-0.153676465153694,-0.0752614736557007,-0.985250890254974,-0.153650149703026,-0.0750185400247574,-0.985273480415344,-0.126612678170204,-0.0782106816768646,-0.988864183425903,-0.135210767388344,-0.0766933411359787,-0.987844228744507,-0.143910303711891,-0.0762022510170937,-0.986652493476868,-0.135266289114952,-0.0772055462002754,-0.987796723842621,-0.226626917719841,-0.0636379346251488,-0.971900463104248,-0.22663202881813,-0.0636847913265228,-0.971896171569824,-0.226637363433838,-0.0637332275509834,-0.971891760826111,-0.172514915466309,-0.0706610530614853,-0.982469201087952,-0.247674405574799,-0.0611401498317719,-0.966912269592285,-0.321325391530991,-0.0510081499814987,-0.945594072341919,-0.247652634978294,-0.0609416998922825,-0.966930329799652,-0.215281829237938,-0.0671866610646248,-0.974238097667694,-0.215275526046753,-0.0671281963586807,-0.974243521690369,-0.215255156159401,-0.0669399127364159,-0.974260866641998,-0.135728314518929,-0.076796866953373,-0.987765252590179,-0.13572633266449,-0.0767786800861359,-0.987766921520233,-0.135727360844612,-0.076788105070591,-0.987766087055206,-0.0119097456336021,-0.0911923050880432,-0.99576210975647,-0.040671493858099,-0.0877856686711311,-0.995308816432953,-0.0694245621562004,-0.0845403969287872,-0.993998646736145,-0.0406704060733318,-0.0877755954861641,-0.995309710502625,-0.0260087922215462,-0.0894253849983215,-0.995653927326202,-0.0260162185877562,-0.0894939377903938,-0.995647609233856,-0.0260211806744337,-0.0895397663116455,-0.995643317699432,0.0186746139079332,-0.0943115949630737,-0.995367646217346,0.0674813911318779,-0.099481500685215,-0.992748618125916,0.018668532371521,-0.0943677127361298,-0.995362401008606,-0.0301952958106995,-0.0890800803899765,-0.995566725730896,0.0643114969134331,-0.0991601869463921,-0.992991089820862,0.0643164813518524,-0.0991142094135284,-0.992995381355286,0.0643181949853897,-0.0990984067320824,-0.99299681186676,0.0202484633773565,-0.0945498049259186,-0.995314240455627,0.0202434938400984,-0.0945956483483315,-0.995309948921204,0.020240655168891,-0.0946218222379684,-0.995307505130768, +0.0277400091290474,-0.0954632163047791,-0.995046436786652,0.0277425497770309,-0.0954397693276405,-0.995048582553864,0.027742026373744,-0.0954446345567703,-0.99504816532135,0.0193584635853767,-0.0945804193615913,-0.995329022407532,-0.0107633732259274,-0.0913345441222191,-0.99576210975647,-0.0408855490386486,-0.0880990475416183,-0.99527233839035,-0.0107676479965448,-0.0913739651441574,-0.995758414268494,-0.109592966735363,-0.0803713351488113,-0.990721881389618,-0.109577767550945,-0.080231137573719,-0.990734934806824,-0.109599061310291,-0.0804275199770927,-0.990716695785522,-0.108697079122066,-0.0803760290145874,-0.990820169448853,-0.089444600045681,-0.0826246589422226,-0.992558777332306,-0.0701991096138954,-0.0852196663618088,-0.993886232376099,-0.0894875675439835,-0.083021454513073,-0.9925217628479,-0.0223272461444139,-0.0900920107960701,-0.995683193206787,-0.0645472034811974,-0.085450753569603,-0.99424946308136,-0.114045396447182,-0.0797388777136803,-0.990270435810089,-0.121439829468727,-0.0788734704256058,-0.989460170269012,-0.0835550278425217,-0.0833014324307442,-0.99301540851593,-0.0595174096524715,-0.084142230451107,-0.994674682617188,-0.0998891443014145,-0.0790752023458481,-0.991851449012756,-0.140139445662498,-0.0742859318852425,-0.987341225147247,-0.0999380275607109,-0.0795180648565292,-0.991811096668243,-0.976773738861084,-0.146781802177429,0.156103074550629,-0.955628037452698,-0.216180831193924,0.200102493166924,-0.950950562953949,-0.231328442692757,0.205378413200378,-0.970174789428711,-0.173343241214752,0.169449046254158,-0.996402978897095,-0.0731814876198769,-0.0427267178893089,-0.990682125091553,-0.121116787195206,0.0622879602015018,-0.986625969409943,-0.0924165174365044,0.134269952774048,-0.997337698936462,-0.0643894895911217,0.0342276096343994,-0.793485939502716,-0.502864181995392,0.342793971300125,-0.787156581878662,-0.513888955116272,0.341031670570374,-0.830438613891602,-0.463210701942444,0.309528231620789,-0.846233487129211,-0.440530180931091,0.299703299999237,-0.462731957435608,-0.750414550304413,-0.471971571445465, +-0.460198283195496,-0.851742029190063,-0.250505745410919,-0.458873331546783,-0.857447922229767,-0.232848465442657,-0.397434413433075,-0.888544380664825,-0.229204997420311,-0.394406378269196,-0.893785238265991,-0.213521838188171,-0.431009709835052,-0.763888657093048,-0.480317324399948,-0.266791135072708,-0.923738896846771,-0.274825662374496,-0.265224784612656,-0.927277684211731,-0.264219790697098,-0.293243706226349,-0.809577703475952,-0.508519530296326,-0.37389549612999,-0.785257458686829,-0.493531048297882,-0.387459605932236,-0.618809044361115,-0.683337807655334,-0.387468993663788,-0.617186427116394,-0.684798419475555,-0.0459531508386135,-0.673726677894592,-0.737550497055054,-0.0492756254971027,-0.846148908138275,-0.530663549900055,-0.045886617153883,-0.671108603477478,-0.739937603473663,-0.363700300455093,-0.615658521652222,-0.699061334133148,-0.363512575626373,-0.613410472869873,-0.70113205909729,-0.366811960935593,-0.787660539150238,-0.495014905929565,-0.367230862379074,-0.901814162731171,-0.2277562469244,-0.409200400114059,-0.772475242614746,-0.485630631446838,-0.364456593990326,-0.906060099601746,-0.215003609657288,-0.287862032651901,-0.927320003509521,-0.239192992448807,-0.337619870901108,-0.797012031078339,-0.500784039497375,-0.287545621395111,-0.927772521972656,-0.23781444132328,-0.431106418371201,-0.866144359111786,-0.252866178750992,-0.43077751994133,-0.864726960659027,-0.258220881223679,-0.402732223272324,-0.774919033050537,-0.487141996622086,-0.596162497997284,-0.763031780719757,0.249745756387711,-0.577858746051788,-0.775674939155579,0.253786444664001,-0.57983523607254,-0.774338483810425,0.253359466791153,-0.71404105424881,-0.64581710100174,0.270306795835495,-0.662018239498138,-0.688359260559082,0.296468377113342,-0.580570161342621,-0.743617117404938,0.331620037555695,-0.0705448612570763,-0.0851502045989037,-0.993867635726929,-0.0705302730202675,-0.0850163549184799,-0.993880212306976,-0.0705122426152229,-0.0848510190844536,-0.993895530700684,-0.64308774471283,-0.384886413812637,0.662042796611786,-0.566575467586517,-0.458458542823792,0.684695601463318, +-0.659575939178467,-0.460940271615982,0.593711793422699,-0.766261577606201,-0.358964562416077,0.532905101776123,-0.566110968589783,-0.480792969465256,0.669594347476959,-0.432476490736008,-0.499965876340866,0.750332176685333,-0.538248300552368,-0.460753440856934,0.705687642097473,-0.661497116088867,-0.435437589883804,0.61058634519577,-0.265066474676132,-0.519019842147827,0.812624216079712,-0.368320614099503,-0.530267238616943,0.763646900653839,-0.312761157751083,-0.525026559829712,0.791535019874573,-0.198867291212082,-0.508614122867584,0.837713241577148,-0.424979686737061,0.595858037471771,-0.681429088115692,-0.486224293708801,0.582867920398712,-0.651038408279419,-0.420832097530365,0.597651064395905,-0.682432115077972,-0.380635440349579,0.599677205085754,-0.703920483589172,-0.427077353000641,-0.531346380710602,0.731625616550446,-0.312196612358093,-0.526892900466919,0.790517032146454,-0.368450373411179,-0.529886484146118,0.763848543167114,-0.473100751638412,-0.531140267848969,0.70289808511734,-0.0446807742118835,-0.525547921657562,0.849589943885803,-0.171547174453735,-0.560048937797546,0.810504078865051,-0.0512357726693153,-0.52756655216217,0.847967326641083,-0.170901000499725,-0.561643183231354,0.809536814689636,-0.243247985839844,-0.576985836029053,0.779690861701965,-0.179333329200745,-0.563169658184052,0.806647062301636,-0.0490502417087555,-0.532904624938965,0.844752550125122,-0.0471974313259125,-0.537407875061035,0.842000722885132,-0.179311588406563,-0.563227951526642,0.806611299514771,-0.0995691269636154,-0.549293637275696,0.82967621088028,0.0461098551750183,-0.512590229511261,0.857394456863403,-0.747219502925873,0.654200732707977,-0.116980612277985,-0.716276407241821,0.665739893913269,-0.209137782454491,-0.673861801624298,0.713274121284485,-0.19274440407753,-0.707498252391815,0.700108587741852,-0.0964067280292511,-0.510661423206329,0.653055310249329,-0.559234976768494,-0.552169322967529,0.671519696712494,-0.494135916233063,-0.5907102227211,0.61086231470108,-0.527170419692993,-0.544714987277985,0.593242704868317,-0.592746675014496, +0.135506346821785,0.255127787590027,-0.957365095615387,0.170887380838394,0.0839839056134224,-0.981704771518707,0.1297238022089,0.286429047584534,-0.949278831481934,0.147982850670815,0.356961101293564,-0.922323107719421,0.245744422078133,0.131350740790367,-0.960394084453583,0.269825518131256,-0.155529320240021,-0.95026570558548,0.248848289251328,0.0967516899108887,-0.963697850704193,0.233307898044586,0.25746089220047,-0.937700033187866,0.176999270915985,0.0109156565740705,-0.984150528907776,0.24434307217598,0.0960239768028259,-0.964922785758972,0.199650943279266,-0.168584361672401,-0.965255916118622,0.184135749936104,-0.42773362994194,-0.884950816631317,0.212352007627487,-0.580989301204681,-0.78572142124176,-0.0153097975999117,-0.179088354110718,-0.983713924884796,0.0135647114366293,-0.0359015017747879,-0.999263286590576,0.178706213831902,-0.429480612277985,-0.885217845439911,0.165374934673309,-0.531940042972565,0.830476343631744,0.0695575773715973,-0.551215767860413,0.831458330154419,0.132409662008286,-0.509715735912323,0.850092649459839,0.213618397712708,-0.493469506502151,0.843122243881226,0.0608256757259369,-0.531940758228302,0.844594180583954,-0.0373297333717346,-0.561048984527588,0.826940476894379,0.0534645989537239,-0.53439736366272,0.843540787696838,0.13089245557785,-0.50573742389679,0.85269969701767,-0.311951071023941,-0.55776971578598,0.769142031669617,-0.211929842829704,-0.557818233966827,0.802449226379395,-0.302458256483078,-0.557954072952271,0.772791266441345,-0.421798318624496,-0.551763355731964,0.7194744348526,-0.216745063662529,-0.532857298851013,0.817976057529449,-0.104195728898048,-0.520432651042938,0.847521781921387,-0.0429934673011303,-0.507839322090149,0.860378324985504,-0.107600525021553,-0.520622313022614,0.846979677677155,0.111377947032452,-0.441430449485779,0.890356183052063,0.0721548199653625,-0.428633153438568,0.900592803955078,0.337261825799942,-0.387073934078217,0.858154058456421,0.28683066368103,-0.419804453849792,0.861099600791931,-0.11054627597332,-0.0771974474191666,-0.990868449211121, +-0.110546298325062,-0.0771976411342621,-0.990868330001831,-0.11054627597332,-0.0771975144743919,-0.990868330001831,-0.318986028432846,-0.0491331368684769,-0.946485042572021,-0.318985998630524,-0.0491330660879612,-0.946484982967377,-0.318985998630524,-0.0491330586373806,-0.946484982967377,-0.25761005282402,-0.057847186923027,-0.964515864849091,-0.257609993219376,-0.0578469522297382,-0.964515864849091,-0.257610023021698,-0.0578471682965755,-0.964515805244446,-0.180559352040291,-0.0682457014918327,-0.981193602085114,-0.180559441447258,-0.0682462155818939,-0.981193602085114,-0.180559381842613,-0.0682459399104118,-0.981193542480469,-0.102376669645309,-0.0782122984528542,-0.991666257381439,-0.102376542985439,-0.0782113522291183,-0.991666376590729,-0.102376632392406,-0.0782120078802109,-0.991666316986084,-0.193827688694,-0.0664961785078049,-0.978779435157776,-0.193827956914902,-0.0664986222982407,-0.978779196739197,-0.193827763199806,-0.0664967969059944,-0.978779375553131,-0.0992192924022675,-0.0786043256521225,-0.991956114768982,-0.0992190837860107,-0.0786025300621986,-0.991956293582916,-0.0992190837860107,-0.0786024406552315,-0.991956353187561,-0.158111646771431,-0.0711667016148567,-0.984853327274323,-0.15811163187027,-0.0711666271090508,-0.984853327274323,-0.158111646771431,-0.0711666494607925,-0.984853386878967,-0.0670309215784073,-0.0825296938419342,-0.994331777095795,-0.0670307949185371,-0.0825286209583282,-0.994331955909729,-0.0670309290289879,-0.082529753446579,-0.994331836700439,-0.992482542991638,0.117539599537849,0.034102588891983,-0.992482244968414,0.1175417304039,0.0341023951768875,-0.992482423782349,0.117540813982487,0.0341024808585644,0.98234361410141,-0.125840872526169,-0.138438180088997,0.98234349489212,-0.125842615962029,-0.138438016176224,0.98234349489212,-0.125842601060867,-0.138438031077385,0.0127438418567181,-0.0918527841567993,-0.995691061019897,0.0127438604831696,-0.091852642595768,-0.995691120624542,0.012743916362524,-0.0918521508574486,-0.995691180229187,0.230352729558945,-0.114284463226795,-0.966372966766357, +0.230352893471718,-0.114283062517643,-0.966373145580292,0.230352789163589,-0.114283755421638,-0.966373026371002,-0.220992743968964,-0.0628613606095314,-0.973247528076172,-0.22099281847477,-0.0628621950745583,-0.973247408866882,-0.22099281847477,-0.0628621727228165,-0.973247408866882,-0.159490212798119,-0.0709886699914932,-0.984643876552582,-0.159490317106247,-0.0709894597530365,-0.984643876552582,-0.15949022769928,-0.0709886699914932,-0.984643936157227,-0.124899744987488,-0.0754008516669273,-0.989300191402435,-0.124899625778198,-0.0753997936844826,-0.989300310611725,-0.124899655580521,-0.0754000619053841,-0.98930025100708,-0.0450324304401875,-0.0851585045456886,-0.995349287986755,-0.0450324974954128,-0.0851591154932976,-0.995349168777466,-0.0450324639678001,-0.0851588025689125,-0.995349287986755,-0.304188817739487,-0.0512704886496067,-0.951231062412262,-0.304188758134842,-0.0512698888778687,-0.951231181621552,-0.304188787937164,-0.0512701831758022,-0.951231181621552,-0.259728878736496,-0.0575525611639023,-0.963965117931366,-0.259728997945786,-0.057553343474865,-0.963964998722076,-0.259728908538818,-0.0575528405606747,-0.963964998722076,-0.202239960432053,-0.0653795003890991,-0.977151215076447,-0.202239885926247,-0.0653785690665245,-0.977151334285736,-0.202239915728569,-0.0653789788484573,-0.977151274681091,-0.15725189447403,-0.0712771266698837,-0.984983026981354,-0.157251939177513,-0.0712775439023972,-0.984982967376709,-0.157251968979836,-0.0712775513529778,-0.984983026981354,-0.291607826948166,-0.0530689209699631,-0.95506477355957,-0.291607826948166,-0.0530691221356392,-0.955064713954926,-0.291607826948166,-0.0530689097940922,-0.95506477355957,-0.259791314601898,-0.0575443767011166,-0.963948786258698,-0.259791254997253,-0.0575440414249897,-0.963948845863342,-0.259791284799576,-0.0575441718101501,-0.963948786258698,-0.195339441299438,-0.0662962794303894,-0.978492438793182,-0.195339486002922,-0.066296748816967,-0.978492319583893,-0.195339426398277,-0.0662964209914207,-0.978492319583893,-0.18069164454937,-0.0682289376854897,-0.981170475482941, +-0.180691570043564,-0.0682284608483315,-0.981170535087585,-0.180691584944725,-0.0682286098599434,-0.981170535087585,-0.243546888232231,-0.0597889944911003,-0.968044579029083,-0.243546918034554,-0.0597893111407757,-0.968044579029083,-0.24354687333107,-0.0597891360521317,-0.968044519424438,-0.240817487239838,-0.0601639077067375,-0.968703985214233,-0.240817412734032,-0.0601634457707405,-0.968703925609589,-0.240817442536354,-0.0601637214422226,-0.968703925609589,-0.363558709621429,-0.0425509847700596,-0.930598974227905,-0.363558709621429,-0.0425512194633484,-0.93059903383255,-0.363558679819107,-0.0425512529909611,-0.930598974227905,-0.366368651390076,-0.04212886095047,-0.929515600204468,-0.366368621587753,-0.0421287938952446,-0.929515540599823,-0.366368621587753,-0.0421288907527924,-0.929515659809113,-0.209268167614937,-0.064439669251442,-0.975732803344727,-0.209268137812614,-0.0644395872950554,-0.975732743740082,-0.209268182516098,-0.0644397810101509,-0.975732803344727,-0.241959467530251,-0.0600068941712379,-0.968429088592529,-0.241959497332573,-0.0600070357322693,-0.968429088592529,-0.241959467530251,-0.0600070804357529,-0.968429028987885,-0.277430802583694,-0.0550758987665176,-0.959165751934052,-0.277430862188339,-0.0550760440528393,-0.959165751934052,-0.277430832386017,-0.0550759434700012,-0.959165751934052,-0.317397326231003,-0.0493637248873711,-0.947006940841675,-0.317397356033325,-0.0493635945022106,-0.94700700044632,-0.317397356033325,-0.0493636317551136,-0.94700700044632,-0.0735485255718231,-0.0817422494292259,-0.993936061859131,-0.0735485106706619,-0.0817421600222588,-0.993936002254486,-0.0735485181212425,-0.0817422643303871,-0.993936002254486,-0.149043440818787,-0.0723327770829201,-0.986181497573853,-0.149043440818787,-0.0723328813910484,-0.986181557178497,-0.149043440818787,-0.0723328962922096,-0.986181616783142,-0.171744510531425,-0.0693986043334007,-0.982694089412689,-0.171744495630264,-0.0693985521793365,-0.982694089412689,-0.171744525432587,-0.0693986117839813,-0.982694149017334,-0.249253243207932,-0.0590035244822502,-0.966639280319214, +-0.249253258109093,-0.0590035766363144,-0.966639280319214,-0.249253258109093,-0.0590035542845726,-0.966639220714569,-0.115405231714249,-0.0765911638736725,-0.990361273288727,-0.115405239164829,-0.0765912607312202,-0.990361273288727,-0.115405231714249,-0.0765911862254143,-0.990361273288727,-0.20507375895977,-0.0650009214878082,-0.976585686206818,-0.20507375895977,-0.0650008246302605,-0.976585745811462,-0.20507375895977,-0.0650008618831635,-0.976585686206818,-0.0919097810983658,-0.0795026421546936,-0.992588520050049,-0.0919097810983658,-0.0795026943087578,-0.992588460445404,-0.0919097885489464,-0.0795026794075966,-0.992588579654694,-0.187373742461205,-0.0673497468233109,-0.979977071285248,-0.187373742461205,-0.0673497244715691,-0.979977130889893,-0.187373772263527,-0.0673497468233109,-0.979977190494537,-0.126126065850258,-0.0752455517649651,-0.989156424999237,-0.126126065850258,-0.0752454772591591,-0.989156424999237,-0.126126065850258,-0.0752455741167068,-0.989156365394592,-0.222205311059952,-0.0626981854438782,-0.972981929779053,-0.222205325961113,-0.0626983419060707,-0.972981929779053,-0.222205311059952,-0.0626982674002647,-0.972981929779053,-0.151684477925301,-0.0719941407442093,-0.985803663730621,-0.151684463024139,-0.0719940662384033,-0.985803663730621,-0.151684463024139,-0.0719940438866615,-0.985803663730621,-0.245993465185165,-0.0594527348875999,-0.967446506023407,-0.245993450284004,-0.059452697634697,-0.967446446418762,-0.245993465185165,-0.0594527311623096,-0.967446506023407,-0.10411012917757,-0.0779972299933434,-0.991502702236176,-0.104110136628151,-0.0779972970485687,-0.99150276184082,-0.104110136628151,-0.0779972597956657,-0.99150276184082,-0.191530808806419,-0.0668008551001549,-0.979210793972015,-0.191530793905258,-0.0668007805943489,-0.979210793972015,-0.191530793905258,-0.0668008178472519,-0.979210793972015,-0.114161171019077,-0.0767465978860855,-0.990493476390839,-0.114161171019077,-0.0767466351389885,-0.990493416786194,-0.114161163568497,-0.0767466425895691,-0.990493416786194,-0.191495165228844,-0.0668055191636086,-0.97921746969223, +-0.191495135426521,-0.0668055266141891,-0.979217350482941,-0.191495165228844,-0.0668055415153503,-0.97921746969223,0.0391682982444763,-0.0948114618659019,-0.99472439289093,0.0391683131456375,-0.09481131285429,-0.994724452495575,0.039168294519186,-0.0948114395141602,-0.99472439289093,-0.00883055664598942,-0.0893884152173996,-0.995957791805267,-0.00883057061582804,-0.0893885418772697,-0.995957732200623,-0.00883057061582804,-0.0893885493278503,-0.995957791805267,0.0982073470950127,-0.101191222667694,-0.990007936954498,0.0982073247432709,-0.101191446185112,-0.990007936954498,0.0982073545455933,-0.101191237568855,-0.990007996559143,0.0746951699256897,-0.0986892580986023,-0.992311060428619,0.0746951848268509,-0.0986891314387321,-0.992311000823975,0.0746951997280121,-0.0986890569329262,-0.992311060428619,0.0168915819376707,-0.0923209637403488,-0.995586097240448,0.0168916136026382,-0.0923206731677055,-0.995586037635803,0.0168915912508965,-0.0923208817839622,-0.995586097240448,0.00199679587967694,-0.0906300470232964,-0.99588268995285,0.00199677352793515,-0.0906302556395531,-0.99588268995285,0.00199677259661257,-0.0906302556395531,-0.99588268995285,0.113328754901886,-0.102773331105709,-0.988227903842926,0.113328754901886,-0.102773182094097,-0.988227844238281,0.113328754901886,-0.102773331105709,-0.988227903842926,0.123580873012543,-0.103833682835102,-0.986887216567993,0.123580805957317,-0.10383428633213,-0.986887216567993,0.123580858111382,-0.103833824396133,-0.986887276172638,-0.149047404527664,-0.0723327249288559,-0.98618096113205,-0.149047344923019,-0.0723323225975037,-0.98618096113205,-0.149047359824181,-0.072332389652729,-0.986181020736694,-0.14208972454071,-0.0732218399643898,-0.987141847610474,-0.14208972454071,-0.0732217356562614,-0.987141907215118,-0.142089739441872,-0.0732219070196152,-0.987141847610474,-0.0898855626583099,-0.0797509253025055,-0.992753982543945,-0.0898855850100517,-0.0797510519623756,-0.992753982543945,-0.0898855850100517,-0.0797511041164398,-0.992753982543945,-0.0594509206712246,-0.0834406092762947,-0.994737863540649, +-0.0594509318470955,-0.0834406837821007,-0.994737863540649,-0.0594509206712246,-0.0834406688809395,-0.994737803936005,-0.155969485640526,-0.0714428573846817,-0.985174834728241,-0.155969485640526,-0.0714427679777145,-0.985174834728241,-0.155969500541687,-0.0714428499341011,-0.985174894332886,-0.17993038892746,-0.0716960430145264,-0.981063067913055,-0.179930314421654,-0.071695402264595,-0.981063187122345,-0.179930403828621,-0.071696050465107,-0.9810631275177,-0.118141882121563,-0.0791792348027229,-0.989834904670715,-0.118141993880272,-0.0791801810264587,-0.989834845066071,-0.11814196407795,-0.0791798830032349,-0.989834904670715,-0.300718426704407,-0.0559660159051418,-0.952069461345673,-0.300718426704407,-0.0559660494327545,-0.952069520950317,-0.300718426704407,-0.0559659525752068,-0.952069520950317,-0.260175228118896,-0.061413548886776,-0.963606357574463,-0.260175138711929,-0.0614128932356834,-0.963606476783752,-0.260175198316574,-0.0614134892821312,-0.963606357574463,-0.169690743088722,-0.0729613825678825,-0.982792794704437,-0.169690847396851,-0.0729622468352318,-0.982792794704437,-0.169690802693367,-0.0729619041085243,-0.982792854309082,-0.131105706095695,-0.0776405856013298,-0.988323450088501,-0.131105676293373,-0.0776403322815895,-0.988323509693146,-0.131105691194534,-0.0776402801275253,-0.988323569297791,-0.299777776002884,-0.0560944750905037,-0.952358603477478,-0.299777686595917,-0.0560937970876694,-0.952358663082123,-0.299777746200562,-0.0560943372547626,-0.952358543872833,-0.250020802021027,-0.0627503097057343,-0.966204941272736,-0.250020891427994,-0.0627508834004402,-0.96620500087738,-0.250020861625671,-0.0627508461475372,-0.966204881668091,-0.272932022809982,-0.0597181841731071,-0.960178077220917,-0.272932022809982,-0.0597184076905251,-0.960178077220917,-0.272932022809982,-0.0597181767225266,-0.960178077220917,-0.250328779220581,-0.0627106875181198,-0.966127753257751,-0.250328779220581,-0.0627103894948959,-0.966127872467041,-0.250328749418259,-0.0627104490995407,-0.966127753257751,0.0087714483961463,-0.0934128388762474,-0.995588898658752, +0.00877148378640413,-0.0934124886989594,-0.995588839054108,0.00877145957201719,-0.093412734568119,-0.995588898658752,-0.0201083831489086,-0.0903066769242287,-0.995711028575897,-0.0201083850115538,-0.0903066992759705,-0.995711028575897,-0.0201084092259407,-0.0903069153428078,-0.995711028575897,-0.282906085252762,-0.0583807118237019,-0.957369267940521,-0.282906085252762,-0.058380663394928,-0.957369208335876,-0.282906085252762,-0.0583807453513145,-0.957369208335876,-0.297755599021912,-0.0563698969781399,-0.952976405620575,-0.297755599021912,-0.056369960308075,-0.952976405620575,-0.297755658626556,-0.0563699789345264,-0.952976405620575,-0.11226063221693,-0.0798730030655861,-0.990463495254517,-0.112260594964027,-0.0798727571964264,-0.990463495254517,-0.11226063221693,-0.0798730701208115,-0.990463495254517,-0.355432987213135,-0.0483307428658009,-0.933451533317566,-0.355433017015457,-0.04833123087883,-0.933451414108276,-0.355433017015457,-0.0483311526477337,-0.933451414108276,-0.0840179920196533,-0.0831560343503952,-0.992988526821136,-0.0840180516242981,-0.083156555891037,-0.992988407611847,-0.0840179920196533,-0.0831559598445892,-0.992988526821136,-0.353366047143936,-0.0486265048384666,-0.934220552444458,-0.353366017341614,-0.0486258491873741,-0.934220612049103,-0.353365987539291,-0.0486256927251816,-0.934220612049103,-0.241934031248093,-0.0638083964586258,-0.968192338943481,-0.241934031248093,-0.0638081952929497,-0.968192458152771,-0.241934031248093,-0.0638082921504974,-0.968192398548126,-0.304293364286423,-0.0554770678281784,-0.950961530208588,-0.304293394088745,-0.0554771795868874,-0.950961589813232,-0.304293394088745,-0.0554771907627583,-0.950961589813232,-0.187433883547783,-0.0707618519663811,-0.979725182056427,-0.187433883547783,-0.0707617998123169,-0.979725122451782,-0.187433898448944,-0.0707618966698647,-0.979725182056427,-0.266629695892334,-0.060557771474123,-0.961894690990448,-0.266629695892334,-0.0605577006936073,-0.961894690990448,-0.266629695892334,-0.0605578422546387,-0.961894631385803,-0.177933305501938,-0.0719436183571815,-0.981409132480621, +-0.177933305501938,-0.0719435289502144,-0.981409132480621,-0.17793333530426,-0.0719437450170517,-0.981409132480621,-0.265510976314545,-0.0607063136994839,-0.962194740772247,-0.265511006116867,-0.0607064366340637,-0.962194681167603,-0.265511006116867,-0.0607064589858055,-0.962194681167603,-0.14461287856102,-0.0760188326239586,-0.986563861370087,-0.14461287856102,-0.0760189369320869,-0.986563861370087,-0.144612893462181,-0.0760189443826675,-0.986563920974731,-0.239267408847809,-0.0641554743051529,-0.968831956386566,-0.23926742374897,-0.0641554296016693,-0.968831956386566,-0.239267393946648,-0.0641555041074753,-0.968831837177277,-0.0845600292086601,-0.083093523979187,-0.992947697639465,-0.0845600292086601,-0.083093598484993,-0.99294775724411,-0.0845600366592407,-0.0830936580896378,-0.992947638034821,-0.215182051062584,-0.0672587752342224,-0.9742551445961,-0.215182065963745,-0.0672590658068657,-0.97425502538681,-0.215182065963745,-0.067258857190609,-0.9742551445961,-0.166565477848053,-0.0733465030789375,-0.983298659324646,-0.166565462946892,-0.0733463764190674,-0.983298659324646,-0.166565462946892,-0.073346234858036,-0.983298718929291,-0.292525321245193,-0.0570809915661812,-0.95455265045166,-0.292525261640549,-0.0570805706083775,-0.954552710056305,-0.292525291442871,-0.0570808984339237,-0.954552590847015,-0.177015617489815,-0.0720570832490921,-0.981566786766052,-0.177015632390976,-0.0720572993159294,-0.981566727161407,-0.177015647292137,-0.072057418525219,-0.981566667556763,-0.264796108007431,-0.0608012899756432,-0.962385654449463,-0.264796137809753,-0.0608014240860939,-0.962385714054108,-0.264796108007431,-0.0608013570308685,-0.962385654449463,-0.26025578379631,-0.061402902007103,-0.963585317134857,-0.26025578379631,-0.0614030882716179,-0.963585317134857,-0.26025578379631,-0.0614028424024582,-0.963585376739502,-0.343288242816925,-0.0500549450516701,-0.93789541721344,-0.34328818321228,-0.0500545985996723,-0.937895476818085,-0.34328818321228,-0.050054743885994,-0.937895357608795,-0.181039690971375,-0.0715581923723221,-0.980869114398956, +-0.181039661169052,-0.0715580582618713,-0.980869054794312,-0.181039690971375,-0.0715582966804504,-0.980869114398956,-0.215271100401878,-0.0672472640872002,-0.974236249923706,-0.215271100401878,-0.0672474205493927,-0.974236249923706,-0.21527111530304,-0.0672474876046181,-0.974236249923706,-0.186932250857353,-0.0708244517445564,-0.979816436767578,-0.186932295560837,-0.0708248540759087,-0.979816436767578,-0.186932280659676,-0.0708245113492012,-0.979816436767578,-0.395219445228577,-0.042564794421196,-0.917600035667419,-0.395219415426254,-0.0425643660128117,-0.917600154876709,-0.395219355821609,-0.0425645969808102,-0.917600035667419,-0.450700253248215,-0.0342002771794796,-0.892020046710968,-0.450700163841248,-0.0342000313103199,-0.892020046710968,-0.450700253248215,-0.034200482070446,-0.892020046710968,-0.113012596964836,-0.0797837600111961,-0.990385174751282,-0.113012738525867,-0.0797849670052528,-0.990385115146637,-0.113012701272964,-0.0797846093773842,-0.990385115146637,-0.115124389529228,-0.0795363113284111,-0.990161836147308,-0.115124329924583,-0.079536072909832,-0.990161776542664,-0.115124344825745,-0.079535961151123,-0.990161895751953,-0.24290357530117,-0.0636819750070572,-0.96795791387558,-0.242903485894203,-0.0636814683675766,-0.96795791387558,-0.242903560400009,-0.0636818706989288,-0.967957973480225,-0.238897711038589,-0.0642031878232956,-0.968919932842255,-0.238897860050201,-0.0642044171690941,-0.968919932842255,-0.238897770643234,-0.0642035752534866,-0.968919932842255,-0.0134184993803501,-0.0910343155264854,-0.995757400989532,-0.0134183280169964,-0.0910327360033989,-0.995757579803467,-0.0134183913469315,-0.0910333245992661,-0.995757460594177,0.0256359428167343,-0.0951896533370018,-0.995128989219666,0.0256357248872519,-0.0951917171478271,-0.995128870010376,0.0256358794867992,-0.0951902717351913,-0.995128929615021,-0.0768409594893456,-0.0839794725179672,-0.993500411510468,-0.0768407136201859,-0.0839771926403046,-0.993500590324402,-0.0768408328294754,-0.083978183567524,-0.993500530719757,-0.0239708703011274,-0.0898846089839935,-0.995663702487946, +-0.0239709559828043,-0.0898853838443756,-0.995663702487946,-0.0239709783345461,-0.0898856073617935,-0.995663642883301,-0.00576418731361628,-0.0918590575456619,-0.995755314826965,-0.00576437264680862,-0.0918607786297798,-0.995755195617676,-0.0057642119936645,-0.0918592810630798,-0.99575537443161,0.0498086512088776,-0.0976932644844055,-0.99396938085556,0.0498088411986828,-0.0976915434002876,-0.993969559669495,0.049808818846941,-0.0976917147636414,-0.993969559669495,-0.387342393398285,-0.0437213219702244,-0.920898616313934,-0.38734245300293,-0.0437218770384789,-0.920898616313934,-0.387342423200607,-0.0437211617827415,-0.920898735523224,-0.276995867490768,-0.0591755285859108,-0.959047198295593,-0.276995450258255,-0.0591715350747108,-0.959047615528107,-0.276995778083801,-0.0591745376586914,-0.959047377109528,-0.190980300307274,-0.0703152492642403,-0.979072153568268,-0.190981030464172,-0.07032161206007,-0.97907167673111,-0.190980657935143,-0.0703184008598328,-0.979071915149689,-0.0818179771304131,-0.0834117829799652,-0.99315071105957,-0.0818172767758369,-0.0834053084254265,-0.993151366710663,-0.0818176344037056,-0.0834085568785667,-0.993151068687439,-0.714291036128998,0.0121102128177881,-0.699744045734406,-0.714291155338287,0.0121093839406967,-0.699743986129761,-0.714291274547577,0.0121080707758665,-0.699743807315826,-0.343544811010361,-0.050018310546875,-0.937803447246552,-0.343545943498611,-0.0500288940966129,-0.93780243396759,-0.343544840812683,-0.0500184968113899,-0.937803387641907,-0.190168187022209,-0.0704206824302673,-0.97922271490097,-0.190168246626854,-0.070421427488327,-0.979222655296326,-0.190168097615242,-0.0704201087355614,-0.979222655296326,-0.197553083300591,-0.0694946423172951,-0.977825880050659,-0.197553083300591,-0.0694949626922607,-0.97782576084137,-0.197552919387817,-0.0694933012127876,-0.977825999259949,-0.196258068084717,-0.0696578845381737,-0.978074908256531,-0.196257814764977,-0.0696554705500603,-0.97807514667511,-0.196257904171944,-0.0696562230587006,-0.97807514667511,-0.174109920859337,-0.0724160745739937,-0.982059895992279, +-0.174109935760498,-0.0724161639809608,-0.982059895992279,-0.174110010266304,-0.0724168494343758,-0.982059895992279,-0.208047896623611,-0.0681660920381546,-0.975740492343903,-0.208048239350319,-0.0681694224476814,-0.975740134716034,-0.208047986030579,-0.0681668221950531,-0.975740432739258,-0.149014070630074,-0.0754894092679024,-0.985949456691742,-0.149013787508011,-0.0754868984222412,-0.985949635505676,-0.14901377260685,-0.0754868760704994,-0.985949575901031,-0.0900817364454269,-0.0819867476820946,-0.992554068565369,-0.090081624686718,-0.0819858312606812,-0.992554068565369,-0.0900817289948463,-0.081986628472805,-0.992554068565369,-0.31476429104805,-0.0532777085900307,-0.947673439979553,-0.314764380455017,-0.0532782897353172,-0.947673439979553,-0.314764350652695,-0.0532781966030598,-0.947673499584198,-0.127890825271606,-0.0775032863020897,-0.988755464553833,-0.127891063690186,-0.0775054693222046,-0.988755226135254,-0.127890780568123,-0.0775029435753822,-0.988755404949188,-0.993413090705872,0.104149423539639,-0.0477855950593948,-0.993413209915161,0.104147844016552,-0.0477854460477829,-0.993412911891937,0.104151085019112,-0.0477857477962971,0.980354726314545,-0.121519587934017,-0.155362650752068,0.980354964733124,-0.121517442166805,-0.155362829566002,0.980354785919189,-0.12151937186718,-0.155362650752068,-0.103861525654793,-0.080368310213089,-0.991339445114136,-0.103861466050148,-0.0803677290678024,-0.991339504718781,-0.103861503303051,-0.0803682208061218,-0.991339385509491,0.0168276689946651,-0.0939373522996902,-0.995435893535614,0.0168274585157633,-0.0939393043518066,-0.995435774326324,0.0168276410549879,-0.0939376279711723,-0.995435953140259,-0.172485634684563,-0.0720406919717789,-0.982374131679535,-0.172485485672951,-0.0720392614603043,-0.982374250888824,-0.172485455870628,-0.0720387101173401,-0.982374370098114,-0.0962299779057503,-0.0812673196196556,-0.992035984992981,-0.0962299108505249,-0.0812667533755302,-0.992036044597626,-0.0962299108505249,-0.0812667533755302,-0.992036044597626,-0.181509137153625,-0.0709095448255539,-0.980829417705536, +-0.181509256362915,-0.0709105655550957,-0.980829298496246,-0.181509152054787,-0.0709095522761345,-0.980829477310181,-0.113160088658333,-0.0792669355869293,-0.990409851074219,-0.113159753382206,-0.0792639181017876,-0.990410149097443,-0.113159984350204,-0.0792659819126129,-0.990409970283508,-0.0856011286377907,-0.0825069472193718,-0.992907464504242,-0.0856015086174011,-0.0825105458498001,-0.992907047271729,-0.085601344704628,-0.0825089737772942,-0.992907285690308,0.0262765064835548,-0.0949441343545914,-0.99513578414917,0.0262767896056175,-0.094941534101963,-0.995136022567749,0.0262766778469086,-0.0949425771832466,-0.995135962963104,-0.132658272981644,-0.0769267678260803,-0.988172054290771,-0.13265834748745,-0.0769273564219475,-0.988172054290771,-0.132658407092094,-0.0769279003143311,-0.988171994686127,-0.0521194636821747,-0.0863521546125412,-0.994900524616241,-0.0521196648478508,-0.0863540172576904,-0.994900286197662,-0.0521195232868195,-0.0863526910543442,-0.994900465011597,-0.168957278132439,-0.0724794045090675,-0.982954859733582,-0.168957084417343,-0.0724776238203049,-0.982955038547516,-0.168957129120827,-0.0724780559539795,-0.982955038547516,-0.151182651519775,-0.0746724829077721,-0.985681474208832,-0.15118271112442,-0.0746731087565422,-0.985681414604187,-0.151182681322098,-0.0746729075908661,-0.985681414604187,-0.0247595012187958,-0.0894158929586411,-0.995686650276184,-0.0247593969106674,-0.0894149467349052,-0.995686709880829,-0.0247594732791185,-0.0894156619906425,-0.995686590671539,-0.0451516136527061,-0.0871386453509331,-0.995172441005707,-0.0451517328619957,-0.0871397480368614,-0.995172321796417,-0.0451516918838024,-0.0871393829584122,-0.995172441005707,-0.0963173434138298,-0.0812568813562393,-0.992028415203094,-0.0963173359632492,-0.0812566205859184,-0.992028474807739,-0.0963173061609268,-0.0812564939260483,-0.992028415203094,-0.131022706627846,-0.0771255940198898,-0.988374829292297,-0.131022706627846,-0.0771256759762764,-0.988374769687653,-0.131022691726685,-0.0771254375576973,-0.988374888896942,-0.0664202943444252,-0.084724061191082,-0.994188249111176, +-0.0664202570915222,-0.0847237110137939,-0.994188249111176,-0.0664202719926834,-0.0847238302230835,-0.994188189506531,-0.126894190907478,-0.0776227340102196,-0.988874435424805,-0.12689420580864,-0.0776228755712509,-0.98887437582016,-0.12689420580864,-0.0776228681206703,-0.98887437582016,-0.0149950832128525,-0.0904918387532234,-0.995784401893616,-0.0149950869381428,-0.0904918685555458,-0.995784401893616,-0.0149950888007879,-0.0904918760061264,-0.995784401893616,-0.10006308555603,-0.0808161348104477,-0.991693556308746,-0.100063070654869,-0.0808160752058029,-0.991693615913391,-0.10006307810545,-0.0808161348104477,-0.991693556308746,-0.10901714861393,-0.0797580182552338,-0.990835011005402,-0.10901714861393,-0.079757995903492,-0.990835070610046,-0.10901714861393,-0.0797580778598785,-0.990834951400757,-0.199492484331131,-0.0686352401971817,-0.977492690086365,-0.199492484331131,-0.0686351880431175,-0.977492690086365,-0.199492529034615,-0.0686354041099548,-0.97749274969101,-0.0690818354487419,-0.0844184830784798,-0.994032919406891,-0.0690818354487419,-0.0844184830784798,-0.994032919406891,-0.0690818354487419,-0.0844185724854469,-0.994032859802246,-0.316957056522369,-0.0529726073145866,-0.946959495544434,-0.316957026720047,-0.0529725439846516,-0.946959435939789,-0.316957026720047,-0.0529724955558777,-0.946959495544434,-0.114102251827717,-0.0791538208723068,-0.990310788154602,-0.114102244377136,-0.0791538059711456,-0.990310728549957,-0.114102251827717,-0.0791538283228874,-0.990310788154602,0.0507842227816582,-0.0975102335214615,-0.993937969207764,0.0507842227816582,-0.0975102335214615,-0.993938028812408,0.0507842227816582,-0.0975102111697197,-0.993937969207764,-0.20871502161026,-0.0674566626548767,-0.975647270679474,-0.208715051412582,-0.0674566254019737,-0.975647389888763,-0.208715036511421,-0.0674567073583603,-0.975647270679474,0.123791366815567,-0.104824811220169,-0.986756086349487,0.123791351914406,-0.104824766516685,-0.986756026744843,0.123791344463825,-0.104824841022491,-0.986756026744843,-0.1236222833395,-0.0780159085988998,-0.989257872104645, +-0.123622290790081,-0.0780160278081894,-0.989257872104645,-0.1236222833395,-0.0780159384012222,-0.9892578125,-0.0215734075754881,-0.0897679105401039,-0.995729029178619,-0.0215733908116817,-0.089767761528492,-0.995729088783264,-0.0215733963996172,-0.0897678136825562,-0.995729148387909,-0.120025925338268,-0.0784467756748199,-0.989666640758514,-0.120025917887688,-0.0784468278288841,-0.98966658115387,-0.120025925338268,-0.0784468129277229,-0.98966658115387,-0.0352215878665447,-0.0882527083158493,-0.995475292205811,-0.0352216064929962,-0.088252879679203,-0.995475232601166,-0.0352215841412544,-0.0882526934146881,-0.995475292205811,-0.119721882045269,-0.0784833654761314,-0.989700496196747,-0.119721859693527,-0.0784830674529076,-0.989700555801392,-0.119721874594688,-0.0784831866621971,-0.989700555801392,-0.0958903282880783,-0.0813064873218536,-0.992065668106079,-0.0958903357386589,-0.0813065394759178,-0.992065668106079,-0.0958903431892395,-0.0813066065311432,-0.992065668106079,-0.167561188340187,-0.0726515054702759,-0.983181118965149,-0.167561218142509,-0.0726518332958221,-0.983181118965149,-0.167561188340187,-0.0726515352725983,-0.983181059360504,-0.0912792906165123,-0.0818470343947411,-0.992456197738647,-0.0912792161107063,-0.0818464159965515,-0.992456197738647,-0.0912792459130287,-0.081846684217453,-0.992456138134003,-0.138806119561195,-0.0761829167604446,-0.987384974956512,-0.138806059956551,-0.0761823356151581,-0.987385034561157,-0.138806164264679,-0.0761831849813461,-0.987384974956512,-0.284257352352142,-0.0574766807258129,-0.957023620605469,-0.284257531166077,-0.0574780181050301,-0.957023561000824,-0.284257441759109,-0.0574774332344532,-0.957023561000824,-0.332373172044754,-0.0508088320493698,-0.941778481006622,-0.332373082637787,-0.0508083142340183,-0.941778421401978,-0.332373082637787,-0.0508082844316959,-0.941778481006622,-0.173862814903259,-0.0718668922781944,-0.982143998146057,-0.173862770199776,-0.0718665570020676,-0.982144117355347,-0.173862814903259,-0.0718668773770332,-0.982144117355347,-0.169137641787529,-0.0724552869796753,-0.982925653457642, +-0.16913765668869,-0.072455421090126,-0.982925653457642,-0.169137701392174,-0.0724555999040604,-0.982925653457642,-0.179879158735275,-0.0711139366030693,-0.981114864349365,-0.179879233241081,-0.071114681661129,-0.98111480474472,-0.179879158735275,-0.071114107966423,-0.981114864349365,-0.131571903824806,-0.0770597383379936,-0.988306939601898,-0.131571844220161,-0.0770590528845787,-0.988307058811188,-0.131571844220161,-0.0770591422915459,-0.988306999206543,-0.0282692275941372,-0.0890265181660652,-0.995627999305725,-0.0282692797482014,-0.0890269950032234,-0.99562805891037,-0.0282692424952984,-0.0890266597270966,-0.99562805891037,0.0290299281477928,-0.0952341705560684,-0.995031595230103,0.0290299318730831,-0.0952340960502625,-0.995031535625458,0.0290299654006958,-0.0952338352799416,-0.995031654834747,-0.450536876916885,-0.0333011299371719,-0.892136514186859,-0.45053705573082,-0.0333028696477413,-0.89213639497757,-0.450536847114563,-0.0333009995520115,-0.892136514186859,-0.375998675823212,-0.0445407964289188,-0.925549209117889,-0.375998258590698,-0.0445372015237808,-0.925549447536469,-0.375998377799988,-0.0445388443768024,-0.925549268722534,0.0257754847407341,-0.0979089066386223,-0.994861602783203,0.0257754940539598,-0.0979087948799133,-0.994861543178558,0.0257755480706692,-0.0979083478450775,-0.994861662387848,-0.0402731783688068,-0.0906026139855385,-0.995072484016418,-0.0402731411159039,-0.0906022563576698,-0.995072603225708,-0.0402731262147427,-0.0906021445989609,-0.995072603225708,-0.211292013525963,-0.0697081312537193,-0.974934101104736,-0.21129198372364,-0.0697079375386238,-0.974934101104736,-0.211292028427124,-0.0697080716490746,-0.974934160709381,0.0925524085760117,-0.104867115616798,-0.990170240402222,0.0925523564219475,-0.104867443442345,-0.990170121192932,0.0925523936748505,-0.104867249727249,-0.990170180797577,-0.115212790668011,-0.0818019434809685,-0.989966988563538,-0.11521278321743,-0.0818018838763237,-0.989966928958893,-0.115212760865688,-0.0818017721176147,-0.989966988563538,-0.0604448318481445,-0.0882870629429817,-0.994259476661682, +-0.060444813221693,-0.088286928832531,-0.994259536266327,-0.060444813221693,-0.0882869362831116,-0.994259476661682,-0.17228102684021,-0.0747303664684296,-0.982209146022797,-0.172280982136726,-0.0747302174568176,-0.982209086418152,-0.17228102684021,-0.0747303664684296,-0.982209146022797,-0.0938211157917976,-0.084369458258152,-0.992007851600647,-0.093821108341217,-0.0843695774674416,-0.992007732391357,-0.0938211232423782,-0.0843695923686028,-0.992007791996002,-0.211460039019585,-0.0696860626339912,-0.974899232387543,-0.211460024118423,-0.0696861147880554,-0.974899232387543,-0.211460024118423,-0.0696861073374748,-0.974899291992188,-0.134184941649437,-0.079486757516861,-0.987763285636902,-0.134184926748276,-0.0794865414500237,-0.987763345241547,-0.134184941649437,-0.0794867724180222,-0.987763345241547,-0.251818984746933,-0.0643239840865135,-0.965634405612946,-0.251818984746933,-0.0643241107463837,-0.965634286403656,-0.251819014549255,-0.0643241703510284,-0.965634346008301,-0.072249710559845,-0.0869137123227119,-0.99359256029129,-0.0722497403621674,-0.0869139954447746,-0.993592441082001,-0.0722497180104256,-0.0869137719273567,-0.993592500686646,-0.183378145098686,-0.0733176842331886,-0.980304598808289,-0.183378130197525,-0.0733175724744797,-0.980304598808289,-0.183378145098686,-0.0733174830675125,-0.980304598808289,-0.116456881165504,-0.0816511437296867,-0.989833772182465,-0.116456851363182,-0.081650897860527,-0.989833831787109,-0.116456866264343,-0.0816510543227196,-0.989833831787109,-0.217067152261734,-0.0689511895179749,-0.973718464374542,-0.217067196965218,-0.0689514800906181,-0.973718464374542,-0.217067152261734,-0.0689513236284256,-0.973718404769897,-0.0201283842325211,-0.0928752720355988,-0.995474338531494,-0.0201283674687147,-0.0928751453757286,-0.995474338531494,-0.020128358155489,-0.0928750559687614,-0.995474338531494,-0.0895171537995338,-0.0848809108138084,-0.992361783981323,-0.0895171537995338,-0.0848808437585831,-0.992361783981323,-0.0895171537995338,-0.0848808288574219,-0.992361783981323,-0.0988571420311928,-0.0837691202759743,-0.991569459438324, +-0.098857156932354,-0.0837691500782967,-0.991569519042969,-0.0988571494817734,-0.0837691053748131,-0.991569519042969,-0.153745099902153,-0.0770627707242966,-0.985100984573364,-0.153745085000992,-0.077062800526619,-0.985100924968719,-0.153745099902153,-0.077062726020813,-0.985100984573364,-0.151634231209755,-0.0773262307047844,-0.985407471656799,-0.151634261012077,-0.0773265436291695,-0.98540735244751,-0.151634246110916,-0.0773261487483978,-0.98540735244751,-0.1849435120821,-0.0731175616383553,-0.980025351047516,-0.184943467378616,-0.0731170773506165,-0.980025410652161,-0.184943497180939,-0.0731171742081642,-0.980025410652161,-0.232461959123611,-0.0669170767068863,-0.970300853252411,-0.232461929321289,-0.066916897892952,-0.970300793647766,-0.232461929321289,-0.0669171512126923,-0.970300734043121,-0.244366198778152,-0.0653269439935684,-0.967480003833771,-0.244366258382797,-0.0653274804353714,-0.967479944229126,-0.244366213679314,-0.0653271898627281,-0.967479944229126,-0.212557837367058,-0.069542795419693,-0.974670708179474,-0.212557762861252,-0.0695423483848572,-0.974670767784119,-0.212557792663574,-0.0695425048470497,-0.974670708179474,-0.189221054315567,-0.0725683867931366,-0.979249358177185,-0.189221054315567,-0.0725684389472008,-0.979249358177185,-0.189221084117889,-0.0725685432553291,-0.979249358177185,-0.305391103029251,-0.0569379180669785,-0.950523257255554,-0.305391103029251,-0.0569381974637508,-0.950523257255554,-0.305391132831573,-0.0569380484521389,-0.950523257255554,-0.258887588977814,-0.063367523252964,-0.963826656341553,-0.258887410163879,-0.0633659288287163,-0.963826835155487,-0.258887588977814,-0.0633673965930939,-0.963826715946198,-0.368076503276825,-0.0478850826621056,-0.928561627864838,-0.368076711893082,-0.0478873886168003,-0.928561449050903,-0.368076682090759,-0.0478865131735802,-0.928561508655548,-0.286218553781509,-0.0596182942390442,-0.956307828426361,-0.286218345165253,-0.0596160292625427,-0.95630806684494,-0.286218464374542,-0.0596174076199532,-0.956307828426361,-0.32730758190155,-0.0538235008716583,-0.943383693695068, +-0.327307492494583,-0.0538229644298553,-0.943383812904358,-0.327307760715485,-0.0538248457014561,-0.943383574485779,-0.203862383961678,-0.0706745088100433,-0.976445257663727,-0.203862875699997,-0.0706789642572403,-0.976444840431213,-0.203862607479095,-0.0706765204668045,-0.976445078849792,-0.210082039237022,-0.0698686540126801,-0.97518402338028,-0.21008212864399,-0.0698692575097084,-0.975184082984924,-0.210081785917282,-0.0698662251234055,-0.975184321403503,-0.0874788463115692,-0.0851253569126129,-0.992522597312927,-0.0874782204627991,-0.085119716823101,-0.992523193359375,-0.0874785110354424,-0.0851223468780518,-0.992522954940796,-0.993939340114594,0.108662530779839,-0.0166474655270576,-0.993939161300659,0.108663707971573,-0.0166475772857666,-0.993939518928528,0.108660876750946,-0.01664730720222,0.955785036087036,-0.131164103746414,-0.263193935155869,0.955785155296326,-0.131163284182549,-0.263193994760513,0.955784976482391,-0.131164699792862,-0.263193875551224,-0.163023322820663,-0.0758966356515884,-0.983698725700378,-0.163023561239243,-0.0758988261222839,-0.983698487281799,-0.16302365064621,-0.0758995190262794,-0.983698487281799,-0.0330748967826366,-0.0914182811975479,-0.995263159275055,-0.0330753065645695,-0.0914219841361046,-0.995262801647186,-0.0330749526619911,-0.0914187952876091,-0.995263159275055,-0.214609116315842,-0.0692769959568977,-0.974240005016327,-0.214608773589134,-0.0692738145589828,-0.974240303039551,-0.214608803391457,-0.0692738816142082,-0.974240362644196,-0.127552032470703,-0.08030004799366,-0.98857593536377,-0.127551957964897,-0.0802994146943092,-0.988575994968414,-0.127552047371864,-0.0803001597523689,-0.988575994968414,-0.21215146780014,-0.0695949420332909,-0.974755525588989,-0.212151572108269,-0.0695956572890282,-0.974755465984344,-0.212151572108269,-0.0695956572890282,-0.974755465984344,-0.138358414173126,-0.078972764313221,-0.987228572368622,-0.138358443975449,-0.0789729729294777,-0.987228631973267,-0.138358429074287,-0.0789727494120598,-0.987228631973267,-0.416540533304214,-0.0405668169260025,-0.908211648464203, +-0.416540563106537,-0.0405671931803226,-0.908211588859558,-0.416540503501892,-0.0405664965510368,-0.908211708068848,-0.360443949699402,-0.0490138679742813,-0.931492269039154,-0.360443860292435,-0.0490130409598351,-0.931492388248444,-0.360443860292435,-0.0490131750702858,-0.931492388248444,-0.284940958023071,-0.0597943812608719,-0.956678330898285,-0.284940868616104,-0.0597934201359749,-0.956678330898285,-0.284940987825394,-0.0597945004701614,-0.95667827129364,0.240148305892944,-0.118685565888882,-0.963453531265259,0.24014812707901,-0.118686884641647,-0.963453352451324,0.240148186683655,-0.118686586618423,-0.963453412055969,0.188557237386703,-0.114106632769108,-0.975410580635071,0.188557237386703,-0.11410690844059,-0.975410640239716,0.188557311892509,-0.114106334745884,-0.97541069984436,0.128132447600365,-0.108398430049419,-0.985815346240997,0.128132522106171,-0.108397781848907,-0.985815405845642,0.128132507205009,-0.108397863805294,-0.985815405845642,0.0651031211018562,-0.10205889493227,-0.992645740509033,0.0651031583547592,-0.102058589458466,-0.992645800113678,0.0651031211018562,-0.102058984339237,-0.992645740509033,-0.0488505735993385,-0.128729775547981,0.99047577381134,-0.0490210391581059,-0.11265379935503,0.992424309253693,-0.0485742688179016,-0.228033363819122,0.972440958023071,-0.0480849370360374,-0.254979908466339,0.96575003862381,-0.0384053513407707,-0.112553633749485,0.992903172969818,-0.0398997515439987,-0.097927451133728,0.994393467903137,-0.0331899672746658,-0.165081113576889,0.985721409320831,-0.0269422009587288,-0.226715847849846,0.973588347434998,-0.0231952480971813,-0.226476848125458,0.97374039888382,-0.0287263598293066,-0.164347723126411,0.985984086990356,-0.0215564761310816,-0.185573577880859,0.9823939204216,-0.0141893308609724,-0.258948922157288,0.965786755084991,-0.0428057834506035,-0.255192250013351,0.9659423828125,-0.0444138683378696,-0.227788195014,0.972697257995605,-0.0425335168838501,-0.261398106813431,0.964293479919434,-0.0403595939278603,-0.29992738366127,0.953107953071594,-0.100959487259388,-0.258830040693283,0.96063220500946, +-0.0939233601093292,-0.231669500470161,0.9682497382164,-0.0984243527054787,-0.257211565971375,0.961329758167267,-0.107733979821205,-0.295021504163742,0.949397623538971,-0.0922073870897293,-0.232141584157944,0.968301653862,-0.0762169361114502,-0.14839594066143,0.985986649990082,-0.0728780701756477,-0.135148361325264,0.988141596317291,-0.0960391089320183,-0.257586389780045,0.961470603942871,-0.0733127892017365,-0.261077255010605,0.962529957294464,-0.0634084865450859,-0.13649819791317,0.988608956336975,-0.0612580217421055,-0.12791807949543,0.989891231060028,-0.071567215025425,-0.253948301076889,0.96456652879715,-0.075182132422924,-0.300404578447342,0.95084422826767,-0.0721727535128593,-0.261248588562012,0.962569713592529,-0.0711138397455215,-0.253969579935074,0.964594423770905,-0.0746226385235786,-0.298721224069595,0.951418459415436,-0.038519348949194,-0.0977963730692863,0.994460821151733,-0.0449191778898239,-0.012822569347918,0.998908400535583,-0.030679926276207,-0.061275526881218,0.997649312019348,-0.0209765564650297,-0.163066640496254,0.986392080783844,-0.0405813418328762,-0.0123510863631964,0.999099969863892,-0.0471956506371498,0.0613766238093376,0.996998310089111,-0.036113578826189,0.0428841933608055,0.998427212238312,-0.024000808596611,-0.0597408637404442,0.997925341129303,-0.0235348735004663,-0.0596337132155895,0.997942924499512,-0.044259887188673,0.0407893732190132,0.998187005519867,-0.0338637568056583,0.0361415930092335,0.998772799968719,-0.00850651506334543,-0.0796735808253288,0.996784806251526,-0.00665498711168766,-0.160673215985298,0.986985206604004,-0.0279348865151405,-0.0606451071798801,0.997768461704254,-0.0252514332532883,-0.0841502025723457,0.996133148670197,-0.00432913051918149,-0.182294875383377,0.983234405517578,-0.0927135869860649,-0.0811224728822708,0.992382645606995,-0.0770809724926949,-0.064333513379097,0.994947075843811,-0.107281282544136,-0.147656634449959,0.983203113079071,-0.12757021188736,-0.17488169670105,0.976290106773376,-0.079095795750618,-0.0634262561798096,0.994847238063812,-0.0518298931419849,-0.0088235791772604,0.998616993427277, +-0.0674579441547394,-0.0722487047314644,0.995102882385254,-0.102602764964104,-0.149445161223412,0.983432233333588,-0.0925376862287521,-0.15327687561512,0.983841001987457,-0.0635998621582985,-0.0733084157109261,0.995279312133789,-0.0791069120168686,-0.147727712988853,0.985859394073486,-0.107708975672722,-0.227847293019295,0.967721283435822,-0.10608446598053,-0.183728963136673,0.977235794067383,-0.0955076515674591,-0.152148514986038,0.983732283115387,-0.120272234082222,-0.224317863583565,0.967065751552582,-0.12889789044857,-0.250603884458542,0.959470272064209,-0.0332788378000259,0.0630972012877464,0.997452437877655,-0.0421598292887211,0.13735531270504,0.989624261856079,-0.0504518747329712,0.14759036898613,0.9877610206604,-0.0355965942144394,0.0430170111358166,0.998440086841583,-0.0352516248822212,0.13825623691082,0.989768922328949,-0.0441426858305931,0.221758678555489,0.974101960659027,-0.0596828870475292,0.261901766061783,0.963247299194336,-0.0443318001925945,0.149192854762077,0.987813949584961,-0.0497996956110001,0.147761434316635,0.987768471240997,-0.0754163414239883,0.258237540721893,0.96313339471817,-0.0728298202157021,0.272745043039322,0.959325790405273,-0.0467929914593697,0.160818934440613,0.985874116420746,-0.0270896442234516,0.0452003814280033,0.998610615730286,-0.0505081005394459,0.147575616836548,0.987760305404663,-0.0620606876909733,0.156151935458183,0.98578143119812,-0.0331474840641022,0.0363615937530994,0.998788833618164,-0.037188358604908,0.0966462790966034,0.994623780250549,-0.0378273911774158,0.0802180022001266,0.99605929851532,-0.0417734123766422,-0.00143750105053186,0.999126136302948,-0.0415285266935825,-0.0125752612948418,0.999058246612549,-0.0404229797422886,0.0802019983530045,0.995958685874939,-0.037237174808979,0.0626091659069061,0.997343242168427,-0.035355731844902,-0.011782911606133,0.999305427074432,-0.0385565683245659,-0.00144793081562966,0.999255478382111,-0.0410357788205147,-0.00143989408388734,0.999156713485718,-0.038004394620657,-0.0120709259063005,0.999204754829407,-0.0357213839888573,-0.0975301116704941,0.994591355323792, +-0.0370102152228355,-0.112539529800415,0.992957830429077,-0.0430125370621681,-0.0124490847811103,0.998997032642365,-0.0419726185500622,-0.00143685471266508,0.999117791652679,-0.0465606264770031,-0.11263170838356,0.992545306682587,-0.0482886843383312,-0.128766059875488,0.990498661994934,-0.0798257887363434,-0.147561267018318,0.985826313495636,-0.0686610043048859,-0.071917936205864,0.995044469833374,-0.0558746866881847,-0.0272842422127724,0.998064935207367,-0.0738106444478035,-0.135014697909355,0.988090634346008,-0.0712521076202393,-0.0712051093578339,0.994913578033447,-0.0591440759599209,-0.00650547817349434,0.998228311538696,-0.0434441901743412,0.0459700971841812,0.99799770116806,-0.0575643181800842,-0.0270012859255075,0.99797660112381,-0.0553461313247681,-0.027372732758522,0.99809193611145,-0.0451939515769482,0.0463274940848351,0.997903525829315,-0.0376680828630924,0.0966959446668625,0.9946009516716,-0.0535980500280857,-0.0115480292588472,0.998495876789093,-0.0654854774475098,-0.136203289031982,0.988514244556427,-0.0554071366786957,-0.0273625217378139,0.998088896274567,-0.0518573336303234,-0.0116963284090161,0.998586058616638,-0.0621783658862114,-0.127857059240341,0.98984169960022,-0.037189956754446,0.0966464504599571,0.994623720645905,-0.0343210510909557,0.194619789719582,0.980278193950653,-0.0346861444413662,0.160547658801079,0.986418426036835,-0.0375572219491005,0.0802196338772774,0.996069431304932,-0.033921979367733,0.194598600268364,0.980296313762665,-0.0333512835204601,0.296942412853241,0.954312801361084,-0.0337211973965168,0.261018455028534,0.964744687080383,-0.0338014736771584,0.160565629601479,0.986446261405945,-0.0379767790436745,0.160479694604874,0.986308336257935,-0.0459439232945442,0.260225623846054,0.964454174041748,-0.0432452969253063,0.221886202692986,0.974113166332245,-0.0368211604654789,0.13805216550827,0.989740371704102,-0.0367987714707851,0.0802241936326027,0.996097385883331,-0.0402310565114021,0.160432115197182,0.986226618289948,-0.0404564253985882,0.13757811486721,0.989664435386658,-0.0368902087211609,0.0626519843935966,0.997353434562683, +-0.042811207473278,0.221947833895683,0.97411835193634,-0.0477244928479195,0.260106831789017,0.964399755001068,-0.0608468726277351,0.349540263414383,0.934943497180939,-0.0484033450484276,0.264484494924545,0.96317446231842,-0.033263523131609,0.261047393083572,0.964752793312073,-0.0361457206308842,0.296942263841629,0.954211056232452,-0.0438664816319942,0.405157029628754,0.913194179534912,-0.0399039648473263,0.352604001760483,0.934921443462372,-0.0501513928174973,0.351124942302704,0.934984624385834,-0.0565718486905098,0.404379308223724,0.912840068340302,-0.0608254969120026,0.441735297441483,0.895081102848053,-0.0525672510266304,0.37492510676384,0.925563514232635,-0.0538264475762844,0.263247340917587,0.963225603103638,-0.0645945966243744,0.348975032567978,0.934903264045715,-0.0784996524453163,0.370185494422913,0.925635278224945,-0.0654499530792236,0.274677455425262,0.959306299686432,-0.00827528163790703,0.148106306791306,0.988936901092529,-0.00274466723203659,0.140323251485825,0.990101993083954,-0.05403708294034,0.0334681458771229,0.99797785282135,-0.0624971017241478,0.036186259239912,0.997388958930969,-0.0115622915327549,0.144865021109581,0.989383935928345,-0.0221925172954798,0.134691208600998,0.990639090538025,-0.0492128059267998,0.0628664195537567,0.996807932853699,-0.0569006688892841,0.0349015556275845,0.99776965379715,-0.049354825168848,0.0311242341995239,0.99829626083374,-0.0410029701888561,0.0599735341966152,0.997357487678528,-0.0643456801772118,-0.00485601415857673,0.997915863990784,-0.0837588757276535,-0.0613246373832226,0.994597256183624,-0.0490184798836708,0.0287048816680908,0.998385369777679,-0.0534342154860497,0.0331663638353348,0.99802041053772,-0.0947574824094772,-0.056357353925705,0.993903875350952,-0.099369078874588,-0.0777741670608521,0.992006540298462,-0.0215007420629263,0.296917170286179,0.954661190509796,-0.0162776354700327,0.325873225927353,0.945273399353027,-0.0182004682719707,0.441409915685654,0.897121012210846,-0.0234827231615782,0.406266719102859,0.913452744483948,-0.009474266320467,0.325382053852081,0.945535182952881, +-0.00259784958325326,0.361037105321884,0.932547867298126,0.00682855304330587,0.448400408029556,0.893806755542755,0.00289726816117764,0.440440237522125,0.897777318954468,0.00292431726120412,0.440438836812973,0.897777855396271,0.00343180447816849,0.448940932750702,0.893554866313934,0.0065328786149621,0.477274686098099,0.878729939460754,0.00720385275781155,0.477890908718109,0.878389656543732,-0.0271462388336658,0.406079798936844,0.913434326648712,-0.0236220173537731,0.441627264022827,0.896887540817261,-0.0277215167880058,0.479379683732986,0.877169668674469,-0.0312875658273697,0.444055527448654,0.895452857017517,0.0622432604432106,0.353246420621872,0.933457434177399,0.0520372427999973,0.324471652507782,0.944463014602661,0.0194813758134842,0.250995576381683,0.967792153358459,0.0217706710100174,0.26459202170372,0.964114725589752,0.0361017510294914,0.330509155988693,0.943112134933472,0.0058450810611248,0.248883694410324,0.968515753746033,-0.0125937256962061,0.196474671363831,0.980428099632263,0.00860074255615473,0.255937993526459,0.966655015945435,0.0227117631584406,0.249521002173424,0.968103051185608,-0.000295128673315048,0.192429289221764,0.981310784816742,-0.022456856444478,0.134796276688576,0.990618824958801,-0.019809328019619,0.149100452661514,0.98862361907959,0.0400383025407791,0.25534388422966,0.966021001338959,0.0249131880700588,0.248514235019684,0.968307912349701,-0.0198089107871056,0.149100244045258,0.988623678684235,-0.00898154824972153,0.148498743772507,0.988871872425079,-0.0373961254954338,0.0966678038239479,0.994614005088806,-0.0277069956064224,0.173329889774323,0.984474062919617,-0.0202814936637878,0.232140615582466,0.972470760345459,-0.025054045021534,0.194119289517403,0.980657994747162,-0.0278313867747784,0.173352688550949,0.984466552734375,-0.00733592454344034,0.252477258443832,0.967575073242188,-0.000517774373292923,0.301742076873779,0.953389465808868,-0.0191271807998419,0.231994226574898,0.972529053688049,-0.0198931954801083,0.232091426849365,0.972490608692169,-0.00398347154259682,0.302475839853287,0.953148722648621, +0.000211920560104772,0.360619634389877,0.932713031768799,-0.0103226406499743,0.325444132089615,0.94550496339798,-0.0258090458810329,0.194160684943199,0.980630159378052,-0.020302776247263,0.232143312692642,0.972469747066498,-0.0161097943782806,0.325861245393753,0.945280373096466,-0.0215718206018209,0.296917468309402,0.954659461975098,-0.0245992429554462,0.135647550225258,0.990451753139496,-0.00459160702303052,0.193846225738525,0.981021285057068,-0.0310827922075987,0.116562411189079,0.99269688129425,-0.049139603972435,0.0628406405448914,0.996813118457794,-0.0145773123949766,0.197124093770981,0.980270266532898,-0.000209890335099772,0.250540316104889,0.968106210231781,-0.0212191939353943,0.172136902809143,0.984844446182251,-0.0355687290430069,0.117667563259602,0.992415845394135,-0.0336934290826321,0.117205835878849,0.992535889148712,-0.0222945548593998,0.172335147857666,0.984786093235016,-0.0376328639686108,0.0966923013329506,0.994602680206299,-0.0475298762321472,0.0468044318258762,0.997772753238678,-0.0439415723085403,0.0610093995928764,0.997169554233551,-0.0290774125605822,0.116067610681057,0.992815613746643,-0.0478750690817833,0.0468748956918716,0.997752904891968,-0.0620468370616436,-0.00558508327230811,0.99805760383606,-0.00963859260082245,0.25310018658638,0.967392086982727,0.0243401154875755,0.334900796413422,0.941938996315002,0.0370119176805019,0.398123472929001,0.916584849357605,-0.00219378643669188,0.302097409963608,0.953274607658386,0.0271866396069527,0.33384296298027,0.942236661911011,0.0458305776119232,0.360069692134857,0.931798994541168,0.0649605691432953,0.427559107542038,0.901650369167328,0.0439428761601448,0.396150022745132,0.917133748531342,0.0235680714249611,0.401890635490417,0.915384352207184,0.0341252274811268,0.436766147613525,0.898927569389343,0.0445822961628437,0.47077414393425,0.881126701831818,0.0360034182667732,0.443537324666977,0.895532429218292,-0.00692474097013474,0.303095579147339,0.952935039997101,0.0212211385369301,0.402540057897568,0.915156364440918,0.025552973151207,0.445324689149857,0.895004510879517, +0.000784236821345985,0.360534220933914,0.932745635509491,-0.609729170799255,-0.536801218986511,-0.583159327507019,-0.599393725395203,-0.56361985206604,-0.568383574485779,-0.379961967468262,-0.618109226226807,-0.688164174556732,-0.385819554328918,-0.592666149139404,-0.707029163837433,0.494960397481918,-0.0618987902998924,-0.866708040237427,0.497833162546158,0.0269295889884233,-0.866854727268219,0.204077541828156,-0.0495697036385536,-0.977698922157288,0.196955516934395,-0.138000547885895,-0.970651566982269,0.184780210256577,-0.260904341936111,-0.947515368461609,0.198092952370644,-0.128999203443527,-0.971657574176788,-0.122779756784439,-0.237570524215698,-0.963579535484314,-0.129740506410599,-0.365335136651993,-0.921790540218353,-0.624791204929352,-0.732501626014709,-0.270328223705292,-0.593572735786438,-0.765151500701904,-0.249428510665894,-0.452243447303772,-0.814485192298889,-0.363441467285156,-0.477001458406448,-0.785185098648071,-0.394910246133804,-0.373672008514404,-0.927558124065399,-0.00227899826131761,-0.350293874740601,-0.936635315418243,0.00294400053098798,-0.30074268579483,-0.951854348182678,-0.0593907684087753,-0.321571409702301,-0.944152891635895,-0.0718833208084106,0.722879528999329,0.18252520263195,-0.666430592536926,0.719462752342224,0.207489103078842,-0.662813484668732,0.492189854383469,0.181056782603264,-0.851450383663177,0.493251740932465,0.155943319201469,-0.855794668197632,0.78858345746994,0.468880295753479,-0.39785361289978,0.809359550476074,0.427463620901108,-0.402755588293076,0.649311602115631,0.456826090812683,-0.608033239841461,0.631604433059692,0.497555375099182,-0.594570934772491,0.47015780210495,-0.858081102371216,-0.206515565514565,0.399007141590118,-0.900322794914246,-0.173816472291946,0.362822353839874,-0.931850492954254,0.00383974285796285,0.443390101194382,-0.89630001783371,-0.00716841034591198,0.0921912863850594,-0.995115101337433,0.035311795771122,0.0771166235208511,-0.996324956417084,0.0372767075896263,0.0595762133598328,-0.993842601776123,0.0934210792183876,0.0744578465819359,-0.992577016353607,0.0961611568927765, +0.623153507709503,0.765266478061676,-0.161390513181686,0.699371933937073,0.696302771568298,-0.161373376846313,0.578370451927185,0.74894380569458,-0.3233742415905,0.502982020378113,0.81244969367981,-0.294846683740616,0.275370597839355,0.956989884376526,-0.0913310945034027,0.327673435211182,0.941557228565216,-0.0781045779585838,0.277306199073792,0.950178802013397,-0.142343282699585,0.223477303981781,0.964886844158173,-0.138027116656303,0.43958505988121,-0.374383956193924,-0.81645679473877,0.391296863555908,-0.521742343902588,-0.75807112455368,0.532976448535919,-0.672074377536774,-0.514054596424103,0.611319780349731,-0.540682196617126,-0.577884912490845,0.573305189609528,-0.609300136566162,-0.54779052734375,0.495185792446136,-0.722046434879303,-0.483156234025955,0.521815180778503,-0.821855306625366,-0.228610724210739,0.628701984882355,-0.726410448551178,-0.277599930763245,-0.32299068570137,0.759286165237427,-0.564943909645081,-0.439376443624496,0.614904940128326,-0.654859006404877,-0.444780260324478,0.795015096664429,-0.412458002567291,-0.281638324260712,0.897429049015045,-0.339560121297836,-0.1381696164608,0.953086256980896,-0.269324570894241,-0.242525532841682,0.915313720703125,-0.321531116962433,-0.17069248855114,0.968110859394073,-0.183372288942337,-0.0512352213263512,0.98553591966629,-0.161536201834679,-0.0885737240314484,0.0644749999046326,-0.993980705738068,-0.103931784629822,-0.0305390246212482,-0.99411553144455,0.190399959683418,-0.170166611671448,-0.966845989227295,0.204482108354568,-0.075275830924511,-0.975971698760986,0.193432837724686,-0.148992151021957,-0.969734609127045,0.168720781803131,-0.2924565076828,-0.941277086734772,0.413419544696808,-0.460923969745636,-0.785260140895844,0.45263546705246,-0.325332462787628,-0.830228865146637,-0.270177662372589,0.492239832878113,-0.827468454837799,-0.325582295656204,0.33514603972435,-0.884122848510742,-0.487183958292007,0.539243221282959,-0.686926960945129,-0.396051943302155,0.675052523612976,-0.62245237827301,-0.0855523869395256,0.0826076492667198,-0.992903172969818, +-0.341623216867447,0.281617552042007,-0.896652162075043,-0.296849966049194,0.422057747840881,-0.856590569019318,-0.0595382452011108,0.231380581855774,-0.971039772033691,0.793533146381378,-0.460003644227982,-0.398374289274216,0.793322265148163,-0.460426300764084,-0.398305892944336,0.870909035205841,-0.476690173149109,-0.119515173137188,0.871134519577026,-0.476272135972977,-0.119538813829422,-0.0156355518847704,-0.0822605565190315,-0.996488273143768,-0.0179715715348721,-0.0955463349819183,-0.995262742042542,-0.0244431979954243,-0.133647054433823,-0.990727603435516,-0.0287986528128386,-0.161365076899529,-0.986474514007568,-0.0146038178354502,-0.0823619067668915,-0.996495544910431,-0.0264813303947449,-0.161800533533096,-0.986468136310577,-0.0294341780245304,-0.190445154905319,-0.981256484985352,-0.0290547031909227,-0.197541370987892,-0.979863941669464,-0.015033763833344,-0.0823196843266487,-0.996492683887482,-0.0263550281524658,-0.197871133685112,-0.979873657226563,-0.0259365923702717,-0.206137135624886,-0.978179335594177,-0.0234601423144341,-0.189767822623253,-0.981548666954041,-0.015446349978447,-0.0822791531682014,-0.996489644050598,-0.020890723913908,-0.189893022179604,-0.981582581996918,-0.0194188617169857,-0.174550712108612,-0.984456777572632,-0.0175885055214167,-0.140689864754677,-0.989897489547729,-0.0155677637085319,-0.0822672173380852,-0.996488749980927,-0.00549385836347938,-0.0243327599018812,-0.999688804149628,-0.0111851822584867,-0.0575252845883369,-0.998281359672546,-0.0179077386856079,-0.0955603793263435,-0.995262563228607,-0.0131832454353571,-0.00165616581216455,-0.999911725521088,-0.0156020130962133,-0.082263857126236,-0.996488511562347,-0.0153011688962579,-0.0687779113650322,-0.997514724731445,-0.0142804589122534,-0.0299834851175547,-0.999448359012604,-0.0156043469905853,-0.0822636187076569,-0.996488451957703,-2.9376707971096e-05,0.0254357643425465,-0.999676465988159,-0.00156488630454987,0.00986712891608477,-0.999950170516968,-0.00635545281693339,-0.0241563282907009,-0.999687969684601,-0.0126547673717141,-0.107211507856846,-0.994155764579773, +-0.0135715277865529,-0.119906820356846,-0.992692351341248,-0.0171518102288246,-0.0607858933508396,-0.998003423213959,-0.0140616754069924,-0.0687523633241653,-0.997534692287445,-0.015085507184267,-0.0823146030306816,-0.996492326259613,-0.00385899259708822,0.0343581028282642,-0.999402225017548,-0.0017051687464118,0.042608704417944,-0.999090433120728,-0.00234547257423401,0.0257798880338669,-0.999664902687073,-0.0155005939304829,-0.082273818552494,-0.996489226818085,-0.0116577334702015,-0.00167106417939067,-0.999930739402771,-0.00905606523156166,0.027506735175848,-0.99958062171936,-0.00738180009648204,0.0346192605793476,-0.999373316764832,-0.0167823042720556,-0.140685364603996,-0.989912211894989,-0.0160203389823437,-0.107297800481319,-0.994097888469696,-0.0153135685250163,-0.0687781572341919,-0.997514426708221,-0.0155386179685593,-0.082270085811615,-0.996488988399506,-0.0174418408423662,-0.140689060091972,-0.989900290966034,-0.011850917711854,-0.175436735153198,-0.984419345855713,-0.0140482885763049,-0.119949147105217,-0.992680609226227,-0.0176373869180679,-0.107338823378086,-0.994066119194031,-0.0163431037217379,-0.174590185284615,-0.984505534172058,-0.0136939845979214,-0.221035972237587,-0.975169539451599,-0.0162755288183689,-0.175738155841827,-0.984302461147308,-0.0181859005242586,-0.140693172812462,-0.989886283874512,-0.0222031306475401,-0.18982920050621,-0.98156601190567,-0.0191595274955034,-0.253976374864578,-0.967020630836487,-0.0169555936008692,-0.221135556697845,-0.975095629692078,-0.0199590176343918,-0.174543604254723,-0.984447240829468,-0.022877674549818,-0.206392884254456,-0.978201687335968,-0.023460116237402,-0.268942654132843,-0.962870538234711,-0.0247863288968801,-0.2538703083992,-0.966920614242554,-0.0243451725691557,-0.189724415540695,-0.981535494327545,-0.0250396821647882,-0.198031321167946,-0.979875922203064,-0.0306815840303898,-0.266916543245316,-0.963231205940247,-0.028757905587554,-0.268543004989624,-0.962838411331177,-0.024111645296216,-0.206289932131767,-0.978193759918213,-0.0281650107353926,-0.210906475782394,-0.977100491523743, +-0.0363583639264107,-0.245191588997841,-0.968792736530304,-0.0237587820738554,-0.191356346011162,-0.9812331199646,-0.0169847421348095,-0.163575410842896,-0.986384630203247,-0.01526322029531,-0.104838281869888,-0.994372129440308,-0.0283569414168596,-0.160127028822899,-0.986689031124115,-0.0237752497196198,-0.133791252970695,-0.990724325180054,-0.0159889049828053,-0.0959822982549667,-0.995254635810852,-0.030621625483036,-0.24629171192646,-0.968711912631989,-0.0352979861199856,-0.266291320323944,-0.963246166706085,-0.0257062055170536,-0.197950214147568,-0.979875028133392,-0.0230178646743298,-0.191474840044975,-0.981227695941925,0.00562097737565637,0.0095527283847332,-0.999938607215881,-0.00727479532361031,-0.0452108196914196,-0.998951077461243,-0.0133884027600288,-0.0570284686982632,-0.998282849788666,-0.00681220041587949,-0.0240627899765968,-0.999687254428864,-0.0276571363210678,-0.160321161150932,-0.986677348613739,-0.0351878218352795,-0.209210336208344,-0.977237343788147,-0.0176349971443415,-0.163454383611679,-0.98639327287674,-0.0156859420239925,-0.135532289743423,-0.990648806095123,0.00887321494519711,0.0564634203910828,-0.998365223407745,-0.00277869659475982,0.0100922100245953,-0.999945282936096,-0.00155240506865084,0.0256620738655329,-0.999669551849365,0.0135774342343211,0.0897736549377441,-0.995869636535645,-0.00652373814955354,-0.0454310141503811,-0.998946189880371,-0.0210232436656952,-0.103131547570229,-0.994445562362671,-0.0158835016191006,-0.0960054844617844,-0.995254158973694,-0.00757287768647075,-0.0583391971886158,-0.998268187046051,0.0125842727720737,0.0556051284074783,-0.998373627662659,0.00119627546519041,0.0107540134340525,-0.999941527843475,-0.00755075085908175,-0.0239115282893181,-0.99968558549881,0.00085336749907583,0.00941866356879473,-0.999955296516418,0.00310965813696384,0.104801416397095,-0.994488298892975,0.0037565641105175,0.106586441397667,-0.994296371936798,-0.00229982100427151,0.0426756888628006,-0.999086380004883,-0.00324619933962822,0.0343126282095909,-0.999405860900879,-0.006087901070714,0.0274009462445974,-0.999606013298035, +-0.00447685644030571,0.0836644694209099,-0.996484041213989,-0.00348265003412962,0.105194784700871,-0.994445562362671,-0.00581928761675954,0.0345034785568714,-0.999387681484222,0.010704580694437,0.105751253664494,-0.994334995746613,0.00763133075088263,0.0908409059047699,-0.99583625793457,-0.00337370322085917,0.0259326174855232,-0.999657988548279,0.000160026349476539,0.0423984974622726,-0.999100744724274,-0.00751567864790559,-0.00171149463858455,-0.999970316886902,-0.00911706127226353,0.0472362823784351,-0.998842179775238,-0.0103222941979766,0.0836861357092857,-0.996438682079315,-0.00863250251859426,0.0274916514754295,-0.99958473443985,-0.00993142649531364,-0.0299094263464212,-0.999503374099731,-0.0149258328601718,-0.00324183283373713,-0.999883353710175,-0.0146595872938633,0.0469947271049023,-0.998787522315979,-0.00831975881010294,-0.00170364836230874,-0.999963939189911,-0.0140738431364298,-0.068752609193325,-0.997534513473511,-0.0128015112131834,-0.0603834204375744,-0.998093247413635,-0.0160358473658562,-0.00332617899402976,-0.999865889549255,-0.01553207449615,-0.0300046969205141,-0.999429106712341,-0.422871559858322,-0.906049430370331,0.0159437395632267,-0.423230469226837,-0.90588104724884,0.0159875005483627,-0.419718474149704,-0.903210043907166,-0.0897105187177658,-0.419364422559738,-0.903381884098053,-0.0896367877721786,-0.855377614498138,-0.215288192033768,-0.47114771604538,-0.855368375778198,-0.215356722474098,-0.471133232116699,-0.958153128623962,-0.213681533932686,-0.190480917692184,-0.958164989948273,-0.213613927364349,-0.190496936440468,-0.68088161945343,-0.112838335335255,-0.723648965358734,-0.680866420269012,-0.113043703138828,-0.723631203174591,-0.870181739330292,-0.107648886740208,-0.480827927589417,-0.870196402072906,-0.107442833483219,-0.48084756731987,0.462455362081528,-0.186331868171692,-0.866842329502106,0.462357461452484,-0.186697438359261,-0.866815805435181,0.702243685722351,-0.227815076708794,-0.674502849578857,0.702338814735413,-0.227449715137482,-0.674527108669281,0.691872596740723,-0.266620099544525,-0.670988798141479, +0.691778123378754,-0.266941636800766,-0.670958459377289,0.860357344150543,-0.295157045125961,-0.415532946586609,0.860455214977264,-0.294835984706879,-0.415558338165283,-0.426123887300491,-0.0882091745734215,-0.900354087352753,-0.426101982593536,-0.0886027738451958,-0.900325894355774,-0.682474553585052,-0.0825827270746231,-0.726229071617126,-0.682493329048157,-0.0821897014975548,-0.72625595331192,-0.12808783352375,-0.083877831697464,-0.98820948600769,-0.128071993589401,-0.0835319682955742,-0.988240838050842,-0.426274806261063,-0.0808952003717422,-0.900969386100769,-0.426280170679092,-0.0812395364046097,-0.900935888290405,-0.125659108161926,-0.058430127799511,-0.990351378917694,-0.125754803419113,-0.0587932392954826,-0.990317642688751,0.178629800677299,-0.121176235377789,-0.97642594575882,0.178727835416794,-0.120810762047768,-0.976453363895416,0.178305685520172,-0.122810013592243,-0.97628116607666,0.178332507610321,-0.122584149241447,-0.976304590702057,0.464988708496094,-0.175083041191101,-0.867831468582153,0.464952766895294,-0.175306275486946,-0.867805659770966,0.182784736156464,-0.0785627588629723,-0.980009019374847,0.182808637619019,-0.0789149180054665,-0.979976236820221,-0.128077268600464,-0.0830939933657646,-0.988277077674866,-0.128101631999016,-0.0827392563223839,-0.988303780555725,0.475883364677429,-0.0634652525186539,-0.877215683460236,0.475886046886444,-0.0632292032241821,-0.877231180667877,0.182781741023064,-0.0769237875938416,-0.980139553546906,0.182765766978264,-0.0771597623825073,-0.980123996734619,-0.665338814258575,0.0917161330580711,-0.740886270999908,-0.665475368499756,0.0911432430148125,-0.740834355354309,-0.415613889694214,0.0187517628073692,-0.909347832202911,-0.415477424860001,0.0193264689296484,-0.909398138523102,-0.417245745658875,0.0113134980201721,-0.9087233543396,-0.417131513357162,0.0118744280189276,-0.908768534660339,-0.125480443239212,-0.0574847683310509,-0.99042934179306,-0.125578701496124,-0.0580466687679291,-0.990384101867676,0.721954166889191,-0.0262745246291161,-0.69144195318222,0.721964418888092,-0.0265154615044594,-0.691422045230865, +0.475567370653152,-0.0519063696265221,-0.878146529197693,0.475551307201385,-0.0516667068004608,-0.878169476985931,0.8942511677742,0.0511268675327301,-0.444635808467865,0.894288241863251,0.0507241785526276,-0.444607317447662,0.719316005706787,0.0134729873389006,-0.694552361965179,0.719285368919373,0.0138788390904665,-0.6945760846138,-0.900249779224396,0.363735944032669,-0.239262521266937,-0.90019679069519,0.36384254693985,-0.239300012588501,-0.803614974021912,0.299578130245209,-0.514252722263336,-0.803667306900024,0.299470037221909,-0.514233946800232,-0.840416371822357,0.193585827946663,-0.506186544895172,-0.840467691421509,0.193381667137146,-0.506179451942444,-0.657636940479279,0.12210188806057,-0.743373990058899,-0.657585501670837,0.12230408936739,-0.743386209011078,0.945057094097137,0.271379351615906,-0.182265013456345,0.945449590682983,0.270110934972763,-0.182113066315651,0.861775934696198,0.222260236740112,-0.456007212400436,0.861431658267975,0.223549291491508,-0.456027507781982,-0.202189683914185,0.94947350025177,-0.240040585398674,-0.20635461807251,0.967357277870178,-0.147097527980804,-0.209099233150482,0.966839551925659,-0.146624833345413,-0.204922199249268,0.948798358440399,-0.240392982959747,-0.503194689750671,0.512235522270203,-0.695995628833771,-0.573969066143036,0.362520843744278,-0.734260380268097,-0.66736102104187,0.559213995933533,-0.491842567920685,-0.562911152839661,0.688501060009003,-0.457271814346313,0.0996532738208771,0.767576575279236,-0.633162975311279,0.106795825064182,0.80597847700119,-0.582231283187866,-0.0222685001790524,0.260934710502625,-0.965099573135376,-0.0293364301323891,0.219726860523224,-0.975120306015015,0.159783825278282,0.739479839801788,-0.653940916061401,-0.0211170315742493,0.18983393907547,-0.981589138507843,-0.0015507151838392,0.256140887737274,-0.966638207435608,0.171802595257759,0.783332407474518,-0.59738963842392,-0.0563355833292007,0.0801078304648399,-0.99519294500351,-0.0282247923314571,0.219552412629128,-0.975192427635193,-0.016099601984024,0.259519457817078,-0.965603709220886, +-0.0289876386523247,0.192103132605553,-0.980946600437164,0.159918755292892,0.574773490428925,-0.802534341812134,-0.0331741198897362,0.105565212666988,-0.993858933448792,-0.021026037633419,0.134351074695587,-0.990710735321045,0.181295767426491,0.625345349311829,-0.75899612903595,-0.0426695458590984,0.108889691531658,-0.993137717247009,-0.085027702152729,-0.0304112136363983,-0.995914459228516,-0.0741585344076157,0.00521381152793765,-0.997232913970947,-0.0334105305373669,0.13833774626255,-0.989821374416351,-0.0371861457824707,0.139548823237419,-0.989516735076904,-0.0766999870538712,0.00573092233389616,-0.997037768363953,-0.058383084833622,0.0804861485958099,-0.995044469833374,-0.0240741111338139,0.190687954425812,-0.981355547904968,0.160311296582222,0.640017747879028,-0.751450300216675,-0.0304526388645172,0.137387558817863,-0.990049242973328,-0.0124456007033587,0.187319532036781,-0.982220232486725,0.191648691892624,0.722883880138397,-0.663859665393829,-0.063691109418869,0.0425433143973351,-0.99706244468689,-0.0457304604351521,0.219763576984406,-0.974480748176575,-0.0452068708837032,0.212059006094933,-0.976210653781891,-0.0640426278114319,0.0397275574505329,-0.997156143188477,-0.0491740740835667,0.219975456595421,-0.974265217781067,-0.00269768037833273,0.804396748542786,-0.594086468219757,0.0114545878022909,0.774166285991669,-0.632878661155701,-0.0464458279311657,0.212195828557014,-0.976122796535492,-0.040905836969614,0.211581587791443,-0.976503908634186,0.0463226623833179,0.772382199764252,-0.633466720581055,0.053903840482235,0.776125431060791,-0.628270447254181,-0.0383672639727592,0.221133947372437,-0.97448855638504,-0.0642417520284653,0.0397514626383781,-0.997142314910889,-0.0396704077720642,0.211443766951561,-0.976584851741791,-0.0374463312327862,0.220991268754005,-0.974556684494019,-0.0580413118004799,0.0804230198264122,-0.995069563388824,-0.0997864976525307,0.688273251056671,-0.718555986881256,-0.104375392198563,0.783245205879211,-0.612888813018799,-0.0743169710040092,0.236984759569168,-0.968666732311249,-0.0699454769492149,0.169852152466774,-0.982984185218811, +-0.0486638993024826,0.800921082496643,-0.596789240837097,-0.0590430572628975,0.220568373799324,-0.973582863807678,-0.0624746717512608,0.237226560711861,-0.969443380832672,-0.065749891102314,0.792149782180786,-0.606774866580963,-0.0628169849514961,0.0424759946763515,-0.99712073802948,-0.0620100870728493,0.17019510269165,-0.983457386493683,-0.0594880320131779,0.237282261252403,-0.969617664813995,-0.0586980432271957,0.22054797410965,-0.973608255386353,-0.0730608180165291,-0.0331689342856407,-0.99677586555481,-0.0816801264882088,-0.0755447298288345,-0.993791460990906,-0.0797362700104713,-0.0496490597724915,-0.995578765869141,-0.069117359817028,0.00418827682733536,-0.997599720954895,-0.0763240084052086,-0.0762772560119629,-0.994161248207092,-0.0773020759224892,-0.0852417945861816,-0.993357062339783,-0.074508972465992,-0.0594657808542252,-0.995445847511292,-0.0735107809305191,-0.0504636652767658,-0.99601686000824,-0.0718235746026039,-0.0506840348243713,-0.996128857135773,-0.0735157877206802,-0.0595721080899239,-0.995513319969177,-0.0635568648576736,0.0425329767167568,-0.997071504592896,-0.0632145404815674,0.0396281145513058,-0.997212946414948,-0.0687073469161987,0.00410487921908498,-0.997628509998322,-0.0780691057443619,-0.0498674437403679,-0.995700061321259,-0.0653674304485321,0.0398865975439548,-0.997063755989075,-0.0580366067588329,0.080422155559063,-0.995069921016693,0.194014742970467,0.542665839195251,-0.817234456539154,0.171456381678581,0.499724507331848,-0.84904545545578,-0.0236694607883692,0.0897035449743271,-0.995687246322632,-0.0181959215551615,0.100301720201969,-0.994790732860565,0.117007195949554,0.317533642053604,-0.941000461578369,-0.0507391765713692,0.00860218703746796,-0.998674988746643,-0.0111043620854616,0.0842615962028503,-0.996381819248199,0.202084720134735,0.45720112323761,-0.866099774837494,-0.075675942003727,-0.0325669348239899,-0.996600568294525,-0.0266282260417938,0.103267841041088,-0.99429714679718,-0.0304546263068914,0.0926359817385674,-0.995234251022339,-0.0594126470386982,0.0122372265905142,-0.998158574104309, +-0.0436685010790825,-0.0150890089571476,-0.998932123184204,-0.0837864503264427,-0.0985271409153938,-0.991600871086121,-0.0610863640904427,-0.0490059778094292,-0.996928811073303,0.0350312665104866,0.135901659727097,-0.990102827548981,-0.0841929838061333,-0.0983528643846512,-0.991583824157715,-0.0894987657666206,-0.119236670434475,-0.988823890686035,-0.0754031464457512,-0.0735311806201935,-0.994438290596008,-0.0680515095591545,-0.0461241453886032,-0.996615052223206,-0.0760961845517159,-0.042790412902832,-0.996181964874268,-0.0820941552519798,-0.0719860419631004,-0.994021415710449,-0.0727760270237923,-0.033234465867281,-0.996794462203979,-0.0597005784511566,0.0123579204082489,-0.99813985824585,0.029296550899744,0.146208450198174,-0.98881995677948,-0.069103978574276,-0.0456883162260056,-0.996562719345093,-0.045428678393364,0.00637712050229311,-0.998947203159332,0.121504232287407,0.309699177742004,-0.943039298057556,-0.0654760897159576,0.0114685008302331,-0.997788310050964,-0.0761011242866516,0.128487348556519,-0.988786995410919,-0.0740265846252441,0.148932784795761,-0.986072599887848,-0.0640641301870346,0.0192676112055779,-0.997759759426117,-0.0828090831637383,0.127572998404503,-0.988366186618805,-0.161435440182686,0.522049307823181,-0.837498188018799,-0.149305492639542,0.587347507476807,-0.795443773269653,-0.0776710361242294,0.148643180727959,-0.98583596944809,-0.0741183087229729,0.148925513029099,-0.98606675863266,-0.125515475869179,0.599757373332977,-0.790276527404785,-0.121158108115196,0.680420398712158,-0.722737073898315,-0.0711154565215111,0.169800668954849,-0.982909142971039,-0.0627124831080437,0.019218796864152,-0.99784654378891,-0.0695115998387337,0.149288699030876,-0.986347317695618,-0.065317876636982,0.170053482055664,-0.983267784118652,-0.0598128400743008,0.0422444269061089,-0.997315347194672,-0.123192340135574,0.195833384990692,-0.9728684425354,-0.168572530150414,0.386121541261673,-0.906914234161377,-0.0906584560871124,0.0849909633398056,-0.992248773574829,-0.0724493414163589,0.00865200906991959,-0.997334659099579, +-0.181844472885132,0.506574809551239,-0.842801690101624,-0.0915490090847015,0.126372069120407,-0.987749457359314,-0.0868872329592705,0.0858104899525642,-0.992515563964844,-0.168642520904541,0.386048674583435,-0.906932234764099,-0.071650393307209,0.0112347714602947,-0.997366547584534,-0.0713144466280937,0.00886124931275845,-0.997414588928223,-0.08333870023489,0.0865801870822906,-0.992753028869629,-0.0891361683607101,0.126704692840576,-0.987927436828613,-0.0744885355234146,-0.0972549170255661,-0.992468118667603,-0.0763803422451019,-0.110320091247559,-0.990956902503967,-0.0798929035663605,-0.048746220767498,-0.995610892772675,-0.0752618312835693,-0.0612029731273651,-0.995283842086792,-0.0683702602982521,-0.108991801738739,-0.991688668727875,-0.0596440471708775,-0.163096264004707,-0.984805762767792,-0.0987139418721199,0.00627907738089561,-0.99509608745575,-0.0772387981414795,-0.0482871755957603,-0.995842635631561,-0.0692611709237099,-0.0469058603048325,-0.996495246887207,-0.09017463773489,0.0157822519540787,-0.995800912380219,-0.128052711486816,0.190464287996292,-0.973306715488434,-0.0783698931336403,0.00755996536463499,-0.996895730495453,-0.0699642822146416,-0.0611594989895821,-0.995672941207886,-0.0733848810195923,-0.0476201623678207,-0.996166169643402,-0.0788428708910942,0.00747268833220005,-0.996859014034271,-0.0776084885001183,0.0110087189823389,-0.99692314863205,-0.0819414705038071,-0.0972616076469421,-0.991879940032959,-0.0835908502340317,-0.123139098286629,-0.988862693309784,-0.0749906972050667,-0.166955038905144,-0.983108520507813,-0.0765409395098686,-0.110346660017967,-0.99094158411026,-0.0866497755050659,-0.123107336461544,-0.988603234291077,-0.0848441794514656,-0.173248097300529,-0.981216907501221,-0.0776769518852234,-0.211239576339722,-0.974343001842499,-0.0790037661790848,-0.167545184493065,-0.982693791389465,-0.0819412469863892,-0.167975515127182,-0.982379734516144,-0.0762282088398933,-0.211038991808891,-0.974500834941864,0.00855627655982971,-0.494832396507263,-0.868946373462677,-0.0307409502565861,-0.336855322122574,-0.94105452299118, +-0.0821743607521057,-0.111276842653751,-0.990386188030243,-0.0757528468966484,-0.167067304253578,-0.983031094074249,-0.0223465263843536,-0.328265786170959,-0.944321036338806,-0.0599199272692204,-0.163398414850235,-0.984738945960999,-0.081970103085041,-0.121319644153118,-0.989223182201385,-0.0753352269530296,-0.0903062224388123,-0.99306058883667,-0.0757700279355049,-0.0825217217206955,-0.993704795837402,-0.076029047369957,-0.0733868256211281,-0.994401395320892,-0.0778027325868607,-0.0899495035409927,-0.992902815341949,-0.0772681757807732,-0.0852478519082069,-0.993359208106995,-0.0772961154580116,-0.0852431133389473,-0.993357419967651,-0.07701226323843,-0.082348920404911,-0.993623554706573,-0.0770322978496552,-0.0823461338877678,-0.993622303009033,-0.0773267596960068,-0.0852396190166473,-0.993355333805084,-0.0773091614246368,-0.0852409824728966,-0.993356585502625,-0.076357290148735,-0.0762727111577988,-0.994159042835236,-0.0785097777843475,-0.0728143081068993,-0.994250655174255,-0.0790437012910843,-0.0820660218596458,-0.993487417697906,-0.0789866000413895,-0.0759134218096733,-0.993981003761292,-0.0732104033231735,-0.0331345051527023,-0.996765971183777,-0.191532641649246,-0.396828770637512,-0.897687137126923,-0.23236770927906,-0.515972971916199,-0.824486076831818,-0.0988892838358879,-0.166676908731461,-0.981040179729462,-0.105224020779133,-0.180116772651672,-0.978000998497009,-0.248099327087402,-0.495037972927094,-0.832696914672852,-0.276346057653427,-0.565820515155792,-0.776839852333069,-0.12014365196228,-0.217294052243233,-0.968684136867523,-0.0970437675714493,-0.167504534125328,-0.981083571910858,-0.0990041941404343,-0.166625335812569,-0.981037259101868,-0.121108837425709,-0.216886058449745,-0.968655347824097,-0.0792267024517059,-0.122076466679573,-0.989353537559509,-0.0710639581084251,-0.103967875242233,-0.992038607597351,-0.110066145658493,-0.170332297682762,-0.979220330715179,-0.105609551072121,-0.163655921816826,-0.980848252773285,-0.0755352973937988,-0.10205864906311,-0.991906523704529,-0.0369901843369007,-0.0275600552558899,-0.998935520648956, +0.0598747730255127,-0.73551219701767,-0.674860596656799,0.0500749349594116,-0.658457934856415,-0.750949859619141,-0.0656325146555901,-0.291693776845932,-0.954257428646088,-0.063592940568924,-0.321426570415497,-0.944796741008759,0.00358711183071136,-0.499453097581863,-0.866333484649658,-0.0802515968680382,-0.211594969034195,-0.974057137966156,-0.0609583482146263,-0.290921688079834,-0.954803049564362,0.0546306818723679,-0.654836714267731,-0.753793358802795,-0.0885985344648361,-0.173207610845566,-0.980892241001129,-0.0686889886856079,-0.321927517652512,-0.944269359111786,-0.0727147161960602,-0.292851448059082,-0.95338898897171,-0.0835917145013809,-0.212053969502449,-0.973676383495331,-0.0926243886351585,-0.173161402344704,-0.98052841424942,-0.0934615954756737,-0.214549779891968,-0.972231090068817,-0.0817737728357315,-0.347345232963562,-0.934165060520172,-0.0798818692564964,-0.322998374700546,-0.943022310733795,-0.0929212793707848,-0.214570328593254,-0.972278416156769,-0.0919656455516815,-0.300617814064026,-0.949300467967987,-0.0864619463682175,-0.382674783468246,-0.919828414916992,-0.0859631896018982,-0.347549557685852,-0.933712780475616,-0.0800405889749527,-0.347258895635605,-0.934347331523895,-0.0811872407793999,-0.382578283548355,-0.92034912109375,-0.00688949227333069,-0.839797616004944,-0.542855978012085,-0.00757035706192255,-0.790927350521088,-0.611863374710083,-0.072502501308918,-0.322296917438507,-0.943858206272125,-0.076436921954155,-0.347076058387756,-0.934716939926147,0.0193554181605577,-0.781999886035919,-0.622978031635284,0.0332768894731998,-0.749729454517365,-0.660907328128815,-0.259415477514267,-0.583216190338135,-0.769780933856964,-0.28929391503334,-0.65933746099472,-0.693961918354034,-0.13094873726368,-0.273955881595612,-0.952785789966583,-0.108876504004002,-0.2220349162817,-0.96894097328186,-0.267900586128235,-0.676235437393188,-0.686246991157532,-0.292064070701599,-0.744251906871796,-0.600656151771545,-0.143893703818321,-0.343805551528931,-0.927950620651245,-0.11898959428072,-0.278552561998367,-0.953021466732025, +-0.112432844936848,-0.281050175428391,-0.953084290027618,-0.133653074502945,-0.347219914197922,-0.928210735321045,-0.105084672570229,-0.258548021316528,-0.960265755653381,-0.0782210305333138,-0.174842104315758,-0.981484413146973,-0.102264568209648,-0.224798366427422,-0.969024062156677,-0.120708175003529,-0.277895301580429,-0.952997326850891,-0.0833729729056358,-0.173512324690819,-0.981296360492706,-0.0673491358757019,-0.125339716672897,-0.989825248718262,-0.0982967093586922,-0.26036012172699,-0.960494875907898,-0.0952071994543076,-0.245474696159363,-0.96471643447876,-0.0702561065554619,-0.121807940304279,-0.990064144134521,-0.082366555929184,-0.173772528767586,-0.9813352227211,-0.0937011986970901,-0.245757162570953,-0.964792013168335,-0.0940078571438789,-0.245076164603233,-0.964935421943665,-0.0776908248662949,-0.116444639861584,-0.990154027938843,-0.0778893604874611,-0.120653890073299,-0.989634215831757,-0.0809513255953789,-0.120188735425472,-0.989445149898529,-0.0805245190858841,-0.116098150610924,-0.989968240261078,-0.0772274136543274,-0.08525250852108,-0.993362009525299,-0.0777293220162392,-0.0899601131677628,-0.992907524108887,-0.0851805433630943,-0.173044472932816,-0.981223702430725,-0.0730833932757378,-0.121381416916847,-0.989911913871765,-0.0708379969000816,-0.0909547731280327,-0.99333244562149,-0.0794129744172096,-0.12202512472868,-0.989345014095306,-0.225796401500702,-0.850115835666656,-0.475730150938034,-0.129537060856819,-0.391972452402115,-0.91081166267395,-0.126184940338135,-0.383675396442413,-0.914806425571442,-0.218785852193832,-0.831256091594696,-0.511024653911591,-0.122143775224686,-0.393454164266586,-0.911194205284119,-0.0944806784391403,-0.245002210140228,-0.964908003807068,-0.0935598313808441,-0.245783641934395,-0.964798927307129,-0.119112811982632,-0.38543888926506,-0.915013134479523,-0.132125854492188,-0.38217681646347,-0.914594769477844,-0.0963142365217209,-0.245266705751419,-0.964659512042999,-0.0993156731128693,-0.260089010000229,-0.960463523864746,-0.123671181499958,-0.350504159927368,-0.928360044956207, +-0.268185704946518,-0.810378849506378,-0.520924866199493,-0.141157001256943,-0.379868805408478,-0.914206922054291,-0.130722910165787,-0.348188489675522,-0.92826521396637,-0.255475014448166,-0.7660151720047,-0.589875757694244,-0.0756193548440933,-0.912993013858795,-0.40090611577034,-0.0676601603627205,-0.909258246421814,-0.410696417093277,-0.0952272191643715,-0.443867534399033,-0.891018211841583,-0.0971343666315079,-0.429392993450165,-0.897879004478455,-0.0345670320093632,-0.845117449760437,-0.533462047576904,-0.083789050579071,-0.38262727856636,-0.920095562934875,-0.0794295594096184,-0.444197356700897,-0.892401039600372,-0.0189618077129126,-0.905890107154846,-0.423088103532791,-0.092332236468792,-0.300593942403793,-0.949272334575653,-0.0955225676298141,-0.429541975259781,-0.897980630397797,-0.0918045714497566,-0.443948477506638,-0.891336977481842,-0.0895192697644234,-0.382725864648819,-0.919514715671539,-0.077231153845787,-0.0852498933672905,-0.99336189031601,-0.0775516554713249,-0.0882405787706375,-0.993075728416443,-0.0747799500823021,-0.0626774877309799,-0.995228350162506,-0.074430838227272,-0.0594741441309452,-0.995451092720032,-0.0770752131938934,-0.0882844999432564,-0.993108868598938,-0.0782138779759407,-0.0972589328885078,-0.992181122303009,-0.0754877701401711,-0.0612047873437405,-0.995266616344452,-0.0750188902020454,-0.0626576617360115,-0.995211720466614,-0.0716312676668167,-0.0629383772611618,-0.995443522930145,-0.0718310102820396,-0.0611750110983849,-0.99553906917572,-0.0693261548876762,0.0113228196278214,-0.997529864311218,-0.0690338909626007,0.0194468330591917,-0.997424781322479,-0.0724871903657913,-0.059682160615921,-0.995582163333893,-0.0724955946207047,-0.0628668367862701,-0.995385527610779,-0.0652914196252823,0.0193119086325169,-0.997679352760315,-0.0635273978114128,0.0425307080149651,-0.997073411941528,-0.077303446829319,-0.085243821144104,-0.993356883525848,-0.0791463404893875,-0.102512419223785,-0.991578102111816,-0.0782296061515808,-0.0940151885151863,-0.992492437362671,-0.0772949978709221,-0.0852432399988174,-0.993357479572296, +-0.0834621265530586,-0.102117575705051,-0.991264879703522,-0.0858202651143074,-0.173237815499306,-0.981133818626404,-0.0810218527913094,-0.123164847493172,-0.989073216915131,-0.0810364186763763,-0.0937553495168686,-0.992291808128357,-0.0800113528966904,-0.09385035187006,-0.992366075515747,-0.0808262750506401,-0.123166792094707,-0.989089071750641,-0.0782278776168823,-0.0972589552402496,-0.992180049419403,-0.0786521807312965,-0.0881390795111656,-0.992998242378235,-0.0772513598203659,-0.0852482244372368,-0.99336040019989,-0.0782039985060692,-0.0940175577998161,-0.992494285106659,-0.0775734335184097,-0.0882385745644569,-0.993074238300323,-0.0772414803504944,-0.0852487161755562,-0.993361175060272,-0.0934689491987228,-0.245160385966301,-0.964966356754303,-0.0945135280489922,-0.256685167551041,-0.961862742900848,-0.0794739127159119,-0.136342167854309,-0.987468838691711,-0.077353909611702,-0.116485744714737,-0.990175485610962,-0.0942647308111191,-0.25671774148941,-0.961878538131714,-0.0963378101587296,-0.3003309071064,-0.948957622051239,-0.0900154933333397,-0.214679405093193,-0.972527682781219,-0.0853400304913521,-0.135759234428406,-0.987059593200684,-0.0885424837470055,-0.135438859462738,-0.986821413040161,-0.090542159974575,-0.21465976536274,-0.972483038902283,-0.0864085257053375,-0.173231527209282,-0.981083273887634,-0.0843459144234657,-0.102036476135254,-0.991198420524597,-0.0805238634347916,-0.11609823256731,-0.989968299865723,-0.082630380988121,-0.136029124259949,-0.987252950668335,-0.0791115835309029,-0.1025156006217,-0.991580545902252,-0.0772459581494331,-0.0852503851056099,-0.993360757827759,-0.183481693267822,-0.862371921539307,-0.471857309341431,-0.181295394897461,-0.879474759101868,-0.440063744783401,-0.121102295815945,-0.407217472791672,-0.905266940593719,-0.119119361042976,-0.394053399562836,-0.911335527896881,-0.139751404523849,-0.886734545230865,-0.440648853778839,-0.128879889845848,-0.909975349903107,-0.394125521183014,-0.111625157296658,-0.428001642227173,-0.896858155727386,-0.111755564808846,-0.408682256937027,-0.905808806419373, +-0.109760984778404,-0.408989906311035,-0.905913889408112,-0.110743783414364,-0.428088963031769,-0.896925806999207,-0.0972996428608894,-0.300266981124878,-0.948879599571228,-0.0935361459851265,-0.256812959909439,-0.961924135684967,-0.116382926702499,-0.394592195749283,-0.911456048488617,-0.118285641074181,-0.407662898302078,-0.905438899993896,-0.0936863422393799,-0.256793349981308,-0.961914837360382,-0.0928675085306168,-0.245254278182983,-0.965000510215759,-0.11674165725708,-0.992732226848602,0.0292253773659468,-0.182586580514908,-0.977447330951691,-0.106107927858829,-0.152215152978897,-0.986154913902283,-0.0657960325479507,-0.0932954549789429,-0.993374407291412,0.0671065449714661,-0.249165877699852,-0.660728335380554,-0.708063840866089,-0.131760776042938,-0.989981770515442,-0.0507477335631847,-0.141662746667862,-0.987535417079926,-0.068596325814724,-0.174492999911308,-0.97830730676651,-0.111656293272972,-0.0575646795332432,-0.994133472442627,0.0915696322917938,-0.0608751699328423,-0.99616950750351,0.0627751797437668,-0.0881375893950462,-0.992677390575409,-0.0826039537787437,-0.0706151872873306,-0.995745480060577,-0.0591988787055016,-0.132764801383018,-0.980478584766388,0.145035907626152,-0.324850380420685,-0.945210337638855,0.0323977023363113,-0.318683594465256,-0.947440028190613,0.0282509289681911,-0.158350020647049,-0.979892134666443,0.121395401656628,-0.321852535009384,-0.946482241153717,0.0241315960884094,-0.756708145141602,-0.582813918590546,-0.296176910400391,-0.746307253837585,-0.599485397338867,-0.289210468530655,-0.314844995737076,-0.948849976062775,0.0235870778560638,-0.261171221733093,-0.964453458786011,-0.0402393080294132,-0.60907119512558,-0.640443384647369,-0.467829704284668,-0.620852768421173,-0.6125168800354,-0.489249527454376,-0.292717069387436,-0.955780267715454,-0.0282984860241413,-0.150282487273216,-0.982334017753601,0.11151348054409,-0.278467386960983,-0.960238575935364,-0.0199457388371229,-0.277251839637756,-0.959985256195068,-0.0394946523010731,-0.175778076052666,-0.982218980789185,0.0659405887126923, +-0.123043410480022,-0.98531311750412,0.118399903178215,-0.113991066813469,-0.985422432422638,0.126288205385208,-0.329702258110046,-0.939883351325989,0.0889712050557137,-0.341709733009338,-0.936375141143799,0.0802255272865295,-0.113992378115654,-0.986906409263611,0.114112757146358,-0.109046630561352,-0.988228619098663,0.107298411428928,-0.324815899133682,-0.934616267681122,0.144868925213814,-0.329092919826508,-0.932098627090454,0.151294514536858,-0.32919043302536,-0.932864844799042,0.146277323365211,-0.322797030210495,-0.934404730796814,0.150631964206696,-0.825850784778595,-0.52633810043335,0.202332764863968,-0.800103306770325,-0.565987527370453,0.198728173971176,-0.341227293014526,-0.936670064926147,0.0788233950734138,-0.329699754714966,-0.940108120441437,0.0865733101963997,-0.809993624687195,-0.586343884468079,0.0105468686670065,-0.838336646556854,-0.544576942920685,-0.0250565968453884,-0.758551239967346,-0.58256983757019,-0.291911661624908,-0.85311233997345,-0.335015833377838,-0.39995488524437,-0.85994690656662,-0.337150126695633,-0.3831727206707,-0.7535799741745,-0.595886468887329,-0.277554720640182,-0.863655567169189,-0.332252442836761,-0.379087656736374,-0.780646502971649,-0.563828229904175,-0.269608587026596,-0.79514491558075,-0.520776689052582,-0.310702830553055,-0.849098384380341,-0.341488987207413,-0.403010308742523,-0.807451009750366,-0.355284869670868,-0.470951795578003,-0.756388306617737,-0.533605098724365,-0.378341764211655,-0.748769700527191,-0.531532943248749,-0.396000802516937,-0.796798706054688,-0.354401648044586,-0.489399075508118,-0.659742057323456,-0.63020533323288,-0.409367740154266,-0.796282887458801,-0.358352720737457,-0.487357169389725,-0.751175999641418,-0.369576573371887,-0.54694402217865,-0.63532280921936,-0.607464373111725,-0.476814359426498,-0.107894003391266,-0.988003671169281,0.110489331185818,-0.106369473040104,-0.988994717597961,0.102834679186344,-0.284926146268845,-0.935163795948029,0.210441812872887,-0.296136081218719,-0.92868709564209,0.223257213830948,-0.10304532200098,-0.988921523094177,0.106845855712891, +-0.105081379413605,-0.989531636238098,0.0989194735884666,-0.227703988552094,-0.940569162368774,0.251953691244125,-0.234895944595337,-0.933651685714722,0.270404279232025,-0.237264350056648,-0.933849096298218,0.267640590667725,-0.22044649720192,-0.941115975379944,0.256328135728836,-0.531832098960876,-0.552549540996552,0.641750574111938,-0.538795292377472,-0.550259470939636,0.63789826631546,-0.297516167163849,-0.929107069969177,0.219645440578461,-0.277988612651825,-0.935296058654785,0.21896031498909,-0.671250104904175,-0.553497612476349,0.493014991283417,-0.711759269237518,-0.511901676654816,0.480994343757629,-0.593687355518341,-0.686128854751587,-0.420431554317474,-0.647474527359009,-0.552708208560944,-0.524681210517883,-0.66671895980835,-0.403948962688446,-0.626347482204437,-0.625245094299316,-0.588652849197388,-0.512402653694153,-0.625686764717102,-0.562309801578522,-0.540669918060303,-0.617436408996582,-0.583350718021393,-0.527706682682037,-0.648244857788086,-0.379031330347061,-0.660389125347137,-0.64936101436615,-0.409046709537506,-0.641101539134979,-0.731855452060699,-0.381606936454773,-0.564591765403748,-0.736359715461731,-0.346865803003311,-0.580911755561829,-0.680318415164948,-0.589549660682678,-0.435428738594055,-0.730089485645294,-0.375508666038513,-0.570931315422058,-0.68655127286911,-0.570581376552582,-0.450648695230484,-0.741219460964203,-0.377920627593994,-0.554770052433014,-0.748001158237457,-0.370509445667267,-0.550651431083679,-0.701701581478119,-0.545576512813568,-0.458215296268463,-0.231297880411148,-0.939412534236908,0.252993106842041,-0.249175742268562,-0.937421679496765,0.243212208151817,-0.465559780597687,-0.857907593250275,-0.217367827892303,-0.43450203537941,-0.885918021202087,-0.162349671125412,-0.27598825097084,-0.927391231060028,0.252539336681366,-0.25537970662117,-0.935778558254242,0.243104368448257,-0.447323203086853,-0.862938761711121,-0.235029101371765,-0.46679025888443,-0.857394218444824,-0.216753706336021,-0.488674491643906,-0.847878813743591,-0.205667048692703,-0.477605909109116,-0.8502436876297,-0.221310317516327, +-0.568452775478363,-0.604112267494202,-0.55848902463913,-0.572088122367859,-0.583183109760284,-0.576725780963898,-0.461710214614868,-0.875208854675293,-0.144336879253387,-0.479548841714859,-0.851936042308807,-0.210328340530396,-0.597124457359314,-0.573894798755646,-0.560434818267822,-0.579227566719055,-0.691555023193359,-0.431563675403595,-0.179586619138718,-0.959201872348785,0.218358755111694,-0.00315770553424954,-0.833554685115814,0.552428126335144,-0.0315124467015266,-0.779683649539948,0.625380277633667,-0.245289504528046,-0.939215779304504,0.24022251367569,-0.111188672482967,-0.973568439483643,0.199503362178802,0.217948973178864,-0.816651403903961,0.534395754337311,0.13595612347126,-0.84115070104599,0.523432493209839,-0.166867047548294,-0.961532056331635,0.218200832605362,-0.0729084759950638,-0.981887459754944,0.174875408411026,0.288119405508041,-0.843105256557465,0.454049170017242,0.271088063716888,-0.827755331993103,0.49125599861145,-0.108104132115841,-0.974426865577698,0.19699165225029,-0.0359739102423191,-0.991686224937439,0.123549290001392,0.361121535301208,-0.889549434185028,0.27980899810791,0.324617087841034,-0.903047382831573,0.28129917383194,-0.0425574108958244,-0.989592790603638,0.137459263205528,-0.595057845115662,-0.685597240924835,-0.419359713792801,-0.62950199842453,-0.587588608264923,-0.508396327495575,-0.449495494365692,-0.876744151115417,-0.171095117926598,-0.443486869335175,-0.882519006729126,-0.156459897756577,-0.689522862434387,-0.569542348384857,-0.447414457798004,-0.695537984371185,-0.547083795070648,-0.465753436088562,-0.473460763692856,-0.861745595932007,-0.182289868593216,-0.455845475196838,-0.874607086181641,-0.165128394961357,-0.457791864871979,-0.873935341835022,-0.163289874792099,-0.468259781599045,-0.86319637298584,-0.18874517083168,-0.0941010564565659,-0.975347995758057,0.199602857232094,-0.108191132545471,-0.974402904510498,0.197062522172928,-0.438365280628204,-0.884472727775574,-0.15982411801815,-0.439041942358017,-0.880084276199341,-0.180814996361732,-0.150957629084587,-0.960997343063354,0.231723606586456, +-0.171456128358841,-0.960152506828308,0.220703557133675,-0.050151064991951,-0.987347602844238,0.150431498885155,0.289861768484116,-0.894269466400146,0.340972542762756,0.334768533706665,-0.853281199932098,0.399801582098007,-0.0694471895694733,-0.982850551605225,0.170827403664589,-0.0297815427184105,-0.994735896587372,0.0980494320392609,0.448787271976471,-0.869056880474091,0.20815908908844,0.389252007007599,-0.899164259433746,0.199966743588448,-0.0283874869346619,-0.994281053543091,0.102953635156155,-0.756526052951813,-0.528730928897858,-0.384853303432465,-0.75455641746521,-0.534097850322723,-0.381292641162872,-0.50171685218811,-0.852509498596191,-0.146655142307281,-0.501451075077057,-0.85267972946167,-0.146574407815933,-0.804564118385315,-0.516841113567352,-0.292492598295212,-0.781538903713226,-0.563548505306244,-0.267600506544113,-0.508073031902313,-0.856500506401062,-0.090932659804821,-0.528099894523621,-0.843307018280029,-0.0997184216976166,-0.527408003807068,-0.843588650226593,-0.100990056991577,-0.506150007247925,-0.857102513313293,-0.0958515703678131,-0.0405968390405178,-0.989863932132721,0.136093407869339,-0.0445543825626373,-0.989024758338928,0.1408721357584,-0.502090752124786,-0.852446675300598,-0.145738124847412,-0.498449385166168,-0.853443264961243,-0.15225975215435,-0.0611295029520988,-0.983691155910492,0.169159471988678,-0.0701600015163422,-0.982654571533203,0.171661257743835,-0.0301844254136086,-0.995915949344635,0.0850907638669014,0.473572462797165,-0.873150944709778,0.115485079586506,0.463575571775436,-0.878119945526123,0.118334606289864,-0.0280793569982052,-0.995674729347229,0.0885637849569321,-0.0451378114521503,-0.993917465209961,0.100452117621899,0.350416421890259,-0.936585903167725,-0.00391600281000137,0.423505276441574,-0.905777633190155,-0.0144973639398813,-0.0416174083948135,-0.995460629463196,0.08559300750494,-0.822432458400726,-0.545309245586395,-0.161996066570282,-0.799301326274872,-0.582690417766571,-0.14693346619606,-0.514947116374969,-0.856524288654327,-0.0345806591212749,-0.530512154102325,-0.847134590148926,-0.0303296595811844, +-0.824174165725708,-0.566299617290497,-0.00645996537059546,-0.860600411891937,-0.50886857509613,-0.020490825176239,-0.545966923236847,-0.837116897106171,0.0339943803846836,-0.527092099189758,-0.849184572696686,0.0325510799884796,-0.527755558490753,-0.84860497713089,0.0366590432822704,-0.545896291732788,-0.837304472923279,0.0303076505661011,-0.0302014481276274,-0.995440602302551,0.0904765576124191,-0.0290572457015514,-0.995146989822388,0.0940124168992043,-0.527455151081085,-0.848688840866089,-0.0389668941497803,-0.51405394077301,-0.856869220733643,-0.0390371233224869,-0.0309120323508978,-0.994059920310974,0.10435276478529,-0.0305971652269363,-0.993575870990753,0.108953773975372,-0.817515671253204,-0.548206627368927,-0.176458492875099,-0.908299565315247,-0.316080898046494,-0.274015992879868,-0.914875566959381,-0.318907111883163,-0.247590392827988,-0.798964440822601,-0.582795083522797,-0.148343235254288,-0.82355809211731,-0.558961689472198,-0.0965097397565842,-0.942228376865387,-0.299944013357162,-0.149128273129463,-0.940438032150269,-0.307670056819916,-0.144621685147285,-0.944313287734985,-0.292649745941162,-0.150428056716919,-0.860741436481476,-0.508737802505493,-0.0176075790077448,-0.825321674346924,-0.564650297164917,0.00377321988344193,-0.958552539348602,-0.284741818904877,0.00996770709753036,-0.957081973552704,-0.289280831813812,-0.0176279135048389,-0.824503242969513,-0.526496469974518,0.207354381680489,-0.943223416805267,-0.268701821565628,0.195266455411911,-0.937937676906586,-0.27414807677269,0.212405070662498,-0.798262298107147,-0.563712954521179,0.212143912911415,-0.936499714851379,-0.267185091972351,0.22711355984211,-0.82202810049057,-0.510035216808319,0.253246873617172,-0.852794528007507,-0.470235079526901,0.227201789617538,-0.941436529159546,-0.276222884654999,0.193386405706406,-0.952736973762512,-0.284236669540405,0.107247278094292,-0.868614733219147,-0.478549003601074,0.128449603915215,-0.859255135059357,-0.497821033000946,0.117707118391991,-0.956426322460175,-0.276156276464462,0.0947971343994141,-0.810258030891418,-0.583242893218994,0.0575306750833988, +-0.953416168689728,-0.284868955612183,0.0992340296506882,-0.958238363265991,-0.285220742225647,0.0206985846161842,-0.841297924518585,-0.540523588657379,-0.00722923222929239,-0.0395344756543636,-0.994330763816833,0.0987096279859543,0.431644588708878,-0.901224792003632,0.0384290739893913,0.47284272313118,-0.880886077880859,0.0214374326169491,-0.0301858056336641,-0.995879292488098,0.0855174660682678,-0.0450097061693668,-0.996688365936279,0.0677240267395973,0.358189076185226,-0.914843022823334,-0.186448127031326,0.30990007519722,-0.94347870349884,-0.117515861988068,-0.0488798245787621,-0.994734525680542,0.090077742934227,-0.858398914337158,-0.49647045135498,0.129106387495995,-0.868532121181488,-0.478506356477737,0.129165083169937,-0.555136680603027,-0.821163475513458,0.132339894771576,-0.545177161693573,-0.828192234039307,0.129921793937683,-0.846762359142303,-0.467024713754654,0.254718780517578,-0.819585084915161,-0.509548187255859,0.261994481086731,-0.520898997783661,-0.826313138008118,0.21417498588562,-0.540034174919128,-0.813568770885468,0.215566694736481,-0.539692163467407,-0.813356876373291,0.217216372489929,-0.520346641540527,-0.826236009597778,0.215808719396591,-0.0457378327846527,-0.994056642055511,0.0987904891371727,-0.0401697307825089,-0.994693577289581,0.0947158113121986,-0.545194923877716,-0.828260719776154,0.129408687353134,-0.554995596408844,-0.821113288402557,0.133240148425102,-0.0392979867756367,-0.994191467761993,0.10019488632679,-0.0302178114652634,-0.99492871761322,0.0959369763731956,-0.0208557602018118,-0.996944785118103,0.0752739235758781,0.383448839187622,-0.894507646560669,-0.22983306646347,0.337689459323883,-0.915049016475677,-0.220570296049118,-0.0447757318615913,-0.996671795845032,0.0681214854121208,-0.00320434337481856,-0.998036503791809,0.0625526607036591,0.258610993623734,-0.90278285741806,-0.343661993741989,0.249539390206337,-0.893776178359985,-0.372685313224792,-0.0300980098545551,-0.997986018657684,0.0558398813009262,-0.785833358764648,-0.500674188137054,0.363030880689621,-0.899020791053772,-0.258120119571686,0.353745251893997, +-0.88621860742569,-0.263056367635727,0.381336957216263,-0.754696607589722,-0.538982391357422,0.374073803424835,-0.741078734397888,-0.5188068151474,0.426194667816162,-0.843510270118713,-0.252293646335602,0.474171340465546,-0.839758992195129,-0.260218620300293,0.476540893316269,-0.845419406890869,-0.244436472654343,0.474886298179626,-0.704892516136169,-0.475802659988403,0.526059329509735,-0.672677874565125,-0.532690644264221,0.513561367988586,-0.749899089336395,-0.250143140554428,0.612437725067139,-0.763541102409363,-0.252809077501297,0.594216108322144,-0.778267562389374,-0.498297274112701,0.382098704576492,-0.750911056995392,-0.539003670215607,0.381585687398911,-0.480953693389893,-0.831539511680603,0.277895003557205,-0.494233787059784,-0.820320308208466,0.287763267755508,-0.676465809345245,-0.533234298229218,0.507991313934326,-0.704232752323151,-0.475839018821716,0.526909351348877,-0.450579822063446,-0.818520128726959,0.356374353170395,-0.444654703140259,-0.828556001186371,0.340260654687881,-0.438262820243835,-0.827620506286621,0.350670844316483,-0.449246346950531,-0.818548321723938,0.357989281415939,-0.0260591115802526,-0.997276186943054,0.069001093506813,-0.0389761738479137,-0.996194005012512,0.0779637098312378,-0.495389223098755,-0.820666074752808,0.284775078296661,-0.480325490236282,-0.831524133682251,0.279025018215179,-0.0372152701020241,-0.996023297309875,0.0809483677148819,-0.05022232234478,-0.994998276233673,0.0863490551710129,-0.516614675521851,-0.554385304450989,0.652507722377777,-0.578306972980499,-0.272710144519806,0.7688889503479,-0.593678593635559,-0.268328785896301,0.75864714384079,-0.530815243721008,-0.549456715583801,0.645238399505615,-0.559643566608429,-0.274246245622635,0.782041013240814,-0.508351922035217,-0.446755141019821,0.736198484897614,-0.523263335227966,-0.447631239891052,0.725135743618011,-0.576941907405853,-0.26790788769722,0.771597981452942,-0.677661895751953,-0.268552213907242,0.684583187103271,-0.617350399494171,-0.446632325649261,0.64760947227478,-0.619161248207092,-0.476183474063873,0.624410629272461, +-0.693861842155457,-0.24979031085968,0.675396621227264,-0.637906432151794,-0.554734706878662,0.534176766872406,-0.687403857707977,-0.268347233533859,0.674881994724274,-0.748510420322418,-0.252378702163696,0.613218784332275,-0.701856374740601,-0.509287416934967,0.498020023107529,-0.00480713322758675,-0.996991157531738,0.077366054058075,0.33510634303093,-0.894093871116638,-0.297152906656265,0.314660459756851,-0.895620226860046,-0.314409673213959,-0.0307651646435261,-0.99751889705658,0.0633220225572586,-0.0262670647352934,-0.998946785926819,0.0376221016049385,0.17118301987648,-0.905928790569305,-0.387284874916077,0.166957318782806,-0.901063084602356,-0.400263220071793,-0.039030846208334,-0.998377859592438,0.0414519682526588,-0.607680976390839,-0.475660264492035,0.635980546474457,-0.614046990871429,-0.446786940097809,0.650636494159698,-0.393824130296707,-0.808006644248962,0.438209921121597,-0.390968590974808,-0.816442668437958,0.424929231405258,-0.510483503341675,-0.447273313999176,0.734406709671021,-0.503952383995056,-0.447080790996552,0.739020109176636,-0.328034549951553,-0.808950960636139,0.487844109535217,-0.334250748157501,-0.807127475738525,0.486643493175507,-0.326635211706161,-0.806681096553802,0.492519229650497,-0.324237614870071,-0.80912983417511,0.490080565214157,-0.0202011372894049,-0.998413681983948,0.0525559782981873,-0.0256867930293083,-0.997891783714294,0.059600941836834,-0.383989691734314,-0.815780103206635,0.432498335838318,-0.390964806079865,-0.808074474334717,0.440638661384583,-0.0167498905211687,-0.997598171234131,0.0672122687101364,-0.0232098232954741,-0.997102975845337,0.0724368467926979,-0.0442025884985924,-0.998786509037018,0.0217172298580408,0.0825514495372772,-0.900034606456757,-0.427928775548935,0.0746327340602875,-0.901981830596924,-0.425275057554245,-0.0530300065875053,-0.998212814331055,0.0275519210845232,-0.0854118093848228,-0.996335625648499,0.00448980834335089,-0.11648516356945,-0.910914957523346,-0.395809710025787,-0.128487765789032,-0.888424873352051,-0.440672487020493,-0.0964489430189133,-0.995284378528595,0.0103313932195306, +-0.380363315343857,-0.45121768116951,0.807295799255371,-0.375895410776138,-0.458203673362732,0.805451512336731,-0.264949142932892,-0.815372467041016,0.514752268791199,-0.268965244293213,-0.809961140155792,0.521172523498535,-0.250871866941452,-0.465537339448929,0.848727405071259,-0.245943039655685,-0.498912900686264,0.831022322177887,-0.186152085661888,-0.833038449287415,0.520955264568329,-0.194109410047531,-0.818694174289703,0.540427088737488,-0.190956324338913,-0.818733513355255,0.541489839553833,-0.186979353427887,-0.832959949970245,0.520784497261047,-0.0583311170339584,-0.998115658760071,0.019043380394578,-0.0591640695929527,-0.997929215431213,0.0252383556216955,-0.265379190444946,-0.809903144836426,0.523097336292267,-0.26338142156601,-0.81549733877182,0.515358448028564,-0.0419420972466469,-0.99861615896225,0.0317287221550941,-0.0437749177217484,-0.998293578624725,0.0386494994163513,-0.0540326908230782,-0.998479545116425,0.0109163234010339,-0.0176060199737549,-0.898856580257416,-0.437889099121094,-0.0329466387629509,-0.891878426074982,-0.451073735952377,-0.0725044831633568,-0.997233986854553,0.0163547694683075,-0.136583894491196,-0.990544199943542,0.0129226036369801,-0.209316402673721,-0.90580415725708,-0.368382185697556,-0.199477016925812,-0.90183287858963,-0.383283823728561,-0.123925238847733,-0.992233455181122,0.0107453810051084,-0.319175541400909,-0.561051666736603,0.763772189617157,-0.307437568902969,-0.567293405532837,0.763976693153381,-0.350589990615845,-0.284100115299225,0.892397820949554,-0.363914966583252,-0.281607985496521,0.887841701507568,-0.154453083872795,-0.581548154354095,0.798715353012085,-0.0910488367080688,-0.551063358783722,0.829481422901154,-0.145382776856422,-0.28681480884552,0.946890234947205,-0.228678643703461,-0.293202728033066,0.928298652172089,-0.235929250717163,-0.29280036687851,0.926609694957733,-0.22103089094162,-0.279132217168808,0.934468030929565,-0.228585943579674,-0.500489115715027,0.835020542144775,-0.245121851563454,-0.465675741434097,0.850330233573914,-0.378120213747025,-0.28154793381691,0.881904780864716, +-0.362059831619263,-0.282977163791656,0.888164818286896,-0.359630435705185,-0.459644705057144,0.812030017375946,-0.375122278928757,-0.45119509100914,0.809756934642792,-0.111156649887562,-0.506891548633575,0.854812979698181,-0.113707035779953,-0.56906932592392,0.814389824867249,-0.0971257239580154,-0.85304993391037,0.512710988521576,-0.106167063117027,-0.837778270244598,0.535589516162872,0.0201142728328705,-0.581438601016998,0.813341617584229,0.0348970592021942,-0.547973394393921,0.835767567157745,-0.0429885573685169,-0.851230502128601,0.523028254508972,-0.0403931140899658,-0.85762083530426,0.512693881988525,-0.0399086214601994,-0.857647776603699,0.512686550617218,-0.0365275368094444,-0.852174758911133,0.521980762481689,-0.093392938375473,-0.995612561702728,0.0057849632576108,-0.095036581158638,-0.995420038700104,0.0103512108325958,-0.104288652539253,-0.837822616100311,0.535889089107513,-0.101389899849892,-0.852593302726746,0.512644946575165,-0.0679484903812408,-0.997631192207336,0.0107267471030354,-0.0701931193470955,-0.997392058372498,0.0167936533689499,-0.164472565054893,-0.986042857170105,0.0258522853255272,-0.316975027322769,-0.855638563632965,-0.409157246351242,-0.271250545978546,-0.897847712039948,-0.34683233499527,-0.145113706588745,-0.98928701877594,0.0159139614552259,-0.188589125871658,-0.980627536773682,0.0529524385929108,-0.452600449323654,-0.849294900894165,-0.271755546331406,-0.470621258020401,-0.82063889503479,-0.324141353368759,-0.176589205861092,-0.983589828014374,0.0369778200984001,-0.0984887555241585,-0.989812850952148,0.102813422679901,-0.104597352445126,-0.989924132823944,0.0954453274607658,-0.166969016194344,-0.940649271011353,0.295466244220734,-0.157580733299255,-0.943016290664673,0.29306748509407,-0.0925978273153305,-0.990897655487061,0.0977116227149963,-0.097406767308712,-0.991079330444336,0.0909597128629684,-0.0923267230391502,-0.945503711700439,0.312247484922409,-0.0875986814498901,-0.946633219718933,0.310180604457855,-0.0927713885903358,-0.946432888507843,0.309286594390869,-0.0912847369909286,-0.945658385753632,0.312085539102554, +-0.0866725370287895,-0.551885962486267,0.829403400421143,-0.112717285752296,-0.582921266555786,0.804672479629517,-0.158025026321411,-0.943020462989807,0.292814999818802,-0.162947699427605,-0.941103577613831,0.296263486146927,-0.310357451438904,-0.566873669624329,0.763107120990753,-0.311131447553635,-0.560727119445801,0.767321646213531,-0.100844226777554,-0.991821527481079,0.078234001994133,0.0356190837919712,-0.968595862388611,0.246075913310051,0.036847822368145,-0.966939687728882,0.252329260110855,-0.0992250069975853,-0.991397976875305,0.0853490903973579,0.0325610861182213,-0.967793941497803,0.249629199504852,0.429023206233978,-0.596416532993317,0.678399920463562,0.383965075016022,-0.648965120315552,0.656822025775909,0.032529603689909,-0.966434359550476,0.254846215248108,-0.0189063474535942,-0.958550095558167,0.284296274185181,0.194928869605064,-0.61901181936264,0.760806977748871,0.206894174218178,-0.581447303295135,0.786837816238403,-0.0177822709083557,-0.953831851482391,0.299814343452454,-0.0864325761795044,-0.993189692497253,0.0781262069940567,-0.0132565200328827,-0.959584295749664,0.281109213829041,-0.00974387209862471,-0.95440012216568,0.298371225595474,-0.0857874304056168,-0.992326021194458,0.0890485197305679,-0.107984125614166,-0.506964027881622,0.855176627635956,-0.124055415391922,-0.288660228252411,0.94936066865921,-0.148872166872025,-0.287537038326263,0.946128726005554,-0.119607530534267,-0.568280935287476,0.814095020294189,-0.0159792434424162,-0.563620686531067,0.825879156589508,0.0221974197775126,-0.297922283411026,0.954331994056702,0.0252431090921164,-0.309497684240341,0.950565099716187,0.0222355350852013,-0.297627002000809,0.954423367977142,0.0554933026432991,-0.551446974277496,0.832362174987793,0.0279049538075924,-0.581835806369781,0.812827408313751,0.107452370226383,-0.316577792167664,0.942460894584656,0.138705372810364,-0.317018896341324,0.938221633434296,0.141130477190018,-0.563267707824707,0.814132511615753,0.167733147740364,-0.519241750240326,0.838005721569061,0.0239134430885315,-0.847722053527832,0.529901325702667, +0.0125649347901344,-0.858126163482666,0.513285100460052,0.278027772903442,-0.536187767982483,0.796996355056763,0.29150265455246,-0.536415576934814,0.792012989521027,0.0932892858982086,-0.86190277338028,0.498418211936951,0.08399498462677,-0.856697201728821,0.50893497467041,0.0820768103003502,-0.856464684009552,0.509638845920563,0.079987108707428,-0.859185457229614,0.505373537540436,-0.157317340373993,-0.987307131290436,0.0218147598206997,-0.158177584409714,-0.987197935581207,0.0205010641366243,0.0116694932803512,-0.858036935329437,0.513455390930176,0.0181216299533844,-0.846672892570496,0.531805157661438,-0.133488461375237,-0.990979671478271,0.0118377637118101,-0.133631512522697,-0.990954518318176,0.0123242158442736,0.203072965145111,-0.581392765045166,0.787872970104218,0.185115665197372,-0.616715431213379,0.765110611915588,0.272752910852432,-0.340822637081146,0.899692058563232,0.289006233215332,-0.33527871966362,0.896696031093597,0.350543200969696,-0.645770013332367,0.678307116031647,0.430064886808395,-0.596756398677826,0.677440762519836,0.482207059860229,-0.365862607955933,0.79600316286087,0.416948884725571,-0.362939983606339,0.833323657512665,0.392264723777771,-0.359712898731232,0.846602082252502,0.431555449962616,-0.355576187372208,0.82905101776123,0.3264419734478,-0.542796015739441,0.773826956748962,0.291920751333237,-0.53781670331955,0.790908098220825,0.253294855356216,-0.331619918346405,0.908773839473724,0.28725403547287,-0.343387842178345,0.894186794757843,0.198061659932137,-0.524594306945801,0.827993094921112,0.153018027544022,-0.564570367336273,0.811076879501343,-0.173844933509827,-0.984161138534546,0.0347104668617249,-0.407809525728226,-0.832315862178802,-0.375422328710556,-0.385978221893311,-0.84497743844986,-0.370181173086166,-0.160809502005577,-0.986698865890503,0.0237847380340099,-0.203748807311058,-0.975537538528442,0.0825415402650833,-0.488260060548782,-0.854724943637848,-0.176203072071075,-0.496635943651199,-0.839441418647766,-0.220660626888275,-0.191002905368805,-0.980001926422119,0.055805467069149, +0.40926992893219,-0.554704666137695,0.724431395530701,0.407585740089417,-0.589243590831757,0.697614431381226,0.153476238250732,-0.893784642219543,0.421419084072113,0.1551493704319,-0.871937811374664,0.464384734630585,0.499786078929901,-0.604381859302521,0.620432555675507,0.430153518915176,-0.725653171539307,0.537024557590485,0.173950880765915,-0.919562101364136,0.352344542741776,0.184954240918159,-0.899316430091858,0.396259844303131,0.181944534182549,-0.898849725723267,0.398704469203949,0.156317934393883,-0.914780139923096,0.372481048107147,-0.181614518165588,-0.982352375984192,0.0447223484516144,-0.18531833589077,-0.98168408870697,0.0441993959248066,0.152221411466599,-0.871560454368591,0.466058999300003,0.132350772619247,-0.88927561044693,0.43780392408371,-0.166972115635872,-0.985533952713013,0.0290382280945778,-0.169656440615654,-0.985082983970642,0.0287803187966347,-0.204100489616394,-0.974043369293213,0.0978906378149986,-0.58330225944519,-0.800586640834808,-0.137184515595436,-0.516086578369141,-0.846919536590576,-0.127992898225784,-0.197359442710876,-0.977721929550171,0.0714783221483231,-0.196317628026009,-0.97504186630249,0.103695653378963,-0.667312681674957,-0.744423627853394,0.0229646507650614,-0.658670127391815,-0.752339541912079,0.0117910671979189,-0.197470173239708,-0.976130723953247,0.0904117897152901,0.526378333568573,-0.623591542243958,0.577978789806366,0.724424958229065,-0.413948088884354,0.551230788230896,0.646622657775879,-0.412489742040634,0.641663014888763,0.570431411266327,-0.381152331829071,0.727551400661469,0.736988604068756,-0.417952984571457,0.531190276145935,0.651388823986053,-0.603588581085205,0.459753811359406,0.600174605846405,-0.62949526309967,0.493483752012253,0.702318906784058,-0.423833549022675,0.571938157081604,0.642412841320038,-0.411544680595398,0.6464803814888,0.547139585018158,-0.610505342483521,0.572644293308258,0.43650808930397,-0.727179765701294,0.529783248901367,0.515701830387115,-0.606174886226654,0.60547810792923,0.546139299869537,-0.377307146787643,0.747911274433136,0.581108152866364,-0.396622478961945,0.71063631772995, +0.448465943336487,-0.596900701522827,0.665272831916809,0.426384896039963,-0.556561946868896,0.713046073913574,0.441171258687973,-0.728261947631836,0.524406790733337,0.555593371391296,-0.613786160945892,0.560876667499542,0.226886093616486,-0.905646622180939,0.358227491378784,0.177753508090973,-0.92050838470459,0.347948372364044,0.625469624996185,-0.637010514736176,0.450561076402664,0.6572026014328,-0.606322288513184,0.447725564241409,0.301288694143295,-0.90109121799469,0.311865299940109,0.25384795665741,-0.915444135665894,0.312287002801895,0.261034488677979,-0.917639255523682,0.299665123224258,0.300364702939987,-0.900586366653442,0.314205855131149,-0.200650721788406,-0.975669741630554,0.0883621647953987,-0.206140235066414,-0.974674463272095,0.0866940915584564,0.187006175518036,-0.922683358192444,0.337170839309692,0.225783705711365,-0.905195355415344,0.360060036182404,-0.197697371244431,-0.97761082649231,0.0720623061060905,-0.202600032091141,-0.976788878440857,0.0695471465587616,-0.198620334267616,-0.975271463394165,0.0969311073422432,-0.644856691360474,-0.761440515518188,-0.0660920590162277,-0.608450531959534,-0.790768980979919,-0.0668756142258644,-0.198450356721878,-0.9766486287117,0.0823101103305817,-0.19702385365963,-0.975650191307068,0.0963759422302246,-0.663021981716156,-0.742534577846527,0.0951015204191208,-0.667485952377319,-0.735486567020416,0.116284415125847,-0.196303740143776,-0.973322451114655,0.118778504431248,0.714139640331268,-0.629264950752258,0.306643694639206,0.716019451618195,-0.630739033222198,0.299139708280563,0.343065232038498,-0.912037491798401,0.224708288908005,0.332138061523438,-0.914930582046509,0.229317158460617,0.744948267936707,-0.646567761898041,0.164324015378952,0.70866447687149,-0.687947332859039,0.156598642468452,0.339233487844467,-0.930084109306335,0.140940308570862,0.358688056468964,-0.922598719596863,0.141966849565506,0.358233660459518,-0.922366499900818,0.144598513841629,0.339199215173721,-0.929930925369263,0.14202992618084,-0.196312949061394,-0.975516378879547,0.0991420820355415, +-0.19922910630703,-0.974796235561371,0.100400552153587,0.333122909069061,-0.915267288684845,0.226528257131577,0.342784285545349,-0.911806166172028,0.226071774959564,-0.197338670492172,-0.976225793361664,0.089669369161129,-0.201558530330658,-0.975252687931061,0.0908648446202278,-0.197419747710228,-0.974699258804321,0.1048179641366,-0.617450177669525,-0.764790594577789,0.183985397219658,-0.64491206407547,-0.735560178756714,0.207460269331932,-0.192537724971771,-0.973645150661469,0.122247338294983,-0.198599800467491,-0.972783744335175,0.119373425841331,-0.52674388885498,-0.781371176242828,0.334663987159729,-0.495391637086868,-0.807288765907288,0.320736557245255,-0.191967368125916,-0.973738729953766,0.122399345040321,0.691170811653137,-0.690137684345245,0.214459702372551,0.857223331928253,-0.459932297468185,0.231582656502724,0.856443822383881,-0.468912363052368,0.215928390622139,0.66020005941391,-0.721983432769775,0.207064881920815,0.863225221633911,-0.465306311845779,0.195786088705063,0.707954108715057,-0.686972975730896,0.163918346166611,0.739851474761963,-0.644172608852386,0.19406570494175,0.853358030319214,-0.467658460140228,0.23038187623024,0.817428112030029,-0.45187371969223,0.357241690158844,0.713646292686462,-0.629280149936676,0.307758927345276,0.701828122138977,-0.625050246715546,0.341686367988586,0.808022141456604,-0.438033819198608,0.393988281488419,0.596797466278076,-0.700037002563477,0.392149388790131,0.810004949569702,-0.448452770709991,0.377865374088287,0.784547746181488,-0.431987345218658,0.444827944040298,0.618968486785889,-0.638666749000549,0.457146376371384,-0.122557781636715,-0.987020373344421,0.10378110408783,-0.120068728923798,-0.986618340015411,0.110307663679123,0.0704078748822212,-0.97458279132843,0.21267631649971,0.0688903778791428,-0.97591370344162,0.206994265317917,-0.128149524331093,-0.982872486114502,0.132436022162437,-0.113960020244122,-0.983121573925018,0.143126592040062,0.10868838429451,-0.978620886802673,0.174608305096626,0.0889342352747917,-0.982485592365265,0.163746133446693,0.0912669748067856,-0.983291625976563,0.157505288720131, +0.108957022428513,-0.982471764087677,0.151253253221512,0.690757632255554,-0.689105689525604,0.219060003757477,0.655809044837952,-0.721207559108734,0.223101273179054,0.0705791637301445,-0.976216077804565,0.204989850521088,0.0734378844499588,-0.976055562496185,0.204749792814255,0.582660973072052,-0.693070948123932,0.42445120215416,0.622078061103821,-0.638934671878815,0.452527791261673,0.71475750207901,-0.698871672153473,0.0264611802995205,0.683097183704376,-0.729849100112915,0.0264299362897873,0.328575402498245,-0.941745221614838,0.071793757379055,0.340619742870331,-0.938137888908386,0.0622541904449463,0.661298811435699,-0.741947948932648,-0.110440716147423,0.710286676883698,-0.691798985004425,-0.13002721965313,0.336457908153534,-0.941591501235962,-0.0141970962285995,0.31728407740593,-0.948321938514709,0.00403206050395966,0.315263897180557,-0.948976635932922,-0.00721603631973267,0.335705995559692,-0.941825211048126,-0.0163360834121704,-0.191621631383896,-0.973969340324402,0.121099181473255,-0.192177668213844,-0.973458051681519,0.124287456274033,0.34056693315506,-0.937491357326508,0.0715842097997665,0.32846999168396,-0.941833317279816,0.0711166262626648,-0.193669378757477,-0.97420859336853,0.115801237523556,-0.196306079626083,-0.973444700241089,0.117768242955208,-0.195809006690979,-0.973808109760284,0.115570642054081,-0.528816521167755,-0.80801397562027,0.259743213653564,-0.583199977874756,-0.760723054409027,0.284917831420898,-0.193353354930878,-0.974217057228088,0.11625712364912,-0.207740858197212,-0.970686852931976,0.120875418186188,-0.535942673683167,-0.738210022449493,0.409648001194,-0.480554133653641,-0.783940494060516,0.393071472644806,-0.183008566498756,-0.973307132720947,0.138495713472366,0.714612901210785,-0.69795823097229,0.0467197373509407,0.87531989812851,-0.47979262471199,0.0601171925663948,0.873145461082458,-0.486403346061707,0.0320751443505287,0.683717131614685,-0.729040503501892,0.0321082435548306,0.692190825939178,-0.721515417098999,-0.0169560853391886,0.872027218341827,-0.486294209957123,-0.0555570870637894, +0.866948783397675,-0.495789885520935,-0.05091417953372,0.8727205991745,-0.485026776790619,-0.0557481236755848,0.71059376001358,-0.691670119762421,-0.129031047224998,0.660638809204102,-0.742058634757996,-0.113602124154568,0.837233006954193,-0.504062235355377,-0.212043166160583,0.842193424701691,-0.502119719982147,-0.196433395147324,0.661446273326874,-0.702156901359558,-0.263561248779297,0.680054664611816,-0.676309287548065,-0.2830750644207,0.319255501031876,-0.940711617469788,-0.114619940519333,0.306045979261398,-0.947060644626617,-0.0970156863331795,0.619525909423828,-0.680357694625854,-0.391536831855774,0.614257097244263,-0.676868319511414,-0.40563228726387,0.27995228767395,-0.941436290740967,-0.187948137521744,0.284143686294556,-0.942506551742554,-0.175908714532852,0.27740266919136,-0.942319333553314,-0.187302082777023,0.276427745819092,-0.941599488258362,-0.192297220230103,-0.19284476339817,-0.9730464220047,0.12645760178566,-0.188310369849205,-0.973617434501648,0.12887342274189,0.302161425352097,-0.947221875190735,-0.107095278799534,0.317948341369629,-0.940865814685822,-0.116962999105453,-0.194234549999237,-0.973786950111389,0.118372812867165,-0.192111313343048,-0.974041938781738,0.119731739163399,-0.18783900141716,-0.971381187438965,0.145379111170769,-0.445447385311127,-0.754270076751709,0.482341527938843,-0.433796674013138,-0.747290790081024,0.503365695476532,-0.167814344167709,-0.973466217517853,0.155569523572922,-0.0929938331246376,-0.978994429111481,0.18144479393959,-0.170567154884338,-0.801997542381287,0.572456836700439,-0.183391213417053,-0.81853312253952,0.544399797916412,-0.113184675574303,-0.976769208908081,0.18196476995945,0.59053236246109,-0.758445382118225,-0.275739282369614,0.748538196086884,-0.524342358112335,-0.405901193618774,0.76015293598175,-0.525665760040283,-0.381894022226334,0.593586564064026,-0.76473343372345,-0.250674605369568,0.733125627040863,-0.526718437671661,-0.43022620677948,0.622823238372803,-0.67599081993103,-0.393862456083298,0.635854363441467,-0.680325031280518,-0.364481866359711, +0.749996781349182,-0.52601683139801,-0.401012778282166,0.796257555484772,-0.521954894065857,-0.305838257074356,0.684088289737701,-0.675599932670593,-0.274932712316513,0.670629799365997,-0.701411128044128,-0.241408705711365,0.812931001186371,-0.506791710853577,-0.286889374256134,0.638597190380096,-0.757903337478638,-0.133327439427376,0.800923049449921,-0.521127998828888,-0.29486957192421,0.838961243629456,-0.502950668334961,-0.207809805870056,0.686837911605835,-0.723204731941223,-0.0723096057772636,-0.113839611411095,-0.978833436965942,0.170075669884682,-0.0909135341644287,-0.98339569568634,0.157059371471405,0.118072114884853,-0.986970245838165,0.109310992062092,0.109219618141651,-0.986738741397858,0.120074413716793,-0.09395981580019,-0.984395503997803,0.148785769939423,-0.07191202044487,-0.986930131912231,0.144213527441025,0.108168289065361,-0.99291729927063,0.0491422973573208,0.0965228974819183,-0.994157075881958,0.0483217611908913,0.0941948816180229,-0.994676411151886,0.0417892336845398,0.099120557308197,-0.994346976280212,0.0380693897604942,0.598762035369873,-0.756435871124268,-0.263227641582489,0.591997504234314,-0.764751970767975,-0.254349112510681,0.109322801232338,-0.988775312900543,0.101843230426311,0.110554367303848,-0.989973187446594,0.0879254192113876,0.652644753456116,-0.752356886863708,-0.0895205810666084,0.687953174114227,-0.723066747188568,-0.0624097436666489,0.527292549610138,-0.678048491477966,-0.512067258358002,0.531970322132111,-0.679661273956299,-0.505042850971222,0.242256954312325,-0.942171692848206,-0.23156875371933,0.23632737994194,-0.941405951976776,-0.240632846951485,0.426289051771164,-0.678885340690613,-0.597823023796082,0.420162081718445,-0.703331768512726,-0.573400735855103,0.176408335566521,-0.947375416755676,-0.267132937908173,0.179587408900261,-0.941303610801697,-0.285824924707413,0.180111780762672,-0.941337466239929,-0.285383433103561,0.159949064254761,-0.947328329086304,-0.277462482452393,-0.167188838124275,-0.973210394382477,0.157827287912369,-0.157880991697311,-0.973732233047485,0.164070934057236, +0.23641337454319,-0.94141036272049,-0.240531459450722,0.226439401507378,-0.942565679550171,-0.245551005005836,-0.182876706123352,-0.972742080688477,0.142580330371857,-0.174562036991119,-0.97334349155426,0.148763611912727,-0.131634056568146,-0.975723385810852,0.175032451748848,-0.268338710069656,-0.814874291419983,0.513784170150757,-0.30763378739357,-0.763844549655914,0.567364931106567,-0.146039128303528,-0.974489212036133,0.170420959591866,-0.0806085243821144,-0.97880095243454,0.188284054398537,-0.118013747036457,-0.765731692314148,0.632240414619446,-0.104122489690781,-0.80583918094635,0.582908153533936,-0.0676584392786026,-0.980205535888672,0.186063304543495,-0.0486880578100681,-0.979309141635895,0.196425899863243,-0.0366454161703587,-0.77890408039093,0.626071453094482,-0.0380661226809025,-0.772889971733093,0.633397221565247,-0.0715055018663406,-0.979444086551666,0.188616782426834,0.298502922058105,-0.697774350643158,-0.651158273220062,0.284925699234009,-0.743982136249542,-0.604407250881195,0.0980644747614861,-0.950332641601563,-0.295383095741272,0.104681089520454,-0.944588780403137,-0.311117470264435,0.171421378850937,-0.739544868469238,-0.650913417339325,0.191868737339973,-0.70144659280777,-0.686410307884216,0.0755372047424316,-0.940564215183258,-0.331108838319778,0.0486089400947094,-0.94797694683075,-0.314606100320816,0.0507313683629036,-0.948132753372192,-0.313800454139709,0.0461165122687817,-0.940290629863739,-0.337234258651733,-0.114877857267857,-0.977420330047607,0.177348956465721,-0.105622380971909,-0.977087497711182,0.184781074523926,0.105507798492908,-0.944658637046814,-0.310625582933426,0.0903046652674675,-0.950139820575714,-0.298461616039276,-0.14538186788559,-0.974694192409515,0.169809684157372,-0.138919606804848,-0.974785804748535,0.174625262618065,0.47175395488739,-0.768689870834351,-0.431930780410767,0.480139076709747,-0.755712449550629,-0.445382118225098,0.618766844272614,-0.523916721343994,-0.58535373210907,0.619325757026672,-0.531415104866028,-0.577956438064575,0.368970155715942,-0.763641953468323,-0.529822587966919, +0.38648596405983,-0.682605385780334,-0.62022465467453,0.484599679708481,-0.507422924041748,-0.71252030134201,0.51661616563797,-0.526448547840118,-0.675247967243195,0.511755883693695,-0.526332199573517,-0.679028928279877,0.523745596408844,-0.506335079669952,-0.685065925121307,0.425271958112717,-0.703239917755127,-0.569734513759613,0.434830129146576,-0.679428517818451,-0.591015815734863,0.618330836296082,-0.531378209590912,-0.579054594039917,0.625395596027374,-0.523383915424347,-0.578748285770416,0.537844359874725,-0.679289400577545,-0.49928891658783,0.534049153327942,-0.678399324417114,-0.504545331001282,0.0891903191804886,-0.700134992599487,-0.708418071269989,0.108228012919426,-0.64802873134613,-0.753886938095093,0.0398450717329979,-0.92556756734848,-0.376479774713516,0.0154633745551109,-0.939104497432709,-0.343283772468567,0.0441147573292255,-0.64669007062912,-0.761476039886475,0.061479389667511,-0.608313500881195,-0.791312277317047,0.0143439276143909,-0.918473541736603,-0.395222276449203,-0.00589696131646633,-0.924805343151093,-0.380395203828812,6.94934278726578e-05,-0.925015330314636,-0.379929900169373,-0.0231391936540604,-0.917582035064697,-0.396872669458389,-0.063006766140461,-0.978426039218903,0.19675512611866,-0.03990263864398,-0.981041014194489,0.189648315310478,0.0216094106435776,-0.939415872097015,-0.34209793806076,0.00541224144399166,-0.925175249576569,-0.379501700401306,-0.0788712799549103,-0.978930056095123,0.188348814845085,-0.0588051564991474,-0.980474829673767,0.187646150588989,0.308859914541245,-0.698792338371277,-0.64520925283432,0.414656579494476,-0.506576538085938,-0.755936682224274,0.444022923707962,-0.503170669078827,-0.741392552852631,0.300880044698715,-0.743699193000793,-0.596978068351746,0.269642025232315,-0.692259013652802,-0.669380843639374,0.348090887069702,-0.475287705659866,-0.808043539524078,0.350890576839447,-0.504578411579132,-0.788845002651215,0.341161042451859,-0.502236425876617,-0.794586539268494,0.191073969006538,-0.70146632194519,-0.686611771583557,0.181407153606415,-0.740374147891998,-0.64725387096405, +0.234641417860985,-0.499030858278275,-0.834213256835938,0.225963816046715,-0.478300034999847,-0.848627984523773,0.150750368833542,-0.690856695175171,-0.707100689411163,0.168155178427696,-0.676416158676147,-0.717066943645477,0.184002682566643,-0.474885731935501,-0.860596597194672,0.166387975215912,-0.476947605609894,-0.863038837909698,0.0906840115785599,-0.679757535457611,-0.727809190750122,0.0969462990760803,-0.63005530834198,-0.770475029945374,0.113261625170708,-0.479812264442444,-0.870029926300049,0.111462228000164,-0.474355012178421,-0.873248875141144,0.102611072361469,-0.474115401506424,-0.874463021755219,0.103236854076385,-0.479638874530792,-0.871371686458588,0.0886742547154427,-0.608681738376617,-0.788443744182587,0.0804721787571907,-0.647780120372772,-0.757565319538116,0.143187567591667,-0.475944310426712,-0.86774092912674,0.137697115540504,-0.474843174219131,-0.869231522083282,0.12013204395771,-0.647979497909546,-0.75212424993515,0.111562334001064,-0.701076328754425,-0.704305291175842,-0.114430628716946,-0.989060401916504,0.0930872410535812,-0.0700946897268295,-0.992343902587891,0.101687170565128,0.0879830792546272,-0.995760202407837,-0.0268426910042763,0.0418639071285725,-0.998623192310333,-0.0316098853945732,-0.082343615591526,-0.992132961750031,0.0942960530519485,-0.183808758854866,-0.98256641626358,0.0278852917253971,0.00553687335923314,-0.992596626281738,-0.121332101523876,0.096499115228653,-0.995099246501923,-0.0215770024806261,0.0852840915322304,-0.995948791503906,-0.0285098496824503,0.110522374510765,-0.989292442798615,-0.0953171029686928,0.359554320573807,-0.68587064743042,-0.632694363594055,0.345158487558365,-0.763421893119812,-0.545941889286041,0.0657493099570274,-0.997832775115967,-0.00262408144772053,0.073708139359951,-0.996642410755157,-0.0356509648263454,0.458833456039429,-0.758461594581604,-0.462825924158096,0.463425874710083,-0.768330276012421,-0.441480666399002,0.177283823490143,-0.69209498167038,-0.69969642162323,0.210660368204117,-0.975111186504364,-0.0691400617361069,0.181436955928802,-0.965362906455994,-0.187497228384018, +0.156494617462158,-0.677188277244568,-0.718975365161896,0.350552827119827,-0.923111796379089,0.158042103052139,0.291464447975159,-0.946041643619537,-0.141611397266388,0.241907477378845,-0.952526271343231,-0.18486313521862,0.293709278106689,-0.954769432544708,-0.046369731426239,0.0801397264003754,-0.63019210100174,-0.77229243516922,0.0879775732755661,-0.679798781871796,-0.728102743625641,-0.0111993886530399,-0.981512069702148,-0.191072329878807,0.0682393610477448,-0.986958742141724,-0.145794123411179,-0.372567176818848,-0.429126590490341,-0.822826981544495,-0.316819787025452,-0.464389353990555,-0.827023565769196,-0.170894578099251,-0.299137771129608,-0.938782095909119,-0.213824838399887,-0.256139069795609,-0.942693948745728,-0.0295280069112778,-0.0450843051075935,-0.998546719551086,-0.00795040652155876,-0.0759111791849136,-0.997082948684692,-0.221682637929916,-0.244153559207916,-0.944058179855347,-0.235503688454628,-0.208993434906006,-0.94913637638092,0.177848875522614,0.11616962403059,-0.977176785469055,0.172057554125786,0.146183684468269,-0.974179923534393,-0.042074903845787,-0.0192123744636774,-0.998929738998413,-0.0295235309749842,-0.0450911037623882,-0.998546600341797,-0.15865857899189,-0.833395659923553,-0.529413998126984,-0.143923342227936,-0.812189221382141,-0.565362513065338,-0.131318971514702,-0.806237578392029,-0.576833009719849,-0.145896956324577,-0.826307773590088,-0.543994188308716,-0.34702530503273,-0.758488655090332,-0.551605343818665,-0.314502447843552,-0.748409390449524,-0.583927810192108,-0.254241317510605,-0.694907128810883,-0.672655522823334,-0.285064518451691,-0.703994393348694,-0.650484621524811,0.131512314081192,-0.606652021408081,-0.784014046192169,0.0834856554865837,-0.608928501605988,-0.78881961107254,0.121219173073769,-0.732328951358795,-0.670074820518494,0.176046565175056,-0.73735523223877,-0.652161657810211,-0.342916488647461,-0.639632403850555,-0.68795257806778,-0.270364314317703,-0.546270489692688,-0.792774677276611,-0.193162947893143,-0.441961288452148,-0.875989973545074,-0.254546016454697,-0.526336312294006,-0.811280727386475, +-0.246389269828796,-0.559109628200531,-0.79163670539856,-0.222013995051384,-0.521236479282379,-0.824028134346008,-0.15866918861866,-0.420916348695755,-0.893114626407623,-0.178339794278145,-0.452618837356567,-0.873688340187073,-0.228476703166962,-0.415768474340439,-0.880303978919983,-0.181667402386665,-0.405898123979568,-0.895680546760559,-0.101894907653332,-0.258808940649033,-0.960539102554321,-0.136757627129555,-0.254465609788895,-0.957363367080688,-0.31652906537056,-0.464693188667297,-0.82696408033371,-0.220383435487747,-0.421872705221176,-0.879462718963623,-0.119543053209782,-0.270397752523422,-0.955298125743866,-0.182661786675453,-0.28321173787117,-0.941501975059509,-0.147440746426582,-0.221467584371567,-0.963957190513611,-0.0342727415263653,-0.0617390088737011,-0.997503757476807,-0.0168207939714193,-0.0743946358561516,-0.997087121009827,-0.143033340573311,-0.248604670166969,-0.957986056804657,-0.0341738797724247,-0.0618254840373993,-0.997501730918884,0.0792720913887024,0.0971224531531334,-0.992110550403595,0.081214614212513,0.127130150794983,-0.988555669784546,-0.0448449328541756,-0.0462946556508541,-0.997920751571655,-0.0343581922352314,-0.056826613843441,-0.997792720794678,0.10436674207449,0.105954334139824,-0.988878846168518,0.137653306126595,0.170231088995934,-0.975742340087891,-0.040317989885807,-0.0286976248025894,-0.998774766921997,-0.173150300979614,-0.220080390572548,-0.959991574287415,-0.0344350710511208,-0.0567494817078114,-0.997794449329376,-0.0106504764407873,-0.0736704021692276,-0.997225761413574,-0.190124064683914,-0.273001611232758,-0.943039238452911,0.149099543690681,0.393258452415466,-0.907257974147797,0.176727473735809,0.438252419233322,-0.881307184696198,0.113565340638161,0.330493241548538,-0.936951041221619,0.0906273424625397,0.292896836996078,-0.951839327812195,0.190070331096649,0.431849002838135,-0.881691455841064,0.27141198515892,0.54877495765686,-0.790684342384338,0.18947234749794,0.430975139141083,-0.882247567176819,0.119240589439869,0.326595902442932,-0.937612295150757,0.148124560713768,0.306455761194229,-0.940289258956909, +0.253341823816299,0.371170580387115,-0.893336653709412,0.126578778028488,0.184845820069313,-0.974581897258759,0.0529553405940533,0.152709946036339,-0.986851334571838,0.112545244395733,0.27922648191452,-0.953606903553009,0.160725802183151,0.297508209943771,-0.94109308719635,0.0732463970780373,0.134372428059578,-0.98822021484375,0.0366417542099953,0.131177887320518,-0.990681529045105,-0.130893722176552,-0.813209891319275,-0.567059636116028,-0.110259830951691,-0.68490993976593,-0.720236897468567,-0.104978054761887,-0.679779529571533,-0.725864589214325,-0.125635713338852,-0.807537794113159,-0.576279759407043,-0.105926930904388,-0.685164332389832,-0.720645189285278,-0.0948441326618195,-0.635122239589691,-0.766566634178162,-0.0894600749015808,-0.631770849227905,-0.769975662231445,-0.100429557263851,-0.68076354265213,-0.725585997104645,-0.195725455880165,-0.656916558742523,-0.728115499019623,-0.171418145298958,-0.612517297267914,-0.771646618843079,-0.143093600869179,-0.556881487369537,-0.818173170089722,-0.166020318865776,-0.5985147356987,-0.783720254898071,-0.268942773342133,-0.765773952007294,-0.584174573421478,-0.2091204226017,-0.653011322021484,-0.727904438972473,-0.176061436533928,-0.593889832496643,-0.785045981407166,-0.23401153087616,-0.706214725971222,-0.668206036090851,0.0484804585576057,-0.777240037918091,-0.627333879470825,0.024536520242691,-0.758651852607727,-0.651034116744995,0.026496734470129,-0.81441855430603,-0.579672753810883,0.0519707053899765,-0.834926664829254,-0.54790210723877,-0.0443562865257263,-0.142840668559074,-0.988751292228699,-0.0842407792806625,-0.176596403121948,-0.980671882629395,0.0605790317058563,-0.384892165660858,-0.920971393585205,0.110129691660404,-0.359963208436966,-0.926443696022034,0.081115260720253,-0.610177159309387,-0.788101613521576,0.0163263957947493,-0.513580024242401,-0.85788631439209,0.0432742610573769,-0.623642265796661,-0.780511200428009,0.119223602116108,-0.732953250408173,-0.669750154018402,0.0292827151715755,-0.50870817899704,-0.860440850257874,0.000582769513130188,-0.475816011428833,-0.879544675350189, +0.0184763204306364,-0.580499112606049,-0.814051151275635,0.0512043088674545,-0.6219722032547,-0.781363368034363,-0.0135387405753136,-0.634380578994751,-0.772902369499207,-0.0252615213394165,-0.587430775165558,-0.808880031108856,-0.023523423820734,-0.637359201908112,-0.770207822322845,-0.0108829522505403,-0.687465250492096,-0.726135730743408,0.0152610093355179,-0.760759353637695,-0.648854613304138,-0.0175292566418648,-0.635053992271423,-0.772268891334534,-0.0140373017638922,-0.687488913536072,-0.726059198379517,0.0214052572846413,-0.814697861671448,-0.579490602016449,0.0868605077266693,-0.380753070116043,-0.920588076114655,0.0354161597788334,-0.404980957508087,-0.913639068603516,0.131660252809525,-0.582454800605774,-0.802129745483398,0.193482413887978,-0.567945718765259,-0.800001502037048,-0.299769848585129,0.325677633285522,-0.896700739860535,-0.300818085670471,0.304001212120056,-0.903931379318237,-0.15649788081646,0.117132619023323,-0.980708122253418,-0.152070254087448,0.13478396832943,-0.979136347770691,-0.0417739674448967,-0.136585146188736,-0.989747226238251,-0.0773939564824104,-0.144477382302284,-0.98647677898407,0.0124091804027557,-0.331236273050308,-0.943466305732727,0.0813182219862938,-0.367978662252426,-0.926271557807922,-0.0423903167247772,-0.122631967067719,-0.991546511650085,-0.0686256140470505,-0.132519960403442,-0.988801836967468,-0.00202779471874237,-0.310808539390564,-0.950470387935638,0.0345372371375561,-0.319020956754684,-0.94711822271347,-0.00297473417595029,-0.339598745107651,-0.940565764904022,-0.00796650350093842,-0.313593924045563,-0.94952380657196,0.0548720583319664,-0.457485198974609,-0.887522578239441,0.0662427395582199,-0.494243651628494,-0.86679595708847,0.0344141572713852,-0.40577107667923,-0.913326680660248,0.0038096159696579,-0.335923999547958,-0.941881477832794,0.0857154950499535,-0.486283808946609,-0.869586646556854,0.13641756772995,-0.579726219177246,-0.803310513496399,-0.206214115023613,0.0821284130215645,-0.975054264068604,-0.165465474128723,0.10911913216114,-0.980160295963287,-0.0114505803212523,-0.107808582484722,-0.994105696678162, +-0.0440001636743546,-0.14247553050518,-0.98881995677948,-0.174645826220512,0.699989438056946,-0.692469239234924,-0.122378520667553,0.680962443351746,-0.72202056646347,-0.139693036675453,0.585180997848511,-0.798779726028442,-0.188819050788879,0.59457129240036,-0.78155779838562,-0.222692295908928,0.359408140182495,-0.906219601631165,-0.18770632147789,0.265404969453812,-0.945688366889954,-0.105130434036255,0.0912095680832863,-0.990266919136047,-0.119608901441097,0.14970937371254,-0.981468796730042,-0.148116782307625,0.284049242734909,-0.94730019569397,-0.1438377648592,0.246375933289528,-0.958441257476807,-0.0813067778944969,0.0827488452196121,-0.993248105049133,-0.0792679637670517,0.106458760797977,-0.991152405738831,-0.121119953691959,0.0817122906446457,-0.989268958568573,-0.0880774557590485,0.0793197453022003,-0.992950558662415,-0.0195493288338184,-0.106218457221985,-0.994150638580322,-0.0424158871173859,-0.122647985816002,-0.991543412208557,-0.167703822255135,0.107113122940063,-0.980001211166382,-0.112710297107697,0.086714006960392,-0.989836931228638,-0.019802201539278,-0.108446940779686,-0.993905067443848,-0.041645523160696,-0.136463612318039,-0.989769399166107,-0.293044209480286,0.547742307186127,-0.783647656440735,-0.222663387656212,0.553069531917572,-0.802829444408417,-0.189628019928932,0.381461679935455,-0.904725551605225,-0.251169562339783,0.362650543451309,-0.897440016269684,0.188958287239075,0.628225028514862,-0.754737138748169,0.166134253144264,0.60772293806076,-0.776577353477478,0.207168862223625,0.664059996604919,-0.718404829502106,0.231300219893456,0.686062455177307,-0.689796090126038,-0.116625487804413,0.681721270084381,-0.722256600856781,-0.0838624984025955,0.534765779972076,-0.840828597545624,-0.0644982531666756,0.459854155778885,-0.885648965835571,-0.0958523899316788,0.600129723548889,-0.79413890838623,-0.068342000246048,0.53575599193573,-0.841602683067322,-0.0545473322272301,0.47998121380806,-0.875581324100494,-0.0392342582345009,0.412323772907257,-0.9101921916008,-0.0523178204894066,0.462736040353775,-0.884950995445251, +-0.130368888378143,0.44296807050705,-0.887008011341095,-0.0882048532366753,0.401994436979294,-0.911383867263794,-0.0767554491758347,0.27260035276413,-0.959060847759247,-0.11442443728447,0.299387007951736,-0.94724577665329,-0.211029171943665,0.557880401611328,-0.802643299102783,-0.128648608922958,0.443437218666077,-0.887024879455566,-0.10656164586544,0.302897304296494,-0.947046995162964,-0.177183046936989,0.389555811882019,-0.903798878192902,0.0306086465716362,0.733959436416626,-0.678503334522247,0.039225697517395,0.703460812568665,-0.709650874137878,0.0267084464430809,0.693130493164063,-0.720317184925079,0.0178144313395023,0.721088945865631,-0.692613482475281,0.122826531529427,0.189770668745041,-0.974115371704102,0.297989964485168,0.32644584774971,-0.897014617919922,0.312421977519989,0.342365503311157,-0.886102914810181,0.132688924670219,0.202743649482727,-0.970200419425964,0.165051743388176,0.608276009559631,-0.7763751745224,0.104173399507999,0.471096694469452,-0.875908613204956,0.118490889668465,0.52949470281601,-0.839997172355652,0.182361587882042,0.671237528324127,-0.718459725379944,0.106981799006462,0.469886541366577,-0.876220107078552,0.0839042216539383,0.420432478189468,-0.903436005115509,0.0955364853143692,0.475852072238922,-0.874321281909943,0.120123021304607,0.529120445251465,-0.840001225471497,0.0352672077715397,0.5465247631073,-0.836700022220612,0.0335202924907207,0.488012492656708,-0.872192800045013,0.0285923238843679,0.481434643268585,-0.876015543937683,0.0302349254488945,0.539003491401672,-0.841760635375977,0.043490294367075,0.702722549438477,-0.71013355255127,0.0318987742066383,0.547129929065704,-0.836439728736877,0.0267364718019962,0.538977980613708,-0.841895461082458,0.0381785593926907,0.693424880504608,-0.719516813755035,0.229692429304123,0.427804201841354,-0.874199569225311,0.203776806592941,0.417989939451218,-0.885301947593689,0.317548274993896,0.519564628601074,-0.793231189250946,0.346550315618515,0.53142112493515,-0.772977709770203,-0.161044538021088,-0.963239908218384,0.21502012014389,0.0918498113751411,-0.831914603710175,0.547249257564545, +0.00990930292755365,-0.836298108100891,0.548185646533966,-0.230136007070541,-0.943982779979706,0.236503690481186,-0.342507004737854,-0.128449305891991,0.93069314956665,-0.340206354856491,-0.112433664500713,0.933605074882507,-0.351455599069595,-0.236494064331055,0.905841886997223,-0.350581258535385,-0.214264810085297,0.91169261932373,-0.329809546470642,-0.113568127155304,0.937191545963287,-0.328991919755936,-0.102468699216843,0.938756942749023,-0.328778147697449,-0.228653907775879,0.916309118270874,-0.32892045378685,-0.239121362566948,0.91358208656311,-0.328157365322113,-0.239207565784454,0.913833916187286,-0.328871101140976,-0.228653460741043,0.916275858879089,-0.327971637248993,-0.273589789867401,0.904203057289124,-0.327302664518356,-0.278906166553497,0.90282016992569,-0.353559076786041,-0.213540434837341,0.910712063312531,-0.353560388088226,-0.236240476369858,0.905088663101196,-0.359135329723358,-0.274833559989929,0.89190149307251,-0.358468294143677,-0.241186186671257,0.901847958564758,-0.365723371505737,-0.0678810775279999,0.928244948387146,-0.352582991123199,-0.0489338859915733,0.934500217437744,-0.376114875078201,-0.131623521447182,0.91717654466629,-0.391965538263321,-0.160732209682465,0.905830144882202,-0.352802842855453,-0.0488391295075417,0.934422194957733,-0.328922808170319,0.0101679787039757,0.944302141666412,-0.341369092464447,-0.0525787174701691,0.938457667827606,-0.369711995124817,-0.13391675055027,0.919445216655731,-0.359480291604996,-0.137553051114082,0.92295891046524,-0.336538165807724,-0.053782157599926,0.940132796764374,-0.345964431762695,-0.127753883600235,0.929509341716766,-0.366409748792648,-0.210378631949425,0.906357944011688,-0.370964020490646,-0.168857052922249,0.913166582584381,-0.363402932882309,-0.136163026094437,0.921627879142761,-0.379665553569794,-0.207055538892746,0.901655256748199,-0.385177582502365,-0.234146997332573,0.892644107341766,-0.318196535110474,-0.102778248488903,0.942437052726746,-0.319502025842667,-0.0844515115022659,0.943814814090729,-0.310383856296539,-0.19861476123333,0.929631173610687, +-0.306992024183273,-0.228696435689926,0.923825740814209,-0.311682105064392,-0.0840654149651527,0.946460366249084,-0.31423157453537,-0.0671176165342331,0.946970880031586,-0.303962796926498,-0.13227704167366,0.94345611333847,-0.29248183965683,-0.196684628725052,0.93582558631897,-0.289331018924713,-0.19633874297142,0.936877071857452,-0.300804227590561,-0.131593748927116,0.944563448429108,-0.292856305837631,-0.152125984430313,0.943977236747742,-0.278105467557907,-0.2280313372612,0.933091104030609,-0.301960289478302,-0.22868900001049,0.925484359264374,-0.306632965803146,-0.19821535050869,0.930960297584534,-0.301589339971542,-0.231220662593842,0.924976170063019,-0.294697374105453,-0.273308545351028,0.915672421455383,-0.290435969829559,0.16258642077446,0.942980647087097,-0.285010427236557,0.155971825122833,0.945749402046204,-0.333737343549728,0.0481606423854828,0.941435158252716,-0.342097342014313,0.0493579283356667,0.938367366790771,-0.292399078607559,0.159740373492241,0.94286048412323,-0.301056504249573,0.151755854487419,0.941453814506531,-0.326923757791519,0.0805603116750717,0.941610872745514,-0.335731744766235,0.0491362884640694,0.940675258636475,-0.328460335731506,0.0455822646617889,0.943417251110077,-0.319297969341278,0.0779998227953911,0.944438874721527,-0.340159773826599,0.0134921204298735,0.940270841121674,-0.3578060567379,-0.0466791167855263,0.932628512382507,-0.329709470272064,0.0425989665091038,0.943120956420898,-0.332860767841339,0.0477320402860641,0.941767156124115,-0.368845999240875,-0.0418893545866013,0.928546130657196,-0.373163402080536,-0.0642699673771858,0.925536870956421,-0.314671546220779,-0.0671790242195129,0.946820378303528,-0.32648554444313,0.0175630711019039,0.945039033889771,-0.314086049795151,-0.0282742828130722,0.948973476886749,-0.296628922224045,-0.130689278244972,0.946008265018463,-0.325191825628281,0.0177593305706978,0.945481300354004,-0.340904355049133,0.0900500193238258,0.935775220394135,-0.338673263788223,0.0709712505340576,0.938223659992218,-0.316545754671097,-0.0289677791297436,0.94813483953476, +-0.318176776170731,-0.0294278711080551,0.947574615478516,-0.351577311754227,0.0669570863246918,0.933761298656464,-0.352743417024612,0.0584742873907089,0.933891296386719,-0.314319968223572,-0.0522858276963234,0.94787609577179,-0.287860184907913,-0.128785446286201,0.948973596096039,-0.315378069877625,-0.0286385044455528,0.948533952236176,-0.310628324747086,-0.0510944053530693,0.949157238006592,-0.282822102308273,-0.1496841609478,0.94742089509964,-0.345534682273865,-0.127840474247932,0.929657220840454,-0.339488089084625,-0.0530477464199066,0.939113318920135,-0.329089760780334,-0.00473526073619723,0.94428676366806,-0.340656042098999,-0.112384177744389,0.933447062969208,-0.342633008956909,-0.0522632226347923,0.938014507293701,-0.334275007247925,0.0117496103048325,0.942402362823486,-0.31947648525238,0.0677748918533325,0.945167362689972,-0.330551445484161,-0.00453222543001175,0.943777084350586,-0.327951461076736,-0.00489329919219017,0.944681882858276,-0.320290267467499,0.0679213479161263,0.944881439208984,-0.313171535730362,0.121525749564171,0.94188916683197,-0.326679706573486,0.0135657209903002,0.945037722587585,-0.331810265779495,-0.113351233303547,0.936511278152466,-0.327926814556122,-0.00489672273397446,0.944690465927124,-0.324730098247528,0.0134620619937778,0.945710957050323,-0.32898536324501,-0.102468892931938,0.938759207725525,-0.312796950340271,0.121497243642807,0.942017257213593,-0.313348233699799,0.108536884188652,0.943415403366089,-0.316229373216629,0.0266573540866375,0.948308169841766,-0.31569492816925,0.0129818636924028,0.948771893978119,-0.320550918579102,0.108250215649605,0.941025495529175,-0.319608092308044,0.0935818701982498,0.942917346954346,-0.314790785312653,0.0193326063454151,0.948964238166809,-0.315895825624466,0.0266681537032127,0.948419034481049,-0.318081825971603,0.0265972875058651,0.947690069675446,-0.31550920009613,0.0192241966724396,0.948727786540985,-0.309630870819092,-0.0664751678705215,0.948530316352844,-0.309450060129166,-0.0839543491601944,0.947202384471893,-0.31734624505043,0.0130696026608348,0.948219656944275, +-0.31658810377121,0.0266457349061966,0.948188841342926,-0.316447496414185,-0.0843012556433678,0.944856822490692,-0.317106813192368,-0.102808699011803,0.942800998687744,-0.358471125364304,0.0870789885520935,0.929470658302307,-0.38400673866272,0.157352924346924,0.909823596477509,-0.373286247253418,0.167941093444824,0.912388741970062,-0.34250396490097,0.0697833299636841,0.936921238899231,-0.396771132946014,0.154964253306389,0.904742419719696,-0.417736887931824,0.23358465731144,0.878028571605682,-0.413877129554749,0.271019220352173,0.869053661823273,-0.388599425554276,0.162982419133186,0.906877815723419,-0.415962338447571,0.153910055756569,0.896262884140015,-0.452961355447769,0.258696287870407,0.853171944618225,-0.466197788715363,0.264833837747574,0.844110488891602,-0.429221749305725,0.157872602343559,0.889294624328613,-0.376125872135162,0.0592206865549088,0.924674153327942,-0.418576925992966,0.153028607368469,0.895195841789246,-0.407332986593246,0.166286781430244,0.898013651371002,-0.359917312860489,0.0558349043130875,0.931311964988708,-0.303183019161224,0.152577742934227,0.94063812494278,-0.282087206840515,0.21290710568428,0.935466468334198,-0.308260649442673,0.137362748384476,0.941332519054413,-0.326449543237686,0.0804010182619095,0.941788911819458,-0.290959775447845,0.215713381767273,0.932099938392639,-0.274467408657074,0.27076444029808,0.922688663005829,-0.296943604946136,0.194709628820419,0.934832990169525,-0.312164276838303,0.138248100876808,0.939915478229523,-0.31033182144165,0.137832641601563,0.940583050251007,-0.298162132501602,0.194908887147903,0.934403479099274,-0.31351426243782,0.121551811695099,0.941771745681763,-0.32333767414093,0.0684696957468987,0.943803250789642,-0.321371704339981,0.0786959156394005,0.943677484989166,-0.306414902210236,0.136943712830544,0.941996037960052,-0.323924601078033,0.0685752928256989,0.943594396114349,-0.337145805358887,0.0125992074608803,0.941368162631989,-0.207927078008652,0.370523452758789,0.905250608921051,-0.219741657376289,0.342671364545822,0.913394689559937,-0.257221668958664,0.267045378684998,0.92872166633606, +-0.254866003990173,0.279468446969986,0.925711035728455,-0.23490372300148,0.348369240760803,0.907446563243866,-0.268191546201706,0.269129246473312,0.925009667873383,-0.288731157779694,0.21500962972641,0.932955086231232,-0.267153978347778,0.271554738283157,0.924600839614868,-0.254962235689163,0.266016721725464,0.929639458656311,-0.277940362691879,0.211591362953186,0.937004923820496,-0.30122247338295,0.151820003986359,0.941390335559845,-0.299743115901947,0.163485363125801,0.939907789230347,-0.238846242427826,0.271311849355698,0.932385385036469,-0.252811521291733,0.265036582946777,0.930506348609924,-0.300310373306274,0.163774594664574,0.939676403999329,-0.290822893381119,0.162800744175911,0.942824482917786,-0.312790542840958,0.121496751904488,0.942019522190094,-0.307917833328247,0.220639482140541,0.925475478172302,-0.309114456176758,0.189074605703354,0.932040333747864,-0.31308588385582,0.108547195792198,0.943501353263855,-0.321260064840317,0.220970407128334,0.920849680900574,-0.316982716321945,0.323410212993622,0.891587257385254,-0.317748129367828,0.288920253515244,0.903084278106689,-0.320351302623749,0.188481748104095,0.928358614444733,-0.349284559488297,0.186821058392525,0.918203830718994,-0.358923584222794,0.28460493683815,0.888917326927185,-0.35195317864418,0.246806055307388,0.902893006801605,-0.342191755771637,0.164872422814369,0.925052344799042,-0.324403673410416,0.108093999326229,0.939722299575806,-0.330982178449631,0.187894210219383,0.924741327762604,-0.327369093894958,0.167428821325302,0.929944694042206,-0.32022100687027,0.0934812873601913,0.942719340324402,-0.405527174472809,0.236162766814232,0.8830486536026,-0.409614413976669,0.278419584035873,0.868733942508698,-0.41557514667511,0.360802292823792,0.834936499595642,-0.409096837043762,0.272473871707916,0.870860397815704,-0.373804539442062,0.282891422510147,0.883313417434692,-0.374636620283127,0.320976912975311,0.86983984708786,-0.372253805398941,0.425149410963058,0.825030446052551,-0.373746663331985,0.36986431479454,0.850596249103546,-0.439058125019073,0.355295211076736,0.825223207473755, +-0.436930626630783,0.416169941425323,0.797429859638214,-0.433188736438751,0.451159119606018,0.780258357524872,-0.436024755239487,0.376276284456253,0.817495286464691,-0.455857038497925,0.257752031087875,0.851914465427399,-0.467863917350769,0.348107218742371,0.812357604503632,-0.470874786376953,0.366297692060471,0.802560210227966,-0.458411365747452,0.267660468816757,0.847476780414581,-0.222948402166367,0.494865864515305,0.839882135391235,-0.23307403922081,0.46757960319519,0.852669835090637,-0.249048426747322,0.42382949590683,0.870829224586487,-0.236560821533203,0.458805531263351,0.856467425823212,-0.235943347215652,0.468023836612701,0.851636409759521,-0.263828366994858,0.383265346288681,0.885156750679016,-0.2817402780056,0.325339943170547,0.902649700641632,-0.25107803940773,0.424370914697647,0.869982242584229,-0.225256681442261,0.417346686124802,0.88038694858551,-0.270295739173889,0.323095053434372,0.90694534778595,-0.281783103942871,0.272658556699753,0.919921576976776,-0.244950920343399,0.352102130651474,0.903339982032776,-0.194464564323425,0.446479350328445,0.873407006263733,-0.217490255832672,0.415176868438721,0.883360743522644,-0.24170970916748,0.350901633501053,0.904679179191589,-0.222542211413383,0.376629233360291,0.899236142635345,-0.274731040000916,0.384695500135422,0.881210684776306,-0.291350543498993,0.351261347532272,0.889792382717133,-0.30301296710968,0.25709792971611,0.917651295661926,-0.280100226402283,0.325020790100098,0.903274834156036,-0.296981394290924,0.351517587900162,0.887827455997467,-0.31027752161026,0.323611170053482,0.893870055675507,-0.313948690891266,0.220794335007668,0.92341011762619,-0.301208257675171,0.256912589073181,0.918297111988068,-0.294019907712936,0.256166100502014,0.920831918716431,-0.299627840518951,0.220412567257881,0.928246438503265,-0.313610136508942,0.121559098362923,0.941738903522491,-0.303440123796463,0.195768967270851,0.932522714138031,-0.270659655332565,0.323167085647583,0.906811118125916,-0.292594224214554,0.256016463041306,0.921327531337738,-0.302968740463257,0.195692345499992,0.932692110538483, +-0.280068874359131,0.272215902805328,0.92057591676712,-0.283982813358307,0.385871648788452,0.877756714820862,-0.277988433837891,0.474056988954544,0.835459411144257,-0.295834392309189,0.466257303953171,0.833718299865723,-0.306509613990784,0.351923555135727,0.884421646595001,-0.293243616819382,0.476021647453308,0.829102873802185,-0.30109053850174,0.505896210670471,0.808339893817902,-0.317408204078674,0.50336492061615,0.803663969039917,-0.311410307884216,0.466352760791779,0.827972590923309,-0.350809752941132,0.466012924909592,0.812258899211884,-0.373103201389313,0.502023637294769,0.780234694480896,-0.405787616968155,0.455925732851028,0.79212898015976,-0.382550030946732,0.423878759145737,0.820964276790619,-0.316729843616486,0.352320283651352,0.880654752254486,-0.324653923511505,0.466332525014877,0.822881460189819,-0.352502465248108,0.427424907684326,0.832496285438538,-0.342173039913177,0.322504490613937,0.882557988166809,-0.349436849355698,0.255383938550949,-0.901483833789825,-0.383938431739807,0.110895223915577,-0.916675388813019,-0.594441175460815,0.309304893016815,-0.742273688316345,-0.537925779819489,0.445106863975525,-0.715902149677277,-0.218178510665894,0.971938669681549,-0.0879402458667755,-0.103164225816727,0.989330947399139,-0.102866098284721,-0.213505297899246,0.958282232284546,-0.190028011798859,-0.323981493711472,0.923024535179138,-0.207513332366943,-0.546586811542511,0.8039231300354,-0.234415113925934,-0.375407010316849,0.901815891265869,-0.214004024863243,-0.475950598716736,0.770327687263489,-0.424342274665833,-0.610809683799744,0.633753299713135,-0.474624425172806,-0.0994127839803696,-0.00183974276296794,-0.995044589042664,-0.118555657565594,-0.127847954630852,-0.984682500362396,-0.395895600318909,0.0504544824361801,-0.916908442974091,-0.369939386844635,0.175418645143509,-0.912344872951508,0.132161363959312,-0.46258932352066,-0.876666724681854,0.162598729133606,-0.32178795337677,-0.932745516300201,-0.11866994202137,-0.128631040453911,-0.984566688537598,-0.139358192682266,-0.27814057469368,-0.950377345085144, +0.231033563613892,0.955812394618988,-0.18178653717041,0.172731429338455,0.972425818443298,-0.156690984964371,0.242925390601158,0.959923803806305,-0.13976226747036,0.305738806724548,0.941072762012482,-0.144588559865952,0.466821670532227,0.759564936161041,-0.452922523021698,0.405924826860428,0.821511685848236,-0.400429308414459,0.55691784620285,0.768153011798859,-0.315885156393051,0.627431035041809,0.699673354625702,-0.341742038726807,0.378532528877258,-0.841347515583038,-0.385807752609253,0.469203054904938,-0.752067446708679,-0.462863892316818,0.343891024589539,-0.629091084003448,-0.69712507724762,0.284546285867691,-0.736857891082764,-0.613248705863953,0.315447121858597,-0.684782922267914,-0.656936526298523,0.378154247999191,-0.552964806556702,-0.742448270320892,0.152137815952301,-0.3725306391716,-0.915464460849762,0.11732342839241,-0.522120773792267,-0.844763338565826,0.214731559157372,0.265562325716019,-0.939876019954681,0.214363887906075,0.258017838001251,-0.942058920860291,0.484525620937347,0.2546646296978,-0.836887538433075,0.484268814325333,0.26218169927597,-0.834712266921997,0.439409554004669,0.497419476509094,-0.747992753982544,0.428161084651947,0.535136938095093,-0.728221595287323,0.631434500217438,0.497862368822098,-0.594494462013245,0.648399233818054,0.459106028079987,-0.607289254665375,0.00530395144596696,-0.998971939086914,0.0450223572552204,0.00172819988802075,-0.998975396156311,0.045222919434309,-0.0118669150397182,-0.99989116191864,0.00876950100064278,-0.00858403369784355,-0.99993509054184,0.0074983979575336,0.281361430883408,-0.95189356803894,-0.121385417878628,0.346709609031677,-0.925701379776001,-0.151226848363876,0.31301560997963,-0.890200197696686,-0.331005930900574,0.260644048452377,-0.922355890274048,-0.285174399614334,-0.100285261869431,0.0494794026017189,-0.993727743625641,-0.106841653585434,-0.0241682231426239,-0.993982255458832,0.208167180418968,0.0260877050459385,-0.977745294570923,0.211760833859444,0.0996392071247101,-0.972229063510895,-0.418960690498352,-0.186853900551796,-0.888570547103882, +-0.414599925279617,-0.0909251123666763,-0.90544992685318,-0.106930010020733,-0.0251972265541553,-0.993947267532349,-0.114808358252048,-0.12216629087925,-0.985847115516663,-0.383514642715454,-0.923521101474762,-0.00502514792606235,-0.417437136173248,-0.90861451625824,-0.01288459636271,-0.456566721200943,-0.885162651538849,0.0896316841244698,-0.42268106341362,-0.902163684368134,0.0862647294998169,-0.60343724489212,-0.755085647106171,-0.256338447332382,-0.634745717048645,-0.721223890781403,-0.277369916439056,-0.739137589931488,-0.666166305541992,-0.0994892939925194,-0.705329775810242,-0.703097224235535,-0.0903562605381012,-0.662657260894775,-0.317055076360703,-0.678499400615692,-0.665875196456909,-0.288164407014847,-0.688165366649628,-0.41813600063324,-0.292218834161758,-0.860099196434021,-0.417589157819748,-0.321150898933411,-0.849989056587219,-0.78207665681839,-0.485454559326172,-0.390755712985992,-0.609560668468475,-0.535817623138428,-0.584239065647125,-0.61717301607132,-0.51476788520813,-0.5950728058815,-0.79183304309845,-0.463488757610321,-0.397716879844666,0.772986888885498,-0.449765205383301,-0.447440147399902,0.714960753917694,-0.384745389223099,-0.583782553672791,0.775966286659241,-0.426458448171616,-0.464768290519714,0.798194587230682,-0.485590606927872,-0.35649299621582,0.762066006660461,-0.519820213317871,-0.386060297489166,0.700480282306671,-0.497555077075958,-0.511631071567535,0.757267951965332,-0.451782196760178,-0.471633553504944,0.810068368911743,-0.482298135757446,-0.333433240652084,0.544277906417847,-0.677595138549805,-0.494597196578979,0.41340908408165,-0.670922815799713,-0.615593671798706,0.277479410171509,-0.698832094669342,-0.659271538257599,0.419750601053238,-0.723103404045105,-0.548571765422821,0.60594642162323,-0.649991989135742,-0.458627790212631,0.519573271274567,-0.631588637828827,-0.575447201728821,0.591873586177826,-0.5575812458992,-0.582055747509003,0.676558792591095,-0.588793218135834,-0.442256420850754,0.741242408752441,-0.39153641462326,0.545214653015137,0.670177936553955,-0.295823097229004,0.680698454380035, +0.760799646377563,-0.262238204479218,0.593645572662354,0.836191833019257,-0.252500236034393,0.486853927373886,0.763769268989563,-0.350327372550964,-0.542150497436523,0.73259299993515,-0.474082827568054,-0.488418847322464,0.775971591472626,-0.0790877640247345,-0.625790178775787,0.637426972389221,0.0556095018982887,-0.768501460552216,0.458992958068848,-0.610051333904266,-0.645881474018097,0.488173544406891,-0.679958045482635,-0.547123074531555,0.502641558647156,-0.666235446929932,-0.550891876220703,0.473700284957886,-0.559812843799591,-0.679865956306458,0.591655015945435,-0.580868542194366,-0.559049308300018,0.260195314884186,-0.408082246780396,-0.875081360340118,0.172997817397118,-0.421245276927948,-0.890294551849365,0.545206129550934,-0.591517567634583,-0.594017922878265,0.414702832698822,-0.670247435569763,-0.615459144115448,0.146639257669449,-0.457678884267807,-0.876941800117493,0.109470278024673,-0.402475595474243,-0.908861756324768,0.41743865609169,-0.63416051864624,-0.650834441184998,0.455823361873627,-0.707719206809998,-0.539776384830475,0.344639092683792,-0.670267701148987,-0.657240569591522,0.227860182523727,-0.679382801055908,-0.697508931159973,0.349961757659912,-0.728385329246521,-0.589051485061646,0.712376892566681,-0.576367795467377,-0.400399178266525,0.644886672496796,-0.552612066268921,-0.527959406375885,0.698828637599945,-0.488270848989487,-0.522714257240295,0.763401091098785,-0.52077442407608,-0.382116198539734,0.723096013069153,-0.487496435642242,-0.489366263151169,0.436645954847336,-0.268857806921005,-0.858519494533539,0.401707708835602,-0.271309673786163,-0.874655425548553,0.728235423564911,-0.474012523889542,-0.494960069656372,0.698834180831909,-0.503658771514893,-0.507896363735199,0.380195885896683,-0.311156392097473,-0.870995283126831,0.312501311302185,-0.323877096176147,-0.892998695373535,0.679595708847046,-0.506688416004181,-0.530487179756165,0.200405344367027,-0.234454363584518,-0.951246023178101,0.188112393021584,-0.232160776853561,-0.954313933849335,0.256302356719971,-0.247936815023422,-0.93425714969635, +0.276356190443039,-0.250651925802231,-0.927793562412262,0.205962806940079,-0.140860736370087,-0.968368530273438,0.160600870847702,-0.15045952796936,-0.975484132766724,0.22592057287693,-0.185458794236183,-0.956328988075256,0.278783768415451,-0.176597848534584,-0.943977117538452,0.256785750389099,-0.246464461088181,-0.934513926506042,0.230018734931946,-0.173251286149025,-0.957640528678894,0.341038823127747,-0.274157375097275,-0.89918315410614,0.358358144760132,-0.349574416875839,-0.86566573381424,0.275154411792755,-0.254112362861633,-0.927209258079529,0.253966450691223,-0.255015999078751,-0.932988703250885,0.390555649995804,-0.292228400707245,-0.872965633869171,0.419222086668015,-0.300426006317139,-0.856736242771149,0.141690909862518,-0.231142237782478,-0.962547123432159,0.0959943756461143,-0.181053563952446,-0.978777229785919,0.145065113902092,-0.231964036822319,-0.961846590042114,0.190878421068192,-0.284401088953018,-0.939511299133301,0.0432252548635006,-0.354667007923126,-0.933992981910706,-0.00492176366969943,-0.310835629701614,-0.950450897216797,0.0249321721494198,-0.348239868879318,-0.937073945999146,0.0752401798963547,-0.394294589757919,-0.91589879989624,0.0963524356484413,-0.347205936908722,-0.932825922966003,0.0275404788553715,-0.342898964881897,-0.938968539237976,0.137009367346764,-0.365220218896866,-0.920783758163452,0.20665967464447,-0.372547298669815,-0.904710054397583,0.186455592513084,-0.296252399682999,-0.936733067035675,0.153124928474426,-0.211951345205307,-0.965209603309631,0.2427137196064,-0.317519783973694,-0.916663110256195,0.265232175588608,-0.400331556797028,-0.877146899700165,0.135680630803108,-0.255605936050415,-0.957212865352631,0.0452118664979935,-0.254129081964493,-0.966112971305847,-0.0136739611625671,-0.226872235536575,-0.973828554153442,0.0814083069562912,-0.230808585882187,-0.969587564468384,-0.0334251262247562,-0.334508180618286,-0.941799998283386,-0.0746853202581406,-0.284094393253326,-0.955883085727692,-0.127814963459969,-0.316995680332184,-0.939775109291077,-0.0923658609390259,-0.366455048322678,-0.925839841365814, +0.123835861682892,-0.246827721595764,-0.961114406585693,0.0929543524980545,-0.225232258439064,-0.969860851764679,0.0661430433392525,-0.206111058592796,-0.976290643215179,0.104723267257214,-0.224609181284904,-0.968805313110352,0.0293214879930019,-0.397588402032852,-0.917095363140106,-0.0421239472925663,-0.381272196769714,-0.923502683639526,-0.0935552269220352,-0.3713718354702,-0.923758924007416,-0.0313759371638298,-0.383996307849884,-0.922801375389099,0.201222121715546,-0.230687394738197,-0.951994180679321,0.124947190284729,-0.229548647999763,-0.965243816375732,0.104906812310219,-0.221260160207748,-0.969555854797363,0.189804628491402,-0.22394260764122,-0.955941379070282,0.106224179267883,-0.196439832448959,-0.974745035171509,0.0670875757932663,-0.233994692564011,-0.969920516014099,0.00281953439116478,-0.197424679994583,-0.980314016342163,0.055164810270071,-0.159532442688942,-0.98565012216568,-0.0303408727049828,-0.252601206302643,-0.967094659805298,0.0937669277191162,-0.19537541270256,-0.976235747337341,0.118282347917557,-0.259611874818802,-0.958441972732544,-0.0218869168311357,-0.310368835926056,-0.950364232063293,0.205403745174408,-0.143888801336288,-0.968042075634003,0.108967535197735,-0.139466002583504,-0.984213054180145,0.0585083737969398,-0.126241356134415,-0.990272700786591,0.164526358246803,-0.13294143974781,-0.977372825145721,-0.0432305298745632,-0.0662039220333099,-0.996869206428528,-0.091355212032795,-0.0314082354307175,-0.995322942733765,-0.0437925308942795,-0.0660190060734749,-0.996856987476349,0.0149972876533866,-0.102503284811974,-0.994619607925415,0.386109948158264,0.0194660816341639,-0.922247469425201,0.862494349479675,-0.175274267792702,-0.474744617938995,0.927727520465851,-0.246893599629402,-0.279937922954559,0.845720052719116,-0.170489206910133,-0.505658984184265,0.613987624645233,-0.48256179690361,-0.624622523784637,0.753561079502106,-0.645739316940308,0.12315246462822,0.693065226078033,-0.720789015293121,-0.0111297965049744,0.556097328662872,-0.643154501914978,-0.526410520076752,0.874468922615051,-0.485075503587723,-0.00244666659273207, +0.906272351741791,-0.414041072130203,-0.085091233253479,0.926962018013,-0.370555013418198,0.0585707128047943,0.893649816513062,-0.423282504081726,0.149070098996162,0.89978301525116,-0.434493899345398,-0.0400724820792675,0.912001311779022,-0.397650271654129,-0.100636817514896,0.940867364406586,-0.338717013597488,0.00628675613552332,0.925017833709717,-0.373980551958084,0.066938653588295,0.914034843444824,-0.382544189691544,-0.134908840060234,0.914921998977661,-0.380989015102386,-0.133286312222481,0.949892580509186,-0.29682394862175,-0.0979776084423065,0.950458765029907,-0.295133680105209,-0.0975928455591202,0.913159012794495,-0.348682940006256,-0.211094409227371,0.91281533241272,-0.368678718805313,-0.175625041127205,0.942949831485748,-0.27672666311264,-0.185116037726402,0.94442880153656,-0.247852355241776,-0.215925186872482,0.867840647697449,-0.317805558443069,-0.38190633058548,0.836313128471375,-0.372109591960907,-0.402634710073471,0.834072232246399,-0.347519636154175,-0.428431630134583,0.875013530254364,-0.263601779937744,-0.406036198139191,0.902814030647278,-0.335965514183044,-0.268428981304169,0.888751983642578,-0.334243446588516,-0.313690006732941,0.896412909030914,-0.276811361312866,-0.346149325370789,0.925717890262604,-0.238237649202347,-0.293750435113907,0.869088053703308,-0.435140550136566,-0.23524221777916,0.849344730377197,-0.492336213588715,-0.190312325954437,0.867698669433594,-0.454109847545624,-0.202196329832077,0.882341265678406,-0.404080450534821,-0.241232112050056,0.846337497234344,-0.373197823762894,-0.380047917366028,0.815909087657928,-0.460105746984482,-0.350135922431946,0.829825818538666,-0.433252036571503,-0.351684361696243,0.857664704322815,-0.348402440547943,-0.378189206123352,0.951901078224182,-0.286203235387802,0.109416857361794,0.955816149711609,-0.27945214509964,0.0912257507443428,0.966109275817871,-0.251656174659729,0.0574634671211243,0.963370323181152,-0.257946252822876,0.0733581930398941,0.91633003950119,-0.399235725402832,-0.0308240950107574,0.904791355133057,-0.425222039222717,-0.023215189576149, +0.914053559303284,-0.400762468576431,-0.06241624802351,0.924853622913361,-0.373663365840912,-0.0708627849817276,0.979916453361511,-0.0400623492896557,0.195342764258385,0.992694318294525,-0.0491868741810322,0.110176332294941,0.997031509876251,-0.00978856161236763,0.0763694569468498,0.984436273574829,-0.000510484038386494,0.175741761922836,0.98715341091156,0.100210078060627,0.124443605542183,0.995800673961639,0.083277516067028,0.038025725632906,0.995016098022461,0.0994931310415268,-0.00663867732509971,0.988220512866974,0.121234357357025,0.093394823372364,0.9910808801651,0.129783034324646,0.0302499923855066,0.991106390953064,0.111938267946243,-0.0719577446579933,0.990329563617706,0.0889779180288315,-0.10644469410181,0.993582606315613,0.112798154354095,-0.00838118325918913,0.995747923851013,0.0749804228544235,-0.0535180121660233,0.989833354949951,0.0514778047800064,-0.132590129971504,0.988685607910156,0.0108400136232376,-0.149610817432404,0.996212363243103,0.0332107916474342,-0.0803621858358383,0.996930658817291,-0.0718408972024918,-0.0311156343668699,0.998277842998505,-0.0561458058655262,-0.0169978775084019,0.988776624202728,-0.135667636990547,-0.0625705718994141,0.990119338035583,-0.125134482979774,-0.0632864460349083,0.997098326683044,-0.017869645729661,-0.0739983394742012,0.995720028877258,-0.0261474028229713,-0.0886452421545982,0.988861501216888,-0.0726965814828873,-0.129877537488937,0.993907332420349,-0.051207322627306,-0.0976019278168678,0.993164896965027,-0.0968753919005394,0.0651056692004204,0.992384552955627,-0.095783144235611,0.0774502977728844,0.97984766960144,-0.1954235881567,0.0413306877017021,0.981496632099152,-0.18876987695694,0.0320991352200508,0.99778825044632,-0.0664680153131485,0.000835346058011055,0.997086226940155,-0.0740058273077011,0.0185002945363522,0.985628604888916,-0.168717086315155,-0.00841169711202383,0.987269639968872,-0.157013982534409,-0.0254040583968163,0.921185255050659,-0.197678864002228,0.335172772407532,0.927046835422516,-0.18935552239418,0.323618173599243,0.918185591697693,-0.29916176199913,0.259687483310699, +0.913969993591309,-0.298337876796722,0.275051951408386,0.966324865818024,-0.152856975793839,0.207004830241203,0.971151530742645,-0.140993714332581,0.192316398024559,0.963382363319397,-0.23610346019268,0.127081111073494,0.959322571754456,-0.24252387881279,0.144507512450218,0.135170802474022,-0.367746919393539,-0.920049607753754,0.0933619067072868,-0.355778396129608,-0.929895401000977,0.395573019981384,-0.604463040828705,-0.691481471061707,0.447900742292404,-0.617333352565765,-0.646749138832092,0.864622354507446,-0.500094532966614,-0.048308864235878,0.873768210411072,-0.486342757940292,0.000135272755869664,0.927721798419952,-0.371189087629318,0.0393823087215424,0.844042956829071,-0.523786544799805,-0.115061387419701,0.613474786281586,-0.46051236987114,-0.641542732715607,0.245919153094292,-0.139871791005135,-0.959145307540894,0.296358555555344,-0.190629005432129,-0.935859084129333,0.623555600643158,-0.473242551088333,-0.622269988059998,0.47427898645401,-0.233956381678581,-0.8487189412117,0.74085259437561,-0.461405456066132,-0.488100945949554,0.676172852516174,-0.409039616584778,-0.612761676311493,0.434838503599167,-0.1924719363451,-0.879698872566223,0.163741648197174,-0.32783055305481,-0.93043851852417,0.0577011555433273,-0.280004858970642,-0.958262979984283,0.0186917539685965,-0.254479944705963,-0.966897368431091,0.129886373877525,-0.307210355997086,-0.942736089229584,0.0514876395463943,-0.293133944272995,-0.954684019088745,0.00260891020298004,-0.289639115333557,-0.957132399082184,-0.044270608574152,-0.289034247398376,-0.956294655799866,0.00120834994595498,-0.289134085178375,-0.957287847995758,0.104069374501705,-0.0784396007657051,-0.991472125053406,0.0269104894250631,-0.0983423143625259,-0.994788706302643,0.0767738744616508,-0.171500906348228,-0.982187986373901,0.147188559174538,-0.148721620440483,-0.977863788604736,0.248640343546867,-0.135687708854675,-0.959044814109802,0.108821041882038,-0.0682985261082649,-0.991712331771851,0.164518445730209,-0.0905966833233833,-0.982204616069794,0.308527886867523,-0.164698466658592,-0.936848402023315, +0.719131112098694,-0.491426080465317,-0.491274803876877,0.714472889900208,-0.485466480255127,-0.503836035728455,0.452822715044022,-0.272225111722946,-0.849025964736938,0.421732604503632,-0.295961886644363,-0.857057929039001,0.412335336208344,-0.222259372472763,-0.883504629135132,0.220754608511925,-0.172382354736328,-0.959974884986877,0.282237619161606,-0.23779621720314,-0.929405629634857,0.452230513095856,-0.27325251698494,-0.849011600017548,0.18630513548851,-0.232578665018082,-0.954566717147827,0.0735179930925369,-0.236933022737503,-0.968740403652191,0.191639989614487,-0.234031349420547,-0.953154563903809,0.286953091621399,-0.225358352065086,-0.931059420108795,0.247359946370125,-0.324724406003952,-0.91288948059082,0.16559624671936,-0.332722067832947,-0.928371667861938,0.183518320322037,-0.308618247509003,-0.933314442634583,0.258802354335785,-0.29982528090477,-0.918219089508057,0.42798987030983,-0.314082473516464,-0.84745317697525,0.266875654459,-0.277138948440552,-0.923022985458374,0.257365942001343,-0.30372416973114,-0.917340993881226,0.402997761964798,-0.328631818294525,-0.854162752628326,0.0558657646179199,-0.277251213788986,-0.959172010421753,-0.00443205563351512,-0.248075947165489,-0.968730449676514,0.115368075668812,-0.287378460168839,-0.950843751430511,0.170682698488235,-0.314262747764587,-0.933866381645203,0.0924898013472557,-0.210378140211105,-0.973235249519348,0.121461622416973,-0.281628310680389,-0.951804876327515,0.107997208833694,-0.352885365486145,-0.929412961006165,0.0930867344141006,-0.282101303339005,-0.954858005046844,-0.101666353642941,-0.274874657392502,-0.956089854240417,-0.0621537193655968,-0.241705805063248,-0.968357026576996,-0.105249293148518,-0.187630608677864,-0.976584613323212,-0.134069666266441,-0.223732247948647,-0.965385556221008,0.164740011096001,-0.335793316364288,-0.927417695522308,0.111795037984848,-0.319922059774399,-0.94082510471344,0.117844760417938,-0.330075800418854,-0.936569631099701,0.174302577972412,-0.346405863761902,-0.921749234199524,-0.059068888425827,-0.122339986264706,-0.990728974342346, +0.0135924508795142,-0.113575577735901,-0.993436396121979,0.0780522078275681,-0.165210843086243,-0.98316490650177,-0.000530872493982315,-0.172729775309563,-0.984969198703766,-0.0807660892605782,-0.318525731563568,-0.944467186927795,-0.104192964732647,-0.283998280763626,-0.953146874904633,-0.0581331737339497,-0.325306087732315,-0.943820178508759,-0.0243665277957916,-0.364809155464172,-0.930763423442841,-0.0781937465071678,-0.0414478406310081,-0.996076285839081,-0.158089280128479,-0.0279373731464148,-0.987029552459717,-0.174811735749245,-0.0258253570646048,-0.984263122081757,-0.0932691767811775,-0.039714977145195,-0.994848608970642,-0.15331144630909,0.0213327389210463,-0.987947702407837,-0.279434710741043,0.0252879783511162,-0.959831655025482,-0.282094419002533,0.0274811238050461,-0.958993077278137,-0.168210938572884,0.0241754464805126,-0.985454559326172,-0.162506222724915,0.0649396777153015,-0.984568238258362,-0.286176204681396,0.0691876858472824,-0.955675840377808,-0.258403331041336,0.0705434307456017,-0.963458001613617,-0.137267425656319,0.0662379711866379,-0.988316893577576,-0.0734700560569763,0.0449693761765957,-0.996283113956451,-0.166181892156601,0.0389143712818623,-0.985327005386353,-0.136945560574532,0.0558853149414063,-0.989000976085663,-0.0315713696181774,0.0602338202297688,-0.997684895992279,0.00474428664892912,-0.125599652528763,-0.992069661617279,-0.0442249551415443,-0.105555072426796,-0.99342954158783,-0.114311933517456,-0.120980128645897,-0.986051082611084,-0.058530755341053,-0.141616627573967,-0.988189697265625,-0.0468548722565174,-0.0473341085016727,-0.997779607772827,-0.231807231903076,-0.0521056205034256,-0.971365213394165,-0.249960228800774,-0.0514093190431595,-0.966890454292297,-0.111731812357903,-0.0478182584047318,-0.992587268352509,-0.110009633004665,-0.0064210700802505,-0.99390983581543,-0.255376160144806,-0.007185198366642,-0.966815054416656,-0.276582777500153,-0.00340282497927547,-0.96098405122757,-0.155614361166954,-0.00192575040273368,-0.987816095352173,-0.0525473430752754,-0.090767040848732,-0.994484841823578, +-0.112553939223289,-0.069378986954689,-0.991220593452454,-0.162533402442932,-0.0777696743607521,-0.983633518218994,-0.0894214436411858,-0.101074650883675,-0.990852057933807,0.00400276388972998,-0.153461098670959,-0.988146603107452,0.0663660541176796,-0.212567523121834,-0.974890112876892,0.0155346775427461,-0.152584075927734,-0.98816841840744,-0.0447849817574024,-0.0934625715017319,-0.994615018367767,0.0646064803004265,-0.163481906056404,-0.984428644180298,0.0926083251833916,-0.214108064770699,-0.972410202026367,0.0373888276517391,-0.167040795087814,-0.985240876674652,0.0113538037985563,-0.116480022668839,-0.993128180503845,0.0102004045620561,-0.106515467166901,-0.994258761405945,0.0322583317756653,-0.124366737902164,-0.991711795330048,-0.223810195922852,-0.13995087146759,-0.964532434940338,-0.213043376803398,-0.117703139781952,-0.969927132129669,-0.0451707430183887,-0.0850406140089035,-0.995353162288666,0.0115435132756829,-0.118118815124035,-0.992932379245758,-0.215663835406303,-0.10347343981266,-0.97096985578537,-0.229749500751495,-0.0651338398456573,-0.971067845821381,0.0915630832314491,-0.182459712028503,-0.978940606117249,0.0934863910079002,-0.243167564272881,-0.96546870470047,0.0401766523718834,-0.187052831053734,-0.981527924537659,0.0326023623347282,-0.127219840884209,-0.991338551044464,0.0938041210174561,-0.182381689548492,-0.978742957115173,-0.0215905010700226,-0.203064143657684,-0.978927433490753,-0.139098271727562,-0.188449144363403,-0.97218245267868,0.0386808849871159,-0.166776210069656,-0.985235810279846,0.0364714153110981,-0.137098178267479,-0.989885807037354,-0.137611016631126,-0.176110953092575,-0.974704205989838,-0.318366706371307,-0.152741923928261,-0.935581386089325,-0.25082191824913,-0.123251348733902,-0.960155010223389,0.0301383305341005,-0.106811657547951,-0.993822455406189,0.0358844846487045,-0.129267558455467,-0.990960299968719,-0.249918863177299,-0.136613622307777,-0.95858097076416,-0.227564752101898,-0.115695297718048,-0.966865539550781,0.211567595601082,0.0808444246649742,-0.974014043807983, +0.718168914318085,0.0032750372774899,-0.695861101150513,0.777774691581726,-0.029869869351387,-0.627833068370819,0.39689427614212,0.0483364015817642,-0.916590690612793,0.029822114855051,0.0160653032362461,-0.999426126480103,0.523535013198853,0.0936359241604805,-0.846843242645264,0.632815957069397,0.0540936216711998,-0.77241051197052,0.106753133237362,-0.0174666102975607,-0.994132101535797,0.208992213010788,0.0708562061190605,-0.975346922874451,0.115960136055946,0.032866720110178,-0.992709994316101,0.69642961025238,-0.00267630792222917,-0.717620134353638,0.705040037631989,0.0168343335390091,-0.708967626094818,-0.138644158840179,0.117439560592175,-0.983354389667511,-0.0776836052536964,0.144203796982765,-0.986494064331055,0.169106051325798,0.213128104805946,-0.962278366088867,-0.0216669905930758,0.158227875828743,-0.987164855003357,0.0397195890545845,0.0970566123723984,-0.994485974311829,-0.0256578978151083,0.11918118596077,-0.992540955543518,0.328126579523087,0.131514266133308,-0.935434103012085,0.501600682735443,0.108673870563507,-0.858246386051178,-0.287840753793716,0.0878314822912216,-0.953642129898071,-0.636476814746857,-0.0570078939199448,-0.769186198711395,-0.404602438211441,0.0437031015753746,-0.913447856903076,-0.263559579849243,0.102554753422737,-0.959176182746887,-0.139486730098724,0.158488124608994,-0.977458477020264,-0.2654629945755,0.114807076752186,-0.957261085510254,-0.416804492473602,0.0491206124424934,-0.907668113708496,-0.115123972296715,0.15910629928112,-0.980526268482208,-0.259590893983841,0.030507693067193,-0.965236663818359,-0.875391125679016,-0.163445129990578,-0.454946368932724,-0.793312430381775,-0.125024482607841,-0.595839262008667,-0.280449420213699,0.036098200827837,-0.959189772605896,-0.286177456378937,0.0692012012004852,-0.955674469470978,-0.282729238271713,0.0617890059947968,-0.957207560539246,-0.800964713096619,-0.115546882152557,-0.587455987930298,-0.645151793956757,-0.0508769750595093,-0.762358725070953,-0.21695402264595,-0.0963670611381531,-0.971413612365723,-0.962234139442444,-0.236312061548233,-0.135137483477592, +-0.936542391777039,-0.202473685145378,-0.286169171333313,-0.229012727737427,-0.0697355046868324,-0.970922410488129,-0.255496323108673,-0.00615470111370087,-0.966790497303009,-0.238100558519363,-0.0104925790801644,-0.971183836460114,-0.934612393379211,-0.208414852619171,-0.288206487894058,-0.86709451675415,-0.179027244448662,-0.464861780405045,-0.251255720853806,-0.116570822894573,-0.960875570774078,-0.99369215965271,-0.0930768549442291,0.0625505074858665,-0.994862914085388,-0.0945561155676842,-0.0361506417393684,-0.228295609354973,-0.110858596861362,-0.96725982427597,-0.213623091578484,-0.11457796394825,-0.970173716545105,-0.22545063495636,-0.129471510648727,-0.96561336517334,-0.976748943328857,-0.213795766234398,-0.0159027241170406,-0.97006767988205,-0.203334793448448,-0.132754564285278,-0.137665152549744,-0.176557391881943,-0.974615693092346,-0.968071937561035,0.206397354602814,-0.142256677150726,-0.973057270050049,0.210936918854713,-0.0930875614285469,-0.318848520517349,-0.160840824246407,-0.934058904647827,-0.251112282276154,-0.118800058960915,-0.960640072822571,-0.315875083208084,-0.115408599376678,-0.941755771636963,-0.996556341648102,0.0803189277648926,0.0206005945801735,-0.996488332748413,0.0801622197031975,-0.0241891704499722,0.013562235981226,-0.182760268449783,-0.983063995838165,-0.826880931854248,0.292182385921478,-0.480518072843552,-0.832730770111084,0.318170726299286,-0.453129976987839,-0.0107936393469572,-0.141647443175316,-0.989858388900757,-0.135921597480774,-0.162279546260834,-0.977338552474976,-0.0169804338365793,-0.176879703998566,-0.984086036682129,-0.851739943027496,0.304081857204437,-0.426700353622437,-0.906701743602753,0.312320113182068,-0.283457577228546,0.257620602846146,-0.104815974831581,-0.960544228553772,-0.45961657166481,0.367131739854813,-0.808682322502136,-0.53972202539444,0.37445342540741,-0.75397926568985,0.141546458005905,-0.0735267698764801,-0.987197279930115,0.0230796206742525,-0.147762715816498,-0.9887535572052,0.0914968252182007,-0.195013612508774,-0.976523458957672,-0.708047926425934,0.326795190572739,-0.62599766254425, +-0.722971677780151,0.344223439693451,-0.599017739295959,0.663254797458649,-0.416610389947891,-0.621714413166046,0.48629042506218,0.103615492582321,-0.86763209104538,0.232639044523239,0.309395760297775,-0.922037661075592,0.470792055130005,-0.142496824264526,-0.870660364627838,0.283307373523712,-0.0556119382381439,-0.957415401935577,0.454663902521133,-0.165297493338585,-0.875189900398254,-0.173197105526924,0.342394024133682,-0.923454999923706,-0.309192031621933,0.383526593446732,-0.870234370231628,0.066846139729023,0.992530941963196,0.10204941034317,0.0713036060333252,0.994255661964417,0.0798221156001091,0.0557271912693977,0.989113032817841,0.136198237538338,0.0486466772854328,0.985215067863464,0.164270475506783,0.0558574721217155,0.995515406131744,0.076348714530468,0.0559121780097485,0.995458960533142,0.0770405903458595,0.0487557128071785,0.991763174533844,0.11844352632761,0.0460320152342319,0.989929914474487,0.133865296840668,0.0458792634308338,0.989942014217377,0.133828446269035,0.048936452716589,0.991752922534943,0.118453986942768,0.0316110402345657,0.975313544273376,0.218550160527229,0.0291152708232403,0.971621513366699,0.234742641448975,0.0521442480385303,0.984804630279541,0.165652886033058,0.057811014354229,0.988924503326416,0.136698052287102,0.0282856337726116,0.971694231033325,0.234542861580849,0.0220338776707649,0.964731812477112,0.262311279773712,0.0312021300196648,0.975330710411072,0.218532770872116,0.015155291184783,0.944912314414978,0.326972812414169,0.0125170275568962,0.941140353679657,0.337784349918365,0.0291280187666416,0.971620321273804,0.234745711088181,0.0158720444887877,0.94489312171936,0.326994001865387,0.00889766495674849,0.916300892829895,0.400391966104507,0.00507273944094777,0.911372244358063,0.411552041769028,0.0134916175156832,0.941054701805115,0.337985575199127,0.0120798796415329,0.941178500652313,0.337694019079208,-0.00344932870939374,0.911983609199524,0.410212308168411,-0.0145050194114447,0.904406070709229,0.42642617225647,0.00346565991640091,0.936161577701569,0.351553052663803,0.0355955734848976,0.971028566360474,0.236297458410263, +0.00849089771509171,0.941484332084656,0.336949676275253,-0.00268220156431198,0.93693482875824,0.349493831396103,0.0220170915126801,0.964733958244324,0.262304604053497,0.0250163469463587,0.975568890571594,0.218264847993851,0.0230681598186493,0.975169241428375,0.220256343483925,0.0275928899645805,0.947742223739624,0.317841529846191,0.0301711335778236,0.944410085678101,0.327382683753967,0.0171799827367067,0.975111365318298,0.221049010753632,0.0234678387641907,0.971960186958313,0.23397171497345,0.0357815623283386,0.950287401676178,0.309311658143997,0.0334271192550659,0.947812259197235,0.317071855068207,0.0298881828784943,0.94777375459671,0.31754007935524,0.0321091488003731,0.950134813785553,0.310182124376297,0.0434127673506737,0.922491490840912,0.383568406105042,0.0409582108259201,0.919224262237549,0.391598343849182,0.0257837604731321,0.944578886032104,0.327270537614822,0.027643408626318,0.947743058204651,0.317834913730621,0.0302928127348423,0.919076263904572,0.39291375875473,0.0283561386168003,0.915820717811584,0.400584876537323,0.0273808259516954,0.975482285022736,0.218368247151375,0.0248331129550934,0.992818534374237,0.117024786770344,0.0227774269878864,0.991130650043488,0.130924731492996,0.0253777466714382,0.975182592868805,0.219943299889565,0.0298963207751513,0.992642819881439,0.117330603301525,0.0328311920166016,0.996608436107635,0.075456440448761,0.0292079858481884,0.99500846862793,0.0954209044575691,0.0265350881963968,0.991097986698151,0.130463674664497,0.0149797229096293,0.991153120994568,0.131875365972519,0.0119459433481097,0.995185613632202,0.0972771048545837,0.0144612127915025,0.991498410701752,0.12931302189827,0.0177775695919991,0.986074566841125,0.165351197123528,0.0239703822880983,0.975175082683563,0.220134183764458,0.00896484591066837,0.991128742694855,0.132603004574776,0.0128173474222422,0.98594856262207,0.166556864976883,0.0233914870768785,0.971957504749298,0.233990490436554,0.0288536660373211,0.879027187824249,0.475897699594498,0.197303891181946,0.976284503936768,0.0891051664948463,0.0880705043673515,0.969106078147888,0.230384662747383, +0.0107662668451667,0.903382897377014,0.42869958281517,0.0562396459281445,0.892175614833832,-0.448173731565475,0.00976759195327759,0.910285234451294,0.413866370916367,0.0437199547886848,0.915950059890747,0.398903638124466,0.077481783926487,0.891836285591125,-0.445673376321793,0.271021574735641,0.962205708026886,0.0265974290668964,0.10915020108223,0.980884909629822,0.161093488335609,0.0341470167040825,0.993933200836182,0.104550749063492,0.137337729334831,0.990440726280212,-0.0128704756498337,0.836103677749634,0.444181323051453,-0.32192188501358,0.797024190425873,0.573496282100677,-0.189353108406067,0.821921229362488,0.479311436414719,-0.307743728160858,0.836377024650574,0.329200565814972,-0.438292652368546,0.717379570007324,-0.691135346889496,-0.0877409875392914,0.809605002403259,-0.586934745311737,0.00689536426216364,0.72618043422699,-0.682910799980164,-0.0793411433696747,0.6455197930336,-0.74901956319809,-0.149244830012321,0.53282767534256,0.845864832401276,0.0246459059417248,0.439431965351105,0.894286155700684,0.0845683962106705,0.355849415063858,0.924291133880615,0.138048380613327,0.478656858205795,0.875771760940552,0.0625427588820457,0.0752213224768639,0.99159836769104,0.105235740542412,0.0546185560524464,0.987148523330688,0.150182098150253,0.0732443034648895,0.991317868232727,0.109198302030563,0.0863210931420326,0.993297517299652,0.0768678486347198,-0.00195959210395813,0.96980881690979,0.243858844041824,-0.00964408461004496,0.962432444095612,0.271350264549255,0.0975676625967026,0.987723112106323,0.121998235583305,0.0661569014191628,0.985472917556763,0.156417727470398,0.0152614936232567,0.974433183670044,0.224158480763435,0.0889890268445015,0.992988109588623,0.0778184235095978,0.0756878927350044,0.990991413593292,0.110486656427383,-0.0129531938582659,0.963012278079987,0.269146233797073,0.076870322227478,0.991405129432678,0.105862349271774,0.0508496314287186,0.984958231449127,0.165141433477402,0.0383731350302696,0.97972959280014,0.19661508500576,0.0576537884771824,0.986724615097046,0.151824444532394,0.0528662204742432,0.984718143939972,0.16593798995018, +0.010689533315599,0.966138362884521,0.257802873849869,0.0224729999899864,0.96944135427475,0.244291692972183,0.042331375181675,0.979138135910034,0.198737472295761,0.0420895516872406,0.979174852371216,0.198607921600342,0.0192434992641211,0.96993613243103,0.242597475647926,0.0033818706870079,0.961197376251221,0.275840878486633,0.0134840235114098,0.967688143253326,0.251789391040802,0.0638017281889915,0.98582911491394,0.155146643519402,0.0393133424222469,0.979590892791748,0.197119534015656,0.00819890294224024,0.968657732009888,0.248264327645302,0.00570831401273608,0.968429207801819,0.249223411083221,0.0412101149559021,0.977093040943146,0.208784341812134,0.0587955415248871,0.994690597057343,0.0844616070389748,0.0614763498306274,0.996087610721588,0.0634832605719566,0.0430286452174187,0.981159210205078,0.188348859548569,0.0554880872368813,0.99489837884903,0.0842515006661415,0.0562128387391567,0.995440542697906,0.0770609751343727,0.0559303611516953,0.995510041713715,0.0763651430606842,0.0585010349750519,0.996307075023651,0.0628473982214928,0.072692796587944,0.995176434516907,0.0658761411905289,0.0698830857872963,0.994381964206696,0.0795033499598503,0.0642725750803947,0.992801249027252,0.101069070398808,0.0721712857484818,0.994803130626678,0.0718200579285622,0.0424908176064491,0.981206595897675,0.188223510980606,0.0784567520022392,0.994656682014465,0.0671032071113586,0.0756417959928513,0.99445503950119,0.0730591043829918,0.0290381163358688,0.972740292549133,0.230072125792503,0.00662444438785315,0.884121000766754,0.467211097478867,-0.028483372181654,0.91148179769516,0.410353034734726,0.0398467257618904,0.916218340396881,0.398693352937698,0.065404862165451,0.876924872398376,0.476156532764435,-0.0375730283558369,0.913106203079224,0.405986726284027,-0.0325813069939613,0.929992914199829,0.366130590438843,0.000364534585969523,0.941778481006622,0.336233973503113,-0.00652863830327988,0.924879908561707,0.380203396081924,-0.0212286561727524,0.927130341529846,0.374137282371521,-0.0148102883249521,0.944144248962402,0.329199641942978,0.0313904732465744,0.963461637496948,0.266000866889954, +0.00601544324308634,0.935829222202301,0.352402716875076,-0.0267424955964088,0.894487679004669,0.446292221546173,-0.00689701735973358,0.924939215183258,0.38005256652832,0.0120061431080103,0.935021162033081,0.354388892650604,-0.00926946103572845,0.903793811798096,0.427867859601974,0.0223377421498299,0.964692056179047,0.262431502342224,-0.0199624672532082,0.944886326789856,0.326789498329163,-0.0104130664840341,0.955059826374054,0.296230435371399,0.0261093601584435,0.968868494033813,0.246195584535599,-0.0327524766325951,0.930023610591888,0.366037428379059,-0.0148188788443804,0.945093393325806,0.32646444439888,0.0031147301197052,0.952934980392456,0.303158819675446,-0.00850852485746145,0.943194329738617,0.332132458686829,0.00812339130789042,0.960298538208008,0.278856307268143,0.0248773619532585,0.96906441450119,0.245550990104675,-0.00405208766460419,0.954088687896729,0.299497127532959,-0.0161300171166658,0.945346117019653,0.325669556856155,0.0446159988641739,0.969870746135712,0.239499986171722,0.0215364042669535,0.991428554058075,0.128862828016281,0.0206257123500109,0.993159055709839,0.11493431776762,0.0461209677159786,0.969451069831848,0.240910038352013,0.0225252341479063,0.991436362266541,0.128634050488472,0.01976746506989,0.991570234298706,0.128054112195969,0.0162026975303888,0.995169818401337,0.0968221351504326,0.0224537886679173,0.993142008781433,0.114738114178181,0.0367121919989586,0.992894411087036,0.113194219768047,0.0339714176952839,0.994906723499298,0.0949034541845322,0.0357959307730198,0.996490776538849,0.0756621211767197,0.0382711626589298,0.995802462100983,0.0831434205174446,0.0428808853030205,0.969500660896301,0.241308495402336,0.0376620404422283,0.992870688438416,0.113090515136719,0.0378791131079197,0.995819628238678,0.0831179171800613,0.0436955876648426,0.976954936981201,0.20892558991909,-0.00861926376819611,0.903715908527374,0.428046017885208,-0.0235011465847492,0.878349244594574,0.477441400289536,-0.0339681506156921,0.866011261940002,0.498869448900223,-0.0179231464862823,0.893180251121521,0.449341535568237, +-0.026919461786747,0.878652095794678,0.47670316696167,-0.0200462192296982,0.896329641342163,0.44293487071991,-0.0267538465559483,0.878993153572083,0.476083248853683,-0.0327571891248226,0.86585807800293,0.499216049909592,-0.0532321110367775,0.868260264396667,0.493244767189026,-0.0479328632354736,0.881021857261658,0.470641016960144,-0.0469967275857925,0.878370940685272,0.47566357254982,-0.0472688898444176,0.87399685382843,0.48362722992897,0.0107912877574563,0.888376116752625,0.458989769220352,-0.0462230294942856,0.867482721805573,0.495315313339233,-0.00545494258403778,0.866760015487671,0.498695701360703,0.0444888882339001,0.875128209590912,0.481841742992401,0.0101453494280577,0.916280448436737,0.400408834218979,0.00879628118127584,0.897940456867218,0.440029114484787,0.00548387644812465,0.89125519990921,0.453468859195709,0.00763090420514345,0.91117537021637,0.411948204040527,0.00970469787716866,0.897933661937714,0.440023988485336,0.0121778156608343,0.916468441486359,0.399921625852585,0.0110677434131503,0.910224080085754,0.413968116044998,0.00785883888602257,0.891108095645905,0.453723073005676,-0.00773639976978302,0.89198112487793,0.452006459236145,-0.00141574442386627,0.910747230052948,0.4129618704319,-0.00657743867486715,0.895380318164825,0.44525358080864,-0.0139159914106131,0.877442538738251,0.479479908943176,-0.00134256109595299,0.91183876991272,0.410546362400055,-0.00791800394654274,0.891990005970001,0.45198580622673,-0.0177477672696114,0.877815186977386,0.478670626878738,-0.00810303539037704,0.903653681278229,0.428187280893326,0.0390838757157326,0.922287285327911,0.384523898363113,0.0467275530099869,0.899242162704468,0.434948325157166,0.0445475168526173,0.899244487285614,0.435172498226166,0.0384002812206745,0.919198393821716,0.391918003559113,0.0453653559088707,0.899176359176636,0.435228526592255,0.0376703478395939,0.917388319969177,0.396206468343735,0.0372055321931839,0.91732257604599,0.396402657032013,0.0448247827589512,0.899247169494629,0.435138285160065,0.0295752007514238,0.898991048336029,0.43696728348732,0.0267364922910929,0.91707855463028,0.397809237241745, +0.0269719269126654,0.916339039802551,0.399493843317032,0.0300912167876959,0.897585213184357,0.439812928438187,0.0276383571326733,0.919022977352142,0.393234074115753,0.0297758970409632,0.898995816707611,0.436943888664246,0.0292222984135151,0.897607624530792,0.439825594425201,0.0271745678037405,0.915859878063202,0.400577515363693,0.0449835173785686,0.922561168670654,0.383219838142395,0.0436774604022503,0.927783191204071,0.370554476976395,0.0572239905595779,0.903145730495453,0.425503760576248,0.0569503158330917,0.899680614471436,0.432818114757538,0.0472321398556232,0.928021490573883,0.369520336389542,0.0396356917917728,0.939066052436829,0.341444164514542,0.0508701056241989,0.923640847206116,0.379868298768997,0.0642907172441483,0.903590619564056,0.423545390367508,0.0674505680799484,0.903773903846741,0.422662049531937,0.0521761998534203,0.923770308494568,0.37937593460083,0.0485060289502144,0.928555488586426,0.368010938167572,0.0562018491327763,0.919291496276855,0.389544069766998,0.0562389902770519,0.899653255939484,0.432967901229858,0.0556242763996124,0.903038144111633,0.425943672657013,0.0452772714197636,0.918478310108185,0.392870873212814,0.0445153787732124,0.917743504047394,0.394671320915222,0.015744362026453,0.971658706665039,0.235863193869591,0.0236168168485165,0.968812763690948,0.246665969491005,0.0358759686350822,0.952130138874054,0.303580492734909,0.0329140648245811,0.950169384479523,0.309991717338562,0.0180605798959732,0.968491315841675,0.24839186668396,0.0272906310856342,0.965289831161499,0.259751588106155,0.0351660922169685,0.954657435417175,0.295622497797012,0.0330201387405396,0.951956033706665,0.304449409246445,0.029901310801506,0.951756179332733,0.305395096540451,0.0304498001933098,0.954237401485443,0.297496050596237,0.0424187481403351,0.939332365989685,0.340375304222107,0.0491990335285664,0.928147852420807,0.368945837020874,0.0296643450856209,0.950025737285614,0.310759156942368,0.0313286520540714,0.951848924160004,0.304962694644928,0.04714635014534,0.928015947341919,0.369545340538025,0.0476482175290585,0.92267382144928,0.382626056671143, +0.0242820866405964,0.971988379955292,0.233771413564682,0.00910641252994537,0.985837519168854,0.16745600104332,0.0131006333976984,0.980535984039307,0.195902034640312,0.0234395116567612,0.968802988529205,0.246721163392067,0.0141937863081694,0.985986053943634,0.166222736239433,0.00713508296757936,0.991350829601288,0.131044685840607,0.0115286782383919,0.987521171569824,0.157064154744148,0.0190645139664412,0.980804145336151,0.194061398506165,0.0173612926155329,0.980731427669525,0.194587871432304,0.00750828627496958,0.987367272377014,0.158270835876465,0.0223091468214989,0.977679550647736,0.208913937211037,0.0264614038169384,0.973293304443359,0.228035405278206,0.0269458182156086,0.968989670276642,0.245627775788307,0.0140323676168919,0.980580389499664,0.195614993572235,0.0213715434074402,0.972931563854218,0.230103269219398,0.0271070599555969,0.965274810791016,0.259826570749283,0.010363295674324,0.991422772407532,0.130282565951347,0.0124505218118429,0.991309642791748,0.13095860183239,0.0128040984272957,0.990210950374603,0.138990178704262,0.015719436109066,0.98766303062439,0.155803307890892,0.00925744604319334,0.991247475147247,0.131692364811897,0.0391536429524422,0.969772219657898,0.240850314497948,0.035929299890995,0.972206950187683,0.231349915266037,0.0102378185838461,0.9901362657547,0.139733761548996,-0.00794302299618721,0.989403784275055,0.144972532987595,0.0200514756143093,0.971451044082642,0.23639127612114,0.0288650393486023,0.965832769870758,0.257553726434708,0.0145312920212746,0.977941989898682,0.208370625972748,0.0069817490875721,0.98734575510025,0.15842866897583,0.00192252197302878,0.989845335483551,0.14213615655899,0.0223877988755703,0.978439211845398,0.205318078398705,0.0233806241303682,0.977745592594147,0.208487153053284,0.827655792236328,0.452272295951843,-0.332318514585495,0.784078001976013,0.576840221881866,-0.229078695178032,0.730007171630859,0.676249921321869,-0.0988719314336777,0.79013866186142,0.581333696842194,-0.194247752428055,0.887735664844513,-0.449770629405975,0.0981418937444687,0.928559899330139,-0.296495288610458,0.223309591412544, +0.898514091968536,-0.419848173856735,0.128062978386879,0.82990550994873,-0.557879030704498,-0.005292356479913,0.0958094447851181,0.90217387676239,-0.420598149299622,-0.0239344239234924,0.896572470664978,0.442249864339828,-0.018588388338685,0.911233067512512,0.411471515893936,0.094136655330658,0.891587615013123,-0.442955791950226,0.0431547313928604,0.917415678501129,0.395583420991898,-0.0646122023463249,0.90915435552597,-0.411416798830032,-0.0848413929343224,0.896917700767517,-0.433982223272324,0.0205702856183052,0.916419744491577,0.399689733982086,0.0696338638663292,0.918658971786499,0.388866364955902,-0.110433042049408,0.911324858665466,-0.396600067615509,-0.111469104886055,0.91101598739624,-0.397019743919373,0.0704767405986786,0.917417824268341,0.391634583473206,0.0914015173912048,0.921093344688416,0.378461241722107,-0.175448268651962,0.906843543052673,-0.383213669061661,-0.169199854135513,0.915727496147156,-0.364437490701675,0.0931675955653191,0.918961942195892,0.383182406425476,0.819505870342255,-0.573046207427979,0.00531467795372009,0.740283131599426,-0.665335059165955,-0.096489354968071,0.814017415046692,-0.580834150314331,-0.00273127853870392,0.881329596042633,-0.459334313869476,0.110771894454956,0.440886795520782,-0.873933732509613,-0.204593673348427,0.593915462493896,-0.793202102184296,-0.134517550468445,0.535078287124634,-0.828974604606628,-0.162765294313431,0.388833940029144,-0.893336296081543,-0.225296854972839,0.101788096129894,0.932480156421661,0.346583276987076,-0.227432578802109,0.910482883453369,-0.345391660928726,-0.222165197134018,0.912602663040161,-0.343218475580215,0.11600973457098,0.921606838703156,0.370381623506546,0.118050120770931,0.927947580814362,0.353521764278412,-0.195832937955856,0.958061814308167,-0.209205821156502,-0.246705740690231,0.914592087268829,-0.320402145385742,0.126536592841148,0.933254539966583,0.336191266775131,0.631798803806305,-0.764647483825684,-0.127061665058136,0.543470740318298,-0.819449245929718,-0.182051315903664,0.59839254617691,-0.787210881710052,-0.149081721901894, +0.710950970649719,-0.699624001979828,-0.071239247918129,0.0411106459796429,-0.961327433586121,-0.27232238650322,0.235154002904892,-0.939766407012939,-0.248076096177101,0.210311010479927,-0.944608628749847,-0.251960307359695,0.0421282425522804,-0.961384892463684,-0.27196416258812,0.0793663561344147,0.942073225975037,0.325881958007813,-0.120476737618446,0.991712331771851,-0.0446345061063766,-0.196198001503944,0.958138704299927,-0.208510518074036,0.107031680643559,0.927572071552277,0.357986658811569,0.0532687641680241,0.956040263175964,0.288356512784958,-0.0185012314468622,0.987922191619873,0.153842285275459,-0.119804248213768,0.991698563098907,-0.0467011071741581,0.0737332701683044,0.94175124168396,0.328128218650818,0.385648339986801,-0.896870970726013,-0.216559007763863,0.212285548448563,-0.942250609397888,-0.259034156799316,0.235945805907249,-0.937774538993835,-0.254771828651428,0.439949572086334,-0.875442802906036,-0.200111016631126,-0.340700566768646,-0.904491484165192,-0.256550878286362,-0.151589289307594,-0.950485408306122,-0.271290063858032,-0.137475863099098,-0.951650857925415,-0.274701863527298,-0.327278912067413,-0.908057928085327,-0.26137974858284,0.0349609591066837,0.965882956981659,0.256608664989471,0.118389144539833,0.90774267911911,0.402476340532303,-0.0182230900973082,0.988143861293793,0.152446210384369,0.0536891110241413,0.95606803894043,0.288186401128769,-0.000313311844365671,0.971060872077942,0.238832205533981,0.258127450942993,0.714019536972046,0.650804460048676,0.118286952376366,0.907477498054504,0.403103888034821,0.0242156349122524,0.965033411979675,0.261006325483322,0.0419262275099754,-0.961677610874176,-0.270958214998245,-0.137455821037292,-0.951611399650574,-0.274848580360413,-0.151538506150246,-0.949896574020386,-0.273372620344162,0.0409331731498241,-0.962141156196594,-0.269460588693619,-0.514357328414917,-0.828880369663239,-0.21998630464077,-0.686210691928864,-0.705119967460632,-0.178664281964302,-0.683997333049774,-0.706570267677307,-0.181400790810585,-0.520307898521423,-0.824617922306061,-0.222002625465393, +-0.0380356386303902,0.971857070922852,0.232480406761169,0.348599493503571,0.461424618959427,0.815822184085846,0.254046231508255,0.702612161636353,0.664677917957306,-0.0145440343767405,0.969542980194092,0.24448923766613,-0.07649777084589,0.967099189758301,0.242625653743744,0.397465407848358,0.245917484164238,0.884050905704498,0.3421890437603,0.449259668588638,0.825271129608154,-0.0545234605669975,0.969547033309937,0.238758951425552,-0.327927261590958,-0.909895181655884,-0.254075944423676,-0.514096915721893,-0.827682316303253,-0.225047916173935,-0.520396828651428,-0.82323682308197,-0.226866453886032,-0.340697854757309,-0.904757738113403,-0.255613923072815,-0.819816648960114,-0.557423412799835,-0.131071865558624,-0.683922410011292,-0.707419514656067,-0.178347557783127,-0.686281681060791,-0.705909729003906,-0.175239562988281,-0.826901495456696,-0.547842979431152,-0.126894474029541,-0.0767673403024673,0.951577425003052,0.297669798135757,0.421774387359619,0.0855556949973106,0.902655243873596,0.390962421894073,0.237821042537689,0.889151096343994,-0.082943432033062,0.965975403785706,0.244973212480545,-0.0491642579436302,0.965005457401276,0.257579922676086,0.382796734571457,-0.0152596402913332,0.923706650733948,0.374146729707718,0.0468658171594143,0.92618453502655,-0.0371459424495697,0.958390831947327,0.283032089471817,-0.826895415782928,-0.548725843429565,-0.123060651123524,-0.916011154651642,-0.393599182367325,-0.0774810686707497,-0.914671540260315,-0.396025002002716,-0.0808723270893097,-0.819780349731445,-0.557828605175018,-0.129566669464111,-0.971819281578064,-0.233136549592018,-0.0348511338233948,-0.914642989635468,-0.39635843038559,-0.0795498713850975,-0.916001796722412,-0.394193887710571,-0.0745113492012024,-0.970631718635559,-0.238242670893669,-0.0333850346505642,-0.0113309435546398,0.967411577701569,0.252955704927444,0.304992258548737,-0.0808546096086502,0.948916435241699,0.303442567586899,-0.0562525168061256,0.9511878490448,-0.014327509328723,0.968890249729156,0.247075796127319,0.0174995623528957,0.969532012939453,0.244339123368263, +0.213035643100739,-0.115974672138691,0.970136940479279,0.21381688117981,-0.10741026699543,0.970950722694397,0.0153246279805899,0.968983948230743,0.246648401021957,-0.970618784427643,-0.238551020622253,-0.0315072499215603,-0.997791230678558,-0.0659848377108574,0.00765743665397167,-0.998299181461334,-0.0578644722700119,0.00710086990147829,-0.971797704696655,-0.233394280076027,-0.0337109602987766,-0.994245886802673,0.0990279018878937,0.0408487878739834,-0.998239696025848,-0.0584529675543308,0.010045419447124,-0.997792661190033,-0.0659735426306725,0.00757241901010275,-0.994726359844208,0.0948569029569626,0.0390091985464096,0.0417943894863129,0.977061152458191,0.208817675709724,0.0537653155624866,-0.114313267171383,0.991988837718964,0.0482096970081329,-0.129419788718224,0.990417301654816,0.0405258946120739,0.969530284404755,0.24159649014473,0.0689771100878716,0.978508055210114,0.194330334663391,-0.153959006071091,-0.0566953271627426,0.986449301242828,-0.152648240327835,-0.0928531885147095,0.983909010887146,0.066898487508297,0.975370764732361,0.210181951522827,-0.968704223632813,0.238473474979401,0.0688660889863968,-0.994182825088501,0.0985482484102249,0.0434602983295918,-0.994645535945892,0.0945511683821678,0.0417195297777653,-0.969245672225952,0.236666277050972,0.0674696266651154,-0.844476938247681,0.518693268299103,0.13347664475441,-0.922655880451202,0.371941745281219,0.101811856031418,-0.923134446144104,0.371707141399384,0.0982675105333328,-0.851991236209869,0.508185267448425,0.125931054353714,0.0642421990633011,0.967402994632721,0.244958162307739,-0.33035871386528,0.0427129864692688,0.942888498306274,-0.341689556837082,-0.0050853043794632,0.939799129962921,0.0819455236196518,0.97691810131073,0.197271749377251,0.0134358806535602,0.957956850528717,0.286597847938538,-0.529012620449066,0.227456986904144,0.817562937736511,-0.519877254962921,0.130853652954102,0.844159364700317,0.0584820359945297,0.968375980854034,0.242544680833817,-0.969119906425476,0.236363336443901,0.0702779591083527,-0.923370361328125,0.372232049703598,0.0939710140228271, +-0.922848343849182,0.373037785291672,0.095884270966053,-0.96862268447876,0.237974479794502,0.0716815590858459,-0.516573667526245,0.827464163303375,0.220124810934067,-0.695799171924591,0.69172990322113,0.193321511149406,-0.70790696144104,0.680647075176239,0.188646048307419,-0.513958930969238,0.829931199550629,0.216934025287628,0.0320583246648312,0.963026881217957,0.267490983009338,-0.512336850166321,0.440015316009521,0.737494051456451,-0.577242434024811,0.2623490691185,0.773281514644623,0.0435786955058575,0.950974822044373,0.30618280172348,0.024241778999567,0.965590953826904,0.258933693170547,-0.381455421447754,0.634547472000122,0.672191381454468,-0.503299951553345,0.430066078901291,0.749488055706024,0.0277669280767441,0.963976740837097,0.264533638954163,-0.851347923278809,0.506530523300171,0.136504635214806,-0.708956062793732,0.682709276676178,0.1768878698349,-0.696028649806976,0.692900061607361,0.188238307833672,-0.844070732593536,0.516386687755585,0.144532144069672,-0.357914179563522,0.90677011013031,0.222857534885406,-0.21350035071373,0.952160835266113,0.218649104237556,-0.210788354277611,0.952673852443695,0.219045579433441,-0.361304491758347,0.905332386493683,0.223231628537178,0.0145789515227079,0.959024548530579,0.282947510480881,-0.257983595132828,0.757075250148773,0.600234508514404,-0.372897922992706,0.621471107006073,0.688999891281128,0.0253068022429943,0.965374231338501,0.259638696908951,-0.0132165551185608,0.944781363010406,0.327434778213501,-0.147272810339928,0.866264879703522,0.477384626865387,-0.257047325372696,0.755423665046692,0.602711975574493,0.023187018930912,0.957236051559448,0.288377374410629,-0.513783276081085,0.829697668552399,0.218239903450012,-0.357818722724915,0.906672060489655,0.223408952355385,-0.36139652132988,0.905577182769775,0.222087055444717,-0.516761183738708,0.82820075750351,0.216890245676041,-0.0801850631833076,0.975557804107666,0.204590633511543,-0.0613037496805191,0.977223932743073,0.203163176774979,-0.210813671350479,0.952720582485199,0.218817412853241,-0.21361643075943,0.952257931232452,0.218112334609032, +-0.0421961322426796,0.931660056114197,0.360872864723206,-0.0341370925307274,0.935309112071991,0.352181196212769,-0.144588977098465,0.86176061630249,0.486274302005768,-0.0152499247342348,0.945176720619202,0.326203227043152,-0.153092637658119,0.884396553039551,0.440914273262024,0.143954738974571,0.976978898048401,-0.157446429133415,0.0894960537552834,0.991745591163635,-0.0918212682008743,-0.156462177634239,0.905271887779236,0.394971340894699,0.240244910120964,0.956688404083252,0.164407417178154,0.361739724874496,0.920609354972839,0.147046759724617,0.433279484510422,0.89851176738739,0.0703242570161819,0.296105891466141,0.950170814990997,0.0974518060684204,0.781140089035034,0.579263150691986,-0.232968628406525,0.675376832485199,0.732986092567444,-0.081225760281086,0.622501909732819,0.782614827156067,-0.00235165632329881,0.715522229671478,0.689806997776031,-0.110428050160408,-0.149736762046814,0.886936664581299,0.436946481466293,0.201635137200356,0.944365322589874,-0.25984126329422,0.148996725678444,0.977247714996338,-0.15095366537571,-0.154979526996613,0.884477376937866,0.440092235803604,-0.109829142689705,0.884517252445221,0.453394889831543,0.200324013829231,0.922352135181427,-0.330358862876892,0.180923074483871,0.942638278007507,-0.28053542971611,-0.110095120966434,0.884892761707306,0.452596753835678,0.490048468112946,0.868183135986328,0.0781710222363472,0.607005476951599,0.794500231742859,-0.0177126359194517,0.67148220539093,0.735861122608185,-0.0872935801744461,0.536681771278381,0.843175709247589,0.0320523604750633,0.142937749624252,0.902871429920197,-0.405452877283096,0.139105930924416,0.919865369796753,-0.366738706827164,-0.0604940578341484,0.882025182247162,0.467303067445755,-0.0520239025354385,0.897910177707672,0.437093794345856,-0.0171216428279877,0.909318447113037,0.415748566389084,0.0819293558597565,0.972932577133179,0.216078504920006,-0.0370841845870018,0.938571870326996,0.343085467815399,-0.0226992219686508,0.928161263465881,0.371485382318497,-0.413276821374893,-0.39352211356163,-0.821183621883392,-0.414086639881134,-0.376926690340042,-0.828527987003326, +-0.130828633904457,-0.389316588640213,-0.911765694618225,-0.131592512130737,-0.40590301156044,-0.904392719268799,-0.429382711648941,-0.602367997169495,-0.672891795635223,-0.405126184225082,-0.594863474369049,-0.69426965713501,-0.280286878347397,-0.501481890678406,-0.81850790977478,-0.301865965127945,-0.508266448974609,-0.806561946868896,0.0430520735681057,-0.273830741643906,-0.960813879966736,0.000796237960457802,-0.271218001842499,-0.962517619132996,-0.0723031535744667,-0.262556791305542,-0.962203919887543,-0.0209657866507769,-0.266840547323227,-0.963512599468231,0.0517696216702461,0.987969398498535,0.145727172493935,0.107780247926712,0.982010304927826,0.155046105384827,-0.061099287122488,0.976955056190491,0.20451332628727,-0.0845037996768951,0.978115737438202,0.190128117799759,0.752186834812164,-0.542500078678131,-0.374043643474579,0.689880907535553,-0.519180953502655,-0.504495441913605,0.742174029350281,-0.459111779928207,-0.488256335258484,0.799503087997437,-0.490103751420975,-0.347265124320984 + } + BinormalsW: *11977 { + 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 + } + + } + LayerElementTangent: 0 { + Version: 102 + Name: "DiffuseUV" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Tangents: *35931 { + a: -0.899777054786682,0.411352813243866,0.145569056272507,-0.901887714862823,0.367286652326584,0.227374330163002,-0.900684654712677,0.386942356824875,0.197592988610268,-0.923803925514221,0.325713455677032,0.201238915324211,-0.921308398246765,0.270263940095901,0.279550045728683,-0.918098211288452,0.265324115753174,0.294446557760239,-0.907765865325928,0.35670992732048,0.220724195241928,-0.903646171092987,0.312335282564163,0.293036311864853,-0.90673965215683,0.317852824926376,0.277115166187286,-0.922974526882172,0.383637577295303,0.0306640230119228,-0.939193487167358,0.292287319898605,0.180232435464859,-0.921980977058411,0.386810779571533,0.0181251298636198,-0.924198389053345,0.315156519412994,0.215716674923897,-0.924262523651123,0.309708416461945,0.223203241825104,-0.924306213855743,0.324685573577881,0.200592875480652,-0.658441722393036,-0.689506351947784,-0.301720917224884,-0.658317148685455,-0.690144956111908,-0.300530403852463,-0.580641210079193,-0.724052011966705,-0.372296392917633,-0.580636382102966,-0.723425924777985,-0.373518884181976,-0.751503944396973,-0.659728229045868,0.000687132880557328,-0.748254120349884,-0.663389503955841,0.00549916597083211,-0.6726393699646,-0.735692918300629,-0.0794491842389107,-0.675876617431641,-0.73217785358429,-0.0843008980154991,-0.779081583023071,-0.565964698791504,0.269658803939819,-0.70483785867691,-0.672497391700745,0.225722953677177,-0.672985076904297,-0.691240429878235,0.263206660747528,-0.74858570098877,-0.587641835212708,0.307077348232269,-0.759754359722137,-0.499204933643341,0.41661462187767,-0.728891849517822,-0.59954309463501,0.330552220344543,-0.730035006999969,-0.599202871322632,0.328640937805176,-0.760759949684143,-0.498796880245209,0.415266335010529,-0.817478179931641,-0.281291902065277,0.502597749233246,-0.779552936553955,-0.398537755012512,0.483182013034821,-0.73713493347168,-0.425935000181198,0.524605989456177,-0.778466284275055,-0.314061254262924,0.543466329574585,-0.863102555274963,0.493544638156891,0.107087381184101,-0.863381266593933,0.474659144878387,0.171089112758636, +-0.872169494628906,0.415735483169556,0.257845610380173,-0.994839251041412,-0.101321324706078,0.00537940533831716,-0.98779022693634,-0.14448806643486,-0.0582567416131496,-0.996030569076538,-0.0835625380277634,-0.0306652821600437,-0.998640358448029,-0.0402412377297878,0.0331377610564232,0.827895045280457,-0.461935520172119,-0.318128019571304,0.891797542572021,-0.399932622909546,-0.211544394493103,0.893969893455505,-0.370757699012756,-0.25170710682869,0.826869547367096,-0.432892560958862,-0.359013617038727,0.674206674098969,-0.696275949478149,-0.246262386441231,0.748120069503784,-0.622169375419617,-0.23069816827774,0.750692307949066,-0.610688149929047,-0.252033770084381,0.676588594913483,-0.685643374919891,-0.268553495407104,0.498494058847427,-0.84904146194458,-0.175020933151245,0.580041527748108,-0.801092803478241,-0.14765627682209,0.581224203109741,-0.798752307891846,-0.155477687716484,0.49874022603035,-0.847147464752197,-0.183301374316216,0.3601233959198,-0.931167960166931,-0.0568979345262051,0.423973500728607,-0.900607109069824,-0.0956729874014854,0.424138367176056,-0.895667195320129,-0.133742079138756,0.358202308416367,-0.928658366203308,-0.0963570922613144,0.263755768537521,-0.955312490463257,0.1334577947855,0.310563296079636,-0.946844518184662,0.0838798806071281,0.307088047266006,-0.950566172599792,0.0460536777973175,0.256477534770966,-0.96189296245575,0.0947692394256592,0.18298402428627,-0.919111490249634,0.348928183317184,0.214627578854561,-0.929166078567505,0.300974160432816,0.204120934009552,-0.939679622650146,0.274475991725922,0.169274479150772,-0.930935084819794,0.323583245277405,0.0532535426318645,-0.870020687580109,-0.49013090133667,-0.0924407914280891,-0.840972185134888,-0.53312349319458,-0.0962158218026161,-0.845060706138611,-0.525941908359528,0.0489813238382339,-0.874146640300751,-0.483185797929764,-0.916476368904114,0.340295523405075,0.210404932498932,-0.91436630487442,0.313299387693405,0.256471663713455,-0.916413307189941,0.319524109363556,0.241021245718002,-0.888955056667328,0.288477718830109,0.355723857879639, +-0.889118790626526,0.295547842979431,0.349455714225769,-0.898355722427368,0.373465001583099,0.231259271502495,0.158635556697845,-0.986612617969513,0.0378190837800503,0.037731409072876,-0.997400879859924,-0.0613840855658054,0.0227704476565123,-0.999328255653381,-0.0287182237952948,0.14401750266552,-0.98707526922226,0.0702948421239853,0.327398091554642,-0.835540533065796,0.44122850894928,0.206882894039154,-0.931323051452637,0.299727886915207,0.177744626998901,-0.920547366142273,0.347849726676941,0.293174684047699,-0.825051367282867,0.483051627874374,0.395071983337402,-0.593944370746613,0.700819730758667,0.426087588071823,-0.648504257202148,0.63078647851944,0.376043647527695,-0.645713329315186,0.664564073085785,0.339474767446518,-0.597477197647095,0.726483225822449,-0.389057904481888,-0.851731777191162,-0.350979894399643,-0.28610548377037,-0.892089128494263,-0.349743634462357,-0.292423725128174,-0.896662473678589,-0.332392543554306,-0.394665092229843,-0.856360077857971,-0.332997173070908,-0.916413187980652,0.340417861938477,0.210481822490692,-0.915939807891846,0.328043252229691,0.23117507994175,-0.916373312473297,0.331252664327621,0.224792376160622,-0.89828485250473,0.373587757349014,0.231336459517479,-0.890588819980621,0.298227250576019,0.343383222818375,-0.890591502189636,0.29846403002739,0.343170583248138,-0.604049026966095,-0.731878578662872,-0.315402209758759,-0.602438390254974,-0.732345521450043,-0.317392557859421,-0.503098368644714,-0.802344977855682,-0.321146041154861,-0.504021406173706,-0.802110314369202,-0.320283710956573,-0.743246972560883,-0.6048224568367,-0.285961121320724,-0.742989301681519,-0.613317728042603,-0.267970502376556,-0.685746550559998,-0.677446782588959,-0.266115665435791,-0.685796022415161,-0.669434189796448,-0.285554856061935,-0.851233303546906,-0.465732753276825,-0.241857126355171,-0.796785116195679,-0.547178387641907,-0.256377369165421,-0.797372221946716,-0.535810828208923,-0.277676433324814,-0.851861894130707,-0.453756093978882,-0.261604160070419,-0.940175592899323,-0.303240776062012,-0.155290320515633, +-0.938365340232849,-0.320453703403473,-0.129536598920822,-0.895937740802765,-0.416496396064758,-0.154357701539993,-0.898342788219452,-0.400224030017853,-0.181110978126526,-0.992839634418488,-0.00774019025266171,-0.119203805923462,-0.996543943881989,-0.0492219589650631,-0.066913865506649,-0.973582983016968,-0.204810902476311,-0.100939191877842,-0.973983705043793,-0.165139123797417,-0.15519306063652,0.947346210479736,-0.19085069000721,-0.257120847702026,0.944975018501282,-0.236037403345108,-0.226513743400574,0.936672329902649,-0.248709484934807,-0.246553421020508,0.941936492919922,-0.208909153938293,-0.262892663478851,-0.928237557411194,0.370833694934845,0.0292812660336494,-0.940986454486847,0.288100808858871,0.177601873874664,-0.930698990821838,0.359541714191437,0.0672990083694458,-0.898016333580017,0.37405201792717,0.23162841796875,-0.891859471797943,0.315718144178391,0.323896139860153,-0.891720235347748,0.298726141452789,0.339996665716171,-0.912652611732483,0.25647360086441,0.318255752325058,-0.912515997886658,0.252060294151306,0.322149246931076,-0.921344697475433,0.330692380666733,0.204368442296982,-0.910806834697723,0.351084738969803,0.217187613248825,-0.910238206386566,0.333493709564209,0.245455875992775,-0.910503029823303,0.331213384866714,0.247551798820496,-0.93653529882431,0.298371136188507,0.184055298566818,-0.936447858810425,0.294021487236023,0.191355094313622,-0.936629474163055,0.292603731155396,0.192635133862495,-0.901110827922821,0.368656665086746,0.22823578119278,-0.900979578495026,0.343991607427597,0.264396578073502,-0.900374472141266,0.349020332098007,0.259828150272369,-0.91989666223526,0.333583116531372,0.20618548989296,-0.919226050376892,0.315533250570297,0.235504671931267,-0.919464588165283,0.312908738851547,0.238060966134071,-0.928543150424957,0.313586354255676,0.198673695325851,-0.928669452667236,0.315589219331741,0.194875732064247,-0.928750157356262,0.302301377058029,0.214562997221947,-0.943455815315247,0.275772005319595,0.183959662914276,-0.94402289390564,0.280848860740662,0.173045381903648,-0.944360673427582,0.267234951257706,0.191751450300217, +-0.598426580429077,-0.362125992774963,-0.714668035507202,-0.576741576194763,-0.323642641305923,-0.750082969665527,-0.622485518455505,-0.340399503707886,-0.704726874828339,-0.630275189876556,-0.373306006193161,-0.680731773376465,-0.294351816177368,-0.564298212528229,-0.771313548088074,-0.294208943843842,-0.588976740837097,-0.752693474292755,-0.242055669426918,-0.570753633975983,-0.784633278846741,-0.224006995558739,-0.538529098033905,-0.812285125255585,-0.730431795120239,-0.231798082590103,-0.642447710037231,-0.702881395816803,-0.193924933671951,-0.684361696243286,-0.739079296588898,-0.211306035518646,-0.639618277549744,-0.753932297229767,-0.243878871202469,-0.610007584095001,-0.154460340738297,-0.544817686080933,-0.824206113815308,-0.186015918850899,-0.572062134742737,-0.79883861541748,-0.145783096551895,-0.551577687263489,-0.82128518819809,-0.111046113073826,-0.526984930038452,-0.842588722705841,-0.576103806495667,-0.324558854103088,-0.750177383422852,-0.622141659259796,-0.3283312022686,-0.710730850696564,-0.579780042171478,-0.327182948589325,-0.746194660663605,-0.522866249084473,-0.317763805389404,-0.790972352027893,-0.394583821296692,-0.452011674642563,-0.79999315738678,-0.33022341132164,-0.480499088764191,-0.812448918819427,-0.223441675305367,-0.489802926778793,-0.842714011669159,-0.297243386507034,-0.463845402002335,-0.834562003612518,-0.5013547539711,-0.262460231781006,-0.824474394321442,-0.569997727870941,-0.268014967441559,-0.776704967021942,-0.509649813175201,-0.267252326011658,-0.817822217941284,-0.432033449411392,-0.259665817022324,-0.863667070865631,-0.894340515136719,-0.0551210641860962,-0.443978399038315,-0.875445425510406,0.0553637146949768,-0.480135589838028,-0.877983808517456,-0.0364001579582691,-0.477304399013519,-0.876747190952301,-0.138250738382339,-0.460653185844421,-0.66116064786911,-0.188963145017624,-0.726057529449463,-0.705330014228821,-0.189238622784615,-0.683153212070465,-0.750157058238983,-0.193022340536118,-0.63246089220047,-0.714286923408508,-0.196088224649429,-0.671821057796478,-0.747127830982208,0.00810467172414064,-0.664631068706512, +-0.793934881687164,0.0220199339091778,-0.607603967189789,-0.74315881729126,0.0101256519556046,-0.669038414955139,-0.687623023986816,-0.000813154503703117,-0.726067423820496,-0.677415311336517,-0.219743400812149,-0.702012360095978,-0.625075817108154,-0.261766910552979,-0.735362589359283,-0.532163858413696,-0.29070845246315,-0.795166790485382,-0.596005141735077,-0.250066518783569,-0.763049483299255,0.0963212251663208,-0.680634796619415,-0.726263523101807,0.0555863790214062,-0.680488288402557,-0.730647563934326,0.121052041649818,-0.669427573680878,-0.732948303222656,0.125805094838142,-0.68579238653183,-0.716841638088226,-0.0226447489112616,-0.663715779781342,-0.74764209985733,0.0296669080853462,-0.597875475883484,-0.801039755344391,-0.0254498552531004,-0.569800674915314,-0.821388900279999,-0.0631382465362549,-0.636221647262573,-0.768918454647064,-0.653783082962036,-0.177974194288254,-0.735454261302948,-0.705489695072174,-0.139022901654243,-0.694951057434082,-0.751916348934174,-0.101103723049164,-0.651459753513336,-0.709624946117401,-0.141625121235847,-0.690199017524719,-0.566923797130585,-0.158939301967621,-0.808291852474213,-0.609232902526855,-0.11783691495657,-0.784187316894531,-0.66959685087204,-0.0832562446594238,-0.738043665885925,-0.628964841365814,-0.122171603143215,-0.767774343490601,0.169844508171082,-0.787695705890656,-0.59218955039978,0.173740029335022,-0.812186419963837,-0.556926906108856,0.22262404859066,-0.768757879734039,-0.599541425704956,0.206869766116142,-0.742536067962646,-0.63705974817276,-0.145065784454346,-0.645608603954315,-0.749763607978821,-0.135869830846786,-0.667701601982117,-0.731924951076508,0.00308167049661279,-0.673152506351471,-0.739497244358063,-0.0160703919827938,-0.643719971179962,-0.765092372894287,0.166542455554008,-0.854190468788147,-0.492566972970963,0.140244096517563,-0.870105147361755,-0.472491830587387,0.202919840812683,-0.87138968706131,-0.446658223867416,0.230452746152878,-0.852299392223358,-0.469550162553787,-0.12068185955286,-0.749075889587402,-0.651399433612823,-0.140346273779869,-0.765447616577148,-0.628007054328918, +0.006783168297261,-0.783572316169739,-0.621263563632965,0.0223604068160057,-0.757616579532623,-0.652316629886627,0.1025121062994,-0.925622701644897,-0.364299237728119,0.0527532063424587,-0.933255076408386,-0.355319797992706,0.120654225349426,-0.936969041824341,-0.327920407056808,0.162993222475052,-0.926140427589417,-0.340142965316772,-0.167247116565704,-0.825324475765228,-0.539321959018707,-0.211281076073647,-0.826993882656097,-0.521000504493713,-0.0638671070337296,-0.860827565193176,-0.504873156547546,-0.0201118197292089,-0.847781717777252,-0.529963731765747,-0.0210445411503315,-0.965250432491302,-0.260478287935257,-0.0846720561385155,-0.960236251354218,-0.266039699316025,-0.00282345246523619,-0.97243195772171,-0.233169794082642,0.053982000797987,-0.971302330493927,-0.231641262769699,-0.0172404460608959,-0.981816530227661,-0.189048007130623,-0.0966357439756393,-0.970159351825714,-0.222378954291344,-0.162374064326286,-0.958504796028137,-0.234314426779747,-0.0808408409357071,-0.976884961128235,-0.197890177369118,-0.267798125743866,-0.855091512203217,-0.443962424993515,-0.323555618524551,-0.839970946311951,-0.435615062713623,-0.183100804686546,-0.893148958683014,-0.410802930593491,-0.124164648354053,-0.896678864955902,-0.424911826848984,-0.181894943118095,-0.975036323070526,-0.127351641654968,-0.258688688278198,-0.951110541820526,-0.168727144598961,-0.322131633758545,-0.927001297473907,-0.192093640565872,-0.244302108883858,-0.958396077156067,-0.147626161575317,-0.393325418233871,-0.837391197681427,-0.379566997289658,-0.450522303581238,-0.806881308555603,-0.382063269615173,-0.323689758777618,-0.880163013935089,-0.34718582034111,-0.260456323623657,-0.900172233581543,-0.349074006080627,-0.351582884788513,-0.931285738945007,-0.0953756347298622,-0.421931952238083,-0.894955933094025,-0.145008087158203,-0.480314344167709,-0.858606338500977,-0.17914617061615,-0.413403064012527,-0.901395738124847,-0.128777548670769,-0.520066559314728,-0.780538320541382,-0.346829533576965,-0.571602940559387,-0.73795485496521,-0.358737915754318, +-0.465782463550568,-0.827149033546448,-0.314437866210938,-0.405281901359558,-0.861946821212769,-0.304621577262878,-0.502538859844208,-0.856507182121277,-0.117686897516251,-0.574834585189819,-0.805395007133484,-0.144582375884056,-0.633405447006226,-0.75579309463501,-0.166055291891098,-0.565923810005188,-0.812496662139893,-0.139926806092262,-0.633735835552216,-0.694555401802063,-0.340546160936356,-0.674705028533936,-0.644772291183472,-0.35922384262085,-0.593744516372681,-0.743238568305969,-0.308324247598648,-0.543256342411041,-0.788162589073181,-0.289261698722839,-0.650062084197998,-0.748086452484131,-0.133364200592041,-0.70294326543808,-0.69100695848465,-0.168463975191116,-0.748049080371857,-0.632137656211853,-0.202051192522049,-0.699095368385315,-0.695214450359344,-0.16716068983078,-0.725580751895905,-0.590837597846985,-0.352765619754791,-0.762298285961151,-0.532480835914612,-0.367920577526093,-0.697019815444946,-0.63736492395401,-0.328526169061661,-0.650921761989594,-0.69243460893631,-0.311183780431747,-0.779973149299622,-0.605344951152802,-0.158743232488632,-0.803710579872131,-0.553681194782257,-0.217913776636124,-0.823881506919861,-0.49411278963089,-0.277618199586868,-0.802613019943237,-0.556077659130096,-0.215847119688988,-0.790655076503754,-0.469971150159836,-0.392418026924133,-0.810021042823792,-0.401974558830261,-0.426945477724075,-0.780029714107513,-0.504241466522217,-0.370532274246216,-0.751366317272186,-0.570798277854919,-0.331116557121277,-0.861890971660614,-0.45438826084137,-0.225111991167068,-0.870871543884277,-0.396421849727631,-0.290572702884674,-0.873144626617432,-0.339763611555099,-0.349541455507278,-0.868590652942657,-0.402867645025253,-0.28852716088295,-0.828062355518341,-0.331314235925674,-0.452265024185181,-0.831820249557495,-0.274400264024734,-0.482472330331802,-0.826724112033844,-0.355494290590286,-0.436063170433044,-0.816106140613556,-0.422320663928986,-0.394482165575027,-0.829559922218323,-0.353269755840302,-0.432470828294754,-0.833908915519714,-0.27302810549736,-0.479636967182159,-0.834514439105988,-0.220728084445,-0.504841327667236, +-0.834416449069977,-0.293295681476593,-0.466612130403519,-0.895743012428284,-0.187945872545242,-0.402890682220459,-0.879987835884094,-0.138738766312599,-0.454282939434052,-0.892957091331482,-0.186003804206848,-0.409915179014206,-0.905970215797424,-0.232659175992012,-0.353677421808243,-0.838376224040985,-0.237277448177338,-0.490739196538925,-0.828360497951508,-0.171787068247795,-0.533205568790436,-0.817686259746552,-0.117762476205826,-0.563490211963654,-0.831831216812134,-0.189117595553398,-0.521815478801727,-0.796830534934998,-0.347911089658737,-0.493982762098312,-0.781664192676544,-0.413899302482605,-0.466570913791656,-0.801738977432251,-0.309781938791275,-0.511125981807709,-0.807797133922577,-0.257105946540833,-0.530434012413025,-0.770569086074829,-0.228783026337624,-0.594879508018494,-0.766338765621185,-0.12897926568985,-0.629356205463409,-0.758540630340576,-0.083044096827507,-0.646312475204468,-0.767926096916199,-0.185164928436279,-0.613191246986389,-0.870072722434998,-0.0574136860668659,-0.489568412303925,-0.837416648864746,-0.0122052235528827,-0.546428740024567,-0.863457441329956,-0.052488200366497,-0.501683413982391,-0.891385316848755,-0.0924719497561455,-0.443712919950485,-0.82553768157959,-0.124963209033012,-0.550337851047516,-0.794598042964935,-0.0580782331526279,-0.604351699352264,-0.76304030418396,0.00276975077576935,-0.64634495973587,-0.800080180168152,-0.0701670497655869,-0.595775485038757,-0.751881957054138,-0.139331385493279,-0.644406914710999,-0.727259337902069,-0.0396250449120998,-0.685218095779419,-0.706411182880402,0.0142946094274521,-0.707657337188721,-0.735642313957214,-0.081977054476738,-0.672391533851624,-0.809869468212128,0.0730116739869118,-0.582048714160919,-0.75951087474823,0.108043782413006,-0.641459107398987,-0.795326411724091,0.0798996239900589,-0.600892782211304,-0.842335402965546,0.0482489801943302,-0.53678959608078,-0.774697422981262,-0.00392990419641137,-0.632319927215576,-0.723184585571289,0.0551157258450985,-0.688452124595642,-0.67856627702713,0.10316501557827,-0.727258443832397, +-0.733566701412201,0.0420434474945068,-0.678315758705139,-0.699547529220581,-0.0276254210621119,-0.714051842689514,-0.657504379749298,0.057060431689024,-0.751286864280701,-0.625009715557098,0.108965940773487,-0.77297431230545,-0.668810367584229,0.0309487134218216,-0.742788732051849,-0.706952393054962,0.19812598824501,-0.678943693637848,-0.638133585453033,0.215380847454071,-0.739186465740204,-0.67426198720932,0.205132126808167,-0.709430575370789,-0.741445899009705,0.19147153198719,-0.643114805221558,-0.695600509643555,0.11362262070179,-0.709386944770813,-0.625614762306213,0.143090710043907,-0.766897141933441,-0.561263918876648,0.167571380734444,-0.810495316982269,-0.633136034011841,0.13659879565239,-0.761892020702362,-0.619145452976227,0.070561945438385,-0.782099664211273,-0.560554623603821,0.14014396071434,-0.81617283821106,-0.51733410358429,0.182627469301224,-0.836069762706757,-0.577252745628357,0.116143204271793,-0.808263540267944,-0.631501257419586,0.0211312100291252,-0.775086879730225,-0.624105453491211,0.0473261065781116,-0.779905557632446,-0.613544762134552,0.0850332081317902,-0.785068273544312,-0.621313154697418,0.0633556693792343,-0.780996918678284,-0.560306787490845,0.0878293961286545,-0.823615431785583,-0.554959654808044,0.10773154348135,-0.824871897697449,-0.535646319389343,0.152915447950363,-0.830481708049774,-0.541125655174255,0.13490891456604,-0.830049753189087,-0.674175500869751,0.0331491380929947,-0.737826883792877,-0.69843202829361,-0.0512522794306278,-0.713838934898376,-0.711186468601227,-0.0987333804368973,-0.696035623550415,-0.690796077251434,-0.00858752522617579,-0.722998738288879,-0.493417590856552,0.17277766764164,-0.852459490299225,-0.453602373600006,0.169698968529701,-0.874898314476013,-0.398054748773575,0.1916374117136,-0.897121787071228,-0.437164545059204,0.198877230286598,-0.877117455005646,-0.742119491100311,-0.175341799855232,-0.646926522254944,-0.738487362861633,-0.215339973568916,-0.638956367969513,-0.744296550750732,-0.134703457355499,-0.654123544692993,-0.743191659450531,-0.0923628211021423,-0.662672817707062, +-0.755165636539459,-0.481005162000656,-0.44537490606308,-0.72356641292572,-0.540281891822815,-0.429589450359344,-0.775948584079742,-0.42567977309227,-0.465510994195938,-0.797487795352936,-0.367321521043777,-0.478631466627121,-0.743486940860748,-0.258319318294525,-0.616845548152924,-0.729245483875275,-0.301896929740906,-0.614051580429077,-0.754810631275177,-0.213818624615669,-0.620114922523499,-0.761907875537872,-0.17549392580986,-0.623456835746765,-0.687628865242004,-0.594087481498718,-0.417404621839523,-0.649412035942078,-0.643574297428131,-0.405063211917877,-0.722361087799072,-0.531225144863129,-0.442712426185608,-0.75011146068573,-0.480144798755646,-0.454745918512344,-0.723172068595886,-0.347451448440552,-0.596908390522003,-0.701657831668854,-0.387835085391998,-0.597712457180023,-0.742385268211365,-0.299576848745346,-0.599264442920685,-0.756986439228058,-0.258234351873398,-0.600238859653473,-0.597552418708801,-0.6877401471138,-0.4122434258461,-0.549031734466553,-0.729484081268311,-0.40794250369072,-0.647543609142303,-0.623671114444733,-0.437860250473022,-0.684702694416046,-0.577788710594177,-0.444232493638992,-0.684585094451904,-0.427935630083084,-0.590096890926361,-0.657205045223236,-0.460146486759186,-0.5969477891922,-0.712720036506653,-0.374111264944077,-0.593355655670166,-0.731788814067841,-0.341160774230957,-0.589995324611664,-0.486134022474289,-0.760008096694946,-0.43134868144989,-0.431573867797852,-0.789271056652069,-0.436801254749298,-0.553972363471985,-0.696647346019745,-0.455847591161728,-0.598231375217438,-0.65968132019043,-0.454906433820724,-0.628228545188904,-0.487944424152374,-0.606002688407898,-0.596668779850006,-0.510338425636292,-0.619307041168213,-0.668067395687103,-0.427751988172531,-0.608863055706024,-0.691231369972229,-0.402111679315567,-0.600421011447906,-0.365673065185547,-0.798513531684875,-0.478183418512344,-0.311019271612167,-0.811799943447113,-0.494214564561844,-0.4507697224617,-0.738576889038086,-0.501309096813202,-0.497941523790359,-0.714177131652832,-0.491940408945084,-0.560580968856812,-0.521657466888428,-0.643135011196136, +-0.530063271522522,-0.5294309258461,-0.662371337413788,-0.613924980163574,-0.455895572900772,-0.644403100013733,-0.637582540512085,-0.441324174404144,-0.631443977355957,-0.252479255199432,-0.792754411697388,-0.554792404174805,-0.207788899540901,-0.787540256977081,-0.580175817012787,-0.358171850442886,-0.734720706939697,-0.576106250286102,-0.398666352033615,-0.727415859699249,-0.558508038520813,-0.497618854045868,-0.508533477783203,-0.70268714427948,-0.476164132356644,-0.497443050146103,-0.725133240222931,-0.568694889545441,-0.432654678821564,-0.699568569660187,-0.584980547428131,-0.435857355594635,-0.683978199958801,-0.171248942613602,-0.736980736255646,-0.65386027097702,-0.148578211665154,-0.713791131973267,-0.684417009353638,-0.300798237323761,-0.679497063159943,-0.669181704521179,-0.323653548955917,-0.690028727054596,-0.647386074066162,-0.456436097621918,-0.449370443820953,-0.767940282821655,-0.453033119440079,-0.422444492578506,-0.785048842430115,-0.544772446155548,-0.372119188308716,-0.751498699188232,-0.548765778541565,-0.3890081346035,-0.739951848983765,-0.151131942868233,-0.633134186267853,-0.759144425392151,-0.160213842988014,-0.598584771156311,-0.784874379634857,-0.305384159088135,-0.578924357891083,-0.756033778190613,-0.301194220781326,-0.602770686149597,-0.738883912563324,-0.463034778833389,-0.349242925643921,-0.814633786678314,-0.485307782888412,-0.309909015893936,-0.817577362060547,-0.571359574794769,-0.268527060747147,-0.775526583194733,-0.551106154918671,-0.300750941038132,-0.778351366519928,-0.207853853702545,-0.507251560688019,-0.83635675907135,-0.253830999135971,-0.467431426048279,-0.84680438041687,-0.378756642341614,-0.451549470424652,-0.807865560054779,-0.345102965831757,-0.486202776432037,-0.802814304828644,-0.571799278259277,-0.245405271649361,-0.782829463481903,-0.487026751041412,-0.288690358400345,-0.824295341968536,-0.521122753620148,-0.246704936027527,-0.817048192024231,-0.596912384033203,-0.210958510637283,-0.774074971675873,-0.270114421844482,-0.433077573776245,-0.859931409358978,-0.326817065477371,-0.386918872594833,-0.862255394458771, +-0.443230867385864,-0.362231731414795,-0.819960117340088,-0.396944284439087,-0.40696319937706,-0.822688400745392,-0.670787990093231,-0.0734857395291328,-0.737999677658081,-0.613523840904236,-0.0950399190187454,-0.783936142921448,-0.681951224803925,-0.073442704975605,-0.727701008319855,-0.727206826210022,-0.0512161701917648,-0.684505105018616,-0.823727071285248,0.0788935124874115,-0.561470925807953,-0.800398111343384,0.0567016117274761,-0.596781134605408,-0.840873777866364,0.0691545978188515,-0.53679496049881,-0.860933065414429,0.0929219648241997,-0.500159680843353,-0.890369594097137,0.0848086699843407,-0.447268962860107,-0.87529331445694,0.0544913597404957,-0.48051255941391,-0.916540563106537,0.0598159655928612,-0.395443171262741,-0.921882331371307,0.100114926695824,-0.374312669038773,-0.965907871723175,0.0475317239761353,-0.254485368728638,-0.949155986309052,0.115971758961678,-0.292666137218475,-0.954562485218048,0.0667667090892792,-0.290435016155243,-0.964024782180786,0.000269351061433554,-0.265812277793884,-0.949424207210541,0.152358889579773,-0.274555087089539,-0.949493527412415,0.134915441274643,-0.283301711082458,-0.967997133731842,0.087980218231678,-0.235034584999084,-0.968314588069916,0.106808543205261,-0.225740522146225,-0.990220844745636,0.112381160259247,-0.0826640799641609,-0.981874346733093,0.101112611591816,-0.160308793187141,-0.983600258827209,0.0582760982215405,-0.170688778162003,-0.992665529251099,0.0672058016061783,-0.100492350757122,-0.978600025177002,0.156537070870399,-0.13355964422226,-0.98003214597702,0.14115446805954,-0.140045076608658,-0.988981962203979,0.127751439809799,-0.0747936069965363,-0.987627327442169,0.142480120062828,-0.0655111148953438,-0.991542458534241,0.113292030990124,0.0633127689361572,-0.992217719554901,0.124476529657841,-0.00307476497255266,-0.994167029857635,0.107549354434013,-0.00806538015604019,-0.994271397590637,0.0967139974236488,0.0455061830580235,-0.987955391407013,0.153929606080055,0.0158076155930758,-0.989642679691315,0.143394559621811,0.00673943478614092,-0.989517867565155,0.126268804073334,0.0700754448771477, +-0.987270474433899,0.138069599866867,0.0789544284343719,0.94676274061203,-0.185764566063881,-0.262929320335388,0.952832877635956,-0.219117522239685,-0.209992870688438,0.950761616230011,-0.221331357955933,-0.216944649815559,0.947481453418732,-0.190494909882545,-0.256886750459671,0.905415892601013,-0.20631068944931,-0.371022909879684,0.912000298500061,-0.171932473778725,-0.372417360544205,0.912532091140747,-0.225496351718903,-0.341228187084198,0.900022089481354,-0.256181389093399,-0.35260683298111,0.954775929450989,-0.213384047150612,-0.207051202654839,0.945576608181,-0.189241945743561,-0.264711797237396,0.948416113853455,-0.186858102679253,-0.256107270717621,0.957708895206451,-0.209035739302635,-0.197731539607048,0.862114369869232,-0.188141971826553,-0.470490545034409,0.85990697145462,-0.152173087000847,-0.487240791320801,0.87006276845932,-0.202999100089073,-0.449201822280884,0.86527955532074,-0.235455170273781,-0.442552119493484,0.923175990581512,-0.199799433350563,-0.328369438648224,0.913697421550751,-0.167617008090019,-0.370218217372894,0.915366590023041,-0.164178267121315,-0.367626786231995,0.926591753959656,-0.196893513202667,-0.320407122373581,0.780549347400665,-0.118601962924004,-0.613739609718323,0.781896710395813,-0.219278901815414,-0.583570182323456,0.754687070846558,-0.292435079813004,-0.58730685710907,0.772838234901428,-0.20613919198513,-0.600189685821533,0.878867268562317,-0.184173479676247,-0.440082341432571,0.861951231956482,-0.147620543837547,-0.485023945569992,0.862240612506866,-0.142813429236412,-0.48594805598259,0.881338655948639,-0.177565604448318,-0.437849938869476,0.747610986232758,-0.101359352469444,-0.656356573104858,0.761103272438049,-0.155154541134834,-0.6298006772995,0.795887589454651,-0.170608699321747,-0.580909430980682,0.792459189891815,-0.12574128806591,-0.596822917461395,0.818903088569641,-0.150953471660614,-0.553724408149719,0.780549049377441,-0.118602581322193,-0.613739848136902,0.790835738182068,-0.119121231138706,-0.600324034690857,0.824592649936676,-0.139418080449104,-0.548278748989105, +0.600563883781433,-0.0918619930744171,-0.79428243637085,0.626313149929047,-0.126888602972031,-0.769175589084625,0.676698625087738,-0.199708893895149,-0.708657443523407,0.664005815982819,-0.177728414535522,-0.726298034191132,0.528713822364807,-0.0528578981757164,-0.847152769565582,0.554709792137146,-0.0904744192957878,-0.827110290527344,0.637208640575409,-0.189209222793579,-0.747104585170746,0.620443820953369,-0.159620627760887,-0.767835080623627,0.739815592765808,-0.0989829450845718,-0.665488839149475,0.707692086696625,-0.078928217291832,-0.702098548412323,0.730665445327759,-0.0928680077195168,-0.676390171051025,0.759371995925903,-0.108827285468578,-0.641491055488586,0.638287723064423,-0.0640648454427719,-0.767127454280853,0.5940802693367,-0.0294780600816011,-0.803865432739258,0.650045335292816,-0.075724184513092,-0.756113052368164,0.687433838844299,-0.104922898113728,-0.718627750873566,0.590440511703491,-0.0428728573024273,-0.805941581726074,0.593933641910553,-0.0758274346590042,-0.800932586193085,0.646423578262329,0.0866150632500648,-0.758046448230743,0.646022379398346,0.123071804642677,-0.753331542015076,0.408297330141068,0.0723623037338257,-0.909976363182068,0.356667399406433,0.129059955477715,-0.925273954868317,0.392748028039932,0.0856841951608658,-0.915645778179169,0.449855238199234,0.025514617562294,-0.892737030982971,0.502412855625153,0.000799693225417286,-0.864627480506897,0.451296240091324,0.0571559779345989,-0.890541970729828,0.50740510225296,-0.00309549388475716,-0.86170220375061,0.552805125713348,-0.0529224574565887,-0.831628322601318,0.379637241363525,0.0712133571505547,-0.922390520572662,0.338599622249603,0.110608257353306,-0.934406936168671,0.276633650064468,0.178694605827332,-0.944215059280396,0.321221917867661,0.13298299908638,-0.937620401382446,0.236274719238281,0.161384508013725,-0.958190679550171,0.187242969870567,0.204159289598465,-0.960863709449768,0.151049479842186,0.240116864442825,-0.958920240402222,0.194734528660774,0.20006987452507,-0.960234582424164,0.501869976520538,-0.0103270970284939,-0.864881455898285, +0.442699939012527,0.0470080748200417,-0.895436882972717,0.383825063705444,0.107215873897076,-0.917160332202911,0.444397032260895,0.0476296357810497,-0.894562840461731,0.371843487024307,0.0834216251969337,-0.924539506435394,0.302254915237427,0.135972738265991,-0.943479418754578,0.255389004945755,0.170392483472824,-0.95170521736145,0.324129521846771,0.117924332618713,-0.938634097576141,0.52704256772995,0.0107414973899722,-0.849771082401276,0.462866246700287,0.0550106391310692,-0.884719669818878,0.530888259410858,0.0083277840167284,-0.847401022911072,0.59182596206665,-0.0326696038246155,-0.805403590202332,0.656517028808594,-0.0408061966300011,-0.753206610679626,0.598357200622559,-0.0102153606712818,-0.801164329051971,0.637227773666382,-0.0318261310458183,-0.770018100738525,0.689119875431061,-0.0571615770459175,-0.722389400005341,0.561813831329346,0.0154529474675655,-0.82711935043335,0.518324077129364,0.0327739045023918,-0.854556024074554,0.571035325527191,0.00979253649711609,-0.82086706161499,0.605961620807648,-0.00206038355827332,-0.795491218566895,0.531133472919464,0.00887474045157433,-0.847241699695587,0.460671097040176,0.0511410646140575,-0.8860964179039,0.413172006607056,0.0799588114023209,-0.907135844230652,0.487922996282578,0.0332580097019672,-0.872252881526947,0.448854595422745,0.0763997659087181,-0.890332937240601,0.36973363161087,0.0981650650501251,-0.923937618732452,0.435604363679886,0.0772755146026611,-0.896815180778503,0.512780070304871,0.0601142644882202,-0.856412947177887,0.440426677465439,0.0592732205986977,-0.895829796791077,0.357734650373459,0.101457215845585,-0.928295493125916,0.281158119440079,0.143022567033768,-0.948944091796875,0.364256471395493,0.0963733047246933,-0.926298856735229,0.264328002929688,0.136364564299583,-0.95474374294281,0.195163369178772,0.182784602046013,-0.963587641716003,0.135061502456665,0.223910868167877,-0.96520584821701,0.195677876472473,0.182365506887436,-0.963562667369843,0.145589396357536,0.211638659238815,-0.966443359851837,0.107421316206455,0.231884524226189,-0.966793835163116, +0.0679404512047768,0.253635913133621,-0.964910864830017,0.0892905220389366,0.247559413313866,-0.964749574661255,0.135492041707039,0.182061612606049,-0.973907351493835,0.0701190382242203,0.204287856817245,-0.976396322250366,0.158363595604897,0.173866912722588,-0.971952378749847,0.225740030407906,0.154870375990868,-0.96179860830307,0.11095130443573,0.197329252958298,-0.974038481712341,0.0499982759356499,0.229949623346329,-0.971917390823364,0.00186927022878081,0.257235556840897,-0.966346919536591,0.0584362633526325,0.22537237405777,-0.972518742084503,0.311665445566177,0.132954493165016,-0.940844178199768,0.245102405548096,0.135795786976814,-0.95993983745575,0.306891798973083,0.12994921207428,-0.942831158638,0.371645152568817,0.12976935505867,-0.919260442256927,0.0375039838254452,0.283005058765411,-0.958384871482849,0.00159184657968581,0.260104238986969,-0.965579211711884,-0.0614042915403843,0.256235301494598,-0.964662134647369,-0.0281551852822304,0.281488984823227,-0.959151387214661,0.170377880334854,0.175091400742531,-0.969698071479797,0.100522190332413,0.167213812470436,-0.980782806873322,0.164296582341194,0.172624677419662,-0.971188604831696,0.230756163597107,0.182178810238838,-0.955804646015167,0.158935099840164,0.177610263228416,-0.971181869506836,0.0682547092437744,0.198305726051331,-0.977760851383209,-0.00598004646599293,0.219323843717575,-0.975633800029755,0.0822937786579132,0.194962427020073,-0.977352261543274,0.157338127493858,0.202106356620789,-0.966642498970032,0.0974594801664352,0.1901835501194,-0.976899206638336,0.0308006536215544,0.177331298589706,-0.98366916179657,0.0937513187527657,0.188265964388847,-0.9776331782341,-0.012636817060411,0.227873384952545,-0.973608791828156,-0.0723160356283188,0.251992493867874,-0.965023458003998,-0.134364888072014,0.281004816293716,-0.950253963470459,-0.0796175226569176,0.255954891443253,-0.963404476642609,-0.108060441911221,0.268413782119751,-0.95722359418869,-0.115191675722599,0.278623521327972,-0.953467309474945,-0.166230261325836,0.315145492553711,-0.934371888637543, +-0.16149240732193,0.305889934301376,-0.938270568847656,-0.313517272472382,0.299444913864136,-0.901132464408875,-0.380319565534592,0.321281462907791,-0.867257297039032,-0.375362247228622,0.318408846855164,-0.870470583438873,-0.309561252593994,0.297968536615372,-0.902987599372864,0.00811297539621592,0.216132298111916,-0.976330399513245,-0.0806973427534103,0.223432138562202,-0.971373319625854,-0.150930181145668,0.232934057712555,-0.960709035396576,-0.0642794594168663,0.22247451543808,-0.972817182540894,0.0173981599509716,0.21941776573658,-0.975475966930389,-0.0453281179070473,0.213825240731239,-0.975819706916809,-0.109040968120098,0.204999253153801,-0.972669303417206,-0.0451730079948902,0.211160376667976,-0.976407051086426,-0.288662552833557,0.257587134838104,-0.922129571437836,-0.35407480597496,0.268983751535416,-0.89570027589798,-0.292966991662979,0.258429557085037,-0.920534908771515,-0.226218044757843,0.250292390584946,-0.941370844841003,-0.482552170753479,0.250299543142319,-0.839341104030609,-0.547434151172638,0.269155383110046,-0.792383253574371,-0.541481256484985,0.258893638849258,-0.799857556819916,-0.475855827331543,0.240529328584671,-0.845994591712952,-0.135578200221062,0.236006081104279,-0.962247312068939,-0.219689011573792,0.22503773868084,-0.949260175228119,-0.28691092133522,0.217702075839043,-0.932892262935638,-0.202459737658501,0.227018058300018,-0.952613770961761,-0.122061401605606,0.237039223313332,-0.963801562786102,-0.179409340023994,0.22346793115139,-0.958057582378387,-0.23126919567585,0.208091840147972,-0.950374841690063,-0.171978980302811,0.224768117070198,-0.959115445613861,-0.438980758190155,0.200104087591171,-0.875930547714233,-0.508191764354706,0.187748685479164,-0.840530514717102,-0.434541702270508,0.200042188167572,-0.87815535068512,-0.365932673215866,0.21472342312336,-0.905531525611877,-0.619713544845581,0.210624471306801,-0.756037354469299,-0.684976756572723,0.17532517015934,-0.707154810428619,-0.67422616481781,0.205840989947319,-0.709259152412415,-0.607834935188293,0.240991994738579,-0.756610572338104, +-0.572234809398651,0.180284008383751,-0.800028085708618,-0.636371910572052,0.171338826417923,-0.752113044261932,-0.570611774921417,0.180177062749863,-0.801210641860962,-0.501749694347382,0.19241526722908,-0.843340754508972,-0.517690658569336,0.140423774719238,-0.843965351581573,-0.446535497903824,0.194379359483719,-0.87339723110199,-0.395658224821091,0.225511431694031,-0.890280365943909,-0.465233683586121,0.175957202911377,-0.867523312568665,-0.270403385162354,0.229967936873436,-0.934878051280975,-0.353380680084229,0.206359878182411,-0.912435054779053,-0.417935520410538,0.188926324248314,-0.888615071773529,-0.331715852022171,0.213780239224434,-0.918837666511536,-0.360278695821762,0.19970940053463,-0.91121643781662,-0.338241994380951,0.202162519097328,-0.919088006019592,-0.295823067426682,0.227982223033905,-0.927638411521912,-0.317226856946945,0.227850720286369,-0.920571088790894,0.354400187730789,0.646064281463623,-0.676018834114075,0.373771488666534,0.638546228408813,-0.672721087932587,0.392840772867203,0.631934225559235,-0.668083310127258,0.373797357082367,0.638937592506409,-0.672334909439087,0.116647198796272,-0.735403120517731,0.667514562606812,0.160475119948387,-0.72725635766983,0.667342483997345,0.197703421115875,-0.730649471282959,0.653501868247986,0.154094859957695,-0.740052938461304,0.654657483100891,0.0883539244532585,-0.751162946224213,0.654177188873291,0.0822127684950829,-0.729550004005432,0.678968250751495,0.0667404681444168,-0.72596287727356,0.684487819671631,0.0729466155171394,-0.747794330120087,0.659910976886749,-0.255022585391998,-0.687403619289398,0.680029273033142,-0.261433243751526,-0.685414791107178,0.679602265357971,-0.253018349409103,-0.682904899120331,0.685290157794952,-0.24652586877346,-0.684462070465088,0.686102509498596,-0.418595850467682,-0.616344809532166,0.667005717754364,-0.421506106853485,-0.615072011947632,0.666347503662109,-0.41806024312973,-0.614954173564911,0.668623268604279,-0.415167212486267,-0.616209983825684,0.669269323348999,-0.572230577468872,-0.537201404571533,0.619650602340698, +-0.576641082763672,-0.535096228122711,0.617379307746887,-0.568149507045746,-0.528311729431152,0.630946040153503,-0.564547955989838,-0.530032098293304,0.632733404636383,-0.723748803138733,-0.425586521625519,0.543197751045227,-0.723748683929443,-0.425670474767685,0.543132126331329,-0.717688143253326,-0.415608197450638,0.558742880821228,-0.717918157577515,-0.414843827486038,0.559015274047852,-0.841095805168152,-0.285245597362518,0.459557265043259,-0.83949488401413,-0.288614392280579,0.460380375385284,-0.83620285987854,-0.276815861463547,0.473432093858719,-0.837947130203247,-0.273343741893768,0.472364038228989,-0.927170991897583,-0.149285152554512,0.343610376119614,-0.928736925125122,-0.145580902695656,0.340960323810577,-0.921336889266968,-0.135838836431503,0.364261269569397,-0.919686436653137,-0.139287933707237,0.367118090391159,-0.954966306686401,-0.0896707773208618,0.28284016251564,-0.952139556407928,-0.0703264400362968,0.297463476657867,-0.953792870044708,-0.0630702525377274,0.293770849704742,-0.956848561763763,-0.0829490199685097,0.278496623039246,-0.98602169752121,0.0743086561560631,0.149129077792168,-0.984518587589264,0.0776392295956612,0.157147228717804,-0.984628260135651,0.0789807513356209,0.155786216259003,-0.986118733882904,0.0756131708621979,0.14782652258873,-0.974579691886902,0.223348945379257,0.0176039487123489,-0.973737299442291,0.226092383265495,0.0267937649041414,-0.973250865936279,0.228444218635559,0.0244127064943314,-0.974081635475159,0.225676983594894,0.0153260324150324,-0.92468273639679,0.360771328210831,-0.121679328382015,-0.925229728221893,0.362370878458023,-0.11241589486599,-0.923523843288422,0.365679174661636,-0.115683384239674,-0.923053503036499,0.363868534564972,-0.124788373708725,-0.835099518299103,0.482889205217361,-0.263489574193954,-0.836850881576538,0.484209537506104,-0.255385965108871,-0.834141433238983,0.487106949090958,-0.258717775344849,-0.832374036312103,0.485753923654556,-0.266826927661896,-0.705486059188843,0.589031338691711,-0.394121319055557,-0.706413209438324,0.590219378471375,-0.390668034553528, +-0.705082714557648,0.591052711009979,-0.391810238361359,-0.70413726568222,0.58994996547699,-0.395157843828201,-0.516616642475128,0.687187373638153,-0.510764896869659,-0.518687427043915,0.686430633068085,-0.509682595729828,-0.516579449176788,0.687277555465698,-0.510681211948395,-0.514634788036346,0.687762022018433,-0.511990666389465,-0.306429803371429,0.727056086063385,-0.61440247297287,-0.316066920757294,0.73181414604187,-0.603779673576355,-0.305218547582626,0.732468962669373,-0.608548283576965,-0.295459777116776,0.728026628494263,-0.618611931800842,-0.0893193408846855,0.739964187145233,-0.666689693927765,-0.0930507183074951,0.739198207855225,-0.667028903961182,-0.0894196555018425,0.739479660987854,-0.667213559150696,-0.0858388617634773,0.739774167537689,-0.667357385158539,0.119920112192631,0.713160872459412,-0.690666854381561,0.10880845785141,0.721486032009125,-0.683826446533203,0.120756790041924,0.7188600897789,-0.684586048126221,0.131857708096504,0.710464417934418,-0.691269755363464,0.439691662788391,0.599622547626495,-0.66867333650589,0.537837266921997,0.543313384056091,-0.644625306129456,0.629938662052155,0.489475965499878,-0.602984726428986,0.539539456367493,0.549990475177765,-0.637501060962677,0.459479540586472,-0.546412825584412,-0.700222551822662,0.458156108856201,-0.547856569290161,-0.699961543083191,0.457291454076767,-0.548665821552277,-0.699893116950989,0.459381520748138,-0.546358048915863,-0.700329542160034,0.0345868580043316,0.60237067937851,0.797466814517975,0.0510674715042114,0.593986809253693,0.80285233259201,0.0882834941148758,0.57251763343811,0.815125644207001,0.0424375608563423,0.599898874759674,0.798949599266052,-0.00521163083612919,0.622775673866272,0.78238308429718,0.012129888869822,0.603098392486572,0.797574579715729,0.0226299986243248,0.598762094974518,0.800607204437256,0.00444490369409323,0.61906236410141,0.785329222679138,0.0216599497944117,0.473015874624252,0.88078761100769,0.0810523107647896,0.488509982824326,0.868785560131073,0.130577638745308,0.506976783275604,0.852011740207672,0.088304378092289,0.482452064752579,0.87145984172821, +-0.128689840435982,-0.510419249534607,-0.850241899490356,-0.132044270634651,-0.512821793556213,-0.848279654979706,-0.131881356239319,-0.494373768568039,-0.859186828136444,-0.1269700974226,-0.494930595159531,-0.85960590839386,-0.0825806707143784,0.481770873069763,0.872397422790527,-0.0268887784332037,0.442815512418747,0.896209478378296,0.0258494894951582,0.409973353147507,0.911731243133545,0.107612878084183,0.264745205640793,0.958295106887817,0.160134315490723,0.261127412319183,0.951929330825806,0.0449629910290241,0.306451827287674,0.950823605060577,0.0360204577445984,0.276997059583664,0.960195362567902,0.0997816994786263,0.375389218330383,0.921480655670166,0.0231292173266411,0.422246754169464,0.906185925006866,0.0387950912117958,0.392959892749786,0.91873687505722,0.086133636534214,0.352188885211945,0.931957066059113,0.0809434875845909,0.414784014225006,0.906312584877014,0.119062706828117,0.409251034259796,0.904620170593262,0.117283925414085,0.396787583827972,0.910386860370636,0.0488496087491512,0.423886120319366,0.904397308826447,0.12085647881031,0.423084110021591,0.897994220256805,0.120696783065796,0.434931665658951,0.892337799072266,0.119300149381161,0.424608945846558,0.897482395172119,0.105256959795952,0.419017493724823,0.901856601238251,0.123124226927757,0.37295013666153,0.91964590549469,-0.00259352591820061,0.363178044557571,0.93171614408493,0.00410208944231272,0.386799424886703,0.922154664993286,0.114187560975552,0.390277802944183,0.913588762283325,0.136925399303436,0.436304599046707,0.889319837093353,0.148707434535027,0.441658675670624,0.884773313999176,0.131559461355209,0.453059881925583,0.881719291210175,0.127048954367638,0.446899801492691,0.885516405105591,0.156835377216339,0.455720871686935,0.876196980476379,0.161422237753868,0.461687296628952,0.872231483459473,0.137942746281624,0.467993080615997,0.872899949550629,0.135079383850098,0.463332414627075,0.875829219818115,0.140468671917915,0.449833631515503,0.881996870040894,-0.00262130377814174,0.433698862791061,0.901054084300995,-0.0015452578663826,0.438471108675003,0.89874404668808, +0.135442271828651,0.442107170820236,0.886677443981171,0.16093897819519,0.478658825159073,0.863124787807465,0.137228146195412,0.477453291416168,0.86787486076355,0.138644471764565,0.476272284984589,0.868298649787903,0.161737814545631,0.475397169589996,0.864776492118835,0.136268511414528,0.479653298854828,0.866812348365784,-0.00305842189118266,0.407943546772003,0.913002014160156,-0.00613712053745985,0.433752775192261,0.901011049747467,0.135146573185921,0.488503932952881,0.862032055854797,0.152936980128288,0.491413772106171,0.857393026351929,0.129611536860466,0.483010739088058,0.865968525409698,0.131453275680542,0.483206212520599,0.865581870079041,0.154395371675491,0.488917857408524,0.858557760715485,0.0635901093482971,0.567226886749268,0.821102917194366,-0.0876272991299629,0.52079963684082,0.849169731140137,-0.0584636926651001,0.494589030742645,0.86715829372406,0.105300158262253,0.526908397674561,0.843373835086823,0.149040579795837,0.501332223415375,0.852322101593018,0.126058340072632,0.482608079910278,0.866717219352722,0.126639470458031,0.484599858522415,0.865520417690277,0.149161487817764,0.498793959617615,0.85378885269165,0.0690242648124695,0.528942465782166,0.845845937728882,-0.00777198281139135,0.419271856546402,0.907827436923981,-0.0215183347463608,0.439838409423828,0.8978191614151,0.0702735632658005,0.541624486446381,0.837678074836731,0.142909377813339,0.502010941505432,0.852972388267517,0.126290544867516,0.478143393993378,0.869154512882233,0.125524550676346,0.480746507644653,0.867828547954559,0.145338609814644,0.5036740899086,0.851580381393433,-0.0169953387230635,0.552212417125702,0.833530187606812,-0.111690521240234,0.467279314994812,0.877026379108429,-0.0770156681537628,0.45858371257782,0.885307550430298,0.0332323797047138,0.541017591953278,0.840354561805725,0.140283495187759,0.497904062271118,0.855810821056366,0.131075114011765,0.471179753541946,0.872243642807007,0.12909984588623,0.474316298961639,0.870837152004242,0.141127601265907,0.499574035406113,0.854698061943054,0.018826512619853,0.507312715053558,0.861556351184845, +-0.030615197494626,0.410775482654572,0.911222398281097,-0.0392474792897701,0.425074905157089,0.904306888580322,0.0226512458175421,0.51912134885788,0.854400336742401,0.144045263528824,0.495761662721634,0.856429398059845,0.141399875283241,0.465974420309067,0.873426556587219,0.137907654047012,0.467609643936157,0.873110949993134,0.143398076295853,0.496027588844299,0.85638415813446,-0.0374272167682648,0.491537541151047,0.870051741600037,-0.0386921986937523,0.396731615066528,0.917118906974792,-0.0247523747384548,0.400591105222702,0.915922522544861,-0.0123429978266358,0.502141296863556,0.864697515964508,-0.645716071128845,-0.301545768976212,-0.701513290405273,-0.628843426704407,-0.317752182483673,-0.709640324115753,-0.603142321109772,-0.327369540929794,-0.72735720872879,-0.619446098804474,-0.30734783411026,-0.72237366437912,0.151920363306999,0.468984693288803,0.870042324066162,0.148187145590782,0.46709930896759,0.871698796749115,0.152164861559868,0.494502425193787,0.855753004550934,0.152594715356827,0.494370222091675,0.855752825737,-0.195281222462654,-0.52120840549469,-0.830787062644958,-0.210320740938187,-0.520266175270081,-0.827700614929199,-0.125918060541153,-0.500023782253265,-0.856808483600616,-0.143154308199883,-0.516229510307312,-0.84440153837204,-0.127523750066757,-0.549641311168671,-0.825610160827637,-0.143579617142677,-0.467792868614197,-0.872097909450531,0.0257109571248293,-0.491176128387451,-0.870680809020996,-0.0131471985951066,-0.605230331420898,-0.795941829681396,0.186236917972565,-0.673074305057526,-0.71574205160141,0.149940058588982,-0.710449397563934,-0.687589704990387,0.15352974832058,-0.687275648117065,-0.709986567497253,0.160528957843781,-0.662307679653168,-0.73183262348175,0.446482568979263,-0.555889129638672,-0.701170861721039,0.454301059246063,-0.547048211097717,-0.703099429607391,0.45547804236412,-0.546390414237976,-0.702849388122559,0.44894215464592,-0.553719460964203,-0.701317191123962,0.297559916973114,-0.547941029071808,-0.781804859638214,0.300781458616257,-0.556322813034058,-0.774619579315186, +0.319023072719574,-0.520844519138336,-0.791798770427704,0.316054493188858,-0.512330591678619,-0.798515439033508,0.140439763665199,-0.534879446029663,-0.83317506313324,0.135964632034302,-0.509313225746155,-0.84977263212204,0.121595576405525,-0.495894074440002,-0.859827637672424,0.123831547796726,-0.524474799633026,-0.84237277507782,-0.0811689645051956,-0.431371182203293,-0.898515701293945,-0.0810867622494698,-0.418655663728714,-0.904517710208893,-0.087091326713562,-0.414020210504532,-0.906091809272766,-0.0874214917421341,-0.427825570106506,-0.899623692035675,-0.222983330488205,-0.386455178260803,-0.894947409629822,-0.216823562979698,-0.389871209859848,-0.894979298114777,-0.215530171990395,-0.372162938117981,-0.902796506881714,-0.221733212471008,-0.368601679801941,-0.902755439281464,-0.3945292532444,-0.358117073774338,-0.846226334571838,-0.388219863176346,-0.362577468156815,-0.847244322299957,-0.382836133241653,-0.329333573579788,-0.863119959831238,-0.389113187789917,-0.324997186660767,-0.861955761909485,-0.503682255744934,-0.362429171800613,-0.784186959266663,-0.496894896030426,-0.367755919694901,-0.786035001277924,-0.495942384004593,-0.33866223692894,-0.799593031406403,-0.502559125423431,-0.333227843046188,-0.797742784023285,-0.503739893436432,-0.405265927314758,-0.762892961502075,-0.504281222820282,-0.405716627836227,-0.762295544147491,-0.499936938285828,-0.38924241065979,-0.773662388324738,-0.499247252941132,-0.388435751199722,-0.774512648582458,-0.405832231044769,-0.87639582157135,-0.25928857922554,-0.285785615444183,-0.881496548652649,-0.375886172056198,-0.364140421152115,-0.859620749950409,-0.358404755592346,-0.466705441474915,-0.85488623380661,-0.226617678999901,-0.384618371725082,-0.489297926425934,-0.782723605632782,-0.37598329782486,-0.492193520069122,-0.785100042819977,-0.383657962083817,-0.479946374893188,-0.788960158824921,-0.392176955938339,-0.476791530847549,-0.786681056022644,-0.285903662443161,-0.517682552337646,-0.806389391422272,-0.268505722284317,-0.519978880882263,-0.810880184173584,-0.285853981971741,-0.518705725669861,-0.805749297142029, +-0.303064525127411,-0.515329122543335,-0.801615715026855,-0.281612038612366,-0.506377875804901,-0.815031349658966,-0.289720743894577,-0.505050599575043,-0.813010334968567,-0.281263887882233,-0.511904358863831,-0.811692416667938,-0.272963136434555,-0.513575673103333,-0.8134685754776,-0.254375666379929,-0.50436407327652,-0.825172603130341,-0.249102339148521,-0.504340767860413,-0.82679408788681,-0.254282265901566,-0.504985213279724,-0.824821531772614,-0.259703069925308,-0.504849910736084,-0.823213756084442,-0.25935024023056,-0.494731873273849,-0.829444289207458,-0.292456299066544,-0.496063023805618,-0.817551851272583,-0.257528275251389,-0.502131938934326,-0.825555980205536,-0.223993122577667,-0.501017272472382,-0.835947811603546,0.108941033482552,-0.633662462234497,-0.765900671482086,0.120208986103535,-0.788255453109741,-0.603492617607117,0.180724248290062,-0.656511902809143,-0.73234611749649,0.212184339761734,-0.483535498380661,-0.849218010902405,-0.323358565568924,-0.471211314201355,-0.820609092712402,-0.322793573141098,-0.485617607831955,-0.812391459941864,-0.319112956523895,-0.485521733760834,-0.813901543617249,-0.319998055696487,-0.47006630897522,-0.822580635547638,-0.290600180625916,-0.43514820933342,-0.852172374725342,-0.288041114807129,-0.451632529497147,-0.844429016113281,-0.285076677799225,-0.450297981500626,-0.846145987510681,-0.287618607282639,-0.433851152658463,-0.853843629360199,-0.384799182415009,-0.435952544212341,-0.813557028770447,-0.379663556814194,-0.451599299907684,-0.807411730289459,-0.378822475671768,-0.450944721698761,-0.808172345161438,-0.383889019489288,-0.435522824525833,-0.81421685218811,-0.514477014541626,-0.404426127672195,-0.756143450737,-0.518162369728088,-0.406552135944366,-0.752478003501892,-0.511207461357117,-0.431378602981567,-0.743356883525848,-0.507275462150574,-0.429756164550781,-0.746981561183929,-0.537951052188873,-0.37843245267868,-0.753258049488068,-0.521932363510132,-0.407645225524902,-0.74927431344986,-0.524136900901794,-0.407250165939331,-0.747949123382568,-0.540698289871216,-0.376923829317093,-0.752046406269073, +-0.606708645820618,-0.364040523767471,-0.706667721271515,-0.590119004249573,-0.370966017246246,-0.717038214206696,-0.602203845977783,-0.372991353273392,-0.705852687358856,-0.618229627609253,-0.366461485624313,-0.695340275764465,-0.248725071549416,-0.444568067789078,-0.860520243644714,-0.313403815031052,-0.468166559934616,-0.826195001602173,-0.22124183177948,-0.433343708515167,-0.873650550842285,-0.647136270999908,-0.294983386993408,-0.702993214130402,-0.688183426856995,-0.245959922671318,-0.682573974132538,-0.73421835899353,-0.212974026799202,-0.644643664360046,-0.698377013206482,-0.259161561727524,-0.667161762714386,-0.50641256570816,0.677859246730804,-0.532966375350952,-0.51983767747879,0.687674224376678,-0.506826519966125,-0.529913485050201,0.6826211810112,-0.503209888935089,-0.51645302772522,0.672695815563202,-0.529864847660065,-0.222108155488968,-0.529963612556458,-0.818417012691498,-0.0945677012205124,-0.547251284122467,-0.831608653068542,-0.152285546064377,-0.50536322593689,-0.849362850189209,-0.27228319644928,-0.488127589225769,-0.829212605953217,-0.30595988035202,-0.413792014122009,-0.857417464256287,-0.268390536308289,-0.402636080980301,-0.875128984451294,-0.244601041078568,-0.398811995983124,-0.883809685707092,-0.279250204563141,-0.406750380992889,-0.869812309741974,-0.23900505900383,-0.445264786481857,-0.862911283969879,-0.210385128855705,-0.447823792695999,-0.869017899036407,-0.198554396629333,-0.454790681600571,-0.868182957172394,-0.21811930835247,-0.44970965385437,-0.866132438182831,-0.151889368891716,-0.468985378742218,-0.870047330856323,-0.158088102936745,-0.494206458330154,-0.854849815368652,-0.163579896092415,-0.496766716241837,-0.852328836917877,-0.161980032920837,-0.464341849088669,-0.870717585086823,-0.203836858272552,-0.465598821640015,-0.861201643943787,-0.188353538513184,-0.476661384105682,-0.858671545982361,-0.183787286281586,-0.488825529813766,-0.852802336215973,-0.196242958307266,-0.476518958806992,-0.856982111930847,0.0589037127792835,0.541095554828644,0.838895559310913,0.0476731173694134,0.590644776821136,0.805522203445435, +0.0422950424253941,0.552397549152374,0.832507073879242,0.0662085935473442,0.495352238416672,0.866165459156036,-0.183525919914246,-0.539113283157349,-0.821994602680206,-0.184805244207382,-0.535475552082062,-0.824083089828491,-0.150302812457085,-0.536299407482147,-0.830537259578705,-0.162151366472244,-0.544473588466644,-0.822955310344696,-0.19330570101738,-0.500552952289581,-0.8438481092453,-0.18348141014576,-0.506433606147766,-0.842531740665436,-0.182369992136955,-0.511275112628937,-0.839844584465027,-0.187239468097687,-0.505968570709229,-0.841984152793884,-0.136494919657707,-0.650474786758423,-0.747162461280823,-0.0995649173855782,-0.672214567661285,-0.733630955219269,-0.0730305016040802,-0.641878247261047,-0.763320922851563,-0.136639714241028,-0.627332031726837,-0.766670823097229,-0.186872437596321,-0.55411559343338,-0.811193406581879,-0.183367222547531,-0.552042365074158,-0.813403785228729,-0.173871397972107,-0.556179225444794,-0.812670648097992,-0.186314910650253,-0.558415591716766,-0.808367967605591,-0.182431027293205,-0.516064524650574,-0.83689683675766,-0.1830193400383,-0.518591582775116,-0.835204541683197,-0.184529453516006,-0.520548105239868,-0.833653748035431,-0.178748428821564,-0.520506143569946,-0.834938645362854,-0.186514839529991,-0.568340063095093,-0.801374912261963,-0.177104294300079,-0.521825551986694,-0.834465205669403,-0.210742101073265,-0.562245726585388,-0.799667179584503,-0.252619534730911,-0.601918518543243,-0.75754702091217,-0.196798250079155,-0.560004711151123,-0.804776549339294,-0.192406639456749,-0.560823082923889,-0.805268406867981,-0.193713307380676,-0.561592996120453,-0.80441814661026,-0.196712896227837,-0.561424911022186,-0.803807258605957,-0.181373342871666,-0.524441659450531,-0.831904232501984,-0.187777236104012,-0.519732058048248,-0.833437621593475,-0.190855517983437,-0.516781568527222,-0.834572315216064,-0.183853581547737,-0.522039711475372,-0.832870125770569,-0.214422225952148,-0.622877538204193,-0.752360761165619,-0.206252679228783,-0.649880349636078,-0.731515824794769,-0.257708787918091,-0.60951566696167,-0.749717950820923, +-0.228005647659302,-0.58709043264389,-0.776748657226563,-0.206196933984756,-0.555859446525574,-0.805296957492828,-0.20111683011055,-0.559255301952362,-0.80422979593277,-0.200630396604538,-0.558243870735168,-0.80505359172821,-0.208358913660049,-0.553900003433228,-0.806090176105499,-0.19017693400383,-0.510165154933929,-0.838787376880646,-0.183907598257065,-0.520246803760529,-0.833979249000549,-0.186472624540329,-0.521176993846893,-0.832828044891357,-0.191643074154854,-0.513124704360962,-0.836645662784576,-0.226033598184586,-0.583197057247162,-0.780249834060669,-0.226185113191605,-0.616289675235748,-0.754338979721069,-0.211812391877174,-0.590748131275177,-0.77855771780014,-0.199943691492081,-0.562531471252441,-0.802234947681427,-0.216363310813904,-0.542666852474213,-0.811603248119354,-0.210842400789261,-0.548852741718292,-0.808892071247101,-0.214274078607559,-0.54357773065567,-0.811547935009003,-0.222010120749474,-0.535566508769989,-0.814788341522217,-0.176828473806381,-0.516283750534058,-0.837963581085205,-0.18239988386631,-0.52049845457077,-0.834153234958649,-0.185057088732719,-0.505918741226196,-0.842496335506439,-0.178910359740257,-0.501069188117981,-0.846711754798889,-0.215933412313461,-0.529205083847046,-0.820557534694672,-0.217652127146721,-0.547965407371521,-0.80768895149231,-0.201909527182579,-0.538700699806213,-0.817945122718811,-0.21298860013485,-0.511835932731628,-0.832261860370636,-0.216913789510727,-0.527931690216064,-0.821119129657745,-0.216207981109619,-0.533393144607544,-0.817768812179565,-0.223465904593468,-0.521061301231384,-0.8237464427948,-0.227987408638,-0.510353922843933,-0.829192876815796,-0.166188523173332,-0.511085093021393,-0.843311011791229,-0.168069571256638,-0.495775818824768,-0.852032244205475,-0.161252707242966,-0.494774401187897,-0.85392963886261,-0.160150960087776,-0.511573612689972,-0.84418249130249,-0.200815409421921,-0.491614788770676,-0.84734183549881,-0.201426088809967,-0.502201795578003,-0.840964257717133,-0.218063578009605,-0.470564097166061,-0.854995787143707,-0.232102900743484,-0.441117197275162,-0.866916298866272, +-0.209598585963249,-0.513712167739868,-0.831966578960419,-0.211404070258141,-0.519830465316772,-0.827698409557343,-0.222008869051933,-0.495968848466873,-0.83948028087616,-0.219366788864136,-0.487546294927597,-0.845089972019196,-0.14570115506649,-0.513669431209564,-0.845526397228241,-0.144088491797447,-0.494301825761795,-0.857265651226044,-0.134770601987839,-0.494613021612167,-0.858600497245789,-0.138312444090843,-0.513289391994476,-0.846996903419495,-0.155936539173126,-0.459369659423828,-0.874450266361237,-0.138041228055954,-0.448082983493805,-0.88327020406723,-0.195675209164619,-0.393593102693558,-0.898218095302582,-0.212420359253883,-0.394019842147827,-0.89421808719635,-0.193796500563622,-0.502136766910553,-0.842794001102448,-0.199024125933647,-0.505555510520935,-0.839525461196899,-0.20522329211235,-0.477067947387695,-0.854569911956787,-0.19850492477417,-0.470688700675964,-0.859679102897644,-0.00234452658332884,0.616898894309998,0.787038922309875,-0.0173321012407541,0.633232653141022,0.773767411708832,-0.0236872769892216,0.634877502918243,0.772249639034271,-0.00978440791368484,0.621159553527832,0.783623039722443,-0.121878832578659,-0.45179745554924,-0.88375598192215,-0.113044820725918,-0.444938898086548,-0.888397574424744,-0.153824508190155,-0.365944594144821,-0.917835831642151,-0.158188074827194,-0.361931174993515,-0.918685138225555,-0.170563548803329,-0.49722483754158,-0.850691258907318,-0.176852822303772,-0.499023526906967,-0.848350644111633,-0.178457975387573,-0.46401035785675,-0.867667675018311,-0.16866634786129,-0.464837253093719,-0.869182348251343,-0.10088425129652,-0.458833932876587,-0.882776200771332,-0.109951883554459,-0.453181684017181,-0.884611189365387,-0.11979766190052,-0.352188974618912,-0.928230285644531,-0.0995197221636772,-0.376064956188202,-0.921233415603638,0.0108976308256388,0.209192186594009,0.977813839912415,0.00185690203215927,0.226485848426819,0.974012732505798,0.0538112372159958,0.206841424107552,0.976893544197083,0.00300737004727125,0.226849779486656,0.973925232887268,0.694998443126678,-0.71768319606781,0.0436784066259861, +0.691625595092773,-0.722252905368805,-0.00220048474147916,0.680866599082947,-0.73167222738266,0.0328071266412735,0.683053493499756,-0.726382374763489,0.0762006491422653,0.752584755420685,-0.657199203968048,-0.0412969999015331,0.734791338443756,-0.676866590976715,-0.0439698807895184,0.737905442714691,-0.673075675964355,-0.0496472083032131,0.754944860935211,-0.654067277908325,-0.0474792830646038,0.651682674884796,-0.670866012573242,-0.353904664516449,0.659105896949768,-0.665422141551971,-0.350418120622635,0.745794177055359,-0.604405224323273,-0.280152410268784,0.739348351955414,-0.611854314804077,-0.281066328287125,0.356744766235352,-0.800329685211182,-0.481877118349075,0.337920695543289,-0.800395786762238,-0.495152682065964,0.483333498239517,-0.791574537754059,-0.373896300792694,0.488873451948166,-0.789354860782623,-0.371378391981125,-0.210353791713715,-0.768362700939178,-0.604458570480347,-0.22558581829071,-0.756165325641632,-0.614267885684967,-0.0205457117408514,-0.890344321727753,-0.454823940992355,0.0074712042696774,-0.898538053035736,-0.438832312822342,-0.57737934589386,-0.78707879781723,-0.217117816209793,-0.510705590248108,-0.781144917011261,-0.359155476093292,-0.540934503078461,-0.785718619823456,-0.300060331821442,-0.594646871089935,-0.79147869348526,-0.141267716884613,-0.936072647571564,-0.291135936975479,-0.19750402867794,-0.927657067775726,-0.292861074209213,-0.231699496507645,-0.868891000747681,-0.423601448535919,-0.256105959415436,-0.880033850669861,-0.419645071029663,-0.222347155213356,-0.97141695022583,-0.211814686655998,-0.107161089777946,-0.928163945674896,-0.293087601661682,-0.229371756315231,-0.947629928588867,-0.297640442848206,-0.115791954100132,-0.972898542881012,-0.231135919690132,0.00667777378112078,-0.973048746585846,-0.191599026322365,0.128319710493088,-0.972576022148132,-0.207840338349342,0.104395791888237,-0.969735622406006,-0.211572572588921,0.121860332787037,-0.969581544399261,-0.197227939963341,0.144957810640335,-0.976040720939636,-0.177204564213753,0.126265943050385,-0.971076726913452,-0.190470188856125,0.143983006477356, +-0.975406885147095,-0.182241797447205,0.123972646892071,-0.979961752891541,-0.168373972177505,0.106419779360294,-0.972963690757751,-0.164501085877419,0.162114903330803,-0.971074402332306,-0.177602604031563,0.159599602222443,-0.971863627433777,-0.175239443778992,0.157392546534538,-0.973630428314209,-0.16309979557991,0.159506186842918,-0.984238088130951,-0.123641557991505,0.126445084810257,-0.980969905853271,-0.146763861179352,0.127115845680237,-0.982414901256561,-0.143619582056999,0.119308233261108,-0.985879838466644,-0.117233984172344,0.119571477174759,-0.996058464050293,-0.0880435779690742,0.0107645690441132,-0.996111214160919,-0.0516103953123093,-0.0714060813188553,-0.998233437538147,-0.0547452829778194,0.0230842642486095,-0.99127984046936,-0.0724572092294693,0.110064655542374,0.29129347205162,-0.929561674594879,-0.225971892476082,0.366525053977966,-0.928897440433502,0.0529991015791893,0.323404997587204,-0.9148188829422,-0.241899698972702,0.188365072011948,-0.877486765384674,-0.441061913967133,-0.092273935675621,-0.970545589923859,-0.222546637058258,0.0375522449612617,-0.943386971950531,-0.329561680555344,0.0371947661042213,-0.942833602428436,-0.331182062625885,-0.0880405530333519,-0.969379365444183,-0.229243651032448,-0.828514218330383,-0.556960821151733,0.0579556785523891,-0.63527649641037,-0.765840947628021,0.0995561182498932,-0.403349727392197,-0.900734007358551,0.161206305027008,-0.71844756603241,-0.658288419246674,0.22469873726368,0.707019031047821,-0.706450819969177,-0.0324242003262043,0.740232586860657,-0.65703672170639,-0.142683058977127,0.731113016605377,-0.624931156635284,-0.273742258548737,0.717536926269531,-0.677687108516693,-0.160875886678696,0.368726640939713,-0.566060841083527,-0.737303018569946,0.560902953147888,-0.369981169700623,-0.740609169006348,0.571441233158112,-0.377434939146042,-0.728695929050446,0.356372058391571,-0.578616738319397,-0.733622252941132,0.653406798839569,0.0822775363922119,-0.75252240896225,0.587796151638031,-0.0713702440261841,-0.805854797363281,0.566287696361542,-0.178613513708115,-0.804621338844299, +0.605072259902954,-0.105656683444977,-0.789128839969635,0.254575222730637,-0.723069131374359,-0.642154574394226,0.446766167879105,-0.635578453540802,-0.629634857177734,0.466008514165878,-0.683334171772003,-0.562041342258453,0.260091602802277,-0.769673585891724,-0.583056509494781,0.463332831859589,-0.448224306106567,-0.764472186565399,0.539629340171814,-0.443772256374359,-0.715448379516602,0.406581968069077,-0.64753782749176,-0.644504427909851,0.340940117835999,-0.6728196144104,-0.656561970710754,0.559262752532959,-0.368504852056503,-0.74258291721344,0.367804795503616,-0.56520938873291,-0.738415837287903,0.403013318777084,-0.542460918426514,-0.737100005149841,0.548434197902679,-0.363989412784576,-0.752815902233124,-0.975218951702118,0.085546150803566,-0.204033926129341,-0.963374495506287,0.121024444699287,-0.239296153187752,-0.945976495742798,0.220893740653992,-0.237348794937134,-0.961263120174408,0.177465990185738,-0.210900202393532,-0.893084645271301,0.383763194084167,0.234788477420807,-0.940400004386902,0.271254777908325,0.205106630921364,-0.974400997161865,0.176019206643105,0.139857560396194,-0.941315174102783,0.297590345144272,0.159266367554665,0.137543737888336,-0.795977056026459,-0.589493215084076,0.11977756023407,-0.820330917835236,-0.559205293655396,0.159237712621689,-0.799158811569214,-0.579645156860352,0.196716904640198,-0.766337811946869,-0.611579060554504,0.245853841304779,-0.741548538208008,-0.624228954315186,0.256793409585953,-0.734882891178131,-0.627697587013245,0.30668631196022,-0.701214015483856,-0.643616795539856,0.312845170497894,-0.692333817481995,-0.650232136249542,0.144407466053963,-0.699166238307953,-0.700223565101624,0.183645561337471,-0.788236558437347,-0.58733069896698,0.268096268177032,-0.830445885658264,-0.48834827542305,0.234418347477913,-0.758063971996307,-0.608594298362732,0.225354984402657,-0.774867355823517,-0.590589463710785,0.243940070271492,-0.764545857906342,-0.596626341342926,0.274442076683044,-0.748455345630646,-0.603735208511353,0.258397668600082,-0.757169902324677,-0.59993702173233, +0.315919756889343,-0.709747016429901,-0.629645824432373,0.270107984542847,-0.746850490570068,-0.607664406299591,0.272966265678406,-0.751388311386108,-0.600753724575043,0.304787397384644,-0.72627580165863,-0.616139829158783,0.272815316915512,-0.829323410987854,-0.487641841173172,0.284855306148529,-0.776828467845917,-0.561600387096405,0.437381774187088,-0.680427193641663,-0.587976157665253,0.37309941649437,-0.799200236797333,-0.471249431371689,0.418316602706909,-0.647211134433746,-0.637282609939575,0.543953955173492,-0.444120198488235,-0.711949050426483,0.528303503990173,-0.519414007663727,-0.671643137931824,0.415191143751144,-0.675008773803711,-0.609901189804077,0.24834418296814,-0.751054286956787,-0.611753702163696,0.239851981401443,-0.754107236862183,-0.611386358737946,0.296548813581467,-0.726161360740662,-0.620280981063843,0.284519910812378,-0.732522070407867,-0.61843353509903,0.308606863021851,-0.762208223342896,-0.56903487443924,0.32119756937027,-0.756765365600586,-0.569331407546997,0.337493002414703,-0.750374794006348,-0.568362891674042,0.330307424068451,-0.753063797950745,-0.569027364253998,0.119151577353477,-0.832974910736084,-0.540329277515411,0.108523830771446,-0.804261207580566,-0.58428293466568,0.0431605204939842,-0.76417201757431,-0.643566846847534,0.0607581548392773,-0.800882160663605,-0.595731556415558,0.0570752769708633,-0.857257962226868,-0.511714220046997,0.058520033955574,-0.792294919490814,-0.607325255870819,0.0741357952356339,-0.738894283771515,-0.669730603694916,0.0886871293187141,-0.814011752605438,-0.574037909507751,0.0564096122980118,-0.929635643959045,-0.364136755466461,0.0284459162503481,-0.872309565544128,-0.488125622272491,0.0564969256520271,-0.836494624614716,-0.545054912567139,0.090633288025856,-0.894568383693695,-0.437644690275192,0.0759398862719536,-0.83152449131012,-0.550272762775421,0.123330019414425,-0.862193763256073,-0.491336584091187,0.104858234524727,-0.828343451023102,-0.550319731235504,0.0663285180926323,-0.781705677509308,-0.620110332965851,0.160056501626968,-0.841977298259735,-0.515224397182465, +0.13433749973774,-0.805176615715027,-0.577619254589081,0.0723386704921722,-0.759868502616882,-0.646039426326752,0.108836799860001,-0.804782152175903,-0.583506762981415,0.161599352955818,-0.6805140376091,-0.714693188667297,-0.135647878050804,-0.799859821796417,-0.58465713262558,-0.261917442083359,-0.918104231357574,-0.297462463378906,-0.0580209493637085,-0.841678500175476,-0.536852836608887,-0.0427954755723476,-0.889951229095459,-0.454043298959732,-0.0980454832315445,-0.889492213726044,-0.446308106184006,-0.0237059686332941,-0.889969170093536,-0.455404162406921,0.0314422212541103,-0.886155605316162,-0.462319850921631,0.2066370844841,-0.871494710445404,-0.444745033979416,0.12673644721508,-0.882669687271118,-0.452583819627762,0.0845920145511627,-0.896927297115326,-0.43401101231575,0.179457128047943,-0.891142010688782,-0.416726619005203,0.278703272342682,-0.775431156158447,-0.566596031188965,0.228964477777481,-0.804407715797424,-0.548182010650635,0.189189523458481,-0.842183589935303,-0.504910111427307,0.214924737811089,-0.836926758289337,-0.503349721431732,0.20961506664753,-0.840172171592712,-0.500172197818756,0.204156711697578,-0.851408660411835,-0.483138978481293,0.214294523000717,-0.827358424663544,-0.519187748432159,0.206297188997269,-0.844670474529266,-0.493936538696289,0.0120158428326249,-0.829112827777863,-0.558952212333679,0.0110281864181161,-0.838377892971039,-0.544977962970734,0.0560953170061111,-0.840981483459473,-0.53814822435379,0.0468824803829193,-0.833412826061249,-0.550658762454987,-0.00106931326445192,-0.791777312755585,-0.610809087753296,-0.0339960753917694,-0.78466671705246,-0.618984997272491,-0.0653669759631157,-0.774701714515686,-0.628939151763916,-0.0254771094769239,-0.78572690486908,-0.618048787117004,0.0924884676933289,-0.847653567790985,-0.522426605224609,0.110103487968445,-0.84819495677948,-0.518114328384399,0.152033016085625,-0.833337664604187,-0.531445503234863,0.127023458480835,-0.840840697288513,-0.526167392730713,0.184594199061394,-0.831958532333374,-0.523230314254761,0.209545075893402,-0.814510643482208,-0.5409836769104, +0.242127254605293,-0.773819267749786,-0.585301756858826,0.223075240850449,-0.796594560146332,-0.561849355697632,0.262257963418961,-0.774576783180237,-0.575544655323029,0.217924907803535,-0.816558241844177,-0.534547805786133,0.2360470443964,-0.805669009685516,-0.543303906917572,0.277518719434738,-0.758924067020416,-0.589082002639771,0.122468933463097,-0.842793643474579,-0.524118721485138,0.14144966006279,-0.844563603401184,-0.516434192657471,0.193640232086182,-0.828275263309479,-0.525798261165619,0.173767417669296,-0.829789042472839,-0.530334770679474,0.0517515204846859,-0.832652807235718,-0.551372051239014,0.00941691733896732,-0.828822493553162,-0.55943238735199,0.0259112007915974,-0.836158633232117,-0.54787540435791,0.0695445165038109,-0.837958335876465,-0.541285157203674,0.351331740617752,-0.748572587966919,-0.562321186065674,0.283630728721619,-0.806669473648071,-0.518495857715607,0.309614270925522,-0.79760468006134,-0.517654120922089,0.378016978502274,-0.730968594551086,-0.56814444065094,0.486377090215683,-0.707156240940094,-0.513193309307098,0.391928404569626,-0.79794716835022,-0.457900017499924,0.428096920251846,-0.780153632164001,-0.456172466278076,0.522063195705414,-0.677986741065979,-0.51747852563858,0.175261169672012,-0.85883617401123,-0.481335610151291,0.200881332159042,-0.860057950019836,-0.46898490190506,0.271127015352249,-0.836869895458221,-0.475540667772293,0.242510616779327,-0.840477883815765,-0.484546661376953,0.0891281887888908,-0.842807829380035,-0.530783474445343,0.0461830645799637,-0.840725243091583,-0.539488852024078,0.0675463452935219,-0.846212148666382,-0.528547585010529,0.109910197556019,-0.846176087856293,-0.521445870399475,0.650080144405365,-0.619848012924194,-0.439527302980423,0.535560429096222,-0.754049599170685,-0.38024228811264,0.596605777740479,-0.70045393705368,-0.391696214675903,0.700527369976044,-0.550665020942688,-0.45390459895134,0.254982441663742,-0.878659248352051,-0.4036605656147,0.303134620189667,-0.869000375270844,-0.391085565090179,0.39526230096817,-0.828089475631714,-0.397536873817444, +0.343360275030136,-0.847358763217926,-0.405076533555984,0.420140266418457,-0.838525950908661,-0.346924126148224,0.318864673376083,-0.883499920368195,-0.343152195215225,0.380206733942032,-0.862169623374939,-0.3348228931427,0.486551374197006,-0.803157866001129,-0.343809902667999,0.810995578765869,-0.456220865249634,-0.366263151168823,0.710278511047363,-0.635126352310181,-0.303511083126068,0.747956991195679,-0.576887905597687,-0.328269213438034,0.837409257888794,-0.394971609115601,-0.377813994884491,0.141708001494408,-0.867046773433685,-0.47764927148819,0.0929569751024246,-0.867172479629517,-0.489255428314209,0.122516766190529,-0.871035695075989,-0.475695878267288,0.17216157913208,-0.867659687995911,-0.466397970914841,0.917529106140137,-0.334066212177277,-0.215731620788574,0.821903645992279,-0.536153495311737,-0.192390322685242,0.848595559597015,-0.490238845348358,-0.198876082897186,0.928681254386902,-0.312564522027969,-0.19963601231575,0.586059272289276,-0.767126500606537,-0.26086699962616,0.466326862573624,-0.846394300460815,-0.257207900285721,0.537139475345612,-0.804113805294037,-0.254719734191895,0.646258473396301,-0.719039499759674,-0.255601644515991,0.942463517189026,-0.331233233213425,-0.0452447235584259,0.837176203727722,-0.538662254810333,-0.0947573632001877,0.922345042228699,-0.384095430374146,-0.0418373793363571,0.955073475837708,-0.295518815517426,-0.0224342197179794,0.848635315895081,-0.490290492773056,-0.198578506708145,0.817419409751892,-0.534652650356293,-0.214410975575447,0.703920125961304,-0.678652763366699,-0.209587678313255,0.756542086601257,-0.619963705539703,-0.208060398697853,0.37746861577034,-0.8595050573349,-0.344628065824509,0.314391076564789,-0.879543542861938,-0.357157617807388,0.234384804964066,-0.899044632911682,-0.369841188192368,0.293407440185547,-0.888261377811432,-0.353417128324509,0.373541057109833,-0.892622530460358,-0.252372682094574,0.298084676265717,-0.915337681770325,-0.270744353532791,0.38102775812149,-0.889889061450958,-0.250829249620438,0.453906685113907,-0.85927802324295,-0.23581825196743, +0.759590089321136,-0.650383651256561,-0.00490424362942576,0.705648362636566,-0.707110643386841,-0.0453321449458599,0.824196398258209,-0.559063792228699,0.0902662053704262,0.864328324794769,-0.492417931556702,0.102280274033546,0.540631294250488,-0.829372227191925,-0.140924334526062,0.466061294078827,-0.871524810791016,-0.152418464422226,0.579554617404938,-0.805000483989716,-0.126848876476288,0.651867389678955,-0.748796582221985,-0.119885817170143,0.809755146503448,-0.574838817119598,0.117716431617737,0.677728354930878,-0.734917104244232,0.0241037793457508,0.59803307056427,-0.801471412181854,-0.000219179899431765,0.734177470207214,-0.671640336513519,0.099411316215992,0.569653809070587,-0.816868185997009,-0.0906694605946541,0.46117314696312,-0.878129601478577,-0.127310246229172,0.38653576374054,-0.909968912601471,-0.150155588984489,0.49596044421196,-0.86132287979126,-0.110210172832012,0.380249321460724,-0.892556071281433,-0.242392972111702,0.298012554645538,-0.915932416915894,-0.268805801868439,0.234632179141045,-0.926244556903839,-0.294989436864853,0.315441817045212,-0.911327004432678,-0.264536559581757,0.227712124586105,-0.895346164703369,-0.382756322622299,0.170033812522888,-0.898809671401978,-0.404016852378845,0.11855873465538,-0.895853281021118,-0.428241729736328,0.175329938530922,-0.898230791091919,-0.403039515018463,0.318298101425171,-0.943638682365417,-0.0907331183552742,0.428017824888229,-0.902706921100616,0.0438291244208813,0.366676151752472,-0.929595291614532,-0.0374354794621468,0.289373755455017,-0.950978934764862,-0.109095796942711,0.257491379976273,-0.92182070016861,-0.289732545614243,0.176823422312737,-0.93137264251709,-0.318243116140366,0.125171467661858,-0.929291427135468,-0.347490459680557,0.208214536309242,-0.927518606185913,-0.310412555932999,0.187238916754723,-0.973572492599487,-0.13076077401638,0.214108362793922,-0.9743492603302,-0.0692899078130722,0.207975491881371,-0.966188788414001,0.152398899197578,0.244073584675789,-0.967973709106445,0.0587800703942776,0.135612830519676,-0.881136834621429,-0.452997982501984, +0.0743567049503326,-0.884722948074341,-0.460148245096207,0.0327883884310722,-0.874769032001495,-0.483429580926895,0.09494399279356,-0.877890706062317,-0.469354450702667,0.141367480158806,-0.935489416122437,-0.323843985795975,0.217688396573067,-0.951434969902039,-0.217677041888237,0.150448754429817,-0.941437125205994,-0.301763713359833,0.113323897123337,-0.928988397121429,-0.35233262181282,0.166260093450546,-0.925418853759766,-0.340525537729263,0.0729407444596291,-0.891259074211121,-0.447590082883835,0.103496640920639,-0.89038497209549,-0.443286746740341,0.169464975595474,-0.936603248119354,-0.306685537099838,0.0768852755427361,-0.853124558925629,-0.516010940074921,0.0148952035233378,-0.842943668365479,-0.537795782089233,-0.00260413810610771,-0.824201285839081,-0.566291093826294,0.0550315827131271,-0.843961417675018,-0.533573687076569,0.121059261262417,-0.877996027469635,-0.463106483221054,0.166488081216812,-0.87395578622818,-0.456599563360214,0.124776251614094,-0.88403844833374,-0.450452148914337,0.077070064842701,-0.884196937084198,-0.460712403059006,0.0474004857242107,-0.835893392562866,-0.546841442584991,0.0138802891597152,-0.839660584926605,-0.542934119701385,-0.0193322394043207,-0.826762318611145,-0.562219083309174,0.0159421842545271,-0.827286005020142,-0.561554729938507,0.0511004291474819,-0.842411398887634,-0.536406338214874,0.088700108230114,-0.843821465969086,-0.529242694377899,0.0684725120663643,-0.851205825805664,-0.520346164703369,0.0272675417363644,-0.847662925720215,-0.529834151268005,0.0100266616791487,-0.792472362518311,-0.609825432300568,-0.0257128123193979,-0.788325786590576,-0.614720702171326,-0.0363560728728771,-0.770980000495911,-0.635820746421814,-0.00280763395130634,-0.780757665634155,-0.624827802181244,-0.0498278252780437,-0.777989089488983,-0.626298785209656,-0.070580780506134,-0.761462092399597,-0.644355356693268,-0.0402211770415306,-0.767520248889923,-0.639761805534363,-0.0200269166380167,-0.779042184352875,-0.626651704311371,0.00653349375352263,-0.819124698638916,-0.573578298091888,0.0428186170756817,-0.822081506252289,-0.567757546901703, +0.0246130265295506,-0.828792989253998,-0.559013783931732,-0.0169731266796589,-0.823209047317505,-0.567484676837921,-0.10391553491354,-0.757461130619049,-0.644557416439056,-0.126785606145859,-0.735500395298004,-0.665555775165558,-0.0919243320822716,-0.743940353393555,-0.661893248558044,-0.0708353072404861,-0.759013056755066,-0.647210597991943,-0.0647558197379112,-0.773400068283081,-0.630602121353149,-0.0334066972136497,-0.783551931381226,-0.62042760848999,-0.083045020699501,-0.774705827236176,-0.626844763755798,-0.107378870248795,-0.760547757148743,-0.640341222286224,-0.115606650710106,-0.701728224754333,-0.703002572059631,-0.109095998108387,-0.687755823135376,-0.71769767999649,-0.0833609476685524,-0.700289368629456,-0.70897513628006,-0.0818648189306259,-0.713046729564667,-0.696320772171021,-0.146792709827423,-0.71839851140976,-0.679967284202576,-0.172187134623528,-0.674623727798462,-0.717798292636871,-0.155234515666962,-0.682887077331543,-0.713839948177338,-0.145417377352715,-0.702127933502197,-0.69704395532608,0.0111063923686743,-0.77535080909729,-0.631433248519897,0.122205786406994,-0.759454011917114,-0.638979911804199,-0.0161173921078444,-0.741414844989777,-0.670853316783905,-0.130328193306923,-0.751135647296906,-0.647155165672302,-0.201141178607941,-0.653372824192047,-0.729826152324677,-0.202267125248909,-0.63193279504776,-0.748163819313049,-0.197917982935905,-0.626819849014282,-0.753608226776123,-0.199349865317345,-0.641075670719147,-0.741135358810425,-0.151587009429932,-0.643339395523071,-0.750423789024353,-0.141828134655952,-0.636165976524353,-0.758404731750488,-0.132917925715446,-0.654882907867432,-0.743949711322784,-0.133277282118797,-0.668154895305634,-0.731987953186035,-0.252573192119598,-0.645911455154419,-0.720420181751251,-0.262595355510712,-0.699935495853424,-0.66417920589447,-0.268323719501495,-0.690174341201782,-0.672057867050171,-0.258482277393341,-0.641334116458893,-0.72241085767746,-0.0569004155695438,-0.726822018623352,-0.684464812278748,-0.050439428538084,-0.712945222854614,-0.699403285980225, +-0.0221756231039762,-0.725377678871155,-0.687993884086609,-0.0252030473202467,-0.734688401222229,-0.677936375141144,-0.0676539987325668,-0.672665059566498,-0.736847817897797,-0.05361333116889,-0.67235791683197,-0.738282203674316,-0.0371353253722191,-0.68827873468399,-0.724495232105255,-0.0485445484519005,-0.684518575668335,-0.72737729549408,-0.35038498044014,-0.750450968742371,-0.5604048371315,-0.389779627323151,-0.818734586238861,-0.421598702669144,-0.37048614025116,-0.804302275180817,-0.464583724737167,-0.315105199813843,-0.741937756538391,-0.591808319091797,-0.124348774552345,-0.655416309833527,-0.744961082935333,-0.13092328608036,-0.636825799942017,-0.759810507297516,-0.128387451171875,-0.651804208755493,-0.747440993785858,-0.119200371205807,-0.64396595954895,-0.755711019039154,-0.0898422822356224,-0.742755889892578,-0.663507342338562,0.000813918130006641,-0.725765109062195,-0.687942087650299,-0.00671892892569304,-0.70293140411377,-0.711226046085358,-0.0635043755173683,-0.724096655845642,-0.686768710613251,-0.480350315570831,-0.808656632900238,-0.33961433172226,-0.613278746604919,-0.749808728694916,-0.248346611857414,-0.513873815536499,-0.808203876018524,-0.287645995616913,-0.367613524198532,-0.856485247612,-0.362344235181808,0.0249903667718172,-0.724660158157349,-0.688653171062469,0.0233004204928875,-0.751853466033936,-0.658918499946594,0.0426084063947201,-0.771441221237183,-0.634872376918793,0.0495809204876423,-0.740584373474121,-0.670131862163544,0.0492223091423512,-0.736968457698822,-0.674132525920868,0.0423502251505852,-0.761821746826172,-0.64640086889267,0.0503925308585167,-0.732416212558746,-0.678989827632904,0.0532355345785618,-0.717964828014374,-0.694040715694427,0.0448153279721737,-0.721709728240967,-0.690743446350098,0.0643069073557854,-0.740621507167816,-0.668838143348694,0.0479770042002201,-0.728088080883026,-0.683802545070648,0.0186287611722946,-0.712916731834412,-0.701001226902008,0.0379033870995045,-0.721765875816345,-0.691098690032959,0.0586142428219318,-0.705360472202301,-0.706421196460724,0.0727527290582657,-0.73808091878891,-0.670778453350067, +0.0467218421399593,-0.741644024848938,-0.669164538383484,0.0759939551353455,-0.763605535030365,-0.6411954164505,0.0958842933177948,-0.794903576374054,-0.599111437797546,0.0841543227434158,-0.779833674430847,-0.62030440568924,0.0460990630090237,-0.754207015037537,-0.655016481876373,0.120932571589947,-0.775894105434418,-0.619163632392883,0.111410900950432,-0.822153210639954,-0.558257699012756,0.117292210459709,-0.842288970947266,-0.526110291481018,0.13524004817009,-0.798771500587463,-0.586237370967865,0.124837696552277,-0.840831279754639,-0.526705145835876,0.141371339559555,-0.898514747619629,-0.415554314851761,0.144664704799652,-0.878783345222473,-0.454765766859055,0.0861301496624947,-0.831050992012024,-0.549486875534058,0.199131682515144,-0.833899557590485,-0.514740705490112,0.176111787557602,-0.887168347835541,-0.426517516374588,0.119318954646587,-0.90123987197876,-0.416568905115128,0.145829454064369,-0.869457125663757,-0.471993714570999,0.216254889965057,-0.920242726802826,-0.326170653104782,0.18952614068985,-0.953613996505737,-0.233880683779716,0.102627590298653,-0.979555547237396,-0.173027753829956,0.140689089894295,-0.967291414737701,-0.211078479886055,0.132113754749298,-0.991111695766449,-0.0156080890446901,0.0947586447000504,-0.995360314846039,0.0166924353688955,-0.0636894553899765,-0.992579758167267,0.103582203388214,0.00599485030397773,-0.986268162727356,0.165042534470558,0.138737589120865,-0.907350122928619,-0.396821856498718,0.181249111890793,-0.888657748699188,-0.421231776475906,0.120043061673641,-0.92381227016449,-0.363538980484009,0.0872876569628716,-0.929524302482605,-0.358281344175339,0.097457081079483,-0.979113698005676,-0.178433984518051,0.179602950811386,-0.952739775180817,-0.245009943842888,0.124722421169281,-0.973920404911041,-0.18953475356102,0.0614577829837799,-0.98499071598053,-0.161295235157013,0.0167420133948326,-0.998863399028778,-0.0446269065141678,0.0056946468539536,-0.998861193656921,-0.0473696775734425,-0.0684327632188797,-0.997651338577271,-0.00297778425738215,-0.0797996744513512,-0.99639892578125,0.0286561958491802, +-0.518447875976563,-0.844278037548065,0.13567066192627,-0.601266324520111,-0.760804176330566,0.244245886802673,-0.681815624237061,-0.61834990978241,0.390859127044678,-0.631152272224426,-0.721161305904388,0.285610198974609,-0.758853733539581,-0.572746515274048,0.310003876686096,-0.661824941635132,-0.732576668262482,0.159120455384254,-0.726416170597076,-0.647688329219818,0.229824677109718,-0.805692613124847,-0.47628727555275,0.352150559425354,-0.218730270862579,-0.97483104467392,0.0431452915072441,-0.157253101468086,-0.987436771392822,0.0154964057728648,-0.251052141189575,-0.966990232467651,0.0436199195683002,-0.327189654111862,-0.939481675624847,0.101592980325222,-0.95721960067749,-0.0216424353420734,0.288552045822144,-0.938791155815125,-0.0768175646662712,0.335812717676163,-0.888996481895447,-0.374958574771881,0.262852281332016,-0.925970196723938,-0.2627132833004,0.271221220493317,-0.779446959495544,-0.626036643981934,0.0232495870441198,-0.762547135353088,-0.64635568857193,0.0273149367421865,-0.941621363162994,-0.335256576538086,-0.0308589171618223,-0.946725070476532,-0.32178869843483,0.0127958673983812,-0.72008228302002,-0.650402128696442,0.2417823523283,-0.632426500320435,-0.747807085514069,0.20204322040081,-0.461132764816284,-0.88274472951889,0.0901018604636192,-0.568339109420776,-0.810432195663452,0.142092853784561,-0.0120235700160265,-0.997722148895264,-0.0663775876164436,-0.0237543378025293,-0.997214317321777,-0.0707056373357773,-0.0660388693213463,-0.995338320732117,-0.070288322865963,-0.0760615766048431,-0.995446741580963,-0.0574489906430244,0.036138616502285,-0.987476289272308,-0.153572872281075,0.0786468237638474,-0.982679009437561,-0.167799472808838,0.0407054051756859,-0.987114906311035,-0.154749542474747,0.0145219545811415,-0.988864541053772,-0.148108571767807,-0.131440967321396,-0.991138517856598,-0.0191763453185558,-0.107475914061069,-0.993800163269043,-0.028465811163187,-0.182089731097221,-0.983025670051575,-0.0224458370357752,-0.213899597525597,-0.976836860179901,-0.00607647700235248,-0.337103188037872,-0.94146466255188,0.0023886829148978, +-0.303563594818115,-0.952811241149902,-0.000112749279651325,-0.505178809165955,-0.862967431545258,0.0090433107689023,-0.536029040813446,-0.843538224697113,0.0334114171564579,-0.0932494178414345,-0.992257297039032,-0.082036942243576,-0.0779149159789085,-0.993133962154388,-0.0872597917914391,-0.148416176438332,-0.985145270824432,-0.0863795951008797,-0.163618594408035,-0.983319878578186,-0.0794415473937988,-0.0673098787665367,-0.99477356672287,-0.0767799317836761,-0.0293592270463705,-0.994965791702271,-0.0958179607987404,-0.00673500308766961,-0.993734061717987,-0.111568138003349,-0.0455902591347694,-0.994641065597534,-0.0927936360239983,-0.282463282346725,-0.958247721195221,-0.0444504097104073,-0.269364237785339,-0.9620441198349,-0.0437491536140442,-0.470597326755524,-0.879628479480743,-0.069225013256073,-0.483132869005203,-0.873707294464111,-0.056729543954134,-0.730293035507202,-0.675864458084106,-0.0993948057293892,-0.719400346279144,-0.688552856445313,-0.0914234295487404,-0.88071471452713,-0.422255128622055,-0.214574441313744,-0.896417140960693,-0.399094641208649,-0.192769169807434,-0.257831156253815,-0.960484623908997,-0.104844711720943,-0.252822607755661,-0.962107837200165,-0.102124124765396,-0.445559531450272,-0.883402526378632,-0.145178154110909,-0.449004381895065,-0.882605910301208,-0.139291122555733,-0.149565726518631,-0.981445133686066,-0.11998213082552,-0.0810077860951424,-0.989193499088287,-0.122205428779125,-0.0702653974294662,-0.989710450172424,-0.124643795192242,-0.138976231217384,-0.9825758934021,-0.123410701751709,-0.770236253738403,-0.300767153501511,-0.562383532524109,-0.773998081684113,-0.287763208150864,-0.564020693302155,-0.75678676366806,-0.503230273723602,-0.417172729969025,-0.759101212024689,-0.504941165447235,-0.410852611064911,-0.856403946876526,-0.439178019762039,-0.271468102931976,-0.701111018657684,-0.696596384048462,-0.152305260300636,-0.699915289878845,-0.698826789855957,-0.147512137889862,-0.845038115978241,-0.449598461389542,-0.289433628320694,-0.237427890300751,-0.953389406204224,-0.186217293143272, +-0.235561192035675,-0.954710185527802,-0.18176731467247,-0.414104372262955,-0.879735171794891,-0.233631297945976,-0.415058851242065,-0.87990665435791,-0.231280386447906,-0.217680290341377,-0.941879212856293,-0.255888730287552,-0.213736325502396,-0.944360017776489,-0.250002354383469,-0.36685973405838,-0.880412459373474,-0.300479412078857,-0.375712722539902,-0.875005960464478,-0.305294364690781,-0.521564662456512,-0.750236093997955,-0.406344830989838,-0.515512824058533,-0.761739134788513,-0.392428547143936,-0.595645904541016,-0.617911994457245,-0.513216197490692,-0.600115537643433,-0.600071251392365,-0.528938472270966,-0.192137643694878,-0.932009756565094,-0.307312458753586,-0.143812283873558,-0.946791768074036,-0.287929475307465,-0.249422878026962,-0.915534436702728,-0.315570801496506,-0.322241634130478,-0.877535939216614,-0.35509318113327,-0.445308446884155,-0.779823124408722,-0.439973384141922,-0.409186959266663,-0.823075950145721,-0.393842786550522,-0.495574235916138,-0.707079708576202,-0.504424929618835,-0.506614685058594,-0.665550589561462,-0.548072934150696,-0.337845146656036,-0.851761877536774,-0.400453001260757,-0.39439070224762,-0.811882078647614,-0.430468827486038,-0.444671303033829,-0.749816954135895,-0.489940792322159,-0.443844825029373,-0.742147266864777,-0.502214252948761,-0.512145280838013,-0.73054176568985,-0.451681435108185,-0.473735898733139,-0.799974679946899,-0.368259459733963,-0.503199577331543,-0.753107190132141,-0.423815965652466,-0.490797787904739,-0.768298745155334,-0.410894811153412,-0.342664122581482,-0.851875245571136,-0.396093219518661,-0.349541038274765,-0.823608458042145,-0.446643084287643,-0.240886598825455,-0.912957906723022,-0.329365253448486,-0.211706593632698,-0.92844033241272,-0.305252403020859,-0.107678584754467,-0.936413705348969,-0.333968102931976,-0.127643868327141,-0.9333735704422,-0.335441440343857,-0.0880526229739189,-0.939982771873474,-0.329665213823318,-0.0580497160553932,-0.945964694023132,-0.319031566381454,-0.596905648708344,-0.716339111328125,-0.361333578824997,-0.602171003818512,-0.714401662349701,-0.356399148702621, +-0.598807990550995,-0.711009085178375,-0.36863973736763,-0.609269142150879,-0.673157691955566,-0.419106006622314,-0.797188341617584,-0.533919215202332,-0.281817764043808,-0.867131471633911,-0.487716466188431,-0.101072065532207,-0.949872434139252,-0.310582518577576,-0.0357897765934467,-0.908641755580902,-0.371680200099945,-0.190325871109962,-0.089723601937294,-0.943918585777283,-0.317753791809082,-0.133024051785469,-0.938085734844208,-0.319843649864197,-0.184868082404137,-0.924486100673676,-0.333390682935715,-0.10225710272789,-0.940836012363434,-0.323065459728241,-0.217417627573013,-0.941618502140045,-0.257068455219269,-0.220592677593231,-0.940269768238068,-0.259290844202042,-0.117695212364197,-0.960752546787262,-0.251201838254929,-0.114922203123569,-0.962042391300201,-0.247522428631783,-0.0131923407316208,-0.938731670379639,-0.344396322965622,-0.0521296821534634,-0.935868561267853,-0.348472058773041,-0.0230538547039032,-0.935402274131775,-0.352833271026611,0.00657636998221278,-0.936761498451233,-0.349906772375107,-0.0545522607862949,-0.940559089183807,-0.335220605134964,-0.0566625408828259,-0.939023613929749,-0.339152067899704,-0.0241651348769665,-0.938348233699799,-0.344845801591873,-0.0229550339281559,-0.939941167831421,-0.340564101934433,0.0424575321376324,-0.875656127929688,-0.481065183877945,0.0642929300665855,-0.875630617141724,-0.478683143854141,0.0323919281363487,-0.883896350860596,-0.466560035943985,0.0105542270466685,-0.883427798748016,-0.468448638916016,0.0285052992403507,-0.910611212253571,-0.412279903888702,0.00627241423353553,-0.90983921289444,-0.414913773536682,0.0406904257833958,-0.90558260679245,-0.422213762998581,0.0519696995615959,-0.906431496143341,-0.419143438339233,-0.237045392394066,-0.953020930290222,-0.188575729727745,-0.241888344287872,-0.951849579811096,-0.188341408967972,-0.130804315209389,-0.974597930908203,-0.181794181466103,-0.125060528516769,-0.975653529167175,-0.180167242884636,-0.0579211860895157,-0.955811738967896,-0.288217067718506,-0.0607808046042919,-0.954495668411255,-0.291965186595917, +-0.0234416220337152,-0.954152464866638,-0.298402041196823,-0.0211474113166332,-0.955454409122467,-0.294380187988281,0.0526398383080959,-0.844480156898499,-0.532993674278259,0.0493874102830887,-0.846129834651947,-0.530683696269989,0.0873245894908905,-0.839681804180145,-0.536012053489685,0.0730506852269173,-0.842347383499146,-0.533961176872253,0.0717447102069855,-0.818068325519562,-0.570628523826599,0.0473710224032402,-0.841922640800476,-0.537514925003052,0.0322277508676052,-0.858930468559265,-0.511077105998993,0.0630373358726501,-0.835789084434509,-0.545419931411743,-0.00290163164027035,-0.768425643444061,-0.639932513237,0.0125649403780699,-0.739581882953644,-0.672949254512787,-0.0724266842007637,-0.760139048099518,-0.645711243152618,-0.0860708355903625,-0.769709348678589,-0.632565796375275,0.00248650321736932,-0.93449330329895,-0.355972021818161,-0.000248363183345646,-0.932150602340698,-0.362070709466934,0.030535414814949,-0.926891028881073,-0.374086409807205,0.0340018533170223,-0.92927473783493,-0.367821246385574,0.0704345777630806,-0.839187145233154,-0.539262413978577,0.0388308838009834,-0.867944359779358,-0.495141178369522,0.0477726496756077,-0.883422255516052,-0.466136157512665,0.0849107056856155,-0.854854345321655,-0.511873245239258,-0.60267436504364,-0.776213049888611,-0.185140892863274,-0.702336549758911,-0.698764204978943,-0.135837748646736,-0.792879045009613,-0.604480445384979,-0.0771132707595825,-0.691202163696289,-0.707224667072296,-0.14856918156147,-0.666208922863007,-0.745696604251862,-0.0101134311407804,-0.731539666652679,-0.681473791599274,-0.021053820848465,-0.796568155288696,-0.604207098484039,0.0203260201960802,-0.753505885601044,-0.655455112457275,0.0510631389915943,-0.748226523399353,-0.655187845230103,-0.104336090385914,-0.826002538204193,-0.562644302845001,-0.0339300706982613,-0.843120992183685,-0.53583151102066,-0.0450757704675198,-0.791644752025604,-0.605908632278442,-0.078570082783699,-0.840745687484741,-0.541409909725189,-0.00468760682269931,-0.858596920967102,-0.511869192123413,-0.0283055920153856, +-0.869856238365173,-0.489760905504227,-0.0590288378298283,-0.856399774551392,-0.515216052532196,-0.0336447656154633,-0.836722016334534,-0.529337346553802,-0.140351250767708,-0.877090811729431,-0.459741353988647,-0.139103353023529,-0.884161472320557,-0.434175968170166,-0.172481134533882,-0.856479823589325,-0.490676730871201,-0.16024549305439,-0.885159373283386,-0.428721040487289,-0.180807381868362,-0.881733357906342,-0.442814886569977,-0.162669226527214,-0.895764172077179,-0.411613374948502,-0.167871579527855,-0.893231332302094,-0.405107259750366,-0.195002883672714,-0.862770259380341,-0.410896986722946,-0.294603407382965,-0.882795929908752,-0.371099978685379,-0.288021385669708,-0.881038904190063,-0.364570409059525,-0.301428020000458,-0.865472733974457,-0.39877513051033,-0.303208351135254,-0.877352297306061,-0.437333703041077,-0.197464317083359,-0.862509608268738,-0.459313720464706,-0.212387233972549,-0.873630940914154,-0.442447334527969,-0.202507585287094,-0.880640268325806,-0.432111352682114,-0.194300353527069,-0.840813040733337,-0.458845019340515,-0.287218928337097,-0.811439692974091,-0.498524904251099,-0.30502262711525,-0.810415327548981,-0.50153648853302,-0.302800536155701,-0.853593230247498,-0.44243586063385,-0.27500781416893,-0.896317839622498,-0.270270109176636,-0.351523041725159,-0.920742928981781,-0.201129227876663,-0.334334641695023,-0.890066385269165,-0.272071421146393,-0.365730762481689,-0.878413438796997,-0.300430834293365,-0.371660053730011,-0.903126537799835,-0.291887134313583,-0.314903378486633,-0.935925781726837,-0.232935801148415,-0.264166742563248,-0.946801066398621,-0.161828562617302,-0.278171390295029,-0.899857759475708,-0.271995037794113,-0.340991109609604,-0.959279000759125,-0.181456953287125,-0.216465070843697,-0.936233401298523,-0.233717650175095,-0.262380063533783,-0.958554029464722,-0.178909093141556,-0.221733137965202,-0.980137228965759,-0.101763412356377,-0.170221745967865,-0.836916327476501,-0.427532315254211,-0.341741472482681,-0.846225917339325,-0.397332966327667,-0.355004578828812,-0.892810940742493,-0.29243415594101,-0.34259432554245, +-0.881472170352936,-0.336453467607498,-0.331369787454605,-0.784435451030731,-0.547698855400085,-0.291010290384293,-0.760399043560028,-0.571029365062714,-0.309384614229202,-0.755923748016357,-0.571981847286224,-0.31845885515213,-0.782116055488586,-0.546324551105499,-0.299706757068634,-0.979312360286713,-0.028841994702816,-0.200288191437721,-0.982733488082886,0.0824423134326935,-0.165644630789757,-0.985649943351746,0.0627705752849579,-0.156697556376457,-0.981605291366577,-0.0465345680713654,-0.185164257884026,-0.911767661571503,-0.331433236598969,-0.242552548646927,-0.96397852897644,-0.202132448554039,-0.172880962491035,-0.960687041282654,-0.199735045433044,-0.192837744951248,-0.906801342964172,-0.332732141017914,-0.25884485244751,-0.770483613014221,-0.607202172279358,-0.194063365459442,-0.851385951042175,-0.510789394378662,-0.11931536346674,-0.847560286521912,-0.499771416187286,-0.178522199392319,-0.770008504390717,-0.588131248950958,-0.24736325442791,-0.953038692474365,-0.164042621850967,-0.254572600126266,-0.927963674068451,-0.21494959294796,-0.304434090852737,-0.888682305812836,-0.284074008464813,-0.359924525022507,-0.907325208187103,-0.267497271299362,-0.324355155229568,-0.675722658634186,-0.713992238044739,-0.183340772986412,-0.720919728279114,-0.676338732242584,-0.151131272315979,-0.728350698947906,-0.657640159130096,-0.192391946911812,-0.684621810913086,-0.693317532539368,-0.22495324909687,-0.863965213298798,-0.425065040588379,-0.269970029592514,-0.857842922210693,-0.425251036882401,-0.288560420274734,-0.807107627391815,-0.49177947640419,-0.326696336269379,-0.801615357398987,-0.511399388313293,-0.309650421142578,-0.664200484752655,-0.718441367149353,-0.206590592861176,-0.661941170692444,-0.728417217731476,-0.176754847168922,-0.671967566013336,-0.711397230625153,-0.205848455429077,-0.670733690261841,-0.703343629837036,-0.235423162579536,-0.791580319404602,-0.530094146728516,-0.303975075483322,-0.760374784469604,-0.568470537662506,-0.314120233058929,-0.770836651325226,-0.557642936706543,-0.307969480752945,-0.808116555213928,-0.508977890014648,-0.296461075544357, +-0.736929595470428,-0.589732050895691,-0.330379992723465,-0.716874599456787,-0.615732610225677,-0.327053904533386,-0.710693776607513,-0.626946330070496,-0.319143682718277,-0.731676697731018,-0.600329458713531,-0.322883814573288,-0.764518141746521,-0.592745959758759,-0.253307014703751,-0.776638150215149,-0.573861598968506,-0.259838402271271,-0.742631673812866,-0.610775172710419,-0.274685084819794,-0.727624833583832,-0.633524179458618,-0.263076603412628,-0.21343831717968,-0.583761990070343,-0.783368408679962,-0.30078798532486,-0.609834432601929,-0.733231604099274,-0.291066259145737,-0.638700723648071,-0.712279438972473,-0.230124160647392,-0.624201238155365,-0.746602833271027,-0.703089833259583,-0.631274938583374,-0.327347934246063,-0.659741580486298,-0.676505863666534,-0.327232092618942,-0.660725295543671,-0.678876399993896,-0.320263803005219,-0.698087394237518,-0.639286816120148,-0.322469264268875,-0.736459314823151,-0.612977504730225,-0.286157816648483,-0.712668240070343,-0.639886021614075,-0.287489086389542,-0.719692766666412,-0.634256541728973,-0.282420128583908,-0.744941294193268,-0.604664146900177,-0.281858026981354,-0.702815234661102,-0.663829863071442,-0.255696505308151,-0.719944536685944,-0.643261313438416,-0.260566353797913,-0.709587633609772,-0.652641117572784,-0.265603005886078,-0.695916771888733,-0.670159578323364,-0.258042752742767,-0.70338237285614,-0.653778553009033,-0.278975039720535,-0.666767060756683,-0.69026654958725,-0.280987143516541,-0.675506830215454,-0.684328258037567,-0.274564385414124,-0.709415793418884,-0.648414373397827,-0.276202917098999,-0.0624379515647888,-0.97322815656662,-0.221197724342346,-0.0682732164859772,-0.972309291362762,-0.223503038287163,-0.0254102889448404,-0.972911417484283,-0.229777410626411,-0.0199116449803114,-0.973616659641266,-0.227319583296776,0.0666060522198677,-0.922724485397339,-0.379661917686462,0.0659093782305717,-0.911413252353668,-0.406179547309875,0.0313750356435776,-0.928248286247253,-0.370635449886322,0.0324587114155293,-0.938255965709686,-0.344415783882141, +-0.0721650645136833,-0.985635042190552,-0.152695626020432,-0.0835559889674187,-0.984877347946167,-0.151773408055305,-0.0368840806186199,-0.986863851547241,-0.157287299633026,-0.0250417646020651,-0.987125754356384,-0.157973945140839,0.101009890437126,-0.879423320293427,-0.465200692415237,0.0602546446025372,-0.904904544353485,-0.421327918767929,0.0611059330403805,-0.916930794715881,-0.394339919090271,0.101861611008644,-0.893523395061493,-0.437310129404068,0.00917017925530672,-0.980613470077515,-0.195737451314926,-0.00491782231256366,-0.980467557907104,-0.196619734168053,0.0272803492844105,-0.97804456949234,-0.206602603197098,0.0462763532996178,-0.977189242839813,-0.207267060875893,-0.98670107126236,0.11717265099287,0.112657010555267,-0.988743841648102,0.115730710327625,0.094825841486454,-0.990468740463257,0.11422748118639,0.0769661515951157,-0.988746702671051,0.115704342722893,0.094828300178051,-0.985266149044037,0.118119232356548,0.123686596751213,-0.982100486755371,0.119759276509285,0.145383417606354,-0.985269904136658,0.118084587156773,0.123689830303192,-0.987959623336792,0.116385370492935,0.101933442056179,-0.990517199039459,0.114319831132889,0.0762011110782623,-0.99091637134552,0.113915987312794,0.0714703798294067,-0.988229095935822,0.116195134818554,0.0995079576969147,-0.984084725379944,0.118782088160515,0.132166758179665,-0.989055275917053,0.115553855895996,0.0917439609766006,-0.988486409187317,0.115943841636181,0.0972189381718636,-0.993605434894562,0.109912678599358,0.0258388351649046,-0.988487422466278,0.115935288369656,0.0972197204828262,-0.978278338909149,0.121293656527996,0.168105259537697,-0.972083449363708,0.123974725604057,0.199209049344063,-0.972119450569153,0.123642295598984,0.199239924550056,-0.972132623195648,0.123519860208035,0.199251234531403,-0.975937783718109,0.122535906732082,0.180361852049828,-0.983027756214142,0.119478359818459,0.139217004179955,-0.988411009311676,0.116063170135021,0.0978418365120888,-0.983043193817139,0.119334921240807,0.139230251312256,-0.979244768619537,0.120956547558308,0.162632197141647, +-0.982891738414764,0.119284987449646,0.140338659286499,-0.986031591892242,0.117578506469727,0.117970533668995,-0.982889592647552,0.119305156171322,0.140336751937866,-0.989913582801819,0.114719875156879,0.0831296145915985,-0.991106867790222,0.113557413220406,0.069367878139019,-0.989915013313293,0.114706568419933,0.083130843937397,-0.988531231880188,0.115848764777184,0.096876434981823,-0.98858255147934,0.116510435938835,0.0955505669116974,-0.983303308486938,0.119677148759365,0.137084111571312,-0.976287662982941,0.12265919148922,0.178373605012894,-0.983297824859619,0.11972726136446,0.137079551815987,-0.994237124919891,0.106087356805801,-0.0154288802295923,-0.993089079856873,0.110939256846905,0.0382974185049534,-0.989036023616791,0.115595154464245,0.091900423169136,-0.993077337741852,0.111046761274338,0.0382874943315983,-0.983936548233032,0.119104750454426,0.132977843284607,-0.983525693416595,0.119250141084194,0.135855302214622,-0.983793675899506,0.120411120355129,0.132858425378799,-0.98419326543808,0.12028893083334,0.129977509379387,-0.984399616718292,0.118856750428677,0.129733145236969,-0.977096676826477,0.121475391089916,0.174716845154762,-0.967678487300873,0.124576821923256,0.219269141554832,-0.977027595043182,0.122113592922688,0.174657955765724,-0.985669016838074,0.117446400225163,0.121090956032276,-0.978166162967682,0.121055915951729,0.168927878141403,-0.985648095607758,0.117640152573586,0.121073074638844,-0.990828096866608,0.113745212554932,0.0729514956474304,-0.989267826080322,0.115289755165577,0.0897645279765129,-0.989771962165833,0.114862635731697,0.0846063941717148,-0.990251302719116,0.11441433429718,0.0794476568698883,-0.989773988723755,0.114843286573887,0.0846081897616386,-0.647669494152069,-0.758290588855743,-0.0742934793233871,-0.533119797706604,-0.826687276363373,-0.179920569062233,-0.61368864774704,-0.775261998176575,-0.149515986442566,-0.710049271583557,-0.703027129173279,-0.0397871844470501,-0.988281011581421,0.118430465459824,0.0963067933917046,-0.989508032798767,0.117540173232555,0.0840128213167191, +-0.988271176815033,0.118519239127636,0.0962986946105957,-0.986893117427826,0.119384780526161,0.108578369021416,-0.988573610782623,0.118361011147499,0.0933417230844498,-0.983796000480652,0.121385775506496,0.131951183080673,-0.988573491573334,0.118362441658974,0.0933415964245796,-0.991848170757294,0.115139201283455,0.0545911006629467,-0.988157093524933,0.117051914334297,0.0992198660969734,-0.988752543926239,0.116173714399338,0.094192698597908,-0.988157331943512,0.117048807442188,0.0992201492190361,-0.987585425376892,0.11747033894062,0.104286670684814,-0.984821200370789,0.119116462767124,0.126248404383659,-0.984815120697021,0.119172245264053,0.126243218779564,-0.984864473342896,0.118719086050987,0.126285150647163,-0.988732099533081,0.116404786705971,0.0941211953759193,-0.988781690597534,0.116368994116783,0.0936431959271431,-0.988732933998108,0.116397112607956,0.0941218882799149,-0.988681495189667,0.116447672247887,0.0945985242724419,-0.982268869876862,0.119925260543823,0.144103482365608,-0.994248807430267,0.106403201818466,-0.0121590197086334,-0.981619477272034,0.0903146862983704,-0.168126925826073,-0.994238197803497,0.106501124799252,-0.0121682528406382,-0.976807415485382,0.122996918857098,0.175268486142159,-0.976805150508881,0.123017646372318,0.175266548991203,-0.97681736946106,0.122905686497688,0.175277039408684,-0.938479363918304,-0.328586488962173,0.106242887675762,-0.947228014469147,-0.307132214307785,0.0918092876672745,-0.947047591209412,-0.30634343624115,0.096200704574585,-0.938207566738129,-0.327933967113495,0.110570967197418,-0.923698425292969,-0.366281539201736,0.112334333360195,-0.930027425289154,-0.354877501726151,0.095451220870018,-0.929978907108307,-0.351592898368835,0.107339061796665,-0.92333048582077,-0.363360464572906,0.124218478798866,-0.913969278335571,-0.379721939563751,0.143078356981277,-0.916593194007874,-0.364922612905502,0.163365930318832,-0.917574405670166,-0.371633112430573,0.141230598092079,-0.915035426616669,-0.384961128234863,0.120478712022305,-0.915948569774628,-0.391099959611893,0.089884489774704, +-0.915005147457123,-0.392827033996582,0.0919371917843819,-0.915070235729218,-0.393112182617188,0.0900512784719467,-0.916150391101837,-0.391072899103165,0.0879228115081787,-0.92648321390152,-0.375463932752609,0.0256074629724026,-0.921137869358063,-0.388009548187256,0.0308814868330956,-0.921466767787933,-0.387611120939255,0.0256264600902796,-0.926949799060822,-0.374631196260452,0.0203843656927347,-0.940997719764709,-0.338061153888702,0.0154275605455041,-0.933335483074188,-0.358598381280899,0.0170913245528936,-0.933831393718719,-0.357452124357224,0.0136769469827414,-0.941550374031067,-0.336654305458069,0.012116489931941,-0.958650052547455,-0.264638870954514,-0.104672618210316,-0.949630200862885,-0.296935200691223,-0.10015981644392,-0.949515044689178,-0.293932855129242,-0.109657756984234,-0.958501935005188,-0.261308670043945,-0.113982543349266,-0.976935207843781,-0.203279629349709,-0.0653835311532021,-0.968262553215027,-0.234300553798676,-0.0870105400681496,-0.9689701795578,-0.236103788018227,-0.0731568560004234,-0.977298498153687,-0.205509796738625,-0.0515107773244381,-0.99024099111557,-0.137820288538933,-0.0206930916756392,-0.983660995960236,-0.179641008377075,-0.011838985607028,-0.984383702278137,-0.173295870423317,-0.030938021838665,-0.990567624568939,-0.131171718239784,-0.039620503783226,-0.996639311313629,-0.0729768648743629,0.0372085236012936,-0.992331922054291,-0.11621218174696,0.0420967228710651,-0.993599414825439,-0.1101358756423,0.0251071266829967,-0.997558891773224,-0.0668172985315323,0.0202898886054754,-0.994725048542023,-0.00927807204425335,0.102157600224018,-0.994443953037262,-0.0491700284183025,0.0930783674120903,-0.994911134243011,-0.0474119931459427,0.088904470205307,-0.995161354541779,-0.00771647598594427,0.0979509428143501,-0.985388875007629,0.110450997948647,0.129650086164474,-0.983291625976563,0.103914014995098,0.149464070796967,-0.990539610385895,0.0727522671222687,0.116354510188103,-0.992148160934448,0.0794811397790909,0.0965650901198387,-0.967985033988953,0.176815256476402,0.178161099553108,-0.968642175197601,0.180851772427559,0.170367851853371, +-0.976065099239349,0.140611737966537,0.165908008813858,-0.975251853466034,0.136732921004295,0.173746809363365,-0.955954015254974,0.208785191178322,0.206302478909492,-0.968999981880188,0.182053714990616,0.16701939702034,-0.971729099750519,0.190714806318283,0.139177843928337,-0.959674477577209,0.217192053794861,0.178473189473152,-0.942632138729095,0.318234026432037,0.100856222212315,-0.953911125659943,0.281927406787872,0.102813750505447,-0.954107940196991,0.276967883110046,0.113873079419136,-0.942999184131622,0.313391447067261,0.111975327134132,-0.910248160362244,0.353084176778793,0.216286987066269,-0.92531543970108,0.325758576393127,0.194094449281693,-0.92742121219635,0.328358709812164,0.179082289338112,-0.912790060043335,0.355384051799774,0.201287358999252,-0.893524765968323,0.445671558380127,0.0546841584146023,-0.905850410461426,0.417435765266418,0.0719881728291512,-0.906624913215637,0.411502957344055,0.0932556018233299,-0.894476115703583,0.440575808286667,0.076193630695343,-0.849335551261902,0.490381836891174,0.195332467556,-0.84789776802063,0.491594076156616,0.198506057262421,-0.860866904258728,0.470394045114517,0.194004401564598,-0.862264513969421,0.469184935092926,0.190697744488716,-0.836488246917725,0.530131757259369,0.138736039400101,-0.83560699224472,0.531252503395081,0.13975590467453,-0.845089018344879,0.516220211982727,0.139073297381401,-0.846041619777679,0.514962494373322,0.137939140200615,-0.815117120742798,0.553459048271179,0.171076610684395,-0.814594924449921,0.554285824298859,0.170886889100075,-0.82163393497467,0.543339192867279,0.172337353229523,-0.822305262088776,0.542282521724701,0.172464400529861,-0.804397106170654,0.567756354808807,0.174923166632652,-0.802753806114197,0.568524420261383,0.179906457662582,-0.807680547237396,0.56271493434906,0.176079645752907,-0.809337198734283,0.561879694461823,0.171069398522377,-0.82742828130722,0.553999483585358,0.0919074341654778,-0.834556341171265,0.547187626361847,0.06404197961092,-0.82507711648941,0.557714283466339,0.0905677601695061,-0.818131387233734,0.562596440315247,0.118938378989697, +-0.860105514526367,0.509772956371307,0.0187076441943645,-0.865061461925507,0.501665890216827,-3.80904784833547e-05,-0.852519869804382,0.522538244724274,0.0127906193956733,-0.847730219364166,0.529451549053192,0.0321642570197582,-0.861749887466431,0.497750341892242,0.0981408730149269,-0.848531544208527,0.511332750320435,0.136135891079903,-0.852868914604187,0.514546513557434,0.0886368900537491,-0.86370587348938,0.501523077487946,0.0498677678406239,-0.908045828342438,0.415111005306244,0.0559965223073959,-0.916581392288208,0.398720264434814,0.0300127472728491,-0.896890163421631,0.440491557121277,0.0394354611635208,-0.887749552726746,0.455543845891953,0.0661873668432236,-0.980132877826691,0.121505312621593,0.156767815351486,-0.986348867416382,0.118244677782059,0.114604368805885,-0.980130016803741,0.121531791985035,0.156765341758728,-0.972123265266418,0.124569319188595,0.198642447590828,-0.987493336200714,0.117485299706459,0.105139464139938,-0.987497448921204,0.117446556687355,0.105143062770367,-0.987497270107269,0.117448441684246,0.105142891407013,-0.990959584712982,0.114597201347351,0.0697612911462784,-0.991455256938934,0.114016197621822,0.063378594815731,-0.991903126239777,0.113493077456951,0.0569874383509159,-0.991451561450958,0.114050403237343,0.0633754059672356,-0.986040055751801,0.118477582931519,0.116995833814144,-0.979420483112335,0.121866770088673,0.160884648561478,-0.970862805843353,0.124991454184055,0.204456821084023,-0.979426741600037,0.121809713542461,0.160889998078346,-0.961048245429993,0.127754285931587,0.245081767439842,-0.961054682731628,0.127695336937904,0.245087295770645,-0.961062550544739,0.127623185515404,0.24509409070015,-0.921064436435699,0.368734031915665,0.125202387571335,-0.930480539798737,0.352023273706436,0.101417630910873,-0.911104917526245,0.398967981338501,0.103500217199326,-0.900938153266907,0.414702147245407,0.127799138426781,-0.990910768508911,0.114447884261608,0.0706936046481133,-0.990890741348267,0.114631474018097,0.0706763491034508,-0.990907251834869,0.114480845630169,0.0706905126571655, +-0.959553420543671,0.255838841199875,0.117489203810692,-0.955199539661407,0.264750719070435,0.132290810346603,-0.952065050601959,0.292391270399094,0.0898863971233368,-0.955925464630127,0.283938437700272,0.0747363790869713,-0.969527721405029,0.172241926193237,0.174209117889404,-0.973047912120819,0.163163483142853,0.162959158420563,-0.966569900512695,0.212381035089493,0.14365553855896,-0.962778568267822,0.22160592675209,0.154752358794212,-0.98614114522934,0.0833999365568161,0.143422931432724,-0.984905958175659,0.128226146101952,0.116269119083881,-0.983968734741211,0.131810322403908,0.120131574571133,-0.985253214836121,0.0866788178682327,0.147522479295731,-0.978890597820282,0.12191317230463,0.164043799042702,-0.985726296901703,0.118471756577492,0.119616344571114,-0.978903472423553,0.121794939041138,0.164054930210114,-0.97007691860199,0.125001132488251,0.208147794008255,-0.978348731994629,0.00196754653006792,0.206954225897789,-0.981826305389404,0.0483876056969166,0.183510184288025,-0.983181238174438,0.0435375906527042,0.177367508411407,-0.979594469070435,-0.00311090936884284,0.200960740447044,-0.975955784320831,0.122931405901909,0.179995149374008,-0.984196782112122,0.119267627596855,0.130889177322388,-0.975951254367828,0.122973397374153,0.179991215467453,-0.965281188488007,0.12629659473896,0.228651732206345,-0.935250759124756,-0.0798244774341583,0.344868153333664,-0.940778970718384,-0.0902377516031265,0.326790302991867,-0.956320762634277,-0.0624878332018852,0.285562455654144,-0.951440215110779,-0.0515046268701553,0.30349400639534,-0.975501179695129,0.122645743191242,0.182634741067886,-0.985785782337189,0.118014365434647,0.119578301906586,-0.975472092628479,0.122914768755436,0.182609438896179,-0.961174547672272,0.127136871218681,0.244907602667809,-0.834052860736847,-0.547313332557678,0.0693105086684227,-0.842653810977936,-0.535434544086456,0.0569601319730282,-0.830066204071045,-0.557659983634949,-0.0023813012521714,-0.822204053401947,-0.569088459014893,0.0109033109620214,-0.98875880241394,0.116606935858727,0.0935889929533005, +-0.988840997219086,0.116541430354118,0.09279865026474,-0.988762199878693,0.116576164960861,0.0935918539762497,-0.988680005073547,0.116635218262672,0.0943827256560326,-0.987881422042847,0.117251262068748,0.101697713136673,-0.989486038684845,0.115985468029976,0.0863991156220436,-0.987879872322083,0.117265522480011,0.101696386933327,-0.986043512821198,0.118470683693886,0.11697381734848,-0.994075775146484,0.105334371328354,-0.0267969742417336,-0.994074046611786,0.105350151658058,-0.0267984382808208,-0.994073510169983,0.105356015264988,-0.0267989858984947,-0.988079071044922,0.116303719580173,0.100862234830856,-0.984687209129333,0.118569865822792,0.127797961235046,-0.980587303638458,0.120537661015987,0.154658317565918,-0.984696209430695,0.118486426770687,0.127805694937706,-0.991989731788635,0.113184750080109,0.0560858957469463,-0.989709317684174,0.115260645747185,0.0847955495119095,-0.986559271812439,0.117652460932732,0.113396197557449,-0.989678561687469,0.115544676780701,0.0847690775990486,-0.983960568904877,0.118838161230087,0.133038654923439,-0.983954906463623,0.118890471756458,0.133033812046051,-0.98396360874176,0.118809401988983,0.133041307330132,-0.954172551631927,0.128199547529221,0.270406305789948,-0.954172551631927,0.12820003926754,0.270406275987625,-0.954171180725098,0.12821264564991,0.27040508389473,-0.974592506885529,0.123299531638622,0.186994388699532,-0.974593698978424,0.123287789523602,0.186995431780815,-0.974591374397278,0.123309977352619,0.186993435025215,-0.987406730651855,0.117022976279259,0.106460116803646,-0.987453758716583,0.116587720811367,0.106500521302223,-0.987457752227783,0.116551078855991,0.106503911316395,-0.990149140357971,0.116498373448849,0.0776713266968727,-0.990136802196503,0.116610676050186,0.0776612013578415,-0.990031719207764,0.117555759847164,0.0775748789310455,-0.987158954143524,0.119358755648136,0.106163784861565,-0.966304063796997,0.127706229686737,0.223489493131638,-0.987164855003357,0.119305685162544,0.106168650090694,-0.993937373161316,0.109215371310711,-0.0126686524599791,-0.993826389312744,0.104296170175076,-0.0378344506025314, +-0.993253409862518,0.102758839726448,-0.0537421517074108,-0.992428362369537,0.101178847253323,-0.0696345865726471,-0.99325555562973,0.102739132940769,-0.053740318864584,-0.994075417518616,0.108442895114422,0.00737506849691272,-0.988886177539825,0.115629315376282,0.0934568792581558,-0.994095861911774,0.10825403034687,0.00739257922396064,-0.99184662103653,0.100201934576035,-0.0787394642829895,-0.988682568073273,0.118277132511139,0.0922888964414597,-0.993180334568024,0.112944900989532,0.0289216749370098,-0.988684594631195,0.118259236216545,0.0922905579209328,-0.980166494846344,0.1231330037117,0.155280217528343,-0.988050162792206,0.116286091506481,0.101165406405926,-0.988892495632172,0.115646697580814,0.0933675616979599,-0.989676892757416,0.114969700574875,0.0855667665600777,-0.988896012306213,0.115614518523216,0.0933705568313599,-0.987896025180817,0.0981016755104065,-0.12015638500452,-0.987896025180817,0.0981016904115677,-0.120156392455101,-0.987896144390106,0.0981012582778931,-0.120156362652779,-0.714326500892639,-0.698846995830536,0.0367498695850372,-0.731480062007904,-0.677813649177551,0.0742005780339241,-0.736275255680084,-0.673365652561188,0.0669143348932266,-0.718676269054413,-0.694740355014801,0.0289892200380564,-0.922849953174591,-0.373103946447372,0.0956119000911713,-0.930529117584229,-0.356669038534164,0.0830819308757782,-0.92475163936615,-0.380460053682327,0.00920717511326075,-0.917737007141113,-0.39654341340065,0.0226303283125162,-0.987314939498901,0.116655260324478,0.107706815004349,-0.987314403057098,0.116660051047802,0.107706375420094,-0.987291693687439,0.116870522499084,0.107686802744865,-0.965463161468506,-0.198382183909416,0.16889451444149,-0.971386253833771,-0.178705647587776,0.15643872320652,-0.976575374603271,-0.202124446630478,0.0737988725304604,-0.971262037754059,-0.221552610397339,0.0869748070836067,-0.578347682952881,-0.811041653156281,0.0878951847553253,-0.595738351345062,-0.798120856285095,0.0899941399693489,-0.592764139175415,-0.799620628356934,0.0961125493049622,-0.575771152973175,-0.812152683734894,0.094317615032196, +-0.972046136856079,0.0304520390927792,0.232806861400604,-0.973237991333008,0.0407138466835022,0.226164311170578,-0.989260613918304,0.00717003783211112,0.145986437797546,-0.988257229328156,-0.00303893466480076,0.152769461274147,-0.545084059238434,-0.829107165336609,0.124357506632805,-0.557050704956055,-0.823028564453125,0.110988698899746,-0.551980495452881,-0.824194014072418,0.126577109098434,-0.541020750999451,-0.829216063022614,0.140346959233284,-0.946067988872528,0.260206580162048,0.19299727678299,-0.966535627841949,0.231042519211769,0.111481852829456,-0.968553364276886,0.217437624931335,0.120935127139091,-0.947706401348114,0.246610820293427,0.202572658658028,-0.530333757400513,-0.795624256134033,0.292794108390808,-0.533479154109955,-0.804027676582336,0.262563198804855,-0.52607673406601,-0.818080484867096,0.232352435588837,-0.521110236644745,-0.812023222446442,0.262797296047211,-0.569091320037842,-0.734351694583893,0.369949609041214,-0.569250345230103,-0.748698174953461,0.339713335037231,-0.546738505363464,-0.776138842105865,0.314142525196075,-0.544841706752777,-0.764177203178406,0.345225900411606,-0.762101650238037,0.551635444164276,0.338968217372894,-0.815799236297607,0.488774567842484,0.309145718812943,-0.80683696269989,0.517202377319336,0.285509765148163,-0.752851963043213,0.578548789024353,0.313839554786682,-0.637571811676025,-0.607397079467773,0.473889201879501,-0.636343479156494,-0.632803380489349,0.441165298223495,-0.5992152094841,-0.679457783699036,0.423412621021271,-0.599045038223267,-0.656802177429199,0.45799133181572,-0.599124729633331,0.669914722442627,0.438479006290436,-0.603225648403168,0.652944087982178,0.458020627498627,-0.662173688411713,0.606121480464935,0.440616339445114,-0.657511591911316,0.62414425611496,0.422045737504959,-0.71799623966217,-0.559177339076996,0.414490133523941,-0.712837934494019,-0.584525346755981,0.387546449899673,-0.670843541622162,-0.633336305618286,0.385816127061844,-0.675077319145203,-0.610172629356384,0.414680570363998,-0.440199822187424,0.853078246116638,0.280145734548569, +-0.447231888771057,0.83220773935318,0.327740639448166,-0.510012924671173,0.784207999706268,0.353418529033661,-0.500623762607574,0.809026598930359,0.307980298995972,-0.77149361371994,-0.388511925935745,0.50384122133255,-0.725403785705566,-0.456216067075729,0.515418648719788,-0.725569248199463,-0.421159327030182,0.544218778610229,-0.771701455116272,-0.351407945156097,0.530084311962128,-0.387085914611816,0.898393571376801,0.207493901252747,-0.391768276691437,0.882827699184418,0.259100139141083,-0.443378955125809,0.845471799373627,0.297645032405853,-0.435355097055435,0.865464627742767,0.24786451458931,-0.85848206281662,-0.262423247098923,0.440616130828857,-0.816361546516418,-0.320580244064331,0.480397939682007,-0.816812992095947,-0.296498388051987,0.494878977537155,-0.858854830265045,-0.2375458329916,0.453806489706039,-0.323341429233551,0.925162196159363,0.198809608817101,-0.319515585899353,0.916470170021057,0.240815922617912,-0.346811205148697,0.894607663154602,0.281778544187546,-0.347820460796356,0.906264662742615,0.240219280123711,-0.929603755474091,-0.142125338315964,0.340054571628571,-0.896629869937897,-0.2168148458004,0.386065095663071,-0.896652579307556,-0.17631433904171,0.406112611293793,-0.928212761878967,-0.100704208016396,0.358161926269531,-0.318456918001175,0.946853697299957,0.0453127436339855,-0.312813222408295,0.947077929973602,0.0720503926277161,-0.317094027996063,0.94305831193924,0.100460857152939,-0.320655226707458,0.944355189800262,0.0733052864670753,-0.969306766986847,0.0431681387126446,0.242034897208214,-0.94391530752182,0.0320255532860756,0.328630864620209,-0.948146998882294,0.00933536421507597,0.317694991827011,-0.972719848155975,0.0203539356589317,0.231088221073151,-0.320915430784225,0.94664865732193,0.0294912923127413,-0.317076444625854,0.946962714195251,0.0521954037249088,-0.321714162826538,0.946373224258423,0.029628936201334,-0.327313154935837,0.944886088371277,0.00750831421464682,-0.962402641773224,0.267511546611786,0.0471034348011017,-0.957847356796265,0.28201961517334,0.0547111667692661,-0.953611314296722,0.265773952007294,0.141384765505791, +-0.958588600158691,0.251277238130569,0.134043037891388,-0.357493609189987,0.93354994058609,-0.0261323992162943,-0.342264831066132,0.939406633377075,-0.0192351900041103,-0.346856087446213,0.937395691871643,-0.0313076600432396,-0.363047242164612,0.931011199951172,-0.0376147292554379,-0.945918798446655,0.299632966518402,-0.124328881502151,-0.94159471988678,0.316427767276764,-0.115207619965076,-0.952101528644562,0.304423570632935,-0.0287952572107315,-0.956999540328979,0.287639439105988,-0.0376232601702213,-0.460063397884369,0.879714787006378,-0.120181411504745,-0.435753732919693,0.889278292655945,-0.138934552669525,-0.435859024524689,0.889373481273651,-0.137992188334465,-0.460124939680099,0.879822313785553,-0.119154296815395,-0.839782953262329,0.506920874118805,-0.194411560893059,-0.832606852054596,0.522584974765778,-0.183496281504631,-0.851528823375702,0.51341712474823,-0.106308698654175,-0.859466373920441,0.497713595628738,-0.116613239049911,-0.591555237770081,0.800760388374329,-0.0940490290522575,-0.599184095859528,0.793897151947021,-0.103468999266624,-0.577344059944153,0.802498340606689,-0.150566548109055,-0.570465385913849,0.809211134910583,-0.140522211790085,-0.771170496940613,0.549482762813568,-0.321503907442093,-0.802480041980743,0.541184186935425,-0.251288086175919,-0.80879944562912,0.526264190673828,-0.26246777176857,-0.776634812355042,0.534617483615875,-0.333200752735138,-0.800276696681976,-0.596646547317505,-0.0597501657903194,-0.802168309688568,-0.593688011169434,-0.0637230053544044,-0.767633855342865,-0.63023841381073,-0.116353191435337,-0.766028106212616,-0.63295304775238,-0.112122178077698,-0.68198573589325,-0.709399580955505,-0.177898347377777,-0.721709370613098,-0.677750170230865,-0.140678510069847,-0.723168730735779,-0.675193786621094,-0.145397633314133,-0.683065891265869,-0.707106411457062,-0.18281552195549,-0.931694209575653,-0.356483459472656,-0.0697540864348412,-0.932539224624634,-0.353773504495621,-0.0722153559327126,-0.903728723526001,-0.401570290327072,-0.148376911878586,-0.903012812137604,-0.404136329889297,-0.145745918154716, +-0.583414971828461,-0.804145455360413,-0.11391756683588,-0.617609918117523,-0.779480993747711,-0.104726232588291,-0.616086959838867,-0.781333565711975,-0.0997741669416428,-0.582307815551758,-0.805665791034698,-0.108720980584621,-0.97504734992981,-0.211510553956032,0.0674251392483711,-0.978801310062408,-0.196461200714111,0.0578887574374676,-0.97128701210022,-0.234759107232094,-0.0385972075164318,-0.967966377735138,-0.249467819929123,-0.0284073483198881,-0.523816525936127,-0.85147351026535,-0.0246785413473845,-0.544390857219696,-0.837789952754974,-0.041792631149292,-0.541596174240112,-0.84035313129425,-0.0219156630337238,-0.522673010826111,-0.852521419525146,-0.00448666978627443,-0.981216251850128,-0.00703607080504298,0.192782759666443,-0.982561528682709,0.00529434019699693,0.185862123966217,-0.995649993419647,-0.0363008119165897,0.0858113244175911,-0.994482636451721,-0.0484767705202103,0.093029148876667,-0.958930969238281,0.208863973617554,0.191904306411743,-0.983588516712189,0.146907538175583,0.104746513068676,-0.982742667198181,0.155938938260078,0.0994984358549118,-0.958005309104919,0.217802777886391,0.186514765024185,-0.847273707389832,0.466720372438431,0.253573298454285,-0.885740160942078,0.434705764055252,0.162773698568344,-0.880449712276459,0.449139773845673,0.151926755905151,-0.842651784420013,0.480934202671051,0.242157638072968,-0.710735738277435,0.627314507961273,0.318325638771057,-0.760775804519653,0.601578235626221,0.243565037846565,-0.754501342773438,0.614560782909393,0.230310127139091,-0.705520212650299,0.640001237392426,0.304367452859879,-0.475470215082169,0.844614565372467,0.246077910065651,-0.4764504134655,0.842695534229279,0.250717520713806,-0.526793539524078,0.821208894252777,0.219327792525291,-0.525393605232239,0.823288321495056,0.21484449505806,-0.61113703250885,-0.742717802524567,0.273645371198654,-0.610640347003937,-0.743552267551422,0.272485852241516,-0.567332744598389,-0.769925236701965,0.29214534163475,-0.567504823207855,-0.769289314746857,0.293482899665833,-0.36813884973526,0.911801517009735,0.1819117218256, +-0.367443978786469,0.913080275058746,0.176831305027008,-0.407572835683823,0.896853446960449,0.171867296099663,-0.408741682767868,0.895364582538605,0.176783725619316,-0.762672483921051,-0.455071419477463,0.459609270095825,-0.758298516273499,-0.48428949713707,0.436402380466461,-0.700923204421997,-0.546180546283722,0.458686739206314,-0.70445042848587,-0.518878579139709,0.484267026185989,-0.310069859027863,0.948437452316284,0.0657509043812752,-0.311083614826202,0.949265658855438,0.046062134206295,-0.32913139462471,0.942023158073425,0.0653071478009224,-0.330039769411087,0.940139293670654,0.0849229469895363,-0.823763370513916,-0.34338515996933,0.45111021399498,-0.766346096992493,-0.414991080760956,0.490404218435287,-0.768287122249603,-0.381764858961105,0.513800144195557,-0.825811088085175,-0.308567762374878,0.472040235996246,-0.309123158454895,0.95074051618576,-0.0231382921338081,-0.312949389219284,0.949753820896149,0.00550365727394819,-0.311764389276505,0.949557662010193,0.0338144674897194,-0.305211216211319,0.952272176742554,0.00488333590328693,-0.92119562625885,-0.102088876068592,0.375468492507935,-0.876881241798401,-0.163002997636795,0.452227294445038,-0.875708699226379,-0.142552480101585,0.461316913366318,-0.919827461242676,-0.0813337191939354,0.383799761533737,-0.357231825590134,0.922497808933258,-0.146230146288872,-0.330888122320175,0.936524391174316,-0.115910060703754,-0.322668045759201,0.943218231201172,-0.0788965448737144,-0.345692008733749,0.931794226169586,-0.110710017383099,-0.974313676357269,0.0634980052709579,0.216058045625687,-0.950098693370819,0.014215225353837,0.311625450849533,-0.948688209056854,0.0247742123901844,0.315241098403931,-0.972776591777802,0.0740664973855019,0.21959014236927,-0.472433030605316,0.846845328807831,-0.24425396323204,-0.418826252222061,0.8786980509758,-0.229072377085686,-0.40256068110466,0.895590364933014,-0.189374759793282,-0.453279346227646,0.866893351078033,-0.207445561885834,-0.957003772258759,0.285049080848694,-0.0537661015987396,-0.951808989048004,0.303042441606522,-0.0471695102751255, +-0.966759145259857,0.251015424728394,0.0486624836921692,-0.971596896648407,0.232817962765694,0.0423700958490372,-0.61672455072403,0.742285370826721,-0.26203665137291,-0.551695048809052,0.786459863185883,-0.27769261598587,-0.532136142253876,0.81014347076416,-0.24596481025219,-0.595650613307953,0.768552839756012,-0.233509734272957,-0.80002760887146,0.585576713085175,-0.130597785115242,-0.782272517681122,0.612239897251129,-0.114944487810135,-0.828370928764343,0.558248460292816,-0.0464763678610325,-0.845697402954102,0.530262649059296,-0.0601455755531788,-0.778773665428162,0.617283046245575,-0.111683636903763,-0.72174459695816,0.672083854675293,-0.165492907166481,-0.698811292648315,0.700736463069916,-0.143635764718056,-0.755989909172058,0.647989213466644,-0.0926779359579086,-0.353161066770554,0.933240652084351,0.0658726766705513,-0.355356901884079,0.931335031986237,0.0796025767922401,-0.333342462778091,0.94035416841507,0.0679466053843498,-0.332565873861313,0.941543757915497,0.0538098067045212,-0.330652594566345,0.939023315906525,-0.0943615883588791,-0.324909925460815,0.943455278873444,-0.0657709538936615,-0.323771297931671,0.945424377918243,-0.0366732105612755,-0.326709061861038,0.942855596542358,-0.0654575973749161,-0.425382494926453,0.897069454193115,0.11965037882328,-0.427259802818298,0.895820021629333,0.122293040156364,-0.392200142145157,0.910551190376282,0.13067390024662,-0.390663862228394,0.911638736724854,0.127658814191818,-0.391113460063934,0.896764516830444,-0.206987664103508,-0.358335077762604,0.916558742523193,-0.177528068423271,-0.349938750267029,0.926376223564148,-0.139176219701767,-0.379391044378281,0.90946638584137,-0.170098036527634,-0.550085723400116,0.812232851982117,0.194122299551964,-0.548245131969452,0.815505504608154,0.185413137078285,-0.504331767559052,0.834604382514954,0.221551671624184,-0.505469441413879,0.831526756286621,0.230356052517891,-0.477944403886795,0.847946643829346,-0.229250207543373,-0.429270654916763,0.876487851142883,-0.217935144901276,-0.41508948802948,0.890830934047699,-0.1847193390131, +-0.461197674274445,0.86487889289856,-0.198194518685341,-0.67983090877533,0.709781467914581,0.18450029194355,-0.675643265247345,0.716698408126831,0.172770425677299,-0.632309138774872,0.739819347858429,0.229896530508995,-0.635585725307465,0.733123183250427,0.24199441075325,-0.712854564189911,0.64190149307251,-0.282490402460098,-0.731432616710663,0.609355509281158,-0.306091815233231,-0.666930377483368,0.664223492145538,-0.337655007839203,-0.648869097232819,0.694401502609253,-0.311087429523468,-0.773370742797852,0.597865104675293,0.210843592882156,-0.729884266853333,0.621745109558105,0.284081041812897,-0.733963787555695,0.609575212001801,0.299524992704391,-0.778572142124176,0.585523724555969,0.225804075598717,-0.778209865093231,0.613531768321991,-0.134045347571373,-0.796626150608063,0.585679352283478,-0.149554401636124,-0.743387460708618,0.637863457202911,-0.201259225606918,-0.724904000759125,0.663977563381195,-0.183433875441551,-0.887978613376617,0.440685123205185,0.131493806838989,-0.862526655197144,0.447525918483734,0.236153289675713,-0.871824443340302,0.410743147134781,0.26685619354248,-0.900316119194031,0.404193311929703,0.161426782608032,-0.894747793674469,0.445355445146561,-0.0329385474324226,-0.90460878610611,0.424413502216339,-0.0394483841955662,-0.872290849685669,0.474821358919144,-0.116847738623619,-0.861971855163574,0.495037466287613,-0.109281189739704,-0.984325468540192,0.15388411283493,0.0861572250723839,-0.966585159301758,0.161625638604164,0.198973342776299,-0.966602087020874,0.120253935456276,0.226317018270493,-0.987064242362976,0.112855009734631,0.113876886665821,-0.950262010097504,0.289224356412888,0.115548357367516,-0.955096065998077,0.273897111415863,0.1130136474967,-0.946211278438568,0.322688072919846,0.0235928073525429,-0.940873563289642,0.337722033262253,0.0264728609472513,-0.43807664513588,-0.44874519109726,-0.77892017364502,-0.435307443141937,-0.46200504899025,-0.772695899009705,-0.430826246738434,-0.46406289935112,-0.773973107337952,-0.433659613132477,-0.450892001390457,-0.780151128768921,-0.990784466266632,0.0289481803774834,0.132319122552872, +-0.998105227947235,0.0527573525905609,0.0316661223769188,-0.998856484889984,0.0411935448646545,0.024266155436635,-0.992023050785065,0.0174587015062571,0.124841719865799,-0.958459854125977,-0.254603654146194,-0.128575578331947,-0.954442918300629,-0.274009168148041,-0.118143670260906,-0.977364897727966,-0.205175772309303,-0.0515822395682335,-0.980806887149811,-0.185132220387459,-0.0611892975866795,-0.950976967811584,-0.121807187795639,0.284263998270035,-0.976775646209717,-0.103922069072723,0.187375128269196,-0.976629912853241,-0.122811019420624,0.176384478807449,-0.951716899871826,-0.140511780977249,0.272931098937988,-0.860702931880951,-0.485733181238174,-0.152491599321365,-0.848106861114502,-0.514538288116455,-0.126353099942207,-0.891984879970551,-0.442380994558334,-0.0930700376629829,-0.903997600078583,-0.411225318908691,-0.116971366107464,-0.859486520290375,-0.384713232517242,0.336568921804428,-0.894182026386261,-0.366716295480728,0.256822258234024,-0.89086502790451,-0.383019804954529,0.244244366884232,-0.857269883155823,-0.400683343410492,0.323328346014023,-0.766583502292633,-0.608484625816345,-0.20517361164093,-0.7538241147995,-0.634293377399445,-0.171525865793228,-0.805176198482513,-0.57044643163681,-0.162117898464203,-0.818244278430939,-0.541425287723541,-0.193223133683205,-0.694646716117859,-0.622277140617371,0.360883802175522,-0.695076465606689,-0.616821467876434,0.369323700666428,-0.735872864723206,-0.594421625137329,0.324274778366089,-0.734760999679565,-0.60020786523819,0.316032856702805,-0.680963337421417,-0.72490930557251,-0.10390155762434,-0.728933870792389,-0.676225900650024,-0.106649339199066,-0.743024885654449,-0.654932379722595,-0.137759044766426,-0.693926334381104,-0.706862270832062,-0.137156501412392,-0.605057656764984,-0.70517885684967,0.369632393121719,-0.604306280612946,-0.703224122524261,0.374552726745605,-0.643071413040161,-0.681634426116943,0.349046975374222,-0.64345395565033,-0.683815598487854,0.344039618968964,-0.590561211109161,-0.805827617645264,-0.0433512628078461,-0.628678023815155,-0.77481347322464,-0.0665439590811729, +-0.640862643718719,-0.76078850030899,-0.102450795471668,-0.60066157579422,-0.795409977436066,-0.0807991251349449,-0.537149548530579,-0.807352602481842,0.244238063693047,-0.536328613758087,-0.811601638793945,0.231634691357613,-0.558278441429138,-0.794626414775848,0.238524809479713,-0.560233414173126,-0.789546430110931,0.250509887933731,-0.537258625030518,-0.842972695827484,0.0273904986679554,-0.557979345321655,-0.829847455024719,-0.0035082392860204,-0.565057098865509,-0.82419365644455,-0.0376200526952744,-0.541855990886688,-0.840440094470978,-0.00724710756912827,-0.522844076156616,-0.846373021602631,0.101423770189285,-0.524834752082825,-0.847790896892548,0.0761514529585838,-0.523702085018158,-0.845856368541718,0.101306550204754,-0.523805022239685,-0.842433214187622,0.126233294606209,-0.965355515480042,-0.177694037556648,0.191085159778595,-0.958074152469635,-0.255732178688049,0.129209041595459,-0.954877197742462,-0.210649088025093,0.2093715518713,-0.954802632331848,-0.12843382358551,0.268061369657516,0.889102935791016,-0.250556141138077,-0.383037269115448,0.892211318016052,-0.232136145234108,-0.387391030788422,0.905803263187408,-0.24514052271843,-0.345581442117691,0.899509191513062,-0.261209517717361,-0.350218236446381,0.86375766992569,-0.22154837846756,-0.452591478824615,0.858665764331818,-0.194375589489937,-0.474248200654984,0.876662194728851,-0.215291276574135,-0.430247724056244,0.87594872713089,-0.23903951048851,-0.419015675783157,0.790206730365753,-0.17965193092823,-0.585916638374329,0.786111831665039,-0.249490901827812,-0.565493106842041,0.826055943965912,-0.247638955712318,-0.506267309188843,0.845920979976654,-0.203914478421211,-0.49278450012207,0.819718062877655,-0.0784410163760185,-0.567370712757111,0.845860660076141,-0.0803571715950966,-0.527316510677338,0.867891013622284,-0.169589295983315,-0.46690970659256,0.851656138896942,-0.185680508613586,-0.490106910467148,0.767378330230713,-0.0788909569382668,-0.636322975158691,0.774514615535736,-0.111342638731003,-0.622679650783539,0.833022654056549,-0.203318610787392,-0.514523804187775, +0.836233019828796,-0.189297407865524,-0.514665722846985,0.707529008388519,-0.0970960631966591,-0.699982225894928,0.719458162784576,-0.106631264090538,-0.686301529407501,0.795411765575409,-0.239711731672287,-0.556649386882782,0.794063866138458,-0.236132323741913,-0.560092926025391,-0.486603617668152,-0.558789432048798,-0.671544134616852,-0.445630520582199,-0.510436952114105,-0.735436975955963,-0.430857837200165,-0.514359652996063,-0.741482138633728,-0.490432322025299,-0.57763010263443,-0.652548551559448,-0.707287192344666,-0.340522587299347,-0.619507133960724,-0.66239207983017,-0.330673187971115,-0.672229111194611,-0.658992230892181,-0.289116829633713,-0.694363474845886,-0.718740582466125,-0.308352112770081,-0.623162090778351,-0.778155922889709,-0.200053378939629,-0.595358729362488,-0.75235515832901,-0.187237709760666,-0.631588280200958,-0.784011960029602,-0.232459917664528,-0.57557612657547,-0.799377024173737,-0.241916686296463,-0.549975216388702,-0.886143922805786,-0.11307468265295,-0.449402987957001,-0.860878348350525,-0.0884794965386391,-0.501058876514435,-0.883069813251495,-0.119406200945377,-0.453794986009598,-0.89326798915863,-0.13303929567337,-0.429386526346207,-0.967302262783051,0.0231774356216192,-0.252565503120422,-0.949722766876221,0.0291772335767746,-0.311729371547699,-0.952910423278809,-0.00156778830569237,-0.303248256444931,-0.966124475002289,-0.00534390658140182,-0.258021384477615,-0.992353558540344,0.0430654659867287,-0.115670792758465,-0.981797099113464,0.0308220200240612,-0.187415733933449,-0.977841079235077,-0.0086670545861125,-0.209169119596481,-0.989359438419342,0.00240868469700217,-0.145472094416618,0.0313283503055573,0.891977787017822,-0.450992465019226,0.321976572275162,0.825110375881195,-0.464245408773422,0.584213972091675,0.685721337795258,-0.434143215417862,0.321703463792801,0.824177503585815,-0.466088324785233,0.0872915908694267,-0.912264108657837,-0.40019291639328,0.0861319154500961,-0.887077927589417,-0.453512966632843,0.0679605826735497,-0.880578994750977,-0.469001084566116,0.0681187734007835,-0.907389283180237,-0.414734244346619, +0.0892504677176476,-0.936947047710419,-0.337882697582245,0.0822420492768288,-0.936647415161133,-0.340482115745544,0.0959703475236893,-0.93032830953598,-0.353947639465332,0.103839576244354,-0.929963648319244,-0.352682530879974,0.245399057865143,-0.899075388908386,-0.362550348043442,0.244357392191887,-0.900073766708374,-0.360772430896759,0.228807806968689,-0.92359733581543,-0.307595402002335,0.231018140912056,-0.922861218452454,-0.308152377605438,0.191743105649948,-0.875765204429626,-0.443023473024368,0.156927660107613,-0.909782767295837,-0.384277313947678,0.181687235832214,-0.90700888633728,-0.379900813102722,0.217481017112732,-0.870636582374573,-0.441241383552551,-0.570770263671875,-0.751589357852936,-0.33065801858902,-0.602421820163727,-0.72793447971344,-0.327413350343704,-0.581921696662903,-0.731836080551147,-0.354658931493759,-0.542910695075989,-0.764976918697357,-0.346494376659393,-0.586969792842865,-0.772582411766052,-0.242038682103157,-0.586329996585846,-0.761521995067596,-0.276226997375488,-0.597292959690094,-0.757680535316467,-0.262985497713089,-0.598497152328491,-0.767315149307251,-0.230279952287674,-0.601690649986267,-0.772293865680695,-0.203790605068207,-0.601975202560425,-0.770447611808777,-0.20984822511673,-0.60369598865509,-0.769662082195282,-0.207777976989746,-0.603618741035461,-0.771243035793304,-0.202060922980309,-0.749492228031158,-0.651636183261871,-0.116755522787571,-0.747230231761932,-0.653835117816925,-0.118940263986588,-0.733989000320435,-0.672609269618988,-0.0941109284758568,-0.736293613910675,-0.670327842235565,-0.0923710018396378,-0.86040735244751,-0.492287129163742,-0.131729379296303,-0.86217212677002,-0.490627825260162,-0.126268535852432,-0.850038886070251,-0.522187292575836,-0.0689515769481659,-0.847921788692474,-0.52515709400177,-0.0723790153861046,-0.367265492677689,-0.659165918827057,-0.656213641166687,-0.366658836603165,-0.659265577793121,-0.656452775001526,-0.473551660776138,-0.652202486991882,-0.59192967414856,-0.474017798900604,-0.651997745037079,-0.591782093048096,0.867434442043304,0.264595001935959,-0.421363472938538, +0.867277145385742,0.235331118106842,-0.438690841197968,0.867380380630493,0.235918760299683,-0.438170969486237,0.867520034313202,0.265676289796829,-0.420505732297897,0.756318867206573,0.391606956720352,-0.524047672748566,0.753069937229156,0.369749397039413,-0.544215977191925,0.75812953710556,0.368003487586975,-0.538342952728271,0.76132071018219,0.38979634642601,-0.518121242523193,0.612726032733917,0.501266777515411,-0.610981464385986,0.627571642398834,0.471645087003708,-0.61943906545639,0.615776181221008,0.476885944604874,-0.627215623855591,0.600709140300751,0.507098376750946,-0.618061244487762,0.464264005422592,0.597277343273163,-0.654002010822296,0.473345845937729,0.568089604377747,-0.673214614391327,0.468634843826294,0.571216106414795,-0.673864662647247,0.459655314683914,0.599465310573578,-0.655254423618317,0.16075411438942,0.70242828130722,-0.6933633685112,0.161221459507942,0.677320539951324,-0.717805445194244,0.16536819934845,0.677978754043579,-0.716238975524902,0.164808765053749,0.703924000263214,-0.69089013338089,0.0810727179050446,0.726095199584961,-0.682797849178314,0.0757941454648972,0.701364815235138,-0.70876133441925,0.0855643898248672,0.703360974788666,-0.705664217472076,0.0908309370279312,0.727953970432281,-0.67958277463913,-0.124231696128845,0.743410229682922,-0.657196938991547,-0.116191938519478,0.723920881748199,-0.680027961730957,-0.119512438774109,0.724100589752197,-0.679260849952698,-0.127395644783974,0.74296647310257,-0.657092988491058,-0.420486152172089,0.721964001655579,-0.549508392810822,-0.434033155441284,0.716211080551147,-0.546495139598846,-0.41604420542717,0.702359139919281,-0.577580153942108,-0.40245732665062,0.70797210931778,-0.580347836017609,-0.738173067569733,0.56932806968689,-0.361892551183701,-0.735949873924255,0.574219584465027,-0.358677834272385,-0.736084759235382,0.5557821393013,-0.386374920606613,-0.738201558589935,0.550896346569061,-0.389322131872177,-0.840068280696869,0.477566331624985,-0.257324457168579,-0.841919362545013,0.476221024990082,-0.253742545843124,-0.839559495449066,0.468472898006439,-0.27508732676506, +-0.837628901004791,0.469326078891754,-0.279483586549759,-0.900702476501465,0.403850495815277,-0.160124823451042,-0.900871276855469,0.403844028711319,-0.159188508987427,-0.901368796825409,0.391742885112762,-0.184585675597191,-0.901192724704742,0.391108214855194,-0.18677806854248,-0.942222118377686,0.32746496796608,-0.070598877966404,-0.945411264896393,0.31901341676712,-0.0665427297353745,-0.949841976165771,0.30239474773407,-0.0797346532344818,-0.946759343147278,0.310822248458862,-0.083882600069046,-0.977366030216217,0.210298895835876,0.0230243988335133,-0.977978229522705,0.208577588200569,0.00734869763255119,-0.97894424200058,0.203881621360779,0.0100274998694658,-0.978264331817627,0.205775737762451,0.0255977809429169,-0.971945405006409,0.234044820070267,0.0233503319323063,-0.949308633804321,0.312685608863831,-0.0322625711560249,-0.97334760427475,0.228950440883636,0.0132685070857406,-0.986521124839783,0.148311197757721,0.0691368505358696,-0.982023000717163,0.167719095945358,0.0866099819540977,-0.98191225528717,0.164309158921242,0.0940798744559288,-0.98718649148941,0.142195239663124,0.0724114999175072,-0.987345099449158,0.144840687513351,0.0645823180675507,-0.956184089183807,0.29068261384964,-0.0348691418766975,-0.957050859928131,0.288306295871735,-0.030547859147191,-0.961462616920471,0.271009802818298,-0.046297051012516,-0.960653245449066,0.273067086935043,-0.0507910586893559,-0.893000841140747,0.413812339305878,-0.176943197846413,-0.896031498908997,0.396931767463684,-0.19892905652523,-0.89977365732193,0.393070340156555,-0.18948133289814,-0.896550297737122,0.410116761922836,-0.167337268590927,-0.787719368934631,0.53668224811554,-0.302440792322159,-0.786255657672882,0.538209021091461,-0.303534328937531,-0.799320638179779,0.507944464683533,-0.321059048175812,-0.800401031970978,0.507312297821045,-0.319362878799438,-0.635652601718903,0.643900871276855,-0.425837218761444,-0.64920049905777,0.639629721641541,-0.411597460508347,-0.647165954113007,0.620260000228882,-0.443231135606766,-0.633722722530365,0.623550295829773,-0.457799643278122, +-0.462926238775253,0.701184332370758,-0.542254447937012,-0.463787019252777,0.701597392559052,-0.540983140468597,-0.470290631055832,0.687870979309082,-0.552865505218506,-0.469238549470901,0.687959492206573,-0.553648710250854,-0.278000205755234,0.730346441268921,-0.623947083950043,-0.261700630187988,0.730972588062286,-0.630231618881226,-0.291090756654739,0.711110234260559,-0.639990866184235,-0.306605458259583,0.711572170257568,-0.632185220718384,-0.0721541792154312,0.736528515815735,-0.672547101974487,-0.0506741032004356,0.734594881534576,-0.676611006259918,-0.0883501321077347,0.715637266635895,-0.69286185503006,-0.109548427164555,0.717566728591919,-0.687820613384247,0.133835971355438,0.713137030601501,-0.688130557537079,0.14249849319458,0.714328706264496,-0.685148656368256,0.119826510548592,0.696385860443115,-0.707593441009521,0.111069060862064,0.694863796234131,-0.710512459278107,0.35115721821785,0.645940244197845,-0.67782735824585,0.357971996068954,0.645714223384857,-0.674469590187073,0.336424052715302,0.629078924655914,-0.700770020484924,0.328535377979279,0.628522992134094,-0.704998850822449,0.548506259918213,0.544566094875336,-0.634498715400696,0.544705629348755,0.547094285488129,-0.635597109794617,0.532785058021545,0.538284003734589,-0.652985751628876,0.535586178302765,0.534818649291992,-0.653541624546051,0.593807697296143,0.518352508544922,-0.615388512611389,0.580524206161499,0.514836668968201,-0.630820751190186,0.587355077266693,0.509229421615601,-0.629046380519867,0.600614309310913,0.512689292430878,-0.613524377346039,0.717047214508057,0.429837554693222,-0.548710405826569,0.70220822095871,0.421878457069397,-0.573517322540283,0.707210838794708,0.416507810354233,-0.571291625499725,0.722204685211182,0.424610555171967,-0.546009421348572,0.81899756193161,0.311280757188797,-0.482024103403091,0.814480245113373,0.3069788813591,-0.492327243089676,0.815301597118378,0.306251138448715,-0.491419970989227,0.819603621959686,0.310202568769455,-0.481689006090164,0.925307810306549,0.148548617959023,-0.348910868167877,0.911995410919189,0.142296001315117,-0.384728759527206, +0.90788996219635,0.151077747344971,-0.391038835048676,0.921289443969727,0.156907171010971,-0.355817168951035,0.942038357257843,0.123422130942345,-0.311978697776794,0.938198149204254,0.104004465043545,-0.3301020860672,0.9394571185112,0.0941959694027901,-0.329465389251709,0.944142282009125,0.114757411181927,-0.308911323547363,0.967644989490509,0.00775659875944257,-0.252196431159973,0.964398205280304,0.0258014611899853,-0.263192564249039,0.961233735084534,0.0448712296783924,-0.272059708833694,0.964936137199402,0.0268228705972433,-0.261110663414001,0.986066520214081,-0.0759748294949532,-0.147989213466644,0.979518592357635,-0.0952034518122673,-0.177424892783165,0.979537308216095,-0.0913514643907547,-0.179336905479431,0.986099660396576,-0.0720371231436729,-0.149726927280426,0.9568812251091,0.0752073526382446,-0.280574768781662,0.957097887992859,0.0480549782514572,-0.28575211763382,0.959285795688629,0.0432171151041985,-0.279111236333847,0.959205269813538,0.0709055438637733,-0.273674488067627,-0.940300583839417,0.130776897072792,0.314216881990433,-0.94030100107193,0.130773767828941,0.314217209815979,-0.940384924411774,0.129991620779037,0.314290344715118,-0.977172017097473,0.120866768062115,0.174716621637344,-0.961801707744598,0.125718981027603,0.243171274662018,-0.97717010974884,0.1208850517869,0.174714863300323,-0.987597227096558,0.116462111473083,0.10530099272728,-0.983355700969696,0.119650810956955,0.136731132864952,-0.994125425815582,0.108223013579845,-0.00162149302195758,-0.983323097229004,0.119948960840702,0.136703968048096,-0.953524708747864,0.128721490502357,0.272436112165451,-0.956930160522461,-0.270054697990417,0.106560431420803,-0.937184274196625,-0.345639139413834,0.047109168022871,-0.925235211849213,-0.373991727828979,0.0637966841459274,-0.946184039115906,-0.299829840660095,0.121811196208,-0.935416281223297,0.131363168358803,0.328237920999527,-0.966811537742615,0.125012397766113,0.222816467285156,-0.986451685428619,0.117316246032715,0.11467420309782,-0.966791868209839,0.125195354223251,0.222799569368362,-0.690422058105469,-0.723307311534882,0.0119951562955976, +-0.700408220291138,-0.711292266845703,0.0590899623930454,-0.713515520095825,-0.699633538722992,0.0375302582979202,-0.701776027679443,-0.71231472492218,-0.0108689181506634,-0.587774813175201,-0.792684853076935,-0.16177599132061,-0.544698059558868,-0.792865693569183,-0.273254424333572,-0.478861510753632,-0.791550517082214,-0.379657030105591,-0.514868557453156,-0.807098507881165,-0.288967609405518,-0.688756823539734,-0.71500962972641,-0.119897037744522,-0.596233010292053,-0.783518552780151,-0.174942672252655,-0.476720780134201,-0.845849096775055,-0.239325255155563,-0.568938136100769,-0.795137107372284,-0.209919854998589,-0.990634262561798,0.114943765103817,0.0737013220787048,-0.990272581577301,0.115307189524174,0.0778743177652359,-0.990631997585297,0.11496389657259,0.0736994370818138,-0.990975558757782,0.114603519439697,0.0695246681571007,-0.990663409233093,0.114895269274712,0.073383241891861,-0.990661144256592,0.114916905760765,0.0733812376856804,-0.990710198879242,0.114465676248074,0.0734229683876038,-0.993291676044464,0.103524588048458,-0.0515220426023006,-0.982836663722992,0.119586490094662,0.140467122197151,-0.935711622238159,0.131953835487366,0.327157706022263,-0.982784926891327,0.12006289511919,0.140423074364662,-0.904705882072449,0.362263172864914,0.224215716123581,-0.902982652187347,0.335477530956268,0.268472254276276,-0.903302013874054,0.317799687385559,0.288181871175766,-0.981430649757385,0.120424948632717,0.149304211139679,-0.991367161273956,0.099279560148716,-0.0856435149908066,-0.946028470993042,0.0726931244134903,-0.31582573056221,-0.991367161273956,0.0992793366312981,-0.0856434926390648,-0.97257673740387,0.124432310461998,0.196497574448586,-0.972573816776276,0.124459065496922,0.196495071053505,-0.972567141056061,0.12451957911253,0.196489363908768,-0.929969012737274,-0.338164240121841,0.144231051206589,-0.930418312549591,-0.338726907968521,0.139949664473534,-0.93888533115387,-0.319646298885345,0.127752169966698,-0.938504874706268,-0.318983137607574,0.13213075697422,-0.917023301124573,-0.368678867816925,0.152132079005241, +-0.917846143245697,-0.371216267347336,0.140559732913971,-0.923620998859406,-0.362155437469482,0.125569552183151,-0.923090040683746,-0.359286367893219,0.137178868055344,-0.914918839931488,-0.392471641302109,0.0942843183875084,-0.913989365100861,-0.389255344867706,0.114471167325974,-0.91452020406723,-0.381772369146347,0.133800998330116,-0.915296614170074,-0.386330991983414,0.113932095468044,-0.919121205806732,-0.384931862354279,0.08392633497715,-0.918820440769196,-0.385293126106262,0.0855477452278137,-0.916074633598328,-0.391361564397812,0.0874267444014549,-0.916256427764893,-0.391288489103317,0.085834689438343,-0.933977782726288,-0.357210755348206,0.00927424989640713,-0.933504819869995,-0.358352839946747,0.0123278582468629,-0.926755368709564,-0.375377207994461,0.01471998821944,-0.927143335342407,-0.374527543783188,0.0115914661437273,-0.950688540935516,-0.310095936059952,-0.00565915135666728,-0.950371146202087,-0.31101980805397,-0.00783954095095396,-0.942014455795288,-0.335320383310318,-0.0130012957379222,-0.942373633384705,-0.334384053945541,-0.0109210843220353,-0.969118118286133,-0.242734804749489,-0.0434751138091087,-0.968636989593506,-0.246201694011688,-0.0335717983543873,-0.9598228931427,-0.27904224395752,-0.0295882448554039,-0.960371911525726,-0.27588415145874,-0.0396696738898754,-0.984001457691193,-0.17747163772583,-0.015651797875762,-0.984174311161041,-0.174545660614967,-0.0305736009031534,-0.977026760578156,-0.206030040979385,-0.0545012205839157,-0.977221608161926,-0.208501666784286,-0.039561428129673,-0.991847515106201,-0.117593787610531,0.0490943975746632,-0.98995041847229,-0.124126836657524,0.0677536353468895,-0.983279287815094,-0.165655791759491,0.0756304711103439,-0.98557710647583,-0.159391820430756,0.0568503998219967,-0.992264986038208,-0.0550573356449604,0.111260689795017,-0.989892899990082,-0.061095092445612,0.127981632947922,-0.985751032829285,-0.103952668607235,0.13224583864212,-0.988463640213013,-0.0979803651571274,0.115496143698692,-0.981605350971222,0.00171571422833949,0.190913558006287,-0.980365097522736,-0.000404525373596698,0.197190523147583, +-0.983444690704346,-0.0360667444765568,0.177583277225494,-0.984637498855591,-0.0337626449763775,0.171315744519234,-0.997475326061249,0.0710028856992722,-0.00125961261801422,-0.994204580783844,0.102757357060909,0.0315911024808884,-0.994043469429016,0.0963592827320099,0.0509164035320282,-0.997762322425842,0.0643945559859276,0.0179886016994715,-0.988609671592712,0.12961933016777,0.0764840096235275,-0.982112288475037,0.170035898685455,0.0808907970786095,-0.982085764408112,0.173886701464653,0.0726017281413078,-0.988729119300842,0.13331426680088,0.0681324526667595,-0.937313258647919,0.225766032934189,0.265468567609787,-0.930920600891113,0.216935008764267,0.293813019990921,-0.947952926158905,0.191071107983589,0.25470957159996,-0.953291058540344,0.200128376483917,0.226240649819374,-0.925386846065521,0.322312355041504,0.199434101581573,-0.925884544849396,0.327414333820343,0.188514471054077,-0.937425971031189,0.291089802980423,0.191047951579094,-0.936763882637024,0.285864174365997,0.201878905296326,-0.891696453094482,0.371564000844955,0.258491367101669,-0.888168394565582,0.369386613368988,0.273332595825195,-0.90498673915863,0.342559903860092,0.252293199300766,-0.908075153827667,0.345026403665543,0.237394884228706,-0.877022981643677,0.448379337787628,0.172588542103767,-0.878144204616547,0.454007506370544,0.150797799229622,-0.889297664165497,0.424895852804184,0.169154524803162,-0.888023793697357,0.418406277894974,0.190656468272209,-0.877075910568237,0.44847384095192,0.172072947025299,-0.863747298717499,0.471052527427673,0.179025381803513,-0.862246990203857,0.472067773342133,0.183526858687401,-0.875669360160828,0.449425011873245,0.176692947745323,-0.858849048614502,0.499755591154099,0.11235074698925,-0.848737001419067,0.516601383686066,0.11299841105938,-0.847945153713226,0.517861664295197,0.113173760473728,-0.857992887496948,0.501157104969025,0.112649530172348,-0.83199679851532,0.528734982013702,0.167989954352379,-0.823355793952942,0.542409300804138,0.166965365409851,-0.822710514068604,0.543451070785522,0.166758999228477,-0.831225872039795,0.529981374740601,0.167878806591034, +-0.817548930644989,0.553294718265533,0.15962065756321,-0.811412453651428,0.561449468135834,0.162433177232742,-0.810048878192902,0.5622318983078,0.166481703519821,-0.81614476442337,0.554169237613678,0.163719862699509,-0.808271288871765,0.566502749919891,0.160537004470825,-0.813660085201263,0.565187633037567,0.136089220643044,-0.819918930530548,0.561385095119476,0.112160474061966,-0.814218997955322,0.564331412315369,0.136299476027489,-0.839885175228119,0.54146146774292,0.0375816337764263,-0.849916458129883,0.526453256607056,0.0221126060932875,-0.854413092136383,0.519583523273468,0.00335653987713158,-0.844131410121918,0.535824775695801,0.0182723086327314,-0.867941498756409,0.496324181556702,-0.018435126170516,-0.869362890720367,0.493333041667938,0.0288200918585062,-0.859496414661407,0.506682276725769,0.067373625934124,-0.860448360443115,0.509117901325226,0.0206782352179289,-0.881288588047028,0.471221745014191,0.0357846803963184,-0.901190280914307,0.432944715023041,0.0203693620860577,-0.909287512302399,0.41608738899231,-0.0082302438095212,-0.889971554279327,0.45597243309021,0.00629656948149204,-0.968128502368927,0.125827014446259,0.216552019119263,-0.968117356300354,0.125929310917854,0.216542422771454,-0.96813029050827,0.125811651349068,0.21655347943306,-0.987306952476501,0.11760239303112,0.106746852397919,-0.987309813499451,0.117575973272324,0.106749325990677,-0.987305462360382,0.117614857852459,0.106745682656765,-0.978585422039032,0.122166521847248,0.165668085217476,-0.978587746620178,0.122145369648933,0.165670081973076,-0.978578805923462,0.1222273260355,0.165662378072739,-0.901094198226929,0.426635444164276,0.0775337815284729,-0.921687602996826,0.381566286087036,0.0699942260980606,-0.930493175983429,0.363709062337875,0.0435679368674755,-0.910693228244781,0.409993588924408,0.0504295192658901,-0.992628633975983,0.112268403172493,0.0456537567079067,-0.981355786323547,0.12081528455019,0.149480804800987,-0.992623567581177,0.112314291298389,0.0456494428217411,-0.993014574050903,0.102375723421574,-0.0586639493703842,-0.960928678512573,0.276201188564301,-0.0181382093578577, +-0.96820729970932,0.248982697725296,0.0241277441382408,-0.965348839759827,0.257927507162094,0.0396871790289879,-0.958616316318512,0.28469181060791,-0.00229802750982344,-0.98349142074585,0.119538202881813,0.135850325226784,-0.981088399887085,0.12082477658987,0.15121878683567,-0.98349392414093,0.119515299797058,0.135852485895157,-0.985647141933441,0.118293978273869,0.120442062616348,-0.974403083324432,0.216130957007408,0.061855111271143,-0.982655823230743,0.167054429650307,0.0805008858442307,-0.985112130641937,0.157421052455902,0.0690846741199493,-0.977167010307312,0.206374526023865,0.0505386628210545,-0.96392834186554,0.0964854508638382,0.248057961463928,-0.965379893779755,0.0933768898248672,0.243562147021294,-0.969108402729034,0.132153257727623,0.208241760730743,-0.967706322669983,0.135575726628304,0.212517529726028,-0.956689715385437,-0.000135434296680614,0.291109889745712,-0.954917132854462,0.00513820955529809,0.296827971935272,-0.960224509239197,0.051690936088562,0.274402946233749,-0.962127983570099,0.0466243550181389,0.268581449985504,-0.980932593345642,0.120658434927464,0.152357563376427,-0.973527073860168,0.123537421226501,0.192311227321625,-0.964475929737091,0.126489877700806,0.231919571757317,-0.973504662513733,0.123743869364262,0.192291781306267,-0.988174259662628,0.116395704448223,0.0998183041810989,-0.988175809383392,0.116381160914898,0.0998196601867676,-0.988173067569733,0.116406455636024,0.099817305803299,-0.975238025188446,-0.054876197129488,0.214241683483124,-0.962721645832062,-0.08307034522295,0.257422506809235,-0.966384828090668,-0.093869112432003,0.239351153373718,-0.978281259536743,-0.066241666674614,0.196412399411201,-0.802850902080536,-0.5948166847229,-0.0402928702533245,-0.795997679233551,-0.604690909385681,-0.0271395016461611,-0.812164783477783,-0.582831144332886,0.026386596262455,-0.819783806800842,-0.572500109672546,0.0140708778053522,-0.989842474460602,0.115099556744099,0.0834503844380379,-0.989847242832184,0.115055695176125,0.0834544599056244,-0.989846110343933,0.115065895020962,0.0834535136818886, +-0.977946579456329,0.121339417994022,0.169991716742516,-0.98402988910675,0.118364229798317,0.132948383688927,-0.969347417354584,0.124987319111824,0.211527407169342,-0.947033166885376,0.130304396152496,0.293511480093002,-0.959714710712433,0.127475291490555,0.250395148992538,-0.970336616039276,0.124892562627792,0.206999242305756,-0.959713697433472,0.127701014280319,0.250284433364868,-0.971242249011993,0.124685816466808,0.202835291624069,-0.974943161010742,0.123222999274731,0.185207426548004,-0.968480587005615,0.125246718525887,0.215310946106911,-0.962558329105377,0.125890001654625,0.240069195628166,-0.955131053924561,0.127636954188347,0.267270594835281,-0.960195958614349,0.126114517450333,0.24923637509346,-0.979082822799683,0.120091058313847,0.164240702986717,-0.961350500583649,0.126368895173073,0.244614407420158,-0.95170658826828,0.128681853413582,0.278739154338837,-0.907833993434906,-0.410889148712158,-0.083711177110672,-0.907782375812531,-0.412662833929062,-0.0751050859689713,-0.831496059894562,-0.553826749324799,-0.0434793643653393,-0.825715780258179,-0.5621617436409,-0.0465606898069382,-0.904238045215607,-0.424696534872055,-0.0445708185434341,-0.915561974048615,-0.401308327913284,0.0264225788414478,-0.922812461853027,-0.385036408901215,0.0128122111782432,-0.91071081161499,-0.408800333738327,-0.0590620823204517,-0.637200355529785,-0.770619332790375,-0.0110357040539384,-0.636634290218353,-0.771115362644196,-0.00882577151060104,-0.658272624015808,-0.752721309661865,0.00938373245298862,-0.658978521823883,-0.752127230167389,0.00721828266978264,-0.970475971698761,-0.241181060671806,0.00284882262349129,-0.972357332706451,-0.21767421066761,0.0844934955239296,-0.977654457092285,-0.19784252345562,0.0710647851228714,-0.975069403648376,-0.221613153815269,-0.0112815629690886,-0.550162434577942,-0.824532210826874,0.1321672052145,-0.553926050662994,-0.823749840259552,0.120839536190033,-0.5682293176651,-0.814903080463409,0.114229962229729,-0.563752830028534,-0.816405415534973,0.125159353017807,-0.998282730579376,-0.0124136153608561,0.0572495684027672, +-0.990172326564789,0.0219064094126225,0.138126403093338,-0.990830421447754,0.0322531946003437,0.131205230951309,-0.998736977577209,-0.00212344294413924,0.0501989126205444,-0.527888715267181,-0.827256679534912,0.192301735281944,-0.532275319099426,-0.829189240932465,0.170669972896576,-0.53868842124939,-0.829123735427856,0.149561420083046,-0.532947897911072,-0.828714370727539,0.170877024531364,-0.921109080314636,0.253135561943054,0.295770943164825,-0.921476125717163,0.251767039299011,0.295795798301697,-0.951614141464233,0.208566650748253,0.225677937269211,-0.951314628124237,0.209952920675278,0.225655421614647,-0.522576510906219,-0.824574053287506,0.216775327920914,-0.523980379104614,-0.815438866615295,0.2459756731987,-0.528401732444763,-0.820731699466705,0.217235505580902,-0.528733909130096,-0.827676832675934,0.188126295804977,-0.828219890594482,0.434579104185104,0.353825956583023,-0.834963262081146,0.395985186100006,0.382141441106796,-0.882492899894714,0.317574858665466,0.346918553113937,-0.877233028411865,0.357615560293198,0.320270568132401,-0.527352333068848,-0.7885502576828,0.316366761922836,-0.544208586215973,-0.761119544506073,0.352893829345703,-0.546745657920837,-0.776181519031525,0.314024567604065,-0.531987190246582,-0.800279140472412,0.27666437625885,-0.708399951457977,0.598386883735657,0.374303042888641,-0.716309309005737,0.571021676063538,0.40104267001152,-0.773507952690125,0.509036421775818,0.377580970525742,-0.765705108642578,0.538025140762329,0.352455019950867,-0.564315974712372,-0.690791547298431,0.452055722475052,-0.598357141017914,-0.645603477954865,0.474515438079834,-0.599002361297607,-0.668732702732086,0.440446138381958,-0.566597819328308,-0.711043238639832,0.416394531726837,-0.706522703170776,0.604570984840393,0.367858111858368,-0.65006560087204,0.651563763618469,0.390997856855392,-0.655279338359833,0.634838342666626,0.409376531839371,-0.712149620056152,0.586854934692383,0.385284513235092,-0.636347591876984,-0.642029643058777,0.427621006965637,-0.67708683013916,-0.593756914138794,0.434748381376266, +-0.673471033573151,-0.617624342441559,0.406173646450043,-0.633906960487366,-0.66357946395874,0.397271186113358,-0.570563733577728,0.758191764354706,0.315598547458649,-0.500985562801361,0.808138489723206,0.309719085693359,-0.508784532546997,0.78796911239624,0.346760541200638,-0.580512046813965,0.734970450401306,0.350462853908539,-0.817068219184875,-0.326537072658539,0.475155830383301,-0.81525844335556,-0.362687617540359,0.451454520225525,-0.77017068862915,-0.429608225822449,0.471459329128265,-0.772159099578857,-0.395241111516953,0.497548669576645,-0.897138237953186,-0.22602853178978,0.379544913768768,-0.895729422569275,-0.25027197599411,0.367467939853668,-0.857297599315643,-0.307190984487534,0.413127690553665,-0.858897089958191,-0.283663272857666,0.426416367292404,-0.39168119430542,0.879249811172485,0.271119385957718,-0.348000824451447,0.907956838607788,0.233473241329193,-0.346994131803513,0.895896852016449,0.277423858642578,-0.394745439291,0.863512754440308,0.313881814479828,-0.955184817314148,-0.0531828664243221,0.291193425655365,-0.957298994064331,-0.113633044064045,0.265830934047699,-0.928808331489563,-0.206352457404137,0.307788878679276,-0.930286884307861,-0.147196725010872,0.336005210876465,-0.329676300287247,0.936585187911987,0.118834890425205,-0.318887561559677,0.943853437900543,0.0863215327262878,-0.314593315124512,0.941891372203827,0.117778770625591,-0.327735215425491,0.932713806629181,0.150447860360146,-0.989728510379791,0.0260502491146326,0.140566974878311,-0.98797208070755,0.0421396382153034,0.148780196905136,-0.971702754497528,0.0253131072968245,0.234846740961075,-0.97394734621048,0.00930333882570267,0.226583510637283,-0.346363961696625,0.937621772289276,-0.0299570206552744,-0.340257495641708,0.940231323242188,-0.0137838860973716,-0.329215258359909,0.944254815578461,0.000620852340944111,-0.333992809057236,0.942436873912811,-0.0161754656583071,-0.93974244594574,0.254780143499374,0.22797192633152,-0.951592624187469,0.27251660823822,0.142148420214653,-0.946398138999939,0.286450982093811,0.149253591895103, +-0.934170603752136,0.268705546855927,0.234782040119171,-0.39519014954567,0.916573047637939,-0.0609805285930634,-0.391308903694153,0.918632388114929,-0.0546999722719193,-0.371836096048355,0.926502466201782,-0.0577152483165264,-0.375171422958374,0.924712598323822,-0.0644441097974777,-0.955093383789063,0.290882110595703,0.0564284957945347,-0.952120423316956,0.304176270961761,-0.0307160038501024,-0.947000086307526,0.320476174354553,-0.0220426376909018,-0.949447333812714,0.307172507047653,0.064767487347126,-0.499537467956543,0.858514726161957,-0.115823186933994,-0.501505732536316,0.856826186180115,-0.119753509759903,-0.476604640483856,0.866668164730072,-0.147425562143326,-0.474920272827148,0.868269145488739,-0.14338618516922,-0.870596528053284,0.490745484828949,-0.0350789688527584,-0.857850313186646,0.500896811485291,-0.114871457219124,-0.849918484687805,0.516419589519501,-0.104639202356339,-0.861976563930511,0.506306886672974,-0.025494709610939,-0.528143465518951,0.834660232067108,-0.156227022409439,-0.551624000072479,0.82579243183136,-0.117379158735275,-0.557053327560425,0.820968627929688,-0.125308468937874,-0.532950818538666,0.829984486103058,-0.164588019251823,-0.834673941135406,0.51764452457428,-0.188052281737328,-0.808578014373779,0.52676385641098,-0.262147665023804,-0.802303850650787,0.541558742523193,-0.251042813062668,-0.827613592147827,0.532490611076355,-0.177509173750877,-0.733923017978668,-0.655997514724731,-0.176137417554855,-0.730041265487671,-0.663456857204437,-0.163905113935471,-0.765510320663452,-0.63378232717514,-0.110967934131622,-0.770338833332062,-0.625753283500671,-0.122519515454769,-0.635440647602081,-0.750413715839386,-0.181918874382973,-0.635301649570465,-0.750989496707916,-0.180018842220306,-0.675165355205536,-0.721371710300446,-0.154190257191658,-0.675458371639252,-0.720692694187164,-0.156071126461029,-0.876816987991333,-0.406911432743073,-0.256154835224152,-0.90948075056076,-0.381703466176987,-0.164764955639839,-0.915778934955597,-0.355614930391312,-0.186780780553818,-0.881200015544891,-0.381429195404053,-0.279281765222549, +-0.547363460063934,-0.834174990653992,-0.0674208626151085,-0.54873126745224,-0.832317531108856,-0.0783679634332657,-0.577437937259674,-0.812368512153625,-0.081382229924202,-0.575168430805206,-0.814968705177307,-0.0707624480128288,-0.952442765235901,-0.275482326745987,-0.130239307880402,-0.970830321311951,-0.236923187971115,-0.036825530230999,-0.973920524120331,-0.221936896443367,-0.0471474900841713,-0.954998791217804,-0.260854214429855,-0.141182288527489,-0.511501133441925,-0.856665194034576,0.0670172274112701,-0.510595679283142,-0.858920991420746,0.0393285602331161,-0.521758317947388,-0.85301411151886,0.0116256345063448,-0.519657671451569,-0.853466153144836,0.0393867492675781,-0.997755229473114,-0.0626986473798752,-0.023527305573225,-0.996841788291931,-0.0203678868710995,0.0767582207918167,-0.997571527957916,-0.00769842928275466,0.0692226514220238,-0.998247623443604,-0.0501920022070408,-0.0313447751104832,-0.512097656726837,-0.846115946769714,0.147796422243118,-0.528359115123749,-0.82235199213028,0.211125165224075,-0.522776544094086,-0.83993011713028,0.145678162574768,-0.511852562427521,-0.855306088924408,0.0803648307919502,-0.926201105117798,0.225894168019295,0.301866769790649,-0.926563024520874,0.217040434479713,0.307204514741898,-0.962196409702301,0.156687378883362,0.222771942615509,-0.961886465549469,0.165630325675011,0.217579960823059,-0.79807847738266,0.500565946102142,0.335416942834854,-0.801841020584106,0.486001074314117,0.347640573978424,-0.850475907325745,0.456276386976242,0.261729866266251,-0.845927596092224,0.471055746078491,0.2500259578228,-0.647351562976837,0.669440984725952,0.364396452903748,-0.651407122612,0.657486498355865,0.378655940294266,-0.708178460597992,0.633531451225281,0.311642616987228,-0.702976167201996,0.645776391029358,0.297988831996918,-0.581344306468964,0.790703773498535,0.191901907324791,-0.532068371772766,0.813807487487793,0.23371097445488,-0.534193813800812,0.81043928861618,0.240469053387642,-0.584052443504333,0.787108540534973,0.198350638151169,-0.530448019504547,-0.810269415378571,0.2491754591465, +-0.569215893745422,-0.76252692937851,0.307483583688736,-0.559752345085144,-0.793223083019257,0.2397381067276,-0.525727331638336,-0.831901550292969,0.177624851465225,-0.460673719644547,0.866603374481201,0.191776797175407,-0.415017336606979,0.885437488555908,0.209191471338272,-0.414828181266785,0.885522127151489,0.209208369255066,-0.460494816303253,0.866686105728149,0.19183312356472,-0.648349702358246,-0.554115235805511,0.522110164165497,-0.706728398799896,-0.491179674863815,0.509193122386932,-0.704092681407928,-0.520071089267731,0.483507424592972,-0.646941542625427,-0.580833256244659,0.494064152240753,-0.362287372350693,0.922959089279175,0.129979193210602,-0.33120596408844,0.935714960098267,0.12140928208828,-0.330728471279144,0.937454223632813,0.10861998051405,-0.36058109998703,0.925309300422668,0.117405600845814,-0.875501394271851,-0.285286128520966,0.390011698007584,-0.871949791908264,-0.319002658128738,0.371403843164444,-0.8191277384758,-0.389065891504288,0.42149430513382,-0.822849571704865,-0.356708109378815,0.442355006933212,-0.318018585443497,0.946268022060394,-0.0586615689098835,-0.325677186250687,0.940986156463623,-0.0920839607715607,-0.313891649246216,0.947579324245453,-0.0597110949456692,-0.309443473815918,0.950577855110168,-0.025426821783185,-0.95787912607193,-0.0788438394665718,0.276136159896851,-0.958240151405334,-0.099018894135952,0.268274337053299,-0.922843933105469,-0.157881289720535,0.351329743862152,-0.922744929790497,-0.137977749109268,0.359866321086884,-0.386346369981766,0.909918248653412,-0.150948032736778,-0.402008026838303,0.896201848983765,-0.187648177146912,-0.362322479486465,0.917777836322784,-0.162500277161598,-0.349903404712677,0.928591847419739,-0.12363176047802,-0.992602348327637,0.0664803609251976,0.101592242717743,-0.993618071079254,0.055877573788166,0.0979843735694885,-0.98047661781311,0.00809409562498331,0.196469113230705,-0.979589223861694,0.0186869241297245,0.200139209628105,-0.508574366569519,0.835336923599243,-0.208720520138741,-0.530511736869812,0.812120318412781,-0.242935940623283, +-0.470037698745728,0.849525988101959,-0.239520713686943,-0.450440615415573,0.869644403457642,-0.202044352889061,-0.958011984825134,0.238273039460182,0.159496158361435,-0.954552471637726,0.291364729404449,0.0627399682998657,-0.948612630367279,0.308861672878265,0.0688374564051628,-0.952437520027161,0.255968928337097,0.165355861186981,-0.645533502101898,0.739585936069489,-0.190523579716682,-0.66768753528595,0.712604343891144,-0.215379774570465,-0.603491008281708,0.759198784828186,-0.243753597140312,-0.582308053970337,0.783815920352936,-0.215754300355911,-0.854980170726776,0.517269015312195,0.0379698760807514,-0.818792939186096,0.572762727737427,-0.0389988757669926,-0.800829470157623,0.598330914974213,-0.0259332749992609,-0.837615251541138,0.544029772281647,0.0493185222148895,-0.658664584159851,0.723877966403961,-0.20533312857151,-0.721533417701721,0.672294080257416,-0.16556017100811,-0.74413388967514,0.640996515750885,-0.188117638230324,-0.681008756160736,0.694874465465546,-0.231033474206924,-0.321285724639893,0.946917712688446,0.0110648153349757,-0.322287350893021,0.946592032909393,-0.00971828401088715,-0.331384479999542,0.943430960178375,0.0110615249723196,-0.332448571920395,0.94259124994278,0.0316211134195328,-0.346038341522217,0.930396914482117,-0.12090926617384,-0.353245109319687,0.923004806041718,-0.152578622102737,-0.334252744913101,0.934326827526093,-0.123728200793266,-0.330072700977325,0.939524590969086,-0.0913542509078979,-0.354827970266342,0.931403458118439,0.0811460390686989,-0.382476568222046,0.920068919658661,0.0847638249397278,-0.385093986988068,0.918127536773682,0.0935118272900581,-0.356515765190125,0.929909944534302,0.0903559327125549,-0.420828849077225,0.885016262531281,-0.199121564626694,-0.434215277433395,0.870760202407837,-0.230724424123764,-0.392726510763168,0.894752323627472,-0.212565317749977,-0.38214036822319,0.906551778316498,-0.179255813360214,-0.451782941818237,0.863630592823029,0.223684191703796,-0.495293736457825,0.845802545547485,0.198247969150543,-0.494978129863739,0.8472860455513,0.192622035741806, +-0.451893389225006,0.864989519119263,0.21814139187336,-0.511623322963715,0.83600389957428,-0.19834066927433,-0.530843257904053,0.816386580467224,-0.227416753768921,-0.476277351379395,0.849794507026672,-0.225852146744728,-0.459218829870224,0.866819143295288,-0.194274678826332,-0.582328736782074,0.763417661190033,0.279440075159073,-0.630275189876556,0.741543292999268,0.229927554726601,-0.627284586429596,0.747428774833679,0.21877908706665,-0.580221891403198,0.76908928155899,0.268037885427475,-0.597550988197327,0.720247864723206,-0.352385878562927,-0.663590431213379,0.668514847755432,-0.335761338472366,-0.681524276733398,0.635168373584747,-0.363436162471771,-0.614492952823639,0.689588189125061,-0.38323175907135,-0.816480815410614,0.557992041110992,0.148336812853813,-0.810200273990631,0.570675075054169,0.13381139934063,-0.774220108985901,0.596178531646729,0.212495550513268,-0.779447257518768,0.58366721868515,0.227584153413773,-0.686533570289612,0.684102714061737,-0.246323242783546,-0.745134234428406,0.634170472621918,-0.206404134631157,-0.763444542884827,0.605412721633911,-0.225006371736526,-0.704591274261475,0.657278299331665,-0.267462819814682,-0.898383378982544,0.438572078943253,0.0237057562917471,-0.902109086513519,0.430732816457748,0.025855116546154,-0.870320379734039,0.482231050729752,0.0999789759516716,-0.866388976573944,0.489777386188507,0.0974088683724403,-0.841648459434509,0.50034111738205,-0.203191235661507,-0.882978498935699,0.450526982545853,-0.131812304258347,-0.892710626125336,0.428401708602905,-0.139784425497055,-0.851736664772034,0.479002058506012,-0.212371751666069,-0.985514760017395,0.165580540895462,-0.0366597585380077,-0.989012897014618,0.145127519965172,-0.0281332395970821,-0.975294768810272,0.215352490544319,0.049228597432375,-0.971019864082336,0.235544666647911,0.040485791862011,-0.939201056957245,0.333506464958191,-0.0817007794976234,-0.958374619483948,0.285450547933578,0.00600429810583591,-0.963005125522614,0.26946747303009,0.00289418851025403,-0.944310486316681,0.317824482917786,-0.0852367654442787, +-0.997848331928253,-0.0073071657679975,0.0651558190584183,-0.997343897819519,-0.0711926594376564,-0.0153949018567801,-0.996354579925537,-0.0846135541796684,-0.0108680026605725,-0.997366905212402,-0.0208740290254354,0.0694520026445389,-0.971521317958832,0.0241821054369211,0.235715374350548,-0.969304859638214,0.0357842668890953,0.24324432015419,-0.987671673297882,0.0607386827468872,0.144276186823845,-0.989387333393097,0.0490546151995659,0.136771038174629,-0.916769981384277,-0.144951015710831,0.372185349464417,-0.914742410182953,-0.125938147306442,0.383908659219742,-0.950790882110596,-0.107139348983765,0.290719568729401,-0.951864838600159,-0.126357555389404,0.279261767864227,-0.926931738853455,-0.372998833656311,-0.0408589318394661,-0.890169739723206,-0.447584718465805,-0.0852396190166473,-0.877196729183197,-0.476019680500031,-0.0626988410949707,-0.914771258831024,-0.403461098670959,-0.0203150473535061,-0.815487742424011,-0.425710767507553,0.392109870910645,-0.816644191741943,-0.410314857959747,0.405874639749527,-0.858189046382904,-0.391408950090408,0.332130312919617,-0.855853319168091,-0.407173275947571,0.318943589925766,-0.85658586025238,-0.496029615402222,-0.142180547118187,-0.808126509189606,-0.565348982810974,-0.165263280272484,-0.794515371322632,-0.591893553733826,-0.135673671960831,-0.843056619167328,-0.525383472442627,-0.115012064576149,-0.777027726173401,-0.565574765205383,0.27632063627243,-0.739336252212524,-0.586978316307068,0.329906791448593,-0.74068558216095,-0.579792559146881,0.339448750019073,-0.779146730899811,-0.558041751384735,0.285516798496246,-0.651277303695679,-0.745919942855835,-0.139431551098824,-0.640145599842072,-0.761183023452759,-0.103991597890854,-0.685418725013733,-0.718784630298615,-0.116403758525848,-0.698121249675751,-0.700106859207153,-0.149924039840698,-0.686301946640015,-0.649145066738129,0.3280248939991,-0.64655339717865,-0.672027826309204,0.361036747694016,-0.646084547042847,-0.669689774513245,0.36618372797966,-0.686224579811096,-0.646582841873169,0.333206564188004,-0.56683737039566,-0.82244873046875,-0.0476812124252319, +-0.559478878974915,-0.828769087791443,-0.0111893303692341,-0.589549481868744,-0.806769251823425,-0.0394287258386612,-0.599262535572052,-0.797042727470398,-0.0748836919665337,-0.591527938842773,-0.760147333145142,0.268832594156265,-0.562577545642853,-0.779122412204742,0.276540875434875,-0.561449110507965,-0.781235992908478,0.272846549749374,-0.590007245540619,-0.762475788593292,0.265560060739517,-0.524720191955566,-0.847851097583771,0.0762723386287689,-0.534667074680328,-0.843771696090698,0.0466949641704559,-0.539060831069946,-0.842110157012939,0.0162517353892326,-0.526728749275208,-0.848798632621765,0.0457980446517467,-0.534633040428162,-0.826886773109436,0.17442986369133,-0.523352265357971,-0.837474167346954,0.157287761569023,-0.523502469062805,-0.840758144855499,0.138097658753395,-0.533124446868896,-0.831567168235779,0.155802711844444,-0.9727623462677,0.124410897493362,0.195589706301689,-0.972762227058411,0.124412029981613,0.195589601993561,-0.972762286663055,0.124411404132843,0.195589661598206,-0.896007657051086,0.373983591794968,0.239387914538383,-0.895716786384583,0.39584031701088,0.20248980820179,-0.895796298980713,0.377864062786102,0.234025567770004,-0.865990519523621,0.376805335283279,0.328752756118774,-0.865571618080139,0.381339251995087,0.32460144162178,-0.868420898914337,0.421342313289642,0.261372953653336,-0.911495089530945,0.319854557514191,0.258591800928116,-0.911836862564087,0.349154621362686,0.215974181890488,-0.908638656139374,0.313464045524597,0.275891453027725,-0.921218752861023,0.330945044755936,0.204527243971825,-0.920726597309113,0.316459506750107,0.228289201855659,-0.920957744121552,0.30505159497261,0.242446556687355,-0.907809793949127,0.417167782783508,0.0430402122437954,-0.906574845314026,0.421124875545502,0.0278554279357195,-0.925334453582764,0.322568774223328,0.199262410402298,-0.518553137779236,-0.730468213558197,-0.444431096315384,-0.587911069393158,-0.709929883480072,-0.387762933969498,-0.5881068110466,-0.710237264633179,-0.386902302503586,-0.518690466880798,-0.73084557056427,-0.443649590015411, +-0.584321856498718,-0.793889105319977,-0.1682498306036,-0.667332530021667,-0.741425096988678,-0.0703995227813721,-0.663094162940979,-0.745787858963013,-0.0640828460454941,-0.580615818500519,-0.798009037971497,-0.161452755331993,-0.672563433647156,-0.730541348457336,0.118185184895992,-0.717625439167023,-0.664158165454865,0.209541782736778,-0.708758234977722,-0.66998165845871,0.220876306295395,-0.663590371608734,-0.736818969249725,0.129405215382576,-0.829488515853882,-0.360613822937012,0.426504969596863,-0.830230891704559,-0.359975099563599,0.425599128007889,-0.815453767776489,-0.460027307271957,0.351297736167908,-0.814858734607697,-0.460715532302856,0.35177618265152,-0.858357131481171,-0.130007028579712,0.49630743265152,-0.841919124126434,-0.150339052081108,0.518237769603729,-0.874844431877136,-0.224818930029869,0.429072886705399,-0.890491724014282,-0.207438483834267,0.404961407184601,0.892994523048401,-0.322459280490875,-0.313975751399994,0.941834330558777,-0.249517053365707,-0.225142627954483,0.942038416862488,-0.265009164810181,-0.205752193927765,0.893852174282074,-0.337478011846542,-0.295189797878265,-0.837716460227966,0.402404457330704,0.369190782308578,-0.842603385448456,0.45748895406723,0.284118622541428,-0.838502287864685,0.389394044876099,0.381164580583572,0.973360300064087,-0.13598607480526,-0.18460088968277,0.974143922328949,-0.143828421831131,-0.174232587218285,0.940618634223938,-0.221305400133133,-0.257411301136017,0.939678192138672,-0.21333047747612,-0.267385423183441,0.755150675773621,-0.563331663608551,-0.335268795490265,0.827636957168579,-0.474761605262756,-0.299363434314728,0.827802002429962,-0.464131355285645,-0.315160512924194,0.75554484128952,-0.552839875221252,-0.351453930139542,0.591529786586761,-0.742798030376434,-0.313597559928894,0.590691804885864,-0.753804802894592,-0.287856817245483,0.677001535892487,-0.679835557937622,-0.281944245100021,0.678833544254303,-0.667403161525726,-0.306199580430984,0.423570543527603,-0.890443742275238,-0.166427463293076,0.49727874994278,-0.854529440402985,-0.149977788329124, +0.497598648071289,-0.852975428104401,-0.157570660114288,0.423508316278458,-0.888975441455841,-0.174250915646553,0.292712926864624,-0.954204320907593,-0.0617520846426487,0.298434227705002,-0.954300999641418,-0.0157023295760155,0.359472304582596,-0.930663645267487,-0.0681533515453339,0.357006222009659,-0.927262127399445,-0.112834982573986,0.204563543200493,-0.97139173746109,0.120630212128162,0.218037083745003,-0.9618159532547,0.165438562631607,0.257748991250992,-0.96054607629776,0.104482732713223,0.24884021282196,-0.966717302799225,0.0594661608338356,0.227244600653648,-0.954474031925201,0.193233549594879,0.18878236413002,-0.952803313732147,0.237754017114639,0.198979377746582,-0.943958818912506,0.263341933488846,0.23452253639698,-0.94708639383316,0.219149380922318,0.187384784221649,-0.903560400009155,-0.385312527418137,0.190713584423065,-0.89955860376358,-0.392966538667679,0.0342875085771084,-0.891910552978516,-0.450910180807114,0.0299730468541384,-0.895668268203735,-0.443711638450623,-0.933322489261627,0.30553936958313,0.188559859991074,-0.930732190608978,0.271854519844055,0.244607165455818,-0.930836617946625,0.255007296800613,0.2617526948452,-0.912684679031372,0.327731728553772,0.244128212332726,-0.913766801357269,0.332623809576035,0.233220562338829,-0.913725078105927,0.345582008361816,0.213728234171867,-0.91882860660553,0.325855106115341,0.222648665308952,-0.918915688991547,0.335524618625641,0.207405880093575,-0.91877555847168,0.326346874237061,0.222146809101105,0.299213737249374,-0.942470371723175,0.149066120386124,0.311362057924271,-0.942321717739105,0.122815199196339,0.170779794454575,-0.985215604305267,0.0135826179757714,0.159099355340004,-0.986427307128906,0.040602769702673,0.434413731098175,-0.727883517742157,0.530537784099579,0.463374346494675,-0.732253074645996,0.499088734388351,0.378016203641891,-0.845197975635529,0.377814948558807,0.353056013584137,-0.839957654476166,0.412095427513123,0.318268954753876,-0.710666656494141,0.627421617507935,0.364479392766953,-0.645238876342773,0.671432495117188,0.358819246292114,-0.646788597106934,0.672988414764404, +0.309979796409607,-0.711169004440308,0.630992233753204,-0.201753154397011,-0.938390552997589,-0.280568867921829,-0.207572758197784,-0.941781938076019,-0.264500260353088,-0.31137153506279,-0.909550607204437,-0.275255352258682,-0.30586239695549,-0.906324982643127,-0.291587203741074,-0.948652565479279,0.269366711378098,0.165831580758095,-0.944012820720673,0.214580729603767,0.250589549541473,-0.944026350975037,0.215907752513885,0.249395474791527,-0.395125180482864,-0.857364773750305,-0.329851120710373,-0.394932955503464,-0.856604814529419,-0.332048624753952,-0.499210268259048,-0.79574191570282,-0.342905133962631,-0.498780131340027,-0.796648144721985,-0.341423839330673,-0.599052488803864,-0.721034586429596,-0.348202705383301,-0.678893685340881,-0.643376231193542,-0.353794276714325,-0.679833710193634,-0.652491092681885,-0.334785580635071,-0.600933730602264,-0.729043483734131,-0.327680081129074,-0.742431581020355,-0.598294138908386,-0.301395922899246,-0.796668291091919,-0.525546014308929,-0.298531413078308,-0.796546041965485,-0.537883698940277,-0.276035368442535,-0.742672324180603,-0.609610199928284,-0.277151972055435,-0.849151968955994,-0.492931693792343,-0.189629405736923,-0.85139399766922,-0.475401073694229,-0.221634984016418,-0.899524688720703,-0.383596420288086,-0.209067270159721,-0.897802650928497,-0.402521342039108,-0.178681060671806,-0.940556287765503,-0.264024168252945,-0.213647156953812,-0.973126113414764,-0.151889503002167,-0.173075720667839,-0.974133133888245,-0.170668378472328,-0.148111432790756,-0.940793752670288,-0.282133400440216,-0.187903866171837,-0.984981656074524,0.0327910147607327,-0.169517174363136,-0.988110721111298,0.14624211192131,-0.0474396646022797,-0.990737795829773,0.132527068257332,-0.0295840576291084,-0.988233089447021,0.0186662189662457,-0.151812463998795,0.945333421230316,-0.196089163422585,-0.260564506053925,0.950912237167358,-0.187880575656891,-0.24590003490448,0.942393839359283,-0.17781688272953,-0.283328592777252,0.934176325798035,-0.183775216341019,-0.305845141410828,-0.938260734081268,0.294438451528549,0.181584104895592, +-0.932694017887115,0.230482012033463,0.277416557073593,-0.932759344577789,0.234888404607773,0.273472905158997,-0.932246088981628,0.355754286050797,0.0660011172294617,-0.938508808612823,0.293868094682693,0.181225717067719,-0.934110522270203,0.338248819112778,0.114128351211548,-0.938879668712616,0.212412193417549,0.27089861035347,-0.945723831653595,0.276692688465118,0.170434132218361,-0.938775599002838,0.209020674228668,0.273880928754807,-0.917266607284546,0.249457314610481,0.310472309589386,-0.92440265417099,0.324487566947937,0.2004684060812,-0.917525827884674,0.261335968971252,0.299749732017517,-0.930664122104645,0.29653412103653,0.214317172765732,-0.930679440498352,0.311294138431549,0.192176416516304,-0.930314779281616,0.299840658903122,0.211210831999779,-0.965824961662292,0.232981935143471,-0.11358504742384,-0.956101536750793,0.184809103608131,-0.227409929037094,-0.92463219165802,0.246989831328392,-0.289916127920151,-0.940312623977661,0.292240232229233,-0.174378663301468,-0.938884913921356,0.293000996112823,0.180680856108665,-0.938743352890015,0.288761466741562,0.188090249896049,-0.939019918441772,0.2865189909935,0.190127581357956,-0.905423820018768,0.342956393957138,0.250177264213562,-0.905745983123779,0.360387533903122,0.223036423325539,-0.905563533306122,0.341864675283432,0.251163750886917,-0.920975685119629,0.310996145009995,0.234702348709106,-0.921646595001221,0.330086022615433,0.203987300395966,-0.920971512794495,0.310419797897339,0.23548050224781,-0.920573770999908,0.311699032783508,0.23534569144249,-0.920370042324066,0.318296104669571,0.227171242237091,-0.92090368270874,0.331576019525528,0.204923868179321,-0.488520741462708,-0.466460555791855,-0.737402260303497,-0.492008060216904,-0.491617888212204,-0.718498349189758,-0.45610722899437,-0.47540158033371,-0.752302825450897,-0.435971677303314,-0.44321146607399,-0.78325754404068,-0.225361511111259,-0.586630582809448,-0.777866780757904,-0.171446546912193,-0.586902916431427,-0.791297078132629,-0.157200485467911,-0.541751742362976,-0.825707614421844,-0.220357120037079,-0.542415261268616,-0.810696244239807, +-0.00095546105876565,-0.695576429367065,-0.71845155954361,-0.00691124936565757,-0.623154699802399,-0.782068073749542,-0.0961771383881569,-0.593352198600769,-0.799176573753357,-0.0849693343043327,-0.670526623725891,-0.73700350522995,-0.113602474331856,-0.575381875038147,-0.809956908226013,-0.19333827495575,-0.602872133255005,-0.774057805538177,-0.212942272424698,-0.639069199562073,-0.739084601402283,-0.148416832089424,-0.614267885684967,-0.775014460086823,-0.845625758171082,-0.128335326910019,-0.518118798732758,-0.83004891872406,-0.116452090442181,-0.545397043228149,-0.798473656177521,-0.0795191675424576,-0.596755027770996,-0.826376616954803,-0.0957868993282318,-0.554911315441132,-0.43323826789856,-0.358978986740112,-0.826703488826752,-0.45044207572937,-0.338949292898178,-0.825963258743286,-0.471207052469254,-0.379577696323395,-0.796168684959412,-0.456295698881149,-0.400334119796753,-0.794686794281006,0.0292430184781551,-0.60485976934433,-0.795794785022736,0.0591232366859913,-0.687680900096893,-0.723601698875427,-0.0524164997041225,-0.649525225162506,-0.758531153202057,-0.0863202661275864,-0.557186603546143,-0.825888574123383,-0.607043862342834,-0.28458508849144,-0.741962969303131,-0.555833637714386,-0.292173385620117,-0.778256952762604,-0.484758645296097,-0.289283126592636,-0.825423717498779,-0.544934391975403,-0.284674018621445,-0.788674414157867,-0.36739382147789,-0.453595012426376,-0.811956524848938,-0.330165088176727,-0.403444916009903,-0.853359997272491,-0.387109607458115,-0.411459177732468,-0.825134813785553,-0.413625597953796,-0.459920138120651,-0.785739958286285,-0.379223465919495,-0.42121621966362,-0.823872864246368,-0.436495542526245,-0.442597985267639,-0.783312618732452,-0.454088538885117,-0.477628618478775,-0.752113401889801,-0.411412507295609,-0.462488174438477,-0.785394608974457,-0.00342989736236632,-0.660680413246155,-0.750659465789795,0.0408103242516518,-0.661533892154694,-0.748804092407227,0.0557599812746048,-0.62976735830307,-0.774779856204987,0.0154139958322048,-0.62345153093338,-0.781710207462311, +0.0954263731837273,-0.679552614688873,-0.727394104003906,0.145258814096451,-0.639230728149414,-0.755171537399292,0.103867307305336,-0.640945732593536,-0.760526239871979,0.0644746497273445,-0.679085373878479,-0.73122227191925,-0.385043501853943,-0.395208984613419,-0.833997189998627,-0.457262814044952,-0.357888013124466,-0.814141809940338,-0.552918374538422,-0.334793746471405,-0.763016641139984,-0.490881115198135,-0.37365984916687,-0.787028670310974,-0.277779132127762,-0.379548013210297,-0.882486283779144,-0.333475708961487,-0.399056226015091,-0.854135990142822,-0.378031134605408,-0.440255761146545,-0.814412236213684,-0.329796612262726,-0.419462919235229,-0.845745265483856,-0.939076364040375,-0.0274016931653023,-0.342614620923996,-0.941042065620422,0.0200981609523296,-0.337692081928253,-0.919894456863403,0.0894476696848869,-0.381828874349594,-0.926582932472229,0.0397392772138119,-0.373984932899475,-0.80083817243576,-0.0729901269078255,-0.594416260719299,-0.843702912330627,-0.0754742622375488,-0.5314781665802,-0.806585788726807,-0.0771752893924713,-0.586057484149933,-0.763576924800873,-0.0782893374562263,-0.640953421592712,-0.818942844867706,-0.0336814373731613,-0.572885811328888,-0.781461775302887,-0.0330649651587009,-0.623076438903809,-0.736289799213409,-0.0292101874947548,-0.676035583019257,-0.779363870620728,-0.0315627381205559,-0.62577623128891,-0.691397964954376,-0.153285965323448,-0.706025719642639,-0.63348525762558,-0.145305588841438,-0.75998866558075,-0.682095587253571,-0.146776705980301,-0.716381371021271,-0.733682751655579,-0.153546079993248,-0.661916315555573,-0.782448351383209,0.00788252614438534,-0.622665762901306,-0.744284629821777,-0.0321437232196331,-0.667088568210602,-0.722496211528778,-0.0788649395108223,-0.686862111091614,-0.765170454978943,-0.0387830510735512,-0.642658591270447,-0.579620718955994,-0.121315322816372,-0.805805444717407,-0.645461142063141,-0.118721447885036,-0.754509806632996,-0.706224262714386,-0.116287738084793,-0.698372721672058,-0.649631381034851,-0.121188543736935,-0.750528037548065, +-0.325321942567825,-0.487623661756516,-0.810178279876709,-0.275333285331726,-0.482830673456192,-0.831303834915161,-0.196826174855232,-0.43089234828949,-0.880676567554474,-0.262345135211945,-0.433911770582199,-0.861913919448853,-0.112338840961456,-0.566865980625153,-0.816114604473114,-0.0256836023181677,-0.569457590579987,-0.821619391441345,-0.0918398797512054,-0.557540118694305,-0.825054287910461,-0.173632770776749,-0.555719912052155,-0.813035666942596,0.131106853485107,-0.683963358402252,-0.717638671398163,0.180747643113136,-0.664347171783447,-0.725240051746368,0.18702720105648,-0.659271001815796,-0.728273749351501,0.125035434961319,-0.684713661670685,-0.718006551265717,0.181464850902557,-0.650483131408691,-0.737524390220642,0.156065791845322,-0.654045701026917,-0.740180909633636,0.0935964584350586,-0.677334010601044,-0.729697465896606,0.116711907088757,-0.67294716835022,-0.73042494058609,-0.345217525959015,-0.420027285814285,-0.839286625385284,-0.340368956327438,-0.421272218227386,-0.840641856193542,-0.271272927522659,-0.396292865276337,-0.87713348865509,-0.309772849082947,-0.405305087566376,-0.860098004341125,-0.649817526340485,-0.190589994192123,-0.735807478427887,-0.588765501976013,-0.208465948700905,-0.780959069728851,-0.496552228927612,-0.221858590841293,-0.83917498588562,-0.569946110248566,-0.202450022101402,-0.796351373195648,-0.452528089284897,-0.340130627155304,-0.824335753917694,-0.347089320421219,-0.34537810087204,-0.87191915512085,-0.423187434673309,-0.328926622867584,-0.844227313995361,-0.515718996524811,-0.325178742408752,-0.792649149894714,-0.646071016788483,-0.0961339175701141,-0.757199168205261,-0.632125616073608,-0.0837186276912689,-0.77033007144928,-0.667757451534271,-0.0973880738019943,-0.737980723381042,-0.680712461471558,-0.110176123678684,-0.724218010902405,0.239247784018517,-0.813133120536804,-0.530636668205261,0.245201975107193,-0.788952231407166,-0.563409566879272,0.235734671354294,-0.768437147140503,-0.594923079013824,0.23391754925251,-0.793503642082214,-0.561813592910767,0.203627407550812,-0.702518343925476,-0.681911885738373, +0.139958709478378,-0.625521719455719,-0.767550706863403,0.171549305319786,-0.715782165527344,-0.676924526691437,0.227188974618912,-0.781127035617828,-0.581571936607361,0.181269511580467,-0.730738520622253,-0.658150792121887,0.117590583860874,-0.731416821479797,-0.671715676784515,0.144310966134071,-0.744319915771484,-0.652044653892517,0.207872971892357,-0.744481325149536,-0.634457528591156,0.0301691479980946,-0.74054753780365,-0.671326398849487,0.142630904912949,-0.736732602119446,-0.660970091819763,0.127459675073624,-0.714085578918457,-0.688357293605804,0.0259082205593586,-0.720670104026794,-0.692793965339661,0.11334790289402,-0.687849938869476,-0.716948211193085,0.0719607695937157,-0.665051937103271,-0.7433220744133,-0.0230342615395784,-0.663133442401886,-0.748146653175354,0.00693491147831082,-0.686969518661499,-0.726653099060059,-0.07401143014431,-0.582399189472198,-0.809526741504669,-0.196310311555862,-0.576936364173889,-0.792847216129303,-0.163787975907326,-0.607406616210938,-0.777322828769684,-0.0303332470357418,-0.61559009552002,-0.787482500076294,0.202972292900085,-0.872427523136139,-0.444603830575943,0.209480762481689,-0.877928197383881,-0.430534422397614,0.244383856654167,-0.863079011440277,-0.442008286714554,0.231984257698059,-0.859316289424896,-0.455805689096451,0.240684866905212,-0.844725787639618,-0.478026330471039,0.257690221071243,-0.823741853237152,-0.505019783973694,0.239019870758057,-0.812533378601074,-0.531656920909882,0.226114332675934,-0.83266019821167,-0.505518913269043,0.237655729055405,-0.808938324451447,-0.537716150283813,0.173313692212105,-0.811200857162476,-0.558493971824646,0.159626692533493,-0.829099059104919,-0.535830318927765,0.225307047367096,-0.829039573669434,-0.511791110038757,0.0148144783452153,-0.832646429538727,-0.553606927394867,0.13635940849781,-0.835468769073486,-0.532351434230804,0.155360415577888,-0.813321828842163,-0.560687899589539,0.0401780158281326,-0.8163703083992,-0.576129734516144,0.148599356412888,-0.787912845611572,-0.597588121891022,0.153422340750694,-0.763672649860382,-0.627108812332153, +0.0425990335643291,-0.769241034984589,-0.637537121772766,0.0315437912940979,-0.788718104362488,-0.613945126533508,0.0141894947737455,-0.701589167118073,-0.712440371513367,-0.124062076210976,-0.698258459568024,-0.705013275146484,-0.129343599081039,-0.719226598739624,-0.682629585266113,0.0148391146212816,-0.730872511863708,-0.682352662086487,0.117594234645367,-0.943738222122192,-0.30907866358757,0.121127910912037,-0.950904190540314,-0.284796804189682,0.162537485361099,-0.939401626586914,-0.301838040351868,0.161869823932648,-0.931464016437531,-0.325841844081879,0.167706966400146,-0.916530728340149,-0.363105714321136,0.209988221526146,-0.897354781627655,-0.388148635625839,0.203557401895523,-0.885526180267334,-0.417621821165085,0.166837602853775,-0.904427707195282,-0.392652124166489,0.203793913125992,-0.892167747020721,-0.403118878602982,0.142662718892097,-0.892827987670898,-0.427206695079803,0.104397304356098,-0.90533173084259,-0.411674171686172,0.166310265660286,-0.907779455184937,-0.385067969560623,-0.0689643397927284,-0.895546019077301,-0.439592093229294,0.0595618225634098,-0.909709632396698,-0.410951107740402,0.105072721838951,-0.896553814411163,-0.4302918612957,-0.0190790742635727,-0.890981018543243,-0.453639537096024,0.106363140046597,-0.876582860946655,-0.469349920749664,0.138934135437012,-0.858216166496277,-0.49412789940834,0.019299877807498,-0.857745826244354,-0.513711631298065,-0.0196455381810665,-0.868906319141388,-0.49458634853363,0.0105290673673153,-0.807112753391266,-0.590303421020508,-0.135356202721596,-0.792487263679504,-0.594678580760956,-0.168741166591644,-0.801981329917908,-0.573020398616791,-0.020505404099822,-0.827365458011627,-0.561289548873901,-0.00571827637031674,-0.974490940570831,-0.224353954195976,0.00957492645829916,-0.978727996349335,-0.204938694834709,0.0627581402659416,-0.977008938789368,-0.203752115368843,0.0515247248113155,-0.973746716976166,-0.221726313233376,0.0716409906744957,-0.968775689601898,-0.23736310005188,0.111964643001556,-0.965879321098328,-0.233540505170822,0.106277152895927,-0.96474277973175,-0.240783631801605, +0.0576011687517166,-0.967495381832123,-0.246241480112076,0.11315581202507,-0.952705502510071,-0.282042652368546,0.0468337424099445,-0.950500786304474,-0.307172328233719,-0.0119523396715522,-0.952001392841339,-0.305860459804535,0.0650866031646729,-0.958828032016754,-0.276428133249283,-0.177113384008408,-0.965363800525665,-0.191582322120667,-0.24201101064682,-0.947424530982971,-0.209326311945915,-0.162116482853889,-0.972168207168579,-0.169136568903923,-0.0983793362975121,-0.983109474182129,-0.154328793287277,-0.163741081953049,-0.972479999065399,-0.165745437145233,-0.146600976586342,-0.977986991405487,-0.148491024971008,-0.0849114581942558,-0.987707734107971,-0.131238833069801,-0.101065717637539,-0.98387336730957,-0.147576808929443,-0.0688134506344795,-0.983088731765747,-0.169709950685501,-0.00774054415524006,-0.987975299358368,-0.154418185353279,-0.0243273768573999,-0.985629618167877,-0.16715981066227,-0.0867608860135078,-0.979223608970642,-0.183286100625992,-0.197040423750877,-0.915111362934113,-0.351775884628296,-0.0706215128302574,-0.946201264858246,-0.315778017044067,-0.0087110111489892,-0.946755766868591,-0.321834802627563,-0.135062053799629,-0.925690352916718,-0.35334911942482,-0.000985565828159451,-0.933153092861176,-0.35947784781456,0.0548123307526112,-0.926566779613495,-0.372114956378937,-0.0718511343002319,-0.914080917835236,-0.399115920066833,-0.129422813653946,-0.911107122898102,-0.391322880983353,-0.0663347691297531,-0.877927482128143,-0.47417613863945,-0.212711215019226,-0.84640371799469,-0.488215863704681,-0.264100968837738,-0.839667081832886,-0.474562674760818,-0.11934706568718,-0.882822871208191,-0.454290717840195,-0.340555042028427,-0.927700638771057,-0.152950450778008,-0.402432262897491,-0.897140324115753,-0.182174324989319,-0.328684389591217,-0.934878647327423,-0.134046614170074,-0.266017705202103,-0.95799309015274,-0.10716287791729,-0.328524976968765,-0.934896767139435,-0.134311020374298,-0.310458660125732,-0.943719685077667,-0.114055164158344,-0.249787405133247,-0.96442174911499,-0.0865851044654846, +-0.266998589038849,-0.957926332950592,-0.105304822325706,-0.227226108312607,-0.965466320514679,-0.127448529005051,-0.168300345540047,-0.980218112468719,-0.10415156930685,-0.18548209965229,-0.975335478782654,-0.119654037058353,-0.246025145053864,-0.958437621593475,-0.144461587071419,-0.342576444149017,-0.891400337219238,-0.296726852655411,-0.224469691514969,-0.94175386428833,-0.250425636768341,-0.15900918841362,-0.956684529781342,-0.243866726756096,-0.278959274291992,-0.916601598262787,-0.286397069692612,-0.14624710381031,-0.94895988702774,-0.279440462589264,-0.0810344517230988,-0.956844627857208,-0.279073059558868,-0.204968065023422,-0.926403403282166,-0.315855801105499,-0.269123584032059,-0.908245742321014,-0.320409417152405,-0.189794570207596,-0.90400904417038,-0.383073925971985,-0.328928709030151,-0.851875245571136,-0.407571464776993,-0.386807024478912,-0.828548491001129,-0.404830574989319,-0.252273857593536,-0.89199286699295,-0.37510883808136,-0.502385079860687,-0.853161513805389,-0.140444368124008,-0.567122220993042,-0.808444201946259,-0.157449617981911,-0.490790277719498,-0.860828995704651,-0.134530305862427,-0.421205043792725,-0.899418294429779,-0.11676163226366,-0.505578815937042,-0.855313241481781,-0.113267675042152,-0.475480616092682,-0.872040688991547,-0.116030976176262,-0.409121096134186,-0.908155858516693,-0.0887292698025703,-0.440463125705719,-0.893604218959808,-0.0863921195268631,-0.398422241210938,-0.911170780658722,-0.105013221502304,-0.338144600391388,-0.938619017601013,-0.0682109221816063,-0.357100784778595,-0.930112957954407,-0.0858425870537758,-0.416798919439316,-0.900560915470123,-0.123567208647728,-0.486591458320618,-0.830196499824524,-0.27203431725502,-0.383926898241043,-0.897750675678253,-0.215971946716309,-0.319851279258728,-0.926797986030579,-0.196826860308647,-0.42768120765686,-0.86836451292038,-0.251061946153641,-0.303916305303574,-0.924703657627106,-0.229255869984627,-0.23897959291935,-0.94657176733017,-0.216542571783066,-0.353735893964767,-0.896998107433319,-0.265076011419296,-0.415461033582687,-0.865177929401398,-0.280819207429886, +-0.332888931035995,-0.885896503925323,-0.323067277669907,-0.45769327878952,-0.813143610954285,-0.359603345394135,-0.512508988380432,-0.776330709457397,-0.366940408945084,-0.395325511693954,-0.858322083950043,-0.32710999250412,-0.641507625579834,-0.751635253429413,-0.153337270021439,-0.694191932678223,-0.696553111076355,-0.181414946913719,-0.635953843593597,-0.756780683994293,-0.151148229837418,-0.57882285118103,-0.806182265281677,-0.122615210711956,-0.648980438709259,-0.748777329921722,-0.134747803211212,-0.628371477127075,-0.766589879989624,-0.132247552275658,-0.576655447483063,-0.81175971031189,-0.0922760963439941,-0.598584771156311,-0.795386433601379,-0.0951667949557304,-0.549891650676727,-0.82542872428894,-0.127618581056595,-0.478598654270172,-0.870902538299561,-0.111678652465343,-0.517860054969788,-0.850157618522644,-0.0951472371816635,-0.587402880191803,-0.801668345928192,-0.110841013491154,-0.614945709705353,-0.740199625492096,-0.271930605173111,-0.53428453207016,-0.818918108940125,-0.209554880857468,-0.479251325130463,-0.858820021152496,-0.180959403514862,-0.566906690597534,-0.786879420280457,-0.243798285722733,-0.461879372596741,-0.861728012561798,-0.209981590509415,-0.400840401649475,-0.897246718406677,-0.185136035084724,-0.499474048614502,-0.831177234649658,-0.244274616241455,-0.553751647472382,-0.787857472896576,-0.269517660140991,-0.47619241476059,-0.828886210918427,-0.293579012155533,-0.579286158084869,-0.740454971790314,-0.34081369638443,-0.626092433929443,-0.693437576293945,-0.356584817171097,-0.532655835151672,-0.788077831268311,-0.308563053607941,-0.755906760692596,-0.626206576824188,-0.190972030162811,-0.783277750015259,-0.571207106113434,-0.245353624224663,-0.755634069442749,-0.627575278282166,-0.187527149915695,-0.725697576999664,-0.674697697162628,-0.134707927703857,-0.756486594676971,-0.626838147640228,-0.186553061008453,-0.751668930053711,-0.637379705905914,-0.16953156888485,-0.721295595169067,-0.682853937149048,-0.115944929420948,-0.727021455764771,-0.673603892326355,-0.133032768964767,-0.690832257270813,-0.706816792488098,-0.152187168598175, +-0.652681171894073,-0.750750839710236,-0.101885169744492,-0.660354495048523,-0.741300642490387,-0.120022661983967,-0.696937501430511,-0.696764349937439,-0.1696987003088,-0.731294989585876,-0.623740494251251,-0.275962799787521,-0.660358786582947,-0.715303122997284,-0.228621080517769,-0.607018887996674,-0.767621159553528,-0.205635771155357,-0.685372412204742,-0.682349145412445,-0.254291832447052,-0.59823876619339,-0.771027147769928,-0.218237429857254,-0.539508044719696,-0.8175048828125,-0.201536670327187,-0.630169808864594,-0.737044095993042,-0.24423748254776,-0.681942164897919,-0.683539152145386,-0.260248214006424,-0.603962540626526,-0.741958260536194,-0.291079610586166,-0.681881129741669,-0.6447873711586,-0.345380008220673,-0.717537999153137,-0.591843128204346,-0.367234349250793,-0.649004936218262,-0.692883670330048,-0.31417328119278,-0.842581689357758,-0.475572168827057,-0.25275918841362,-0.853809595108032,-0.415734648704529,-0.31332740187645,-0.840378224849701,-0.480944514274597,-0.249913692474365,-0.825488984584808,-0.531726241111755,-0.189302235841751,-0.840202987194061,-0.48115012049675,-0.250107139348984,-0.83679074048996,-0.495575547218323,-0.232779160141945,-0.822626292705536,-0.542024910449982,-0.17174132168293,-0.826591789722443,-0.530485033988953,-0.187967836856842,-0.80523270368576,-0.561203837394714,-0.191443383693695,-0.783682703971863,-0.606919884681702,-0.132249042391777,-0.78934645652771,-0.596071660518646,-0.147073924541473,-0.810425937175751,-0.548046767711639,-0.207013726234436,-0.801690518856049,-0.491007834672928,-0.340886771678925,-0.765764176845551,-0.584870159626007,-0.267454952001572,-0.734982311725616,-0.641443371772766,-0.219889849424362,-0.776553213596344,-0.557377815246582,-0.293760180473328,-0.715930163860321,-0.653880774974823,-0.244711980223656,-0.669965445995331,-0.710382401943207,-0.215646177530289,-0.734869658946991,-0.622090220451355,-0.270130217075348,-0.773997485637665,-0.558840155601501,-0.297700464725494,-0.701435625553131,-0.635814785957336,-0.322067767381668,-0.76192843914032,-0.532573699951172,-0.368551731109619, +-0.792850613594055,-0.46918460726738,-0.388913571834564,-0.741210043430328,-0.575636446475983,-0.345326483249664,-0.888277292251587,-0.320206671953201,-0.329288721084595,-0.889420747756958,-0.261357724666595,-0.374997109174728,-0.887000918388367,-0.32604193687439,-0.326995551586151,-0.882033407688141,-0.383861660957336,-0.273253232240677,-0.887685298919678,-0.324940115213394,-0.326234221458435,-0.888034641742706,-0.339890837669373,-0.309626698493958,-0.890101790428162,-0.384164124727249,-0.24522802233696,-0.890817821025848,-0.370715796947479,-0.262704461812973,-0.878417491912842,-0.401954740285873,-0.258486121892929,-0.871803045272827,-0.450142443180084,-0.193213447928429,-0.873913049697876,-0.438270449638367,-0.210226684808731,-0.879672408103943,-0.387292742729187,-0.276008576154709,-0.849372386932373,-0.336957424879074,-0.406234294176102,-0.838022768497467,-0.432260274887085,-0.332969814538956,-0.823212087154388,-0.494745671749115,-0.278475850820541,-0.841617584228516,-0.403195023536682,-0.359323889017105,-0.806978285312653,-0.509501874446869,-0.298653900623322,-0.783261477947235,-0.571220457553864,-0.245374828577042,-0.813622713088989,-0.48303896188736,-0.323560535907745,-0.830888032913208,-0.411524415016174,-0.374530225992203,-0.788209855556488,-0.499418199062347,-0.359592318534851,-0.813545286655426,-0.400355786085129,-0.421733736991882,-0.824794590473175,-0.33316233754158,-0.456855356693268,-0.808895170688629,-0.427326649427414,-0.403832286596298,-0.833553314208984,-0.221444010734558,-0.506114184856415,-0.829152226448059,-0.171126753091812,-0.532186210155487,-0.835880875587463,-0.239787891507149,-0.493766129016876,-0.837077498435974,-0.290941953659058,-0.463307768106461,-0.862599551677704,-0.211587280035019,-0.459513694047928,-0.867763102054596,-0.291814416646957,-0.402282923460007,-0.865744531154633,-0.348810911178589,-0.358911424875259,-0.864695429801941,-0.264950066804886,-0.426735639572144,-0.857736229896545,-0.358260005712509,-0.368698120117188,-0.851610541343689,-0.418109267950058,-0.316139817237854,-0.857920587062836,-0.329463601112366,-0.394241034984589, +-0.858029246330261,-0.271504282951355,-0.435971856117249,-0.901296198368073,-0.166614457964897,-0.39988124370575,-0.900032877922058,-0.190075427293777,-0.392188966274261,-0.909687221050262,-0.242061391472816,-0.337454378604889,-0.912186563014984,-0.219760149717331,-0.345863044261932,-0.901680469512939,-0.25847715139389,-0.34664398431778,-0.907393574714661,-0.306170582771301,-0.28791743516922,-0.908556818962097,-0.289236128330231,-0.301441550254822,-0.901911199092865,-0.240791186690331,-0.358574658632278,-0.899703085422516,-0.304909139871597,-0.312353551387787,-0.896098554134369,-0.251263409852982,-0.365888178348541,-0.888586759567261,-0.200432687997818,-0.412601858377457,-0.894836962223053,-0.254468619823456,-0.366759687662125,-0.816223800182343,-0.119138330221176,-0.56531822681427,-0.794957339763641,-0.0576896592974663,-0.603916227817535,-0.8200963139534,-0.132429420948029,-0.556690752506256,-0.835302650928497,-0.185077145695686,-0.517702758312225,-0.840165376663208,-0.104057051241398,-0.532254159450531,-0.863401174545288,-0.170297801494598,-0.474907398223877,-0.877550363540649,-0.218727707862854,-0.426689088344574,-0.858437478542328,-0.156693905591965,-0.488397479057312,-0.869483888149261,-0.231447502970695,-0.436382740736008,-0.87535697221756,-0.281499236822128,-0.393075555562973,-0.864457130432129,-0.209509044885635,-0.45696821808815,-0.855591773986816,-0.160333395004272,-0.492195248603821,-0.7639399766922,-0.318051218986511,-0.561461627483368,-0.780548393726349,-0.213147848844528,-0.587632834911346,-0.78365558385849,-0.168684870004654,-0.59785395860672,-0.774079263210297,-0.268502593040466,-0.573330283164978,-0.776044428348541,-0.169999063014984,-0.607334792613983,-0.773837625980377,-0.126987084746361,-0.620523691177368,-0.773533463478088,-0.2275650203228,-0.591489851474762,-0.770468294620514,-0.269629538059235,-0.577649176120758,-0.807311713695526,-0.212785482406616,-0.550427436828613,-0.803596675395966,-0.291875272989273,-0.518691837787628,-0.796579897403717,-0.348035275936127,-0.494299381971359,-0.805743932723999,-0.257848680019379,-0.533189475536346, +-0.750274121761322,-0.085905633866787,-0.655521988868713,-0.7364342212677,-0.0357949435710907,-0.675561547279358,-0.755837321281433,-0.137094423174858,-0.640246272087097,-0.764510691165924,-0.186850875616074,-0.616936087608337,-0.78874796628952,-0.117591790854931,-0.603364646434784,-0.799376010894775,-0.194802790880203,-0.568374872207642,-0.803690850734711,-0.242499321699142,-0.543392181396484,-0.79711377620697,-0.170058846473694,-0.579387485980988,-0.804030776023865,-0.242271721363068,-0.542990922927856,-0.803320407867432,-0.292037218809128,-0.51902848482132,-0.803829908370972,-0.214390903711319,-0.554881930351257,-0.800878643989563,-0.168012246489525,-0.574774146080017,-0.866196155548096,-0.0426139198243618,-0.497883826494217,-0.873652935028076,-0.0546112358570099,-0.483475059270859,-0.90112829208374,-0.0894345566630363,-0.424227803945541,-0.895687520503998,-0.079097680747509,-0.43759298324585,-0.893008232116699,-0.115099534392357,-0.435072988271713,-0.915011882781982,-0.152120172977448,-0.37364786863327,-0.910661637783051,-0.143205374479294,-0.387540549039841,-0.887230396270752,-0.104792259633541,-0.449266999959946,-0.902848601341248,-0.162862494587898,-0.397919833660126,-0.887567281723022,-0.123195499181747,-0.443900048732758,-0.863358974456787,-0.0739763602614403,-0.499138087034225,-0.882460236549377,-0.118306294083595,-0.455266505479813,-0.762525200843811,0.00212446344085038,-0.646955013275146,-0.724041402339935,0.0563544631004333,-0.687450528144836,-0.770854532718658,-0.0113186929374933,-0.636910676956177,-0.804769158363342,-0.0625453218817711,-0.590283572673798,-0.784859955310822,0.0163007769733667,-0.619458913803101,-0.826610922813416,-0.0424697250127792,-0.561169028282166,-0.857199966907501,-0.0884286314249039,-0.507334768772125,-0.820971608161926,-0.0349498242139816,-0.569898307323456,-0.84954160451889,-0.105543904006481,-0.516855537891388,-0.872006595134735,-0.154308989644051,-0.464535474777222,-0.844904780387878,-0.0969960391521454,-0.526049077510834,-0.81688529253006,-0.042107842862606,-0.575261294841766, +-0.695802986621857,0.00913979299366474,-0.718174576759338,-0.668970763683319,0.0634957924485207,-0.740571677684784,-0.705765843391418,-0.0230896025896072,-0.70806896686554,-0.729894280433655,-0.0856407061219215,-0.678174018859863,-0.737477242946625,0.000889337679836899,-0.675371408462524,-0.768913805484772,-0.0848130732774734,-0.633702039718628,-0.78778064250946,-0.144693821668625,-0.598719775676727,-0.762584209442139,-0.064184382557869,-0.643696963787079,-0.788800120353699,-0.143814638257027,-0.597588300704956,-0.799033224582672,-0.195062458515167,-0.568767607212067,-0.78454864025116,-0.120174564421177,-0.608310341835022,-0.768572568893433,-0.0600799694657326,-0.636935353279114,-0.799260854721069,0.113608084619045,-0.590148568153381,-0.807405114173889,0.0800256878137589,-0.584544956684113,-0.849787890911102,0.0258185807615519,-0.526492059230804,-0.844075202941895,0.0585467219352722,-0.533019125461578,-0.846043288707733,0.00564143154770136,-0.533084332942963,-0.879475772380829,-0.0312894210219383,-0.474914252758026,-0.873042583465576,-0.0160567257553339,-0.487379729747772,-0.837483704090118,0.0222381260246038,-0.546009600162506,-0.870715081691742,-0.0254199020564556,-0.491130441427231,-0.843183398246765,0.00528916250914335,-0.537600219249725,-0.802712261676788,0.0449861623346806,-0.594667375087738,-0.83493560552597,0.00981394946575165,-0.550260186195374,-0.678366780281067,0.102831520140171,-0.727491796016693,-0.624935626983643,0.141766175627708,-0.767696440219879,-0.688309133052826,0.0926777496933937,-0.719473123550415,-0.739310145378113,0.0553114749491215,-0.67108952999115,-0.697139382362366,0.118191994726658,-0.707126200199127,-0.753463745117188,0.0785973966121674,-0.652774751186371,-0.802821397781372,0.0453914739191532,-0.594489216804504,-0.75006365776062,0.0814172476530075,-0.656335175037384,-0.794670224189758,0.0166287496685982,-0.606813609600067,-0.833183109760284,-0.0244172196835279,-0.552457869052887,-0.788210570812225,0.0232113171368837,-0.614967823028564,-0.744884073734283,0.0686224102973938,-0.663655519485474, +-0.612250208854675,0.10066157579422,-0.78423023223877,-0.572997152805328,0.149531245231628,-0.80580061674118,-0.625539362430573,0.0768391862511635,-0.776399493217468,-0.662269830703735,0.0254108253866434,-0.748834431171417,-0.651517391204834,0.102999873459339,-0.751609027385712,-0.704289734363556,0.0285757482051849,-0.70933723449707,-0.740370154380798,-0.0247370824217796,-0.671744167804718,-0.690918684005737,0.0501242056488991,-0.721192836761475,-0.740523099899292,-0.0245572607964277,-0.671582162380219,-0.769084334373474,-0.0846419408917427,-0.633517980575562,-0.730872988700867,-0.00422844104468822,-0.682500541210175,-0.697778761386871,0.0562270879745483,-0.714103221893311,-0.674506187438965,0.200068414211273,-0.710643410682678,-0.68173211812973,0.227276638150215,-0.695403933525085,-0.750466704368591,0.239746242761612,-0.615890800952911,-0.741446614265442,0.213335305452347,-0.636195659637451,-0.751770317554474,0.191962465643883,-0.630865931510925,-0.814453840255737,0.183392941951752,-0.550483584403992,-0.803648352622986,0.171056061983109,-0.569990515708923,-0.741278648376465,0.179367750883102,-0.64678680896759,-0.801319479942322,0.135979443788528,-0.582577586174011,-0.766825437545776,0.150144293904305,-0.624047696590424,-0.704940855503082,0.17693667113781,-0.686841905117035,-0.740756094455719,0.159703195095062,-0.652514636516571,-0.560097873210907,0.164880484342575,-0.811852693557739,-0.489179015159607,0.181366115808487,-0.853117942810059,-0.566791415214539,0.160093054175377,-0.808157026767731,-0.635491549968719,0.14526829123497,-0.758318960666656,-0.571217954158783,0.183490410447121,-0.800025820732117,-0.636410534381866,0.172043919563293,-0.751919209957123,-0.70334929227829,0.162333890795708,-0.69206029176712,-0.641893684864044,0.16996131837368,-0.74772036075592,-0.700668931007385,0.140564426779747,-0.699503183364868,-0.762059152126312,0.12171646207571,-0.635964572429657,-0.703885793685913,0.138922229409218,-0.69659560918808,-0.639698803424835,0.161295220255852,-0.751511335372925,-0.504806756973267,0.171750172972679,-0.845974028110504, +-0.459164381027222,0.20700815320015,-0.863895654678345,-0.524118959903717,0.148836225271225,-0.838538706302643,-0.570705115795135,0.108732141554356,-0.813924431800842,-0.543437540531158,0.174594715237617,-0.821092128753662,-0.611715972423553,0.116564750671387,-0.782442450523376,-0.661443889141083,0.0752712264657021,-0.746207892894745,-0.593731105327606,0.135114163160324,-0.793238699436188,-0.661386728286743,0.0751804560422897,-0.746267735958099,-0.703662753105164,0.0277189332991838,-0.709993302822113,-0.644948720932007,0.0962805896997452,-0.758136689662933,-0.60039609670639,0.142924726009369,-0.786827206611633,-0.587721765041351,0.0765362977981567,-0.805434882640839,-0.559053301811218,0.109399259090424,-0.821882724761963,-0.582090854644775,0.0972849428653717,-0.807283043861389,-0.610736012458801,0.0595741122961044,-0.789590060710907,-0.602622747421265,0.106319107115269,-0.79091215133667,-0.635554492473602,0.0449821166694164,-0.770744562149048,-0.660437107086182,-0.00748638622462749,-0.750844180583954,-0.627682089805603,0.0656482875347137,-0.775696754455566,-0.670646548271179,-0.00277055217884481,-0.741771817207336,-0.689545929431915,-0.0547205619513988,-0.722171783447266,-0.661947667598724,0.0296511724591255,-0.748963415622711,-0.641187787055969,0.0705497786402702,-0.764134109020233,-0.522651553153992,0.146506160497665,-0.839863896369934,-0.499691009521484,0.196524769067764,-0.843615472316742,-0.508091568946838,0.181819230318069,-0.841893553733826,-0.531354010105133,0.129825755953789,-0.837142944335938,-0.514559864997864,0.185821995139122,-0.83707731962204,-0.543149769306183,0.127174362540245,-0.829948842525482,-0.569976210594177,0.0738649666309357,-0.818334400653839,-0.542696714401245,0.135728538036346,-0.828889667987823,-0.594006299972534,0.0889673233032227,-0.799525737762451,-0.624479949474335,0.0390012785792351,-0.780066430568695,-0.588122725486755,0.0999263525009155,-0.802574872970581,-0.556958377361298,0.143199518322945,-0.818102240562439,-0.719285547733307,-0.0961647927761078,-0.68802672624588,-0.726292192935944,-0.13889779150486,-0.673206567764282, +-0.714657127857208,-0.0497837215662003,-0.697701036930084,-0.70271497964859,-0.00607271585613489,-0.71144562959671,-0.698562443256378,-0.0518801882863045,-0.713665843009949,-0.682556688785553,-0.0249372161924839,-0.730406999588013,-0.664710938930511,0.0155013762414455,-0.746939837932587,-0.682352066040039,-0.0103433299809694,-0.730950534343719,-0.646624803543091,0.0123381726443768,-0.762708365917206,-0.621576726436615,0.0466967485845089,-0.781960189342499,-0.645621061325073,0.0250499360263348,-0.763246893882751,-0.669352173805237,-0.0130064086988568,-0.742831408977509,-0.393892586231232,0.188831984996796,-0.899550497531891,-0.354671329259872,0.21506005525589,-0.909921765327454,-0.377154797315598,0.213608503341675,-0.901180148124695,-0.417173951864243,0.184673190116882,-0.88986611366272,-0.387259393930435,0.221957877278328,-0.894854784011841,-0.436917006969452,0.18482893705368,-0.880307793617249,-0.479542076587677,0.150105133652687,-0.864585340023041,-0.428454637527466,0.192678019404411,-0.882780790328979,-0.492170214653015,0.160876661539078,-0.855504035949707,-0.532782018184662,0.119533874094486,-0.837767839431763,-0.485439330339432,0.167883992195129,-0.857999861240387,-0.444984793663025,0.204457387328148,-0.871886432170868,-0.716563045978546,-0.13347601890564,-0.684632420539856,-0.7187220454216,-0.109278753399849,-0.686656355857849,-0.721493542194366,-0.0675083696842194,-0.689122378826141,-0.720569550991058,-0.0934897139668465,-0.687051117420197,-0.708014726638794,-0.0678180605173111,-0.702933847904205,-0.70305997133255,-0.0228376183658838,-0.71076375246048,-0.708812892436981,-0.0505535751581192,-0.70358270406723,-0.712354600429535,-0.0938645377755165,-0.695514559745789,-0.72633421421051,-0.0482149869203568,-0.685648560523987,-0.733479022979736,-0.137201130390167,-0.665720999240875,-0.734796226024628,-0.176394090056419,-0.654950141906738,-0.732455193996429,-0.0929155275225639,-0.674445033073425,-0.735592782497406,-0.425497233867645,-0.527119934558868,-0.775451838970184,-0.309489220380783,-0.55035525560379,-0.786964178085327,-0.260518699884415,-0.55930095911026, +-0.757095634937286,-0.371850728988647,-0.537152886390686,-0.780741989612579,-0.260276824235916,-0.568065047264099,-0.787889182567596,-0.212643831968307,-0.577938795089722,-0.769351482391357,-0.316983908414841,-0.554634571075439,-0.752967596054077,-0.372190088033676,-0.542691886425018,-0.807961404323578,-0.308221876621246,-0.502192854881287,-0.780559003353119,-0.414327621459961,-0.468038827180862,-0.754454076290131,-0.481197148561478,-0.446372419595718,-0.792718410491943,-0.367981880903244,-0.485990583896637,-0.725948214530945,-0.206723511219025,-0.655945599079132,-0.733056008815765,-0.180517971515656,-0.655775964260101,-0.739823937416077,-0.147427946329117,-0.656449317932129,-0.734765946865082,-0.171678230166435,-0.656235933303833,-0.728515565395355,-0.145585626363754,-0.669380247592926,-0.730149745941162,-0.110037855803967,-0.674368619918823,-0.723747432231903,-0.133810430765152,-0.676967084407806,-0.720646858215332,-0.169646322727203,-0.672226369380951,-0.756960809230804,-0.13520373404026,-0.639320135116577,-0.745149433612823,-0.215065389871597,-0.631267964839935,-0.735126376152039,-0.257772237062454,-0.627010881900787,-0.752788901329041,-0.174226000905037,-0.63478672504425,-0.684822261333466,-0.521625757217407,-0.508846759796143,-0.746782243251801,-0.406497061252594,-0.526380479335785,-0.766747891902924,-0.35965159535408,-0.531740844249725,-0.714423000812531,-0.475744336843491,-0.513095617294312,-0.763733446598053,-0.358838438987732,-0.536606192588806,-0.779686868190765,-0.310124397277832,-0.5439772605896,-0.738280057907104,-0.425577580928802,-0.523284137248993,-0.71251392364502,-0.475460171699524,-0.516005396842957,-0.774741172790527,-0.425709307193756,-0.467491000890732,-0.724498450756073,-0.540135443210602,-0.428200572729111,-0.690955936908722,-0.59394371509552,-0.412081271409988,-0.751327276229858,-0.480260878801346,-0.452611118555069,-0.716732442378998,-0.287245959043503,-0.635440289974213,-0.725102961063385,-0.259505182504654,-0.637873709201813,-0.736648261547089,-0.220585778355598,-0.639289677143097,-0.729910254478455,-0.248598709702492,-0.636733710765839, +-0.729967534542084,-0.218136727809906,-0.647737443447113,-0.737462162971497,-0.181673809885979,-0.65049535036087,-0.733509182929993,-0.208588033914566,-0.646881401538849,-0.723969519138336,-0.246487677097321,-0.644291818141937,-0.760761141777039,-0.215273484587669,-0.612290620803833,-0.736199676990509,-0.303109973669052,-0.605090618133545,-0.718773245811462,-0.346172153949738,-0.60293436050415,-0.75046706199646,-0.255912095308304,-0.609350621700287,-0.613521158695221,-0.602793395519257,-0.510129332542419,-0.698306381702423,-0.491830468177795,-0.520068407058716,-0.725006461143494,-0.45102995634079,-0.520516812801361,-0.651595413684845,-0.56402987241745,-0.507241308689117,-0.724932968616486,-0.450988173484802,-0.52065521478653,-0.748355448246002,-0.40713357925415,-0.52364718914032,-0.68570077419281,-0.521872520446777,-0.507408618927002,-0.65199863910675,-0.564206302165985,-0.506526589393616,-0.720172762870789,-0.530724406242371,-0.446858823299408,-0.64545202255249,-0.643241286277771,-0.411864429712296,-0.602316379547119,-0.68884289264679,-0.403373867273331,-0.687907516956329,-0.579033017158508,-0.437611758708954,-0.688686430454254,-0.354474574327469,-0.63250195980072,-0.702291488647461,-0.328634351491928,-0.631495118141174,-0.719795405864716,-0.300252258777618,-0.625893890857697,-0.708486199378967,-0.326394736766815,-0.625710725784302,-0.717138826847076,-0.298552602529526,-0.629744708538055,-0.732553064823151,-0.263148307800293,-0.62778913974762,-0.721124649047852,-0.289348751306534,-0.629489123821259,-0.703873515129089,-0.32350018620491,-0.632384300231934,-0.746735751628876,-0.301680624485016,-0.592768549919128,-0.706232309341431,-0.389758676290512,-0.5910364985466,-0.681735873222351,-0.426298648118973,-0.594563603401184,-0.72941917181015,-0.339647561311722,-0.593790531158447,-0.525059163570404,-0.661166667938232,-0.535883843898773,-0.632883667945862,-0.558953285217285,-0.535751342773438,-0.66523277759552,-0.525695860385895,-0.530197441577911,-0.568446397781372,-0.633528351783752,-0.524891018867493,-0.667525291442871,-0.528081715106964,-0.524918794631958, +-0.697160005569458,-0.490940928459167,-0.522441446781158,-0.612138032913208,-0.60191410779953,-0.512822031974792,-0.570791840553284,-0.635617733001709,-0.519794940948486,-0.643744111061096,-0.621420085430145,-0.446576684713364,-0.543884575366974,-0.727343440055847,-0.418522506952286,-0.491491347551346,-0.763508260250092,-0.418917089700699,-0.602568626403809,-0.663410425186157,-0.443618834018707,-0.649447500705719,-0.403460144996643,-0.644544780254364,-0.670612096786499,-0.382293403148651,-0.63571310043335,-0.687256157398224,-0.355903744697571,-0.633254766464233,-0.668253540992737,-0.378339558839798,-0.640543818473816,-0.684003472328186,-0.352569580078125,-0.638618767261505,-0.702587306499481,-0.328876435756683,-0.631039917469025,-0.689778089523315,-0.355355590581894,-0.630815863609314,-0.668669998645782,-0.378763198852539,-0.639858484268188,-0.713272511959076,-0.374569028615952,-0.592402279376984,-0.658430814743042,-0.461085975170135,-0.5948686003685,-0.628686010837555,-0.488403677940369,-0.605157613754272,-0.692335665225983,-0.40327650308609,-0.598363935947418,-0.430716037750244,-0.685557782649994,-0.586936354637146,-0.557633876800537,-0.59812068939209,-0.575583279132843,-0.591422259807587,-0.57650899887085,-0.563788294792175,-0.474362999200821,-0.673063099384308,-0.567420303821564,-0.595182478427887,-0.583577156066895,-0.55244505405426,-0.629764199256897,-0.554633617401123,-0.543855249881744,-0.522133827209473,-0.657569646835327,-0.543119311332703,-0.477529317140579,-0.678516983985901,-0.558193981647491,-0.549351453781128,-0.69098699092865,-0.469840377569199,-0.42624831199646,-0.784081041812897,-0.451142162084579,-0.370694875717163,-0.80581521987915,-0.461786776781082,-0.50259667634964,-0.722458481788635,-0.474816113710403,-0.591718792915344,-0.408358335494995,-0.695062696933746,-0.606549680233002,-0.374717772006989,-0.701201856136322,-0.630284130573273,-0.373307436704636,-0.680722951889038,-0.61762923002243,-0.40861052274704,-0.671990752220154,-0.639404296875,-0.387558907270432,-0.664048373699188,-0.665585815906525,-0.375877022743225,-0.644757270812988, +-0.653672754764557,-0.408888250589371,-0.63680636882782,-0.624636650085449,-0.419888138771057,-0.658424615859985,-0.665856420993805,-0.42481455206871,-0.613325297832489,-0.595146656036377,-0.508357048034668,-0.622393488883972,-0.562636971473694,-0.525173783302307,-0.63846081495285,-0.640989482402802,-0.447111189365387,-0.623878240585327,-0.350738227367401,-0.660994708538055,-0.663376748561859,-0.492247581481934,-0.589498817920685,-0.640455663204193,-0.519501209259033,-0.584660112857819,-0.623129904270172,-0.384650379419327,-0.667810678482056,-0.637238562107086,-0.52323979139328,-0.599606990814209,-0.605550646781921,-0.553552627563477,-0.587238788604736,-0.59053373336792,-0.427452445030212,-0.67732310295105,-0.598763585090637,-0.387677699327469,-0.679929852485657,-0.622415840625763,-0.446544229984283,-0.726979434490204,-0.521631240844727,-0.306656539440155,-0.801889955997467,-0.512771189212799,-0.255782455205917,-0.805894374847412,-0.533956468105316,-0.401877790689468,-0.742795884609222,-0.535489082336426,-0.559463858604431,-0.396879822015762,-0.727658271789551,-0.582431852817535,-0.379982888698578,-0.718600153923035,-0.591935098171234,-0.376200377941132,-0.712801694869995,-0.570292115211487,-0.395376473665237,-0.720030784606934,-0.592978298664093,-0.378892838954926,-0.710504829883575,-0.605114042758942,-0.37190654873848,-0.703933596611023,-0.58438104391098,-0.393549472093582,-0.709660232067108,-0.57120543718338,-0.397790938615799,-0.717974007129669,-0.609338819980621,-0.445687085390091,-0.655796647071838,-0.527192890644073,-0.522794127464294,-0.669890999794006,-0.501122772693634,-0.51978075504303,-0.691884338855743,-0.589641213417053,-0.449567824602127,-0.670978426933289,-0.310350924730301,-0.586255967617035,-0.748322367668152,-0.45334130525589,-0.534182965755463,-0.713533639907837,-0.465771704912186,-0.545918703079224,-0.696440517902374,-0.32313460111618,-0.611300766468048,-0.722423315048218,-0.467030644416809,-0.56841778755188,-0.677335679531097,-0.489517539739609,-0.570929348468781,-0.659099578857422,-0.348742425441742,-0.645527958869934,-0.679464757442474, +-0.323585152626038,-0.629658162593842,-0.706274271011353,-0.356585323810577,-0.715285837650299,-0.601010084152222,-0.206148952245712,-0.771143972873688,-0.602361679077148,-0.170707494020462,-0.75678014755249,-0.630985617637634,-0.323000818490982,-0.713793158531189,-0.621425628662109,-0.539512693881989,-0.321153223514557,-0.778323113918304,-0.560214579105377,-0.299594640731812,-0.77227109670639,-0.559308409690857,-0.313260555267334,-0.76749062538147,-0.538892567157745,-0.337855577468872,-0.77165299654007,-0.5611492395401,-0.321345269680023,-0.762790143489838,-0.573485672473907,-0.349536061286926,-0.740903973579407,-0.558721303939819,-0.394156068563461,-0.729706466197968,-0.544291734695435,-0.364688873291016,-0.755478978157043,-0.564669013023376,-0.416579514741898,-0.712467789649963,-0.473195254802704,-0.483399301767349,-0.736485838890076,-0.458359003067017,-0.465116798877716,-0.757346153259277,-0.551983416080475,-0.408071368932724,-0.727181017398834,-0.333791583776474,-0.46860259771347,-0.817920982837677,-0.470258474349976,-0.43174085021019,-0.769712150096893,-0.457562237977982,-0.458318889141083,-0.761958360671997,-0.317364633083344,-0.506307005882263,-0.801830947399139,-0.454947978258133,-0.486460357904434,-0.745907962322235,-0.454006105661392,-0.507588982582092,-0.732278525829315,-0.311828792095184,-0.564517617225647,-0.76425302028656,-0.313681900501251,-0.531346082687378,-0.786940336227417,-0.304248332977295,-0.651653349399567,-0.69482433795929,-0.151827692985535,-0.690430700778961,-0.707286238670349,-0.144803166389465,-0.659920513629913,-0.737249672412872,-0.294948667287827,-0.632887780666351,-0.715861976146698,-0.571882367134094,-0.235871553421021,-0.785694122314453,-0.593927800655365,-0.229541510343552,-0.771077513694763,-0.569722354412079,-0.237519726157188,-0.786766052246094,-0.548004031181335,-0.24544470012188,-0.799655377864838,-0.568982362747192,-0.228839740157127,-0.789867997169495,-0.555535614490509,-0.267958134412766,-0.78713321685791,-0.53806084394455,-0.309382408857346,-0.784074664115906,-0.549560785293579,-0.269096910953522,-0.790929615497589, +-0.542715966701508,-0.35017666220665,-0.763436734676361,-0.452256143093109,-0.404123663902283,-0.795077800750732,-0.462541788816452,-0.369615465402603,-0.805878043174744,-0.551837623119354,-0.323964327573776,-0.768454551696777,-0.4241603910923,-0.332855105400085,-0.842196762561798,-0.535704910755157,-0.304498553276062,-0.787591814994812,-0.504566550254822,-0.341441482305527,-0.792988240718842,-0.379866451025009,-0.376108765602112,-0.845129370689392,-0.497194558382034,-0.375600188970566,-0.782126665115356,-0.474494785070419,-0.404028594493866,-0.782058477401733,-0.339424401521683,-0.442629992961884,-0.829981803894043,-0.372000128030777,-0.403209894895554,-0.83608478307724,-0.313846170902252,-0.549054086208344,-0.77462249994278,-0.16928993165493,-0.570504367351532,-0.803657710552216,-0.19614240527153,-0.535374641418457,-0.821524143218994,-0.331272065639496,-0.524143993854523,-0.784558415412903,-0.524195909500122,-0.224652886390686,-0.821431517601013,-0.562953650951385,-0.181575834751129,-0.806296050548553,-0.626480758190155,-0.146393150091171,-0.765565872192383,-0.598674774169922,-0.185039505362511,-0.779325902462006,-0.631910085678101,-0.0867637023329735,-0.770169913768768,-0.646787822246552,-0.0854781121015549,-0.757864773273468,-0.618427574634552,-0.0876746475696564,-0.780935645103455,-0.6015305519104,-0.0913764238357544,-0.793606579303741,-0.617375195026398,-0.0421674475073814,-0.785537898540497,-0.590888261795044,-0.137428730726242,-0.794961929321289,-0.571904242038727,-0.230483114719391,-0.787275731563568,-0.600886762142181,-0.13465042412281,-0.787911415100098,-0.544806361198425,-0.26808175444603,-0.794555306434631,-0.434482663869858,-0.301914602518082,-0.848570823669434,-0.484642773866653,-0.256440013647079,-0.836277425289154,-0.58442610502243,-0.225017428398132,-0.779623806476593,0.553803324699402,-0.7320157289505,0.396805733442307,0.441413253545761,-0.760703444480896,0.475903987884521,0.560718894004822,-0.718522012233734,0.411485522985458,0.663220345973969,-0.673367619514465,0.326672375202179,0.172964453697205,-0.721158385276794,-0.670830726623535, +0.22219018638134,-0.713418245315552,-0.664579570293427,0.212482795119286,-0.735799193382263,-0.64300125837326,0.162925451993942,-0.746191561222076,-0.645487070083618,-0.754373610019684,0.0732855349779129,-0.652341842651367,-0.690800130367279,-0.00432503689080477,-0.723032712936401,-0.668805181980133,-0.0894693359732628,-0.73803448677063,-0.733144164085388,-0.0100424187257886,-0.679999172687531,-0.758412837982178,0.111001275479794,-0.642252802848816,-0.808989942073822,0.116392239928246,-0.576184093952179,-0.828620254993439,0.136100381612778,-0.543014883995056,-0.78490549325943,0.126971065998077,-0.60646653175354,-0.83017361164093,0.172570735216141,-0.530123770236969,-0.835352182388306,0.179091051220894,-0.519724130630493,-0.794044017791748,0.18875727057457,-0.577810347080231,-0.786409318447113,0.183002129197121,-0.589975118637085,-0.840731143951416,0.0682839527726173,-0.537129759788513,-0.870852887630463,0.0307845287024975,-0.490578770637512,-0.883774161338806,0.0346143618226051,-0.466631770133972,-0.85797917842865,0.0677744448184967,-0.50919383764267,-0.890913963317871,0.0901002436876297,-0.44514524936676,-0.894412934780121,0.0952043011784554,-0.436991572380066,-0.866440653800964,0.123691618442535,-0.483715832233429,-0.863313257694244,0.11860428750515,-0.490533888339996,-0.868703961372375,0.186536148190498,-0.458865612745285,-0.83504194021225,0.162590250372887,-0.525613367557526,-0.827650010585785,0.121438249945641,-0.547949135303497,-0.865059614181519,0.144577652215958,-0.480384230613708,-0.921694993972778,0.110693223774433,-0.371786773204803,-0.945592820644379,0.0587766766548157,-0.319999217987061,-0.94799417257309,0.079413466155529,-0.308221697807312,-0.923418998718262,0.129537209868431,-0.361272037029266,-0.949292540550232,0.108342044055462,-0.295136719942093,-0.948875904083252,0.133475691080093,-0.286040067672729,-0.924582242965698,0.184364855289459,-0.333402574062347,-0.924002110958099,0.16163943707943,-0.346544086933136,-0.92469197511673,0.134992048144341,-0.355980306863785,-0.897951662540436,0.192977875471115,-0.395527929067612, +-0.895413279533386,0.161853805184364,-0.414775043725967,-0.922032833099365,0.102356545627117,-0.373334378004074,-0.983873128890991,0.0646460056304932,-0.166777193546295,-0.981686413288116,0.108419895172119,-0.156642630696297,-0.968237817287445,0.0997111797332764,-0.229288280010223,-0.970975697040558,0.0580783113837242,-0.232019603252411,-0.967368066310883,0.150400668382645,-0.203908741474152,-0.981704115867615,0.107827924191952,-0.156940162181854,-0.98093318939209,0.123888909816742,-0.149738952517509,-0.966224849224091,0.165676653385162,-0.197384759783745,-0.97989696264267,0.140696331858635,-0.141444951295853,-0.979451715946198,0.140335857868195,-0.14484529197216,-0.965404391288757,0.165269687771797,-0.201693624258041,-0.966245830059052,0.165381386876106,-0.197529971599579,-0.965999245643616,0.155884563922882,-0.206265583634377,-0.945979475975037,0.20303201675415,-0.252786159515381,-0.948275327682495,0.181353449821472,-0.260547429323196,-0.967883169651031,0.133466616272926,-0.213046595454216,-0.99334317445755,0.114913731813431,-0.00802390091121197,-0.989682793617249,0.119518555700779,-0.0790145546197891,-0.992094397544861,0.0932427495718002,-0.083990789949894,-0.995996475219727,0.0867561548948288,-0.0215520542114973,-0.987195909023285,0.145336896181107,-0.0657371208071709,-0.991585791110992,0.12944994866848,-0.000497706001624465,-0.989854037761688,0.141758680343628,0.00966655649244785,-0.985753357410431,0.158024415373802,-0.0576089285314083,-0.989862382411957,0.141702324151993,0.00963814742863178,-0.989758610725403,0.14210256934166,0.0136011866852641,-0.983270585536957,0.175406232476234,-0.0491084009408951,-0.983599245548248,0.173366010189056,-0.0497679859399796,-0.983307063579559,0.175166517496109,-0.0492315478622913,-0.966784536838531,0.23698116838932,-0.0957486480474472,-0.972763061523438,0.204401761293411,-0.109324082732201,-0.987516522407532,0.143475785851479,-0.0650062188506126,0.937764644622803,-0.211014866828918,-0.275808423757553,0.934848189353943,-0.221703678369522,-0.277319967746735,0.931743562221527,-0.189616367220879,-0.309676617383957, +0.931290745735168,-0.178495779633522,-0.317548036575317,-0.12761501967907,0.309493511915207,0.942299365997314,0.113153576850891,0.286636531352997,0.951333701610565,-0.121425583958626,0.363739103078842,0.923552751541138,-0.355350375175476,0.365544021129608,0.860292911529541,-0.982889294624329,0.160299688577652,0.0907331630587578,-0.976615130901337,0.209635585546494,0.0477057881653309,-0.981482684612274,0.188620239496231,0.0333762727677822,-0.987311124801636,0.137842625379562,0.078842505812645,0.943119645118713,-0.257698535919189,-0.210039973258972,0.918813765048981,-0.28381559252739,-0.274280697107315,0.891833424568176,-0.342779338359833,-0.295187205076218,0.920618176460266,-0.313627630472183,-0.232593804597855,-0.973044335842133,0.18126654624939,0.142573997378349,-0.990776777267456,0.0927987024188042,0.0987411513924599,-0.999590873718262,0.0198721028864384,0.0205758716911077,-0.991764843463898,0.111774161458015,0.0625216960906982,0.949564337730408,-0.183288171887398,-0.254426807165146,0.95432037115097,-0.171984240412712,-0.244323596358299,0.965176105499268,-0.185811951756477,-0.184144526720047,0.96100640296936,-0.198350697755814,-0.192674979567528,0.903158009052277,-0.210886061191559,-0.373942136764526,0.895361304283142,-0.179177492856979,-0.407705187797546,0.889120280742645,-0.160783261060715,-0.428502142429352,0.90249764919281,-0.194978058338165,-0.384033441543579,0.92273336648941,-0.143018901348114,-0.357922613620758,0.927571296691895,-0.123572401702404,-0.35262069106102,0.93587052822113,-0.170431599020958,-0.308382123708725,0.929709672927856,-0.188378617167473,-0.316470175981522,0.932976841926575,-0.178905501961708,-0.312325567007065,0.944115698337555,-0.203744918107986,-0.259101688861847,0.944369614124298,-0.199039161205292,-0.261819899082184,0.933990955352783,-0.176227495074272,-0.310813337564468,0.944776952266693,-0.197839394211769,-0.261258691549301,0.941294729709625,-0.201405614614487,-0.270924717187881,0.930181503295898,-0.181509211659431,-0.319087475538254,0.933146059513092,-0.178670421242714,-0.311954230070114, +0.872889459133148,-0.167889460921288,-0.458123505115509,0.848516821861267,-0.147542744874954,-0.508183419704437,0.825074374675751,-0.138309627771378,-0.547834753990173,0.856218159198761,-0.160235822200775,-0.491136431694031,0.867523610591888,-0.129329428076744,-0.480288118124008,0.871436595916748,-0.119118079543114,-0.475824654102325,0.887938559055328,-0.157573416829109,-0.432129323482513,0.884624421596527,-0.16948889195919,-0.434411525726318,0.884610652923584,-0.166122257709503,-0.435738027095795,0.904685020446777,-0.188723713159561,-0.382005900144577,0.90787935256958,-0.184146106243134,-0.376623600721359,0.887988924980164,-0.160996675491333,-0.430761903524399,0.906785130500793,-0.186952248215675,-0.377875328063965,0.903924882411957,-0.191628903150558,-0.382358759641647,0.890681385993958,-0.157063439488411,-0.426635235548019,0.891218781471252,-0.152617126703262,-0.427126556634903,0.719457626342773,-0.188436552882195,-0.668485164642334,0.687197268009186,-0.120131142437458,-0.716469407081604,0.706057071685791,-0.167978569865227,-0.687943756580353,0.726368010044098,-0.22205439209938,-0.650447010993958,0.791316986083984,-0.11799268424511,-0.599912643432617,0.805365085601807,-0.0962650254368782,-0.584910333156586,0.843914985656738,-0.0996649116277695,-0.527137994766235,0.831467688083649,-0.12297485023737,-0.541792094707489,0.832482814788818,-0.12914003431797,-0.538790702819824,0.858191728591919,-0.153364181518555,-0.48988401889801,0.856294095516205,-0.157353430986404,-0.491935402154922,0.828523576259613,-0.13010972738266,-0.544628500938416,0.855492174625397,-0.159266650676727,-0.492714196443558,0.852481067180634,-0.168216213583946,-0.494953960180283,0.824672937393188,-0.139145240187645,-0.548227488994598,0.826601207256317,-0.134692221879959,-0.546432673931122,0.714906573295593,-0.194262638688087,-0.671692371368408,0.696376383304596,-0.175968706607819,-0.695769369602203,0.641778171062469,-0.107377171516418,-0.759335875511169,0.672407031059265,-0.140757039189339,-0.726674795150757,0.588142275810242,-0.106808915734291,-0.801673591136932, +0.653056263923645,-0.19067208468914,-0.732913136482239,0.648741662502289,-0.175150603055954,-0.740578591823578,0.566681325435638,-0.0759249180555344,-0.820431530475616,0.73531049489975,-0.0805917829275131,-0.672921597957611,0.741559624671936,-0.0797222405672073,-0.666133522987366,0.769152104854584,-0.0952110663056374,-0.631933450698853,0.76420658826828,-0.0971057042479515,-0.63761967420578,0.76207035779953,-0.113070227205753,-0.637545228004456,0.782811164855957,-0.150408461689949,-0.603807866573334,0.784674346446991,-0.133289217948914,-0.605409145355225,0.764580607414246,-0.0961843952536583,-0.637310862541199,0.78529965877533,-0.131874322891235,-0.604907989501953,0.775472819805145,-0.128451898694038,-0.618176519870758,0.74339371919632,-0.0913649126887321,-0.662584543228149,0.760822713375092,-0.105345711112022,-0.640352308750153,0.658219933509827,-0.0607715807855129,-0.75036883354187,0.701089441776276,-0.0935285165905952,-0.706913113594055,0.731935143470764,-0.115312099456787,-0.671546041965485,0.696403503417969,-0.0891969949007034,-0.712085843086243,0.730638086795807,-0.117943949997425,-0.672500848770142,0.764659464359283,-0.148698106408119,-0.627044498920441,0.734274446964264,-0.123779118061066,-0.667472779750824,0.695876598358154,-0.0901342332363129,-0.712482690811157,0.722525298595428,-0.14267672598362,-0.676461756229401,0.691184997558594,-0.114428162574768,-0.713561177253723,0.639168739318848,-0.0627190545201302,-0.76650482416153,0.686367094516754,-0.106761582195759,-0.719376385211945,0.684389114379883,0.17649619281292,-0.707432568073273,0.685082674026489,0.21200267970562,-0.696933746337891,0.664591610431671,0.110234655439854,-0.739030659198761,0.664813756942749,0.075087234377861,-0.743225812911987,0.396056413650513,0.0893594175577164,-0.913867831230164,0.439096212387085,0.0427820831537247,-0.897420883178711,0.490211755037308,-0.01347372867167,-0.871499240398407,0.452189385890961,0.0281517785042524,-0.891477584838867,0.496386051177979,-0.00628006597980857,-0.86807918548584,0.584242880344391,-0.111429646611214,-0.803892850875854, +0.562161386013031,-0.0814541280269623,-0.823006570339203,0.459230750799179,0.0361484512686729,-0.8875812292099,0.55674022436142,-0.0880281329154968,-0.826009273529053,0.527193784713745,-0.0546726696193218,-0.847984433174133,0.411305785179138,0.0755812376737595,-0.908358454704285,0.452553123235703,0.0285633262246847,-0.891279876232147,0.522842168807983,0.0174100585281849,-0.852251768112183,0.583736002445221,-0.0454691648483276,-0.810669362545013,0.622685372829437,-0.0874031260609627,-0.777575492858887,0.568890392780304,-0.0320843234658241,-0.821787238121033,0.626195907592773,-0.0822308957576752,-0.775317192077637,0.672653079032898,-0.140420436859131,-0.72651219367981,0.643236398696899,-0.105502814054489,-0.758364081382751,0.575241804122925,-0.0236845947802067,-0.817640423774719,0.624563872814178,-0.129054933786392,-0.770236849784851,0.597451567649841,-0.0956401824951172,-0.796181261539459,0.509912312030792,0.00969149544835091,-0.860171794891357,0.557849049568176,-0.0464532077312469,-0.828641355037689,0.264157772064209,0.165978491306305,-0.950090527534485,0.205378919839859,0.222931772470474,-0.952953815460205,0.249829337000847,0.176792398095131,-0.952013552188873,0.310039043426514,0.120494022965431,-0.943057298660278,0.253723293542862,0.181227892637253,-0.950147867202759,0.302605450153351,0.136402353644371,-0.943305015563965,0.361280620098114,0.0801890417933464,-0.929002821445465,0.313108623027802,0.123915135860443,-0.941598653793335,0.372964650392532,0.0941353738307953,-0.923057913780212,0.431365728378296,0.0337714143097401,-0.901544868946075,0.386548846960068,0.0788234397768974,-0.918894350528717,0.327315628528595,0.139818176627159,-0.934513509273529,0.145349785685539,0.234225392341614,-0.961255490779877,0.129189670085907,0.254493594169617,-0.958406507968903,0.156360104680061,0.223743453621864,-0.962024211883545,0.18680801987648,0.191131293773651,-0.963624179363251,0.155474469065666,0.222748637199402,-0.962398409843445,0.199850648641586,0.188497111201286,-0.961524188518524,0.24294376373291,0.155225083231926,-0.957540452480316, +0.190992400050163,0.19584958255291,-0.961854934692383,0.24945954978466,0.163158714771271,-0.954541385173798,0.294703871011734,0.126737520098686,-0.947146892547607,0.242760524153709,0.168750941753387,-0.955296039581299,0.198508247733116,0.20432648062706,-0.958564221858978,0.372230619192123,0.0932554081082344,-0.92344343662262,0.309469282627106,0.144830495119095,-0.9398153424263,0.376441478729248,0.0899424254894257,-0.922064185142517,0.438222199678421,0.0392177999019623,-0.898010730743408,0.384135007858276,0.100923478603363,-0.917744398117065,0.457275837659836,0.0451881550252438,-0.888176202774048,0.519322693347931,-0.00187252881005406,-0.854576170444489,0.447802156209946,0.0522974096238613,-0.892601907253265,0.522079288959503,0.00260815396904945,-0.852892994880676,0.581949293613434,-0.048192635178566,-0.811795830726624,0.516086041927338,0.00837329402565956,-0.85649585723877,0.453686475753784,0.0604135990142822,-0.889111220836639,0.249249681830406,0.162902966141701,-0.954639852046967,0.204387858510017,0.194029867649078,-0.959467589855194,0.270857959985733,0.145706415176392,-0.951528072357178,0.319977134466171,0.11202048510313,-0.940779507160187,0.276686608791351,0.15407383441925,-0.948528230190277,0.357002407312393,0.100111089646816,-0.928723454475403,0.407139360904694,0.0691572427749634,-0.91074413061142,0.326675146818161,0.121553301811218,-0.937287747859955,0.408878982067108,0.0722609013319016,-0.909723222255707,0.455333650112152,0.0418002307415009,-0.889339089393616,0.379368007183075,0.0941090509295464,-0.920447409152985,0.330735802650452,0.127357482910156,-0.93509042263031,0.534907817840576,0.017349636182189,-0.844732403755188,0.595522403717041,-0.0187539104372263,-0.803119838237762,0.652238786220551,-0.0517935492098331,-0.756242036819458,0.597583711147308,-0.0210909843444824,-0.801529169082642,0.650202512741089,-0.0569353774189949,-0.757624745368958,0.701815545558929,-0.0919449701905251,-0.706400036811829,0.657710194587708,-0.0617159381508827,-0.750738561153412,0.59815514087677,-0.0199295748025179,-0.801132619380951, +0.649624466896057,-0.0764830633997917,-0.756398320198059,0.592546284198761,-0.0318741574883461,-0.804905593395233,0.530109703540802,0.0158110540360212,-0.847781658172607,0.591991901397705,-0.0323389284312725,-0.805294871330261,0.625973641872406,-0.0731753930449486,-0.776403486728668,0.653003990650177,-0.0227622129023075,-0.757012367248535,0.718957304954529,0.00940312165766954,-0.694990634918213,0.694074869155884,-0.0411660932004452,-0.71872490644455,0.701668083667755,-0.0550279803574085,-0.710375905036926,0.745200157165527,-0.069284588098526,-0.663231730461121,0.737024784088135,-0.0759645625948906,-0.671583235263824,0.688469111919403,-0.059213824570179,-0.722844481468201,0.731652200222015,-0.0902910009026527,-0.675671994686127,0.708405077457428,-0.0773234069347382,-0.701557815074921,0.654885590076447,-0.0450263097882271,-0.754385530948639,0.686499118804932,-0.0653613731265068,-0.724187016487122,0.572702825069427,0.0201461724936962,-0.819515466690063,0.590015888214111,0.0158020667731762,-0.807237029075623,0.620918750762939,0.0084383599460125,-0.783829510211945,0.608674108982086,0.0113877467811108,-0.793338596820831,0.607389748096466,-0.0607300624251366,-0.792079210281372,0.623703718185425,-0.131796345114708,-0.770469605922699,0.627582490444183,-0.0675273314118385,-0.775616049766541,0.60724800825119,0.00424498040229082,-0.794501006603241,0.639488399028778,-0.022939333692193,-0.768458425998688,0.599809169769287,-0.00578162586316466,-0.800122261047363,0.560679376125336,0.011599718593061,-0.827951729297638,0.604466319084167,-0.00923686381429434,-0.796577155590057,0.411434590816498,0.0768366977572441,-0.908194780349731,0.360432505607605,0.106429003179073,-0.926693737506866,0.440238893032074,0.0588002391159534,-0.895953297615051,0.48802787065506,0.0335052162408829,-0.872184753417969,0.442523777484894,0.0645742937922478,-0.894428789615631,0.516977190971375,0.0276321358978748,-0.855553090572357,0.559864640235901,0.00885184574872255,-0.828536808490753,0.490962266921997,0.0404546074569225,-0.870241045951843,0.558640599250793,0.00475338054820895,-0.829396307468414, +0.597218573093414,-0.0136634428054094,-0.80196213722229,0.534842789173126,0.0172027740627527,-0.844776511192322,0.490951776504517,0.0404296852648258,-0.870248138904572,0.433227956295013,0.0298978909850121,-0.900788366794586,0.456615507602692,0.0785989165306091,-0.88618528842926,0.539742767810822,0.122703082859516,-0.832839548587799,0.513935148715973,0.073194183409214,-0.854700684547424,0.535533666610718,0.0367885306477547,-0.843712270259857,0.59108704328537,0.0242849569767714,-0.806242108345032,0.574395060539246,0.0310826394706964,-0.817987859249115,0.511405169963837,0.0457106865942478,-0.858123123645782,0.572907030582428,0.0214415285736322,-0.819339990615845,0.520059764385223,0.0394858233630657,-0.853216707706451,0.446422219276428,0.0640366896986961,-0.892528176307678,0.510722279548645,0.0389452986419201,-0.858863294124603,0.276759326457977,0.13409985601902,-0.951536417007446,0.199348792433739,0.170688107609749,-0.964948534965515,0.285308450460434,0.130532965064049,-0.94950532913208,0.364675343036652,0.0976140275597572,-0.926003992557526,0.285022765398026,0.129478856921196,-0.949735462665558,0.369894683361053,0.0993824750185013,-0.923742949962616,0.448620468378067,0.0751937031745911,-0.890553653240204,0.365406155586243,0.0997829809784889,-0.925484597682953,0.446088075637817,0.0623660124838352,-0.892813444137573,0.518867790699005,0.0348659493029118,-0.85414320230484,0.442625969648361,0.0648334100842476,-0.894359529018402,0.365128695964813,0.0989588424563408,-0.925682544708252,0.120716899633408,0.205504342913628,-0.971182465553284,0.0601135864853859,0.244012758135796,-0.967907071113586,0.117665737867355,0.208643943071365,-0.970887541770935,0.185649126768112,0.167058408260345,-0.968310832977295,0.12054718285799,0.213498950004578,-0.969477474689484,0.199200868606567,0.170343518257141,-0.965039908885956,0.275032639503479,0.13060961663723,-0.952521979808807,0.190106883645058,0.173857241868973,-0.966246962547302,0.279296785593033,0.139241471886635,-0.950055301189423,0.354214012622833,0.0949979722499847,-0.930326700210571, +0.27047473192215,0.145157217979431,-0.95172107219696,0.200280264019966,0.189404234290123,-0.961256384849548,0.0906641408801079,0.279838562011719,-0.955756485462189,0.0783060640096664,0.352856457233429,-0.932395040988922,0.0565849877893925,0.306719750165939,-0.950116336345673,0.073644295334816,0.229089543223381,-0.97061562538147,0.0234040152281523,0.265330284833908,-0.963873505592346,0.0589742437005043,0.24243126809597,-0.968374490737915,0.117907263338566,0.201895698904991,-0.972284018993378,0.0745180025696754,0.230123236775398,-0.970304310321808,0.132212057709694,0.220256879925728,-0.966440320014954,0.190104514360428,0.176622822880745,-0.965745747089386,0.144264951348305,0.210149213671684,-0.966966927051544,0.0913805663585663,0.250019967556,-0.96391898393631,0.15743887424469,0.167837157845497,-0.973161697387695,0.245270922780037,0.147472262382507,-0.95817232131958,0.311824470758438,0.135097503662109,-0.940486133098602,0.225034385919571,0.151612028479576,-0.962482929229736,0.31111353635788,0.125660508871078,-0.942028641700745,0.371386051177979,0.110859073698521,-0.92183655500412,0.285621017217636,0.131687507033348,-0.94925183057785,0.224745497107506,0.150281086564064,-0.96275919675827,0.285946130752563,0.132889911532402,-0.948986351490021,0.196766346693039,0.164679124951363,-0.966521501541138,0.137835264205933,0.188286617398262,-0.972393751144409,0.225447237491608,0.153517171740532,-0.962084233760834,-0.00785906333476305,0.242685437202454,-0.970073223114014,-0.0610794275999069,0.270611196756363,-0.96074914932251,-0.00605294294655323,0.241795226931572,-0.970308423042297,0.0521242022514343,0.213681116700172,-0.975511908531189,-0.00586833525449038,0.242184728384018,-0.970212519168854,0.0715828984975815,0.208985552191734,-0.97529536485672,0.136322245001793,0.184266164898872,-0.97337681055069,0.0534858107566833,0.216204941272736,-0.974881887435913,0.138603404164314,0.190329074859619,-0.97188675403595,0.196768432855606,0.164683938026428,-0.966520249843597,0.113550424575806,0.201709300279617,-0.972841084003448,0.0599261485040188,0.228128790855408,-0.971785008907318, +0.307125985622406,0.127089560031891,-0.943144679069519,0.32050096988678,0.126478686928749,-0.938766360282898,0.3854960501194,0.129130586981773,-0.913629055023193,0.371670603752136,0.12872426211834,-0.919397115707397,0.388207405805588,0.0519182607531548,-0.920108437538147,0.456021875143051,0.0483440198004246,-0.888654589653015,0.434241831302643,0.0478162057697773,-0.899526476860046,0.372411340475082,0.0518865473568439,-0.926616251468658,0.436469554901123,0.102517768740654,-0.893859386444092,0.371306926012039,0.110240660607815,-0.921942591667175,0.31044328212738,0.117083176970482,-0.943353831768036,0.372107237577438,0.106914795935154,-0.922011613845825,-0.055783536285162,0.263737618923187,-0.962980151176453,-0.111297994852066,0.284233778715134,-0.95227313041687,-0.0941094234585762,0.288932710886002,-0.952712595462799,-0.0379573442041874,0.26830330491066,-0.962586402893066,-0.091966301202774,0.292060792446136,-0.951967775821686,-0.0593582279980183,0.273447126150131,-0.960053861141205,-0.00734538398683071,0.243455797433853,-0.969884276390076,-0.04234654083848,0.262369871139526,-0.964037835597992,0.00223280140198767,0.257777720689774,-0.966201722621918,0.0491450577974319,0.228761091828346,-0.972241282463074,0.0117732901126146,0.250654757022858,-0.968005001544952,-0.0310250502079725,0.277637839317322,-0.960184812545776,0.168103069067001,0.15614415705204,-0.973324418067932,0.182976573705673,0.159454762935638,-0.970099866390228,0.246730521321297,0.170492485165596,-0.953968703746796,0.233308896422386,0.166594803333282,-0.958025634288788,0.252678424119949,0.138648435473442,-0.95756471157074,0.318368375301361,0.145497903227806,-0.936734855175018,0.305770635604858,0.143216788768768,-0.941272139549255,0.237955987453461,0.137126475572586,-0.961547374725342,0.304433256387711,0.158225104212761,-0.939300358295441,0.245372131466866,0.155965536832809,-0.956800520420074,0.171663507819176,0.15371210873127,-0.97309011220932,0.235384419560432,0.153616517782211,-0.959685444831848,-0.00736037874594331,0.213452816009521,-0.976925730705261, +-0.0798514038324356,0.228781387209892,-0.970197319984436,0.00808412302285433,0.211204424500465,-0.977408528327942,0.0826440900564194,0.199400782585144,-0.976426899433136,0.00800878740847111,0.198473513126373,-0.980073511600494,0.0974828004837036,0.190010517835617,-0.976930499076843,0.1697788387537,0.184597477316856,-0.96803879737854,0.0818812176585197,0.189757749438286,-0.978410720825195,0.170644029974937,0.170779719948769,-0.970420002937317,0.245422229170799,0.160854354500771,-0.955978035926819,0.158004254102707,0.171519890427589,-0.972427666187286,0.081534169614315,0.185397878289223,-0.979275166988373,0.025343606248498,0.203580632805824,-0.978730142116547,-0.0411791168153286,0.199358731508255,-0.97906106710434,0.0245913825929165,0.20093822479248,-0.979295253753662,0.0884488821029663,0.205385431647301,-0.974676191806793,0.0231596939265728,0.204624816775322,-0.978566467761993,0.0495510511100292,0.185644343495369,-0.981366872787476,0.113251976668835,0.179607436060905,-0.977197706699371,0.090191088616848,0.199778407812119,-0.975681364536285,0.113184995949268,0.179807245731354,-0.977168619632721,0.173476696014404,0.195651084184647,-0.965208053588867,0.159852087497711,0.191548928618431,-0.968378186225891,0.0975631847977638,0.175858214497566,-0.979568958282471,-0.144508063793182,0.261579006910324,-0.954302906990051,-0.20757757127285,0.286098957061768,-0.935445845127106,-0.151946783065796,0.264836519956589,-0.952246725559235,-0.0851415917277336,0.241869032382965,-0.966566324234009,-0.153488636016846,0.259890198707581,-0.953361690044403,-0.0782681703567505,0.238732606172562,-0.967926144599915,-0.00559389544650912,0.220964580774307,-0.975265800952911,-0.0860989391803741,0.239416629076004,-0.967091858386993,-0.00424858229234815,0.22667521238327,-0.973961234092712,0.0697561129927635,0.203123226761818,-0.976665377616882,-0.0125237163156271,0.228113099932671,-0.973554134368896,-0.0804837718605995,0.253753274679184,-0.963914752006531,-0.174156799912453,0.302678197622299,-0.93704617023468,-0.228675678372383,0.329433351755142,-0.916068375110626, +-0.224877506494522,0.32572740316391,-0.9183309674263,-0.166490972042084,0.29772886633873,-0.940020382404327,-0.234363883733749,0.308119237422943,-0.922028303146362,-0.204124465584755,0.293858677148819,-0.933798849582672,-0.142222762107849,0.265979140996933,-0.953429579734802,-0.177123606204987,0.28018844127655,-0.943462610244751,-0.131669729948044,0.286121696233749,-0.949103534221649,-0.0705103129148483,0.254996836185455,-0.964367628097534,-0.106101676821709,0.271311193704605,-0.956625759601593,-0.163706302642822,0.302281975746155,-0.939055860042572,-0.384206056594849,0.294729292392731,-0.87494021654129,-0.349713891744614,0.284648954868317,-0.892566740512848,-0.285234600305557,0.267342180013657,-0.9204181432724,-0.319806635379791,0.274759471416473,-0.906769633293152,-0.273890525102615,0.298807471990585,-0.914165258407593,-0.211797326803207,0.276539355516434,-0.937372863292694,-0.245501160621643,0.28704759478569,-0.925922691822052,-0.303930014371872,0.310451030731201,-0.900692462921143,-0.240333735942841,0.296878904104233,-0.924176752567291,-0.246042594313622,0.298377960920334,-0.922189593315125,-0.302310973405838,0.322995454072952,-0.896817743778229,-0.298871338367462,0.321504652500153,-0.898504674434662,-0.151354983448982,0.227682456374168,-0.961900472640991,-0.219683468341827,0.229837954044342,-0.948110580444336,-0.134439378976822,0.228181779384613,-0.964292049407959,-0.0646997541189194,0.228661462664604,-0.971353650093079,-0.132031947374344,0.211791083216667,-0.968355476856232,-0.0459543950855732,0.216007769107819,-0.975309669971466,0.0221184119582176,0.218981117010117,-0.97547847032547,-0.0636297613382339,0.212967917323112,-0.974985122680664,0.0250793304294348,0.204845741391182,-0.978473007678986,0.0956093743443489,0.203817099332809,-0.974329233169556,0.00803740881383419,0.203286558389664,-0.979086399078369,-0.0632175505161285,0.206971317529678,-0.976302444934845,-0.114812880754471,0.220246449112892,-0.96866375207901,-0.171706601977348,0.207615315914154,-0.963022708892822,-0.111418277025223,0.219313502311707,-0.969271719455719, +-0.0546153001487255,0.230597376823425,-0.971515417098999,-0.0761261731386185,0.160427182912827,-0.984107792377472,-0.0794202014803886,0.199804306030273,-0.976611793041229,-0.0482322014868259,0.257028728723526,-0.965199410915375,-0.0481426902115345,0.217279717326164,-0.974921464920044,-0.0216880310326815,0.20559798181057,-0.978396236896515,0.0348978564143181,0.220739901065826,-0.974708199501038,0.0162119586020708,0.222454756498337,-0.974808275699615,-0.042557630687952,0.205766379833221,-0.977675318717957,-0.29465040564537,0.246977597475052,-0.923137724399567,-0.219642758369446,0.242576792836189,-0.944941103458405,-0.150278523564339,0.240873619914055,-0.958851635456085,-0.228030130267143,0.242240190505981,-0.943038761615753,-0.149848535656929,0.246038034558296,-0.957606792449951,-0.0790965035557747,0.233535870909691,-0.969125866889954,-0.157720744609833,0.246203526854515,-0.956299126148224,-0.223625212907791,0.26166158914566,-0.938895642757416,-0.155524671077728,0.253325819969177,-0.954797506332397,-0.215538680553436,0.267991602420807,-0.939001381397247,-0.278392642736435,0.286466211080551,-0.916752338409424,-0.22173947095871,0.269821166992188,-0.93703156709671,-0.547359585762024,0.229121252894402,-0.804922938346863,-0.504051804542542,0.229869231581688,-0.832521498203278,-0.434062868356705,0.228640168905258,-0.871385872364044,-0.479704618453979,0.225573778152466,-0.847938656806946,-0.430171370506287,0.249693632125854,-0.86752849817276,-0.361473798751831,0.241387709975243,-0.900593519210815,-0.402528434991837,0.242669209837914,-0.882656514644623,-0.472323805093765,0.253826856613159,-0.844086706638336,-0.394674688577652,0.26551428437233,-0.879621565341949,-0.405945539474487,0.254047989845276,-0.877876877784729,-0.480222672224045,0.258417665958405,-0.838216245174408,-0.468164801597595,0.269002318382263,-0.841700375080109,-0.286831378936768,0.216752767562866,-0.933137834072113,-0.352740883827209,0.202646270394325,-0.913514316082001,-0.267514318227768,0.221121311187744,-0.937838792800903,-0.204372212290764,0.235265046358109,-0.950201332569122, +-0.263584911823273,0.209179133176804,-0.941683113574982,-0.18183821439743,0.228476867079735,-0.956416845321655,-0.121916905045509,0.239044994115829,-0.963324427604675,-0.201122775673866,0.221282199025154,-0.954245209693909,-0.116108179092407,0.223671361804008,-0.967724144458771,-0.0502224788069725,0.230873599648476,-0.971686720848083,-0.133148387074471,0.219367489218712,-0.966514050960541,-0.199132516980171,0.212787508964539,-0.956591725349426,-0.240735411643982,0.223877161741257,-0.944418013095856,-0.29634103178978,0.201147273182869,-0.933660387992859,-0.236447989940643,0.223246321082115,-0.945649743080139,-0.183989673852921,0.24136009812355,-0.952834248542786,-0.237676694989204,0.224662303924561,-0.945006132125854,-0.212175473570824,0.21740885078907,-0.952740788459778,-0.15922500193119,0.231395334005356,-0.959741413593292,-0.183840215206146,0.241153582930565,-0.952915489673615,-0.118165776133537,0.17664498090744,-0.977155745029449,-0.0442499853670597,0.143362671136856,-0.988680481910706,-0.0953409075737,0.192508205771446,-0.976652801036835,-0.170405581593513,0.222595006227493,-0.959902822971344,-0.43386647105217,0.180362373590469,-0.882739782333374,-0.352639496326447,0.202060356736183,-0.913683235645294,-0.287291318178177,0.222286224365234,-0.931693375110626,-0.366713106632233,0.199388444423676,-0.908716678619385,-0.287396311759949,0.223564505577087,-0.931355178356171,-0.219662234187126,0.237877890467644,-0.946130454540253,-0.298090636730194,0.222521468997002,-0.928238213062286,-0.366154342889786,0.210547745227814,-0.906421899795532,-0.296507894992828,0.233958438038826,-0.925930082798004,-0.365453451871872,0.225967779755592,-0.902985215187073,-0.435450106859207,0.220825478434563,-0.872708022594452,-0.365307956933975,0.225853353738785,-0.903072834014893,-0.673958003520966,0.210954740643501,-0.708010375499725,-0.638144791126251,0.215836197137833,-0.739043891429901,-0.570915877819061,0.22584430873394,-0.789334774017334,-0.61079728603363,0.217569798231125,-0.761308133602142,-0.570893466472626,0.226365983486176,-0.789201676845551, +-0.504011392593384,0.230236262083054,-0.832444489002228,-0.548261106014252,0.22428871691227,-0.805670201778412,-0.61013525724411,0.223066687583923,-0.760247468948364,-0.542667210102081,0.253110080957413,-0.800904214382172,-0.552725672721863,0.245427936315536,-0.79640406370163,-0.615614175796509,0.239978656172752,-0.750619411468506,-0.6069415807724,0.247530728578568,-0.755215585231781,-0.566040754318237,0.156294211745262,-0.809425711631775,-0.487273633480072,0.175919204950333,-0.855346083641052,-0.418656557798386,0.191686242818832,-0.887684106826782,-0.499309867620468,0.170798286795616,-0.849421918392181,-0.41775768995285,0.18824765086174,-0.888842701911926,-0.353100955486298,0.204732790589333,-0.912909865379333,-0.433979451656342,0.183331280946732,-0.882072269916534,-0.498926937580109,0.167589917778969,-0.850285589694977,-0.434611737728119,0.202431678771973,-0.87757283449173,-0.508061528205872,0.189243495464325,-0.840274095535278,-0.572249889373779,0.179265052080154,-0.800246298313141,-0.501492857933044,0.190032854676247,-0.844033539295197,-0.382693290710449,0.210393190383911,-0.899600207805634,-0.323977917432785,0.239359617233276,-0.915284276008606,-0.398574650287628,0.197662085294724,-0.895582437515259,-0.458451509475708,0.165524765849113,-0.87316882610321,-0.406553626060486,0.21271026134491,-0.888520419597626,-0.487397372722626,0.176271542906761,-0.855203032493591,-0.552998840808868,0.148743763566017,-0.819797396659851,-0.471876233816147,0.186274498701096,-0.861762523651123,-0.554157853126526,0.151350274682045,-0.818536639213562,-0.612646758556366,0.118304528295994,-0.781452476978302,-0.536811530590057,0.165676191449165,-0.827275574207306,-0.478679269552231,0.196947291493416,-0.855615496635437,-0.419065535068512,0.193257227540016,-0.887150347232819,-0.485346019268036,0.170455545186996,-0.857545435428619,-0.400649338960648,0.201556801795959,-0.893786907196045,-0.335700809955597,0.2231664955616,-0.915151178836823,-0.392442643642426,0.186222538352013,-0.900727450847626,-0.312011182308197,0.222748011350632,-0.923597574234009, +-0.253071069717407,0.244548857212067,-0.936029314994812,-0.330768942832947,0.211559668183327,-0.919692516326904,-0.244258984923363,0.229769930243492,-0.942095160484314,-0.189148619771004,0.243582859635353,-0.951257169246674,-0.266769707202911,0.218850404024124,-0.938583254814148,-0.326430857181549,0.201433047652245,-0.92350834608078,-0.281353652477264,0.214610546827316,-0.935298025608063,-0.236161202192307,0.243980765342712,-0.940585613250732,-0.253408640623093,0.242809385061264,-0.93639075756073,-0.299707800149918,0.21091765165329,-0.930424094200134,-0.25320690870285,0.242576465010643,-0.936505675315857,-0.308706372976303,0.21817834675312,-0.925796210765839,-0.363775640726089,0.188532695174217,-0.912207722663879,-0.306341975927353,0.217323511838913,-0.926782131195068,-0.376909762620926,0.203685447573662,-0.903576910495758,-0.424147307872772,0.172236979007721,-0.889063239097595,-0.370328664779663,0.207979738712311,-0.905318200588226,-0.324484139680862,0.234881371259689,-0.916264593601227,0.421243190765381,-0.726884126663208,0.542396187782288,0.376661360263824,-0.737332582473755,0.560773432254791,0.333243608474731,-0.741365015506744,0.582517504692078,0.379346013069153,-0.731518924236298,0.56654816865921,0.235160335898399,-0.73266726732254,0.638669073581696,0.262529164552689,-0.734407663345337,0.6258784532547,0.234690502285957,-0.733530461788177,0.637850642204285,0.206562414765358,-0.73211932182312,0.649101912975311,-0.0454332567751408,-0.739160656929016,0.671995043754578,-0.0486605241894722,-0.739446043968201,0.671454906463623,-0.0379267185926437,-0.724230647087097,0.688514053821564,-0.0348993502557278,-0.724149525165558,0.688759386539459,-0.162929967045784,-0.703836798667908,0.691424310207367,-0.168100789189339,-0.713505387306213,0.680185496807098,-0.169022724032402,-0.714098751544952,0.679333746433258,-0.163938701152802,-0.704793453216553,0.690210521221161,-0.322180688381195,-0.658715724945068,0.679921448230743,-0.331455528736115,-0.657629609107971,0.676506221294403,-0.339782416820526,-0.65396648645401,0.675925850868225, +-0.330594211816788,-0.655566453933716,0.678925633430481,-0.494605600833893,-0.572397172451019,0.654008209705353,-0.501056730747223,-0.573727548122406,0.647903442382813,-0.506218791007996,-0.571526885032654,0.645832419395447,-0.49942335486412,-0.569650650024414,0.652743756771088,-0.649217247962952,-0.471291244029999,0.596993744373322,-0.653202831745148,-0.484929651021957,0.581523239612579,-0.652264177799225,-0.486468851566315,0.581291258335114,-0.647361695766449,-0.47409600019455,0.596787869930267,-0.77643871307373,-0.355341553688049,0.520456850528717,-0.783394753932953,-0.361808776855469,0.505358338356018,-0.785007178783417,-0.35970813035965,0.50435483455658,-0.778003633022308,-0.353150814771652,0.519610404968262,-0.879476964473724,-0.210982039570808,0.426622599363327,-0.885640978813171,-0.220249474048615,0.408815741539001,-0.886654138565063,-0.219000205397606,0.407287836074829,-0.880370676517487,-0.209812521934509,0.425354301929474,-0.977740406990051,-0.000871714961249381,0.209816411137581,-0.97689950466156,-0.00603422243148088,0.213614478707314,-0.973447859287262,-0.00347157497890294,0.228882551193237,-0.974306523799896,0.0018612917046994,0.225218951702118,-0.984569609165192,0.155450612306595,0.0803601890802383,-0.985038459300995,0.149908900260925,0.0850089564919472,-0.984250128269196,0.148651629686356,0.0956786572933197,-0.983814775943756,0.154311671853065,0.0910858809947968,-0.953257381916046,0.297131508588791,-0.0548932552337646,-0.954606175422668,0.293397933244705,-0.0514268018305302,-0.954624652862549,0.295001059770584,-0.0408180058002472,-0.9532750248909,0.298812508583069,-0.0444730445742607,-0.884777903556824,0.424297273159027,-0.192717120051384,-0.885355591773987,0.423534870147705,-0.191738605499268,-0.885009407997131,0.426845639944077,-0.185906291007996,-0.884388864040375,0.427674025297165,-0.186952605843544,-0.776475727558136,0.536064505577087,-0.331240475177765,-0.776894867420197,0.53578770160675,-0.33070507645607,-0.776451587677002,0.539744079113007,-0.325267940759659,-0.775996267795563,0.540050208568573,-0.325846076011658, +-0.601321816444397,0.651078462600708,-0.463151067495346,-0.609445035457611,0.646970748901367,-0.45826381444931,-0.617796123027802,0.641522705554962,-0.454726934432983,-0.609718918800354,0.645667672157288,-0.459734827280045,-0.417682021856308,0.711365401744843,-0.565244197845459,-0.416898638010025,0.712418377399445,-0.564495921134949,-0.415128737688065,0.71778267621994,-0.558977723121643,-0.415737837553024,0.717411279678345,-0.559001982212067,-0.188659846782684,0.737230062484741,-0.648767530918121,-0.193667575716972,0.736777245998383,-0.64780580997467,-0.198525428771973,0.737542569637299,-0.64546000957489,-0.19352288544178,0.737437725067139,-0.647097110748291,0.0173237193375826,0.731234967708588,-0.681905627250671,0.016534460708499,0.732096076011658,-0.681000709533691,0.0160646960139275,0.735169649124146,-0.677692830562592,0.016970731317997,0.735028862953186,-0.677823424339294,0.207054674625397,0.690848469734192,-0.692716956138611,0.208259224891663,0.690921306610107,-0.692283034324646,0.210174068808556,0.695833086967468,-0.686762809753418,0.208910420536995,0.695353150367737,-0.68763393163681,0.285125821828842,0.670846343040466,-0.684593737125397,0.272636979818344,0.672136962413788,-0.688404679298401,0.284805685281754,0.668743789196014,-0.686780512332916,0.29728376865387,0.667637705802917,-0.682555675506592,0.431051015853882,0.614663481712341,-0.660593628883362,0.386435806751251,0.629795551300049,-0.673813760280609,0.429855734109879,0.609968364238739,-0.665704607963562,0.472823113203049,0.595144271850586,-0.649801194667816,-0.0580961108207703,0.61409592628479,0.787090361118317,-0.0422629974782467,0.626863479614258,0.777981996536255,-0.018384063616395,0.632802426815033,0.774094998836517,-0.0411756746470928,0.626103699207306,0.77865195274353,0.0411053150892258,0.578040063381195,0.814972400665283,0.0648468658328056,0.522436082363129,0.850209057331085,0.0808519124984741,0.500852108001709,0.861748337745667,0.0552553944289684,0.56615537405014,0.822444438934326,-0.0633029863238335,0.408391505479813,0.910609185695648,-0.128865331411362,0.314982324838638,0.940308392047882, +-0.193568497896194,0.326917707920074,0.925016760826111,-0.132815450429916,0.381553739309311,0.914755046367645,-0.0485105440020561,0.567391812801361,0.822017788887024,-0.0602433755993843,0.545463085174561,0.835966944694519,-0.0671234279870987,0.58390885591507,0.809039354324341,-0.0495260506868362,0.600671112537384,0.797960758209229,-0.263355165719986,0.310592323541641,0.913332641124725,-0.263710558414459,0.290274351835251,0.919889986515045,-0.264217406511307,0.321549832820892,0.909282624721527,0.0769976079463959,0.508775651454926,0.857448995113373,0.0566629059612751,0.569182574748993,0.820256352424622,0.0558450520038605,0.522625386714935,0.850731551647186,0.0752363428473473,0.463291138410568,0.883006811141968,0.107168488204479,0.386847048997879,0.915895342826843,0.223087549209595,0.316980242729187,0.92182183265686,0.0835217162966728,0.402449488639832,0.911624133586884,0.101940907537937,0.380202263593674,0.919268369674683,-0.00630197208374739,0.284223198890686,0.95873749256134,-0.188245192170143,0.231277599930763,0.954502165317535,-0.0640824437141418,0.321293950080872,0.944808781147003,0.113659493625164,0.493556022644043,0.862255275249481,0.128109246492386,0.488706290721893,0.862991452217102,0.140311598777771,0.484965085983276,0.863204181194305,0.134042799472809,0.486239343881607,0.863483548164368,0.105844907462597,0.534617125988007,0.838439881801605,0.119912847876549,0.50906240940094,0.852335870265961,0.132933154702187,0.483670264482498,0.86509644985199,0.128952220082283,0.504016876220703,0.854013025760651,0.0602244026958942,0.301776200532913,0.951474726200104,0.0851846188306808,0.350098669528961,0.932831466197968,0.007106504868716,0.327133506536484,0.944951355457306,0.0248317085206509,0.264108330011368,0.964173316955566,-0.00548816146329045,0.40228995680809,0.915495872497559,0.0358701758086681,0.404156267642975,0.913986265659332,0.112401843070984,0.38974130153656,0.914039134979248,0.0935020744800568,0.369431912899017,0.924541711807251,0.140944197773933,0.486973613500595,0.861969530582428,0.128559276461601,0.490329384803772,0.86200338602066, +0.138583526015282,0.487993091344833,0.861775696277618,0.146343544125557,0.486203998327255,0.861504077911377,0.138851419091225,0.489793717861176,0.860710442066193,0.146385878324509,0.488210141658783,0.860361576080322,0.151772782206535,0.487946450710297,0.859577357769012,0.146864786744118,0.488994777202606,0.85983419418335,0.0815455168485641,0.415924042463303,0.905735909938812,0.103837944567204,0.415673613548279,0.903566896915436,0.118265815079212,0.422369390726089,0.898675322532654,0.119386710226536,0.409833610057831,0.904313802719116,0.105721741914749,0.392344355583191,0.913722515106201,0.114587716758251,0.392032593488693,0.912787079811096,0.00915883295238018,0.409553021192551,0.912240326404572,0.0195692982524633,0.412263721227646,0.910854399204254,0.12225204706192,0.427529841661453,0.895696759223938,0.136104717850685,0.432001113891602,0.891543924808502,0.126465529203415,0.444321036338806,0.886896431446075,0.12149628251791,0.437198877334595,0.891120553016663,0.131791636347771,0.455360442399979,0.880498647689819,0.148993119597435,0.445771485567093,0.882660090923309,0.157029315829277,0.451596319675446,0.878295361995697,0.135129392147064,0.460669308900833,0.87722510099411,0.121432088315487,0.357583254575729,0.925952851772308,0.135856062173843,0.408340126276016,0.902663588523865,-0.00192627229262143,0.451082706451416,0.892480075359344,0.00183074886444956,0.410782963037491,0.911731362342834,0.146372571587563,0.48767626285553,0.860666632652283,0.150629550218582,0.487849116325378,0.859833717346191,0.155227109789848,0.487194001674652,0.859387338161469,0.151711404323578,0.486966729164124,0.860143601894379,0.149047419428825,0.504487693309784,0.850456953048706,0.150676026940346,0.490107297897339,0.85854035615921,0.158801838755608,0.47735470533371,0.864242255687714,0.155066713690758,0.490103155374527,0.857760548591614,0.153418466448784,0.477211713790894,0.865292847156525,0.143094882369041,0.498806953430176,0.854818999767303,0.140454590320587,0.523459672927856,0.840394258499146,0.153869569301605,0.500988781452179,0.851665616035461, +0.15826840698719,0.480489552021027,0.862601339817047,0.155100271105766,0.468767732381821,0.869598150253296,0.15252374112606,0.479864329099655,0.863983154296875,0.156148359179497,0.49366819858551,0.855517029762268,0.144400730729103,0.494293391704559,0.857217848300934,0.147464022040367,0.494459331035614,0.856600522994995,0.150431558489799,0.494802743196487,0.855885982513428,0.15057647228241,0.49542573094368,0.855499982833862,0.145669654011726,0.512284815311432,0.846371412277222,0.129454061388969,0.526697278022766,0.840137898921967,0.135307893157005,0.509267866611481,0.849904656410217,0.150516048073769,0.495528250932693,0.855451166629791,0.137582406401634,0.470534563064575,0.871589601039886,0.160699188709259,0.466055661439896,0.870039045810699,0.163075059652328,0.470958232879639,0.866951525211334,0.139400824904442,0.473601818084717,0.869637131690979,0.140830188989639,0.447183698415756,0.883285701274872,0.13878008723259,0.475794196128845,0.868539035320282,-0.0140746310353279,0.459785789251328,0.887918293476105,-0.00486512249335647,0.447779625654221,0.894130706787109,0.15231055021286,0.498174250125885,0.853594839572906,0.15953728556633,0.499956637620926,0.85122936964035,0.157600909471512,0.494021683931351,0.855046510696411,0.152813792228699,0.494904726743698,0.855404734611511,0.150072112679482,0.49528768658638,0.855668425559998,0.147681549191475,0.494167685508728,0.856731295585632,0.153081253170967,0.497352689504623,0.853935956954956,0.151706606149673,0.496085911989212,0.854917466640472,0.159229546785355,0.482491880655289,0.861305713653564,0.156533300876617,0.485252737998962,0.860248327255249,0.132858663797379,0.480795741081238,0.866708755493164,0.135987058281898,0.480297327041626,0.866499900817871,0.162116944789886,0.501609325408936,0.849768340587616,0.168389663100243,0.497389554977417,0.851028025150299,0.169667527079582,0.486557304859161,0.857015132904053,0.163017451763153,0.491299957036972,0.855599045753479,0.15730844438076,0.494272887706757,0.854955315589905,0.16138269007206,0.498374402523041,0.851809024810791,0.163952112197876,0.500327229499817,0.85017192363739, +0.158836245536804,0.494252920150757,0.854684233665466,0.145207300782204,0.458948612213135,0.876516401767731,0.121215976774693,0.50057178735733,0.857166647911072,-0.0382638908922672,0.462932050228119,0.885567486286163,-0.0169962961226702,0.438388854265213,0.89862459897995,0.150848940014839,0.494239062070847,0.856138050556183,0.150917559862137,0.496926546096802,0.854568839073181,0.127612829208374,0.483575999736786,0.865949928760529,0.128385126590729,0.484655767679214,0.865231812000275,0.169084221124649,0.496707946062088,0.851288318634033,0.171386197209358,0.497191727161407,0.850545227527618,0.169571250677109,0.487200081348419,0.856668949127197,0.16659788787365,0.487773567438126,0.856925904750824,0.167564958333969,0.487792253494263,0.856726825237274,0.174940705299377,0.49359005689621,0.85191822052002,0.172516718506813,0.49509534239769,0.851539015769958,0.165477722883224,0.488301992416382,0.856842041015625,0.0376979224383831,0.597900688648224,0.800683200359344,0.039985653012991,0.570460736751556,0.82035094499588,-0.0390088558197021,0.457000643014908,0.888610541820526,-0.0627539306879044,0.4911108314991,0.868833780288696,0.14765502512455,0.502507567405701,0.851870954036713,0.146166414022446,0.503101289272308,0.851777374744415,0.125585973262787,0.480703979730606,0.867843210697174,0.125495970249176,0.483081758022308,0.866535007953644,0.180977746844292,0.497220754623413,0.848539113998413,0.1818827688694,0.50197821855545,0.845539331436157,0.179883062839508,0.488547146320343,0.853793740272522,0.177990943193436,0.486247360706329,0.855501413345337,0.172218918800354,0.496879607439041,0.850559532642365,0.177108839154243,0.498359948396683,0.84868723154068,0.178264707326889,0.486167192459106,0.855490028858185,0.172582849860191,0.486069053411484,0.856710135936737,0.087218776345253,0.514531910419464,0.853023946285248,0.0521078482270241,0.529281437397003,0.846844673156738,-0.0479369983077049,0.440647900104523,0.896399199962616,-0.0255767516791821,0.43338805437088,0.900844395160675,0.142684757709503,0.502138257026672,0.852935075759888, +0.140691101551056,0.499772369861603,0.854654133319855,0.128094598650932,0.474773377180099,0.870736598968506,0.126762956380844,0.477874338626862,0.869233727455139,0.214561775326729,0.506685972213745,0.835004508495331,0.207417726516724,0.492036044597626,0.845504939556122,0.197193801403046,0.488142818212509,0.850194811820984,0.20670023560524,0.501182675361633,0.840292155742645,0.186780855059624,0.487077325582504,0.853152215480804,0.180695921182632,0.502232909202576,0.845642387866974,0.189369797706604,0.503848135471344,0.842778921127319,0.196867480874062,0.488192826509476,0.850241720676422,-0.0508407652378082,0.5675408244133,0.821774065494537,-0.0326504930853844,0.53956937789917,0.841307818889618,-0.0414048209786415,0.425925761461258,0.903810322284698,-0.0764090418815613,0.450399398803711,0.88955157995224,0.141416609287262,0.497499912977219,0.855859458446503,0.14147961139679,0.496549725532532,0.856400609016418,0.135494649410248,0.468259245157242,0.873140573501587,0.132689654827118,0.470607131719589,0.872308731079102,0.0160526465624571,0.508114635944366,0.861139893531799,-0.00142308871727437,0.50003319978714,0.866005063056946,-0.0231253579258919,0.400245577096939,0.916116058826447,-0.0174142513424158,0.406804442405701,0.913349270820618,-0.555407524108887,-0.330421954393387,-0.76311457157135,-0.597604930400848,-0.268805980682373,-0.75538843870163,-0.668249547481537,-0.23757715523243,-0.704982101917267,-0.628574073314667,-0.293222784996033,-0.720357477664948,0.146727457642555,0.495246022939682,0.856272399425507,0.147812590003014,0.495059967041016,0.856193363666534,0.148252964019775,0.467090994119644,0.871692061424255,0.144500195980072,0.465389400720596,0.873231053352356,-0.0109419403597713,-0.437882930040359,-0.898965418338776,-0.125520512461662,-0.500736057758331,-0.856450796127319,-0.126336440443993,-0.523822247982025,-0.842406868934631,0.0674066171050072,-0.416329383850098,-0.90671169757843,-0.016046691685915,0.489319682121277,0.871956825256348,-0.000636538141407073,0.480431914329529,0.877031803131104,-0.0294400751590729,0.405371129512787,0.913678050041199, +-0.0531096644699574,0.398457914590836,0.915647685527802,0.256366610527039,-0.526644229888916,-0.810507237911224,0.247073143720627,-0.563156723976135,-0.78854888677597,0.258728235960007,-0.573380887508392,-0.777363538742065,0.26639050245285,-0.538978159427643,-0.799086093902588,0.404168397188187,-0.533820509910583,-0.74275404214859,0.395670056343079,-0.525345683097839,-0.753297507762909,0.390327006578445,-0.551285922527313,-0.737379670143127,0.397683292627335,-0.561010539531708,-0.726027071475983,0.927750468254089,0.142871856689453,-0.344770491123199,0.925972104072571,0.119047239422798,-0.35833415389061,0.925724148750305,0.118966773152351,-0.35900092124939,0.927545309066772,0.14312881231308,-0.345215618610382,0.00550326379016042,-0.457533687353134,-0.889175355434418,-0.00303526455536485,-0.450113862752914,-0.892966151237488,-0.000990740256384015,-0.465959697961807,-0.884805381298065,0.008457419462502,-0.471846878528595,-0.881639957427979,-0.147773191332817,-0.393467992544174,-0.907384276390076,-0.15571728348732,-0.388596415519714,-0.908154726028442,-0.154658868908882,-0.404933303594589,-0.901171326637268,-0.146604791283607,-0.409166365861893,-0.900605320930481,-0.358688503503799,-0.311910271644592,-0.879803717136383,-0.360771179199219,-0.340782731771469,-0.86816543340683,-0.352166026830673,-0.346216052770615,-0.86954790353775,-0.350090563297272,-0.317443698644638,-0.88128674030304,-0.419049710035324,-0.34491366147995,-0.839899957180023,-0.423732191324234,-0.376809805631638,-0.823690176010132,-0.418250352144241,-0.381111085414886,-0.824512720108032,-0.413635283708572,-0.34903621673584,-0.840880215167999,-0.466600745916367,-0.382562279701233,-0.797452092170715,-0.474340796470642,-0.401110291481018,-0.783652603626251,-0.476704984903336,-0.401044756174088,-0.782250285148621,-0.469108313322067,-0.382735967636108,-0.795896053314209,-0.325870752334595,-0.504948079586029,-0.799272000789642,-0.318093597888947,-0.512315690517426,-0.79771500825882,-0.309897214174271,-0.514116227626801,-0.799780130386353,-0.317784547805786,-0.507266283035278,-0.801057994365692, +-0.258030384778976,-0.521678924560547,-0.81318598985672,-0.262054949998856,-0.514788031578064,-0.816284656524658,-0.265713006258011,-0.513645052909851,-0.815821886062622,-0.261834263801575,-0.520896911621094,-0.812471091747284,-0.283524096012115,-0.50620424747467,-0.814476132392883,-0.270533561706543,-0.504329264163971,-0.820038735866547,-0.257210403680801,-0.504871368408203,-0.823982834815979,-0.270331144332886,-0.506709456443787,-0.818637013435364,-0.210605010390282,-0.504056751728058,-0.837599158287048,-0.223468378186226,-0.500990688800812,-0.836104214191437,-0.235783532261848,-0.501240611076355,-0.832564830780029,-0.222831517457962,-0.504137635231018,-0.834380805492401,-0.309996217489243,-0.497576177120209,-0.810135960578918,-0.314286708831787,-0.485157251358032,-0.815994083881378,-0.31509530544281,-0.485042572021484,-0.815750360488892,-0.311006814241409,-0.49697944521904,-0.810114979743958,-0.178758189082146,-0.429991155862808,-0.884959399700165,-0.181822225451469,-0.431739330291748,-0.883482873439789,-0.179328069090843,-0.450626492500305,-0.874515414237976,-0.176198661327362,-0.449031978845596,-0.875970482826233,-0.346496403217316,-0.407743185758591,-0.844799220561981,-0.343615412712097,-0.407439708709717,-0.846121430397034,-0.333368837833405,-0.424358546733856,-0.84189373254776,-0.336230248212814,-0.424768269062042,-0.840548157691956,-0.442468792200089,-0.432239145040512,-0.785742163658142,-0.447846084833145,-0.41448786854744,-0.792233526706696,-0.449917793273926,-0.415815263986588,-0.790361762046814,-0.44473671913147,-0.433155179023743,-0.783955276012421,-0.616404891014099,-0.378488898277283,-0.690500676631927,-0.624664664268494,-0.384115189313889,-0.679889380931854,-0.624284863471985,-0.407019913196564,-0.666785717010498,-0.615814328193665,-0.402269423007965,-0.677460074424744,-0.650280594825745,-0.377033412456512,-0.659530878067017,-0.650617897510529,-0.377177685499191,-0.659115731716156,-0.648748874664307,-0.38140606880188,-0.658524334430695,-0.649394392967224,-0.379552185535431,-0.658959090709686,-0.5197634100914,-0.30259245634079,-0.798926651477814, +-0.52277660369873,-0.298721194267273,-0.798417389392853,-0.562348783016205,-0.322335779666901,-0.761487722396851,-0.560082852840424,-0.323670953512192,-0.76259058713913,-0.767431437969208,-0.189111649990082,-0.61260575056076,-0.725048542022705,-0.236533313989639,-0.646804928779602,-0.67739999294281,-0.284653574228287,-0.678307890892029,-0.721503674983978,-0.229954272508621,-0.65311062335968,-0.744408369064331,-0.214992612600327,-0.632166385650635,-0.739815175533295,-0.222564399242401,-0.634932100772858,-0.735750555992126,-0.237833589315414,-0.634118497371674,-0.741904973983765,-0.228594571352005,-0.630334377288818,-0.725898027420044,-0.235524654388428,-0.646219909191132,-0.733259975910187,-0.231293126940727,-0.639400660991669,-0.738589823246002,-0.232015058398247,-0.632972419261932,-0.736480355262756,-0.237066730856895,-0.633558213710785,-0.224217027425766,-0.427722364664078,-0.875660061836243,-0.331192940473557,-0.437588810920715,-0.83595883846283,-0.387576550245285,-0.432185888290405,-0.814247965812683,-0.34427210688591,-0.442979395389557,-0.827795922756195,-0.975525498390198,0.123349867761135,0.182029843330383,-0.974968075752258,0.123552694916725,0.184856504201889,-0.974400222301483,0.123776510357857,0.187679529190063,-0.974976420402527,0.123477004468441,0.18486362695694,-0.389662981033325,-0.326465964317322,-0.861151933670044,-0.4051733314991,-0.300374954938889,-0.86348682641983,-0.44431334733963,-0.349578231573105,-0.824851810932159,-0.424471497535706,-0.373669594526291,-0.824739336967468,-0.752720534801483,-0.196003720164299,-0.62848573923111,-0.74837338924408,-0.191350370645523,-0.635076642036438,-0.740653276443481,-0.17820917069912,-0.647822678089142,-0.745144009590149,-0.176340535283089,-0.643167495727539,-0.763394117355347,-0.200307458639145,-0.614089846611023,-0.774793148040771,-0.188028216362,-0.603606581687927,-0.779666781425476,-0.167960956692696,-0.603248536586761,-0.772752344608307,-0.18048058450222,-0.608506858348846,-0.719068050384521,-0.191945105791092,-0.667905807495117,-0.601279616355896,-0.250307708978653,-0.758820712566376, +-0.461063504219055,-0.265283614397049,-0.846785128116608,-0.597626030445099,-0.221615344285965,-0.770538747310638,-0.0763319805264473,0.545247375965118,0.834792613983154,-0.0109131447970867,0.562188148498535,0.826937317848206,0.033874649554491,0.592436194419861,0.804904878139496,-0.0258837379515171,0.573478996753693,0.818811237812042,-0.678153276443481,0.60653692483902,-0.414995282888412,-0.6757453083992,0.611294567584991,-0.411931127309799,-0.67573344707489,0.593951404094696,-0.436584711074829,-0.678258776664734,0.590173602104187,-0.437790155410767,-0.326766520738602,-0.469576567411423,-0.820196032524109,-0.354090094566345,-0.48115536570549,-0.801941215991974,-0.383499771356583,-0.49646070599556,-0.778752028942108,-0.211190849542618,-0.518635034561157,-0.828502357006073,-0.166654571890831,-0.530129790306091,-0.831377625465393,-0.118552021682262,-0.536921620368958,-0.835260808467865,-0.119224920868874,-0.51193904876709,-0.850707769393921,-0.247800126671791,-0.409225463867188,-0.878139853477478,-0.29046368598938,-0.374514132738113,-0.880551099777222,-0.241875231266022,-0.406132459640503,-0.881222307682037,-0.211265727877617,-0.444580614566803,-0.870468318462372,-0.204022869467735,-0.460023880004883,-0.864148616790771,-0.218275502324104,-0.448610663414001,-0.866662740707397,-0.197819918394089,-0.459277749061584,-0.865985751152039,-0.188588157296181,-0.472357302904129,-0.860995411872864,-0.151706993579865,-0.53211122751236,-0.832972168922424,-0.186558857560158,-0.529841065406799,-0.827323496341705,-0.192400276660919,-0.527756035327911,-0.827318370342255,-0.140741541981697,-0.521479547023773,-0.841576516628265,-0.191833034157753,-0.492491245269775,-0.848912596702576,-0.196675226092339,-0.482357531785965,-0.853610157966614,-0.184027776122093,-0.493278741836548,-0.850182235240936,-0.183060839772224,-0.503934323787689,-0.8441202044487,-0.107318535447121,-0.653258979320526,-0.749490261077881,-0.0831521302461624,-0.637136042118073,-0.766252815723419,-0.000524591421708465,-0.626748621463776,-0.77922135591507,-0.0636344626545906,-0.662786662578583,-0.746099531650543, +-0.174121201038361,-0.553662121295929,-0.814334154129028,-0.183705180883408,-0.547657430171967,-0.816286563873291,-0.182545810937881,-0.544128119945526,-0.818902730941772,-0.161352634429932,-0.548114418983459,-0.820692300796509,-0.181543439626694,-0.514098107814789,-0.838298916816711,-0.188113033771515,-0.508835434913635,-0.840059518814087,-0.18297204375267,-0.513300657272339,-0.8384770154953,-0.182201281189919,-0.516746163368225,-0.836526215076447,-0.172298356890678,-0.571562707424164,-0.802265107631683,-0.142950266599655,-0.625776767730713,-0.766791164875031,-0.152720004320145,-0.569520890712738,-0.807664930820465,-0.216373458504677,-0.514978110790253,-0.829445660114288,-0.193571716547012,-0.560651004314423,-0.805108964443207,-0.19198152422905,-0.558168292045593,-0.807211995124817,-0.187015071511269,-0.557751774787903,-0.808664500713348,-0.186353355646133,-0.560227990150452,-0.807104229927063,-0.180422678589821,-0.523268461227417,-0.832849204540253,-0.180255711078644,-0.522919893264771,-0.833104252815247,-0.18485364317894,-0.521080493927002,-0.833249270915985,-0.187738209962845,-0.519682347774506,-0.833477437496185,-0.261092841625214,-0.634941279888153,-0.72710394859314,-0.203945696353912,-0.632780075073242,-0.746990919113159,-0.187081232666969,-0.613089621067047,-0.767542660236359,-0.252388209104538,-0.619943916797638,-0.74294650554657,-0.201135531067848,-0.559397578239441,-0.804126262664795,-0.201140254735947,-0.55930769443512,-0.804187536239624,-0.197174653410912,-0.561281502246857,-0.803794264793396,-0.196651369333267,-0.561212718486786,-0.803970575332642,-0.192423760890961,-0.513776361942291,-0.836066365242004,-0.185675904154778,-0.520532071590424,-0.833409190177917,-0.184484094381332,-0.52266526222229,-0.832338035106659,-0.190754100680351,-0.516677498817444,-0.834659934043884,-0.219875782728195,-0.602022230625153,-0.767609238624573,-0.205401584506035,-0.59147322177887,-0.779724061489105,-0.231272667646408,-0.598352789878845,-0.767129004001617,-0.222433522343636,-0.615253686904907,-0.756297707557678,-0.215910404920578,-0.54570460319519,-0.809684634208679, +-0.21181657910347,-0.55007016658783,-0.807809710502625,-0.205727711319923,-0.555100739002228,-0.80594003200531,-0.207316935062408,-0.552161037921906,-0.807550668716431,-0.188057750463486,-0.507525861263275,-0.840863704681396,-0.180648759007454,-0.519598484039307,-0.83509486913681,-0.183063939213753,-0.519694626331329,-0.834508895874023,-0.189739614725113,-0.509870290756226,-0.839065730571747,-0.211618706583977,-0.551810681819916,-0.80667370557785,-0.217571884393692,-0.547861337661743,-0.807781219482422,-0.208655029535294,-0.554393947124481,-0.805673897266388,-0.198189675807953,-0.559507131576538,-0.804781079292297,-0.226306095719337,-0.523464202880859,-0.82144433259964,-0.218142777681351,-0.534968793392181,-0.81622439622879,-0.214896127581596,-0.541194200515747,-0.812975108623505,-0.219729274511337,-0.533182740211487,-0.816967070102692,-0.168763563036919,-0.51187789440155,-0.842318177223206,-0.173998340964317,-0.515154302120209,-0.839250028133392,-0.176352918148041,-0.499990284442902,-0.847885310649872,-0.17020471394062,-0.496467530727386,-0.851205229759216,-0.22725547850132,-0.478817045688629,-0.847991406917572,-0.206710562109947,-0.506757855415344,-0.83693927526474,-0.204467073082924,-0.51711118221283,-0.831137478351593,-0.206799864768982,-0.505025386810303,-0.837963700294495,-0.225841522216797,-0.498053640127182,-0.83722048997879,-0.213951602578163,-0.521151483058929,-0.826211750507355,-0.214703530073166,-0.526482582092285,-0.822629034519196,-0.224735110998154,-0.508137464523315,-0.831438839435577,-0.149918630719185,-0.514287292957306,-0.844412863254547,-0.158576101064682,-0.511216223239899,-0.844696164131165,-0.157845050096512,-0.49397087097168,-0.85503089427948,-0.147981867194176,-0.494891941547394,-0.856261253356934,-0.18017353117466,-0.384362906217575,-0.905429661273956,-0.16734853386879,-0.465268433094025,-0.869206368923187,-0.192286774516106,-0.485630571842194,-0.852753758430481,-0.201157316565514,-0.418460488319397,-0.885678589344025,-0.210090279579163,-0.47864243388176,-0.852504253387451,-0.203031778335571,-0.506782352924347,-0.837824523448944, +-0.206349849700928,-0.512400507926941,-0.833586037158966,-0.215137004852295,-0.485736876726151,-0.847216486930847,-0.149209901690483,-0.364258468151093,-0.919267296791077,-0.143133267760277,-0.455901592969894,-0.878445506095886,-0.168339371681213,-0.465052783489227,-0.869130611419678,-0.1805679500103,-0.379278630018234,-0.907492637634277,-0.184671968221664,-0.464881837368011,-0.86589902639389,-0.182692423462868,-0.49980640411377,-0.846650540828705,-0.188860550522804,-0.501056730747223,-0.844555556774139,-0.193012535572052,-0.469430893659592,-0.861615359783173,-0.121523290872574,-0.455166310071945,-0.88207471370697,-0.124450199306011,-0.452477723360062,-0.883049309253693,-0.146454200148582,-0.35889521241188,-0.921816349029541,-0.13542528450489,-0.354778498411179,-0.925090372562408,-0.138677701354027,-0.40492644906044,-0.903771579265594,-0.11589328199625,-0.469493567943573,-0.875296771526337,-0.084650456905365,-0.45707631111145,-0.885390043258667,-0.122957289218903,-0.378100723028183,-0.917562782764435,0.028209526091814,0.404279977083206,0.914200186729431,-0.00918538402765989,0.404329419136047,0.914567291736603,0.0318847447633743,0.478436797857285,0.877543032169342,0.0643898695707321,0.469145029783249,0.880770623683929,0.736507952213287,-0.675035655498505,-0.043392650783062,0.726182878017426,-0.687449634075165,-0.0084649920463562,0.703138768672943,-0.710764944553375,0.0202278234064579,0.71446704864502,-0.699510157108307,-0.0149169135838747,0.753019094467163,-0.651571989059448,-0.091739758849144,0.755030155181885,-0.64952290058136,-0.0897186100482941,0.761709272861481,-0.64240700006485,-0.084334172308445,0.76263827085495,-0.64140397310257,-0.0835691690444946,0.753070652484894,-0.651484906673431,-0.0919350907206535,0.696421265602112,-0.703735768795013,-0.14054699242115,0.702885985374451,-0.698636651039124,-0.133634433150291,0.755084812641144,-0.6494300365448,-0.0899310186505318,0.560245037078857,-0.811737477779388,-0.164948090910912,0.422509104013443,-0.863837063312531,-0.274356693029404,0.421349346637726,-0.861278414726257,-0.284014910459518, +0.57235723733902,-0.803037464618683,-0.165946573019028,0.355517536401749,-0.801687836647034,-0.480524629354477,0.0732818469405174,-0.862209916114807,-0.501222431659698,-0.0814964398741722,-0.915474653244019,-0.394036203622818,0.224730670452118,-0.900236546993256,-0.372921168804169,-0.429157197475433,-0.821223318576813,-0.376053690910339,-0.622500598430634,-0.607716798782349,-0.493126183748245,-0.638256728649139,-0.599793612957001,-0.482572257518768,-0.452447146177292,-0.808910667896271,-0.37543997168541,-0.973406434059143,-0.205904945731163,0.100415579974651,-0.979429185390472,-0.194385051727295,0.0541560091078281,-0.972945988178253,-0.231005877256393,-0.00354823237285018,-0.970387578010559,-0.237480521202087,0.0441673211753368,-0.975391089916229,-0.182273909449577,0.12405027449131,-0.981951892375946,-0.16731795668602,0.0881778374314308,-0.985479652881622,-0.162847191095352,0.0480718314647675,-0.980751872062683,-0.17587523162365,0.0848144143819809,-0.985952138900757,-0.144255399703979,0.0841950848698616,-0.983622014522552,-0.151415184140205,0.097781278192997,-0.979853928089142,-0.168758198618889,0.106803417205811,-0.982343375682831,-0.162437677383423,0.0928201824426651,-0.979581654071808,-0.149407848715782,0.134525373578072,-0.979146957397461,-0.150385290384293,0.136585578322411,-0.978412568569183,-0.154465511441231,0.137293294072151,-0.978858768939972,-0.153348073363304,0.135351449251175,-0.994118571281433,-0.0575380958616734,0.09174894541502,-0.99360054731369,-0.0606452263891697,0.0952902063727379,-0.990436732769012,-0.109232768416405,0.0842822566628456,-0.991209089756012,-0.104339122772217,0.0813513398170471,-0.962667047977448,-0.103541739284992,0.250102519989014,-0.959173738956451,-0.120990201830864,0.255630612373352,-0.955507457256317,-0.139214023947716,0.260047882795334,-0.959179937839508,-0.108932912349701,0.260974287986755,0.121127158403397,-0.965751349925995,-0.229461863636971,0.148823410272598,-0.969804763793945,-0.193210408091545,0.298609018325806,-0.931872487068176,-0.206025645136833,0.270390570163727,-0.926167786121368,-0.262872934341431, +-0.269441664218903,-0.944146692752838,-0.189705953001976,-0.276914954185486,-0.952013373374939,-0.130340382456779,-0.154499650001526,-0.943942844867706,-0.291722297668457,-0.174220487475395,-0.929844796657562,-0.324092417955399,-0.261857599020004,-0.94796758890152,-0.181074857711792,-0.503495097160339,-0.862145841121674,0.056544691324234,-0.591289281845093,-0.79214483499527,0.151273086667061,-0.302033990621567,-0.940002620220184,-0.158652245998383,0.735730171203613,-0.170741006731987,-0.65539962053299,0.553153574466705,-0.359001815319061,-0.751757144927979,0.518303573131561,-0.331993728876114,-0.788125336170197,0.689985513687134,-0.149976447224617,-0.708115220069885,0.612614929676056,-0.197105288505554,-0.765410125255585,0.531348049640656,-0.443071663379669,-0.722050487995148,0.558223783969879,-0.437926739454269,-0.704703092575073,0.624681651592255,-0.110349953174591,-0.773043155670166,0.609943032264709,-0.4294253885746,-0.666005492210388,0.625358760356903,-0.326009035110474,-0.708974361419678,0.66662722826004,-0.0236208271235228,-0.745016932487488,0.672921657562256,-0.122014135122299,-0.729581415653229,0.594708800315857,-0.0155916512012482,-0.803790092468262,0.629696130752563,0.205048337578773,-0.749291718006134,0.605781674385071,0.110959224402905,-0.787855744361877,0.566120684146881,-0.0964076817035675,-0.818665325641632,0.124626696109772,-0.786627113819122,-0.604719936847687,0.180710390210152,-0.782588601112366,-0.595733880996704,0.243520617485046,-0.714263081550598,-0.656144738197327,0.19795686006546,-0.719707787036896,-0.665457606315613,0.387741208076477,-0.647804141044617,-0.655748844146729,0.321911990642548,-0.777119755744934,-0.540793359279633,0.30461323261261,-0.794507265090942,-0.525327503681183,0.358887791633606,-0.670202195644379,-0.649637281894684,0.339618921279907,-0.788177251815796,-0.513259828090668,0.331055670976639,-0.759028136730194,-0.560605466365814,0.342847585678101,-0.650442183017731,-0.677776277065277,0.37125751376152,-0.668238282203674,-0.644690215587616,0.219222396612167,-0.6805060505867,-0.699180364608765, +0.361025959253311,-0.39914146065712,-0.842820405960083,0.502852916717529,-0.444701075553894,-0.74120169878006,0.348970800638199,-0.671682119369507,-0.653500258922577,0.394108653068542,-0.535746097564697,-0.746762633323669,0.350550204515457,-0.593833446502686,-0.72420746088028,0.44777449965477,-0.484174340963364,-0.751713514328003,0.521267890930176,-0.348013401031494,-0.779208898544312,0.456733226776123,-0.488290280103683,-0.74361777305603,0.512820184230804,-0.441344738006592,-0.736362934112549,0.598566889762878,-0.191477566957474,-0.777852177619934,0.529705762863159,-0.352982997894287,-0.771242439746857,0.601514160633087,-0.192656710743904,-0.77528327703476,0.64488297700882,-0.114037916064262,-0.755725800991058,0.506660521030426,-0.321729987859726,-0.799865543842316,0.514669477939606,-0.344122648239136,-0.785299241542816,0.181888103485107,-0.821581244468689,-0.540297329425812,0.136077165603638,-0.82621842622757,-0.546667993068695,0.147561728954315,-0.801434516906738,-0.579593360424042,0.196347504854202,-0.792364597320557,-0.577586352825165,-0.958597838878632,-0.192032024264336,-0.210270956158638,-0.956615567207336,-0.175823226571083,-0.232320800423622,-0.980499923229218,-0.032061830163002,-0.193886533379555,-0.982919812202454,-0.0505074076354504,-0.176967799663544,0.122066773474216,-0.77598249912262,-0.61883020401001,0.106851600110531,-0.729576230049133,-0.675500750541687,0.185830637812614,-0.736941397190094,-0.649910926818848,0.206930622458458,-0.773367524147034,-0.599234819412231,0.200979381799698,-0.749934077262878,-0.630242943763733,0.253293246030807,-0.731677114963531,-0.632843732833862,0.249576896429062,-0.744360625743866,-0.619385659694672,0.196402579545975,-0.766118407249451,-0.611954867839813,0.245255708694458,-0.741094350814819,-0.625002980232239,0.177279725670815,-0.780384182929993,-0.599643588066101,0.151140615344048,-0.803344070911407,-0.576016366481781,0.202979117631912,-0.770670831203461,-0.604041516780853,0.261517435312271,-0.657466351985931,-0.706644594669342,0.352387070655823,-0.595318496227264,-0.72209370136261, +0.411617934703827,-0.548899471759796,-0.727516353130341,0.273208945989609,-0.660072445869446,-0.699758112430573,0.432967007160187,-0.564651787281036,-0.702643513679504,0.405105024576187,-0.599131941795349,-0.690601825714111,0.248989790678024,-0.718645572662354,-0.64927089214325,0.299090683460236,-0.681391358375549,-0.668019950389862,0.261314868927002,-0.728335916996002,-0.633436143398285,0.182302847504616,-0.783604562282562,-0.593910396099091,0.24526047706604,-0.741097986698151,-0.624996840953827,0.313197016716003,-0.692610025405884,-0.649768471717834,0.229321047663689,-0.691931188106537,-0.684575080871582,0.217190474271774,-0.686459064483643,-0.693975687026978,0.18998284637928,-0.711829841136932,-0.676169276237488,0.217362239956856,-0.707342445850372,-0.67262202501297,0.228157177567482,-0.699764311313629,-0.676959574222565,0.234167769551277,-0.698979318141937,-0.675716936588287,0.259361088275909,-0.684009969234467,-0.681808054447174,0.264199018478394,-0.676629066467285,-0.687293231487274,0.264304667711258,-0.741773724555969,-0.616372346878052,0.258144021034241,-0.736113369464874,-0.625698626041412,0.220453068614006,-0.765957236289978,-0.603912353515625,0.238536298274994,-0.762116491794586,-0.601896107196808,0.27742463350296,-0.752640962600708,-0.597132444381714,0.281624525785446,-0.751172542572021,-0.597015500068665,0.273755848407745,-0.754367470741272,-0.596646964550018,0.260855346918106,-0.760016560554504,-0.595255672931671,0.338862478733063,-0.776041746139526,-0.531912982463837,0.276421427726746,-0.691916644573212,-0.666965305805206,0.205522149801254,-0.590773344039917,-0.780222713947296,0.219093024730682,-0.717461049556732,-0.661247193813324,0.295923382043839,-0.715715885162354,-0.632597863674164,0.350276738405228,-0.784087240695953,-0.512360692024231,0.403152078390121,-0.635049939155579,-0.658923327922821,0.239676281809807,-0.635213077068329,-0.734206795692444,0.275802880525589,-0.694435775279999,-0.664598941802979,0.165570393204689,-0.622075080871582,-0.765250980854034,0.26869934797287,-0.699635624885559,-0.662050426006317, +0.313328951597214,-0.779350519180298,-0.542621195316315,0.278698265552521,-0.760984539985657,-0.585858166217804,0.286424607038498,-0.759375214576721,-0.584217667579651,0.30110239982605,-0.75100564956665,-0.587646126747131,0.29873064160347,-0.748556733131409,-0.591965198516846,0.439320296049118,-0.661632299423218,-0.607651650905609,0.31661194562912,-0.759502112865448,-0.568254709243774,0.440876871347427,-0.681227564811707,-0.584428489208221,0.550315320491791,-0.528282403945923,-0.646583914756775,-0.0559904277324677,-0.648464202880859,-0.7591832280159,-0.00873127579689026,-0.654945075511932,-0.755626022815704,0.0069368458352983,-0.613345086574554,-0.789784491062164,-0.044625710695982,-0.605445146560669,-0.794634938240051,0.312502920627594,-0.782530128955841,-0.538505911827087,0.301757395267487,-0.777614653110504,-0.5515958070755,0.400778025388718,-0.647653460502625,-0.648013830184937,0.412763118743896,-0.67438143491745,-0.612238764762878,0.303865313529968,-0.739748239517212,-0.600365281105042,0.31210520863533,-0.734759151935577,-0.60226184129715,0.299040704965591,-0.741791367530823,-0.600266754627228,0.292635887861252,-0.746350347995758,-0.597767114639282,0.300002157688141,-0.743850231170654,-0.597231566905975,0.282112121582031,-0.75200891494751,-0.5957310795784,0.278460949659348,-0.75408923625946,-0.594818353652954,0.293044865131378,-0.747042655944824,-0.59670102596283,0.272548049688339,-0.745784223079681,-0.607884526252747,0.242276504635811,-0.762636184692383,-0.599740087985992,0.251645475625992,-0.755701780319214,-0.604639947414398,0.287515759468079,-0.737646162509918,-0.610911428928375,0.338079005479813,-0.752611935138702,-0.565046787261963,0.358153998851776,-0.758374810218811,-0.544603765010834,0.350728899240494,-0.775052726268768,-0.525625824928284,0.334802389144897,-0.767489850521088,-0.546687006950378,0.303222328424454,-0.755931377410889,-0.580193221569061,0.28785365819931,-0.761803925037384,-0.580340623855591,0.30455470085144,-0.75357860326767,-0.582551062107086,0.327885955572128,-0.745380103588104,-0.580430269241333, +0.299280166625977,-0.823450088500977,-0.482038944959641,0.268211185932159,-0.828138589859009,-0.492188274860382,0.162674367427826,-0.835336685180664,-0.52511864900589,0.232836812734604,-0.834493935108185,-0.499406546354294,0.352326035499573,-0.789206147193909,-0.503011047840118,0.359356224536896,-0.775595843791962,-0.518954932689667,0.364127695560455,-0.784655630588531,-0.50172358751297,0.331176459789276,-0.806047260761261,-0.490520089864731,0.0585301406681538,-0.864790499210358,-0.498709976673126,0.101778373122215,-0.861782670021057,-0.496962547302246,0.203565746545792,-0.855337977409363,-0.476401269435883,0.131437495350838,-0.860874593257904,-0.491547584533691,0.192727118730545,-0.867949724197388,-0.45773309469223,0.229000717401505,-0.871435403823853,-0.433773159980774,0.158635646104813,-0.862128674983978,-0.481216281652451,0.134414523839951,-0.858197629451752,-0.49540850520134,-0.109345316886902,-0.535195291042328,-0.837621450424194,-0.168389990925789,-0.524743616580963,-0.834439337253571,-0.197926983237267,-0.58378803730011,-0.787411212921143,-0.144300326704979,-0.59178751707077,-0.793073117733002,0.102085940539837,-0.843399524688721,-0.527499496936798,0.121609270572662,-0.851767301559448,-0.509611308574677,0.179595485329628,-0.847532391548157,-0.499434232711792,0.141246974468231,-0.851248502731323,-0.50539618730545,0.161445245146751,-0.773387312889099,-0.613031446933746,0.268231630325317,-0.761623203754425,-0.589899837970734,0.240511253476143,-0.788804352283478,-0.565634191036224,0.145155027508736,-0.785370409488678,-0.60176682472229,-0.0980994403362274,-0.889566123485565,-0.446148604154587,-0.123049028217793,-0.961289823055267,-0.246537744998932,-0.301954388618469,-0.949550211429596,-0.0847227871417999,-0.263528287410736,-0.918806970119476,-0.293847948312759,0.256220281124115,-0.677293479442596,-0.689655482769012,0.144386976957321,-0.702122688293457,-0.697263300418854,0.200416952371597,-0.685037553310394,-0.700397491455078,0.267970353364944,-0.667295813560486,-0.694916069507599,-0.0150224221870303,-0.855522632598877,-0.517547488212585, +0.0315438956022263,-0.829681277275085,-0.557345449924469,0.0786999613046646,-0.852874517440796,-0.516150653362274,0.0313420370221138,-0.886404156684875,-0.461849927902222,0.340557277202606,-0.858847320079803,-0.382625192403793,0.372973889112473,-0.799120783805847,-0.471483439207077,0.276772439479828,-0.810394763946533,-0.516388773918152,0.214956298470497,-0.880434155464172,-0.422645956277847,0.0761661231517792,-0.83328914642334,-0.547565460205078,0.0330625846982002,-0.839723169803619,-0.542007327079773,0.0706303045153618,-0.837575733661652,-0.541736304759979,0.123259499669075,-0.822462379932404,-0.555304288864136,0.079533226788044,-0.850953817367554,-0.519184052944183,0.115369208157063,-0.856602132320404,-0.502914309501648,0.155004024505615,-0.820683419704437,-0.549956858158112,0.121584340929985,-0.820144474506378,-0.559088826179504,0.182358384132385,-0.83810019493103,-0.51413369178772,0.270050793886185,-0.827878355979919,-0.491619825363159,0.220100462436676,-0.885750710964203,-0.408658117055893,0.165163069963455,-0.875439047813416,-0.454232901334763,0.163159281015396,-0.826051950454712,-0.539460361003876,0.115437306463718,-0.856649696826935,-0.502817630767822,0.132973551750183,-0.849999725818634,-0.509723961353302,0.165951237082481,-0.823375344276428,-0.542690694332123,0.159274235367775,-0.859115183353424,-0.486366927623749,0.181847304105759,-0.848826885223389,-0.496411621570587,0.179883539676666,-0.837987065315247,-0.515188992023468,0.179768055677414,-0.827522873878479,-0.531873464584351,0.213402479887009,-0.840384244918823,-0.498210549354553,0.280110239982605,-0.777694284915924,-0.562787532806396,0.301919668912888,-0.780460715293884,-0.547472178936005,0.229556396603584,-0.840343594551086,-0.49104642868042,0.223542645573616,-0.827140748500824,-0.515622794628143,0.200407266616821,-0.773872315883636,-0.60079824924469,0.209939822554588,-0.805709779262543,-0.553856551647186,0.220920696854591,-0.843661367893219,-0.489315390586853,0.203479498624802,-0.807034373283386,-0.554338872432709,0.244055166840553,-0.782693028450012,-0.572563350200653, +0.288990527391434,-0.796949863433838,-0.530429482460022,0.246324419975281,-0.841422140598297,-0.480971038341522,0.264544188976288,-0.80031031370163,-0.538070440292358,0.290003001689911,-0.777715265750885,-0.557725012302399,0.246796429157257,-0.841593444347382,-0.480428993701935,0.235811933875084,-0.842424154281616,-0.484473168849945,0.059403769671917,-0.847194969654083,-0.527950584888458,0.103193439543247,-0.841530382633209,-0.530261933803558,0.0841965824365616,-0.840423762798309,-0.535349309444427,0.051187701523304,-0.840955317020416,-0.538678050041199,0.0749528929591179,-0.832104980945587,-0.549530148506165,0.0784805864095688,-0.829002857208252,-0.553710281848907,0.0662967339158058,-0.830862104892731,-0.552515089511871,0.0498068891465664,-0.838554203510284,-0.542536914348602,0.0627561584115028,-0.825280010700226,-0.561225891113281,0.0310836229473352,-0.826596617698669,-0.561935782432556,0.0126519408077002,-0.832957804203033,-0.553191840648651,0.0463984534144402,-0.832554578781128,-0.551996409893036,-0.0770447552204132,-0.798976838588715,-0.596406102180481,-0.0768659859895706,-0.794011533260345,-0.60302346944809,-0.0334122478961945,-0.80458015203476,-0.59290337562561,-0.0298155844211578,-0.811278402805328,-0.583899259567261,-0.0349712260067463,-0.816508173942566,-0.576273739337921,0.00814337562769651,-0.821104764938354,-0.570719540119171,0.0114957503974438,-0.825941801071167,-0.563638150691986,-0.0315691567957401,-0.821270763874054,-0.569664537906647,0.00847470760345459,-0.807042360305786,-0.590432643890381,0.0298004280775785,-0.817896962165833,-0.574592471122742,-0.00414630025625229,-0.806711316108704,-0.590931177139282,-0.0266501903533936,-0.792750835418701,-0.608963131904602,0.159538879990578,-0.837330400943756,-0.522900760173798,0.196416959166527,-0.811125993728638,-0.550903856754303,0.171535328030586,-0.829245746135712,-0.531908869743347,0.137163162231445,-0.845510482788086,-0.516040980815887,0.178328394889832,-0.830682098865509,-0.527414858341217,0.151081666350365,-0.844351887702942,-0.514047026634216,0.127334028482437,-0.847907602787018,-0.514624834060669, +0.145623087882996,-0.849270164966583,-0.507478177547455,0.102043353021145,-0.837936520576477,-0.53614330291748,0.0764836370944977,-0.827405989170074,-0.556371808052063,0.0896428972482681,-0.845197260379791,-0.526882946491241,0.131581023335457,-0.842961609363556,-0.521634101867676,0.242688417434692,-0.773845553398132,-0.585034549236298,0.255585253238678,-0.72650533914566,-0.637860655784607,0.251758843660355,-0.73726749420166,-0.626940369606018,0.228920936584473,-0.796697378158569,-0.559346497058868,0.250950336456299,-0.737417161464691,-0.627088367938995,0.236434087157249,-0.767408847808838,-0.595971882343292,0.209327220916748,-0.827441692352295,-0.521078109741211,0.230162009596825,-0.796715080738068,-0.558811724185944,0.198263213038445,-0.827542960643768,-0.525228023529053,0.171825185418129,-0.847484648227692,-0.502240836620331,0.194836780428886,-0.833944976329803,-0.516308426856995,0.223690450191498,-0.796606838703156,-0.56158721446991,0.244142919778824,-0.807873964309692,-0.536408305168152,0.263717591762543,-0.801236748695374,-0.537096679210663,0.317075937986374,-0.747412383556366,-0.583812952041626,0.297993391752243,-0.759872317314148,-0.577749013900757,0.306051969528198,-0.746785819530487,-0.590460181236267,0.322740197181702,-0.676930844783783,-0.661516010761261,0.325948983430862,-0.693867385387421,-0.642110109329224,0.304549783468246,-0.760088980197906,-0.574033260345459,0.324230670928955,-0.694142937660217,-0.642681956291199,0.303322821855545,-0.718592941761017,-0.625795066356659,0.262444198131561,-0.774581968784332,-0.57545268535614,0.287517994642258,-0.759438335895538,-0.583598136901855,0.198643624782562,-0.831319749355316,-0.519083976745605,0.255006164312363,-0.79868471622467,-0.545045495033264,0.234887719154358,-0.805346131324768,-0.544284224510193,0.179587110877037,-0.833166062831879,-0.523051381111145,0.227173626422882,-0.803152441978455,-0.550761580467224,0.205624014139175,-0.813522279262543,-0.543967306613922,0.15813772380352,-0.836593329906464,-0.524503588676453,0.178246408700943,-0.832394540309906,-0.524735867977142, +0.15060718357563,-0.832566916942596,-0.533057153224945,0.105092644691467,-0.843379855155945,-0.526940166950226,0.124027468264103,-0.844406366348267,-0.521147847175598,0.172496616840363,-0.829042255878448,-0.531915485858917,0.0251195523887873,-0.831681728363037,-0.554684340953827,0.0457022823393345,-0.838102757930756,-0.543594658374786,0.087407261133194,-0.839293658733368,-0.536606132984161,0.0680046230554581,-0.834867537021637,-0.546234011650085,0.0899799838662148,-0.844535231590271,-0.527886211872101,0.135901108384132,-0.838525593280792,-0.527641654014587,0.11687009781599,-0.836918473243713,-0.534704625606537,0.0708805695176125,-0.840619266033173,-0.53696870803833,0.118279941380024,-0.838409781455994,-0.532051563262939,0.0983155146241188,-0.836719155311584,-0.53873485326767,0.0550206229090691,-0.838938891887665,-0.541437268257141,0.0724804699420929,-0.843780338764191,-0.531772017478943,0.336836397647858,-0.804356694221497,-0.489440083503723,0.36702173948288,-0.792857527732849,-0.486489355564117,0.450108885765076,-0.709124445915222,-0.542719542980194,0.418853908777237,-0.730946183204651,-0.538775444030762,0.437015175819397,-0.709449291229248,-0.552901089191437,0.474264085292816,-0.603167474269867,-0.641297578811646,0.468227177858353,-0.627353608608246,-0.622246503829956,0.425193697214127,-0.730773985385895,-0.534022212028503,0.468472927808762,-0.627292215824127,-0.62212347984314,0.421758502721786,-0.659324169158936,-0.622423768043518,0.34455680847168,-0.748439311981201,-0.566673815250397,0.392899602651596,-0.731174111366272,-0.557686686515808,0.45760715007782,-0.784458041191101,-0.418594747781754,0.507580399513245,-0.751912415027618,-0.420701801776886,0.61067932844162,-0.628005027770996,-0.482369810342789,0.566107511520386,-0.672617971897125,-0.476557672023773,0.583565652370453,-0.6321941614151,-0.509687840938568,0.621442794799805,-0.486041784286499,-0.614469110965729,0.617489099502563,-0.528355479240417,-0.582707345485687,0.568255245685577,-0.672285318374634,-0.474466472864151,0.617547571659088,-0.528333187103271,-0.58266544342041, +0.568076908588409,-0.57649952173233,-0.587313413619995,0.477221667766571,-0.707805871963501,-0.520836174488068,0.530915260314941,-0.677121996879578,-0.509543836116791,0.275781631469727,-0.839517414569855,-0.468139946460724,0.358863323926926,-0.790966093540192,-0.495570361614227,0.327561378479004,-0.802184641361237,-0.499202579259872,0.247568517923355,-0.843346059322357,-0.476945728063583,0.300265371799469,-0.79502660036087,-0.527042150497437,0.274610280990601,-0.804278314113617,-0.526996731758118,0.208861485123634,-0.837360680103302,-0.505177140235901,0.232091337442398,-0.834368884563446,-0.49996230006218,0.203595161437988,-0.834277033805847,-0.512377738952637,0.146150469779968,-0.849574148654938,-0.50681734085083,0.167656153440475,-0.850731730461121,-0.498143523931503,0.227244526147842,-0.831436634063721,-0.507023930549622,0.0686760246753693,-0.852297127246857,-0.518529832363129,0.0912768170237541,-0.858048677444458,-0.505391895771027,0.1369259506464,-0.857358038425446,-0.496173858642578,0.113765262067318,-0.854072213172913,-0.507560968399048,0.139525800943375,-0.862658679485321,-0.486161142587662,0.194658741354942,-0.853398323059082,-0.483548641204834,0.170034065842628,-0.853295028209686,-0.4929259121418,0.116437003016472,-0.85944539308548,-0.497791439294815,0.162131026387215,-0.844674527645111,-0.510135769844055,0.140569359064102,-0.84361457824707,-0.518222749233246,0.0917388051748276,-0.848076462745667,-0.52187192440033,0.112622521817684,-0.851749122142792,-0.511702716350555,0.627899527549744,-0.700911402702332,-0.338327407836914,0.67763078212738,-0.634611070156097,-0.371598422527313,0.763323187828064,-0.470702528953552,-0.442466884851456,0.732457160949707,-0.541729092597961,-0.412354320287704,0.749139845371246,-0.473993450403214,-0.462730675935745,0.783649861812592,-0.277157694101334,-0.555946588516235,0.777887284755707,-0.354087382555008,-0.519146919250488,0.724752604961395,-0.54408186674118,-0.422739654779434,0.778633236885071,-0.35366091132164,-0.518318653106689,0.726405620574951,-0.440179795026779,-0.527803659439087, +0.625968039035797,-0.625147521495819,-0.466213077306747,0.695672571659088,-0.551846146583557,-0.459897458553314,0.398829132318497,-0.82971715927124,-0.390518665313721,0.509460270404816,-0.752109110355377,-0.418069541454315,0.455136179924011,-0.784161865711212,-0.421830803155899,0.3458331823349,-0.848497748374939,-0.400563359260559,0.424711465835571,-0.779556334018707,-0.460339099168777,0.384382367134094,-0.79651665687561,-0.4667027592659,0.289743065834045,-0.847110867500305,-0.44547963142395,0.327248066663742,-0.839480698108673,-0.433798342943192,0.28581303358078,-0.845027029514313,-0.451929539442062,0.208470851182938,-0.867918610572815,-0.450840801000595,0.242563933134079,-0.866478323936462,-0.436323374509811,0.322963833808899,-0.837257087230682,-0.441242516040802,0.390804499387741,-0.871931195259094,-0.294970899820328,0.459038585424423,-0.838505387306213,-0.293585181236267,0.571987748146057,-0.761744737625122,-0.304261326789856,0.503059029579163,-0.809176206588745,-0.303587883710861,0.567108809947968,-0.759629249572754,-0.318356871604919,0.687209010124207,-0.635122120380402,-0.352652370929718,0.625668406486511,-0.700969398021698,-0.342317044734955,0.500745952129364,-0.808407068252563,-0.309405088424683,0.601437449455261,-0.700693130493164,-0.383799582719803,0.539333283901215,-0.754201471805573,-0.37456613779068,0.421662747859955,-0.839091718196869,-0.343694388866425,0.485111743211746,-0.802577614784241,-0.34718245267868,0.776629149913788,-0.579961955547333,-0.245949774980545,0.806489706039429,-0.530553460121155,-0.260935664176941,0.896438181400299,-0.337328851222992,-0.287415593862534,0.876124322414398,-0.384203553199768,-0.291193723678589,0.890813052654266,-0.337817370891571,-0.303861111402512,0.932967603206635,-0.0717298239469528,-0.352741211652756,0.927880883216858,-0.126496061682701,-0.350764602422714,0.881782829761505,-0.382075309753418,-0.276545733213425,0.879137098789215,-0.159706443548203,-0.449012041091919,0.875424027442932,-0.220553204417229,-0.430103540420532,0.826025426387787,-0.450287997722626,-0.339002817869186, +0.83836418390274,-0.394768953323364,-0.375903189182281,0.124854326248169,-0.884485304355621,-0.449552178382874,0.168100222945213,-0.885133862495422,-0.433912813663483,0.224066153168678,-0.878150582313538,-0.422665297985077,0.179466903209686,-0.882286906242371,-0.435156881809235,0.226019412279129,-0.882211863994598,-0.413058638572693,0.297344774007797,-0.863272309303284,-0.407856583595276,0.249617755413055,-0.873502969741821,-0.417951464653015,0.181340277194977,-0.88593065738678,-0.426898747682571,0.235801547765732,-0.8594930768013,-0.453507721424103,0.203401416540146,-0.862700462341309,-0.463007390499115,0.143930703401566,-0.871458172798157,-0.468875914812088,0.174457475543022,-0.87232631444931,-0.456739872694016,0.855178594589233,-0.500026404857635,-0.136540472507477,0.838966727256775,-0.522693991661072,-0.151413485407829,0.939668953418732,-0.321486443281174,-0.116914309561253,0.939235746860504,-0.315722972154617,-0.134741351008415,0.940414786338806,-0.323085159063339,-0.106000080704689,0.995905220508575,-0.0147075587883592,-0.0891990959644318,0.993063747882843,-0.0151916043832898,-0.116592422127724,0.943499743938446,-0.316930025815964,-0.0967666730284691,0.9801304936409,-0.0215192064642906,-0.19718325138092,0.974732935428619,-0.0432351864874363,-0.219149768352509,0.929597198963165,-0.330537885427475,-0.163075894117355,0.932994544506073,-0.313872694969177,-0.176083281636238,0.541414976119995,-0.811223804950714,-0.220875516533852,0.612423837184906,-0.760288417339325,-0.216561079025269,0.70407634973526,-0.678819119930267,-0.208521351218224,0.655166327953339,-0.723922252655029,-0.216087564826012,0.697327256202698,-0.671692252159119,-0.250128418207169,0.806821644306183,-0.530685067176819,-0.259638667106628,0.770945429801941,-0.579672336578369,-0.263862013816833,0.649219274520874,-0.72072845697403,-0.243032649159431,0.752752542495728,-0.5776486992836,-0.315730363130569,0.707966506481171,-0.635213494300842,-0.30868661403656,0.582442581653595,-0.765855014324188,-0.272446095943451,0.638330161571503,-0.714254438877106,-0.287010788917542, +0.918017625808716,-0.396506279706955,-0.00514405127614737,0.991189420223236,-0.106388747692108,0.0788989961147308,0.997883379459381,-0.0525695309042931,0.038278553634882,0.953187346458435,-0.302248895168304,0.00892194081097841,0.998751759529114,-0.0475296154618263,0.0153588596731424,0.999507248401642,-0.0178891457617283,-0.0257962848991156,0.94245457649231,-0.332592338323593,-0.0340838506817818,0.955107629299164,-0.29534837603569,-0.023210110142827,0.708865821361542,-0.683971703052521,-0.172313630580902,0.613970816135406,-0.767575263977051,-0.184032902121544,0.713285386562347,-0.680647253990173,-0.167162597179413,0.759885191917419,-0.629349052906036,-0.162771046161652,0.713234126567841,-0.681277573108673,-0.164797052741051,0.838878929615021,-0.525303423404694,-0.142613038420677,0.851707994937897,-0.494490623474121,-0.173414349555969,0.759589731693268,-0.62835818529129,-0.167896956205368,0.232943147420883,-0.896212875843048,-0.377544611692429,0.170378237962723,-0.901282608509064,-0.398322641849518,0.227899417281151,-0.897860467433929,-0.376707404851913,0.29249507188797,-0.886152744293213,-0.359416127204895,0.228815197944641,-0.912093937397003,-0.340188562870026,0.299421846866608,-0.900352537631989,-0.315771728754044,0.37007737159729,-0.880752444267273,-0.295495957136154,0.298703730106354,-0.900314748287201,-0.31655889749527,0.369718015193939,-0.87956041097641,-0.29946967959404,0.459678798913956,-0.839217364788055,-0.290533304214478,0.389037907123566,-0.870369255542755,-0.301839232444763,0.299122750759125,-0.901253163814545,-0.313477784395218,0.376851230859756,-0.902478516101837,-0.208604067564011,0.472956746816635,-0.86015659570694,-0.190899893641472,0.54365485906601,-0.819351494312286,-0.181941673159599,0.45416671037674,-0.869236290454865,-0.195348426699638,0.544783532619476,-0.813890039920807,-0.201975494623184,0.613580703735352,-0.765489935874939,-0.193762466311455,0.543509006500244,-0.81475293636322,-0.201930105686188,0.454146832227707,-0.86491984128952,-0.213692143559456,0.53895103931427,-0.807113289833069,-0.24103969335556, +0.467640221118927,-0.847760140895844,-0.250230818986893,0.372949451208115,-0.890535712242126,-0.260489642620087,0.453635156154633,-0.855509757995605,-0.249636545777321,0.843680143356323,-0.534552991390228,0.0495666451752186,0.90738707780838,-0.324924618005753,0.266594976186752,0.933405220508575,-0.242005184292793,0.264930367469788,0.871825098991394,-0.48320859670639,0.0801901966333389,0.963612198829651,-0.194087237119675,0.183797985315323,0.976976275444031,-0.140624895691872,0.16044282913208,0.913753390312195,-0.405617445707321,0.0230056699365377,0.893123924732208,-0.449782282114029,0.00505297724157572,0.911261022090912,-0.410130083560944,0.0373718366026878,0.831323981285095,-0.555110216140747,-0.0274422019720078,0.772841036319733,-0.631534397602081,-0.0622977986931801,0.884687662124634,-0.464664399623871,0.0376134365797043,0.568624675273895,-0.817975342273712,-0.0870765447616577,0.701376080513,-0.711982071399689,-0.0339595749974251,0.765658438205719,-0.642563819885254,-0.0296462681144476,0.643824815750122,-0.761961579322815,-0.0700289234519005,0.77674925327301,-0.624427735805511,-0.0821618586778641,0.838191330432892,-0.532868981361389,-0.116129219532013,0.71091103553772,-0.694513440132141,-0.110709056258202,0.646621644496918,-0.757925152778625,-0.0861970186233521,0.711046636104584,-0.694024622440338,-0.112883225083351,0.614971160888672,-0.775986969470978,-0.140195548534393,0.542522788047791,-0.823672771453857,-0.165021747350693,0.653425276279449,-0.745568633079529,-0.131006985902786,0.569544970989227,-0.820728838443756,0.0449747107923031,0.482187181711197,-0.875895142555237,-0.0174129288643599,0.585532903671265,-0.807028532028198,0.0765263140201569,0.675695717334747,-0.718193650245667,0.166232332587242,0.507699966430664,-0.851324021816254,0.132243901491165,0.680144548416138,-0.690515160560608,0.246154651045799,0.803121328353882,-0.517277240753174,0.295669406652451,0.663348615169525,-0.72653067111969,0.179225832223892,0.826873302459717,-0.491067886352539,0.274103373289108,0.889846563339233,-0.348544865846634,0.294430911540985, +0.786581575870514,-0.596908271312714,0.158081725239754,0.709441304206848,-0.692888021469116,0.128837734460831,0.379678636789322,-0.916128158569336,-0.12865936756134,0.306108951568604,-0.938539147377014,-0.159504815936089,0.409471899271011,-0.905626058578491,-0.110337547957897,0.483505427837372,-0.871599733829498,-0.0808480381965637,0.387059837579727,-0.919271051883698,-0.0715937092900276,0.482806921005249,-0.875538945198059,-0.0181370470672846,0.574778497219086,-0.8174769282341,0.0368971265852451,0.464150130748749,-0.884967029094696,-0.0373885370790958,0.6055628657341,-0.795696079730988,-0.0127037055790424,0.686830461025238,-0.726812899112701,0.00263232016004622,0.557628929615021,-0.828562617301941,-0.0503382049500942,0.477274596691132,-0.876227796077728,-0.0665868073701859,0.234359860420227,-0.926871240139008,-0.293232381343842,0.178903147578239,-0.928559124469757,-0.325225800275803,0.256130546331406,-0.923387050628662,-0.285925656557083,0.314297288656235,-0.91326105594635,-0.259174644947052,0.241758286952972,-0.938584387302399,-0.246195629239082,0.32535457611084,-0.923588454723358,-0.202802628278732,0.393018186092377,-0.903483986854553,-0.171036332845688,0.303814977407455,-0.928885221481323,-0.211822375655174,0.398403704166412,-0.897560775279999,-0.18883615732193,0.468901485204697,-0.867168128490448,-0.167782202363014,0.375530421733856,-0.905731916427612,-0.196536645293236,0.305917888879776,-0.926032185554504,-0.221085697412491,0.118519388139248,-0.896113395690918,-0.427707761526108,0.0710804834961891,-0.892260611057281,-0.4458909034729,0.132056728005409,-0.888795614242554,-0.438866019248962,0.177587434649467,-0.886936187744141,-0.426388174295425,0.119096122682095,-0.914123237133026,-0.387549787759781,0.192629411816597,-0.908127903938293,-0.371749430894852,0.243897423148155,-0.901436626911163,-0.357667535543442,0.171698823571205,-0.914120137691498,-0.36729297041893,0.241454318165779,-0.908697187900543,-0.340542405843735,0.299482792615891,-0.899353682994843,-0.318548649549484,0.228760719299316,-0.911110818386078,-0.34284919500351, +0.171891570091248,-0.913339138031006,-0.369140774011612,0.390587627887726,-0.917288661003113,-0.0776066035032272,0.29686513543129,-0.944725871086121,-0.139155730605125,0.230059534311295,-0.955236852169037,-0.185998350381851,0.306953638792038,-0.942422151565552,-0.132740825414658,0.225058972835541,-0.957864880561829,-0.178447380661964,0.185111925005913,-0.964318096637726,-0.18927276134491,0.312186986207962,-0.946187257766724,-0.0852579995989799,0.317198812961578,-0.936952650547028,-0.146644502878189,0.13030107319355,-0.924449443817139,-0.358350425958633,0.0938582718372345,-0.911200821399689,-0.401127994060516,0.173169806599617,-0.927515685558319,-0.331250488758087,0.203900992870331,-0.931050777435303,-0.302603781223297,0.14859539270401,-0.942501068115234,-0.299351066350937,0.229269430041313,-0.946340680122375,-0.227761015295982,0.254573345184326,-0.940936803817749,-0.223227366805077,0.186338812112808,-0.94440758228302,-0.270873069763184,0.256991118192673,-0.939395308494568,-0.226918891072273,0.317939400672913,-0.929694354534149,-0.185964897274971,0.23821134865284,-0.941973686218262,-0.236518397927284,0.190545424818993,-0.941355407238007,-0.278464496135712,0.311223268508911,-0.939826428890228,0.140948042273521,0.203532174229622,-0.905471205711365,0.372419893741608,0.334866344928741,-0.911369383335114,0.239312306046486,0.372147440910339,-0.928151488304138,-0.00641099642962217,0.444051504135132,-0.878931522369385,0.174062088131905,0.419616013765335,-0.906153559684753,0.0529908277094364,0.326211988925934,-0.940219163894653,-0.0978448912501335,0.376409113407135,-0.926413118839264,-0.00865267775952816,0.264750152826309,-0.963347494602203,-0.0432319305837154,0.185491010546684,-0.96418035030365,-0.189603641629219,0.201580747961998,-0.969821095466614,-0.137157961726189,0.257755368947983,-0.964809536933899,0.0520070120692253,0.0388029478490353,-0.866544187068939,-0.497589737176895,0.00620143953710794,-0.850931942462921,-0.525239288806915,0.0676119402050972,-0.86175799369812,-0.502794027328491,0.101298294961452,-0.869389295578003,-0.48363322019577, +0.0433455593883991,-0.882893800735474,-0.467568069696426,0.116125538945198,-0.893740832805634,-0.433292239904404,0.155595168471336,-0.897941291332245,-0.411693543195724,0.0808171108365059,-0.89566570520401,-0.437323153018951,0.150245562195778,-0.903921127319336,-0.400441139936447,0.195598110556602,-0.903261423110962,-0.38191682100296,0.121825098991394,-0.909115493297577,-0.398331046104431,0.0752892717719078,-0.902205944061279,-0.424683570861816,0.177585989236832,-0.924618721008301,-0.336962044239044,0.0956456586718559,-0.909865856170654,-0.403727740049362,0.0679594054818153,-0.894254803657532,-0.442368507385254,0.135241210460663,-0.917569220066071,-0.373867064714432,0.0682593584060669,-0.894088804721832,-0.442657738924026,0.070824570953846,-0.892055213451385,-0.446342408657074,0.151694506406784,-0.931431829929352,-0.330792307853699,0.136069282889366,-0.917116940021515,-0.374675571918488,0.106752015650272,-0.889533042907715,-0.444223999977112,0.153225019574165,-0.896950304508209,-0.414731591939926,0.171438276767731,-0.949791193008423,-0.261736214160919,0.181175023317337,-0.933038175106049,-0.310830146074295,0.183891922235489,-0.947567522525787,-0.261341959238052,0.19240839779377,-0.978920340538025,-0.0685126259922981,0.21420955657959,-0.966296076774597,-0.14278082549572,0.146358370780945,-0.943156599998474,-0.298387080430984,0.209982097148895,-0.967499256134033,-0.140899673104286,0.218870460987091,-0.950927555561066,-0.218706637620926,0.157468348741531,-0.92908900976181,-0.334659993648529,0.16679972410202,-0.937391698360443,-0.30573645234108,0.00653253449127078,-0.818462908267975,-0.574522256851196,0.00928053446114063,-0.802982211112976,-0.595930814743042,0.060790479183197,-0.834137141704559,-0.548196852207184,0.0653084069490433,-0.837264716625214,-0.542883634567261,0.0394870936870575,-0.842972934246063,-0.536504805088043,0.101680159568787,-0.879839718341827,-0.464266359806061,0.100159652531147,-0.875361025333405,-0.472981184720993,0.0369846597313881,-0.855217695236206,-0.5169478058815,0.0937672108411789,-0.879285454750061,-0.46697410941124, +0.124018952250481,-0.88711416721344,-0.444576054811478,0.0507329478859901,-0.87668114900589,-0.478389322757721,0.0296260640025139,-0.859623908996582,-0.510067760944366,0.120427869260311,-0.858901798725128,-0.497780025005341,0.0928322896361351,-0.866499781608582,-0.490469455718994,0.0492480769753456,-0.865073919296265,-0.499221295118332,0.0795034691691399,-0.860175669193268,-0.50376284122467,0.0500009544193745,-0.856197595596313,-0.514223277568817,0.0106735965237021,-0.848839581012726,-0.528542757034302,0.0438224226236343,-0.846246063709259,-0.530987024307251,0.0803995728492737,-0.850244462490082,-0.520211815834045,0.0350864343345165,-0.870024085044861,-0.491759121417999,0.0813075378537178,-0.867768526077271,-0.490272223949432,0.122170314192772,-0.869134187698364,-0.479249656200409,0.0779552236199379,-0.875918090343475,-0.476120263338089,-0.0126412659883499,-0.816279470920563,-0.577518880367279,-0.0355585999786854,-0.798222720623016,-0.601312041282654,0.00110373867210001,-0.801710963249207,-0.597710907459259,0.0238009244203568,-0.81467604637146,-0.579427719116211,-0.0202587451785803,-0.822812139987946,-0.567952215671539,0.0280696898698807,-0.830352544784546,-0.556531190872192,0.0561892613768578,-0.841183483600616,-0.537822544574738,0.0075244689360261,-0.840282678604126,-0.542096316814423,0.0488094352185726,-0.852237522602081,-0.520873129367828,0.0848518311977386,-0.858605623245239,-0.505565762519836,0.0382296331226826,-0.861711025238037,-0.505957126617432,0.00106270727701485,-0.849902272224426,-0.526939332485199,0.0647486001253128,-0.83086085319519,-0.552700459957123,0.0457728132605553,-0.838488340377808,-0.542993724346161,0.00536925531923771,-0.83326256275177,-0.552851438522339,0.0287758093327284,-0.827922821044922,-0.560103535652161,0.00625074608251452,-0.822610378265381,-0.568571090698242,-0.029951810836792,-0.812851369380951,-0.581700623035431,-0.00289520318619907,-0.810816526412964,-0.585293233394623,0.0295485444366932,-0.817182898521423,-0.575620651245117,-0.00863957870751619,-0.828063309192657,-0.560568034648895, +0.0189135894179344,-0.824716627597809,-0.565230011940002,0.0519579201936722,-0.83092600107193,-0.553951680660248,0.0280744228512049,-0.837298572063446,-0.546024680137634,-0.0261141825467348,-0.764213263988495,-0.644434750080109,-0.0186673160642385,-0.74872350692749,-0.662619531154633,0.0149279143661261,-0.762303471565247,-0.647047638893127,0.011159235611558,-0.771187424659729,-0.63651031255722,-0.00687432056292892,-0.771543681621552,-0.636139273643494,0.0336902029812336,-0.792690396308899,-0.608692824840546,0.0348228327929974,-0.799733757972717,-0.599344193935394,-0.0123524218797684,-0.78710812330246,-0.61669135093689,0.0220373161137104,-0.808378338813782,-0.588250696659088,0.0385265834629536,-0.819940984249115,-0.571150124073029,-0.0103723192587495,-0.813225030899048,-0.581856906414032,-0.0232575125992298,-0.794175207614899,-0.607243657112122,-0.0495592579245567,-0.777091801166534,-0.627433180809021,-0.0181239563971758,-0.780502617359161,-0.624889731407166,0.00150030420627445,-0.793106615543365,-0.609081029891968,-0.0292793773114681,-0.794396102428436,-0.606693983078003,-0.0053847236558795,-0.804560899734497,-0.593845725059509,0.0223225709050894,-0.81422084569931,-0.580125987529755,-0.00532522890716791,-0.818204581737518,-0.574902534484863,-0.0355778783559799,-0.804540276527405,-0.592831611633301,0.000781471375375986,-0.79938155412674,-0.600823283195496,-0.0267919078469276,-0.803578972816467,-0.594594836235046,-0.056156799197197,-0.78814160823822,-0.612926721572876,-0.0255988333374262,-0.788352727890015,-0.614690721035004,0.023017730563879,-0.819572627544403,-0.572512865066528,0.00887865945696831,-0.825578331947327,-0.564217627048492,-0.0353890061378479,-0.819665133953094,-0.571748912334442,-0.0162861607968807,-0.816314458847046,-0.577378153800964,-0.0340443775057793,-0.809444546699524,-0.586208581924438,-0.0775756537914276,-0.795724272727966,-0.600670456886292,-0.0514024198055267,-0.794618844985962,-0.604928612709045,-0.0150497239083052,-0.803667068481445,-0.594888806343079,-0.053903091698885,-0.801519513130188,-0.595534145832062, +-0.0256297159940004,-0.800120949745178,-0.599290907382965,0.00744562782347202,-0.807650566101074,-0.589614450931549,-0.0159674026072025,-0.813083052635193,-0.581928730010986,-0.0951129868626595,-0.74712747335434,-0.657840490341187,-0.0631958618760109,-0.753929734230042,-0.653908610343933,-0.0430880002677441,-0.766931295394897,-0.640281081199646,-0.0748907327651978,-0.765405237674713,-0.639176189899445,-0.0493121296167374,-0.777151942253113,-0.627378046512604,-0.0217620059847832,-0.788429021835327,-0.61474072933197,-0.0501786470413208,-0.791208148002625,-0.609484851360321,-0.0809845179319382,-0.774861395359039,-0.626922249794006,-0.0471936576068401,-0.782796561717987,-0.620485544204712,-0.0732961818575859,-0.785313546657562,-0.614744126796722,-0.110093407332897,-0.766207933425903,-0.633091509342194,-0.0780607163906097,-0.770346701145172,-0.632828950881958,-0.0822596326470375,-0.773833930492401,-0.628024280071259,-0.0963410288095474,-0.775354444980621,-0.624134480953217,-0.14451102912426,-0.7426638007164,-0.653886258602142,-0.108543656766415,-0.761975526809692,-0.638444662094116,-0.134074166417122,-0.734276115894318,-0.665479302406311,-0.13540343940258,-0.74347597360611,-0.654911875724792,-0.109133809804916,-0.764859139919281,-0.634886026382446,-0.104199469089508,-0.756628155708313,-0.645489156246185,-0.114180870354176,-0.771912097930908,-0.625391483306885,-0.0764843225479126,-0.793088138103485,-0.604285836219788,-0.0697643309831619,-0.783976256847382,-0.616858243942261,-0.109735667705536,-0.763432085514069,-0.636497855186462,-0.079125702381134,-0.698581278324127,-0.711142241954803,-0.0511062666773796,-0.713223099708557,-0.69907158613205,-0.0518845617771149,-0.723381221294403,-0.688496768474579,-0.0829523429274559,-0.713781535625458,-0.6954385638237,-0.0642971098423004,-0.731829285621643,-0.678448081016541,-0.0541776642203331,-0.744542479515076,-0.665373027324677,-0.0866270437836647,-0.738592803478241,-0.668562948703766,-0.0942743346095085,-0.721333980560303,-0.686141133308411,-0.0829844027757645,-0.734877467155457,-0.673103809356689, +-0.117889881134033,-0.727105915546417,-0.676327586174011,-0.125889331102371,-0.708262741565704,-0.694633483886719,-0.094135046005249,-0.721242129802704,-0.686256766319275,-0.144795939326286,-0.679428935050964,-0.71931254863739,-0.12022066116333,-0.691946148872375,-0.711869060993195,-0.118862360715866,-0.703812062740326,-0.700371623039246,-0.142835631966591,-0.700677216053009,-0.699034631252289,-0.129296854138374,-0.710397899150848,-0.69182163476944,-0.118334949016571,-0.72752970457077,-0.675793826580048,-0.133824393153191,-0.734072923660278,-0.665753662586212,-0.15276762843132,-0.706214606761932,-0.691319763660431,-0.133157625794411,-0.733530163764954,-0.66648530960083,-0.0941896662116051,-0.773937225341797,-0.626218557357788,-0.152855008840561,-0.721236050128937,-0.675613820552826,-0.15501743555069,-0.707452654838562,-0.689550876617432,-0.103524535894394,-0.767143905162811,-0.633066415786743,-0.184964373707771,-0.710075914859772,-0.67939704656601,-0.241420567035675,-0.698114633560181,-0.67405641078949,-0.154596135020256,-0.758932948112488,-0.63255101442337,-0.16941425204277,-0.686368882656097,-0.707245707511902,-0.176919639110565,-0.675897657871246,-0.715445220470428,-0.146237805485725,-0.718136787414551,-0.680363297462463,-0.126192659139633,-0.749746024608612,-0.649581670761108,-0.15230467915535,-0.720980107784271,-0.676011085510254,-0.129500642418861,-0.796203017234802,-0.591007888317108,-0.134672433137894,-0.839360535144806,-0.526628136634827,-0.162673398852348,-0.761391818523407,-0.627550661563873,-0.195860117673874,-0.626952707767487,-0.754035234451294,-0.195823803544044,-0.631735146045685,-0.750042498111725,-0.187033131718636,-0.646796941757202,-0.739372968673706,-0.189557299017906,-0.640540301799774,-0.744161486625671,-0.18736132979393,-0.646824836730957,-0.739265441894531,-0.17129747569561,-0.674382209777832,-0.718238115310669,-0.170731633901596,-0.6866215467453,-0.70668351650238,-0.189622491598129,-0.64054399728775,-0.744141578674316,-0.205233633518219,-0.692741394042969,-0.691367149353027,-0.21570149064064,-0.713749408721924,-0.66635924577713, +-0.222554251551628,-0.654046833515167,-0.722974717617035,-0.209375202655792,-0.641554892063141,-0.737949430942535,-0.0909431502223015,-0.657024323940277,-0.748363733291626,-0.0797362104058266,-0.671791613101959,-0.736436188220978,-0.0886042639613152,-0.676644146442413,-0.73095965385437,-0.108496256172657,-0.664489150047302,-0.73938000202179,-0.100955404341221,-0.67883837223053,-0.727314651012421,-0.109760485589504,-0.688009321689606,-0.717353343963623,-0.134794875979424,-0.676026582717896,-0.72444349527359,-0.120925813913345,-0.66638308763504,-0.735738098621368,-0.144264757633209,-0.679250419139862,-0.719587862491608,-0.164279744029045,-0.672453939914703,-0.721677124500275,-0.163335025310516,-0.644582092761993,-0.746883988380432,-0.142333969473839,-0.669383823871613,-0.729154527187347,-0.223276033997536,-0.70325756072998,-0.674964189529419,-0.211298108100891,-0.663317084312439,-0.717888236045837,-0.206527695059776,-0.631934106349945,-0.746997714042664,-0.206049382686615,-0.651944994926453,-0.729733765125275,-0.201020404696465,-0.633481383323669,-0.747189462184906,-0.200275957584381,-0.631282448768616,-0.749247670173645,-0.194337248802185,-0.627049267292023,-0.754348933696747,-0.202452301979065,-0.652599394321442,-0.730155646800995,-0.230193555355072,-0.624362170696259,-0.746446788311005,-0.210956767201424,-0.631555080413818,-0.746080040931702,-0.228913202881813,-0.649359941482544,-0.725210666656494,-0.246214628219604,-0.643998682498932,-0.724323153495789,-0.0292559713125229,-0.728372752666473,-0.684556186199188,0.000622836581896991,-0.740537822246552,-0.672014355659485,-0.00388258695602417,-0.74894779920578,-0.662617623806,-0.0365110300481319,-0.74250328540802,-0.668846607208252,-0.0170232132077217,-0.758066356182098,-0.651955246925354,-0.00881665013730526,-0.770677208900452,-0.637164711952209,-0.0411827750504017,-0.768516898155212,-0.638502776622772,-0.0484192036092281,-0.750522196292877,-0.659069180488586,-0.030314464122057,-0.757103681564331,-0.652591049671173,-0.0634885281324387,-0.754230797290802,-0.653532803058624, +-0.0697556734085083,-0.735473275184631,-0.673953533172607,-0.0379911698400974,-0.74351179599762,-0.667642772197723,-0.0166953522711992,-0.688537955284119,-0.725008249282837,-0.00188995257485658,-0.705780863761902,-0.708427727222443,-0.0137546733021736,-0.699847340583801,-0.714160084724426,-0.0371528454124928,-0.682096481323242,-0.730317771434784,-0.0281539298593998,-0.702984154224396,-0.710648059844971,-0.037269551306963,-0.707368433475494,-0.705861806869507,-0.06589525192976,-0.693135857582092,-0.717788696289063,-0.0513872317969799,-0.685107827186584,-0.726626873016357,-0.06758201867342,-0.693839311599731,-0.716951668262482,-0.0965183153748512,-0.682882130146027,-0.724124431610107,-0.0818729996681213,-0.675400912761688,-0.732891917228699,-0.0611912086606026,-0.687093496322632,-0.723987698554993,-0.317882627248764,-0.831937849521637,-0.454785704612732,-0.248351335525513,-0.804488241672516,-0.539555668830872,-0.207368224859238,-0.724653661251068,-0.65717226266861,-0.2668536901474,-0.762574672698975,-0.589295268058777,-0.228326633572578,-0.712061107158661,-0.663954794406891,-0.212087243795395,-0.662995755672455,-0.71795243024826,-0.230529934167862,-0.701264977455139,-0.674598693847656,-0.262699753046036,-0.764239192008972,-0.589005351066589,-0.291777670383453,-0.682681918144226,-0.66993373632431,-0.283980667591095,-0.694832921028137,-0.660728573799133,-0.30782425403595,-0.765080094337463,-0.565594077110291,-0.314158022403717,-0.742366313934326,-0.59177440404892,-0.118135817348957,-0.65408319234848,-0.74714070558548,-0.133710563182831,-0.692289531230927,-0.709123849868774,-0.107719838619232,-0.656643748283386,-0.746468603610992,-0.111282750964165,-0.64610880613327,-0.755089163780212,-0.0510533191263676,-0.680570840835571,-0.730901420116425,-0.0338826291263103,-0.676941752433777,-0.735256314277649,-0.04470169916749,-0.674395203590393,-0.737016260623932,-0.0498965010046959,-0.661180853843689,-0.748565435409546,-0.0563778541982174,-0.671492695808411,-0.738863468170166,-0.0664356276392937,-0.672137677669525,-0.737439692020416, +-0.0796585753560066,-0.657399117946625,-0.749320268630981,-0.0655470713973045,-0.657596409320831,-0.750513553619385,-0.0301250088959932,-0.685990035533905,-0.72698712348938,-0.0291051287204027,-0.679103136062622,-0.733465611934662,-0.0292645562440157,-0.689021110534668,-0.724150121212006,-0.0636503845453262,-0.724004864692688,-0.686851918697357,-0.103035226464272,-0.658729374408722,-0.745291471481323,-0.130214408040047,-0.693474650382996,-0.708616316318512,-0.170280009508133,-0.745616614818573,-0.644252002239227,-0.118931323289871,-0.687229514122009,-0.716638624668121,-0.216170877218246,-0.719431340694427,-0.66006726026535,-0.344427913427353,-0.722590684890747,-0.599359750747681,-0.146789997816086,-0.680447161197662,-0.71794456243515,-0.109524473547935,-0.693775057792664,-0.711814999580383,-0.400232523679733,-0.870060622692108,-0.28776490688324,-0.125547185540199,-0.882600665092468,-0.453049659729004,-0.329589456319809,-0.826099216938019,-0.457089573144913,-0.532429337501526,-0.792275846004486,-0.298023492097855,-0.375688076019287,-0.801369428634644,-0.465473413467407,-0.443766683340073,-0.792072296142578,-0.419157028198242,-0.512117505073547,-0.816985070705414,-0.265086889266968,-0.474335163831711,-0.83341521024704,-0.283593356609344,0.0526871979236603,-0.780527412891388,-0.622897386550903,0.0526969917118549,-0.768213629722595,-0.638021051883698,0.0839603543281555,-0.751713335514069,-0.654123663902283,0.0927205383777618,-0.768164157867432,-0.63350373506546,0.0243716035038233,-0.725621283054352,-0.687662541866302,0.0402144342660904,-0.708075881004333,-0.704990267753601,0.02488780207932,-0.72459214925766,-0.688728451728821,0.0240402370691299,-0.722938656806946,-0.690493881702423,0.0440173223614693,-0.730722188949585,-0.6812544465065,0.0245114583522081,-0.705915749073029,-0.707871675491333,-0.00196352577768266,-0.688546180725098,-0.725189864635468,0.0230216532945633,-0.711137354373932,-0.702676057815552,-0.0185357443988323,-0.688526332378387,-0.724974453449249,-0.0371977873146534,-0.672477662563324,-0.73918205499649, +-0.0162746608257294,-0.681037724018097,-0.732067346572876,-0.00434954417869449,-0.704322755336761,-0.709866583347321,0.00732630444690585,-0.686096727848053,-0.727473437786102,0.0161469597369432,-0.698523044586182,-0.715405344963074,0.0162074267864227,-0.72174859046936,-0.691965520381927,0.0103955939412117,-0.708068132400513,-0.706067621707916,0.0303897801786661,-0.732471466064453,-0.680119216442108,0.0162170734256506,-0.733634948730469,-0.679350316524506,-0.0157170686870813,-0.722601354122162,-0.691086411476135,0.00388533039949834,-0.716353356838226,-0.697726786136627,-0.00765120983123779,-0.719074726104736,-0.69489061832428,-0.0369028262794018,-0.707210719585419,-0.706039071083069,-0.0197144784033298,-0.701165080070496,-0.712726414203644,0.00407201098278165,-0.716310977935791,-0.697769343852997,-0.00528929475694895,-0.697928547859192,-0.716147840023041,0.0177240632474422,-0.705928087234497,-0.708061754703522,0.0349223874509335,-0.721779406070709,-0.691241681575775,0.0203699972480536,-0.712499499320984,-0.701376855373383,0.100733563303947,-0.744559586048126,-0.659911870956421,0.0872035622596741,-0.788365066051483,-0.608995914459229,0.0637619271874428,-0.780538082122803,-0.621847808361053,0.0717131346464157,-0.74821799993515,-0.659565806388855,0.0961841121315956,-0.798652827739716,-0.594055771827698,0.10163639485836,-0.817427456378937,-0.566994369029999,0.118992634117603,-0.77552741765976,-0.619998395442963,0.105056114494801,-0.756122291088104,-0.64594292640686,0.0742287412285805,-0.766110062599182,-0.638408601284027,0.0693444609642029,-0.740475654602051,-0.668496191501617,0.0911243259906769,-0.720439612865448,-0.687504947185516,0.102565616369247,-0.755566358566284,-0.646992862224579,0.0667845383286476,-0.784567058086395,-0.616437017917633,0.0519008040428162,-0.784557223320007,-0.617880463600159,0.00448950426653028,-0.76679265499115,-0.641879200935364,0.0292073078453541,-0.758348941802979,-0.651194155216217,0.0277301464229822,-0.756634056568146,-0.653250277042389,-0.00484331091865897,-0.742897033691406,-0.669388175010681, +0.0123725356534123,-0.73669970035553,-0.676106810569763,0.0377687811851501,-0.756279945373535,-0.65315705537796,0.0232821591198444,-0.734171092510223,-0.678565204143524,0.0549621842801571,-0.740841865539551,-0.669427037239075,0.0784696340560913,-0.76349800825119,-0.641025364398956,0.0591538399457932,-0.750839471817017,-0.657830357551575,0.149971723556519,-0.855637967586517,-0.495370954275131,0.109010897576809,-0.863473355770111,-0.492473632097244,0.134325683116913,-0.827006757259369,-0.545908868312836,0.173012673854828,-0.804040014743805,-0.568846464157104,0.133628606796265,-0.82690966129303,-0.546226859092712,0.128379538655281,-0.792345345020294,-0.596412241458893,0.0978196188807487,-0.762493550777435,-0.639558374881744,0.122727632522583,-0.796725690364838,-0.591748297214508,0.1069740280509,-0.761917233467102,-0.638779044151306,0.0799924209713936,-0.740105032920837,-0.667716801166534,0.101113200187683,-0.771984994411469,-0.627546966075897,0.114185154438019,-0.795243978500366,-0.595440030097961,0.131022617220879,-0.882827877998352,-0.451052069664001,0.117631882429123,-0.873008847236633,-0.473305612802505,0.0441365167498589,-0.84109354019165,-0.539085924625397,0.0743991136550903,-0.834140062332153,-0.546511888504028,0.0778069347143173,-0.826665580272675,-0.557288110256195,0.0175506696105003,-0.799573421478271,-0.600311875343323,0.0432449169456959,-0.790548205375671,-0.610870957374573,0.0890468209981918,-0.830262303352356,-0.550213754177094,0.0574414171278477,-0.78700053691864,-0.61427241563797,0.0982152447104454,-0.794748604297638,-0.598939418792725,0.124325081706047,-0.84088122844696,-0.526746690273285,0.111720405519009,-0.823848903179169,-0.555690109729767,0.192420601844788,-0.920553743839264,-0.339933931827545,0.125510782003403,-0.944379806518555,-0.30396381020546,0.168082758784294,-0.921029090881348,-0.351359695196152,0.226449728012085,-0.873511672019958,-0.430926859378815,0.171515896916389,-0.921063005924225,-0.349607288837433,0.179105177521706,-0.893074512481689,-0.412721812725067,0.1438317745924,-0.838819265365601,-0.525066316127777, +0.182219833135605,-0.872163414955139,-0.454012155532837,0.151025667786598,-0.837975203990936,-0.524393916130066,0.126214250922203,-0.792542576789856,-0.596612274646759,0.148062124848366,-0.828821003437042,-0.539567708969116,0.143098801374435,-0.869196951389313,-0.473306834697723,0.148720502853394,-0.981057584285736,-0.124129943549633,0.0420434884727001,-0.998534500598907,-0.0340766869485378,0.0918650403618813,-0.995249509811401,-0.0322392284870148,0.170936271548271,-0.965476036071777,-0.196562558412552,0.094018965959549,-0.995076596736908,-0.0313526019454002,0.169817432761192,-0.983149349689484,-0.0676713883876801,0.189642280340195,-0.946487665176392,-0.261145442724228,0.18751385807991,-0.964010775089264,-0.188472464680672,0.184822112321854,-0.947395145893097,-0.261310786008835,0.175087094306946,-0.893717885017395,-0.413053154945374,0.193244054913521,-0.920959234237671,-0.33836504817009,0.142254948616028,-0.967224299907684,-0.210334658622742,-0.0675209984183311,-0.99267315864563,0.100204586982727,-0.216682761907578,-0.954168558120728,0.206424236297607,-0.19392241537571,-0.928175449371338,0.317622870206833,-0.0869705453515053,-0.987559974193573,0.131002351641655,-0.123815409839153,-0.93088710308075,0.343684405088425,0.0608154013752937,-0.919374048709869,0.388655155897141,0.198815494775772,-0.967970013618469,0.153318792581558,0.0920284241437912,-0.976451992988586,0.195121303200722,0.146509245038033,-0.976463735103607,0.158282995223999,0.193682581186295,-0.978665769100189,-0.0685590803623199,0.171908631920815,-0.985112428665161,0.000968806212767959,0.0440203361213207,-0.982953727245331,0.178505957126617,0.132585197687149,-0.930649638175964,-0.341046154499054,0.0783726349473,-0.947845935821533,-0.308943390846252,0.0579723939299583,-0.948784232139587,-0.310560315847397,0.100620925426483,-0.936998069286346,-0.334529548883438,0.083978496491909,-0.96737676858902,-0.239018425345421,0.0547442138195038,-0.970694124698639,-0.23400029540062,0.0918880775570869,-0.963484048843384,-0.251506000757217,0.136690646409988,-0.953622579574585,-0.268178403377533, +0.0820330604910851,-0.959445536136627,-0.269694119691849,0.127946585416794,-0.944884061813354,-0.301369935274124,0.189602941274643,-0.919998824596405,-0.343005776405334,0.128735467791557,-0.950416922569275,-0.283081024885178,0.126742959022522,-0.974407553672791,-0.185650661587715,0.0808993726968765,-0.983558058738708,-0.161458447575569,0.0384743213653564,-0.98834639787674,-0.147279351949692,0.0646970942616463,-0.985740125179291,-0.155340671539307,0.0535616092383862,-0.992885410785675,-0.106348179280758,-0.00618439679965377,-0.99691504240036,-0.0782444626092911,0.00216204021126032,-0.997543513774872,-0.0700162425637245,0.0837632119655609,-0.989229917526245,-0.120032951235771,0.00691991671919823,-0.998068451881409,-0.0617379248142242,0.0236923601478338,-0.998383820056915,-0.051656823605299,0.123271383345127,-0.980773627758026,-0.151285201311111,0.0882884785532951,-0.989825010299683,-0.111586920917034,-0.0626752823591232,-0.997963726520538,0.0118403024971485,-0.150079607963562,-0.988061130046844,0.0348044224083424,-0.195768535137177,-0.977229535579681,0.0818366780877113,-0.0826135724782944,-0.996292948722839,0.0239855963736773,-0.186358585953712,-0.977636396884918,0.0974550917744637,-0.23115648329258,-0.953443288803101,0.193681955337524,-0.103933706879616,-0.992263972759247,0.0678972378373146,-0.0689489841461182,-0.99653023481369,0.0466217361390591,-0.0798074826598167,-0.992798149585724,0.089345782995224,0.0525261461734772,-0.998330891132355,-0.0240128543227911,0.0357643663883209,-0.999295175075531,-0.0114062251523137,-0.0799438506364822,-0.996394217014313,0.0284169968217611,-0.689881086349487,-0.614238739013672,0.383112102746964,-0.699534237384796,-0.443593859672546,0.560246825218201,-0.693068444728851,-0.546609044075012,0.469973117113113,-0.656564056873322,-0.705985486507416,0.265533685684204,-0.536085486412048,-0.654717266559601,0.53287672996521,-0.577387273311615,-0.734867870807648,0.355799347162247,-0.48841255903244,-0.853469252586365,0.181778073310852,-0.504301130771637,-0.778849840164185,0.372925251722336,-0.425573855638504,-0.879064381122589,0.214785844087601, +-0.322212815284729,-0.940258264541626,0.109969727694988,-0.423269808292389,-0.873924612998962,0.238953247666359,-0.485774546861649,-0.785142481327057,0.384154379367828,-0.753682792186737,-0.633665919303894,0.174441695213318,-0.769239366054535,-0.605967462062836,0.202667906880379,-0.873448431491852,-0.384926348924637,0.298193842172623,-0.844661474227905,-0.450796663761139,0.288668304681778,-0.866787314414978,-0.388771861791611,0.312308043241501,-0.9117152094841,-0.105300970375538,0.397098332643509,-0.890287637710571,-0.184864416718483,0.416188776493073,-0.838899493217468,-0.454976946115494,0.298737078905106,-0.833600521087646,-0.240075096487999,0.497467815876007,-0.817547023296356,-0.343732446432114,0.462022572755814,-0.795133411884308,-0.54526424407959,0.265423774719238,-0.821086764335632,-0.466950595378876,0.328288972377777,-0.256255030632019,-0.966187477111816,0.0285514630377293,-0.365272462368011,-0.92883825302124,0.0619317106902599,-0.447210609912872,-0.886567115783691,0.118328042328358,-0.346638470888138,-0.935648620128632,0.0663600787520409,-0.441419780254364,-0.887866735458374,0.129773885011673,-0.584328830242157,-0.766697585582733,0.26596000790596,-0.490037202835083,-0.8553506731987,0.168043941259384,-0.345615714788437,-0.935891568660736,0.0682414770126343,-0.422730922698975,-0.874036014080048,0.239498794078827,-0.315835177898407,-0.941691279411316,0.116042621433735,-0.212559521198273,-0.975675523281097,0.053625725209713,-0.317839682102203,-0.940755784511566,0.118137739598751,-0.903960943222046,-0.363719671964645,0.224861159920692,-0.787943303585052,-0.599518299102783,0.140439927577972,-0.917669653892517,-0.33294615149498,0.216862335801125,-0.930229187011719,-0.260314434766769,0.258669793605804,-0.916611552238464,-0.333168983459473,0.220956593751907,-0.974157452583313,0.00758753763511777,0.225742504000664,-0.963070154190063,-0.0169884543865919,0.268714010715485,-0.937125205993652,-0.256100177764893,0.237084567546844,-0.944873988628387,-0.325510591268539,0.0354420877993107,-0.997865200042725,-0.0167534667998552,-0.0631219074130058, +-0.999971568584442,0.00556288426741958,-0.00508370762690902,-0.945561468601227,-0.321233600378036,0.0521774031221867,-0.994704484939575,0.0140269855037332,0.101814925670624,-0.987268507480621,0.0111313937231898,0.158672496676445,-0.929342806339264,-0.329715013504028,0.166162550449371,-0.93583732843399,-0.317519843578339,0.152936443686485,-0.937034666538239,-0.326394945383072,0.124227032065392,-0.801687300205231,-0.591683685779572,0.0848993510007858,-0.773312091827393,-0.627847790718079,0.0882930159568787,-0.94325578212738,-0.320306450128555,0.0875919759273529,-0.466649055480957,-0.880940914154053,0.0786241292953491,-0.371627777814865,-0.927471816539764,0.041096568107605,-0.557234585285187,-0.824728608131409,0.0965004488825798,-0.574750006198883,-0.808483958244324,0.126555129885674,-0.551985561847687,-0.825833022594452,0.115376651287079,-0.778562843799591,-0.603216409683228,0.173118695616722,-0.735401928424835,-0.643511116504669,0.212314397096634,-0.572228014469147,-0.809284031391144,0.13271951675415,-0.0598274916410446,-0.997457087039948,-0.0387312360107899,-0.108987145125866,-0.99334055185318,-0.0373679958283901,-0.132094115018845,-0.990996778011322,-0.0218332968652248,-0.0685504823923111,-0.997200310230255,-0.0298734810203314,-0.126611635088921,-0.991952300071716,0.000350631802575663,-0.154114574193954,-0.987762331962585,0.0239670034497976,-0.067000575363636,-0.997752666473389,0.00071235845098272,-0.0623899511992931,-0.998024582862854,-0.00739069143310189,-0.0781774669885635,-0.996541678905487,-0.0281582400202751,0.00572479469701648,-0.998864710330963,-0.0472912304103374,-0.00801411643624306,-0.998594403266907,-0.0523930415511131,-0.073155865073204,-0.996223747730255,-0.0467596426606178,0.0408146567642689,-0.987177014350891,-0.154323726892471,0.00492858188226819,-0.989490747451782,-0.144512072205544,-0.0129564618691802,-0.989754021167755,-0.142194345593452,0.0142234284430742,-0.988704800605774,-0.14919975399971,-0.00558919971808791,-0.994359016418457,-0.105919227004051,-0.030433751642704,-0.994457840919495,-0.100635036826134, +-0.0222148280590773,-0.99454653263092,-0.101900212466717,0.0237862672656775,-0.993182897567749,-0.114114537835121,-0.0203654784709215,-0.995225310325623,-0.095456637442112,-0.011652423068881,-0.995650708675385,-0.09243343770504,0.0491687320172787,-0.991757929325104,-0.118315868079662,0.0245171785354614,-0.993470728397369,-0.111421711742878,-0.182146340608597,-0.983005821704865,-0.0228548217564821,-0.304711639881134,-0.95236337184906,-0.0124414479359984,-0.33662086725235,-0.941626667976379,0.00506068579852581,-0.215843334794044,-0.976313471794128,-0.0149559359997511,-0.333112269639969,-0.942579209804535,0.0240967907011509,-0.369770854711533,-0.927920997142792,0.0472467504441738,-0.26095175743103,-0.965238749980927,0.0147772617638111,-0.21211051940918,-0.977243602275848,0.00202607712708414,-0.253571331501007,-0.966633558273315,0.0363484025001526,-0.16051758825779,-0.987010598182678,0.00664749508723617,-0.127638280391693,-0.991813600063324,-0.00378317967988551,-0.209863364696503,-0.977655708789825,0.0121105220168829,-0.504891037940979,-0.862978041172028,0.0188180934637785,-0.761847674846649,-0.647735953330994,0.00512830866500735,-0.778114318847656,-0.62679135799408,0.0408763438463211,-0.538548111915588,-0.842469215393066,0.0145438574254513,-0.774091005325317,-0.627785742282867,0.0816603228449821,-0.787376344203949,-0.599773347377777,0.142514586448669,-0.562128186225891,-0.823351681232452,0.0781275033950806,-0.531328082084656,-0.844647645950317,0.0652751848101616,-0.562686324119568,-0.823171496391296,0.0759805515408516,-0.378206759691238,-0.925528883934021,0.0188674628734589,-0.334822446107864,-0.942163407802582,0.0149039989337325,-0.533614575862885,-0.844233572483063,0.0502515882253647,-0.147986561059952,-0.986146926879883,-0.0749294087290764,-0.268012374639511,-0.960196435451508,-0.0786904245615005,-0.282800376415253,-0.956609845161438,-0.0701543167233467,-0.16298508644104,-0.98406457901001,-0.0710832104086876,-0.282495617866516,-0.958145141601563,-0.0464123860001564,-0.306624323129654,-0.951215922832489,-0.0342027954757214, +-0.184889331459999,-0.981820404529572,-0.0429492555558681,-0.161214679479599,-0.985728859901428,-0.0484621040523052,-0.185014188289642,-0.981755793094635,-0.0438771210610867,-0.111012056469917,-0.992591798305511,-0.0493744537234306,-0.0902466028928757,-0.99428516626358,-0.0570332296192646,-0.161723300814629,-0.985310435295105,-0.0548553168773651,-0.011510300450027,-0.990767538547516,-0.135082319378853,0.00617237016558647,-0.990427732467651,-0.137894749641418,-0.0333252735435963,-0.990836143493652,-0.130893781781197,-0.051074180752039,-0.990436911582947,-0.128164917230606,-0.0310682542622089,-0.992972135543823,-0.114198140799999,-0.0800231322646141,-0.990596532821655,-0.110972195863724,-0.096044510602951,-0.989746689796448,-0.105720996856689,-0.0481659173965454,-0.992833018302917,-0.109374098479748,-0.0924213975667953,-0.9928839802742,-0.0750977769494057,-0.113519169390202,-0.991448640823364,-0.0643672943115234,-0.0653220042586327,-0.995637178421021,-0.0666321218013763,-0.0430038087069988,-0.996164739131927,-0.0762008354067802,-0.475707083940506,-0.878882229328156,-0.0356224738061428,-0.714125573635101,-0.691310584545135,-0.110065340995789,-0.731619417667389,-0.675363481044769,-0.0928297489881516,-0.484372556209564,-0.873869657516479,-0.0416568107903004,-0.73890495300293,-0.671704053878784,-0.0532272830605507,-0.760084569454193,-0.649209201335907,-0.0282673202455044,-0.505603551864624,-0.862706005573273,-0.0101701440289617,-0.486986249685287,-0.873400747776031,-0.00394327566027641,-0.505675494670868,-0.862599670886993,-0.0146321319043636,-0.305455297231674,-0.951981246471405,-0.0207075346261263,-0.281996548175812,-0.95918220281601,-0.021157106384635,-0.485160261392593,-0.873865127563477,-0.031292662024498,-0.895774841308594,-0.409186780452728,-0.17364813387394,-0.933929562568665,-0.133400991559029,-0.331632256507874,-0.949831783771515,-0.0949612334370613,-0.297996759414673,-0.904056310653687,-0.393663346767426,-0.166467323899269,-0.975296318531036,-0.0650918334722519,-0.211092755198479,-0.982723653316498,-0.0415830500423908,-0.180347099900246, +-0.933190822601318,-0.344202131032944,-0.103343218564987,-0.921655297279358,-0.376866847276688,-0.0923198312520981,-0.933949768543243,-0.343633025884628,-0.0982561334967613,-0.759204030036926,-0.649573981761932,-0.0407811924815178,-0.742389917373657,-0.669229090213776,-0.0314564183354378,-0.914733052253723,-0.384413510560989,-0.12445867061615,-0.45435106754303,-0.883358955383301,-0.115074753761292,-0.66864937543869,-0.710656762123108,-0.218803524971008,-0.673991739749908,-0.70840585231781,-0.209514439105988,-0.453510701656342,-0.882991135120392,-0.121056467294693,-0.692913472652435,-0.701861560344696,-0.165109932422638,-0.701672375202179,-0.696406662464142,-0.150577902793884,-0.469352602958679,-0.879656314849854,-0.0768969655036926,-0.464963912963867,-0.882460832595825,-0.0712139904499054,-0.4660265147686,-0.879484355449677,-0.0965750068426132,-0.268342524766922,-0.960710763931274,-0.0709020867943764,-0.260791540145874,-0.962906956672668,-0.0692688748240471,-0.457290530204773,-0.883072972297668,-0.10520226508379,-0.0729175359010696,-0.983758866786957,-0.16401681303978,-0.0651358067989349,-0.984356045722961,-0.163708999752998,-0.131157785654068,-0.978170871734619,-0.161181062459946,-0.139109551906586,-0.977111637592316,-0.160939618945122,-0.131421461701393,-0.980961918830872,-0.142976328730583,-0.24694187939167,-0.957275867462158,-0.150474786758423,-0.253732889890671,-0.95581316947937,-0.148461818695068,-0.139071330428123,-0.979875922203064,-0.143186509609222,-0.257070451974869,-0.959719181060791,-0.113375186920166,-0.266616702079773,-0.957722783088684,-0.108086258172989,-0.149059563875198,-0.983282148838043,-0.104582495987415,-0.138852372765541,-0.984556972980499,-0.10661968588829,-0.761986672878265,-0.500607311725616,-0.410814642906189,-0.63907527923584,-0.718919634819031,-0.273381590843201,-0.641941368579865,-0.718770146369934,-0.266984790563583,-0.756113171577454,-0.506624102592468,-0.414276361465454,-0.596984207630157,-0.72865217924118,-0.335672438144684,-0.599773049354553,-0.730386674404144,-0.326814591884613, +-0.699428498744965,-0.543733417987823,-0.463846683502197,-0.704102754592896,-0.532735824584961,-0.469501912593842,-0.721716403961182,-0.532377004623413,-0.442380130290985,-0.728306293487549,-0.346128702163696,-0.591409265995026,-0.730237901210785,-0.332521021366119,-0.596810162067413,-0.721139788627625,-0.52480149269104,-0.452261865139008,-0.672017991542816,-0.708966016769409,-0.213913604617119,-0.673579514026642,-0.70891547203064,-0.209116026759148,-0.802320420742035,-0.477797716856003,-0.357758730649948,-0.810994863510132,-0.470948219299316,-0.347124099731445,-0.822624206542969,-0.464370340108871,-0.32809990644455,-0.833838522434235,-0.236789092421532,-0.498642385005951,-0.849038422107697,-0.218669176101685,-0.480954825878143,-0.827115714550018,-0.461439847946167,-0.320862650871277,-0.886722147464752,-0.183364719152451,-0.424383342266083,-0.899059772491455,-0.168078899383545,-0.404278427362442,-0.859804689884186,-0.437054216861725,-0.264044582843781,-0.858599781990051,-0.439574301242828,-0.263782054185867,-0.424004167318344,-0.880984842777252,-0.209967628121376,-0.605123579502106,-0.72921347618103,-0.319488942623138,-0.609562933444977,-0.726468086242676,-0.317296922206879,-0.420879483222961,-0.881001949310303,-0.216093227267265,-0.639831006526947,-0.719371557235718,-0.270408689975739,-0.643685042858124,-0.717856585979462,-0.265238523483276,-0.438384503126144,-0.882831931114197,-0.168602615594864,-0.440569311380386,-0.882996261119843,-0.161914855241776,-0.43274849653244,-0.882042646408081,-0.186359241604805,-0.247548058629036,-0.957854270935059,-0.145722940564156,-0.244301542639732,-0.959235727787018,-0.142068892717361,-0.430529296398163,-0.882327616214752,-0.190111830830574,-0.379258245229721,-0.882992506027222,-0.276563793420792,-0.53005450963974,-0.759779214859009,-0.376533836126328,-0.539450764656067,-0.748276591300964,-0.386102259159088,-0.385337054729462,-0.877381563186646,-0.285861819982529,-0.571877777576447,-0.74313098192215,-0.34743657708168,-0.579865574836731,-0.734141826629639,-0.353258788585663,-0.406986832618713,-0.878510475158691,-0.250162124633789, +-0.405946493148804,-0.881148874759674,-0.242454513907433,-0.398509562015533,-0.876718878746033,-0.26935875415802,-0.228242829442024,-0.948236525058746,-0.220800146460533,-0.226365104317665,-0.949843943119049,-0.215767160058022,-0.393937706947327,-0.87918084859848,-0.268056124448776,-0.609247505664825,-0.612551808357239,-0.503585040569305,-0.620226860046387,-0.468183547258377,-0.629382848739624,-0.613422393798828,-0.449967324733734,-0.649031937122345,-0.607260763645172,-0.597430467605591,-0.523747265338898,-0.649322628974915,-0.42649057507515,-0.629671275615692,-0.647760987281799,-0.404422581195831,-0.64563775062561,-0.64460813999176,-0.567875683307648,-0.511856973171234,-0.642657399177551,-0.583275198936462,-0.496771067380905,-0.651885986328125,-0.564952433109283,-0.505839347839355,-0.561367750167847,-0.736828863620758,-0.376761853694916,-0.558041930198669,-0.745589911937714,-0.364259481430054,-0.647253811359406,-0.581299245357513,-0.493106156587601,-0.262625187635422,-0.919065475463867,-0.293847948312759,-0.420186817646027,-0.822387278079987,-0.383565485477448,-0.457429945468903,-0.779212057590485,-0.428469955921173,-0.333070248365402,-0.880773901939392,-0.336602956056595,-0.487042129039764,-0.776745319366455,-0.399320274591446,-0.497609585523605,-0.763632655143738,-0.411399900913239,-0.359268933534622,-0.878549039363861,-0.31476566195488,-0.350995570421219,-0.885301470756531,-0.305030316114426,-0.348928451538086,-0.875681161880493,-0.333813697099686,-0.205190569162369,-0.936302602291107,-0.285016655921936,-0.199778512120247,-0.93927276134491,-0.279025733470917,-0.338291853666306,-0.88220226764679,-0.327532798051834,-0.510694742202759,-0.7023646235466,-0.495857656002045,-0.532556891441345,-0.597306370735168,-0.599673509597778,-0.52105176448822,-0.555436193943024,-0.648070871829987,-0.517406702041626,-0.662355303764343,-0.54182630777359,-0.541890025138855,-0.544269740581512,-0.640410661697388,-0.539405345916748,-0.516612887382507,-0.664945900440216,-0.541841387748718,-0.636694610118866,-0.548660099506378,-0.535226702690125,-0.656778156757355,-0.531201362609863, +-0.550238251686096,-0.634004592895508,-0.543393135070801,-0.481735020875931,-0.764856517314911,-0.427698373794556,-0.473492622375488,-0.778050005435944,-0.412847310304642,-0.545708775520325,-0.653317153453827,-0.524765312671661,-0.455504238605499,-0.747094571590424,-0.484113335609436,-0.46051287651062,-0.702733635902405,-0.542303740978241,-0.461273998022079,-0.667634665966034,-0.58437180519104,-0.460806280374527,-0.737708032131195,-0.493400871753693,-0.458293676376343,-0.668841361999512,-0.585335910320282,-0.448516339063644,-0.636753439903259,-0.62719863653183,-0.460877805948257,-0.716873049736023,-0.523148834705353,-0.45176100730896,-0.740116596221924,-0.498136103153229,-0.463728308677673,-0.716120719909668,-0.521658182144165,-0.389520972967148,-0.823835909366608,-0.411786139011383,-0.365283399820328,-0.851924061775208,-0.375224620103836,-0.456702381372452,-0.738812506198883,-0.495559275150299,-0.584311902523041,-0.719980657100677,-0.374442845582962,-0.572041988372803,-0.72852486371994,-0.376854807138443,-0.561355590820313,-0.732424914836884,-0.385270893573761,-0.567524492740631,-0.739023506641388,-0.362987965345383,-0.528391778469086,-0.745576143264771,-0.406101554632187,-0.509194493293762,-0.713885188102722,-0.480717033147812,-0.523801803588867,-0.722238302230835,-0.45166739821434,-0.537577688694,-0.751486122608185,-0.382464200258255,-0.491850793361664,-0.737001955509186,-0.463584899902344,-0.498072177171707,-0.686608791351318,-0.52961540222168,-0.511360287666321,-0.730798900127411,-0.4521544277668,-0.493525683879852,-0.767402172088623,-0.409299820661545,-0.216374412178993,-0.904330253601074,-0.36792516708374,-0.132784247398376,-0.937880873680115,-0.32054328918457,-0.120288603007793,-0.945260524749756,-0.303336828947067,-0.193079978227615,-0.921700179576874,-0.336435526609421,-0.0846413597464561,-0.917696535587311,-0.388160943984985,-0.161450296640396,-0.907542288303375,-0.387686520814896,-0.209541872143745,-0.900679349899292,-0.380616456270218,-0.164143651723862,-0.908987760543823,-0.383142411708832,-0.23833467066288,-0.913029968738556,-0.331018030643463, +-0.341294944286346,-0.815118908882141,-0.468080282211304,-0.318763256072998,-0.85096687078476,-0.417427152395248,-0.19922411441803,-0.924051642417908,-0.326248794794083,-0.0876913517713547,-0.939116537570953,-0.332220464944839,-0.0523653104901314,-0.941619992256165,-0.332580298185349,-0.0137902610003948,-0.944256722927094,-0.328921139240265,-0.0566375330090523,-0.943580150604248,-0.32626473903656,-0.0122364256531,-0.929445505142212,-0.368756473064423,0.0312009360641241,-0.935274541378021,-0.352544873952866,-0.0523185953497887,-0.932998657226563,-0.356056571006775,-0.0487747751176357,-0.929386556148529,-0.365871220827103,-0.053421963006258,-0.934684932231903,-0.351439923048019,-0.159887731075287,-0.906381845474243,-0.391034305095673,-0.0969259068369865,-0.928081274032593,-0.359542161226273,-0.0542816631495953,-0.939489603042603,-0.338249623775482,-0.710087716579437,-0.647689342498779,-0.276177585124969,-0.716919004917145,-0.642027854919434,-0.271712243556976,-0.748566806316376,-0.566500961780548,-0.344564199447632,-0.720623016357422,-0.613846480846405,-0.322327733039856,-0.620310604572296,-0.62401932477951,-0.475199580192566,-0.515744090080261,-0.387423753738403,-0.764140784740448,-0.620105147361755,-0.57510906457901,-0.533590912818909,-0.722674369812012,-0.612495183944702,-0.320298910140991,-0.575468122959137,-0.597094297409058,-0.558851361274719,-0.580782294273376,-0.677785515785217,-0.450886696577072,-0.582073390483856,-0.7233025431633,-0.371515780687332,-0.581329703330994,-0.684452533721924,-0.439977943897247,-0.973363041877747,-0.170033276081085,-0.153795272111893,-0.998129367828369,-0.0484101809561253,-0.0373416915535927,-0.901427865028381,-0.422175377607346,-0.0958937257528305,-0.841227948665619,-0.428050547838211,-0.330315470695496,-0.970308363437653,-0.0112487496808171,-0.241609886288643,-0.96879780292511,0.0971088856458664,-0.228036612272263,-0.969398856163025,0.164601132273674,-0.182132869958878,-0.974531888961792,0.0240092687308788,-0.222960442304611,-0.969355881214142,0.164674118161201,-0.18229553103447, +-0.949730813503265,0.257728338241577,-0.177728354930878,-0.958861768245697,0.0868296325206757,-0.270267814397812,-0.970340132713318,0.026379244402051,-0.240300059318542,-0.989743411540985,0.0832116454839706,-0.116120338439941,-0.999147474765778,-0.0380573011934757,-0.0160004515200853,-0.980242967605591,-0.162607938051224,-0.112615831196308,-0.956067502498627,0.0333543121814728,-0.291242867708206,-0.190559402108192,-0.930425882339478,-0.313041538000107,-0.197170078754425,-0.927859783172607,-0.316544234752655,-0.107584871351719,-0.945630192756653,-0.306934833526611,-0.10431370139122,-0.947271704673767,-0.302976995706558,-0.106811746954918,-0.942845463752747,-0.315648287534714,-0.0564978271722794,-0.946426689624786,-0.317937970161438,-0.0546146519482136,-0.947765827178955,-0.314256548881531,-0.103354088962078,-0.944303512573242,-0.312424063682556,-0.0545668601989746,-0.942035436630249,-0.331046372652054,-0.0524392612278461,-0.943445861339569,-0.327352970838547,-0.0886124074459076,-0.941314339637756,-0.325691848993301,-0.101605400443077,-0.938739478588104,-0.329309314489365,-0.116893544793129,-0.956953167915344,-0.265662640333176,-0.0600956082344055,-0.961289823055267,-0.268905848264694,-0.0574489682912827,-0.962391912937164,-0.265521258115768,-0.113894656300545,-0.95811665058136,-0.262755572795868,-0.058105506002903,-0.952958643436432,-0.297478765249252,-0.0562802106142044,-0.954128503799438,-0.29406014084816,-0.108889162540436,-0.950218796730042,-0.291937321424484,-0.11162206530571,-0.949004232883453,-0.294841408729553,-0.109950534999371,-0.953846335411072,-0.279442667961121,-0.20421327650547,-0.935317873954773,-0.288924962282181,-0.20939639210701,-0.933144271373749,-0.292224228382111,-0.112432889640331,-0.952319264411926,-0.283631950616837,-0.0243877936154604,-0.926153719425201,-0.376356989145279,0.0100535172969103,-0.923247277736664,-0.384074687957764,0.0318923704326153,-0.924066424369812,-0.380899161100388,0.00577007932588458,-0.927794635295868,-0.373046725988388,0.0279857330024242,-0.908464670181274,-0.417023628950119, +0.0481312945485115,-0.911227643489838,-0.4090815782547,0.041298970580101,-0.915646314620972,-0.39985778927803,0.00452394178137183,-0.912898123264313,-0.408162444829941,0.0416452325880527,-0.929295420646667,-0.366982072591782,0.0323990918695927,-0.928651392459869,-0.36953604221344,-0.0122281666845083,-0.929362833499908,-0.368964970111847,0.0060641816817224,-0.931127071380615,-0.36464449763298,-0.0260411780327559,-0.929057478904724,-0.369017779827118,-2.15188811125699e-05,-0.926389217376709,-0.376567482948303,0.000446583522716537,-0.928435742855072,-0.371492922306061,-0.024562980979681,-0.930937826633453,-0.364350706338882,-0.00127414998132735,-0.923069298267365,-0.384631603956223,0.0104271341115236,-0.924516916275024,-0.380998432636261,-0.0242172796279192,-0.927375197410583,-0.373348116874695,-0.0254690982401371,-0.925555408000946,-0.377754718065262,-0.0229362528771162,-0.936184167861938,-0.350761026144028,-0.0521671921014786,-0.936777770519257,-0.346014410257339,-0.0544926300644875,-0.935239672660828,-0.349796265363693,-0.0239246878772974,-0.934594929218292,-0.354908406734467,0.0414771363139153,-0.907533824443817,-0.417925983667374,0.00711645744740963,-0.912920296192169,-0.408075869083405,-0.00484866229817271,-0.911315739154816,-0.411679863929749,0.0207652766257524,-0.907056748867035,-0.420495957136154,-0.00315254530869424,-0.91699481010437,-0.398886620998383,-0.00395349552854896,-0.914767801761627,-0.403960675001144,0.0235052928328514,-0.910106837749481,-0.413706481456757,0.0233813636004925,-0.912699341773987,-0.407962381839752,0.0189720392227173,-0.90083122253418,-0.433754682540894,0.0489900261163712,-0.882928848266602,-0.466943860054016,0.0390997901558876,-0.870280683040619,-0.49100199341774,0.0126393008977175,-0.888459265232086,-0.458781331777573,0.031938474625349,-0.882653892040253,-0.46893721818924,0.0654685720801353,-0.877835392951965,-0.474467009305954,0.0668875873088837,-0.878499269485474,-0.473038196563721,0.043472558259964,-0.882171869277954,-0.468916714191437,0.0473134778439999,-0.830862522125244,-0.554462730884552, +-0.00487091671675444,-0.845256686210632,-0.534338235855103,0.0180506408214569,-0.850462734699249,-0.525725543498993,0.0308586601167917,-0.841904401779175,-0.538743793964386,0.0370878353714943,-0.909461319446564,-0.414131313562393,0.0473311021924019,-0.907039046287537,-0.418377727270126,0.028310488909483,-0.909808933734894,-0.414060711860657,0.052857019007206,-0.908826053142548,-0.413813441991806,-0.130515322089195,-0.971770823001862,-0.196537956595421,-0.0670438855886459,-0.977583050727844,-0.199590757489204,-0.0614596456289291,-0.978255212306976,-0.198089852929115,-0.124556012451649,-0.972769677639008,-0.195460885763168,-0.0629576742649078,-0.970251381397247,-0.233770415186882,-0.0589188076555729,-0.971064507961273,-0.231435328722,-0.118874609470367,-0.966166138648987,-0.228892594575882,-0.123267635703087,-0.965161442756653,-0.230799823999405,-0.119548976421356,-0.969155728816986,-0.21551176905632,-0.227434679865837,-0.947449803352356,-0.224971890449524,-0.230812922120094,-0.946453809738159,-0.225722581148148,-0.123754352331161,-0.968071579933167,-0.217996537685394,-0.0258872210979462,-0.945597887039185,-0.324306398630142,0.00438470393419266,-0.942880034446716,-0.333103656768799,0.00671206647530198,-0.944672286510468,-0.327946990728378,-0.0233073625713587,-0.947340428829193,-0.319378852844238,0.00199890253134072,-0.933264672756195,-0.359184175729752,0.00318867526948452,-0.935258448123932,-0.353951334953308,-0.0242580510675907,-0.937904834747314,-0.346043527126312,-0.0260377004742622,-0.936039984226227,-0.350928992033005,-0.0223318338394165,-0.946747124195099,-0.321202993392944,-0.0564753040671349,-0.947315990924835,-0.31528240442276,-0.0585206784307957,-0.945836782455444,-0.319324821233749,-0.0238418187946081,-0.945221066474915,-0.325559109449387,0.0619638189673424,-0.803806006908417,-0.591655611991882,0.0735939741134644,-0.804842293262482,-0.588908135890961,0.0257656369358301,-0.813342928886414,-0.58121383190155,0.0526624917984009,-0.804745674133301,-0.591279208660126,0.0347130075097084,-0.826362669467926,-0.56206738948822, +-0.0168643482029438,-0.851976752281189,-0.523307800292969,0.00534408399835229,-0.863489031791687,-0.504339277744293,0.0697247833013535,-0.836462080478668,-0.5435711145401,0.0218522325158119,-0.889935433864594,-0.455562829971313,0.026326498016715,-0.913725972175598,-0.405477255582809,0.0693123117089272,-0.88392847776413,-0.46245676279068,0.0789135247468948,-0.852480411529541,-0.516768574714661,0.0286379586905241,-0.852816462516785,-0.521424889564514,0.0386186614632607,-0.867621600627899,-0.495723068714142,0.0722811594605446,-0.840987861156464,-0.536204218864441,0.0552213601768017,-0.827116310596466,-0.559311389923096,0.0550747476518154,-0.823733747005463,-0.564295768737793,0.0938417166471481,-0.792034447193146,-0.603220522403717,0.0716301873326302,-0.796952188014984,-0.599780261516571,0.0470830462872982,-0.817818820476532,-0.573546528816223,0.0675312206149101,-0.793470621109009,-0.604850232601166,0.0470109172165394,-0.777764022350311,-0.626796066761017,0.0578231513500214,-0.797609567642212,-0.600396156311035,0.0501566007733345,-0.821362018585205,-0.568197846412659,-0.115732446312904,-0.715481400489807,-0.68897932767868,-0.334155857563019,-0.732320785522461,-0.59333473443985,-0.230990350246429,-0.74824595451355,-0.621909558773041,-0.0797192677855492,-0.778883159160614,-0.622081875801086,-0.190948680043221,-0.801006138324738,-0.567386746406555,-0.153703257441521,-0.813839912414551,-0.560392618179321,-0.0700763463973999,-0.822107672691345,-0.565002918243408,-0.0658762529492378,-0.798156797885895,-0.598837196826935,-0.0816840007901192,-0.804642200469971,-0.588114440441132,-0.0446017272770405,-0.808500289916992,-0.586803197860718,0.00804193504154682,-0.786146581172943,-0.617987751960754,-0.0697701498866081,-0.792834460735321,-0.605430126190186,0.0280706398189068,-0.922833383083344,-0.384175181388855,0.0613776408135891,-0.906217277050018,-0.418333619832993,0.0563276223838329,-0.89470112323761,-0.443099439144135,0.0242998488247395,-0.912135481834412,-0.409167855978012,0.0552645586431026,-0.893332362174988,-0.445985853672028, +0.0484167113900185,-0.882107555866241,-0.468553215265274,0.0181887224316597,-0.899184048175812,-0.437192291021347,0.0230975821614265,-0.909885108470917,-0.414216905832291,0.0281788595020771,-0.919208765029907,-0.392761021852493,-0.000827901938464493,-0.924073874950409,-0.382213026285172,-0.0023938724771142,-0.921690046787262,-0.387919932603836,0.0267307013273239,-0.916600704193115,-0.398909270763397,0.0494318753480911,-0.885656654834747,-0.461702227592468,0.0549958609044552,-0.898624777793884,-0.435257405042648,0.0933201089501381,-0.873402953147888,-0.477973490953445,0.088692918419838,-0.858152866363525,-0.50567501783371,0.0769628882408142,-0.859914243221283,-0.504603028297424,0.114738255739212,-0.82372784614563,-0.555254578590393,0.109664931893349,-0.805710256099701,-0.582069218158722,0.0740445330739021,-0.845102787017822,-0.529451429843903,0.104658737778664,-0.803122282028198,-0.586550295352936,0.092754103243351,-0.791437923908234,-0.60417103767395,0.0577708296477795,-0.826507389545441,-0.55995374917984,0.0663571134209633,-0.837959349155426,-0.541683375835419,-0.332450240850449,-0.830058753490448,-0.44774928689003,-0.146840170025826,-0.823274612426758,-0.548321843147278,-0.175028935074806,-0.819896519184113,-0.545100510120392,-0.395471215248108,-0.82966947555542,-0.39401912689209,-0.214989945292473,-0.770262777805328,-0.600395381450653,-0.217089354991913,-0.827034473419189,-0.518542230129242,-0.341728061437607,-0.906023621559143,-0.249686002731323,-0.367719978094101,-0.856388330459595,-0.362465023994446,-0.423522144556046,-0.441356301307678,-0.791096448898315,-0.422874420881271,-0.454639613628387,-0.783887803554535,-0.419916331768036,-0.456166654825211,-0.784590482711792,-0.420671343803406,-0.44312185049057,-0.791630387306213,-0.669530272483826,-0.742696523666382,0.0114548671990633,-0.65617448091507,-0.754600644111633,-0.00359422108158469,-0.592364370822906,-0.793363094329834,-0.140284344553947,-0.627158164978027,-0.7712721824646,-0.108681984245777,-0.629588901996613,-0.769194722175598,-0.109349422156811,-0.583838939666748,-0.80029159784317,-0.13662114739418, +-0.48575422167778,-0.825809895992279,-0.286497950553894,-0.552326679229736,-0.789449393749237,-0.267777442932129,-0.781363546848297,-0.621306896209717,-0.0587278418242931,-0.807864129543304,-0.589365303516388,-0.00202694581821561,-0.748078882694244,-0.655404150485992,-0.104035034775734,-0.703472673892975,-0.689356982707977,-0.172954529523849,-0.744754016399384,-0.660206079483032,-0.0973109975457191,-0.670079231262207,-0.728774130344391,-0.141004383563995,-0.589214444160461,-0.788903295993805,-0.174522131681442,-0.679760634899139,-0.722369730472565,-0.126914709806442,-0.587515711784363,-0.790936648845673,-0.171010792255402,-0.516697764396667,-0.828093826770782,-0.217449530959129,-0.588667869567871,-0.791739106178284,-0.163154557347298,-0.666348040103912,-0.738539636135101,-0.102662108838558,-0.795890152454376,-0.605078279972076,0.0209532920271158,-0.814758241176605,-0.57894492149353,0.0314931906759739,-0.804969906806946,-0.591481685638428,0.0466138534247875,-0.777427852153778,-0.628392219543457,0.0270030535757542,-0.861191630363464,-0.506845653057098,-0.0381640493869781,-0.806090712547302,-0.591791331768036,0.000943551538512111,-0.729411065578461,-0.683905959129333,0.0152416191995144,-0.806211590766907,-0.59161239862442,-0.00420905370265245,-0.743648588657379,-0.668559789657593,-0.00380980083718896,-0.662035763263702,-0.744069278240204,-0.0898307859897614,-0.724817454814911,-0.687104284763336,-0.0502729825675488,-0.784543871879578,-0.61976546049118,0.0195366702973843,-0.862727105617523,-0.495998650789261,-0.0984242185950279,-0.876061856746674,-0.46310955286026,-0.134332358837128,-0.834957718849182,-0.534155011177063,-0.132378876209259,-0.805318415164948,-0.581305682659149,-0.116387210786343,-0.844783186912537,-0.503135681152344,-0.182197242975235,-0.815793335437775,-0.544650554656982,-0.194517314434052,-0.777079224586487,-0.593019247055054,-0.210893958806992,-0.824717342853546,-0.535766363143921,-0.181095644831657,-0.759655654430389,-0.632426679134369,-0.151524752378464,-0.678414463996887,-0.717143952846527,-0.159556716680527, +-0.764825224876404,-0.628888249397278,-0.13979284465313,-0.817188918590546,-0.555443048477173,-0.15390020608902,-0.870922744274139,-0.487584799528122,-0.0612764656543732,-0.865292370319366,-0.496876835823059,-0.0662005543708801,-0.867510497570038,-0.492793709039688,-0.0676758959889412,-0.870741069316864,-0.487323611974716,-0.0657718703150749,-0.889142632484436,-0.436020582914352,-0.138965800404549,-0.882509708404541,-0.439637780189514,-0.167018741369247,-0.885397672653198,-0.427477061748505,-0.182576924562454,-0.898099780082703,-0.415988057851791,-0.142725795507431,-0.862653255462646,-0.496171355247498,-0.0982005819678307,-0.846227884292603,-0.527713596820831,-0.0735984966158867,-0.879564464092255,-0.470286548137665,-0.0720901936292648,-0.8882737159729,-0.445525079965591,-0.111702419817448,-0.886754930019379,-0.418634474277496,-0.195986747741699,-0.884038865566254,-0.402782618999481,-0.237153276801109,-0.864498615264893,-0.453493684530258,-0.216761231422424,-0.859360694885254,-0.477115333080292,-0.18401138484478,-0.859921932220459,-0.391491293907166,-0.327519237995148,-0.849342942237854,-0.436600804328918,-0.296641409397125,-0.845635890960693,-0.467442721128464,-0.257676661014557,-0.864328682422638,-0.415531158447266,-0.283319294452667,-0.844052910804749,-0.486424833536148,-0.225755825638771,-0.816108822822571,-0.543498992919922,-0.196405783295631,-0.850121021270752,-0.479077070951462,-0.218585193157196,-0.864153325557709,-0.432734698057175,-0.256865113973618,-0.880637586116791,-0.461335957050323,-0.107919424772263,-0.880682706832886,-0.461224406957626,-0.108027726411819,-0.876102328300476,-0.468283951282501,-0.114695340394974,-0.877736806869507,-0.465408742427826,-0.1138980910182,-0.88866925239563,-0.427634954452515,-0.165516003966331,-0.882217168807983,-0.440481573343277,-0.166339844465256,-0.882032811641693,-0.44297331571579,-0.160601943731308,-0.887523829936981,-0.432333648204803,-0.159339502453804,-0.889733374118805,-0.38922318816185,-0.238494917750359,-0.883969962596893,-0.406677573919296,-0.230674028396606, +-0.88820868730545,-0.406995475292206,-0.213166654109955,-0.895837187767029,-0.387926876544952,-0.216768518090248,-0.88490104675293,-0.410155117511749,-0.220732688903809,-0.893815159797668,-0.395804107189178,-0.210793167352676,-0.887887179851532,-0.407116174697876,-0.214272752404213,-0.869992196559906,-0.435990542173386,-0.230273678898811,-0.872089087963104,-0.335712403059006,-0.356030613183975,-0.837876498699188,-0.392355859279633,-0.379499465227127,-0.838905572891235,-0.390083521604538,-0.379568576812744,-0.85637629032135,-0.362815976142883,-0.367401957511902,-0.835083186626434,-0.379058599472046,-0.398686230182648,-0.831118822097778,-0.35771507024765,-0.425771594047546,-0.851582527160645,-0.355006575584412,-0.38571697473526,-0.85832154750824,-0.369299292564392,-0.356233268976212,-0.874885499477386,-0.415376394987106,-0.249073699116707,-0.893820881843567,-0.396575748920441,-0.209313049912453,-0.884683430194855,-0.399886012077332,-0.239637926220894,-0.883159279823303,-0.388209313154221,-0.263293117284775,-0.882716000080109,-0.376263082027435,-0.281493842601776,-0.883553922176361,-0.381650060415268,-0.271432936191559,-0.890363037586212,-0.376585125923157,-0.255807191133499,-0.883052885532379,-0.382321536540985,-0.272117376327515,-0.88119649887085,-0.446583807468414,-0.155098870396614,-0.878279209136963,-0.455327033996582,-0.145955324172974,-0.872887253761292,-0.459279626607895,-0.164711952209473,-0.878599107265472,-0.44549623131752,-0.172037661075592,-0.809894382953644,-0.496945917606354,-0.311634510755539,-0.822125017642975,-0.478732019662857,-0.308100819587708,-0.87299507856369,-0.407704859972,-0.26768696308136,-0.853529095649719,-0.441155701875687,-0.277253925800323,-0.862599015235901,-0.354423999786377,-0.360979795455933,-0.856150209903717,-0.248832583427429,-0.452867746353149,-0.867630541324615,-0.34607920050621,-0.356996238231659,-0.853863000869751,-0.450320422649384,-0.261016219854355,-0.874800086021423,-0.42268580198288,-0.236773476004601,-0.864682674407959,-0.436226785182953,-0.249058395624161,-0.840913236141205,-0.471437364816666,-0.265729039907455, +-0.853920042514801,-0.455275982618332,-0.252079963684082,-0.887048006057739,-0.267910093069077,-0.375992149114609,-0.825356066226959,-0.380625039339066,-0.417027503252029,-0.828058004379272,-0.386141985654831,-0.406465709209442,-0.879830837249756,-0.303154408931732,-0.366053432226181,-0.83210301399231,-0.3920838534832,-0.39226883649826,-0.834548711776733,-0.385234713554382,-0.393856346607208,-0.868823409080505,-0.326882839202881,-0.371878325939178,-0.879941463470459,-0.303369343280792,-0.365609377622604,-0.877012312412262,-0.350630909204483,-0.32849246263504,-0.890982031822205,-0.359987854957581,-0.276694416999817,-0.905632376670837,-0.295833230018616,-0.303829938173294,-0.88170325756073,-0.306843549013138,-0.358394265174866,-0.946167171001434,-0.274385869503021,-0.171697065234184,-0.925949692726135,-0.360393643379211,-0.112844057381153,-0.904640257358551,-0.391761273145676,-0.167777344584465,-0.930670380592346,-0.304981052875519,-0.202087119221687,-0.90053379535675,-0.390106737613678,-0.191978290677071,-0.859379470348358,-0.415251612663269,-0.298383921384811,-0.889520585536957,-0.271309524774551,-0.367619752883911,-0.915883839130402,-0.287325918674469,-0.280358135700226,-0.960911870002747,-0.186523243784904,-0.204590857028961,-0.958595454692841,-0.192023545503616,-0.21029007434845,-0.985770285129547,-0.060153529047966,-0.156967267394066,-0.979798018932343,-0.100804269313812,-0.172726914286613,-0.981729865074158,-0.0469008758664131,-0.184409499168396,-0.987574398517609,0.0577111206948757,-0.146171897649765,-0.985661089420319,-0.031822495162487,-0.165709540247917,-0.977717518806458,-0.0952979922294617,-0.187047585844994,-0.971662998199463,-0.161998972296715,-0.17212575674057,-0.947563290596008,-0.274462223052979,-0.163689792156219,-0.933688580989838,-0.309541046619415,-0.180027693510056,-0.963956236839294,-0.19098000228405,-0.185243681073189,-0.892665982246399,-0.292130261659622,-0.343230813741684,-0.924415707588196,-0.207937061786652,-0.319715142250061,-0.89923095703125,-0.277594536542892,-0.338119864463806,-0.878136873245239,-0.326962202787399,-0.349243998527527, +-0.902182102203369,-0.285567909479141,-0.323293149471283,-0.874668955802917,-0.294561415910721,-0.384951651096344,-0.843190252780914,-0.299449592828751,-0.446497589349747,-0.869359791278839,-0.3052818775177,-0.388608306646347,-0.871859312057495,-0.398352384567261,-0.284915298223495,-0.818760812282562,-0.463517516851425,-0.338795036077499,-0.836173355579376,-0.42553722858429,-0.346023321151733,-0.887253642082214,-0.355865985155106,-0.293496519327164,-0.755065143108368,-0.568205416202545,-0.327138155698776,-0.758865058422089,-0.563433945178986,-0.326597630977631,-0.790760576725006,-0.52641624212265,-0.312383860349655,-0.781058847904205,-0.539255559444427,-0.31488174200058,-0.789477825164795,-0.52110344171524,-0.324308484792709,-0.822474598884583,-0.480580627918243,-0.30426612496376,-0.81015944480896,-0.49919980764389,-0.307312905788422,-0.780127644538879,-0.53388649225235,-0.326138228178024,-0.810313880443573,-0.500588297843933,-0.304635524749756,-0.811563909053802,-0.500014245510101,-0.302241325378418,-0.782722055912018,-0.533909559249878,-0.319823145866394,-0.780471682548523,-0.535799086093903,-0.322154223918915,-0.667134582996368,-0.71085387468338,-0.222751751542091,-0.652153134346008,-0.711553812026978,-0.261509835720062,-0.620439291000366,-0.729490697383881,-0.28792080283165,-0.657624006271362,-0.705579519271851,-0.263984829187393,-0.836132705211639,-0.476151019334793,-0.27232751250267,-0.834165632724762,-0.475466966629028,-0.279461681842804,-0.9116490483284,-0.331115782260895,-0.24343030154705,-0.909005045890808,-0.338644593954086,-0.242960512638092,-0.719691872596741,-0.655233263969421,-0.22959315776825,-0.698447287082672,-0.674580097198486,-0.238983288407326,-0.759970188140869,-0.600246608257294,-0.249297797679901,-0.771344065666199,-0.589302241802216,-0.240314900875092,-0.896729230880737,-0.300988852977753,-0.324472397565842,-0.842226505279541,-0.389256179332733,-0.373007208108902,-0.84896057844162,-0.392033904790878,-0.354366272687912,-0.912641108036041,-0.27951979637146,-0.298253148794174,-0.852565884590149,-0.398966401815414,-0.33757546544075, +-0.829335331916809,-0.465429037809372,-0.30915841460228,-0.908787727355957,-0.338032752275467,-0.24462004005909,-0.918259739875793,-0.294418096542358,-0.264796227216721,-0.902546584606171,-0.322677135467529,-0.285112142562866,-0.957674980163574,-0.18896809220314,-0.217139780521393,-0.956695735454559,-0.173529878258705,-0.233710527420044,-0.912765741348267,-0.279821574687958,-0.297587871551514,-0.666329681873322,-0.712288677692413,-0.220566511154175,-0.637270927429199,-0.734745383262634,-0.232454180717468,-0.648026347160339,-0.716586589813232,-0.25800296664238,-0.678135871887207,-0.693011343479156,-0.244677618145943,-0.816446959972382,-0.513323247432709,-0.264411807060242,-0.771829783916473,-0.565390110015869,-0.290883213281631,-0.760300815105438,-0.587814271450043,-0.276436567306519,-0.810589790344238,-0.527736246585846,-0.253847748041153,-0.762044489383698,-0.589832425117493,-0.267181932926178,-0.716265738010406,-0.654114603996277,-0.243099898099899,-0.771888852119446,-0.589781105518341,-0.237373307347298,-0.812067210674286,-0.530825734138489,-0.242426991462708,-0.765678465366364,-0.584363281726837,-0.268804937601089,-0.841240465641022,-0.485328137874603,-0.238266855478287,-0.866646766662598,-0.432982951402664,-0.247889384627342,-0.804272592067719,-0.515916109085083,-0.294917583465576,0.11185435205698,-0.816634058952332,-0.566213250160217,0.126997262239456,-0.79005491733551,-0.599737405776978,0.0852761566638947,-0.800449669361115,-0.59330290555954,0.0702595338225365,-0.830225169658661,-0.5529825091362,-0.771194517612457,-0.558492183685303,-0.305524975061417,-0.771160423755646,-0.564271152019501,-0.294804394245148,-0.815240919589996,-0.510144531726837,-0.274107754230499,-0.80960738658905,-0.513895809650421,-0.28363224864006,-0.807794213294983,-0.493185937404633,-0.322856545448303,-0.855258285999298,-0.418199360370636,-0.306011110544205,-0.841993272304535,-0.442559003829956,-0.308527022600174,-0.804645657539368,-0.498778253793716,-0.322126746177673,-0.84299224615097,-0.445904791355133,-0.300887286663055,-0.822440147399902,-0.480395406484604,-0.304651379585266, +-0.789152324199677,-0.519825100898743,-0.327140092849731,-0.804136335849762,-0.497390687465668,-0.325526177883148,-0.712574899196625,-0.632075667381287,-0.304495424032211,-0.710563242435455,-0.63533890247345,-0.302397757768631,-0.73496675491333,-0.608575403690338,-0.299098551273346,-0.734009385108948,-0.608706176280975,-0.301176249980927,-0.733251094818115,-0.603832185268402,-0.312617272138596,-0.761422753334045,-0.572206139564514,-0.304656445980072,-0.75698721408844,-0.577060759067535,-0.306547671556473,-0.73269122838974,-0.603838205337524,-0.31391566991806,-0.756333112716675,-0.573877096176147,-0.314046919345856,-0.759656548500061,-0.567051827907562,-0.31839308142662,-0.738005220890045,-0.593766808509827,-0.320607751607895,-0.732410430908203,-0.602848887443542,-0.31646203994751,-0.745680630207062,-0.614370286464691,-0.257894456386566,-0.718862891197205,-0.642463326454163,-0.265475451946259,-0.702794075012207,-0.663822412490845,-0.255774050951004,-0.729789435863495,-0.634987890720367,-0.25337278842926,-0.703026533126831,-0.663904070854187,-0.254921644926071,-0.662185907363892,-0.712818503379822,-0.231083571910858,-0.679956436157227,-0.693125784397125,-0.239240363240242,-0.730497241020203,-0.635463416576385,-0.2501200735569,-0.681968808174133,-0.693226873874664,-0.233141764998436,-0.717493236064911,-0.654524803161621,-0.238329380750656,-0.765634775161743,-0.594083547592163,-0.246714621782303,-0.728534877300262,-0.634141325950623,-0.25903993844986,0.880714893341064,-0.375650137662888,-0.288493126630783,0.895596861839294,-0.37393581867218,-0.240994319319725,0.906146943569183,-0.340965300798416,-0.250281006097794,0.893242835998535,-0.340401470661163,-0.2936732172966,-0.663882553577423,-0.683658182621002,-0.303102940320969,-0.663940012454987,-0.687190294265747,-0.294878214597702,-0.700116276741028,-0.648053288459778,-0.299773573875427,-0.700618267059326,-0.644889295101166,-0.305371642112732,-0.70067024230957,-0.649005651473999,-0.296400099992752,-0.711194217205048,-0.63667893409729,-0.298065185546875,-0.713000953197479,-0.633285343647003,-0.300963968038559, +-0.701407551765442,-0.646702289581299,-0.299672812223434,-0.712251484394073,-0.631170153617859,-0.307119309902191,-0.719606995582581,-0.624093115329742,-0.30442351102829,-0.705750465393066,-0.637741565704346,-0.308548271656036,-0.699862778186798,-0.643184959888458,-0.310653120279312,-0.720188438892365,-0.634925782680511,-0.279639065265656,-0.718104362487793,-0.641902029514313,-0.268864214420319,-0.745266437530518,-0.613877058029175,-0.260255485773087,-0.746988713741302,-0.608676731586456,-0.267433434724808,-0.741999447345734,-0.610039234161377,-0.278008908033371,-0.776006579399109,-0.572697758674622,-0.264255702495575,-0.775470495223999,-0.569473266601563,-0.272663921117783,-0.743797481060028,-0.602500855922699,-0.289409846067429,-0.773681044578552,-0.564663767814636,-0.287354201078415,-0.76260769367218,-0.576739549636841,-0.292918086051941,-0.735149621963501,-0.609099328517914,-0.297578811645508,-0.743440330028534,-0.601835370063782,-0.291703134775162,-0.710256516933441,-0.652970433235168,-0.262992978096008,-0.685330867767334,-0.681052148342133,-0.257855743169785,-0.678977489471436,-0.689771771430969,-0.251405000686646,-0.695622026920319,-0.67010235786438,-0.258984237909317,-0.678301393985748,-0.689761519432068,-0.253251433372498,-0.658018410205841,-0.713596224784851,-0.240400210022926,-0.662651479244232,-0.704817533493042,-0.253229707479477,-0.694333672523499,-0.669845998287201,-0.263072729110718,-0.667361319065094,-0.703997313976288,-0.242933422327042,-0.65829610824585,-0.713225603103638,-0.240739434957504,-0.703264653682709,-0.663987457752228,-0.254046142101288,-0.695861876010895,-0.670149028301239,-0.258218318223953,-0.67606383562088,-0.684658944606781,-0.272359907627106,-0.6833575963974,-0.68060040473938,-0.264207631349564,-0.709613978862762,-0.65265417098999,-0.265500754117966,-0.710542023181915,-0.649559736251831,-0.270559132099152,-0.708827435970306,-0.652264177799225,-0.268542557954788,-0.719320118427277,-0.642800986766815,-0.263411492109299,-0.722112774848938,-0.637552261352539,-0.268477827310562,-0.709464073181152,-0.648463368415833,-0.275963723659515, +-0.721142470836639,-0.636222004890442,-0.274180680513382,-0.713474690914154,-0.641692101955414,-0.281398624181747,-0.701525270938873,-0.650489687919617,-0.291076570749283,-0.708084762096405,-0.647063791751862,-0.282709330320358,-0.0279104001820087,-0.96717244386673,-0.252583861351013,0.00654748827219009,-0.965152025222778,-0.261608332395554,0.0129324141889811,-0.966105937957764,-0.257822036743164,-0.0220890119671822,-0.968311488628387,-0.248766884207726,0.00665429187938571,-0.95508599281311,-0.296254396438599,0.0109188444912434,-0.956462383270264,-0.291651606559753,-0.0219617206603289,-0.958954513072968,-0.282708525657654,-0.0259974263608456,-0.957509994506836,-0.287226140499115,-0.0197674054652452,-0.965563893318176,-0.259414285421371,-0.0596168786287308,-0.965532600879669,-0.253362715244293,-0.0638680681586266,-0.964474678039551,-0.256338477134705,-0.0234928727149963,-0.964622318744659,-0.262586832046509,0.0356390886008739,-0.934945046901703,-0.352998048067093,0.00573949189856648,-0.945845425128937,-0.324566662311554,0.00579355843365192,-0.953454852104187,-0.301480531692505,0.0360291674733162,-0.943308591842651,-0.329955548048019,0.00833524949848652,-0.958187937736511,-0.286018282175064,0.00632469262927771,-0.964798867702484,-0.262912780046463,0.0372167639434338,-0.955883204936981,-0.291379928588867,0.039761133491993,-0.948353052139282,-0.314714938402176,0.0342295803129673,-0.952268064022064,-0.303338259458542,0.0685406178236008,-0.939416408538818,-0.335855603218079,0.073494479060173,-0.929642796516418,-0.361058205366135,0.036661434918642,-0.944180369377136,-0.327382624149323,-0.0395606085658073,-0.983380615711212,-0.177193582057953,-0.00274967262521386,-0.98269921541214,-0.185188174247742,0.0110923852771521,-0.982698380947113,-0.184880614280701,-0.0272746086120605,-0.983910143375397,-0.176569819450378,0.00328705436550081,-0.973474323749542,-0.228772774338722,0.012567549943924,-0.974012017250061,-0.226147308945656,-0.0240262094885111,-0.9758420586586,-0.217152044177055,-0.0324701108038425,-0.97497946023941,-0.219911217689514, +-0.0218202266842127,-0.980154573917389,-0.197030156850815,-0.0665818229317665,-0.979374170303345,-0.190769836306572,-0.0747590512037277,-0.978491604328156,-0.192263901233673,-0.0299257952719927,-0.979608714580536,-0.198673591017723,0.0693321153521538,-0.925507485866547,-0.372329115867615,0.0645564571022987,-0.935778200626373,-0.346628934144974,0.106621034443378,-0.915827333927155,-0.38715934753418,0.114601738750935,-0.90228146314621,-0.415637582540512,0.0948256626725197,-0.908250689506531,-0.407539933919907,0.141008540987968,-0.875742554664612,-0.461726903915405,0.149443969130516,-0.855436205863953,-0.495878428220749,0.102568462491035,-0.894024610519409,-0.436119019985199,0.128546789288521,-0.847082495689392,-0.515681147575378,0.125642657279968,-0.828766107559204,-0.545307874679565,0.0868384391069412,-0.868168413639069,-0.488612920045853,0.0875453352928162,-0.88299173116684,-0.461152255535126,0.0247365981340408,-0.976008117198944,-0.216324299573898,0.0566397048532963,-0.971819162368774,-0.22882191836834,0.0857957080006599,-0.968465328216553,-0.233910217881203,0.0438861735165119,-0.975220441818237,-0.216838806867599,0.066614180803299,-0.955579519271851,-0.287106692790985,0.0781440883874893,-0.947658836841583,-0.309574246406555,0.0400836914777756,-0.95921117067337,-0.279834419488907,0.033107366412878,-0.965171635150909,-0.259514629840851,0.0420073382556438,-0.961365878582001,-0.272049784660339,0.00905042048543692,-0.968994915485382,-0.246914863586426,0.00352926552295685,-0.973790764808655,-0.227418422698975,0.0350282937288284,-0.967101573944092,-0.251967370510101,0.790705382823944,-0.237917318940163,-0.564074814319611,0.686120688915253,-0.0733788162469864,-0.723777592182159,0.70584362745285,-0.0995063185691833,-0.701343894004822,0.79185825586319,-0.239216953516006,-0.561903715133667,0.916555881500244,-0.202081620693207,-0.345091819763184,0.911239862442017,-0.177428767085075,-0.371700346469879,0.903704524040222,-0.161585703492165,-0.396495044231415,0.913560211658478,-0.189185097813606,-0.360023260116577,0.901815950870514,-0.156245678663254,-0.402883857488632, +0.89771580696106,-0.133050501346588,-0.420004576444626,0.874159634113312,-0.0955412983894348,-0.476147919893265,0.88962459564209,-0.133677646517754,-0.436690270900726,0.817993700504303,-0.224265351891518,-0.529708802700043,0.767281711101532,-0.122271947562695,-0.629546284675598,0.781419277191162,-0.143404170870781,-0.607304871082306,0.822772741317749,-0.227378979325294,-0.520906686782837,0.786260545253754,-0.251778274774551,-0.56427127122879,0.71176552772522,-0.117120809853077,-0.692583918571472,0.727582037448883,-0.135779023170471,-0.672449588775635,0.789198994636536,-0.253640592098236,-0.559313356876373,-0.608689308166504,-0.445775538682938,-0.656339466571808,-0.576251089572906,-0.470091640949249,-0.66854202747345,-0.516294658184052,-0.466552078723907,-0.718170702457428,-0.526735544204712,-0.424001008272171,-0.736731171607971,-0.330410838127136,-0.583986818790436,-0.741477072238922,-0.429728895425797,-0.650507092475891,-0.626237809658051,-0.408175766468048,-0.640005826950073,-0.650987863540649,-0.339848011732101,-0.598939120769501,-0.725103616714478,-0.875104367733002,-0.137191489338875,-0.464080691337585,-0.859562575817108,-0.0921222567558289,-0.502658605575562,-0.831607401371002,-0.0824858173727989,-0.549204051494598,-0.858922004699707,-0.133490234613419,-0.494402021169662,-0.939284861087799,-0.0536325201392174,-0.338920950889587,-0.944281399250031,-0.00238452735356987,-0.329130947589874,-0.915503799915314,-0.0143250729888678,-0.402054071426392,-0.917644619941711,-0.0710888132452965,-0.390992254018784,-0.983141481876373,0.0292830150574446,-0.180486142635345,-0.983207166194916,0.0507536940276623,-0.17529322206974,-0.971266746520996,0.0617174655199051,-0.229851886630058,-0.973575532436371,0.0399574600160122,-0.224842816591263,-0.997419476509094,0.0542689189314842,-0.0470029786229134,-0.996573626995087,0.0781340524554253,-0.027130363509059,-0.992411375045776,0.0837766900658607,-0.0900058746337891,-0.993137061595917,0.0595401786267757,-0.100666701793671,-0.996647000312805,0.0116172349080443,-0.0809926018118858,-0.999276459217072,0.0369534268975258,-0.00899899564683437, +-0.995753288269043,0.0841722711920738,0.0372882895171642,-0.997486531734467,0.0587128885090351,-0.039665412157774,0.0478035137057304,-0.82189929485321,-0.567623496055603,-0.0280311964452267,-0.862422704696655,-0.505412101745605,-0.0512836240231991,-0.861394345760345,-0.505341231822968,-0.0134101938456297,-0.84492951631546,-0.534709334373474,-0.0873831734061241,-0.881620109081268,-0.463799953460693,-0.0806260854005814,-0.879786133766174,-0.468482464551926,-0.103439502418041,-0.898341417312622,-0.426946252584457,-0.108177714049816,-0.898034572601318,-0.426417022943497,0.0323024727404118,-0.933096349239349,-0.35817277431488,0.0535274483263493,-0.929185569286346,-0.365717142820358,0.0359749644994736,-0.928411960601807,-0.369806706905365,0.0136633235961199,-0.931063950061798,-0.364600121974945,0.393716245889664,-0.785806655883789,-0.476964831352234,0.333166092634201,-0.808240711688995,-0.485538154840469,0.268237560987473,-0.863318026065826,-0.427469998598099,0.328832715749741,-0.847621560096741,-0.416421443223953,-0.620529532432556,-0.74562680721283,-0.242865726351738,-0.633924245834351,-0.736843585968018,-0.234950229525566,-0.659751355648041,-0.707451701164246,-0.25345653295517,-0.646057665348053,-0.717558681964874,-0.260228723287582,-0.649946868419647,-0.741657972335815,-0.165869101881981,-0.65074348449707,-0.740999341011047,-0.165689170360565,-0.658000290393829,-0.731587588787079,-0.17836831510067,-0.656719267368317,-0.732927083969116,-0.177588731050491,-0.703410744667053,-0.702120780944824,-0.110633365809917,-0.700895249843597,-0.704264461994171,-0.11294949054718,-0.697732746601105,-0.707286894321442,-0.113641075789928,-0.70006000995636,-0.705365359783173,-0.111246287822723,-0.662344455718994,-0.733937203884125,-0.150453045964241,-0.670069336891174,-0.725679457187653,-0.156193539500237,-0.666257739067078,-0.728560745716095,-0.159059271216393,-0.65885865688324,-0.736433207988739,-0.153530269861221,-0.75869208574295,-0.642519235610962,-0.107495978474617,-0.762778639793396,-0.625826120376587,-0.162820085883141,-0.773977756500244,-0.614816904067993,-0.151521101593971, +-0.769615054130554,-0.63122820854187,-0.0961439609527588,-0.865378737449646,-0.485031485557556,-0.125952959060669,-0.86528354883194,-0.460615456104279,-0.197782129049301,-0.874858796596527,-0.448558986186981,-0.182802781462669,-0.874297201633453,-0.472350656986237,-0.111755467951298,-0.942951560020447,-0.285910218954086,-0.170580953359604,-0.943462610244751,-0.318712830543518,-0.0911065712571144,-0.939184546470642,-0.327312797307968,-0.103916890919209,-0.937836647033691,-0.295628875494003,-0.181841149926186,0.896666347980499,0.20716655254364,-0.391243636608124,0.897699058055878,0.177088856697083,-0.403455287218094,0.895619750022888,0.17923130095005,-0.407113522291183,0.894587337970734,0.209987133741379,-0.394485682249069,0.826954126358032,0.324728846549988,-0.459018588066101,0.822946667671204,0.326476722955704,-0.46494272351265,0.819937646389008,0.302150189876556,-0.486217528581619,0.823969542980194,0.300348788499832,-0.480483859777451,0.68242996931076,0.450018346309662,-0.575997412204742,0.686469376087189,0.425421297550201,-0.58972579240799,0.684834957122803,0.427055954933167,-0.590444087982178,0.680759072303772,0.451776057481766,-0.576598346233368,0.53037029504776,0.555907607078552,-0.640057861804962,0.543591618537903,0.550101816654205,-0.633952856063843,0.560400009155273,0.518298745155334,-0.646001696586609,0.547402143478394,0.523776888847351,-0.652693450450897,0.36485555768013,0.639121890068054,-0.677055239677429,0.368448048830032,0.614430546760559,-0.697654008865356,0.369258433580399,0.61551421880722,-0.696269035339355,0.365829348564148,0.639287829399109,-0.676372647285461,0.258657336235046,0.650085747241974,-0.714482247829437,0.259443044662476,0.650362432003021,-0.713945508003235,0.255858212709427,0.674081981182098,-0.692928612232208,0.255021840333939,0.673497498035431,-0.693804740905762,-0.00518626254051924,0.741745054721832,-0.670661926269531,-0.0118411676958203,0.740127503871918,-0.672362327575684,-0.0140774482861161,0.718972206115723,-0.694896280765533,-0.0076077408157289,0.721124947071075,-0.692763328552246, +-0.236293613910675,0.74109011888504,-0.62845116853714,-0.232436195015907,0.742576003074646,-0.628135681152344,-0.230462118983269,0.717283546924591,-0.6575648188591,-0.234457403421402,0.716323733329773,-0.6571986079216,-0.320312142372131,0.713781714439392,-0.622828900814056,-0.332612127065659,0.736222386360168,-0.589360535144806,-0.339201539754868,0.734244525432587,-0.588070869445801,-0.326902657747269,0.711762368679047,-0.62171459197998,-0.607105016708374,0.630660831928253,-0.483415514230728,-0.612051963806152,0.64264702796936,-0.460865825414658,-0.614339828491211,0.642541646957397,-0.457959443330765,-0.609299778938293,0.630013644695282,-0.481494128704071,-0.792933404445648,0.50978672504425,-0.333727657794952,-0.795488476753235,0.52328360080719,-0.305568933486938,-0.796550810337067,0.523787260055542,-0.301916807889938,-0.794176518917084,0.51103949546814,-0.328819513320923,-0.872791588306427,0.428863435983658,-0.233047187328339,-0.872450649738312,0.440378904342651,-0.211887642741203,-0.872047185897827,0.441979110240936,-0.210209921002388,-0.872432053089142,0.430714160203934,-0.230971127748489,-0.92283433675766,0.35974183678627,-0.137704819440842,-0.924189686775208,0.365376085042953,-0.111237779259682,-0.926778137683868,0.359629392623901,-0.108392976224422,-0.92543089389801,0.354403644800186,-0.134074240922928,-0.964851140975952,0.260210156440735,-0.0367842428386211,-0.962397217750549,0.270556151866913,-0.024309828877449,-0.96344393491745,0.266947358846664,-0.0226933099329472,-0.965834558010101,0.256744652986526,-0.0352950170636177,-0.98874831199646,0.0738184303045273,0.130106315016747,-0.988978743553162,0.0723646134138107,0.129168912768364,-0.98439347743988,0.100432202219963,0.144509136676788,-0.984151840209961,0.101528622210026,0.145386099815369,-0.97742760181427,0.211127460002899,0.00779064046218991,-0.972727954387665,0.230105504393578,0.0291860774159431,-0.97343784570694,0.225876688957214,0.037399023771286,-0.978128671646118,0.207365721464157,0.0162390228360891,-0.935750305652618,0.332835972309113,-0.116582922637463, +-0.930776059627533,0.350849449634552,-0.102764636278152,-0.930176317691803,0.351643621921539,-0.10544591397047,-0.935028612613678,0.333989709615707,-0.119047671556473,-0.848812699317932,0.455040693283081,-0.269175082445145,-0.85426276922226,0.451170533895493,-0.25822526216507,-0.850765943527222,0.471489280462265,-0.232153311371803,-0.845243811607361,0.476054251194,-0.2427659034729,-0.723057150840759,0.568721652030945,-0.392102092504501,-0.718420684337616,0.594511687755585,-0.361147612333298,-0.726615130901337,0.591190695762634,-0.350034326314926,-0.731169641017914,0.566067337989807,-0.380734622478485,-0.556467413902283,0.66198343038559,-0.502117574214935,-0.538161039352417,0.680318772792816,-0.497543007135391,-0.547780275344849,0.678750097751617,-0.489116847515106,-0.566070854663849,0.660155415534973,-0.493719220161438,-0.39486226439476,0.702332377433777,-0.592294752597809,-0.37768942117691,0.718101024627686,-0.584535479545593,-0.369702041149139,0.7193683385849,-0.588072776794434,-0.387188285589218,0.702567636966705,-0.597062766551971,-0.211486130952835,0.717242777347565,-0.66395515203476,-0.174450695514679,0.735912680625916,-0.654216647148132,-0.151659190654755,0.734587550163269,-0.661347568035126,-0.189568921923637,0.715464472770691,-0.67243891954422,-0.000965424696914852,0.711292803287506,-0.702895164489746,0.0289997588843107,0.730389416217804,-0.682415127754211,0.0436016321182251,0.730044722557068,-0.682007014751434,0.0135461082682014,0.711062252521515,-0.702998518943787,0.218250945210457,0.668461441993713,-0.711003422737122,0.239085271954536,0.6854287981987,-0.687768578529358,0.246317684650421,0.686752021312714,-0.683885455131531,0.225429683923721,0.669844508171082,-0.707453012466431,0.443268269300461,0.577634930610657,-0.685456991195679,0.460859328508377,0.596751928329468,-0.656883478164673,0.461878478527069,0.596786797046661,-0.656135499477386,0.447067618370056,0.579765796661377,-0.681177079677582,0.64789605140686,0.484779417514801,-0.587553977966309,0.632979214191437,0.479284822940826,-0.607966601848602,0.639537453651428,0.47326323390007,-0.605816543102264, +0.654469549655914,0.478495180606842,-0.585416197776794,0.78262585401535,0.360197246074677,-0.507695496082306,0.779048144817352,0.36501806974411,-0.509750783443451,0.767885267734528,0.359551250934601,-0.530165195465088,0.77179217338562,0.355157464742661,-0.527446866035461,0.853124439716339,0.258102178573608,-0.453389585018158,0.858120203018188,0.248425230383873,-0.449349373579025,0.849377453327179,0.25303727388382,-0.463174045085907,0.844489574432373,0.263031244277954,-0.466531842947006,0.873369038105011,0.213073179125786,-0.437979906797409,0.888443529605865,0.204193875193596,-0.411063104867935,0.896669089794159,0.186249360442162,-0.401616364717484,0.881434798240662,0.194333285093307,-0.430473357439041,0.955240368843079,0.0751696899533272,-0.286121308803558,0.955146431922913,0.0696548521518707,-0.287825644016266,0.955762326717377,0.0655702725052834,-0.286738455295563,0.956057965755463,0.0714432075619698,-0.284339517354965,0.976936399936676,-0.0230320394039154,-0.212284982204437,0.978502452373505,-0.0471980161964893,-0.200761809945107,0.971972405910492,-0.0331499353051186,-0.232746109366417,0.96965616941452,-0.00901706889271736,-0.244306787848473,0.978959083557129,0.00287461490370333,-0.204036489129066,0.97728419303894,-0.0275588352233171,-0.210133835673332,0.978558540344238,-0.0333080552518368,-0.203257873654366,0.980450332164764,-0.00225563859567046,-0.196754276752472,-0.95558100938797,-0.218830466270447,0.197428584098816,-0.94789069890976,-0.293822199106216,0.123173609375954,-0.945008218288422,-0.248637080192566,0.21245926618576,-0.944301068782806,-0.168074190616608,0.282925367355347,0.715055406093597,-0.667273342609406,-0.20842769742012,0.600190401077271,-0.799838840961456,0.00541753601282835,0.466785699129105,-0.85147100687027,0.238973334431648,0.63816511631012,-0.769067883491516,0.0357741937041283,0.516130268573761,-0.713999569416046,0.473090022802353,0.453725069761276,-0.744272470474243,0.490093797445297,0.396918475627899,-0.755183696746826,0.521683156490326,0.462160646915436,-0.726503431797028,0.508527517318726, +-0.560536742210388,-0.636765718460083,-0.529460072517395,-0.560982763767242,-0.63649982213974,-0.529307544231415,-0.473774552345276,-0.652615606784821,-0.591295778751373,-0.473318010568619,-0.652795493602753,-0.591462790966034,-0.870908081531525,0.394829124212265,0.2926245033741,-0.911625564098358,0.331146776676178,0.243476197123528,-0.906608521938324,0.35542368888855,0.227453052997589,-0.865361630916595,0.418407469987869,0.275834083557129,-0.979573309421539,0.12240506708622,0.159540370106697,-0.982017457485199,0.12138144671917,0.144596770405769,-0.984253287315369,0.120167784392834,0.129634946584702,-0.982016146183014,0.121393263339996,0.144595667719841,-0.993910789489746,0.108536079525948,-0.0190083477646112,-0.987363636493683,0.11907147616148,0.104570806026459,-0.965602040290833,0.127624109387398,0.226550191640854,-0.987378060817719,0.118941865861416,0.104582615196705,-0.99094021320343,0.115978889167309,0.0677230060100555,-0.989641726016998,0.117203280329704,0.0829017907381058,-0.9881312251091,0.118227653205395,0.0980769544839859,-0.989660441875458,0.117034494876862,0.0829171612858772,-0.986605107784271,0.119278445839882,0.111279241740704,-0.981065452098846,0.122196637094021,0.150262027978897,-0.974002480506897,0.124869234859943,0.189015462994576,-0.981025218963623,0.122560247778893,0.150228843092918,-0.974271595478058,0.125204667448997,0.18739977478981,-0.974320828914642,0.124760754406452,0.187440291047096,-0.974199295043945,0.125854387879372,0.187340348958969,-0.984920740127563,0.11865846067667,0.125901997089386,-0.987956702709198,0.116219401359558,0.10215101391077,-0.984986662864685,0.118051461875439,0.125957310199738,-0.981410443782806,0.120147101581097,0.149660393595695,0.854629039764404,-0.417435616254807,-0.308799058198929,0.84775984287262,-0.436371177434921,-0.301468878984451,0.857738733291626,-0.440880119800568,-0.264402955770493,0.864676058292389,-0.425568342208862,-0.266883730888367,-0.685060977935791,0.583282291889191,0.436432391405106,-0.743461847305298,0.521806538105011,0.418308883905411,-0.797463774681091,0.49298968911171,0.347868829965591, +-0.744023621082306,0.565377831459045,0.356057167053223,-0.991681754589081,-0.00171874056104571,0.128702953457832,-0.988553047180176,0.144064351916313,-0.0448171496391296,-0.970213413238525,0.10379096865654,0.21889129281044,-0.923887312412262,-0.0486482866108418,0.379559725522995,-0.907840251922607,0.417914628982544,-0.0342560186982155,-0.52165025472641,0.800718367099762,-0.294501513242722,0.0530556216835976,0.889719605445862,-0.453414082527161,-0.524692296981812,0.792127907276154,-0.311819553375244,0.816255807876587,-0.483253628015518,-0.316532015800476,0.779272317886353,-0.545172512531281,-0.309065639972687,0.818382561206818,-0.496257066726685,-0.289791017770767,0.851569354534149,-0.43064484000206,-0.298956364393234,-0.105630904436111,0.287340313196182,0.951986134052277,-0.250732064247131,0.311264008283615,0.916650474071503,-0.103989146649837,0.305646955966949,0.946449220180511,0.0433940812945366,0.296811491250992,0.953949749469757,-0.993505775928497,0.108698666095734,0.033631619066,-0.99068409204483,0.112413287162781,0.0768657401204109,-0.98581063747406,0.117579460144043,0.119801625609398,-0.990495204925537,0.114174626767635,0.0767031610012054,-0.634813129901886,-0.770457804203033,0.0583706051111221,-0.655495464801788,-0.751482129096985,0.0748366266489029,-0.654532432556152,-0.752204120159149,0.0760027840733528,-0.633919596672058,-0.771094679832458,0.059656523168087,-0.968114852905273,0.125360101461411,0.216883271932602,-0.973927617073059,0.123576909303665,0.190246611833572,-0.968120574951172,0.125308141112328,0.216887980699539,-0.961585402488708,0.126997098326683,0.243362858891487,-0.992116093635559,0.113123960793018,0.0539320670068264,-0.97679340839386,0.122602850198746,0.1756222397089,-0.946688234806061,0.130231842398643,0.29465451836586,-0.976795434951782,0.122583761811256,0.175624042749405,-0.981326878070831,0.120688639581203,0.149772718548775,-0.976848542690277,0.122561894357204,0.175343841314316,-0.971710681915283,0.124331794679165,0.20079830288887,-0.976851344108582,0.122536353766918,0.175346210598946,-0.97216123342514,0.123926766216755,0.198859021067619, +-0.963623404502869,0.126571819186211,0.235392093658447,-0.953748226165771,0.128803476691246,0.271613776683807,-0.963625431060791,0.126553505659103,0.235393822193146,-0.979398965835571,0.121328681707382,0.161421999335289,-0.9769526720047,0.122489891946316,0.174813330173492,-0.979375004768372,0.121549159288406,0.161401942372322,-0.981616258621216,0.120568513870239,0.147962093353271,-0.947447776794434,0.129761770367622,0.292412042617798,-0.947447955608368,0.129759445786476,0.292412132024765,-0.947424292564392,0.129977405071259,0.292392373085022,-0.986237823963165,0.117387413978577,0.11642649769783,-0.986003696918488,0.117531597614288,0.118250876665115,-0.985764741897583,0.117686897516251,0.120073765516281,-0.986002504825592,0.117542505264282,0.118249863386154,-0.987970888614655,0.116231866180897,0.101998545229435,-0.98655891418457,0.117180570960045,0.113887049257755,-0.98500382900238,0.118119671940804,0.125758454203606,-0.986558318138123,0.117186531424522,0.113886497914791,-0.990457355976105,0.113883182406425,0.0776210203766823,-0.990333437919617,0.113998286426067,0.0790197551250458,-0.990419268608093,0.114235505461693,0.0775889679789543,-0.990541219711304,0.114119105041027,0.0761902332305908,-0.991210222244263,0.113092988729477,0.0686470121145248,-0.991019070148468,0.113287128508091,0.0710438340902328,-0.99047189950943,0.113870739936829,0.0774537846446037,-0.991238117218018,0.113111414015293,0.0682128220796585,-0.991450667381287,0.112899735569954,0.0654155164957047,-0.991801381111145,0.112512558698654,0.060588289052248,-0.990167796611786,0.113668002188206,0.0815306603908539,-0.989375710487366,0.114333435893059,0.0897972509264946,-0.990117192268372,0.114138953387737,0.0814878717064857,-0.990840315818787,0.11346822977066,0.0732152983546257,-0.991408288478851,0.112384028732777,0.0669280365109444,-0.985506057739258,0.116848319768906,0.122981563210487,-0.991399109363556,0.11246881633997,0.0669203326106071,-0.994132459163666,0.10764367878437,0.0106530357152224,-0.985146343708038,0.117000125348568,0.125688895583153,-0.972314298152924,0.122301429510117,0.199116140604019, +-0.98514050245285,0.117054887115955,0.125683918595314,-0.992471218109131,0.111099846661091,0.0515548214316368,-0.984449803829193,0.117367088794708,0.130703926086426,-0.959430634975433,0.125749364495277,0.252349346876144,-0.984448313713074,0.117381118237972,0.130702644586563,-0.994214475154877,0.107182793319225,0.00703194923698902,-0.990696132183075,0.113066434860229,0.0757454186677933,-0.99264132976532,0.110821887850761,0.0488013066351414,-0.993859827518463,0.108473092317581,0.0218234099447727,-0.992644071578979,0.110796600580215,0.0488036051392555,-0.993436336517334,0.109532482922077,0.0329677052795887,-0.992444753646851,0.111152745783329,0.0519458465278149,-0.991099119186401,0.112668685615063,0.0709108784794807,-0.992451548576355,0.111089169979095,0.0519516319036484,-0.993160367012024,0.110130354762077,0.0387788824737072,-0.988870799541473,0.114765606820583,0.0946756601333618,-0.981463253498077,0.118934094905853,0.150282233953476,-0.988881349563599,0.114666946232319,0.0946846380829811,-0.993833184242249,0.108754262328148,0.0216362979263067,-0.985896646976471,0.116866387426853,0.119791083037853,-0.96834921836853,0.12370427697897,0.216788455843925,-0.985909700393677,0.116744875907898,0.119802191853523,-0.966815650463104,0.124394200742245,0.223145246505737,-0.976653695106506,0.121229559183121,0.177344277501106,-0.984345197677612,0.11773844063282,0.131157130002975,-0.976663172245026,0.121141396462917,0.177352264523506,-0.985348403453827,0.120535023510456,0.120664082467556,-0.989203929901123,0.11784515529871,0.0871089920401573,-0.991921305656433,0.115043826401234,0.0534510053694248,-0.989202976226807,0.117853604257107,0.0871082320809364,-0.975162029266357,0.121764332056046,0.18502077460289,-0.977360904216766,0.120947696268559,0.173601672053337,-0.97745817899704,0.121080964803696,0.172959834337234,-0.973964095115662,0.122327640652657,0.190866306424141,-0.972498893737793,0.122684359550476,0.197976365685463,-0.975707173347473,0.121580317616463,0.182246923446655,-0.988119304180145,0.115585722029209,0.101292572915554,-0.991212546825409,0.112953148782253,0.0688413754105568, +-0.99288547039032,0.113497257232666,0.0360139012336731,-0.99084484577179,0.11631865799427,0.0685304924845695,-0.96564394235611,0.128277748823166,0.226001247763634,-0.988980948925018,0.118058256804943,0.0893253535032272,-0.993198692798615,0.105582714080811,-0.0490801632404327,-0.988984048366547,0.118030309677124,0.0893280133605003,-0.99372810125351,0.111262984573841,0.0111809493973851,-0.98998099565506,0.117159076035023,0.0788122564554214,-0.981660604476929,0.122486650943756,0.146081060171127,-0.989980936050415,0.117159783840179,0.0788121894001961,-0.969326972961426,0.12345203012228,0.212520077824593,-0.973002254962921,0.122275084257126,0.195743143558502,-0.976360857486725,0.121328264474869,0.178882390260696,-0.972976267337799,0.122518688440323,0.195720374584198,-0.966494560241699,0.123997174203396,0.224750861525536,-0.970419943332672,0.122834384441376,0.207838177680969,-0.974021136760712,0.121920362114906,0.190835610032082,-0.970389485359192,0.123120717704296,0.207811161875725,-0.977374792098999,0.1201296672225,0.174090281128883,-0.973954141139984,0.121418491005898,0.191496208310127,-0.970200657844543,0.122903600335121,0.20881949365139,-0.973929584026337,0.121649712324142,0.191474407911301,-0.980551660060883,0.118627026677132,0.156352534890175,-0.977264404296875,0.120020806789398,0.174783676862717,-0.973615229129791,0.121537126600742,0.193137660622597,-0.977247536182404,0.120180062949657,0.174768671393394,-0.982382237911224,0.117686897516251,0.145172834396362,-0.980548024177551,0.118553496897221,0.156431064009666,-0.97857654094696,0.119489707052708,0.167660862207413,-0.980539679527283,0.118632450699806,0.156423658132553,-0.984330594539642,0.116677798330784,0.132211208343506,-0.983191668987274,0.117279246449471,0.139927968382835,-0.98199188709259,0.117879942059517,0.14763554930687,-0.983191549777985,0.117279797792435,0.139927923679352,-0.985592007637024,0.11602932959795,0.123067617416382,-0.985091805458069,0.116314969956875,0.126747995615005,-0.98458456993103,0.116535723209381,0.13043250143528,-0.985098958015442,0.116247147321701,0.126754328608513, +-0.987273633480072,0.115093097090721,0.109746851027012,-0.98690927028656,0.115325435996056,0.112739972770214,-0.9865483045578,0.115438126027584,0.115743152797222,-0.986922204494476,0.115203738212585,0.112751364707947,-0.988386571407318,0.114846959710121,0.0995107144117355,-0.988424897193909,0.114746578037739,0.0992445424199104,-0.98850953578949,0.114211596548557,0.0990192219614983,-0.988478541374207,0.114242941141129,0.0992918759584427,-0.993471086025238,0.10118605941534,-0.0526935644447803,-0.96692156791687,0.0804370492696762,-0.242058962583542,-0.99333655834198,0.102437861263752,-0.052811399102211,-0.983139038085938,0.119385853409767,0.138508751988411,-0.984779059886932,0.117349550127983,0.128215819597244,-0.988050103187561,0.115232795476913,0.102363258600235,-0.990056276321411,0.113414034247398,0.0832221060991287,-0.989391565322876,0.114057429134846,0.0899738371372223,-0.988513708114624,0.114851050078869,0.0982335656881332,-0.983154356479645,0.119267575442791,0.138502106070518,-0.981552720069885,0.120053164660931,0.148800805211067,-0.983276963233948,0.118127197027206,0.138609558343887,-0.984768390655518,0.117355652153492,0.128292873501778,-0.987530052661896,0.116743296384811,0.105619505047798,-0.97904908657074,0.121239714324474,0.163596630096436,-0.987538158893585,0.116668127477169,0.10562652349472,-0.992608428001404,0.111770503222942,0.0472844801843166,-0.973660588264465,0.123361885547638,0.191747307777405,-0.957720041275024,0.12780673801899,0.257755279541016,-0.973668456077576,0.123288176953793,0.191754147410393,-0.9850994348526,0.118277713656425,0.124857723712921,-0.973664402961731,0.123368725180626,0.191723003983498,-0.960657715797424,0.127126708626747,0.24693238735199,-0.973665356636047,0.123360030353069,0.191723763942719,-0.983525335788727,0.119208335876465,0.135894507169724,-0.963888466358185,0.126296415925026,0.234453067183495,-0.924700617790222,0.133491188287735,0.356523275375366,-0.963887155056,0.126308396458626,0.234451845288277,-0.987180411815643,0.117045283317566,0.108514674007893,-0.984427392482758,0.118777461349964,0.129594698548317, +-0.985576689243317,0.118114367127419,0.121192328631878,-0.984436094760895,0.118697114288807,0.12960210442543,-0.983215510845184,0.119351379573345,0.137995287775993,-0.966907441616058,0.125680521130562,0.222023546695709,-0.962508857250214,0.126869827508926,0.239751860499382,-0.966921150684357,0.125554710626602,0.222035229206085,-0.970995545387268,0.124325029551983,0.204232558608055,-0.986889481544495,0.117174908518791,0.110991723835468,-0.98987740278244,0.114884756505489,0.0833332538604736,-0.986864268779755,0.117407716810703,0.110969752073288,-0.98310911655426,0.119591899216175,0.138543263077736,-0.988549470901489,0.114457078278065,0.0983339995145798,-0.98450779914856,0.117656201124191,0.130005300045013,-0.979506313800812,0.120233535766602,0.161589920520782,-0.984531164169312,0.117438681423664,0.130025506019592,-0.979813396930695,0.120640218257904,0.159410655498505,-0.97219043970108,0.12353777140379,0.198957741260529,-0.979780614376068,0.12094409763813,0.159381940960884,-0.985804259777069,0.117864564061165,0.119573764503002,-0.984563827514648,0.118314862251282,0.128980323672295,-0.983045816421509,0.119135789573193,0.139382898807526,-0.984566688537598,0.11828787624836,0.12898263335228,-0.985974192619324,0.117461323738098,0.118565373122692,-0.976465106010437,0.122081883251667,0.177797511219978,-0.962655246257782,0.126414030790329,0.239404708147049,-0.976468563079834,0.122049823403358,0.177800297737122,-0.986367106437683,0.117236219346523,0.115480691194534,-0.98845511674881,0.11549749225378,0.0980649143457413,-0.987166225910187,0.116408579051495,0.109324812889099,-0.988419353961945,0.115829810500145,0.0980335623025894,-0.989581823348999,0.114891886711121,0.0867620557546616,-0.979742169380188,0.119774289429188,0.160496592521667,-0.974962890148163,0.122132368385792,0.185825347900391,-0.979672074317932,0.120429433882236,0.160435184836388,-0.98374342918396,0.118474692106247,0.134954154491425,-0.992835402488708,0.110372751951218,0.0457813329994678,-0.992789804935455,0.110797993838787,0.0457410849630833,-0.992833375930786,0.110390931367874,0.0457797348499298, +-0.986995339393616,0.115938700735569,0.111348234117031,-0.986961185932159,0.116257071495056,0.111319050192833,-0.98694908618927,0.116371504962444,0.11130753159523,-0.98034131526947,0.11835702508688,0.157868653535843,-0.983239412307739,0.116986721754074,0.139837712049484,-0.980336666107178,0.118400916457176,0.157864525914192,-0.977100431919098,0.119820944964886,0.175834238529205,-0.965127348899841,0.123657926917076,0.23073336482048,-0.965134143829346,0.123594537377357,0.230739444494247,-0.965117335319519,0.123752549290657,0.230724573135376,-0.976410984992981,0.12008398026228,0.179448068141937,-0.980387985706329,0.118554718792439,0.157430529594421,-0.976385414600372,0.120324321091175,0.179425671696663,-0.971859931945801,0.122335471212864,0.201302111148834,-0.994418859481812,0.105380401015282,-0.0051293196156621,-0.994335830211639,0.106156691908836,-0.00520188501104712,-0.994365334510803,0.105881989002228,-0.00517595466226339,-0.99437427520752,0.103945806622505,-0.0203781612217426,-0.994408369064331,0.103624112904072,-0.020348597317934,-0.994296014308929,0.104678295552731,-0.0204470008611679,-0.980738759040833,0.11805235594511,0.155612140893936,-0.982162415981293,0.117371261119843,0.146904543042183,-0.987095415592194,0.115217790007591,0.111209288239479,-0.982779085636139,0.117656961083412,0.142485290765762,-0.979180216789246,0.118729434907436,0.164649680256844,-0.981168568134308,0.117929667234421,0.152973860502243,-0.979422211647034,0.118628352880478,0.163277268409729,-0.981176793575287,0.117851659655571,0.152981236577034,-0.982814908027649,0.11714456230402,0.142660394310951,-0.98736047744751,0.114613935351372,0.10946661233902,-0.98653370141983,0.11508671939373,0.116217739880085,-0.987367689609528,0.114546462893486,0.109472908079624,-0.988148152828217,0.114072747528553,0.102716229856014,-0.986320793628693,0.115268811583519,0.117831893265247,-0.983570158481598,0.116818264126778,0.137634411454201,-0.986319899559021,0.115277372300625,0.117831103503704,-0.98867404460907,0.113680966198444,0.0979812517762184,-0.983377397060394,0.116891629993916,0.138943448662758, +-0.982021331787109,0.117575846612453,0.147682160139084,-0.983375489711761,0.116910316050053,0.138941749930382,-0.984654307365417,0.116214781999588,0.130192279815674,-0.982516705989838,0.11734626442194,0.144537091255188,-0.981762230396271,0.117682628333569,0.149311557412148,-0.982519447803497,0.117319971323013,0.144539535045624,-0.983250796794891,0.116980850696564,0.139761671423912,-0.988120675086975,0.117272958159447,0.0993202105164528,-0.98569643497467,0.117514528334141,0.120801135897636,-0.988059937953949,0.117826499044895,0.0992696583271027,-0.990169405937195,0.116194196045399,0.0778682976961136,-0.976799786090851,0.121432617306709,0.176398664712906,-0.976730704307556,0.122070401906967,0.176340505480766,-0.976854383945465,0.120922230184078,0.176446363329887,-0.980536639690399,0.119495503604412,0.155784338712692,-0.980459868907928,0.120213553309441,0.155715674161911,-0.980309724807739,0.12159626185894,0.155586704611778,-0.983029127120972,0.118330352008343,0.140184372663498,-0.979835212230682,0.119194522500038,0.160361066460609,-0.982954621315002,0.119024649262428,0.140119194984436,-0.985889375209808,0.116697296500206,0.120017021894455,-0.97766125202179,0.120097585022449,0.172496572136879,-0.977659642696381,0.120112255215645,0.172495514154434,-0.977588593959808,0.120780885219574,0.172431260347366,-0.989208400249481,0.114326268434525,0.0916310399770737,-0.985491812229156,0.116314977407455,0.123598881065845,-0.9806849360466,0.118801452219486,0.155381232500076,-0.9854816198349,0.116411492228508,0.123589508235455,-0.985914647579193,0.116612009704113,0.119891561567783,-0.985967040061951,0.116119258105755,0.119938641786575,-0.985844254493713,0.117267981171608,0.119830220937729,-0.986498475074768,0.116786397993565,0.114812657237053,-0.986559927463531,0.1162119358778,0.114866331219673,-0.986488938331604,0.116873860359192,0.114804565906525,-0.972753643989563,0.12366795539856,0.196103408932686,-0.972778081893921,0.123444125056267,0.19612343609333,-0.972844064235687,0.122834406793118,0.196178898215294,-0.993624210357666,0.10431057959795,-0.0427811034023762, +-0.991923928260803,0.11319237947464,0.0572220981121063,-0.980252325534821,0.120660439133644,0.156673178076744,-0.991928040981293,0.113154761493206,0.0572255663573742,-0.992796719074249,0.11211296916008,0.0422534570097923,-0.983819842338562,0.119532443583012,0.13345642387867,-0.966525256633759,0.125947996973991,0.223530843853951,-0.983820796012878,0.119523949921131,0.133457228541374,-0.986786842346191,0.117798797786236,0.111244693398476,-0.959706783294678,0.127644523978233,0.25033974647522,-0.913261651992798,0.134916111826897,0.384383618831635,-0.959709227085114,0.127620741724968,0.250341951847076,-0.97193706035614,0.12428243458271,0.199730262160301,-0.961771249771118,0.12712761759758,0.242558181285858,-0.949736058712006,0.129708424210548,0.284916013479233,-0.961774110794067,0.127102226018906,0.242560565471649,-0.991977035999298,0.112978152930737,0.0567230954766273,-0.991927802562714,0.113430455327034,0.0566812455654144,-0.99196845293045,0.113057322800159,0.05671576410532,-0.982143521308899,0.120061419904232,0.144842311739922,-0.983523607254028,0.119444034993649,0.135699838399887,-0.98215913772583,0.119917795062065,0.144855603575706,-0.980688571929932,0.120582014322281,0.153980374336243,-0.981757521629333,0.120245605707169,0.147286683320999,-0.981774985790253,0.120083659887314,0.147301658987999,-0.981780171394348,0.120036795735359,0.147305995225906,-0.982268214225769,0.120001174509525,0.144044741988182,-0.982291162014008,0.119789741933346,0.14406430721283,-0.982285380363464,0.119843102991581,0.144059330224991,-0.986130833625793,0.117766797542572,0.116948366165161,-0.984966397285461,0.118588954210281,0.125609964132309,-0.983759582042694,0.119093969464302,0.134290352463722,-0.984983086585999,0.118434965610504,0.125624194741249,-0.967947900295258,0.125616326928139,0.217480167746544,-0.967982113361359,0.125302135944366,0.217508748173714,-0.967970073223114,0.125412434339523,0.217498749494553,-0.97919625043869,0.120483376085758,0.163274809718132,-0.962936520576477,0.12557065486908,0.238715901970863,-0.940787196159363,0.131104424595833,0.312619775533676, +-0.962818562984467,0.126658946275711,0.238616719841957,-0.970619440078735,0.124520048499107,0.205894887447357,-0.970628261566162,0.124438509345055,0.205902487039566,-0.970681667327881,0.123945087194443,0.205948293209076,-0.984932720661163,0.118304528295994,0.126141145825386,-0.984935820102692,0.118275910615921,0.126143783330917,-0.984936535358429,0.118269078433514,0.126144424080849,-0.994143307209015,0.108051382005215,0.00199499377049506,-0.993408501148224,0.110396541655064,0.0308569315820932,-0.991817593574524,0.112857922911644,0.0596735738217831,-0.993413209915161,0.110352717339993,0.0308609902858734,-0.993894279003143,0.109147749841213,0.0161596406251192,-0.993886828422546,0.109215565025806,0.0161533504724503,-0.993882119655609,0.109260082244873,0.0161492209881544,-0.994051873683929,0.105083428323269,-0.0286066364496946,-0.991925776004791,0.100395448505878,-0.0774859040975571,-0.994045913219452,0.105138175189495,-0.0286117158830166,-0.993764042854309,0.109635189175606,0.0203308202326298,-0.992136418819427,0.100712828338146,-0.0743133351206779,-0.992136657238007,0.100710675120354,-0.0743131339550018,-0.992138624191284,0.100691631436348,-0.0743113607168198,-0.994012832641602,0.105007611215115,-0.0301971808075905,-0.994012415409088,0.105011805891991,-0.0301975701004267,-0.994010150432587,0.105033360421658,-0.0301995743066072,-0.993832409381866,0.104283355176449,-0.0377109460532665,-0.993829786777496,0.104307800531387,-0.0377132184803486,-0.993831634521484,0.10429060459137,-0.0377116203308105,-0.994031012058258,0.105084642767906,-0.0293188113719225,-0.994160413742065,0.107908323407173,0.00084835768211633,-0.993384718894958,0.110564395785332,0.0310211200267076,-0.994162321090698,0.107891477644444,0.000849923002533615,-0.988167405128479,0.116412229835987,0.0998665615916252,-0.988168776035309,0.116399705410004,0.0998677313327789,-0.988167643547058,0.116410471498966,0.0998667255043983,-0.988283276557922,0.116173386573792,0.0989947021007538,-0.990211248397827,0.11458757519722,0.0796943157911301,-0.991763114929199,0.112970300018787,0.0603626407682896, +-0.990208625793457,0.114612504839897,0.0796920210123062,-0.994000375270844,0.10866517573595,0.0124572021886706,-0.992168843746185,0.11225813627243,0.0547641031444073,-0.987680673599243,0.116603091359138,0.104357987642288,-0.986798465251923,0.117201216518879,0.111770622432232,-0.990725696086884,0.114093966782093,0.0737913250923157,-0.992215931415558,0.114176712930202,0.0497117713093758,-0.989141166210175,0.115896165370941,0.0903763920068741,-0.984245121479034,0.11902691423893,0.130744621157646,-0.98895126581192,0.117626339197159,0.0902192145586014,0.0467717126011848,0.56490159034729,0.823831677436829,0.0313626416027546,0.60076230764389,0.798812210559845,0.0242620650678873,0.606098532676697,0.795019567012787,0.0391821265220642,0.57769763469696,0.815310001373291,-0.067864865064621,0.387161821126938,0.919510781764984,-0.00544090382754803,0.492174535989761,0.870479464530945,0.0667178258299828,0.52261221408844,0.849955976009369,0.00453276187181473,0.413728207349777,0.910389125347137,-0.0409759394824505,0.606126427650452,0.794312238693237,-0.0445658229291439,0.598893821239471,0.799587428569794,-0.05193892121315,0.617548108100891,0.784816324710846,-0.0476158559322357,0.622769773006439,0.780954897403717,-0.886494040489197,0.393334329128265,0.243754804134369,-0.88740998506546,0.432763248682022,0.158806279301643,-0.88289999961853,0.410661399364471,0.227695092558861,-0.904132187366486,0.336490839719772,0.263284802436829,-0.898542582988739,0.326418071985245,0.293381065130234,-0.902343153953552,0.366480499505997,0.226867437362671,-0.958592414855957,0.224869549274445,0.17474065721035,-0.951349020004272,0.207107111811638,0.228126540780067,-0.956033825874329,0.249835625290871,0.153562560677528,-0.927466809749603,0.318126708269119,0.196470513939857,-0.921861588954926,0.254601925611496,0.292145609855652,-0.92184454202652,0.266158878803253,0.281712830066681,-0.998322665691376,0.0570020563900471,0.0101311942562461,-0.998781502246857,0.0431949086487293,0.0238687228411436,-0.998911380767822,0.0370517894625664,0.0283414293080568,-0.929882824420929,0.284375578165054,0.233342051506042, +-0.92944198846817,0.289876013994217,0.228274956345558,-0.93029111623764,0.312129259109497,0.192701250314713,-0.909853219985962,0.297439813613892,0.289303809404373,-0.912440478801727,0.348017126321793,0.215259075164795,-0.907476544380188,0.29376283288002,0.300316125154495,-0.934600293636322,0.217529863119125,0.28143036365509,-0.941278696060181,0.287412106990814,0.177169129252434,-0.934378266334534,0.217200621962547,0.28242015838623,-0.89953738451004,0.434481292963028,0.0453710779547691,-0.901780784130096,0.423542022705078,0.0860452502965927,-0.91531378030777,0.342541098594666,0.211816564202309,-0.0857421904802322,0.369798332452774,0.925147294998169,0.00900948699563742,0.304878920316696,0.952348530292511,-0.0331463254988194,0.333134859800339,0.942296504974365,-0.120130084455013,0.493390023708344,0.861472725868225,-0.0947269201278687,0.469236701726913,0.877977192401886,0.0156789738684893,0.397004365921021,0.917682766914368,-0.991653442382813,0.113781914114952,0.0606393627822399,-0.991656899452209,0.11375105381012,0.0606422536075115,-0.991650879383087,0.113805398344994,0.0606371834874153,-0.130494073033333,-0.796798408031464,-0.589986085891724,0.0095902644097805,-0.834543824195862,-0.55085813999176,0.0728136673569679,-0.825359225273132,-0.559893131256104,-0.0400778613984585,-0.801069676876068,-0.597227811813354,0.0248629003763199,-0.821879386901855,-0.569118738174438,0.0727783069014549,-0.848822474479675,-0.52364456653595,0.120174661278725,-0.870730102062225,-0.476851314306259,0.0525722429156303,-0.839093565940857,-0.541440963745117,0.301924645900726,-0.845064997673035,-0.441256076097488,0.288390874862671,-0.846039533615112,-0.448383569717407,0.256306707859039,-0.849079489707947,-0.46192079782486,0.290716856718063,-0.846927285194397,-0.445194244384766,0.142100229859352,-0.699542939662933,-0.700319349765778,0.0809881389141083,-0.711771190166473,-0.697726845741272,0.105757847428322,-0.71483713388443,-0.691247463226318,0.164711356163025,-0.705081701278687,-0.68973183631897,0.211716264486313,-0.845397472381592,-0.490386962890625, +0.256994068622589,-0.847922623157501,-0.463660776615143,0.288225144147873,-0.846278131008148,-0.448039948940277,0.252785265445709,-0.846124529838562,-0.469225823879242,0.362945437431335,-0.800867557525635,-0.476321071386337,0.327263444662094,-0.808376491069794,-0.489311903715134,0.330793231725693,-0.810117304325104,-0.484030812978745,0.327601343393326,-0.807269692420959,-0.49091050028801,0.319764167070389,-0.806600034236908,-0.497139066457748,0.303156822919846,-0.811673641204834,-0.499281346797943,0.331124365329742,-0.806615829467773,-0.489619851112366,0.331393539905548,-0.803622543811798,-0.494337022304535,0.303169667720795,-0.811633229255676,-0.49933922290802,0.23496425151825,-0.823218524456024,-0.516820311546326,0.27444127202034,-0.818779766559601,-0.504263758659363,-0.383442103862762,-0.56816166639328,-0.728123903274536,-0.311455845832825,-0.573194265365601,-0.757920563220978,-0.332249701023102,-0.525534808635712,-0.783213436603546,-0.419446170330048,-0.525775611400604,-0.74001681804657,0.0803092196583748,-0.611364185810089,-0.787263810634613,0.0131851388141513,-0.585572123527527,-0.810513079166412,-7.14247144060209e-05,-0.653380811214447,-0.757029414176941,0.0619951188564301,-0.676391243934631,-0.733928799629211,-0.988101720809937,-0.0361552610993385,-0.149491846561432,-0.969894409179688,-0.161111757159233,-0.182614490389824,-0.963457226753235,-0.189863637089729,-0.188949555158615,-0.976820945739746,-0.0930920392274857,-0.19275563955307,-0.969314694404602,0.0269321650266647,-0.244343563914299,-0.952937483787537,-0.18478886783123,-0.240339919924736,-0.952875673770905,-0.153783619403839,-0.26149308681488,-0.969677448272705,-0.0105487136170268,-0.244160488247871,-0.945904493331909,-0.274369895458221,-0.173163890838623,-0.954040825366974,-0.154239058494568,-0.256936520338058,-0.970069587230682,-0.172961249947548,-0.170438468456268,-0.950379610061646,-0.307163864374161,-0.0492847040295601,-0.951351225376129,-0.306604951620102,-0.0304015334695578,-0.940120041370392,-0.332454413175583,0.0751557573676109,-0.962226688861847,-0.272229820489883,-0.00328128482215106, +-0.951415479183197,-0.304716557264328,-0.0442309379577637,0.333227574825287,-0.762410044670105,-0.554698407649994,0.349751830101013,-0.767096877098083,-0.537806570529938,0.303563475608826,-0.795579135417938,-0.524312198162079,0.314611434936523,-0.782314121723175,-0.53759104013443,0.351375669240952,-0.780586719512939,-0.516932964324951,0.332649618387222,-0.787299454212189,-0.519137561321259,0.27310374379158,-0.804716408252716,-0.527111053466797,0.304220736026764,-0.798114001750946,-0.520061552524567,0.122856430709362,-0.826424121856689,-0.549481213092804,0.164825290441513,-0.8297398686409,-0.533258259296417,0.268387198448181,-0.827814102172852,-0.492637991905212,0.222047328948975,-0.83221572637558,-0.508047223091125,0.15843990445137,-0.845986127853394,-0.509121060371399,0.100147671997547,-0.85331916809082,-0.51168030500412,0.140882134437561,-0.855651259422302,-0.498009204864502,0.231396481394768,-0.841643989086151,-0.487945884466171,0.185462087392807,-0.870957553386688,-0.455012947320938,0.128213226795197,-0.891468703746796,-0.434562921524048,0.198146536946297,-0.861954271793365,-0.466661304235458,0.284051984548569,-0.821176469326019,-0.494958281517029,-0.987300872802734,0.122976593673229,0.100567296147346,-0.98730081319809,0.122976742684841,0.100567281246185,-0.987300872802734,0.122976578772068,0.100567296147346,-0.940867364406586,0.136633411049843,0.309999942779541,-0.940867364406586,0.136633232235909,0.309999942779541,-0.940867364406586,0.136633217334747,0.309999942779541,-0.959489822387695,0.133178099989891,0.248280256986618,-0.959489762783051,0.133177891373634,0.248280242085457,-0.959489822387695,0.13317808508873,0.248280256986618,-0.976924777030945,0.128160640597343,0.170859754085541,-0.9769247174263,0.128161072731018,0.170859724283218,-0.976924657821655,0.128160774707794,0.170859724283218,-0.988181471824646,0.122334145009518,0.0923684611916542,-0.988181471824646,0.122333496809006,0.0923685058951378,-0.988181412220001,0.122333876788616,0.0923684760928154,-0.974379062652588,0.129076570272446,0.184187099337578, +-0.974378943443298,0.129077777266502,0.184186980128288,-0.974379003047943,0.129077017307281,0.184187054634094,-0.988503456115723,0.122083976864815,0.0891997963190079,-0.988503456115723,0.122084058821201,0.0891997888684273,-0.988503456115723,0.122083380818367,0.0891998410224915,-0.980807840824127,0.126562908291817,0.148316577076912,-0.980807960033417,0.126561835408211,0.14831668138504,-0.980807900428772,0.126562252640724,0.148316636681557,-0.991206645965576,0.119463130831718,0.0569047853350639,-0.991206645965576,0.119462296366692,0.0569048523902893,-0.991206586360931,0.119463548064232,0.0569047480821609,-0.0442974902689457,-0.0852446854114532,-0.995374858379364,-0.0442974716424942,-0.0852445140480995,-0.995374858379364,-0.0442976243793964,-0.0852458477020264,-0.995374739170074,0.148272916674614,0.0724303722381592,0.986290514469147,0.148273155093193,0.0724322572350502,0.986290454864502,0.148273080587387,0.0724316090345383,0.986290514469147,-0.993388772010803,0.112453825771809,-0.0230882726609707,-0.993388652801514,0.112454906105995,-0.0230883713811636,-0.993388772010803,0.112453907728195,-0.0230882801115513,-0.966395795345306,0.0895660221576691,-0.240950360894203,-0.966395854949951,0.0895655751228333,-0.24095031619072,-0.966396033763885,0.0895651578903198,-0.240950301289558,-0.968579173088074,0.130885675549507,0.211478903889656,-0.968579232692719,0.130885273218155,0.211478933691978,-0.968579173088074,0.130885601043701,0.211478903889656,-0.980584740638733,0.126661837100983,0.149700954556465,-0.980584681034088,0.126662239432335,0.149700909852982,-0.980584681034088,0.126662164926529,0.149700924754143,-0.985587894916534,0.124086819589138,0.114973619580269,-0.985587954521179,0.124086461961269,0.114973656833172,-0.985587894916534,0.124086767435074,0.114973627030849,-0.992449283599854,0.117603600025177,0.0348394848406315,-0.992449283599854,0.117603845894337,0.0348394624888897,-0.992449283599854,0.11760389059782,0.0348394587635994,-0.945755064487457,0.13584578037262,0.29511570930481,-0.945755183696747,0.135845676064491,0.295115739107132, +-0.945755064487457,0.135845735669136,0.29511570930481,-0.958918333053589,0.133305475115776,0.250410228967667,-0.958918273448944,0.133305907249451,0.250410199165344,-0.958918333053589,0.133305534720421,0.250410228967667,-0.972667694091797,0.129647105932236,0.19263756275177,-0.972667694091797,0.1296466588974,0.192637607455254,-0.972667694091797,0.129646763205528,0.192637592554092,-0.980946123600006,0.126499727368355,0.147453412413597,-0.980946123600006,0.126499727368355,0.147453412413597,-0.980946123600006,0.126499831676483,0.147453412413597,-0.949709594249725,0.135153099894524,0.282462865114212,-0.94970965385437,0.135152965784073,0.282462865114212,-0.949709594249725,0.135153189301491,0.282462865114212,-0.958901464939117,0.133309051394463,0.25047293305397,-0.958901464939117,0.133309185504913,0.250472903251648,-0.958901524543762,0.133309289813042,0.25047293305397,-0.974076986312866,0.129179939627647,0.185705587267876,-0.974076986312866,0.129180133342743,0.185705572366714,-0.974077105522156,0.129180043935776,0.185705587267876,-0.976900219917297,0.128170117735863,0.170992493629456,-0.976900219917297,0.12817008793354,0.170992493629456,-0.976900219917297,0.128170013427734,0.170992493629456,-0.963155508041382,0.132317706942558,0.234144568443298,-0.963155508041382,0.132317796349525,0.234144568443298,-0.963155448436737,0.132317632436752,0.234144553542137,-0.963841497898102,0.132147878408432,0.231401294469833,-0.963841617107391,0.132147625088692,0.231401339173317,-0.963841497898102,0.132147714495659,0.231401309370995,-0.924558579921722,0.138823792338371,0.354851245880127,-0.924558579921722,0.138823643326759,0.354851245880127,-0.924558579921722,0.138823941349983,0.354851216077805,-0.923448741436005,0.138952404260635,0.357679575681686,-0.923448801040649,0.138952597975731,0.357679605484009,-0.92344868183136,0.138952702283859,0.357679545879364,-0.971179962158203,0.130116060376167,0.19969853758812,-0.971179842948914,0.130116194486618,0.199698492884636,-0.971179842948914,0.130116134881973,0.199698492884636,-0.963555455207825,0.132218971848488,0.232549101114273, +-0.963555455207825,0.132218763232231,0.232549116015434,-0.963555455207825,0.132218927145004,0.232549101114273,-0.953947424888611,0.134347647428513,0.268207132816315,-0.953947365283966,0.134347915649414,0.268207132816315,-0.953947365283966,0.134347811341286,0.268207132816315,-0.941404461860657,0.136550202965736,0.308401793241501,-0.941404461860657,0.13655012845993,0.308401823043823,-0.941404461860657,0.136550083756447,0.308401823043823,-0.990744292736053,0.120003797113895,0.0634431168437004,-0.990744292736053,0.120003782212734,0.0634431168437004,-0.990744292736053,0.120003752410412,0.0634431168437004,-0.98222678899765,0.125899374485016,0.139211490750313,-0.98222678899765,0.125899434089661,0.139211475849152,-0.98222678899765,0.125899359583855,0.139211490750313,-0.97851288318634,0.12754037976265,0.162006765604019,-0.978512823581696,0.127540037035942,0.16200678050518,-0.97851288318634,0.127540305256844,0.162006765604019,-0.961694538593292,0.132669538259506,0.239880099892616,-0.961694538593292,0.132669523358345,0.239880099892616,-0.961694598197937,0.132669806480408,0.239880114793777,-0.986744821071625,0.123354859650135,0.105443969368935,-0.986744701862335,0.123355261981487,0.10544391721487,-0.986744701862335,0.123355112969875,0.105443932116032,-0.972074151039124,0.129836902022362,0.195484519004822,-0.972074151039124,0.129836887121201,0.195484519004822,-0.972074210643768,0.12983675301075,0.195484533905983,-0.989209890365601,0.121499210596085,0.0818652957677841,-0.989209890365601,0.121499255299568,0.0818652883172035,-0.989209830760956,0.121499054133892,0.0818653032183647,-0.975640654563904,0.128634214401245,0.177704110741615,-0.975640594959259,0.128633990883827,0.177704125642776,-0.975640594959259,0.128634005784988,0.177704125642776,-0.985431730747223,0.124180495738983,0.116204679012299,-0.985431730747223,0.124180287122726,0.11620470136404,-0.985431730747223,0.124180503189564,0.116204679012299,-0.968301892280579,0.130963996052742,0.21269728243351,-0.968301713466644,0.130964443087578,0.212697207927704,-0.968301832675934,0.13096421957016,0.212697252631187, +-0.981822431087494,0.126093670725822,0.141863152384758,-0.981822431087494,0.126093596220016,0.141863152384758,-0.981822431087494,0.126093432307243,0.141863167285919,-0.962533473968506,0.132469281554222,0.236603558063507,-0.962533473968506,0.13246913254261,0.236603572964668,-0.962533473968506,0.132469117641449,0.236603572964668,-0.988000273704529,0.122470915317535,0.0941081047058105,-0.988000273704529,0.122470930218697,0.0941081047058105,-0.988000273704529,0.122470900416374,0.0941081047058105,-0.974833130836487,0.128919959068298,0.181879743933678,-0.974833130836487,0.128919750452042,0.181879773736,-0.974833130836487,0.128919929265976,0.181879743933678,-0.98688942193985,0.123258277773857,0.104195334017277,-0.986889362335205,0.123258605599403,0.104195304214954,-0.98688942193985,0.123258456587791,0.104195319116116,-0.974840104579926,0.128917634487152,0.181843921542168,-0.974840104579926,0.12891760468483,0.181843921542168,-0.974840044975281,0.128917470574379,0.181843921542168,-0.992698073387146,0.109970517456532,-0.049570269882679,-0.992698013782501,0.109970226883888,-0.0495702363550663,-0.992698013782501,0.109970383346081,-0.0495702512562275,-0.993431210517883,0.114421792328358,-0.00146133976522833,-0.993431150913239,0.114422000944614,-0.00146135897375643,-0.993431150913239,0.11442194879055,-0.00146135443355888,-0.988604545593262,0.104129940271378,-0.108711525797844,-0.988604426383972,0.104130133986473,-0.108711525797844,-0.988604485988617,0.104129873216152,-0.108711503446102,-0.990658402442932,0.106504566967487,-0.0851630717515945,-0.990658402442932,0.106504462659359,-0.0851630643010139,-0.990658402442932,0.106504306197166,-0.0851630493998528,-0.993326783180237,0.112069562077522,-0.0272454880177975,-0.993326842784882,0.112069204449654,-0.0272454563528299,-0.993326902389526,0.11206941306591,-0.0272454768419266,-0.993468403816223,0.11344076693058,-0.0123156039044261,-0.993468403816223,0.113440982997417,-0.0123156243935227,-0.993468403816223,0.113440960645676,-0.012315621599555,-0.986985325813293,0.102568730711937,-0.123853154480457, +-0.986985325813293,0.102568633854389,-0.123853147029877,-0.986985325813293,0.102568708360195,-0.123853154480457,-0.985754132270813,0.101494923233986,-0.134117603302002,-0.985754191875458,0.101495414972305,-0.134117662906647,-0.985754132270813,0.101494990289211,-0.134117603302002,-0.982226252555847,0.12590017914772,0.139215379953384,-0.982226252555847,0.125899583101273,0.139215424656868,-0.982226312160492,0.125899657607079,0.139215424656868,-0.983256936073303,0.125384345650673,0.132230058312416,-0.983256936073303,0.125384256243706,0.132230073213577,-0.983256816864014,0.125384390354156,0.132230043411255,-0.989395797252655,0.121335990726948,0.0798342227935791,-0.989395797252655,0.121336184442043,0.0798342078924179,-0.989395797252655,0.121336124837399,0.0798342078924179,-0.99168998003006,0.118829131126404,0.0493011325597763,-0.99168998003006,0.118829064071178,0.0493011400103569,-0.99168998003006,0.11882907897234,0.0493011362850666,-0.98115086555481,0.126406535506248,0.146165683865547,-0.98115086555481,0.12640655040741,0.146165683865547,-0.98115086555481,0.126406535506248,0.146165683865547,-0.977858185768127,0.121378712356091,0.170472234487534,-0.977858185768127,0.12137795239687,0.170472294092178,-0.977858245372772,0.121378153562546,0.170472294092178,-0.987230479717255,0.116633988916874,0.108501203358173,-0.98723030090332,0.116635367274284,0.108501076698303,-0.987230479717255,0.116634130477905,0.108501188457012,-0.94770759344101,0.129387453198433,0.291734844446182,-0.947707891464233,0.129385590553284,0.291735023260117,-0.947707712650299,0.129386186599731,0.291734963655472,-0.959630489349365,0.126890510320663,0.251014620065689,-0.959630250930786,0.126891955733299,0.251014441251755,-0.959630310535431,0.126891121268272,0.251014530658722,-0.979686856269836,0.120622336864471,0.160199597477913,-0.979687035083771,0.120620928704739,0.160199731588364,-0.979686975479126,0.120621457695961,0.16019968688488,-0.985592663288116,0.117664083838463,0.12150002270937,-0.985592782497406,0.117664195597172,0.12150002270937,-0.985592722892761,0.117664635181427,0.121499985456467, +-0.948005735874176,0.129330158233643,0.290789991617203,-0.948005676269531,0.129330769181252,0.290789932012558,-0.948005795478821,0.129330605268478,0.29078996181488,-0.962325811386108,0.126235336065292,0.240818664431572,-0.962325751781464,0.126236066222191,0.240818589925766,-0.962325870990753,0.126235127449036,0.240818679332733,-0.956080257892609,0.127698689699173,0.263824999332428,-0.956080317497253,0.127697840332985,0.263825058937073,-0.956080436706543,0.127697765827179,0.263825118541718,-0.96224582195282,0.126255288720131,0.241127818822861,-0.962245762348175,0.126255884766579,0.241127759218216,-0.96224582195282,0.126255199313164,0.241127818822861,-0.994235694408417,0.105580225586891,-0.0186657719314098,-0.994235754013062,0.105579726397991,-0.0186657253652811,-0.994235754013062,0.105579547584057,-0.0186657086014748,-0.994071066379547,0.108248218894005,0.0102576185017824,-0.994071066379547,0.108247399330139,0.0102576930075884,-0.994071006774902,0.10824803262949,0.0102576343342662,-0.95317667722702,0.128314033150673,0.273842543363571,-0.953176617622375,0.12831437587738,0.273842513561249,-0.953176617622375,0.128314703702927,0.273842483758926,-0.948642790317535,0.129210352897644,0.288758605718613,-0.948642790317535,0.129210382699966,0.288758605718613,-0.94864284992218,0.129210695624352,0.288758605718613,-0.987916648387909,0.116160251200199,0.102604560554028,-0.987916469573975,0.116160996258259,0.102604478597641,-0.987916529178619,0.116160526871681,0.102604523301125,-0.928573548793793,0.132427990436554,0.346718937158585,-0.928573668003082,0.132427632808685,0.346718996763229,-0.928573668003082,0.132427632808685,0.346718996763229,-0.990718185901642,0.113833449780941,0.0742931216955185,-0.990718245506287,0.113832645118237,0.0742932036519051,-0.990718185901642,0.113833487033844,0.0742931216955185,-0.929362237453461,0.132319107651711,0.344641178846359,-0.929362177848816,0.132319390773773,0.344641149044037,-0.929362237453461,0.132319763302803,0.344641149044037,-0.964390754699707,0.125703543424606,0.232699632644653,-0.964390635490417,0.125704348087311,0.232699558138847, +-0.964390695095062,0.125703930854797,0.23269958794117,-0.946565985679626,0.129596948623657,0.295326441526413,-0.946566045284271,0.129596248269081,0.295326501131058,-0.946565926074982,0.129596516489983,0.295326441526413,-0.976447701454163,0.121924825012684,0.178000703454018,-0.976447761058807,0.121924996376038,0.178000703454018,-0.976447641849518,0.121925100684166,0.178000673651695,-0.957857131958008,0.127301588654518,0.257496029138565,-0.957857012748718,0.127302035689354,0.25749596953392,-0.957857012748718,0.127301692962646,0.257495999336243,-0.978223562240601,0.121231853961945,0.168468683958054,-0.97822368144989,0.121230833232403,0.168468773365021,-0.978223502635956,0.121231488883495,0.168468698859215,-0.958167791366577,0.1272302120924,0.256372630596161,-0.958167791366577,0.127230286598206,0.256372630596161,-0.958167731761932,0.127230897545815,0.256372570991516,-0.983701646327972,0.118717975914478,0.135045617818832,-0.983701467514038,0.118718944489956,0.135045513510704,-0.983701467514038,0.118718557059765,0.135045543313026,-0.965055704116821,0.125527456402779,0.230022475123405,-0.965055763721466,0.125526681542397,0.230022549629211,-0.965055763721466,0.125527068972588,0.230022504925728,-0.990672051906586,0.113878585398197,0.0748364478349686,-0.990672051906586,0.113879069685936,0.074836403131485,-0.990672051906586,0.113878965377808,0.0748364180326462,-0.970710158348083,0.123892068862915,0.205846041440964,-0.970710098743439,0.123893246054649,0.205845966935158,-0.970710158348083,0.123891979455948,0.205846056342125,-0.980223119258881,0.12038940936327,0.157064378261566,-0.980223119258881,0.120388597249985,0.157064437866211,-0.980223178863525,0.120388150215149,0.157064482569695,-0.950268566608429,0.128898665308952,0.283504486083984,-0.950268626213074,0.128898128867149,0.283504515886307,-0.950268626213074,0.128898203372955,0.283504515886307,-0.978389978408813,0.121163919568062,0.167548030614853,-0.978390038013458,0.121163338422775,0.167548090219498,-0.978389978408813,0.121163949370384,0.167548030614853,-0.958365619182587,0.127184942364693,0.255654752254486, +-0.958365559577942,0.127185225486755,0.255654722452164,-0.958365559577942,0.127185568213463,0.255654692649841,-0.959608614444733,0.126895949244499,0.251095473766327,-0.959608435630798,0.126896724104881,0.251095354557037,-0.959608495235443,0.126896277070045,0.251095414161682,-0.933131635189056,0.131786271929741,0.33451122045517,-0.933131754398346,0.131786048412323,0.334511250257492,-0.933131694793701,0.131785795092583,0.334511250257492,-0.977653443813324,0.121459670364857,0.171585217118263,-0.977653503417969,0.12145908921957,0.171585261821747,-0.977653384208679,0.121459402143955,0.171585217118263,-0.970690429210663,0.123897820711136,0.205935478210449,-0.970690429210663,0.123898074030876,0.205935448408127,-0.970690369606018,0.123898148536682,0.205935433506966,-0.976543843746185,0.121888659894466,0.177497372031212,-0.976543843746185,0.121889360249043,0.177497327327728,-0.976543784141541,0.121888734400272,0.177497372031212,-0.912350237369537,0.134392753243446,0.386724174022675,-0.912350475788116,0.134391710162163,0.386724352836609,-0.912350356578827,0.134392082691193,0.386724233627319,-0.886256635189056,0.136759623885155,0.442544847726822,-0.886256754398346,0.136758774518967,0.442544907331467,-0.886256635189056,0.136760011315346,0.4425448179245,-0.987830996513367,0.116220310330391,0.103358633816242,-0.987830758094788,0.116221614181995,0.103358499705791,-0.987830758094788,0.11622130125761,0.103358529508114,-0.987586975097656,0.116391934454441,0.105475641787052,-0.987586915493011,0.11639167368412,0.105475649237633,-0.987586915493011,0.116391606628895,0.105475656688213,-0.964146971702576,0.125768095254898,0.233672946691513,-0.964146971702576,0.125768065452576,0.233672946691513,-0.964146971702576,0.125768020749092,0.233672946691513,-0.965147435665131,0.125502541661263,0.229651421308517,-0.965147256851196,0.125503301620483,0.22965133190155,-0.965147316455841,0.125502496957779,0.229651406407356,-0.994183838367462,0.107638478279114,0.00355674955062568,-0.994183897972107,0.107637129724026,0.00355687248520553,-0.994183897972107,0.107637882232666,0.00355680473148823, +-0.993943989276886,0.103979043662548,-0.0355515964329243,-0.993943691253662,0.103980965912342,-0.0355517715215683,-0.993943810462952,0.103979736566544,-0.0355516597628593,-0.991300523281097,0.113229632377625,0.0670996457338333,-0.991300702095032,0.113228030502796,0.0670997872948647,-0.991300642490387,0.113228268921375,0.0670997723937035,-0.99398547410965,0.108597964048386,0.0141266696155071,-0.99398535490036,0.108598075807095,0.0141266556456685,-0.99398535490036,0.108598127961159,0.0141266509890556,-0.994257748126984,0.106933817267418,-0.0041091931052506,-0.994257628917694,0.106934882700443,-0.00410929229110479,-0.994257748126984,0.106933869421482,-0.00410919776186347,-0.993025958538055,0.101634129881859,-0.0597505830228329,-0.99302613735199,0.101632468402386,-0.0597504302859306,-0.993025958538055,0.101633191108704,-0.0597504898905754,-0.915722370147705,0.134019553661346,0.378802388906479,-0.915722072124481,0.134022638201714,0.378802090883255,-0.91572231054306,0.134020283818245,0.378802329301834,-0.954910755157471,0.127952843904495,0.267906159162521,-0.954911112785339,0.127948716282845,0.26790651679039,-0.954910933971405,0.127950578927994,0.267906337976456,-0.975760340690613,0.122179836034775,0.181559547781944,-0.975760102272034,0.122181832790375,0.18155936896801,-0.975760161876678,0.122181415557861,0.181559398770332,-0.990902304649353,0.113648593425751,0.0720877423882484,-0.990902364253998,0.113648071885109,0.072087787091732,-0.990902304649353,0.113648533821106,0.072087749838829,-0.691642820835114,0.140448108315468,0.708452165126801,-0.691642343997955,0.140452891588211,0.708451747894287,-0.691642582416534,0.140450596809387,0.708451926708221,-0.933036923408508,0.131802201271057,0.334768980741501,-0.933037221431732,0.131799638271332,0.33476921916008,-0.933037221431732,0.131799563765526,0.33476921916008,-0.975918412208557,0.122126899659634,0.180743739008904,-0.97591906785965,0.122120752930641,0.180744305253029,-0.97591894865036,0.122122839093208,0.180744126439095,-0.974451124668121,0.122650541365147,0.188154429197311, +-0.974450349807739,0.122656598687172,0.188153833150864,-0.974450767040253,0.12265258282423,0.188154205679893,-0.974712014198303,0.122564144432545,0.186854347586632,-0.974712669849396,0.12255884706974,0.186854854226112,-0.974712550640106,0.122560150921345,0.186854735016823,-0.978911459445953,0.120948202908039,0.164633139967918,-0.978911101818085,0.120950803160667,0.164632886648178,-0.978911340236664,0.120949491858482,0.164633020758629,-0.972263991832733,0.123396031558514,0.198686078190804,-0.972264349460602,0.123393557965755,0.198686331510544,-0.972264230251312,0.123394750058651,0.198686227202415,-0.983044683933258,0.11905624717474,0.139459475874901,-0.983044505119324,0.119058154523373,0.139459297060966,-0.983044445514679,0.119057573378086,0.13945934176445,-0.990040600299835,0.115633919835091,0.0803020521998405,-0.990040898323059,0.115631982684135,0.0803022384643555,-0.99004065990448,0.115633308887482,0.0803021118044853,-0.942984044551849,0.131354153156281,0.3058220744133,-0.942983865737915,0.131356850266457,0.305821865797043,-0.94298392534256,0.1313556432724,0.305821925401688,-0.985869646072388,0.118686303496361,0.11821436882019,-0.985869884490967,0.118683882057667,0.118214599788189,-0.985869765281677,0.118685141205788,0.118214480578899,0.0377641506493092,-0.0961553975939751,-0.994649708271027,0.0377647578716278,-0.0961498618125916,-0.994650304317474,0.0377644002437592,-0.0961531326174736,-0.99465000629425,0.164922758936882,0.0729725360870361,0.983603298664093,0.164923474192619,0.0729790404438972,0.983602821826935,0.164923444390297,0.0729788318276405,0.98360276222229,-0.988690257072449,0.11676199734211,0.0941180288791656,-0.988689839839935,0.116765938699245,0.0941176638007164,-0.988690078258514,0.116763934493065,0.0941178500652313,-0.993987739086151,0.106155678629875,-0.02682089433074,-0.993988156318665,0.106151856482029,-0.0268205404281616,-0.99398797750473,0.106153629720211,-0.0268207043409348,-0.979052782058716,0.122077621519566,0.162950128316879,-0.979052603244781,0.122079312801361,0.162949979305267,-0.979052603244781,0.12207904458046,0.16295000910759, +-0.989461958408356,0.116140581667423,0.0864660814404488,-0.989462077617645,0.116140469908714,0.0864661037921906,-0.989462018013,0.116140358150005,0.0864661037921906,-0.977419912815094,0.12273845076561,0.172004744410515,-0.977420091629028,0.122737541794777,0.172004848718643,-0.977419912815094,0.122738353908062,0.172004759311676,-0.987669110298157,0.117514096200466,0.103441759943962,-0.987668871879578,0.11751614511013,0.103441566228867,-0.987668991088867,0.117514990270138,0.103441677987576,-0.990437984466553,0.115262381732464,0.0758103504776955,-0.990438222885132,0.115261137485504,0.075810469686985,-0.990438103675842,0.115261174738407,0.0758104622364044,-0.993783175945282,0.1052555590868,-0.0362830348312855,-0.993782997131348,0.105256393551826,-0.0362831093370914,-0.993783056735992,0.105255775153637,-0.036283053457737,-0.985239505767822,0.11905911564827,0.122996136546135,-0.985239565372467,0.119058780372143,0.122996166348457,-0.985239565372467,0.119058668613434,0.122996173799038,-0.992763161659241,0.112410485744476,0.0422508530318737,-0.992763221263885,0.112410038709641,0.042250894010067,-0.992763221263885,0.112410329282284,0.0422508679330349,-0.979667663574219,0.121818587183952,0.159409806132317,-0.979667663574219,0.121818847954273,0.159409776329994,-0.979667663574219,0.121818721294403,0.159409791231155,-0.982567667961121,0.120485939085484,0.141577377915382,-0.982567548751831,0.120485961437225,0.14157734811306,-0.982567667961121,0.120485804975033,0.141577377915382,-0.99382209777832,0.109989739954472,0.0148356994614005,-0.993821918964386,0.109990566968918,0.0148356202989817,-0.993822038173676,0.109989576041698,0.014835711568594,-0.99310439825058,0.111802570521832,0.0352681986987591,-0.993104636669159,0.111801341176033,0.0352683179080486,-0.993104517459869,0.111801594495773,0.0352682881057262,-0.989453613758087,0.116147294640541,0.0865537524223328,-0.989453554153442,0.11614678800106,0.0865537971258163,-0.989453494548798,0.11614753305912,0.0865537226200104,-0.985458493232727,0.11893005669117,0.121355660259724,-0.985458433628082,0.118930593132973,0.121355608105659, +-0.985458433628082,0.118930801749229,0.121355593204498,-0.991909086704254,0.113642819225788,0.0565834641456604,-0.991909146308899,0.113643147051334,0.0565834417939186,-0.991909146308899,0.113643050193787,0.0565834529697895,-0.985998511314392,0.118606828153133,0.117214985191822,-0.985998570919037,0.118606299161911,0.117215029895306,-0.985998630523682,0.118606753647327,0.117215007543564,-0.994017362594604,0.109105423092842,0.00505352625623345,-0.99401730298996,0.109105713665485,0.00505349924787879,-0.99401730298996,0.109105862677097,0.00505348574370146,-0.989081740379333,0.116454228758812,0.0903093367815018,-0.989081859588623,0.116453923285007,0.0903093740344048,-0.989081799983978,0.116454385221004,0.0903093293309212,-0.988134920597076,0.117181085050106,0.0992874875664711,-0.988134801387787,0.117182217538357,0.0992873832583427,-0.988134860992432,0.117181554436684,0.0992874428629875,-0.973908543586731,0.12402505427599,0.190052524209023,-0.973908603191376,0.124025285243988,0.190052539110184,-0.973908603191376,0.124024398624897,0.190052583813667,-0.9917271733284,0.11387088149786,0.0592510774731636,-0.991727352142334,0.113869197666645,0.0592512339353561,-0.991727232933044,0.113869987428188,0.0592511594295502,-0.942249238491058,0.131478428840637,0.308025628328323,-0.942249178886414,0.131478905677795,0.308025568723679,-0.942249178886414,0.13147921860218,0.308025538921356,-0.987560629844666,0.117590248584747,0.10438659787178,-0.987560570240021,0.117590799927711,0.104386545717716,-0.987560570240021,0.117590561509132,0.104386568069458,-0.992832481861115,0.102881856262684,-0.060820959508419,-0.992832481861115,0.102881856262684,-0.0608209557831287,-0.99283242225647,0.102881610393524,-0.0608209297060966,-0.971973896026611,0.124669626355171,0.199309498071671,-0.971973896026611,0.124669536948204,0.199309498071671,-0.971973896026611,0.124669402837753,0.199309512972832,-0.986392974853516,0.0954183042049408,-0.133882254362106,-0.986392915248871,0.0954179614782333,-0.133882209658623,-0.986392915248871,0.0954181328415871,-0.133882224559784, +-0.986414134502411,0.118348374962807,0.113933600485325,-0.986414074897766,0.118348732590675,0.113933563232422,-0.986414074897766,0.118348561227322,0.113933585584164,-0.993896245956421,0.109702527523041,0.011643691919744,-0.993896305561066,0.109702304005623,0.0116437133401632,-0.993896305561066,0.109702363610268,0.0116437068209052,-0.986858129501343,0.11806333065033,0.110326915979385,-0.986858129501343,0.118063554167747,0.110326893627644,-0.986858129501343,0.118063397705555,0.110326908528805,-0.993506252765656,0.110925048589706,0.0253179892897606,-0.993506252765656,0.110925108194351,0.0253179837018251,-0.993506371974945,0.110924907028675,0.0253180060535669,-0.986895084381104,0.118039451539516,0.110021971166134,-0.986895084381104,0.118039086461067,0.110022008419037,-0.986895084381104,0.118039228022099,0.110021993517876,-0.989494979381561,0.1161123290658,0.0861256644129753,-0.989495098590851,0.116112016141415,0.0861257016658783,-0.989494979381561,0.11611246317625,0.0861256495118141,-0.97990745306015,0.121714867651463,0.158009231090546,-0.979907333850861,0.121715947985649,0.158009126782417,-0.979907393455505,0.12171533703804,0.158009186387062,-0.989930927753448,0.115732982754707,0.0815026313066483,-0.989930987358093,0.115732155740261,0.0815027058124542,-0.989930987358093,0.11573239415884,0.0815026834607124,-0.984392285346985,0.119536317884922,0.129162430763245,-0.984392404556274,0.119536012411118,0.129162475466728,-0.98439234495163,0.119536586105824,0.129162430763245,-0.952624320983887,0.129572495818138,0.275168836116791,-0.952624261379242,0.129573911428452,0.275168746709824,-0.952624261379242,0.129573196172714,0.275168776512146,-0.936922192573547,0.132331326603889,0.32352003455162,-0.936922311782837,0.132330536842346,0.323520094156265,-0.936922311782837,0.132330596446991,0.323520094156265,-0.978809058666229,0.122180230915546,0.164332091808319,-0.978808999061584,0.122180007398129,0.164332091808319,-0.97880893945694,0.122180283069611,0.164332062005997,-0.979636549949646,0.121831804513931,0.159590974450111,-0.979636549949646,0.121831685304642,0.159590989351273, +-0.979636490345001,0.121832072734833,0.15959095954895,-0.977721214294434,0.122619554400444,0.170369148254395,-0.977721214294434,0.122620619833469,0.170369058847427,-0.977721273899078,0.122619964182377,0.170369118452072,-0.985385179519653,0.118974387645721,0.121906332671642,-0.985385298728943,0.118973396718502,0.121906422078609,-0.985385358333588,0.118973776698112,0.121906399726868,-0.993728399276733,0.110304333269596,0.0183521565049887,-0.993728339672089,0.11030475050211,0.0183521173894405,-0.993728399276733,0.110304683446884,0.018352122977376,-0.993706405162811,0.104992367327213,-0.0390400551259518,-0.993706405162811,0.104992538690567,-0.039040070027113,-0.993706464767456,0.104992315173149,-0.0390400514006615,-0.886178135871887,0.1377824395895,0.442384779453278,-0.886178076267242,0.137783080339432,0.442384719848633,-0.886178195476532,0.137782111763954,0.4423848092556,-0.92028272151947,0.134571090340614,0.367383122444153,-0.920282900333405,0.134569451212883,0.367383301258087,-0.920282900333405,0.134570300579071,0.367383241653442,-0.99362450838089,0.106753639876842,-0.0362495481967926,-0.993624567985535,0.106752827763557,-0.0362494699656963,-0.993624567985535,0.106753140687943,-0.036249503493309,-0.99314272403717,0.11301976442337,0.02990448102355,-0.993142664432526,0.113020375370979,0.0299044232815504,-0.993142604827881,0.113020040094852,0.0299044493585825,-0.971241354942322,0.126976951956749,0.201412811875343,-0.971241354942322,0.126976564526558,0.201412841677666,-0.971241354942322,0.126976609230042,0.201412841677666,-0.989640414714813,0.0999256521463394,-0.103085830807686,-0.989640414714813,0.0999257937073708,-0.103085838258266,-0.989640414714813,0.0999256521463394,-0.103085830807686,-0.987258911132813,0.119544088840485,0.105019569396973,-0.987258851528168,0.119544118642807,0.105019561946392,-0.987258911132813,0.11954391002655,0.105019584298134,-0.992119193077087,0.114837884902954,0.0501174740493298,-0.992119252681732,0.114837557077408,0.0501175038516521,-0.992119312286377,0.114837691187859,0.0501175001263618,-0.978914499282837,0.124087154865265,0.162262097001076, +-0.978914380073547,0.124087236821651,0.162262067198753,-0.978914380073547,0.124087259173393,0.162262067198753,-0.989520967006683,0.11774568259716,0.08357173204422,-0.989521026611328,0.117745906114578,0.0835717171430588,-0.989520967006683,0.117745690047741,0.08357173204422,-0.971204876899719,0.126988872885704,0.201581507921219,-0.971204817295074,0.126988455653191,0.201581507921219,-0.971204817295074,0.126988664269447,0.201581493020058,-0.984859764575958,0.121095336973667,0.124045789241791,-0.984859764575958,0.121095292270184,0.124045796692371,-0.984859645366669,0.121095538139343,0.124045751988888,-0.961530745029449,0.129786759614944,0.242103323340416,-0.961530745029449,0.129787012934685,0.242103308439255,-0.961530804634094,0.129787057638168,0.242103338241577,-0.991329491138458,0.115880407392979,0.0619486048817635,-0.991329550743103,0.115880541503429,0.0619486011564732,-0.991329550743103,0.115880437195301,0.0619486086070538,-0.976896405220032,0.124927394092083,0.173397198319435,-0.976896405220032,0.124927386641502,0.173397198319435,-0.976896405220032,0.124927274882793,0.173397213220596,-0.987112998962402,0.119647026062012,0.106267116963863,-0.987113058567047,0.119646728038788,0.106267146766186,-0.987112939357758,0.119646906852722,0.106267109513283,-0.969967007637024,0.127388924360275,0.207210153341293,-0.969966948032379,0.127389505505562,0.20721010863781,-0.969967007637024,0.127389132976532,0.207210138440132,-0.993755042552948,0.111160159111023,0.00972265377640724,-0.993754982948303,0.111159764230251,0.00972268916666508,-0.993754982948303,0.111159801483154,0.00972268544137478,-0.989919602870941,0.117377653717995,0.0792570486664772,-0.989919602870941,0.117377705872059,0.0792570486664772,-0.989919602870941,0.117377683520317,0.0792570486664772,-0.989030539989471,0.11817367374897,0.0886205509305,-0.989030539989471,0.118173591792583,0.0886205583810806,-0.989030539989471,0.118173658847809,0.0886205509305,-0.981996238231659,0.12265233695507,0.143665656447411,-0.981996238231659,0.122652433812618,0.143665641546249,-0.981996238231659,0.122652404010296,0.143665656447411, +-0.982324361801147,0.122486531734467,0.14154814183712,-0.982324361801147,0.12248657643795,0.14154814183712,-0.982324361801147,0.122486501932144,0.141548156738281,-0.976601243019104,0.125044703483582,0.174968034029007,-0.976601302623749,0.125044524669647,0.174968048930168,-0.976601243019104,0.125044614076614,0.174968048930168,-0.966393053531647,0.128469243645668,0.222665816545486,-0.966393053531647,0.128469362854958,0.222665816545486,-0.966393053531647,0.128469333052635,0.222665816545486,-0.963451743125916,0.129285112023354,0.234619051218033,-0.963451862335205,0.129284963011742,0.234619095921516,-0.963451743125916,0.129285082221031,0.234619051218033,-0.970965147018433,0.1270672082901,0.202683463692665,-0.970965147018433,0.127067521214485,0.202683433890343,-0.970965147018433,0.127067372202873,0.202683448791504,-0.975781559944153,0.125363975763321,0.179260730743408,-0.975781559944153,0.125364020466805,0.179260715842247,-0.975781500339508,0.125363796949387,0.179260730743408,-0.945880830287933,0.133193045854568,0.295921057462692,-0.945880830287933,0.133192375302315,0.295921087265015,-0.945880770683289,0.133192852139473,0.295921057462692,-0.959651827812195,0.13025638461113,0.249202400445938,-0.959651708602905,0.130256503820419,0.249202355742455,-0.959651708602905,0.130256861448288,0.249202325940132,-0.923295080661774,0.1367077678442,0.358938962221146,-0.923295021057129,0.136708468198776,0.358938872814178,-0.923295021057129,0.136708289384842,0.358938902616501,-0.951857805252075,0.132015407085419,0.276656568050385,-0.951857805252075,0.132014408707619,0.276656627655029,-0.95185774564743,0.13201530277729,0.276656538248062,-0.938522219657898,0.134480133652687,0.317948311567307,-0.938522279262543,0.134479910135269,0.317948311567307,-0.938522100448608,0.134481087327003,0.317948222160339,-0.972828030586243,0.126439198851585,0.193955585360527,-0.972827851772308,0.126440808176994,0.193955436348915,-0.972827911376953,0.126440122723579,0.19395549595356,-0.971503794193268,0.126890361309052,0.20019793510437,-0.971503853797913,0.126889646053314,0.200198009610176, +-0.971503853797913,0.126889660954475,0.200198009610176,-0.990101873874664,0.117202259600163,0.0772134363651276,-0.99010169506073,0.117204062640667,0.0772132650017738,-0.99010181427002,0.117202647030354,0.0772133991122246,-0.00620002252981067,0.0957842245697975,0.995382905006409,-0.00620004953816533,0.095783956348896,0.995382845401764,-0.00619974685832858,0.0957867056131363,0.99538266658783,-0.272817820310593,-0.0614705309271812,-0.960099875926971,-0.272817045450211,-0.0614634938538074,-0.960100591182709,-0.272817343473434,-0.0614662356674671,-0.960100293159485,-0.980498671531677,0.123374506831169,0.152974113821983,-0.980498373508453,0.123376965522766,0.152973875403404,-0.980498671531677,0.123375616967678,0.152974024415016,-0.993408203125,0.112361937761307,0.0226924270391464,-0.993408441543579,0.112360581755638,0.022692559286952,-0.993408381938934,0.112360492348671,0.0226925648748875,-0.970513820648193,0.127214670181274,0.204742237925529,-0.970513939857483,0.127213537693024,0.204742342233658,-0.970513880252838,0.127214014530182,0.204742297530174,-0.985740780830383,0.120557256042957,0.117393597960472,-0.985740661621094,0.120557516813278,0.117393560707569,-0.985740661621094,0.120557710528374,0.117393538355827,-0.971054017543793,0.12703800201416,0.202275678515434,-0.971053957939148,0.127038508653641,0.202275633811951,-0.971054077148438,0.127038270235062,0.202275693416595,-0.984281957149506,0.12143163383007,0.128231599926949,-0.984282076358795,0.1214310079813,0.128231659531593,-0.98428201675415,0.12143138051033,0.128231629729271,-0.902467846870422,0.13905593752861,0.407695025205612,-0.902467787265778,0.139056220650673,0.40769499540329,-0.902467787265778,0.139056220650673,0.40769499540329,-0.926301538944244,0.136308386921883,0.351262986660004,-0.926301419734955,0.136308699846268,0.351262927055359,-0.926301538944244,0.136308431625366,0.351262986660004,-0.952240884304047,0.131935477256775,0.275373071432114,-0.952240943908691,0.131934985518456,0.275373131036758,-0.952241003513336,0.131935209035873,0.275373131036758,-0.964511752128601,0.0830411612987518,-0.250641703605652, +-0.964511930942535,0.0830406546592712,-0.250641673803329,-0.964511811733246,0.083040788769722,-0.250641673803329,-0.975910007953644,0.0892300307750702,-0.199092209339142,-0.975909948348999,0.0892303511500359,-0.199092239141464,-0.975909948348999,0.0892301574349403,-0.199092224240303,-0.985665440559387,0.0960844680666924,-0.138678222894669,-0.985665440559387,0.0960843116044998,-0.138678207993507,-0.985665440559387,0.0960842445492744,-0.138678193092346,-0.991824448108673,0.102792270481586,-0.0756178498268127,-0.991824507713318,0.102792643010616,-0.0756178945302963,-0.991824448108673,0.102792210876942,-0.0756178498268127,0.99708890914917,-0.064409613609314,0.0408055707812309,0.998693585395813,0.00882722809910774,0.0503327250480652,0.996286153793335,0.0582378953695297,0.0634218975901604,0.998407185077667,-0.0408358238637447,0.038929358124733,0.999158024787903,0.0100238732993603,0.0397835746407509,0.994322717189789,0.0943555533885956,0.0491890087723732,0.985037207603455,0.161481931805611,0.0602106973528862,0.997105598449707,0.063172772526741,0.0423038005828857,0.997199833393097,0.0640242397785187,0.0386451110243797,0.985177457332611,0.162228271365166,0.0557437092065811,0.981088876724243,0.185128435492516,0.0564984865486622,0.995221078395844,0.0896667614579201,0.0386634320020676,0.998647511005402,-0.0394871979951859,0.0338229946792126,0.996480345726013,0.059189535677433,0.0593609400093555,0.994413018226624,0.0822539404034615,0.066159226000309,0.999009728431702,-0.0299956407397985,0.0328641831874847,0.960092782974243,-0.278483152389526,0.0258690789341927,0.963685989379883,-0.265348762273788,0.0299916602671146,0.986084878444672,-0.155261501669884,0.0594173967838287,0.9840087890625,-0.167891815304756,0.0594898127019405,0.963851690292358,-0.264935880899429,0.0282676462084055,0.973512411117554,-0.224852561950684,0.0414112322032452,0.988475382328033,-0.141599655151367,0.0535360686480999,0.986320078372955,-0.154638960957527,0.0570921376347542,0.988269209861755,-0.148669451475143,0.0349480658769608,0.989127993583679,-0.140298917889595,0.0440705753862858, +0.996403634548187,-0.066006988286972,0.0531313195824623,0.996999204158783,-0.0468249879777431,0.0616456568241119,0.987029671669006,-0.158058330416679,0.0281071774661541,0.988353133201599,-0.148368194699287,0.0338377319276333,0.997031569480896,-0.0467095002532005,0.0612070187926292,0.997035980224609,-0.0402717106044292,0.0655562579631805,0.994377076625824,0.0944913998246193,0.0478084981441498,0.99309253692627,0.107922546565533,0.0460430048406124,0.973714828491211,0.223544239997864,0.0436739549040794,0.985372960567474,0.163515940308571,0.0479867272078991,0.993279337882996,0.107977539300919,0.0416797623038292,0.991617202758789,0.123068705201149,0.0393646396696568,0.968257486820221,0.248767197132111,0.0243373401463032,0.973902404308319,0.223959252238274,0.0368303768336773,0.973913729190826,0.223987817764282,0.0363529399037361,0.96791934967041,0.249119251966476,0.0327379368245602,0.955694377422333,0.293553918600082,0.0217806249856949,0.965500175952911,0.258790791034698,0.0289248283952475,0.985573709011078,0.165868312120438,0.0336474888026714,0.97379744052887,0.223716095089912,0.0408613905310631,0.965207457542419,0.257369935512543,0.0462092906236649,0.981316089630127,0.18835785984993,0.0392428487539291,0.892537415027618,-0.448547154664993,0.0467189624905586,0.910976946353912,-0.410097539424896,0.0440585948526859,0.932830512523651,-0.357082664966583,0.0481585450470448,0.922489285469055,-0.382501274347305,0.0520231388509274,0.910804152488708,-0.410238772630692,0.046259231865406,0.95225465297699,-0.301703244447708,0.0467578172683716,0.963214933872223,-0.264753460884094,0.0460740402340889,0.933356761932373,-0.356337875127792,0.0432282127439976,0.934408247470856,-0.354706525802612,0.032626885920763,0.963477313518524,-0.26446196436882,0.0420884229242802,0.973281860351563,-0.225292146205902,0.0443384014070034,0.962242662906647,-0.268637925386429,0.0438491404056549,0.925206303596497,-0.378331184387207,0.0293067656457424,0.934109449386597,-0.35519203543663,0.0357543006539345,0.960753321647644,-0.271592020988464,0.0564894452691078, +0.956742465496063,-0.285908252000809,0.0538550987839699,0.992181718349457,0.12219549715519,0.0253730975091457,0.991248250007629,0.129771545529366,0.0242173187434673,0.967199325561523,0.253758996725082,0.0114852041006088,0.968276619911194,0.248744264245033,0.0238042492419481,0.991517961025238,0.12881126999855,0.0173208676278591,0.989958107471466,0.140779942274094,0.0128120426088572,0.97442501783371,0.224711984395981,-0.000722520635463297,0.967499136924744,0.252820163965225,0.00523582007735968,0.967233180999756,0.253659456968307,0.01081916783005,0.973333656787872,0.228913500905037,0.0148382382467389,0.967111825942993,0.254349201917648,0.00110712670721114,0.956707119941711,0.291045308113098,-0.00206761388108134,0.968552052974701,0.248356819152832,0.0150327924638987,0.967196345329285,0.25376757979393,0.0115426210686564,0.955838084220886,0.293575644493103,0.0136719569563866,0.955719590187073,0.293526768684387,0.0210320726037025,0.993578016757965,-0.102860175073147,0.0471440441906452,0.999279737472534,0.00605608802288771,0.0374619662761688,0.999122142791748,-0.00324190710671246,0.0417685806751251,0.995595812797546,-0.0846371203660965,0.0403192639350891,0.999178171157837,0.00626443140208721,0.0400491915643215,0.992040991783142,0.12244625389576,0.0293525326997042,0.993479013442993,0.108040988445282,0.0364235155284405,0.999251365661621,-0.00323725608177483,0.0385517179965973,0.999152719974518,-0.00324083887971938,0.0410309471189976,0.993381202220917,0.108009181916714,0.0390877090394497,0.994481563568115,0.094766192138195,0.0450102612376213,0.999210715293884,0.0101810209453106,0.0383971706032753,0.995532751083374,-0.0846557691693306,0.0418084375560284,0.999113798141479,-0.00324219278991222,0.0419677868485451,0.998811304569244,0.00910472497344017,0.047887746244669,0.997116267681122,-0.0643370598554611,0.0402474068105221,0.973223149776459,-0.22540120780468,0.0450665727257729,0.963129818439484,-0.264843463897705,0.047316949814558,0.985005974769592,-0.164922386407852,0.0506350994110107,0.988406121730804,-0.141727104783058,0.0544683337211609, +0.962941646575928,-0.265036016702652,0.0499939993023872,0.951828300952911,-0.301762133836746,0.0544283278286457,0.978449046611786,-0.199885457754135,0.0518004037439823,0.984908640384674,-0.164968907833099,0.0523471459746361,0.98503577709198,-0.164907708764076,0.0500995367765427,0.978369772434235,-0.199802905321121,0.0535851046442986,0.993560016155243,-0.102813504636288,0.0476242750883102,0.995019018650055,-0.0847833678126335,0.0524308606982231,0.988992631435394,-0.140585243701935,0.0461465045809746,0.985032439231873,-0.164909422397614,0.0501613542437553,0.995111346244812,-0.0847630575299263,0.050684068351984,0.996346592903137,-0.0661251172423363,0.0540456511080265,0.99357795715332,-0.102860026061535,0.0471456497907639,0.997560858726501,-0.0529817976057529,0.0454448983073235,0.999285876750946,0.0203734468668699,0.0318226665258408,0.999289989471436,0.00603439845144749,0.0371926687657833,0.9975745677948,-0.0530596449971199,0.0450527407228947,0.999385833740234,-0.000367295899195597,0.0350407809019089,0.997847557067871,0.0631133839488029,0.0178024899214506,0.999316275119781,0.0202313102781773,0.0309493895620108,0.999166309833527,0.0209020562469959,0.0350709408521652,0.99735963344574,0.0663065612316132,0.0296208467334509,0.989997625350952,0.140578836202621,0.0119290444999933,0.991460919380188,0.12902994453907,0.018887659534812,0.99931812286377,0.00597350159659982,0.0364366583526134,0.999078094959259,0.0212640855461359,0.0372962206602097,0.991319119930267,0.129535257816315,0.0225167311728001,0.992053985595703,0.122424349188805,0.0290037114173174,0.990016579627991,0.140481561422348,0.0115019157528877,0.997275948524475,0.0667710453271866,0.0313426926732063,0.988879263401031,0.148457437753677,0.00885439850389957,0.975050449371338,0.221666350960732,-0.0118686780333519,0.997862935066223,0.062993660569191,0.0173599999397993,0.99928867816925,0.000463041593320668,0.0377091728150845,0.998045444488525,0.0584953241050243,0.0219897907227278,0.989945530891418,0.141026273369789,-0.0109353289008141,0.989479243755341,0.144669458270073,-0.00125488289631903, +0.997406005859375,0.0636497810482979,0.0336164571344852,0.996058881282806,0.0848574861884117,0.0258090887218714,0.984479784965515,0.174862861633301,-0.0149196442216635,0.97476601600647,0.223134115338326,-0.00651070103049278,0.988641440868378,0.149781227111816,0.01239806227386,0.982752025127411,0.184685036540031,0.00948318000882864,0.9676393866539,0.252261161804199,-0.00621125940233469,0.871310234069824,-0.484199792146683,0.0798062905669212,0.886704802513123,-0.457413733005524,0.0672854855656624,0.892427682876587,-0.446727603673935,0.0633033439517021,0.872065603733063,-0.484033048152924,0.0722054541110992,0.886633694171906,-0.455995708703995,0.077128142118454,0.926926851272583,-0.368489861488342,0.0708665624260902,0.94107985496521,-0.331407755613327,0.0673626214265823,0.892249643802643,-0.446617931127548,0.0665055885910988,0.892698884010315,-0.446897059679031,0.0580672584474087,0.941473245620728,-0.331943422555923,0.058666042983532,0.951490938663483,-0.301793187856674,0.0598836205899715,0.91038715839386,-0.410558193922043,0.0513531193137169,0.872926950454712,-0.484534233808517,0.0567897409200668,0.892463982105255,-0.44675013422966,0.0626291707158089,0.909308195114136,-0.41126948595047,0.0633720234036446,0.891820847988129,-0.449139773845673,0.0541205555200577,0.999710977077484,-0.00388766475953162,0.0237244833260775,0.996620774269104,-0.0708376243710518,0.0415823757648468,0.998327016830444,-0.0412298962473869,0.0405400209128857,0.99873298406601,0.0502120442688465,0.00334279937669635,0.996708750724792,-0.0730604231357574,0.0351289249956608,0.987472832202911,-0.146201327443123,0.05935288220644,0.984925329685211,-0.157513812184334,0.0714960470795631,0.99848860502243,-0.0505472421646118,0.0215756725519896,0.99848860502243,-0.0505591779947281,0.0215513538569212,0.98494291305542,-0.155966460704803,0.0745780691504478,0.984133660793304,-0.158881321549416,0.078978531062603,0.998511552810669,-0.050928957760334,0.0195190776139498,0.998640179634094,0.0517020337283611,0.00669360952451825,0.998213350772858,-0.0388320311903954,0.0454116016626358, +0.998152732849121,-0.0341845080256462,0.0502270795404911,0.997423648834229,0.0717324987053871,-0.000721708405762911,0.918870687484741,-0.385388851165771,0.0845713019371033,0.931798696517944,-0.355972588062286,0.0709554329514503,0.906276106834412,-0.4132259786129,0.0889265164732933,0.888611495494843,-0.447033673524857,0.102618359029293,0.932552099227905,-0.350374162197113,0.0870894342660904,0.962491393089294,-0.264118582010269,0.0620629787445068,0.947669208049774,-0.310466319322586,0.0743893906474113,0.906444668769836,-0.410183161497116,0.100537791848183,0.906200885772705,-0.414118051528931,0.0854761525988579,0.947752833366394,-0.312989741563797,0.0616604872047901,0.926920473575592,-0.368451446294785,0.0711490660905838,0.886487782001495,-0.45462840795517,0.0863281264901161,0.887975990772247,-0.452379882335663,0.0827718824148178,0.906143069267273,-0.414723008871078,0.0831240341067314,0.886487782001495,-0.454628467559814,0.0863276645541191,0.871303260326385,-0.484079569578171,0.0806078836321831,0.9935702085495,-0.102839954197407,0.0473520271480083,0.98187792301178,-0.179990604519844,0.0593236945569515,0.990800440311432,-0.12550662457943,0.0506237298250198,0.997836709022522,-0.0547871887683868,0.0363379456102848,0.981874406337738,-0.179968640208244,0.0594484135508537,0.962481141090393,-0.260685533285141,0.0753201022744179,0.976064562797546,-0.207191318273544,0.0661049038171768,0.990823328495026,-0.125776961445808,0.0494907423853874,0.990808248519897,-0.125597581267357,0.0502426065504551,0.976056516170502,-0.20611859858036,0.0694896727800369,0.987476229667664,-0.147228017449379,0.0566991604864597,0.99670022726059,-0.0727834403514862,0.0359337329864502,0.997817397117615,-0.0546402782201767,0.0370799414813519,0.990800023078918,-0.125501647591591,0.0506446175277233,0.996623575687408,-0.0708925127983093,0.0414231866598129,0.99970954656601,-0.00386655586771667,0.0237923599779606,0.926866114139557,-0.368138879537582,0.0734385475516319,0.947741746902466,-0.312114179134369,0.0661084651947021,0.969251871109009,-0.239036202430725,0.0584163144230843, +0.94108372926712,-0.331412643194199,0.0672850906848907,0.947640776634216,-0.310054361820221,0.0764414072036743,0.962509095668793,-0.262547641992569,0.0681544989347458,0.982039570808411,-0.181131854653358,0.0528180487453938,0.96909761428833,-0.238494127988815,0.0630104765295982,0.969164669513702,-0.238721370697021,0.0610900036990643,0.9820157289505,-0.180943235754967,0.0538964606821537,0.993561267852783,-0.102816917002201,0.0475890152156353,0.978259086608887,-0.199691727757454,0.0559676438570023,0.941340684890747,-0.331754595041275,0.0617790035903454,0.969314217567444,-0.239276885986328,0.0563623756170273,0.97824227809906,-0.199675217270851,0.0563197322189808,0.951643526554108,-0.301780581474304,0.0574726387858391,0.962460875511169,-0.260080724954605,0.077634759247303,0.932933151721954,-0.346178829669952,0.0989744290709496,0.959135115146637,-0.271623432636261,0.0792509764432907,0.976062178611755,-0.206672877073288,0.0677418783307076,0.93285459280014,-0.347199112176895,0.096099853515625,0.919835269451141,-0.37902158498764,0.101220980286598,0.953861951828003,-0.29202988743782,0.0697572231292725,0.958842515945435,-0.274493664503098,0.072624497115612,0.959559500217438,-0.266017884016037,0.0920871496200562,0.955462157726288,-0.278071135282516,0.0988363325595856,0.98314505815506,-0.177217677235603,0.0449409112334251,0.984290719032288,-0.170728281140327,0.0449861288070679,0.976040124893188,-0.2052061855793,0.0723616182804108,0.959614276885986,-0.265034168958664,0.0943256914615631,0.984617412090302,-0.166010454297066,0.0544898435473442,0.987475872039795,-0.1474369764328,0.0561585649847984,-0.29277902841568,0.836246609687805,-0.463650792837143,-0.311930894851685,0.818409979343414,-0.482601344585419,-0.176545411348343,0.778742909431458,-0.601989567279816,-0.164470165967941,0.798274517059326,-0.579402506351471,0.0464242324233055,0.997918546199799,-0.0447576232254505,0.00217946735210717,0.9994757771492,0.032301239669323,0.0668185129761696,0.997093498706818,-0.0366058200597763,0.0846889466047287,0.988738238811493,-0.123387701809406, +0.108719669282436,0.963626623153687,-0.244138643145561,0.0828947126865387,0.989955484867096,-0.114528626203537,0.0605386644601822,0.967324554920197,-0.246207728981972,0.0435183495283127,0.926654040813446,-0.373387843370438,-0.60489284992218,0.673019528388977,-0.425616502761841,-0.634759485721588,0.635644674301147,-0.439358800649643,-0.502045392990112,0.569276869297028,-0.651056230068207,-0.479540199041367,0.609055280685425,-0.631737887859344,-0.905101120471954,0.365160256624222,-0.217830553650856,-0.914090573787689,0.341173440217972,-0.219178184866905,-0.81535392999649,0.288919538259506,-0.501720547676086,-0.807992041110992,0.31319198012352,-0.499058604240417,-0.152648642659187,0.982834875583649,0.103605039417744,-0.171243473887444,0.977864801883698,0.120234407484531,-0.0747776925563812,0.983308374881744,0.165869727730751,-0.0619978867471218,0.987600564956665,0.144227504730225,-0.454225063323975,0.880273461341858,0.137106940150261,-0.417327880859375,0.901097178459167,0.117733903229237,-0.354041576385498,0.889146268367767,0.289954364299774,-0.383317500352859,0.867017030715942,0.318353831768036,-0.783163666725159,-0.513504803180695,0.350667178630829,-0.822323501110077,-0.435210019350052,0.366573721170425,-0.925808310508728,-0.359994918107986,0.115250118076801,-0.889869034290314,-0.441139042377472,0.116317071020603,-0.98993045091629,-0.087770015001297,0.11105914413929,-0.991369903087616,-0.072650358080864,0.109122790396214,-0.977096855640411,-0.077211931347847,-0.198293372988701,-0.976368069648743,-0.0921790972352028,-0.195469617843628,-0.773614645004272,0.633440315723419,0.01654352247715,-0.705688655376434,0.708521127700806,-0.00119972950778902,-0.70335841178894,0.658623278141022,0.267399430274963,-0.75841498374939,0.578494131565094,0.300251930952072,-0.941275835037231,0.249096557497978,-0.22792686522007,-0.924074769020081,0.302174836397171,-0.234043180942535,-0.95405387878418,0.289827555418015,0.0760341733694077,-0.967914283275604,0.23637481033802,0.0852590575814247,-0.259788990020752,-0.923134863376617,0.283428937196732, +-0.329091191291809,-0.848613977432251,0.414190024137497,-0.522671818733215,-0.739270210266113,0.424610108137131,-0.427147597074509,-0.840150773525238,0.334202826023102,-0.476957142353058,-0.791797876358032,0.381533741950989,-0.558606088161469,-0.690545618534088,0.459462612867355,-0.750420928001404,-0.569686591625214,0.335150092840195,-0.662666976451874,-0.687253952026367,0.297580927610397,-0.603792607784271,-0.624993085861206,-0.494791030883789,-0.524336993694305,-0.767477095127106,-0.368849039077759,-0.751598000526428,-0.581772208213806,-0.310872226953506,-0.827283918857574,-0.406386971473694,-0.387880057096481,-0.862918317317963,-0.249310493469238,-0.439563721418381,-0.838993668556213,-0.364292114973068,-0.404204040765762,-0.965478122234344,-0.201496347784996,-0.165079146623611,-0.979389786720276,-0.0812265649437904,-0.184927225112915,-0.163268357515335,-0.985345840454102,-0.0493660308420658,-0.154000625014305,-0.98697966337204,0.0464201122522354,-0.159218475222588,-0.977175891399384,0.140629962086678,-0.140167236328125,-0.989015758037567,0.0469145700335503,-0.155059739947319,-0.980622231960297,0.119735203683376,-0.182032853364944,-0.947786033153534,0.261850088834763,-0.300829708576202,-0.883125007152557,0.359988510608673,-0.236318543553352,-0.941541194915771,0.240111812949181,-0.342367172241211,-0.852376759052277,-0.395270437002182,-0.2895447909832,-0.925489008426666,-0.244200587272644,-0.480242431163788,-0.822402596473694,-0.304994016885757,-0.55859762430191,-0.715147435665131,-0.420158118009567,-0.164871633052826,-0.983991682529449,-0.0676602497696877,-0.27043229341507,-0.943156599998474,-0.193189203739166,-0.319517344236374,-0.889220654964447,-0.327407002449036,-0.175992056727409,-0.959960758686066,-0.217949897050858,-0.446618437767029,-0.884908020496368,0.132173165678978,-0.446998000144958,-0.884688258171082,0.132361322641373,-0.477532029151917,-0.8783038854599,0.0233599618077278,-0.477117300033569,-0.878530502319336,0.0233083087950945,-0.995176792144775,0.0978074297308922,0.0075409272685647,-0.976641297340393,0.214855343103409,-0.00299102906137705, +-0.977465808391571,0.211049228906631,-0.00435409275814891,-0.982761263847351,0.184873178601265,-0.00155084952712059,-0.995192468166351,0.0977220982313156,0.00650783721357584,-0.982826352119446,0.184492170810699,-0.0038768423255533,-0.987267255783081,0.159065738320351,-0.0012574678985402,-0.992576003074646,0.121525831520557,0.00493193138390779,-0.995186030864716,0.0977576822042465,0.00693834433332086,-0.992651462554932,0.120988130569458,0.0022669245954603,-0.99645733833313,0.0836383849382401,0.00879565998911858,-0.998699843883514,0.0488977134227753,0.0144164310768247,-0.995179831981659,0.0977918207645416,0.00735147576779127,-0.998756885528564,0.0484093390405178,0.0118911629542708,-0.999762892723083,0.0131019111722708,0.0173977259546518,-0.999812483787537,-0.00554962921887636,0.0185534209012985,-0.995177865028381,0.0978018268942833,0.00747304921969771,-0.979673206806183,0.200599551200867,0.000501201313454658,-0.975518524646759,0.219910442829132,-0.0017420519143343,-0.976642489433289,0.214849099516869,-0.00305608240887523,-0.999865651130676,0.00976608134806156,0.0131664620712399,-0.995177328586578,0.0978046804666519,0.00750734144821763,-0.99964827299118,-0.0205608252435923,0.0167515482753515,-0.999746799468994,-0.0169605053961277,0.0147935394197702,-0.995177388191223,0.0978048667311668,0.00750968139618635,-0.989130139350891,0.1469946205616,0.00376919726841152,-0.983232021331787,0.182328894734383,0.003337875707075,-0.979667961597443,0.200620874762535,0.00138040084857494,-0.999546766281128,-0.0258067194372416,0.0155064323917031,-0.995784997940063,-0.0884415581822395,0.024296622723341,-0.995502591133118,-0.0919729247689247,0.0227106716483831,-0.999666571617126,-0.0206460971385241,0.0155147025361657,-0.995185256004333,0.0977619588375092,0.00699015660211444,-0.997238636016846,0.0739892199635506,0.00639428803697228,-0.993693232536316,0.111946381628513,0.00647018989548087,-0.989127337932587,0.146934658288956,0.00610997760668397,-0.995178997516632,0.097796306014061,0.00740579003468156,-0.99988466501236,0.00976354442536831,0.0116408793255687, +-0.999316573143005,0.0355766899883747,0.0100326826795936,-0.997218668460846,0.0738673731684685,0.00992472190409899,-0.999826312065125,-0.0056630726903677,0.0177552122622728,-0.99949848651886,-0.0254455730319023,0.0188538357615471,-0.999648094177246,-0.0205599721521139,0.0167639255523682,-0.99517834186554,0.0977994352579117,0.0074438638985157,-0.999815046787262,-0.00557026918977499,0.0184082072228193,-0.997369408607483,-0.0683343335986137,0.0241849105805159,-0.995778381824493,-0.088384136557579,0.0247719008475542,-0.999471247196198,-0.0252719428390265,0.020462142303586,-0.999817788600922,0.0125648640096188,0.0143690649420023,-0.999301910400391,-0.0308799929916859,0.0210322551429272,-0.997306942939758,-0.0675553530454636,0.0285519473254681,-0.999801874160767,-0.00546556664630771,0.0191448908299208,-0.998728573322296,0.0486588254570961,0.0131810121238232,-0.999722540378571,0.0181286204606295,0.0150461830198765,-0.999251782894135,-0.0301583744585514,0.0242150574922562,-0.999752163887024,0.0131962159648538,0.0179296117275953,-0.996532320976257,0.0830052271485329,0.00579292932525277,-0.997214376926422,0.0745074152946472,0.00348597369156778,-0.999598860740662,0.0195578802376986,0.0204889848828316,-0.998678684234619,0.0490658655762672,0.0152862658724189,-0.992685437202454,0.120725817978382,0.000968525419011712,-0.991021752357483,0.133589640259743,-0.00545161589980125,-0.99707567691803,0.0759352445602417,0.00860157702118158,-0.996503233909607,0.0832607373595238,0.00700421584770083,-0.971985936164856,0.233961388468742,-0.0224828217178583,-0.981908619403839,0.189036592841148,-0.0109926406294107,-0.987420082092285,0.157968401908875,-0.006897808983922,-0.98303633928299,0.18292036652565,-0.0134071987122297,-0.958773791790009,0.283763766288757,-0.0152008794248104,-0.963468670845032,0.26736056804657,-0.015699602663517,-0.977482199668884,0.210957869887352,-0.005031100474298,-0.976675868034363,0.214660972356796,-0.00501145888119936,-0.982104182243347,0.18760097026825,-0.0166519414633512,-0.990868091583252,0.134831637144089,-0.000964284758083522, +-0.992668390274048,0.120858758687973,0.00162645371165127,-0.987437725067139,0.157824784517288,-0.00763407489284873,-0.965054571628571,0.262032866477966,-0.00292160036042333,-0.959587812423706,0.281351029872894,-0.00574533175677061,-0.975490808486938,0.220039799809456,0.000512611877638847,-0.979664921760559,0.200632110238075,0.00184648286085576,-0.9634889960289,0.267244189977646,-0.0164162591099739,-0.971757054328918,0.235479280352592,-0.0154217276722193,-0.983024954795837,0.183028534054756,-0.0127547206357121,-0.977645456790924,0.209843531250954,-0.0132289929315448,-0.974298179149628,0.225225269794464,0.00407849950715899,-0.983229279518127,0.182316541671753,0.00457232259213924,-0.989128887653351,0.146955281496048,0.00530845997855067,-0.984219491481781,0.176934197545052,0.00253130705095828,-0.959593236446381,0.281315565109253,-0.00652719335630536,-0.958664834499359,0.284388512372971,-0.00922643207013607,-0.976677477359772,0.214650586247444,-0.00511886738240719,-0.975553274154663,0.219695925712585,-0.00543855736032128,-0.974257409572601,0.225438728928566,0.000275677302852273,-0.965070247650146,0.261986285448074,0.00166301149874926,-0.979659616947174,0.200650230050087,0.00260012922808528,-0.983232796192169,0.18235257267952,0.000878497841767967,-0.998198866844177,0.0599083192646503,0.00319201336242259,-0.992856800556183,0.118971921503544,0.00900241080671549,-0.99369204044342,0.11192087829113,0.00706807151436806,-0.997240722179413,0.0740103051066399,0.0057801641523838,-0.99933910369873,0.0356582328677177,0.0070637296885252,-0.999980568885803,0.00395306758582592,0.00482446327805519,-0.998197555541992,0.0592148900032043,0.00975968036800623,-0.997229039669037,0.0739215165376663,0.00835883058607578,-0.992806315422058,0.119714923202991,0.00204400857910514,-0.98428350687027,0.176388621330261,0.00854749791324139,-0.989124476909637,0.146907791495323,0.00714916130527854,-0.993694663047791,0.112026162445545,0.00459485594183207,-0.999924302101135,0.00975653808563948,0.00749863404780626,-0.999032557010651,-0.0434063486754894,0.00706606730818748, +-0.999937295913696,0.00346392719075084,0.0106494557112455,-0.999320387840271,0.0355883501470089,0.00960900913923979,-0.999799370765686,-0.0170907769352198,0.0104457968845963,-0.997011244297028,-0.0757606700062752,0.0151285910978913,-0.998966574668884,-0.0436677411198616,0.0126075716689229,-0.999917924404144,0.00975791178643703,0.00830275099724531,-0.999666273593903,-0.0206452570855618,0.0155268423259258,-0.995567977428436,-0.0922376587986946,0.0183493867516518,-0.996994018554688,-0.0757570192217827,0.0162418037652969,-0.999728083610535,-0.0169229600578547,0.0160447806119919,-0.898719131946564,0.42157506942749,0.12074188888073,-0.898551881313324,0.421936810016632,0.120722681283951,-0.88681834936142,0.429131627082825,-0.17146210372448,-0.886988997459412,0.428769946098328,-0.171484634280205,-0.1826062053442,0.976476192474365,-0.11467008292675,-0.182667255401611,0.976461172103882,-0.114701464772224,-0.211089238524437,0.976873874664307,-0.0340406894683838,-0.211022198200226,0.976888656616211,-0.0340316817164421,-0.0628193020820618,0.993416726589203,-0.0957964062690735,-0.062959760427475,0.993393361568451,-0.0959462076425552,-0.0883521139621735,0.994115948677063,-0.062669150531292,-0.0881711021065712,0.994138300418854,-0.0625704601407051,-0.222743958234787,-0.970729470252991,0.0898302793502808,-0.2229183614254,-0.970658957958221,0.0901593789458275,-0.243186727166176,-0.967192053794861,0.0734831541776657,-0.242921382188797,-0.967278122901917,0.0732276141643524,-0.27129852771759,-0.957222044467926,0.10061364620924,-0.271530836820602,-0.957132399082184,0.100839897990227,-0.298249185085297,-0.952653110027313,0.0591563656926155,-0.297959178686142,-0.952752530574799,0.0590174868702888,-0.0238208305090666,0.995984017848969,-0.0863041579723358,-0.0239884592592716,0.995949149131775,-0.0866600945591927,-0.0420887842774391,0.996388256549835,-0.0737507492303848,-0.0418198257684708,0.996420741081238,-0.073464147746563,-0.0121305137872696,0.996475219726563,-0.0830071046948433,-0.0120858009904623,0.996504187583923,-0.0826641619205475, +-0.0206913016736507,0.996604800224304,-0.0796923413872719,-0.0208392646163702,0.996576726436615,-0.0800035446882248,-0.204479053616524,-0.975304245948792,0.0834873467683792,-0.204431936144829,-0.975282073020935,0.0838602557778358,-0.205759167671204,-0.975045561790466,0.0833628326654434,-0.205691933631897,-0.975091338157654,0.082992859184742,-0.206057995557785,-0.974841594696045,0.0849949792027473,-0.206016898155212,-0.974869549274445,0.0847727730870247,-0.217376470565796,-0.972820997238159,0.0797929689288139,-0.217482790350914,-0.972781121730804,0.0799895823001862,-0.0133454306051135,0.996512055397034,-0.0823748335242271,-0.0132811423391104,0.996484279632568,-0.0827217772603035,-0.01202951092273,0.996540784835815,-0.0822298154234886,-0.0119841583073139,0.996570348739624,-0.0818779617547989,-0.0252231061458588,0.995998024940491,-0.0857423394918442,-0.0253360848873854,0.996012926101685,-0.0855352580547333,-0.0136463670060039,0.996639966964722,-0.0807636305689812,-0.0136027503758669,0.996621787548065,-0.0809950679540634,-0.234437242150307,-0.967889487743378,0.0907144844532013,-0.234043702483177,-0.967943668365479,0.0911523625254631,-0.216231748461723,-0.973160147666931,0.0787602439522743,-0.216477617621422,-0.973149061203003,0.0782209932804108,-0.213049486279488,-0.973275184631348,0.0857057794928551,-0.213289439678192,-0.973268449306488,0.0851842164993286,-0.20460045337677,-0.975360035896301,0.0825315862894058,-0.204528406262398,-0.97532707452774,0.0830979645252228,-0.0515579394996166,0.994458317756653,-0.0916221365332603,-0.0513830259442329,0.994451999664307,-0.0917891934514046,-0.0307424440979958,0.996667206287384,-0.0755608305335045,-0.0308565087616444,0.996679782867432,-0.0753488019108772,-0.108369432389736,0.988626897335052,-0.104274317622185,-0.108005955815315,0.988647818565369,-0.104451961815357,-0.0803572610020638,0.994714081287384,-0.0639267787337303,-0.0806508287787437,0.994708478450775,-0.0636439397931099,-0.399776965379715,-0.908264875411987,0.123423211276531,-0.399886131286621,-0.90822172164917,0.123386979103088, +-0.372877389192581,-0.926896512508392,0.0427259877324104,-0.372782558202744,-0.926931619644165,0.0427916906774044,-0.280264675617218,-0.95467746257782,0.100214049220085,-0.28008696436882,-0.954718589782715,0.100318148732185,-0.255240261554718,-0.964527368545532,0.0673749819397926,-0.255377918481827,-0.964501857757568,0.0672198310494423,-0.29681134223938,0.945977687835693,-0.130496010184288,-0.295546978712082,0.946341216564178,-0.130730241537094,-0.262219250202179,0.964675009250641,-0.0253621805459261,-0.263371258974075,0.964376866817474,-0.0247585382312536,-0.964049160480499,-0.236112400889397,-0.121903046965599,-0.968834757804871,-0.180945873260498,0.169168204069138,-0.968249559402466,-0.183689638972282,0.16956090927124,-0.963467717170715,-0.238809511065483,-0.121243834495544,-0.464385598897934,-0.839500665664673,-0.282107651233673,-0.372231155633926,-0.914178788661957,-0.160378664731979,-0.563326776027679,-0.81103128194809,-0.157769381999969,-0.668490350246429,-0.704613924026489,-0.237991392612457,-0.975534319877625,0.200690537691116,0.08975600451231,-0.926583468914032,0.293055295944214,0.235715642571449,-0.971536874771118,0.222073391079903,0.0824591815471649,-0.985871255397797,0.154591307044029,0.0644944086670876,-0.858062505722046,0.431563466787338,0.27835538983345,-0.958014249801636,0.276960492134094,0.0741725042462349,-0.971790909767151,0.227585956454277,0.0618649646639824,-0.916758418083191,0.349103450775146,0.194115459918976,-0.980921506881714,0.18131685256958,0.0701227709650993,-0.985903739929199,0.154838964343071,0.0633948668837547,-0.971658706665039,0.223725646734238,0.0763299465179443,-0.957808434963226,0.275391429662704,0.0822350233793259,-0.698739171028137,0.640183687210083,0.319262504577637,-0.94158810377121,0.330136597156525,0.0664956495165825,-0.949836671352386,0.306592643260956,0.0617358312010765,-0.78376430273056,0.558049142360687,0.272570908069611,-0.941205620765686,0.32905501127243,0.0765165984630585,-0.971566915512085,0.224201485514641,0.0761027857661247,-0.97725784778595,0.198830455541611,0.0737126469612122, +-0.949481785297394,0.304814577102661,0.074649877846241,-0.949341416358948,0.304262042045593,0.0785855948925018,-0.977061748504639,0.198816239833832,0.0763060599565506,-0.98080176115036,0.18114922940731,0.0722000226378441,-0.957944512367249,0.276373207569122,0.077202096581459,-0.788324058055878,0.54115891456604,0.292732656002045,-0.949581146240234,0.305243998765945,0.0715661123394966,-0.958166241645813,0.278667271137238,0.0652855411171913,-0.851512134075165,0.458820551633835,0.253792822360992,-0.994821131229401,0.0765935704112053,0.0668160766363144,-0.996250927448273,0.0616787001490593,0.0606617853045464,-0.991525948047638,0.109611161053181,0.0697265639901161,-0.990545749664307,0.118939198553562,0.0683567076921463,-0.996086955070496,0.0609186477959156,0.0640300661325455,-0.995771706104279,-0.056712057441473,-0.0722667872905731,-0.998904168605804,0.0375831760466099,0.0278941169381142,-0.991468727588654,0.109346099197865,0.0709463730454445,-0.991712689399719,0.110529899597168,0.0654917284846306,-0.997895300388336,0.0645889788866043,0.00578121934086084,-0.979128420352936,0.1645597666502,0.119280233979225,-0.985561072826385,0.152571782469749,0.0734252631664276,-0.990532875061035,0.118931218981743,0.0685571730136871,-0.991762936115265,0.110793404281139,0.0642752274870872,-0.985596537590027,0.15277835726738,0.0725146681070328,-0.980822145938873,0.181177273392677,0.071853294968605,-0.924420356750488,-0.331281095743179,-0.188944563269615,-0.961152791976929,-0.237772509455681,-0.140177920460701,-0.997225701808929,-0.0217787474393845,0.0711798593401909,-0.997028946876526,-0.0437759272754192,0.06338070333004,-0.994585514068604,-0.0937859937548637,-0.0447641648352146,-0.995550751686096,0.0587356723845005,0.0736820623278618,-0.998037695884705,-0.0189642086625099,0.05967678129673,-0.964564979076385,-0.206173658370972,-0.164641588926315,-0.994876742362976,0.0766309350728989,0.0659399926662445,-0.997553944587708,-0.0424230434000492,0.0555572770535946,-0.998220086097717,-0.0182542856782675,0.0567757077515125,-0.995571136474609,0.058812104165554,0.0733446627855301, +-0.972539901733398,0.223810061812401,0.0638368427753448,-0.988249778747559,0.135392650961876,0.0709325522184372,-0.988896548748016,0.129586666822433,0.0727386623620987,-0.977627336978912,0.198854714632034,0.0685684606432915,-0.988677740097046,0.134981289505959,0.0655465647578239,-0.991279602050781,0.113219395279884,0.0674248486757278,-0.992019236087799,0.106239438056946,0.0679059773683548,-0.989378809928894,0.129271626472473,0.0664712563157082,-0.989502727985382,0.129185378551483,0.0647727325558662,-0.99209326505661,0.10617983341217,0.0669093653559685,-0.994829714298248,0.0765993148088455,0.0666815340518951,-0.990598917007446,0.11897236853838,0.0675230920314789,-0.977656245231628,0.198856443166733,0.0681500658392906,-0.9890296459198,0.129502788186073,0.0710602402687073,-0.990459203720093,0.118885956704617,0.0696903541684151,-0.980822324752808,0.181177645921707,0.0718485116958618,-0.690049767494202,0.667617738246918,0.279495686292648,-0.560698211193085,0.75811755657196,0.332979381084442,-0.916314899921417,0.396311074495316,0.0574871115386486,-0.941996693611145,0.331773668527603,0.0506819859147072,-0.486157774925232,0.844533264636993,0.22453099489212,-0.921140551567078,0.385989189147949,0.050124678760767,-0.916553258895874,0.397503674030304,0.0438306219875813,-0.550401329994202,0.784496068954468,0.285700082778931,-0.972339987754822,0.223898500204086,0.066517174243927,-0.941795945167542,0.330862402915955,0.0595856085419655,-0.916114389896393,0.395635813474655,0.0648591369390488,-0.920621812343597,0.385891020298004,0.0595284290611744,-0.471781581640244,0.881685137748718,0.00730604212731123,-0.918434798717499,0.393695771694183,0.0384859256446362,-0.923469305038452,0.38180410861969,0.0378168448805809,-0.48315754532814,0.869541227817535,0.102258548140526,-0.918397665023804,0.393739342689514,0.0389248430728912,-0.96219277381897,0.266775131225586,0.0549194812774658,-0.972832024097443,0.224340617656708,0.0571765601634979,-0.922982156276703,0.38216295838356,0.0453368537127972,-0.922353744506836,0.382550597190857,0.0540243685245514, +-0.972290337085724,0.224841207265854,0.064016655087471,-0.972561299800873,0.223800390958786,0.0635449588298798,-0.920603156089783,0.385887175798416,0.0598406195640564,-0.483539164066315,0.867867708206177,0.11399807035923,-0.922903954982758,0.382215321063995,0.0464733056724072,-0.921417713165283,0.386032342910767,0.0443672724068165,-0.485053449869156,0.847437679767609,0.215807229280472,-0.997172594070435,-0.0377048924565315,0.0650023072957993,-0.989193379878998,-0.134365364909172,0.058672372251749,-0.99491274356842,-0.0787767618894577,0.0627920851111412,-0.997253239154816,0.0360053293406963,0.064726896584034,-0.988654494285583,-0.135233819484711,0.0653779804706573,-0.782471358776093,-0.58485472202301,-0.213737040758133,-0.868664741516113,-0.462221205234528,-0.178250253200531,-0.994634985923767,-0.0793218538165092,0.0664042308926582,-0.994906008243561,-0.0787904858589172,0.0628829970955849,-0.872419953346252,-0.446000754833221,-0.199917405843735,-0.921862721443176,-0.347124338150024,-0.172260895371437,-0.996946215629578,-0.0439752228558064,0.0645342096686363,-0.997339189052582,0.0360314026474953,0.0633745715022087,-0.995238482952118,-0.0781002044677734,0.0583173297345638,-0.997342765331268,-0.0429872237145901,0.058818344026804,-0.995061814785004,0.0767588242888451,0.0629290491342545,-0.670336902141571,-0.73929762840271,-0.0639334097504616,-0.68196839094162,-0.710006654262543,-0.175526782870293,-0.974691927433014,-0.212013810873032,0.070894330739975,-0.981031715869904,-0.18088461458683,0.0696958526968956,-0.777981638908386,-0.598308026790619,-0.191760554909706,-0.987883448600769,-0.136356696486473,0.0741160362958908,-0.97503536939621,-0.211683422327042,0.0670553296804428,-0.681951105594635,-0.710046291351318,-0.175433710217476,-0.996748030185699,-0.0377751924097538,0.0711804404854774,-0.981114864349365,-0.18087449669838,0.0685421004891396,-0.975344955921173,-0.211369752883911,0.0634433180093765,-0.988104164600372,-0.136047691106796,0.0717035830020905,-0.997185409069061,-0.00125750957522541,0.074965812265873,-0.982242822647095,-0.162484586238861,0.093797579407692, +-0.981635212898254,-0.169732451438904,0.0870817080140114,-0.997083842754364,-0.00802125036716461,0.0758911967277527,-0.982832789421082,-0.163378551602364,0.0857158675789833,-0.665468752384186,-0.728853106498718,0.161010906100273,-0.666745364665985,-0.742747664451599,0.0614546611905098,-0.981847703456879,-0.169863641262054,0.0843898057937622,-0.982442557811737,-0.170250236988068,0.0762982591986656,-0.667953789234161,-0.742606461048126,0.0487170591950417,-0.669425487518311,-0.740699052810669,-0.0568731017410755,-0.980576515197754,-0.18093353509903,0.0757148638367653,-0.997469544410706,-0.00834624283015728,0.0706031918525696,-0.98214316368103,-0.17005181312561,0.0804809033870697,-0.980538666248322,-0.180937185883522,0.0761957243084908,-0.996301710605621,-0.037841685116291,0.0771422386169434,-0.996600568294525,-0.000530391291249543,0.0823834612965584,-0.996500134468079,0.0101531147956848,0.0829721391201019,-0.984381794929504,-0.14507745206356,0.0997253954410553,-0.982230246067047,-0.162466526031494,0.0939595848321915,-0.996238827705383,0.0105311134830117,0.0860076248645782,-0.996384620666504,0.0104234460741282,0.084315299987793,-0.984774112701416,-0.136192858219147,0.108035437762737,-0.984067797660828,-0.144395500421524,0.10373305529356,-0.983827531337738,-0.143894657492638,0.106666326522827,-0.9848872423172,-0.13650344312191,0.106602005660534,-0.683372676372528,-0.63728791475296,0.356182605028152,-0.67425799369812,-0.688030540943146,0.268309742212296,-0.981774985790253,-0.161830857396126,0.0996427088975906,-0.984323382377625,-0.144948124885559,0.100486539304256,-0.67458838224411,-0.692169904708862,0.256576299667358,-0.665443956851959,-0.728785395622253,0.161419168114662,-0.962863385677338,0.265834331512451,0.0471835732460022,-0.987826645374298,0.142685443162918,0.0619627423584461,-0.988443493843079,0.137438163161278,0.0639553740620613,-0.972783267498016,0.224387884140015,0.0578163638710976,-0.987635374069214,0.142910614609718,0.064443364739418,-0.991282284259796,0.113216459751129,0.0673906430602074,-0.991280198097229,0.113217830657959,0.0674189031124115, +-0.988347470760345,0.137541770935059,0.0652042329311371,-0.988345861434937,0.137543439865112,0.06522436439991,-0.991277813911438,0.11322046816349,0.067449614405632,-0.991279065608978,0.113219998776913,0.0674319490790367,-0.988675177097321,0.134983867406845,0.0655800253152847,-0.972586333751678,0.224574342370033,0.0603522956371307,-0.988187074661255,0.137710765004158,0.0672465413808823,-0.988468647003174,0.13518625497818,0.0682239681482315,-0.972528696060181,0.223815158009529,0.0639901608228683,-0.430350333452225,0.855966687202454,-0.286565393209457,-0.576467096805573,0.755815207958221,-0.31053027510643,-0.912142753601074,0.409259527921677,0.0224119443446398,-0.441381990909576,0.889741063117981,-0.116373397409916,-0.569873571395874,0.769689679145813,-0.287788242101669,-0.666278898715973,0.695326149463654,-0.269432932138443,-0.920808494091034,0.389084428548813,0.0269267968833447,-0.912340939044952,0.408921509981155,0.0204272028058767,-0.912130355834961,0.409280598163605,0.0225355569273233,-0.92068213224411,0.389312028884888,0.0279422327876091,-0.963093042373657,0.26548770070076,0.0443652123212814,-0.919506669044495,0.392294079065323,0.0247548837214708,-0.440199494361877,0.891665935516357,-0.105623260140419,-0.911389172077179,0.410476982593536,0.0296421144157648,-0.919150233268738,0.392795145511627,0.029579546302557,-0.472352176904678,0.8813835978508,-0.00682585407048464,-0.799520015716553,-0.440116465091705,0.408736199140549,-0.703525364398956,-0.55694454908371,0.441435009241104,-0.979998588562012,-0.161209285259247,0.116680800914764,-0.990132868289948,-0.0981369391083717,0.100031338632107,-0.683416783809662,-0.633673012256622,0.362491428852081,-0.984567582607269,-0.135640054941177,0.110582709312439,-0.980300426483154,-0.162598475813866,0.112128794193268,-0.703186273574829,-0.561197757720947,0.436561763286591,-0.996057868003845,0.0110762706026435,0.0880124941468239,-0.989792287349701,-0.096481017768383,0.104893505573273,-0.979498505592346,-0.159096568822861,0.12357559800148,-0.984289586544037,-0.134921327233315,0.113886974751949, +-0.995691537857056,0.0117763746529818,0.0919770523905754,-0.995459735393524,0.0378156863152981,0.0873495116829872,-0.993231594562531,-0.0491739250719547,0.105228327214718,-0.988951981067657,-0.0928329601883888,0.115569092333317,-0.995510339736938,0.0376992225646973,0.0868217945098877,-0.995017051696777,0.0646176263689995,0.0759318843483925,-0.994772434234619,-0.0171939786523581,0.10065970569849,-0.992877840995789,-0.0477081499993801,0.109168358147144,-0.993372738361359,-0.0497799217700958,0.103598162531853,-0.995216727256775,-0.0192223712801933,0.0957820862531662,-0.931843340396881,-0.191563427448273,0.308174610137939,-0.883758902549744,-0.281003922224045,0.374175101518631,-0.989520311355591,-0.0952398031949997,0.108531333506107,-0.993656516075134,-0.051039170473814,0.100208438932896,-0.883579313755035,-0.304967790842056,0.355361998081207,-0.80106794834137,-0.415435343980789,0.430933445692062,-0.673051416873932,0.680801033973694,-0.288983821868896,-0.751055181026459,0.605815708637238,-0.262494683265686,-0.932445824146271,0.360477864742279,0.024504529312253,-0.922208607196808,0.386398613452911,0.015081275254488,-0.758949398994446,0.586893677711487,-0.282049059867859,-0.826945960521698,0.512031614780426,-0.232344701886177,-0.947621762752533,0.31806668639183,0.029100377112627,-0.934047281742096,0.356937766075134,0.0122935157269239,-0.934859216213226,0.3549744784832,0.00560625968500972,-0.949120223522186,0.31433579325676,0.0190788470208645,-0.96528697013855,0.258701711893082,0.0359796732664108,-0.967873275279999,0.249300122261047,0.0327258221805096,-0.922965228557587,0.384797483682632,0.00813684333115816,-0.933826744556427,0.357449740171432,0.0140471635386348,-0.967442989349365,0.250227421522141,0.0379508771002293,-0.963996469974518,0.263962715864182,0.032166600227356,-0.966001868247986,0.256877899169922,0.0292287245392799,-0.981597483158112,0.184306144714355,0.0499759763479233,-0.987513244152069,0.148787289857864,0.0517697371542454,-0.967529237270355,0.250046789646149,0.0369300805032253,-0.981742441654205,0.183929339051247,0.0484959334135056, +-0.986391961574554,0.154242023825645,0.0569235533475876,-0.990626096725464,0.120943106710911,0.0635046437382698,-0.986940443515778,0.149724632501602,0.0594232678413391,-0.986694097518921,0.150098294019699,0.0624936781823635,-0.990399718284607,0.12127573043108,0.0663370490074158,-0.991285562515259,0.11321297287941,0.067349798977375,-0.987641155719757,0.142903923988342,0.0643695592880249,-0.967285513877869,0.25055119395256,0.0397844053804874,-0.987307965755463,0.149135440587997,0.0546044036746025,-0.988159418106079,0.142272904515266,0.0574418306350708,-0.96307760477066,0.265511214733124,0.0445565767586231,-0.952071189880371,0.296007335186005,-0.0770736411213875,-0.978761792182922,0.197732657194138,0.0541057847440243,-0.969443261623383,0.243259340524673,0.0316968858242035,-0.912119567394257,0.360280185937881,-0.19554091989994,-0.979711771011353,0.194767624139786,0.0472276471555233,-0.986346840858459,0.154359504580498,0.0573860891163349,-0.981755912303925,0.183893948793411,0.048357006162405,-0.970337569713593,0.240455284714699,0.0250256676226854,-0.968651413917542,0.245606943964958,0.0373046360909939,-0.981489539146423,0.184582889080048,0.0510640107095242,-0.965897560119629,0.257152378559113,0.030241908505559,-0.950472354888916,0.310669392347336,0.00932302884757519,-0.898835718631744,0.405061215162277,-0.167391031980515,-0.967376708984375,0.249161750078201,0.0458355993032455,-0.949528157711029,0.313262552022934,0.0162137560546398,-0.838971734046936,0.478861153125763,-0.258492738008499,-0.992822527885437,0.0315784141421318,0.115353018045425,-0.965550124645233,-0.0439946353435516,0.25647109746933,-0.9952512383461,0.0243154671043158,0.0942541435360909,-0.99371862411499,0.0922132730484009,0.0634033009409904,-0.931227385997772,-0.166532531380653,0.324164241552353,-0.995001077651978,-0.0182220209389925,0.0981880947947502,-0.996636390686035,0.0172722209244967,0.0801098495721817,-0.967732191085815,-0.0897172689437866,0.235468536615372,-0.994983196258545,0.0647283941507339,0.0762816518545151,-0.993874967098236,0.0915167480707169,0.0619469992816448, +-0.995572686195374,0.0227891225367785,0.0911898985505104,-0.994501888751984,-0.0160176288336515,0.103486597537994,-0.991285145282745,0.113213293254375,0.0673537701368332,-0.993374228477478,0.0915753915905952,0.0694379657506943,-0.994165897369385,0.0824824795126915,0.0695055350661278,-0.992025017738342,0.106234736740589,0.0678275674581528,-0.993411362171173,0.0915330573916435,0.0689616650342941,-0.996900141239166,-0.000894132943358272,0.0786735266447067,-0.997066855430603,-0.00800740905106068,0.0761167258024216,-0.994147777557373,0.0824975296854973,0.0697447210550308,-0.994397640228271,0.0822835713624954,0.0663535073399544,-0.997336864471436,-0.00823178887367249,0.0724665597081184,-0.996912360191345,-0.0377488993108273,0.0688547566533089,-0.99692165851593,0.0359088405966759,0.0696991831064224,-0.99216890335083,0.106118008494377,0.0658772215247154,-0.994334995746613,0.0823382437229156,0.0672187432646751,-0.997173666954041,0.035981573164463,0.0659548193216324,-0.994831562042236,0.0766005739569664,0.0666519999504089,-0.991279542446136,0.113219492137432,0.0674259811639786,-0.993425488471985,0.090646781027317,0.0699224546551704,-0.993340969085693,0.0918141901493073,0.0695992633700371,-0.991280257701874,0.113217741250992,0.067417785525322,-0.993072211742401,0.0910913497209549,0.0742302983999252,-0.996300995349884,0.0105931703001261,0.0852765291929245,-0.996712327003479,0.00983564648777246,0.0804228335618973,-0.993115901947021,0.0920795053243637,0.0724037140607834,-0.993199050426483,0.0919826850295067,0.0713794976472855,-0.996728181838989,0.00981147773563862,0.0802287459373474,-0.996898949146271,-0.000892766867764294,0.078687459230423,-0.993287682533264,0.0916730910539627,0.070538155734539,-0.991283774375916,0.113214001059532,0.0673740580677986,-0.993342876434326,0.0918117538094521,0.0695736706256866,-0.99337249994278,0.0915773212909698,0.0694597214460373,-0.991284430027008,0.113214194774628,0.0673641264438629,-0.986443281173706,0.154108121991158,0.0563963800668716,-0.989591717720032,0.129541918635368,0.0626683160662651,-0.9929478764534,0.0982459932565689,0.0663498267531395, +-0.990652441978455,0.120903491973877,0.0631678998470306,-0.989615380764008,0.129477366805077,0.0624264776706696,-0.994603276252747,0.0659382119774818,0.0801032707095146,-0.995777249336243,0.0370728336274624,0.083983838558197,-0.992460966110229,0.0990499630570412,0.072183795273304,-0.992180407047272,0.0994875803589821,0.0753688886761665,-0.995729565620422,0.0371863767504692,0.0844982117414474,-0.996250152587891,0.0106954574584961,0.0858558341860771,-0.992997527122498,0.0911821946501732,0.0751124769449234,-0.990399777889252,0.121275655925274,0.0663363933563232,-0.99269026517868,0.0986789837479591,0.0694889351725578,-0.993428170681,0.0906431823968887,0.0698877573013306,-0.991284012794495,0.113214552402496,0.0673683732748032,-0.96112322807312,0.258131682872772,-0.0980317369103432,-0.981372773647308,0.190712735056877,0.023158710449934,-0.985762774944305,0.156503304839134,0.0614705458283424,-0.980084180831909,0.19355234503746,0.0444150790572166,-0.988144755363464,0.153457224369049,0.00458142021670938,-0.98732203245163,0.0806113332509995,0.136737197637558,-0.99219536781311,0.098469503223896,0.0764991119503975,-0.986866116523743,0.152637407183647,0.0528892911970615,-0.987089872360229,0.151811182498932,0.0510586202144623,-0.992294192314148,0.0980892926454544,0.0757024362683296,-0.994509637355804,0.0662286356091499,0.0810209885239601,-0.989684522151947,0.129288330674171,0.0617183297872543,-0.980412781238556,0.192451536655426,0.0418708436191082,-0.986104726791382,0.155339330434799,0.0588840991258621,-0.989670276641846,0.129327297210693,0.0618643090128899,-0.986500084400177,0.153958633542061,0.055808037519455,0.844256103038788,-0.114693596959114,-0.523523688316345,0.820762991905212,-0.0921147838234901,-0.563793420791626,0.958087027072906,-0.130880430340767,-0.254832625389099,0.98619544506073,-0.101461313664913,-0.130859404802322,0.932716965675354,0.0330793410539627,-0.359088629484177,0.982680797576904,-0.123717129230499,-0.137958481907845,0.959704041481018,-0.120020464062691,-0.254093199968338,0.822521686553955,-0.0824822187423706,-0.562720835208893, +0.997329890727997,-0.061392568051815,-0.0395483635365963,0.988726317882538,-0.0688009858131409,-0.132991552352905,0.96609103679657,-0.0649828165769577,-0.249890714883804,0.988956987857819,-0.0621346049010754,-0.134548753499985,0.336098194122314,-0.182197138667107,-0.924035906791687,0.335988700389862,-0.147358283400536,-0.930267214775085,0.617870032787323,-0.230246216058731,-0.751813471317291,0.620115637779236,-0.194370329380035,-0.760050475597382,0.338861525058746,-0.138954892754555,-0.930518329143524,0.397882878780365,-0.0510960891842842,-0.916012227535248,0.517395794391632,-0.24916085600853,-0.818669974803925,0.619834780693054,-0.224365025758743,-0.751974165439606,0.644291996955872,-0.143127754330635,-0.75126725435257,0.673576474189758,-0.106283456087112,-0.731436014175415,0.73931497335434,-0.249958604574203,-0.625247240066528,0.788229882717133,-0.224438086152077,-0.572993099689484,0.622120082378387,-0.181626930832863,-0.761563122272491,0.637007474899292,-0.169109046459198,-0.752079665660858,0.793801665306091,-0.205710425972939,-0.572330415248871,0.833965837955475,-0.184168308973312,-0.520175933837891,0.339777499437332,-0.153922408819199,-0.927824974060059,-0.000805290066637099,-0.127025082707405,-0.991899192333221,0.000653125054668635,-0.0944677218794823,-0.995527684688568,0.31882706284523,-0.1958027780056,-0.927367568016052,0.00059291027719155,-0.114929012954235,-0.993373513221741,-0.33881539106369,-0.0645272210240364,-0.938637614250183,-0.329428851604462,-0.0317790135741234,-0.943645536899567,-0.0200467202812433,-0.15328685939312,-0.987978398799896,-0.0183758940547705,-0.148553296923637,-0.988733649253845,-0.331407338380814,-0.037488978356123,-0.942742705345154,-0.256919950246811,0.0318093709647655,-0.965909063816071,-0.128584831953049,-0.161766216158867,-0.978415906429291,0.31934329867363,-0.194386899471283,-0.927487790584564,0.00144718261435628,-0.0922038331627846,-0.995739161968231,0.0246917624026537,-0.0520675890147686,-0.998338282108307,0.167659625411034,-0.213819742202759,-0.962377965450287,0.394357740879059,-0.0538072548806667,-0.917380452156067, +0.457919061183929,-0.113444983959198,-0.881725788116455,0.461338311433792,-0.192354097962379,-0.866121768951416,0.506744682788849,-0.257649451494217,-0.822694718837738,0.437709420919418,-0.121300026774406,-0.890896677970886,0.403725415468216,-0.1256492882967,-0.906210839748383,0.459513187408447,-0.183090910315514,-0.869094491004944,0.481013029813766,-0.184541523456573,-0.857071101665497,0.548055112361908,-0.156342402100563,-0.821700990200043,0.520849943161011,-0.141408070921898,-0.841854572296143,0.564559161663055,-0.198389828205109,-0.801195621490479,0.578935086727142,-0.215806171298027,-0.786296308040619,0.624029994010925,-0.155901610851288,-0.76569002866745,0.564158856868744,-0.149176552891731,-0.812078416347504,0.637015342712402,-0.188642397522926,-0.7474125623703,0.726917862892151,-0.261998474597931,-0.634781241416931,-0.33918422460556,-0.0678869783878326,-0.938267290592194,-0.637750625610352,-0.0114881042391062,-0.770157277584076,-0.629882335662842,0.0171753093600273,-0.776500701904297,-0.355432331562042,-0.109808370471001,-0.928229510784149,-0.638296186923981,-0.0166406687349081,-0.769611001014709,-0.860047936439514,0.0404880009591579,-0.508604228496552,-0.853716492652893,0.0683939829468727,-0.516227245330811,-0.650198817253113,-0.055864829570055,-0.757707476615906,-0.64933830499649,-0.0524612590670586,-0.75868809223175,-0.855619192123413,0.0604047328233719,-0.514069199562073,-0.8076993227005,0.103213414549828,-0.580490171909332,-0.731072127819061,-0.0708518475294113,-0.678611516952515,-0.354277938604355,-0.106195665895939,-0.929090857505798,-0.632974743843079,0.00689989095553756,-0.774141788482666,-0.611710846424103,0.0380249805748463,-0.790167033672333,-0.491361618041992,-0.126492619514465,-0.861721098423004,0.75389689207077,-0.291560411453247,-0.588754713535309,0.750482261180878,-0.342742055654526,-0.565070331096649,0.735823094844818,-0.223100185394287,-0.639367401599884,0.718304395675659,-0.177355289459229,-0.672743558883667,0.768741130828857,-0.326751112937927,-0.549791634082794,0.778323233127594,-0.355872422456741,-0.517269730567932, +0.757983386516571,-0.238776743412018,-0.606998205184937,0.751185774803162,-0.213610038161278,-0.624572396278381,0.671071827411652,-0.259469896554947,-0.694505572319031,0.672706961631775,-0.283484011888504,-0.683448731899261,0.684990227222443,-0.300145596265793,-0.663853108882904,0.661077320575714,-0.176539048552513,-0.729253530502319,0.659954428672791,-0.228919073939323,-0.715580999851227,0.660714387893677,-0.26481020450592,-0.702376008033752,0.64074033498764,-0.1868035197258,-0.744685411453247,0.622091710567474,-0.155666619539261,-0.767313361167908,0.834079384803772,-0.325339466333389,-0.445495039224625,0.894385278224945,-0.319068312644958,-0.31348118185997,0.838585376739502,-0.349114209413528,-0.418203115463257,0.79983127117157,-0.296659678220749,-0.521788358688354,0.88647848367691,-0.34714475274086,-0.306017190217972,0.912384331226349,-0.316448003053665,-0.259644985198975,0.859051644802094,-0.341435462236404,-0.381381839513779,0.837901055812836,-0.350373148918152,-0.418521732091904,0.825329422950745,-0.372810572385788,-0.424079835414886,0.842591464519501,-0.371923536062241,-0.389502912759781,0.814785957336426,-0.319361239671707,-0.483872205018997,0.809420824050903,-0.28784716129303,-0.511841952800751,0.78443968296051,-0.326905131340027,-0.527055382728577,0.830664932727814,-0.363443464040756,-0.421787410974503,0.791131615638733,-0.305946469306946,-0.529629707336426,0.765062570571899,-0.278445512056351,-0.580644130706787,0.910912871360779,-0.245958864688873,-0.331273466348648,0.932712256908417,-0.201666846871376,-0.298962146043777,0.980104506015778,-0.146778926253319,-0.133607730269432,0.915148615837097,-0.306095778942108,-0.262313544750214,0.757760345935822,-0.212938636541367,-0.616811454296112,0.774372458457947,-0.188563168048859,-0.603979468345642,0.862159013748169,-0.159821957349777,-0.480769038200378,0.849318861961365,-0.252582192420959,-0.463529616594315,0.639312446117401,-0.180591106414795,-0.747439801692963,0.656351804733276,-0.171385705471039,-0.73473072052002,0.757407188415527,-0.13151690363884,-0.639560341835022, +0.7582066655159,-0.208975061774254,-0.617618262767792,0.342880100011826,-0.128372803330421,-0.930566310882568,0.34587761759758,-0.15088364481926,-0.926068484783173,0.488265812397003,-0.094722181558609,-0.867539167404175,0.499980986118317,-0.140211284160614,-0.854610919952393,0.752815544605255,-0.292808175086975,-0.58951860666275,0.714576661586761,-0.180849745869637,-0.675776243209839,0.709804534912109,-0.234270632266998,-0.664300262928009,0.794884502887726,-0.306623250246048,-0.523584604263306,0.656849145889282,-0.231491938233376,-0.717607617378235,0.628975510597229,-0.150283470749855,-0.762761354446411,0.616008102893829,-0.176026090979576,-0.767820835113525,0.705743193626404,-0.242127001285553,-0.665808498859406,0.70448225736618,-0.244540318846703,-0.666261792182922,0.619970798492432,-0.168767631053925,-0.766259551048279,0.63653838634491,-0.213101863861084,-0.741219580173492,0.758194148540497,-0.20908685028553,-0.617595613002777,0.797720372676849,-0.300940930843353,-0.522567451000214,0.716317594051361,-0.221392929553986,-0.66172069311142,0.750849843025208,-0.263936340808868,-0.605443716049194,0.848404407501221,-0.25777667760849,-0.462343245744705,0.499276489019394,-0.15523461997509,-0.852423131465912,0.509666502475739,-0.157317951321602,-0.845867097377777,0.633830010890961,-0.110049404203892,-0.765603423118591,0.639697790145874,-0.175274103879929,-0.748375475406647,0.17565281689167,-0.101774744689465,-0.979177296161652,0.182368949055672,-0.138965502381325,-0.973360240459442,0.313883692026138,-0.0746177658438683,-0.946524798870087,0.34359136223793,-0.106425225734711,-0.933069467544556,0.554122388362885,-0.205741032958031,-0.806609570980072,0.523500204086304,-0.139535307884216,-0.840522229671478,0.496879577636719,-0.145239099860191,-0.855579495429993,0.593445777893066,-0.21570298075676,-0.775431752204895,0.442814290523529,-0.193922325968742,-0.875391125679016,0.401995182037354,-0.126897990703583,-0.90680593252182,0.360416918992996,-0.115528233349323,-0.925609469413757,0.468742609024048,-0.191572725772858,-0.862311005592346, +0.469520926475525,-0.190328776836395,-0.862163007259369,0.363112568855286,-0.11097377538681,-0.925113022327423,0.342363506555557,-0.141741126775742,-0.928814649581909,0.499807000160217,-0.144163370132446,-0.854054987430573,0.592904686927795,-0.216622352600098,-0.775589346885681,0.500157296657562,-0.139648333191872,-0.854599893093109,0.498051524162292,-0.176931545138359,-0.848905146121979,0.639620006084442,-0.176369234919548,-0.748184621334076,0.00322980806231499,-0.0852262899279594,-0.99635648727417,0.0146287316456437,-0.123304657638073,-0.992261052131653,0.140592068433762,-0.0589626468718052,-0.988310396671295,0.175932928919792,-0.092138260602951,-0.980080664157867,-0.338627725839615,-0.0793784335255623,-0.93756628036499,-0.314792811870575,-0.113837376236916,-0.942309260368347,-0.162891015410423,-0.0603992529213428,-0.984793722629547,-0.155997946858406,-0.0781426355242729,-0.98466157913208,0.309851676225662,-0.190598621964455,-0.931484878063202,0.231198355555534,-0.0724947825074196,-0.970202028751373,0.194783344864845,-0.0776290968060493,-0.977769494056702,0.326489567756653,-0.171180710196495,-0.929570734500885,0.114333592355251,-0.15520404279232,-0.981243968009949,0.0500767305493355,-0.0445130057632923,-0.997753024101257,0.0181244183331728,-0.0523672103881836,-0.99846339225769,0.15901243686676,-0.136182323098183,-0.977839231491089,0.156796529889107,-0.139748841524124,-0.977693796157837,0.0201400946825743,-0.0492760799825191,-0.998582124710083,0.00306656048633158,-0.0906096920371056,-0.995881736278534,0.175774067640305,-0.0976735651493073,-0.979573130607605,0.33140555024147,-0.16330087184906,-0.929248750209808,0.197128534317017,-0.073724128305912,-0.977601706981659,0.175457388162613,-0.108178168535233,-0.978525519371033,0.34340164065361,-0.11281906068325,-0.932387888431549,0.322600781917572,-0.182097554206848,-0.928853809833527,0.335383802652359,-0.158739492297173,-0.928611576557159,0.288815230131149,-0.0884403735399246,-0.953291177749634,0.232359692454338,-0.0716479271650314,-0.969987511634827,0.229499846696854,-0.172756358981133,-0.957854390144348, +0.174811467528343,-0.0605383962392807,-0.982739090919495,0.189704552292824,-0.121912069618702,-0.974243104457855,0.213922530412674,-0.198649168014526,-0.956439018249512,0.0475896820425987,-0.0459832698106766,-0.99780797958374,0.105732522904873,-0.161101222038269,-0.981257915496826,0.0398591868579388,-0.168658062815666,-0.984868466854095,0.0484512895345688,-0.0997392162680626,-0.993833243846893,-0.261212289333344,0.0290711056441069,-0.964843571186066,-0.191006138920784,-0.0421764440834522,-0.98068231344223,-0.189031004905701,-0.109353348612785,-0.975863337516785,-0.139558807015419,-0.169522449374199,-0.975594937801361,-0.221635103225708,-0.0509084016084671,-0.97379994392395,-0.264869272708893,-0.0512262508273125,-0.962922811508179,-0.200685665011406,-0.10657412558794,-0.973841488361359,-0.170754373073578,-0.104001082479954,-0.979809641838074,-0.0880460515618324,-0.0795288309454918,-0.992936551570892,-0.114199556410313,-0.0589058436453342,-0.99170994758606,-0.0694357454776764,-0.114467702805996,-0.990997433662415,-0.0600179806351662,-0.131791621446609,-0.989458858966827,-0.0134650226682425,-0.079611249268055,-0.996734976768494,-0.0803577154874802,-0.0772333815693855,-0.993769407272339,0.0115186823531985,-0.110817179083824,-0.993774056434631,0.152105048298836,-0.223868548870087,-0.96267694234848,-0.156538799405098,-0.0914038345217705,-0.983433246612549,-0.13990406692028,-0.108972609043121,-0.984150409698486,-0.030076714232564,-0.0404498800635338,-0.998728811740875,0.0032169041223824,-0.0856527909636497,-0.996319830417633,-0.506959140300751,-0.0356261096894741,-0.861233592033386,-0.507946610450745,-0.0233874619007111,-0.861070990562439,-0.354750722646713,-6.84195838402957e-05,-0.934960842132568,-0.338107824325562,-0.0683821514248848,-0.93861973285675,-0.0793217718601227,-0.120190396904945,-0.989576935768127,-0.114826232194901,-0.0592510998249054,-0.991617023944855,-0.1543979793787,-0.0546068139374256,-0.986498534679413,-0.034499753266573,-0.132682487368584,-0.99055802822113,-0.224781632423401,-0.119862407445908,-0.967008888721466, +-0.272334903478622,-0.0558630637824535,-0.960579514503479,-0.319487363100052,-0.0439436696469784,-0.946571171283722,-0.200944349169731,-0.124085336923599,-0.971712052822113,-0.201861038804054,-0.125466629862785,-0.971344590187073,-0.320386081933975,-0.045370064675808,-0.946199953556061,-0.338547199964523,-0.077616959810257,-0.93774276971817,-0.156376987695694,-0.0873658508062363,-0.983825922012329,-0.0342173613607883,-0.132253482937813,-0.990625202655792,-0.154904544353485,-0.0553562119603157,-0.986377358436584,-0.156598344445229,-0.092905580997467,-0.983283042907715,0.00290090311318636,-0.0960676968097687,-0.99537056684494,-0.638007521629333,-0.0446958914399147,-0.768731892108917,-0.61095142364502,-0.0590537749230862,-0.789462387561798,-0.521799743175507,0.0130410520359874,-0.852968335151672,-0.506979882717133,-0.0360860787332058,-0.861202120780945,-0.861881852149963,-0.0289643611758947,-0.506281495094299,-0.838010370731354,-0.0327159464359283,-0.544672667980194,-0.765182912349701,0.0538778156042099,-0.641554594039917,-0.760772705078125,-0.0133625911548734,-0.64888072013855,-0.358262300491333,-0.109933592379093,-0.927125990390778,-0.343388110399246,-0.0857527330517769,-0.935270607471466,-0.392002433538437,-0.0128574753180146,-0.919874370098114,-0.446847438812256,0.00480316812172532,-0.894597291946411,-0.445914626121521,-0.0942504703998566,-0.890099406242371,-0.494859129190445,0.0218259505927563,-0.868699133396149,-0.483584880828857,-0.0406230762600899,-0.874354422092438,-0.459804117679596,-0.119291052222252,-0.879971563816071,-0.612404942512512,0.0340308807790279,-0.789811432361603,-0.562800228595734,-0.082254134118557,-0.822490334510803,-0.613759636878967,-0.0824158862233162,-0.785179555416107,-0.611064791679382,-0.0146979745477438,-0.79144412279129,-0.37441349029541,-0.120249129831791,-0.919431746006012,-0.453179985284805,0.000269174604909495,-0.891419053077698,-0.485553681850433,-0.0112906573340297,-0.874133944511414,-0.359361827373505,-0.108623489737511,-0.926854908466339,-0.558241426944733,-0.0786523818969727,-0.825942099094391, +-0.613163530826569,0.0335185825824738,-0.789244651794434,-0.636180818080902,0.0143438149243593,-0.771406650543213,-0.519000053405762,-0.071277342736721,-0.851797163486481,-0.524408757686615,-0.0814229846000671,-0.847564578056335,-0.637123227119446,0.0126293944194913,-0.770658612251282,-0.637816250324249,-0.0365626104176044,-0.769320368766785,-0.507458686828613,-0.0474793091416359,-0.860367000102997,-0.357767373323441,-0.105979539453983,-0.927777469158173,-0.486175179481506,-0.0123657817021012,-0.873773992061615,-0.507590889930725,-0.0509354136884212,-0.860091388225555,-0.337911009788513,-0.0644307732582092,-0.93897008895874,-0.817516267299652,0.0928488299250603,-0.568371593952179,-0.809017062187195,0.070251353085041,-0.58357185125351,-0.784478485584259,-0.0170453134924173,-0.619921743869781,-0.73688668012619,-0.0768300443887711,-0.67163622379303,-0.822038114070892,0.0639927983283997,-0.565825283527374,-0.838794767856598,0.0633554607629776,-0.540748953819275,-0.805126905441284,-0.0191290564835072,-0.592794060707092,-0.796868205070496,-0.0227207355201244,-0.603725969791412,-0.713186621665955,0.0130609069019556,-0.700852513313293,-0.735467374324799,0.0354853793978691,-0.676630258560181,-0.69896537065506,-0.0282055363059044,-0.714599072933197,-0.689166784286499,-0.0416321791708469,-0.723405838012695,-0.646407127380371,0.00865373574197292,-0.76294356584549,-0.703801572322845,0.0167521629482508,-0.710199058055878,-0.629386484622955,-0.0208193566650152,-0.776813566684723,-0.505405902862549,-0.13663811981678,-0.851994693279266,-0.761352717876434,-0.0465101338922977,-0.64666748046875,-0.731764018535614,-0.0483186170458794,-0.679843246936798,-0.649063527584076,0.038675170391798,-0.759750425815582,-0.637606501579285,-0.0292022172361612,-0.769808530807495,-0.93610006570816,0.0113745387643576,-0.351549834012985,-0.922239542007446,-0.00903030205518007,-0.386513769626617,-0.860968232154846,0.0645949468016624,-0.504540622234344,-0.861003458499908,0.0125500373542309,-0.50844419002533,-0.708969056606293,-0.0359668731689453,-0.70432186126709, +-0.738227725028992,0.0334826521575451,-0.673720121383667,-0.761312663555145,0.0195842776447535,-0.648089110851288,-0.674456715583801,-0.0600185319781303,-0.735870957374573,-0.813289940357208,-0.0261956490576267,-0.581268846988678,-0.84144538640976,0.061015035957098,-0.536886274814606,-0.860205411911011,0.0423530973494053,-0.508185923099518,-0.789285004138947,-0.0424685776233673,-0.612556576728821,-0.792466998100281,-0.0502384714782238,-0.607842326164246,-0.861643731594086,0.0387850105762482,-0.506029427051544,-0.861650943756104,-0.00927616003900766,-0.507416605949402,-0.760934472084045,-0.0191483628004789,-0.648546099662781,-0.678454220294952,-0.0684382915496826,-0.73144793510437,-0.762785017490387,0.0165523178875446,-0.646440267562866,-0.761183679103851,-0.0308645963668823,-0.647801518440247,-0.637926161289215,-0.0410169288516045,-0.76900440454483,-0.981834948062897,0.0394168123602867,-0.18559755384922,-0.9749915599823,0.0159670487046242,-0.221667394042015,-0.935018360614777,0.0849546492099762,-0.344272524118423,-0.934965848922729,0.0399410650134087,-0.352482080459595,-0.983518540859222,0.0850321054458618,0.159564644098282,-0.988860964775085,0.069190613925457,0.131782695651054,-0.989672303199768,0.143347710371017,-0.000437693990534171,-0.995254218578339,0.0963009744882584,-0.0139729026705027,-0.904058754444122,-0.00258830329403281,-0.427400588989258,-0.92065966129303,0.0858924686908722,-0.380799472332001,-0.929913222789764,0.074844591319561,-0.360082894563675,-0.880464553833008,-0.0125843631103635,-0.473945170640945,-0.962275922298431,0.0245577376335859,-0.270964980125427,-0.968527317047119,0.0926139801740646,-0.231036186218262,-0.975232243537903,0.0921951904892921,-0.20105254650116,-0.947237133979797,0.0131783522665501,-0.320262640714645,-0.947877883911133,0.0104539813473821,-0.318462580442429,-0.975073993206024,0.092901848256588,-0.201494425535202,-0.981096982955933,0.0537898503243923,-0.185890942811966,-0.934597730636597,0.0464904382824898,-0.352655291557312,-0.881552040576935,-0.0158810969442129,-0.471819847822189, +-0.930358469486237,0.0734701976180077,-0.359214782714844,-0.935528814792633,0.0281042736023664,-0.352130681276321,-0.860775351524353,0.0180515293031931,-0.508664906024933,-0.998455703258514,0.0538835786283016,-0.0135208489373326,-0.997822761535645,0.0436358191072941,-0.0494523718953133,-0.977925300598145,0.121943153440952,-0.169682055711746,-0.980151414871216,0.0682096555829048,-0.186146751046181,-0.935289442539215,0.133241966366768,0.32784178853035,-0.94501405954361,0.0905807390809059,0.314234852790833,-0.975512027740479,0.145776495337486,0.164698243141174,-0.979411244392395,0.124048575758934,0.159265726804733,-0.912880301475525,-0.034423042088747,-0.40677335858345,-0.949910521507263,0.13559465110302,-0.281574338674545,-0.93638664484024,0.0897228866815567,-0.339307755231857,-0.925480127334595,0.00173502182587981,-0.3787921667099,-0.986403584480286,0.0448268763720989,-0.158109024167061,-0.982437789440155,0.185930103063583,0.0156838223338127,-0.988200187683105,0.0887322425842285,-0.12484822422266,-0.973365128040314,0.0528700686991215,-0.223081409931183,-0.971633017063141,0.0550545752048492,-0.229996144771576,-0.974074423313141,0.110550194978714,-0.197376921772957,-0.972769975662231,0.083678349852562,-0.216140106320381,-0.963756680488586,0.0217776447534561,-0.265892565250397,-0.919767737388611,0.00607034051790833,-0.3924161195755,-0.932011842727661,0.0932040959596634,-0.350238412618637,-0.927134037017822,0.0778132155537605,-0.36656180024147,-0.90624588727951,-0.00520086567848921,-0.42271900177002,-0.99306458234787,0.0235023926943541,-0.115197785198689,-0.990322709083557,0.130571410059929,-0.0470321178436279,-0.9944087266922,0.104627780616283,-0.0142964459955692,-0.98714691400528,0.0240940172225237,-0.157988637685776,-0.996626257896423,0.0530845075845718,0.062595821917057,-0.97364866733551,0.16994297504425,0.152077808976173,-0.976859450340271,0.145599246025085,0.156673640012741,-0.998323917388916,0.0559253990650177,0.0148965623229742,-0.998343348503113,0.0555091872811317,0.0151453698053956,-0.97712230682373,0.139966771006584,0.160129055380821, +-0.982792794704437,0.0931172892451286,0.159522965550423,-0.995390057563782,0.0948885753750801,-0.013958228752017,-0.98734724521637,0.0224999617785215,-0.156969308853149,-0.993982970714569,0.108285591006279,-0.0164953600615263,-0.997605383396149,0.0677997320890427,-0.0136717380955815,-0.980319678783417,0.0658580213785172,-0.186107665300369,-0.860104918479919,0.156197994947433,0.48561504483223,-0.876302540302277,0.0991930812597275,0.471438825130463,-0.929132997989655,0.15018530189991,0.337870240211487,-0.934003949165344,0.142276152968407,0.327710181474686,-0.637389302253723,0.163243025541306,0.75305163860321,-0.661792993545532,0.11566748470068,0.740709781646729,-0.748066008090973,0.176298230886459,0.639778196811676,-0.760854959487915,0.160240978002548,0.628826379776001,-0.8608278632164,0.0329051874577999,-0.507831454277039,-0.97889769077301,0.0855385810136795,-0.185586825013161,-0.974596619606018,0.112088799476624,-0.19390095770359,-0.869395852088928,-0.00825980119407177,-0.494047194719315,-0.980105638504028,0.0734054297208786,-0.184403672814369,-0.980697751045227,0.111150376498699,0.160865068435669,-0.977636396884918,0.145583912730217,0.151764810085297,-0.984907925128937,0.035643819719553,-0.169369116425514,-0.984434187412262,0.0406161807477474,-0.170996204018593,-0.97773414850235,0.144576132297516,0.152097523212433,-0.982833445072174,0.183474019169807,0.0193778537213802,-0.992039740085602,0.0202620755881071,-0.124285139143467,-0.869315266609192,-0.00777788180857897,-0.494196951389313,-0.975277006626129,0.10820797085762,-0.192680612206459,-0.948960542678833,0.137338653206825,-0.283922523260117,-0.915653169155121,-0.0393580086529255,-0.400037735700607,-0.642882883548737,0.124974586069584,0.755700290203094,-0.64288467168808,0.16631230711937,0.747689545154572,-0.859480798244476,0.0981574356555939,0.501655340194702,-0.863669276237488,0.128403812646866,0.487429797649384,-0.643046736717224,0.170917123556137,0.746510684490204,-0.7156662940979,0.233809873461723,0.658145010471344,-0.830988109111786,0.0672370791435242,0.552211880683899, +-0.85965496301651,0.103013783693314,0.500381350517273,-0.860062539577484,0.160589173436165,0.484255880117416,-0.894412159919739,0.206157580018044,0.396895319223404,-0.964711725711823,0.0126389991492033,0.263004839420319,-0.981825232505798,0.0733268558979034,0.175049677491188,-0.865043163299561,0.113717921078205,0.488639503717422,-0.860168159008026,0.154289349913597,0.486112833023071,-0.981938004493713,0.0655157640576363,0.177498266100883,-0.981782376766205,0.0994071364402771,0.161930814385414,-0.993414580821991,0.0218832027167082,-0.112466841936111,-0.99110335111618,0.0825313851237297,-0.104415759444237,-0.98254781961441,0.150916889309883,-0.108737662434578,-0.989627420902252,0.133960857987404,-0.0518852062523365,-0.986518502235413,0.143431007862091,0.0787970796227455,-0.980835497379303,0.178331330418587,0.0784851536154747,-0.993441462516785,0.0983088761568069,0.0583904460072517,-0.998589634895325,0.0394249856472015,0.0355587676167488,-0.972692131996155,0.158308863639832,0.169730007648468,-0.996438503265381,0.0485373847186565,0.0689523443579674,-0.987935841083527,0.0723324120044708,0.136933922767639,-0.971231997013092,0.141628935933113,0.19144107401371,-0.963997721672058,0.109018057584763,0.242535218596458,-0.939367294311523,0.173713222146034,0.295656889677048,-0.936161518096924,0.166983753442764,0.309383362531662,-0.977724075317383,0.0970156192779541,0.186127901077271,-0.912822961807251,0.110864236950874,0.393018364906311,-0.881611764431,0.170637637376785,0.440049409866333,-0.871316015720367,0.17155833542347,0.459756582975388,-0.932692468166351,0.1121886074543,0.34278079867363,-0.932863116264343,0.113950073719025,0.341733455657959,-0.872637748718262,0.184686109423637,0.452100038528442,-0.86144232749939,0.147996202111244,0.485813140869141,-0.931880533695221,0.156114399433136,0.327455252408981,-0.977735280990601,0.0978014916181564,0.185657754540443,-0.936291635036469,0.172224804759026,0.306099325418472,-0.935736298561096,0.129963710904121,0.327882766723633,-0.978134274482727,0.133882001042366,0.15915136039257,-0.965523362159729,0.0149410311132669,0.259887456893921, +-0.896494626998901,0.21292869746685,0.388534158468246,-0.924537718296051,0.165845558047295,0.343111038208008,-0.937553286552429,0.0902659818530083,0.335925430059433,-0.845629811286926,0.0930464044213295,0.525597274303436,-0.715040743350983,0.232941076159477,0.659132182598114,-0.81123673915863,0.156525000929832,0.563378036022186,-0.869090259075165,0.10926765948534,0.482434183359146,-0.880506992340088,0.119463168084621,0.45873299241066,-0.839278638362885,0.17866475880146,0.513507843017578,-0.869280576705933,0.149101793766022,0.471295982599258,-0.908475339412689,0.102671675384045,0.405130952596664,-0.947825133800507,0.102897830307484,0.301727652549744,-0.920135498046875,0.160466954112053,0.357212871313095,-0.933443486690521,0.156809210777283,0.322636246681213,-0.962182521820068,0.102057546377182,0.25256535410881,-0.761486649513245,0.156693786382675,0.628955602645874,-0.784078121185303,0.108533725142479,0.611098945140839,-0.848174631595612,0.167241454124451,0.50262326002121,-0.860797166824341,0.151998862624168,0.485720664262772,-0.491654008626938,0.174863815307617,0.853052735328674,-0.508977055549622,0.114888526499271,0.853078603744507,-0.629420340061188,0.173260048031807,0.757503151893616,-0.636670172214508,0.166957572102547,0.752845525741577,-0.83349335193634,0.0957161411643028,0.544175684452057,-0.786932706832886,0.160914197564125,0.595687448978424,-0.777173697948456,0.154208943247795,0.610098838806152,-0.86245197057724,0.10969565808773,0.494109004735947,-0.731849074363708,0.0884531065821648,0.675701856613159,-0.653566658496857,0.160039067268372,0.73975545167923,-0.646215975284576,0.163391217589378,0.745458364486694,-0.770289480686188,0.117734245955944,0.626731812953949,-0.771005928516388,0.121245563030243,0.625179469585419,-0.65070629119873,0.188330933451653,0.7356036901474,-0.639411568641663,0.152520135045052,0.75358510017395,-0.758776068687439,0.171529963612556,0.628360033035278,-0.86297345161438,0.112654283642769,0.492530018091202,-0.781048774719238,0.178382650017738,0.598450005054474,-0.763023138046265,0.147813975811005,0.629243016242981, +-0.859097301959991,0.162141472101212,0.485450267791748,-0.335080415010452,0.163465902209282,0.927900850772858,-0.356131702661514,0.100279733538628,0.929039299488068,-0.480739176273346,0.162731349468231,0.861631214618683,-0.49425345659256,0.162205338478088,0.854050934314728,-0.000575580983422697,0.105868153274059,0.994379997253418,-0.0331643708050251,0.0605044290423393,0.997616827487946,-0.147385537624359,0.144370779395103,0.978485882282257,-0.172948852181435,0.125470981001854,0.976906180381775,-0.647429466247559,0.146674290299416,0.747878134250641,-0.53243613243103,0.17191869020462,0.828827917575836,-0.648882448673248,0.144802287220955,0.746983230113983,-0.751822233200073,0.114360921084881,0.649372696876526,-0.514905452728271,0.161939442157745,0.841812372207642,-0.43079274892807,0.204591080546379,0.878953993320465,-0.517317116260529,0.165067613124847,0.839723467826843,-0.588147401809692,0.107147477567196,0.801624655723572,-0.653050601482391,0.147466823458672,0.742817997932434,-0.573118627071381,0.225377038121223,0.787870824337006,-0.649339735507965,0.152953252196312,0.744958519935608,-0.720722436904907,0.0751890763640404,0.689134061336517,-0.769649624824524,0.126470670104027,0.625815093517303,-0.708154320716858,0.183864280581474,0.681697428226471,-0.764374017715454,0.129656821489334,0.631602466106415,-0.824869096279144,0.0842474102973938,0.559011042118073,-0.646180629730225,0.147714495658875,0.748753011226654,-0.564927101135254,0.216282486915588,0.796290874481201,-0.504134654998779,0.205496609210968,0.838820219039917,-0.645180344581604,0.157972976565361,0.747520506381989,-0.486430168151855,0.133150890469551,0.863514065742493,-0.421870291233063,0.196341454982758,0.885141491889954,-0.359624117612839,0.19552880525589,0.912380933761597,-0.491111248731613,0.156162068247795,0.856984913349152,-0.487329542636871,0.14269831776619,0.861479699611664,-0.360396206378937,0.197840794920921,0.911577641963959,-0.337157547473907,0.153460413217545,0.928856670856476,-0.490656137466431,0.179611653089523,0.852640748023987,-0.642559468746185,0.144729301333427,0.752443194389343, +-0.504629373550415,0.207475543022156,0.83803528547287,-0.494118452072144,0.16287387907505,0.854001939296722,-0.633075177669525,0.18482980132103,0.751700580120087,-0.171626806259155,0.13198433816433,0.976280868053436,-0.199320420622826,0.0840590372681618,0.976322412490845,-0.311222165822983,0.160247772932053,0.93672913312912,-0.338457316160202,0.147102057933807,0.929412543773651,0.167776867747307,0.0632990375161171,0.983790755271912,0.12122543156147,0.0188650973141193,0.992445826530457,0.0294710677117109,0.129949241876602,0.991082549095154,0.00240459921769798,0.120657198131084,0.992691338062286,-0.316060781478882,0.101006470620632,0.943346858024597,-0.258747547864914,0.158199533820152,0.952902257442474,-0.19883032143116,0.163295343518257,0.966333985328674,-0.331343799829483,0.114449642598629,0.936542987823486,-0.157118633389473,0.0693465694785118,0.985142111778259,-0.0931287780404091,0.128804638981819,0.98728746175766,-0.0309653095901012,0.138702809810638,0.989849925041199,-0.16902694106102,0.0853786468505859,0.981906533241272,-0.169987872242928,0.0878515318036079,0.981522440910339,-0.0313387475907803,0.139726623892784,0.989694058895111,-0.00147435965482146,0.101403087377548,0.994844377040863,-0.170919746160507,0.135449975728989,0.975930213928223,-0.330353617668152,0.111725598573685,0.937221467494965,-0.19931423664093,0.164582252502441,0.966015815734863,-0.173098906874657,0.124729156494141,0.976974725723267,-0.33661562204361,0.156089022755623,0.928615272045135,0.333492487668991,0.0337704233825207,0.942147731781006,0.2885881960392,-0.00265705259516835,0.957449615001678,0.195913746953011,0.103270292282104,0.975168168544769,0.172906622290611,0.0889675319194794,0.98091185092926,0.629373669624329,-0.0332168750464916,0.776392698287964,0.600719332695007,-0.0636364817619324,0.796923279762268,0.498081058263779,0.0385248400270939,0.866274356842041,0.491050004959106,0.0126820979639888,0.871039211750031,-0.0856601819396019,0.216425701975822,0.972534000873566,-0.179333955049515,0.154927611351013,0.971512615680695,-0.201707571744919,0.0810669586062431,0.976085186004639, +-0.258320987224579,0.0406056344509125,0.965205371379852,-0.147765383124352,0.137950375676155,0.979354441165924,-0.0983833074569702,0.13390451669693,0.986098527908325,-0.179593741893768,0.0888842642307281,0.979717135429382,-0.214388072490692,0.0880129113793373,0.972775161266327,-0.325566321611404,0.1492008715868,0.933673202991486,-0.265222728252411,0.16390635073185,0.950153470039368,-0.342530429363251,0.124454237520695,0.931227207183838,-0.39418289065361,0.0950551703572273,0.914103031158447,-0.382657408714294,0.181265309453011,0.905933916568756,-0.343619167804718,0.159188032150269,0.925518810749054,-0.439049810171127,0.119565963745117,0.890471339225769,-0.559568643569946,0.0498450584709644,0.82728374004364,-0.639099061489105,0.158491194248199,0.752617418766022,-0.34022268652916,0.145276039838791,0.929055094718933,-0.352110981941223,0.175199404358864,0.919414579868317,-0.640174567699432,0.11588878929615,0.759438157081604,-0.337262064218521,0.16876745223999,0.926159799098969,0.00285724690183997,0.143740192055702,0.989611327648163,-0.0126358661800623,0.174274608492851,0.984615981578827,-0.347893834114075,0.123403556644917,0.929377019405365,-0.347289115190506,0.116807200014591,0.930454909801483,-0.0100596379488707,0.151061564683914,0.988473236560822,-0.0889303237199783,0.21968948841095,0.971508085727692,-0.269273728132248,0.052616823464632,0.961625277996063,-0.639990568161011,0.11331357806921,0.759981632232666,-0.351491540670395,0.166799113154411,0.921212196350098,-0.403856456279755,0.206304416060448,0.89125669002533,-0.556109726428986,0.0462842397391796,0.829819202423096,0.000117783027235419,0.0379558987915516,0.999279499053955,0.109432272613049,0.138068825006485,0.984358549118042,0.152371108531952,0.127873688936234,0.980016112327576,-0.0040528723038733,0.0647480115294456,0.997893452644348,0.203177362680435,0.0354400463402271,0.978500366210938,0.292704313993454,0.122278809547424,0.948352336883545,0.32949635386467,0.103588744997978,0.938457012176514,0.174669772386551,0.0626179501414299,0.982633948326111,0.178290173411369,0.051758773624897,0.98261570930481, +0.330262392759323,0.101442314684391,0.93842226266861,0.336857467889786,0.050625316798687,0.940193653106689,0.173306778073311,0.0909926071763039,0.980655550956726,-0.0072383158840239,0.0735190510749817,0.997267544269562,0.152598083019257,0.127222985029221,0.980065405368805,0.171638160943985,0.0825698897242546,0.981693744659424,0.00220483192242682,0.119666658341885,0.992811799049377,0.489530771970749,0.00505209062248468,0.871971487998962,0.462439894676208,-0.0176855437457561,0.886474251747131,0.352711886167526,0.0788167640566826,0.932406663894653,0.33586648106575,0.0456103049218655,0.940804660320282,0.74855649471283,-0.0782087817788124,0.658442616462708,0.699739992618561,-0.116925112903118,0.704764127731323,0.638271570205688,-0.00528139853850007,0.769793212413788,0.634082734584808,-0.00920187123119831,0.773210465908051,-0.0143765322864056,0.0521202385425568,0.998537361621857,-0.02841642126441,0.0730704963207245,0.996921896934509,0.0374630652368069,0.132564976811409,0.990466117858887,0.105489671230316,0.142277002334595,0.984189629554749,0.0769844874739647,0.0504547096788883,0.995754957199097,0.143149822950363,0.144845813512802,0.979044437408447,0.110391773283482,0.0914004892110825,0.989676535129547,0.0731519535183907,0.0170104894787073,0.997175753116608,0.291958093643188,0.123005367815495,0.948488354682922,0.205313265323639,0.0330422930419445,0.978138387203217,0.250654101371765,0.00910786725580692,0.968033850193024,0.267644345760345,0.0730626359581947,0.960743606090546,0.390732377767563,0.0226626619696617,0.920225322246552,0.445662647485733,0.0747449919581413,0.89207512140274,0.485959440469742,0.0586742348968983,0.872009634971619,0.357921272516251,0.0200331881642342,0.933536887168884,0.526571154594421,-0.00971757434308529,0.850075542926788,0.591881811618805,0.0552345551550388,0.804129958152771,0.628566384315491,0.031773641705513,0.777106642723083,0.507289886474609,-0.00789834186434746,0.861739277839661,0.511007249355316,-0.0203757286071777,0.859334886074066,0.63012433052063,0.0265007968991995,0.776041924953461,0.631160795688629,-0.0243330989032984,0.775270283222198, +0.492463946342468,0.0199229475110769,0.870104849338531,0.361206710338593,0.00980066508054733,0.932434380054474,0.486815720796585,0.0561459138989449,0.871698498725891,0.490157574415207,0.00818214844912291,0.871595442295074,0.336578488349915,0.049208827316761,0.94036877155304,0.851765751838684,-0.0873957350850105,0.516582131385803,0.816141426563263,-0.120598040521145,0.565127670764923,0.767261981964111,-0.0134910587221384,0.641191780567169,0.758506000041962,-0.0267024673521519,0.651118755340576,0.981584012508392,-0.059601902961731,0.181495040655136,0.981058418750763,-0.0840848609805107,0.174511805176735,0.949250340461731,-0.00350558175705373,0.314501851797104,0.93594628572464,-0.0433517023921013,0.349464178085327,0.549134731292725,0.12726666033268,0.825986862182617,0.52264541387558,0.0898165628314018,0.847805857658386,0.460868209600449,0.0219048112630844,0.887198269367218,0.395741134881973,0.006148143671453,0.918341636657715,0.544053614139557,0.0746299996972084,0.835724771022797,0.582861125469208,0.0650994852185249,0.809959828853607,0.506733298301697,0.0117842201143503,0.862022280693054,0.477217823266983,0.0105187855660915,0.878722071647644,0.395228892564774,0.066086657345295,0.916202306747437,0.439445942640305,0.0809059143066406,0.894618093967438,0.374751478433609,0.0395012646913528,0.926283478736877,0.346506148576736,0.024990975856781,0.937714755535126,0.318040281534195,0.102164745330811,0.942556440830231,0.385686904191971,0.0723183155059814,0.919791102409363,0.277610242366791,0.0671045780181885,0.958347201347351,0.115362107753754,0.0102489143610001,0.993270635604858,0.00596559885889292,0.170511975884438,0.985337555408478,0.343721359968185,0.117034487426281,0.931750357151031,0.327438116073608,0.142621204257011,0.934046804904938,-0.00662617944180965,0.120071642100811,0.992743134498596,0.342901170253754,0.108304180204868,0.933107197284698,0.641834676265717,0.0648849755525589,0.764093160629272,0.62883847951889,0.106624491512775,0.770190477371216,0.334425032138824,0.0781189128756523,0.939179182052612,0.335088193416595,0.0712033212184906,0.939492523670197, +0.630327999591827,0.0923450291156769,0.770817160606384,0.540149450302124,0.138711795210838,0.830058813095093,0.398114293813705,0.0030865534208715,0.917330622673035,-0.0046215271577239,0.101950608193874,0.994778752326965,0.330052256584167,0.120016857981682,0.936302065849304,0.288115978240967,0.137164756655693,0.947720944881439,0.108513191342354,0.017453920096159,0.993941724300385,0.670521080493927,-0.0381030887365341,0.740911483764648,0.715840756893158,0.042378593236208,0.69697642326355,0.746590733528137,0.0286045111715794,0.664668440818787,0.646233975887299,-0.0326589941978455,0.762440204620361,0.78338885307312,-0.0533858127892017,0.619235038757324,0.81374716758728,0.0123837981373072,0.581087112426758,0.845337808132172,0.00678200647234917,0.534189164638519,0.764090657234192,-0.0495301224291325,0.643204689025879,0.763967216014862,-0.0488840527832508,0.6434006690979,0.848605990409851,-0.0116279721260071,0.52889758348465,0.856058597564697,-0.0638827085494995,0.512915909290314,0.760635673999786,-0.0139701254665852,0.649028718471527,0.646202504634857,-0.0325337834656239,0.762472212314606,0.751539349555969,0.00870507769286633,0.659630835056305,0.755015969276428,-0.0460708551108837,0.654085874557495,0.636459827423096,0.00373944942839444,0.771300733089447,0.933530211448669,-0.0626203566789627,0.352987289428711,0.928818047046661,-0.0773867443203926,0.362364917993546,0.877423286437988,0.00293831690214574,0.479707986116409,0.859919190406799,-0.0398769974708557,0.508870184421539,0.996494114398956,-0.0748919174075127,0.0372928082942963,0.991974472999573,-0.120004169642925,0.0398197174072266,0.990316689014435,-0.0298931617289782,0.135570511221886,0.983655214309692,-0.0343443751335144,0.176757216453552,0.998216032981873,-0.0545129850506783,-0.0243545640259981,0.97992604970932,-0.150860622525215,-0.130330443382263,0.998244285583496,-0.0581973381340504,-0.0110212871804833,0.997188627719879,-0.0659506916999817,0.0355719029903412,0.865804016590118,-0.0891060382127762,0.492385625839233,0.908961832523346,0.00952616147696972,0.416770786046982, +0.928872406482697,-0.0191244352608919,0.369905978441238,0.857180118560791,-0.0729266181588173,0.509827375411987,0.937021315097809,-0.08169174939394,0.339584618806839,0.968977808952332,0.0243766941130161,0.245942682027817,0.977941274642944,0.00502773001790047,0.208819702267647,0.932768821716309,-0.0695540979504585,0.353701263666153,0.93265575170517,-0.0673967599868774,0.354416251182556,0.979769468307495,-0.023237980902195,0.19877578318119,0.979264080524445,-0.0814364552497864,0.185499340295792,0.93682986497879,-0.035461999475956,0.34798327088356,0.857078731060028,-0.0720155239105225,0.510127186775208,0.929658889770508,-0.0270593594759703,0.367426514625549,0.931488215923309,-0.0769976824522018,0.355529248714447,0.861097991466522,-0.0318132005631924,0.507442831993103,0.654007434844971,-0.0234975032508373,0.756123185157776,0.76334547996521,0.109812669456005,0.636588633060455,0.710117936134338,0.0543809719383717,0.701979517936707,0.670748233795166,-0.0244935378432274,0.741280555725098,0.822855174541473,0.00332864280790091,0.5682412981987,0.896336019039154,0.119566686451435,0.426949143409729,0.83033287525177,0.0106151774525642,0.557166814804077,0.787558019161224,-0.0172603987157345,0.6159987449646,0.790724873542786,-0.0205023791640997,0.6118283867836,0.806213319301605,0.0348641239106655,0.590596795082092,0.811088383197784,0.0168073233217001,0.584682166576385,0.778680384159088,-0.0459588728845119,0.625735282897949,0.671665608882904,-0.0252812132239342,0.740423142910004,0.704286992549896,0.0592892989516258,0.707435250282288,0.711437821388245,0.0479713976383209,0.701109826564789,0.665152132511139,-0.0312413740903139,0.74605405330658,0.983756422996521,-0.0493210889399052,0.172600015997887,0.989875137805939,0.000192873849300668,0.141940698027611,0.995566844940186,0.00464727263897657,0.0939414799213409,0.980732381343842,-0.0526229850947857,0.188135668635368,0.994796514511108,-0.0416320078074932,0.092988096177578,0.995326638221741,-0.0217852909117937,0.0940771028399467,0.998656809329987,-0.00652192998677492,0.0514011532068253, +0.996346473693848,-0.0378444455564022,0.0765607133507729,0.996363878250122,-0.0323058255016804,0.0788372382521629,0.998491764068604,-0.0409816056489944,0.0365348607301712,0.997414708137512,-0.0685598030686378,-0.021533478051424,0.998952507972717,-0.0349123328924179,0.0295832194387913,0.980616211891174,-0.0467364937067032,0.190283358097076,0.996349215507507,-0.0273451991379261,0.0808733776211739,0.996633112430573,-0.0731855183839798,0.0369645245373249,0.984224021434784,-0.0255234781652689,0.17507591843605,0.862163722515106,-0.0807353630661964,0.500155687332153,0.867380678653717,-0.0311599988490343,0.496668606996536,0.868909001350403,0.0398205183446407,0.493367522954941,0.903806030750275,0.0226193889975548,0.427344262599945,0.938127279281616,0.0319963991641998,0.344809293746948,0.928233504295349,0.0541043542325497,0.368042647838593,0.910513579845428,-0.0129235684871674,0.413277119398117,0.898831725120544,-0.0731386318802834,0.432148396968842,0.969134867191315,0.0238013975322247,0.245379641652107,0.935139298439026,-0.0737981125712395,0.346508800983429,0.947154998779297,-0.0757273957133293,0.311709374189377,0.96525901556015,-0.00740044564008713,0.261190116405487,0.964398264884949,-0.0544365532696247,0.25879094004631,0.983792364597321,0.0692112222313881,0.165415793657303,0.978991508483887,0.0102840103209019,0.203641667962074,0.977292001247406,-0.0366968140006065,0.208695232868195,0.993931591510773,0.016087343916297,0.108817271888256,0.993387401103973,0.013415701687336,0.114023953676224,0.990454912185669,-0.0147092584520578,0.137050703167915,0.98987752199173,-0.0246895533055067,0.139760345220566,0.99083411693573,-0.0289279520511627,0.13195039331913,0.991549849510193,-0.019562054425478,0.128242880105972,0.993273198604584,-0.00514241540804505,0.115680865943432,0.992517173290253,-0.0179499816149473,0.12077858299017,0.980959713459015,-0.0479862131178379,0.188189804553986,0.986570239067078,-0.0120901241898537,0.162889614701271,0.988501191139221,0.00799104850739241,0.151002496480942,0.981471061706543,-0.0333697944879532,0.188682347536087, +0.635632514953613,-0.000882949738297611,0.77199125289917,0.856632173061371,-0.00764643820002675,0.515871047973633,0.84914368391037,0.0608856417238712,0.52464097738266,0.636699020862579,0.00228318152949214,0.771109104156494,0.855541586875916,-0.0218434128910303,0.517273128032684,0.952276825904846,-0.170966237783432,0.252862453460693,0.971914410591125,-0.0232049245387316,0.234187796711922,0.848218023777008,0.0708741992712021,0.52488386631012,0.849418878555298,0.0577208325266838,0.524553000926971,0.965625762939453,0.0841836109757423,0.245926916599274,0.907474756240845,0.0991348102688789,0.408242583274841,0.833123803138733,-0.0186293069273233,0.552772700786591,0.634677290916443,0.0397906899452209,0.771752178668976,0.850501596927643,0.0441518910229206,0.524116098880768,0.776338577270508,0.088860034942627,0.624021172523499,0.659934818744659,-0.0332395136356354,0.750587344169617,0.959874987602234,-0.0353672914206982,0.278188973665237,0.948825836181641,0.186934411525726,0.254529058933258,0.983400166034698,0.177681669592857,0.0367889851331711,0.985714495182037,0.0611971318721771,0.156913623213768,0.904284000396729,0.377532511949539,0.199348196387291,0.95654708147049,0.289503335952759,0.0347235314548016,0.970296919345856,0.237043917179108,0.0483142361044884,0.926489651203156,0.27239978313446,0.259644448757172,0.994884312152863,0.00276300706900656,0.100983165204525,0.994174838066101,0.0142365600913763,0.106835328042507,0.99993497133255,-0.0114133907482028,1.94746335182572e-05,0.997635722160339,0.0686978921294212,0.00189336726907641,-0.63946133852005,0.761272966861725,-0.107483305037022,-0.684390425682068,0.715616405010223,-0.139652878046036,-0.59046483039856,0.793845415115356,-0.145467102527618,-0.547369003295898,0.830706775188446,-0.101555086672306,-0.55022531747818,0.834741532802582,-0.0214178115129471,-0.516009628772736,0.854412734508514,-0.0609347447752953,-0.544234097003937,0.834308207035065,-0.0879734754562378,-0.567795515060425,0.822189569473267,-0.0401568077504635,-0.590873122215271,0.806680560112,-0.0116400020197034, +-0.5647332072258,0.8249232172966,0.0240445416420698,-0.514352798461914,0.857563078403473,0.0051710563711822,-0.550225555896759,0.834741115570068,-0.0214259400963783,-0.984889626502991,0.0958863794803619,0.144215866923332,-0.987718820571899,0.0827931836247444,0.13250270485878,-0.970074117183685,0.224384561181068,-0.0927792489528656,-0.967938840389252,0.232879012823105,-0.0941377654671669,-0.915294945240021,0.402134388685226,0.0228716880083084,-0.927025556564331,0.374500840902328,0.0193035341799259,-0.854297459125519,0.487393230199814,-0.180620387196541,-0.839802503585815,0.510566473007202,-0.184536337852478,-0.834050714969635,-0.495168268680573,0.243244230747223,-0.854475557804108,-0.451041221618652,0.257746398448944,-0.942960977554321,-0.295811891555786,0.152709305286407,-0.928565204143524,-0.344309449195862,0.138627678155899,-0.822721838951111,0.557959258556366,-0.108676053583622,-0.877180993556976,0.479157030582428,-0.0310187991708517,-0.803807020187378,0.583265662193298,-0.117027714848518,-0.709909439086914,0.671367526054382,-0.21282459795475,-0.884214639663696,0.464111298322678,-0.0525848306715488,-0.900493144989014,0.433711528778076,-0.0317273251712322,-0.83592700958252,0.538635790348053,-0.105344533920288,-0.807225227355957,0.575034618377686,-0.133126556873322,-0.794490993022919,0.602216839790344,-0.0782231017947197,-0.831232130527496,0.550041615962982,-0.0806683599948883,-0.775363802909851,0.625589191913605,-0.0863082408905029,-0.729527592658997,0.679666101932526,-0.0764424204826355,-0.684524953365326,0.715419113636017,-0.140004068613052,-0.796773970127106,0.597956597805023,-0.0871734023094177,-0.732545256614685,0.673486351966858,-0.0989622995257378,-0.586931347846985,0.799665570259094,-0.126674965023994,-0.768005728721619,0.639762461185455,-0.0295151118189096,-0.752571880817413,0.658341765403748,-0.0148898335173726,-0.706467866897583,0.706568002700806,-0.040800366550684,-0.72832316160202,0.68183171749115,-0.0681972876191139,-0.752576470375061,0.658333718776703,-0.0150208696722984,-0.77916419506073,0.626819312572479,-0.000894803437404335, +-0.739225625991821,0.672963082790375,0.0258133914321661,-0.705243825912476,0.708963811397552,-0.00119711179286242,-0.705832481384277,0.70819753408432,-0.0160287208855152,-0.73631364107132,0.676620304584503,-0.00521379103884101,-0.601508796215057,0.797025859355927,0.0541935227811337,-0.549539983272552,0.835465371608734,-0.00182175484951586,-0.721756219863892,0.691565930843353,-0.028362525627017,-0.705828666687012,0.708203673362732,-0.0159200429916382,-0.550914108753204,0.832705616950989,-0.0556325949728489,-0.584556758403778,0.803208589553833,-0.114670656621456,-0.916982173919678,0.398323357105255,0.0219589192420244,-0.902583003044128,0.429288864135742,0.0324809104204178,-0.820957958698273,0.562365472316742,0.0988585650920868,-0.847756385803223,0.524226486682892,0.0805959179997444,-0.899867713451385,0.435729920864105,0.0194301269948483,-0.851716279983521,0.519542574882507,0.0682268813252449,-0.733230113983154,0.659708857536316,0.164796486496925,-0.820152997970581,0.564637899398804,0.0923760160803795,-0.815431416034698,0.575817406177521,0.0592127740383148,-0.713683426380157,0.695117056369781,0.0864188969135284,-0.603936314582825,0.793763756752014,0.0721113234758377,-0.74178558588028,0.667623341083527,0.0635062456130981,-0.84512597322464,0.531633913516998,0.0559259355068207,-0.81304144859314,0.58049088716507,0.0446545220911503,-0.740057587623596,0.671554446220398,0.0364613644778728,-0.782328724861145,0.620586454868317,0.0532374195754528,-0.989529728889465,0.0720821619033813,0.125040292739868,-0.993656754493713,0.059837244451046,0.0952149406075478,-0.975400328636169,0.212651208043098,-0.0580828562378883,-0.97082644701004,0.21965916454792,-0.0961557328701019,-0.994128048419952,0.0568508021533489,0.0920741558074951,-0.995456993579865,0.0540317632257938,0.0783969461917877,-0.977940380573273,0.202228918671608,-0.0523077733814716,-0.97587925195694,0.209479749202728,-0.0614662431180477,-0.96131044626236,0.275284022092819,0.0100455060601234,-0.9669468998909,0.254663527011871,0.0126566039398313,-0.91635274887085,0.386880099773407,-0.103061489760876, +-0.902762770652771,0.412047415971756,-0.123436234891415,-0.941253542900085,0.337576180696487,-0.00918169692158699,-0.958485782146454,0.284423768520355,0.0202045943588018,-0.900858223438263,0.418685734272003,-0.114702582359314,-0.860058903694153,0.47085964679718,-0.196442857384682,-0.943861961364746,-0.241121977567673,0.225798100233078,-0.950403809547424,-0.21967650949955,0.220170304179192,-0.997797667980194,-0.0568211935460567,0.0342224985361099,-0.996232450008392,-0.0814865753054619,0.0296775922179222,-0.691987574100494,-0.709451675415039,0.133534640073776,-0.717014133930206,-0.672682464122772,0.182726889848709,-0.761093378067017,-0.614772021770477,0.206862702965736,-0.731268405914307,-0.660628497600555,0.169754073023796,-0.854703903198242,-0.449350535869598,0.25993338227272,-0.920608758926392,-0.342510521411896,0.187526389956474,-0.973354876041412,-0.202406212687492,0.107759959995747,-0.943215250968933,-0.294261574745178,0.154126808047295,-0.920287728309631,-0.349705398082733,0.175432711839676,-0.938807189464569,-0.303213030099869,0.163410112261772,-0.980839490890503,-0.168454587459564,0.0978629216551781,-0.972969889640808,-0.207481279969215,0.101396277546883,-0.974222302436829,-0.165708243846893,0.153074756264687,-0.980688095092773,-0.142412230372429,0.134050771594048,-0.99968820810318,0.0085441954433918,0.0234616752713919,-0.99969619512558,-0.00858133286237717,0.0231072697788477,-0.950597941875458,-0.212262868881226,0.226512789726257,-0.974158644676208,-0.163108289241791,0.156239435076714,-0.999656856060028,-0.00641208561137319,0.0253983736038208,-0.997919857501984,-0.0526649877429008,0.0371797531843185,-0.734395921230316,-0.64886873960495,0.199077919125557,-0.762678563594818,-0.601728439331055,0.237158626317978,-0.848389148712158,-0.48474594950676,0.212737992405891,-0.821888506412506,-0.539125144481659,0.183965757489204,-0.787027835845947,-0.615651369094849,0.039504062384367,-0.801967978477478,-0.59356814622879,0.0672628805041313,-0.745844006538391,-0.664942502975464,0.0396005250513554,-0.72211366891861,-0.69156676530838,0.0169536136090755, +-0.720736145973206,-0.681932926177979,0.124526672065258,-0.840586066246033,-0.522601664066315,0.142487287521362,-0.866697490215302,-0.474123179912567,0.15505775809288,-0.759157657623291,-0.625042676925659,0.18166272342205,-0.843076348304749,-0.528154909610748,0.101363830268383,-0.875784695148468,-0.466681599617004,0.123326927423477,-0.896092414855957,-0.421315550804138,0.139684051275253,-0.866097867488861,-0.482427000999451,0.130914703011513,-0.866781115531921,-0.468169718980789,0.171777755022049,-0.896059274673462,-0.419246435165405,0.1459801197052,-0.937202453613281,-0.330221623182297,0.112273506820202,-0.918367624282837,-0.369866400957108,0.140712395310402,-0.76272451877594,-0.601195871829987,0.238358721137047,-0.866777956485748,-0.470813453197479,0.1644107401371,-0.916755139827728,-0.380270898342133,0.122287355363369,-0.847637116909027,-0.488005787134171,0.20823472738266,-0.708554267883301,-0.699775755405426,0.0909102335572243,-0.743905961513519,-0.666304409503937,0.0514040403068066,-0.721854984760284,-0.687070071697235,0.0828259140253067,-0.692010343074799,-0.709525108337402,0.133025780320168,-0.981748104095459,-0.1775753647089,0.0681002512574196,-0.990241646766663,-0.132646173238754,0.0427373275160789,-0.938778162002563,-0.334835439920425,-0.0811219662427902,-0.924305081367493,-0.376410633325577,-0.0630491748452187,-0.827074587345123,-0.561752378940582,-0.0195485092699528,-0.900189816951752,-0.431681931018829,0.0575250796973705,-0.859553635120392,-0.50911682844162,0.0443606935441494,-0.752641081809998,-0.658373415470123,-0.0087033761665225,-0.907544314861298,-0.419648796319962,0.0160684231668711,-0.926747977733612,-0.373197674751282,0.043147586286068,-0.891738474369049,-0.451163649559021,0.0354101918637753,-0.862323224544525,-0.506147801876068,0.0145999062806368,-0.857446610927582,-0.510727107524872,0.0627950727939606,-0.891095280647278,-0.451779186725616,0.0429531894624233,-0.878251731395721,-0.473361223936081,0.0678457841277122,-0.843075096607208,-0.528151214122772,0.101393900811672,-0.743404567241669,-0.666629791259766,0.054354015737772, +-0.858592510223389,-0.509901702404022,0.0530962161719799,-0.843909084796906,-0.531248986721039,0.0747793614864349,-0.720743596553802,-0.681957244873047,0.124350279569626,-0.896726071834564,-0.441789984703064,0.0265340358018875,-0.922626495361328,-0.385571867227554,-0.00973173882812262,-0.835275530815125,-0.547016322612762,-0.0555683672428131,-0.803858578205109,-0.594623506069183,-0.0153054697439075,-0.869288265705109,0.464513719081879,0.169012397527695,-0.878341913223267,0.449167191982269,0.163598075509071,-0.958002388477325,0.286533355712891,-0.0114043354988098,-0.95242828130722,0.304304569959641,-0.0167077425867319,-0.990935683250427,-0.128689169883728,0.0385433845221996,-0.996114611625671,-0.0677551701664925,0.0562582165002823,-0.97123908996582,-0.232770025730133,-0.0501293912529945,-0.944262206554413,-0.307239264249802,-0.118208043277264,-0.99729973077774,-0.0594202093780041,0.0431589893996716,-0.998429000377655,-0.0374668799340725,0.0416617356240749,-0.979481995105743,-0.196070477366447,-0.0466003455221653,-0.971971273422241,-0.226987019181252,-0.0612278617918491,-0.964608311653137,-0.26349014043808,0.0101884081959724,-0.976290941238403,-0.216460183262825,-0.000989909982308745,-0.934697687625885,-0.35449492931366,-0.0259548779577017,-0.912404716014862,-0.408847779035568,-0.0190049037337303,-0.925356864929199,-0.378577768802643,-0.0198392197489738,-0.964839220046997,-0.262699812650681,0.0086066834628582,-0.913356363773346,-0.406253963708878,-0.0271628368645906,-0.838003814220428,-0.541281998157501,-0.0690192207694054,-0.979633867740631,0.156800821423531,0.125423386693001,-0.979361474514008,0.167987868189812,0.112388715147972,-0.997417509555817,-0.0295805633068085,-0.0654470846056938,-0.997002184391022,-0.0393562614917755,-0.0666178092360497,-0.604710578918457,0.792600750923157,0.0781610384583473,-0.69622415304184,0.717208802700043,0.0297230891883373,-0.674701929092407,0.736610233783722,0.0467194281518459,-0.575257360935211,0.812873244285583,0.0911921039223671,-0.878545999526978,0.448417961597443,0.16455489397049, +-0.913803339004517,0.392965644598007,0.102671466767788,-0.974806010723114,0.223033472895622,0.003082629526034,-0.96303254365921,0.269289970397949,0.00715057738125324,-0.913478851318359,0.394411861896515,0.0999785661697388,-0.925228118896484,0.369527101516724,0.0860389173030853,-0.978224992752075,0.207459852099419,0.00602069078013301,-0.974606156349182,0.223919749259949,0.00167605665046722,-0.981347501277924,0.177254676818848,0.0744169726967812,-0.982307374477386,0.176970586180687,0.0612669885158539,-0.99950909614563,0.00254023890011013,-0.0312269888818264,-0.999181270599365,-0.00635359389707446,-0.0399576537311077,-0.979181408882141,0.171049743890762,0.109297230839729,-0.981462776660919,0.175377815961838,0.0772882923483849,-0.99928092956543,-0.00824067834764719,-0.0370102860033512,-0.997044324874878,-0.0216065105050802,-0.0737275406718254,-0.70715743303299,0.690501511096954,0.152105689048767,-0.729384064674377,0.668011784553528,0.14750973880291,-0.835612416267395,0.548753976821899,0.0249181799590588,-0.819310665130615,0.572740137577057,0.0264351833611727,0.850442111492157,-0.245988935232162,-0.46501362323761,0.867966532707214,-0.202473655343056,-0.453474074602127,0.932664930820465,-0.189969480037689,-0.306671947240829,0.899472594261169,-0.299099385738373,-0.318572819232941,0.930038154125214,-0.186703458428383,0.316498130559921,0.938477635383606,-0.103232383728027,0.329549700021744,0.935923933982849,-0.112442791461945,0.333770900964737,0.926016747951508,-0.224777325987816,0.303262561559677,0.942181587219238,-0.101982966065407,0.319207400083542,0.944302320480347,-0.0277161002159119,0.327910006046295,0.941590130329132,-0.00447964202612638,0.336731314659119,0.944079518318176,-0.106741726398468,0.31196191906929,0.944345057010651,-0.106548428535461,0.311223477125168,0.941557765007019,-0.00450221262872219,0.33682182431221,0.939756751060486,0.00317761208862066,0.341829091310501,0.944735884666443,-0.115429654717445,0.30683907866478,0.924883902072906,-0.22546561062336,0.306194543838501,0.935130834579468,-0.112974584102631,0.335808038711548, +0.933099448680878,-0.124816551804543,0.337262839078903,0.922707378864288,-0.238291189074516,0.303032010793686,0.85656327009201,-0.414673507213593,0.307156771421432,0.873172581195831,-0.376340806484222,0.309737712144852,0.89172625541687,-0.320330142974854,0.319707840681076,0.88218492269516,-0.344989687204361,0.320518285036087,0.873083770275116,-0.376353144645691,0.309973001480103,0.908823072910309,-0.268309652805328,0.319453686475754,0.918786942958832,-0.229241862893105,0.321370095014572,0.894399762153625,-0.319378197193146,0.313123881816864,0.898561120033264,-0.317829072475433,0.302610039710999,0.920567393302917,-0.228962510824203,0.316436111927032,0.92875748872757,-0.187179997563362,0.31995815038681,0.919868528842926,-0.228418663144112,0.318852365016937,0.891219854354858,-0.341086506843567,0.298976838588715,0.896981716156006,-0.31842702627182,0.306639820337296,0.914477109909058,-0.231435239315033,0.331917881965637,0.911880850791931,-0.245211437344551,0.329157561063766,0.947994530200958,-0.026545200496912,0.317178010940552,0.944912254810333,0.0463699363172054,0.324022650718689,0.93724513053894,0.0994780212640762,0.334179371595383,0.948916733264923,0.000790856312960386,0.315525680780411,0.94752049446106,0.0470662862062454,0.316211670637131,0.93812769651413,0.130943611264229,0.320577949285507,0.924106001853943,0.199801087379456,0.325741648674011,0.942985057830811,0.103241726756096,0.316417992115021,0.943956553936005,0.103897996246815,0.313290953636169,0.9251389503479,0.200251787900925,0.322516828775406,0.920165240764618,0.223481521010399,0.321483969688416,0.941026329994202,0.130183100700378,0.312285035848618,0.950529932975769,0.00200250442139804,0.310626775026321,0.938478887081146,0.100271552801132,0.330458700656891,0.933764934539795,0.12443046271801,0.335559397935867,0.950716376304626,0.0128035703673959,0.309797406196594,0.82488352060318,-0.456926673650742,0.332844495773315,0.842509329319,-0.429766863584518,0.32477468252182,0.85027801990509,-0.415807813405991,0.322693586349487,0.829383850097656,-0.453543543815613,0.326221883296967, +0.839973628520966,-0.428380370140076,0.333068519830704,0.87861180305481,-0.339622139930725,0.335705727338791,0.892942786216736,-0.299944490194321,0.335688382387161,0.849492490291595,-0.415693640708923,0.324901968240738,0.852330446243286,-0.416098386049271,0.316851764917374,0.895697832107544,-0.300620466470718,0.327647268772125,0.904677271842957,-0.268163055181503,0.33113107085228,0.871045231819153,-0.376627087593079,0.31532883644104,0.834385871887207,-0.45422825217247,0.312212944030762,0.85062164068222,-0.415857285261154,0.321723133325577,0.866428077220917,-0.377189874649048,0.327154755592346,0.853348255157471,-0.415248513221741,0.315222829580307,0.937980175018311,0.130912140011787,0.321022063493729,0.936404883861542,0.142104521393776,0.320861726999283,0.914925873279572,0.257876127958298,0.310500472784042,0.926486253738403,0.200843244791031,0.318253725767136,0.936854898929596,0.14208011329174,0.3195561170578,0.932779610157013,0.156363114714622,0.324766159057617,0.909147620201111,0.281559407711029,0.306879222393036,0.914077818393707,0.25779914855957,0.313051789999008,0.913511455059052,0.257747024297714,0.314743608236313,0.904235899448395,0.282540947198868,0.320200353860855,0.890670597553253,0.326929479837418,0.315948128700256,0.90302187204361,0.291537284851074,0.315527588129044,0.929247975349426,0.202069297432899,0.309299528598785,0.914481341838837,0.257835894823074,0.31184059381485,0.904298305511475,0.291748434305191,0.311652660369873,0.923298716545105,0.225124299526215,0.311188876628876,0.928917527198792,-0.187120869755745,0.319528073072433,0.919483602046967,-0.229133769869804,0.319448888301849,0.93648099899292,-0.130045652389526,0.325717270374298,0.938314497470856,-0.103286251425743,0.329997062683105,0.91831636428833,-0.229313999414444,0.322661131620407,0.906868100166321,-0.268245041370392,0.325015217065811,0.930270791053772,-0.167418703436852,0.326446354389191,0.935965955257416,-0.130052879452705,0.327191084623337,0.936880111694336,-0.130039796233177,0.324569433927536,0.929991006851196,-0.167359367012978,0.327273160219193, +0.943665266036987,-0.0717783495783806,0.323023170232773,0.943711340427399,-0.0501816384494305,0.326941519975662,0.941478908061981,-0.102223999798298,0.32119756937027,0.936888754367828,-0.130039662122726,0.324544578790665,0.944383919239044,-0.0502095520496368,0.324989169836044,0.944304585456848,-0.0277153924107552,0.327903509140015,0.94378936290741,-0.0718265548348427,0.322649270296097,0.949637174606323,0.0373360402882099,0.311119377613068,0.948456466197968,0.0307165496051311,0.315415382385254,0.947442591190338,-0.0503358580172062,0.31594130396843,0.947230160236359,0.0381592102348804,0.318274855613708,0.940289318561554,0.154275253415108,0.303405940532684,0.940400838851929,0.141874611377716,0.309059798717499,0.948567569255829,0.0307071674615145,0.315081864595413,0.947836875915527,0.030768571421504,0.317267566919327,0.940159976482391,0.141889348626137,0.309784770011902,0.939656257629395,0.131270945072174,0.315933853387833,0.948251724243164,0.047264102846384,0.31398206949234,0.946890830993652,-0.0503131523728371,0.3175950050354,0.948336780071259,0.0307266302406788,0.31577405333519,0.945939600467682,0.0466425530612469,0.320971637964249,0.948359549045563,-0.0264270547777414,0.316094636917114,0.926170527935028,0.158036947250366,0.342392385005951,0.918059647083282,0.17020346224308,0.358046412467957,0.903278410434723,0.290040761232376,0.316171824932098,0.907711446285248,0.281856179237366,0.310832858085632,0.912615656852722,0.172381088137627,0.37069845199585,0.904939889907837,0.193246096372604,0.379130572080612,0.898586452007294,0.274492025375366,0.342339903116226,0.896797001361847,0.292855888605118,0.331648230552673,0.884437501430511,0.297723919153214,0.359347641468048,0.879532754421234,0.286135524511337,0.380195498466492,0.868747711181641,0.31731253862381,0.380250185728073,0.869592726230621,0.338317155838013,0.359652578830719,0.894303262233734,0.284263134002686,0.345566421747208,0.883203089237213,0.29817795753479,0.361997544765472,0.880058407783508,0.334261804819107,0.337292790412903,0.887795805931091,0.327390551567078,0.323471903800964, +0.877880156040192,-0.339253664016724,0.337984293699265,0.897986352443695,-0.284632951021194,0.335566133260727,0.919976413249969,-0.208795011043549,0.331735223531723,0.893116176128387,-0.299987196922302,0.335188299417496,0.895150899887085,-0.282512128353119,0.344806969165802,0.910164535045624,-0.236456722021103,0.340130507946014,0.932312369346619,-0.152534067630768,0.327913165092468,0.918659090995789,-0.208209812641144,0.3357293009758,0.919279754161835,-0.208485066890717,0.333854407072067,0.931923389434814,-0.152279376983643,0.329134970903397,0.943551361560822,-0.0717342048883438,0.323365211486816,0.928935885429382,-0.167135760188103,0.330369412899017,0.89495587348938,-0.300439029932022,0.329833894968033,0.920592725276947,-0.209070041775703,0.32984659075737,0.928731381893158,-0.167092427611351,0.330965667963028,0.905804753303528,-0.268206477165222,0.327998608350754,0.864410102367401,-0.363525420427322,0.347339123487473,0.880632340908051,-0.333186119794846,0.336858689785004,0.853310763835907,-0.388288080692291,0.347984284162521,0.833011209964752,-0.422699898481369,0.356955379247665,0.876709699630737,-0.327223926782608,0.352568566799164,0.91203361749649,-0.238316178321838,0.333766847848892,0.895872175693512,-0.283048063516617,0.342486202716827,0.850253462791443,-0.385147899389267,0.358789801597595,0.853988587856293,-0.38899353146553,0.345524936914444,0.899278581142426,-0.285612404346466,0.33124577999115,0.878554821014404,-0.339593410491943,0.335883557796478,0.837381064891815,-0.426965206861496,0.34131196141243,0.837745070457458,-0.427980929613113,0.339139342308044,0.854627788066864,-0.389661967754364,0.343183517456055,0.837177753448486,-0.426854342222214,0.341948628425598,0.824747085571289,-0.456850290298462,0.333286732435226,0.943791508674622,-0.0718273818492889,0.322642832994461,0.946763873100281,-0.02498684450984,0.320957809686661,0.95094758272171,0.0489561036229134,0.305453836917877,0.949723720550537,0.0373060517013073,0.310858726501465,0.942320108413696,-0.0218678545206785,0.333998024463654,0.945142984390259,0.0295014847069979,0.325321972370148, +0.948164582252502,0.092318594455719,0.304074376821518,0.947221219539642,0.0511911734938622,0.316467076539993,0.936938285827637,0.0569543391466141,0.344823002815247,0.93335622549057,0.104869663715363,0.343290776014328,0.932496130466461,0.176047161221504,0.315370112657547,0.934451460838318,0.162930205464363,0.316629528999329,0.945917725563049,0.0385994985699654,0.322102397680283,0.943559110164642,0.0533073432743549,0.326886117458344,0.939746916294098,0.160302102565765,0.301958709955215,0.940080761909485,0.154336228966713,0.304020553827286,0.910476684570313,0.190086752176285,0.367286264896393,0.912247836589813,0.120333537459373,0.391565978527069,0.908586025238037,0.207117930054665,0.362730741500854,0.900772869586945,0.27304819226265,0.337717562913895,0.927496671676636,0.109407857060432,0.357463032007217,0.923807799816132,0.0493797026574612,0.379658937454224,0.926120102405548,0.111666478216648,0.360322237014771,0.926576912403107,0.190464019775391,0.324312716722488,0.897473812103271,0.216428861021996,0.384316653013229,0.897420287132263,0.141506150364876,0.417867213487625,0.899677038192749,0.164466515183449,0.404390931129456,0.897603034973145,0.247185260057449,0.364977240562439,0.878035485744476,0.286986410617828,0.383004784584045,0.882799327373505,0.227810278534889,0.410813599824905,0.879821419715881,0.261744946241379,0.39674174785614,0.872881531715393,0.314931899309158,0.372687458992004,0.92977499961853,-0.15095479786396,0.335754543542862,0.931369245052338,-0.144853085279465,0.334019482135773,0.89639800786972,-0.239544630050659,0.372946351766586,0.889948725700378,-0.251424670219421,0.380495548248291,0.930646538734436,-0.143411323428154,0.336645752191544,0.934792160987854,-0.124662235379219,0.332600265741348,0.919090807437897,-0.178602620959282,0.351245313882828,0.895831644535065,-0.238584071397781,0.374917775392532,0.902670502662659,-0.25066876411438,0.349787503480911,0.922521352767944,-0.182632267475128,0.339999735355377,0.907926261425018,-0.234270066022873,0.347544848918915,0.87395578622818,-0.323203891515732,0.36296084523201, +0.900085210800171,-0.27271431684494,0.339814066886902,0.904573202133179,-0.254246443510056,0.342207968235016,0.874857723712921,-0.324506789445877,0.35960990190506,0.860763311386108,-0.357195794582367,0.362626165151596,0.931646227836609,-0.120176240801811,0.342918425798416,0.944169044494629,-0.0439720265567303,0.326514214277267,0.936866641044617,-0.0959950760006905,0.336252868175507,0.919592022895813,-0.179182723164558,0.349634498357773,0.942413032054901,-0.0418744497001171,0.331819832324982,0.947365403175354,0.0272090695798397,0.318996042013168,0.944781184196472,-0.0235794223845005,0.326852649450302,0.937448382377625,-0.0964899882674217,0.334485083818436,0.93972772359848,-0.0984547510743141,0.327442407608032,0.949419975280762,-0.0269151031970978,0.312853455543518,0.943519592285156,-0.0717218518257141,0.323460936546326,0.93021821975708,-0.151172041893005,0.334426522254944,0.922414720058441,-0.182504802942276,0.340357542037964,0.940172553062439,-0.0988431796431541,0.326045364141464,0.930371880531311,-0.151271238923073,0.333953946828842,0.90845650434494,-0.234784319996834,0.345807880163193,0.928867876529694,-0.116344414651394,0.351665258407593,0.918963849544525,-0.12199605256319,0.374996572732925,0.940676748752594,-0.00962139293551445,0.339167982339859,0.939357221126556,-0.0383126176893711,0.340793490409851,0.914210319519043,-0.114089787006378,0.388848662376404,0.9074866771698,-0.108390532433987,0.405856519937515,0.931551396846771,0.00698451185598969,0.363542854785919,0.93563574552536,-0.0018794605275616,0.352962255477905,0.921587228775024,0.0178998727351427,0.387758374214172,0.910675525665283,0.0373798348009586,0.411427944898605,0.912363767623901,0.1507498472929,0.380613774061203,0.92191481590271,0.11639679223299,0.369492828845978,0.935960650444031,-0.0344745740294456,0.350412905216217,0.931123197078705,0.00473739393055439,0.364674121141434,0.93381667137146,0.102612696588039,0.34272038936615,0.936317801475525,0.0381494425237179,0.349075466394424,-0.261012017726898,-0.950583338737488,-0.168118938803673,-0.205996513366699,-0.978028118610382,-0.0320382490754128, +-0.338579654693604,-0.933528006076813,-0.117852881550789,-0.423668295145035,-0.876941621303558,-0.226889461278915,-0.96928995847702,-0.205339998006821,0.13532330095768,-0.988002002239227,-0.089974045753479,0.125525876879692,-0.957198262214661,-0.244102746248245,-0.155516117811203,-0.925381302833557,-0.354794889688492,-0.133379191160202,-0.813964068889618,-0.57581353187561,-0.0768202394247055,-0.906025767326355,-0.405732840299606,-0.120408430695534,-0.732952415943146,-0.614092528820038,-0.29269614815712,-0.624194920063019,-0.75422066450119,-0.203793779015541,-0.156916558742523,-0.987456798553467,0.0175029132515192,-0.142950639128685,-0.979148149490356,0.144340634346008,-0.181961312890053,-0.983001112937927,0.0244744922965765,-0.231037244200706,-0.968533933162689,-0.0925408005714417,-0.210126325488091,-0.877398908138275,0.431298196315765,-0.187166288495064,-0.938221156597137,0.291049659252167,-0.142855763435364,-0.979045510292053,0.145128130912781,-0.122820988297462,-0.94747668504715,0.295301467180252,-0.880809187889099,0.28483635187149,0.378210842609406,-0.893517971038818,0.221640214323997,0.390514105558395,-0.963212370872498,0.255768030881882,0.0824905782938004,-0.945329964160919,0.318137139081955,0.0716940686106682,-0.573628723621368,0.649869084358215,0.498618245124817,-0.617289543151855,0.569558143615723,0.54273134469986,-0.719759047031403,0.636142373085022,0.277974605560303,-0.659948229789734,0.710750460624695,0.2435202896595,-0.643429100513458,-0.538827955722809,0.543749392032623,-0.579652905464172,-0.657709002494812,0.481062829494476,-0.3774573802948,-0.77239465713501,0.510815680027008,-0.424763232469559,-0.670379102230072,0.6084144115448,-0.402347534894943,-0.723491609096527,0.560960352420807,-0.343124538660049,-0.828600645065308,0.4423648416996,-0.195764318108559,-0.919253766536713,0.341539263725281,-0.218757659196854,-0.843331277370453,0.490853846073151,-0.000584232853725553,0.962358951568604,0.271781384944916,0.00124654220417142,0.964406251907349,0.26442214846611,-0.111357606947422,0.966859638690948,0.229743331670761, +-0.115398526191711,0.96485036611557,0.236107930541039,-0.233992099761963,0.867323040962219,0.439315795898438,-0.252673119306564,0.844570934772491,0.47207647562027,-0.383551567792892,0.866839647293091,0.318554937839508,-0.355739891529083,0.887969791889191,0.291476905345917,-0.994354605674744,-0.00049733673222363,0.106106907129288,-0.994208872318268,0.00314283696934581,0.107419185340405,-0.913384675979614,0.0144084310159087,0.40684249997139,-0.913957059383392,0.0108879813924432,0.40566486120224,-0.869613111019135,-0.306410372257233,0.387150853872299,-0.845106422901154,-0.378241926431656,0.377793818712234,-0.676882684230804,-0.453574985265732,0.579740941524506,-0.699537396430969,-0.384006351232529,0.602649569511414,0.0932152792811394,0.9948371052742,0.040127519518137,0.0855473056435585,0.99577397108078,-0.033407136797905,0.0511844605207443,0.997984051704407,0.037525150924921,0.0355996824800968,0.993342816829681,0.109557002782822,0.0195044241845608,0.976519525051117,-0.214544653892517,0.0602364093065262,0.990071475505829,-0.12700466811657,0.0854368433356285,0.995748400688171,-0.0344342812895775,0.0746006667613983,0.98854649066925,-0.131188541650772,-0.900665879249573,0.375215798616409,-0.219121292233467,-0.88576078414917,0.410022020339966,-0.217508167028427,-0.883176684379578,0.463086187839508,0.0744994208216667,-0.900061011314392,0.429005742073059,0.0764466598629951,-0.625366032123566,0.647576451301575,-0.435387253761292,-0.594458103179932,0.685097754001617,-0.42102313041687,-0.642262816429138,0.74156641960144,-0.193849727511406,-0.678816914558411,0.70663458108902,-0.199687585234642,-0.135486140847206,0.941769599914551,-0.307755559682846,-0.114939421415329,0.951006591320038,-0.287010818719864,-0.026150319725275,0.950324654579163,-0.310159981250763,-0.0390867441892624,0.94093918800354,-0.3363116979599,-0.378913342952728,0.868241488933563,-0.32028329372406,-0.291610300540924,0.836870312690735,-0.463261872529984,-0.276710450649261,0.849981248378754,-0.448289334774017,-0.359559565782547,0.880171060562134,-0.30986425280571, +-0.622791469097137,-0.403526365756989,-0.670296370983124,-0.696917533874512,-0.459062337875366,-0.550969839096069,-0.620213508605957,-0.650102913379669,-0.43897756934166,-0.601247489452362,-0.605603098869324,-0.521292984485626,-0.646427512168884,-0.576489627361298,-0.49979105591774,-0.704354882240295,-0.597444295883179,-0.383333474397659,-0.631058692932129,-0.692196607589722,-0.3501837849617,-0.586311936378479,-0.671397745609283,-0.453280866146088,-0.837377846240997,-0.47437971830368,-0.271592497825623,-0.883040487766266,-0.460326969623566,-0.0913152173161507,-0.930618405342102,-0.365971773862839,-0.00375360413454473,-0.906163096427917,-0.368324846029282,-0.207858964800835,-0.794284164905548,-0.526281476020813,-0.303546547889709,-0.828153789043427,-0.537983894348145,-0.157272532582283,-0.774824738502502,-0.592571973800659,-0.220238834619522,-0.73464834690094,-0.580942153930664,-0.350425660610199,-0.646911025047302,-0.200012192130089,0.73586767911911,-0.738378882408142,-0.172790005803108,0.651874423027039,-0.626721560955048,-0.0593271069228649,0.77698165178299,-0.506221413612366,-0.0138116916641593,0.862293064594269,-0.643054783344269,-0.485837280750275,-0.591982066631317,-0.669839799404144,-0.374656736850739,-0.641051471233368,-0.594428360462189,0.240192100405693,-0.767438948154449,-0.751852989196777,0.263051599264145,-0.604583323001862,-0.818501174449921,-0.573084592819214,-0.0403715372085571,-0.869454443454742,-0.433301210403442,-0.237273842096329,-0.862912535667419,-0.425197273492813,-0.273110300302505,-0.840445756912231,-0.518036603927612,-0.159025251865387,-0.778292715549469,-0.5923872590065,-0.208177834749222,-0.533027410507202,-0.816393315792084,0.222224354743958,-0.55800062417984,-0.786780834197998,0.263839423656464,-0.808342635631561,-0.558699667453766,-0.185571312904358,-0.882433772087097,-0.461309909820557,-0.0922173783183098,-0.565499663352966,-0.766160249710083,0.305300682783127,-0.578454971313477,-0.769371271133423,0.271030783653259,-0.876806974411011,-0.469192951917648,-0.105202563107014,-0.888564646244049,-0.39708337187767,-0.229734003543854, +-0.907892882823944,-0.415984183549881,-0.0518449693918228,-0.937454402446747,-0.346686184406281,0.0314319729804993,-0.935303926467896,-0.306785255670547,-0.176322013139725,-0.701182425022125,-0.608417630195618,-0.371713727712631,-0.738862097263336,-0.627445340156555,-0.245754525065422,-0.683691203594208,-0.670762598514557,-0.287478566169739,-0.644420027732849,-0.654412567615509,-0.395559310913086,-0.66994172334671,-0.667525708675385,-0.324942320585251,-0.474830150604248,-0.879424154758453,0.0339041501283646,-0.464506089687347,-0.883486330509186,0.060712743550539,-0.65686309337616,-0.688752412796021,-0.306840360164642,-0.688060104846954,-0.667379677295685,-0.284917026758194,-0.482271790504456,-0.870252132415771,0.100375711917877,-0.504145622253418,-0.853307008743286,0.133057788014412,-0.702812075614929,-0.656960964202881,-0.272869080305099,-0.20842082798481,-0.95892071723938,0.192436546087265,-0.198796987533569,-0.960548400878906,0.194491013884544,-0.307942777872086,-0.937125325202942,0.164217546582222,-0.323464810848236,-0.933326005935669,0.155798092484474,-0.180238261818886,-0.978115499019623,0.103943586349487,-0.218917638063431,-0.969126999378204,0.113437041640282,-0.318085044622421,-0.94194483757019,0.107525758445263,-0.287748605012894,-0.953147292137146,0.0933328792452812,-0.307539790868759,-0.937513649463654,0.16274981200695,-0.315134227275848,-0.944266438484192,0.0951386094093323,-0.485296189785004,-0.870555579662323,0.0813676342368126,-0.498712718486786,-0.855543553829193,0.139035627245903,-0.324487715959549,-0.932389855384827,0.159238666296005,-0.309872031211853,-0.935223698616028,0.171277433633804,-0.473921149969101,-0.876789391040802,0.081481084227562,-0.490281760692596,-0.869146466255188,0.0648708865046501,-0.231605842709541,-0.953109920024872,0.194782689213753,-0.27456858754158,-0.949984729290009,0.148799017071724,-0.370725095272064,-0.914053797721863,0.164525538682938,-0.340269982814789,-0.916935801506042,0.208435326814651,-0.287635862827301,-0.899701356887817,0.328333586454391,-0.32088515162468,-0.899708032608032,0.295902341604233, +-0.418182939291,-0.855044662952423,0.306629419326782,-0.390921890735626,-0.856640815734863,0.336670190095901,-0.386260509490967,-0.876783668994904,0.286449313163757,-0.418019324541092,-0.857200622558594,0.300777643918991,-0.572557687759399,-0.787739157676697,0.227254778146744,-0.546429097652435,-0.810974895954132,0.209129586815834,-0.342713445425034,-0.913175582885742,0.220585376024246,-0.367469370365143,-0.918900549411774,0.143485397100449,-0.531397223472595,-0.834057986736298,0.148203313350677,-0.530539095401764,-0.820221841335297,0.213926151394844,-0.235177263617516,-0.946842610836029,0.219501435756683,-0.104816049337387,-0.962970614433289,0.248397350311279,-0.174282655119896,-0.95847088098526,0.225741550326347,-0.279240995645523,-0.93913733959198,0.200114399194717,-0.171593084931374,-0.926413357257843,0.335133135318756,-0.104700520634651,-0.951028168201447,0.290831953287125,-0.157111987471581,-0.929110944271088,0.334766715764999,-0.217692732810974,-0.899889051914215,0.377901524305344,-0.0635385066270828,-0.968554437160492,0.240551725029945,0.0297758094966412,-0.973013639450073,0.228818237781525,0.0339552089571953,-0.977401614189148,0.208646044135094,-0.0535792149603367,-0.974021375179291,0.220026835799217,-0.289383977651596,-0.881575226783752,0.372937113046646,-0.169667318463326,-0.908167839050293,0.382680177688599,-0.217184260487556,-0.897871136665344,0.382960051298141,-0.319385439157486,-0.87099951505661,0.373299837112427,-0.20763236284256,-0.959833920001984,0.188700065016747,-0.0613242127001286,-0.972794473171234,0.223406121134758,-0.0532189570367336,-0.974787533283234,0.216695725917816,-0.197181940078735,-0.962497472763062,0.186327487230301,-0.0505383126437664,-0.980090916156769,0.192009687423706,0.0320486500859261,-0.971103668212891,0.23649688065052,-0.0265569090843201,-0.979986965656281,0.197282448410988,-0.0999367833137512,-0.983078598976135,0.153522983193398,-0.168600872159004,-0.952382981777191,0.254048109054565,-0.0034305362496525,-0.980613470077515,0.195922017097473,-0.0990188494324684,-0.963490545749664,0.248759344220161, +-0.258967161178589,-0.916387736797333,0.305236846208572,-0.180875182151794,-0.977674722671509,0.106941640377045,-0.044314481317997,-0.989806056022644,0.135352253913879,-0.098016768693924,-0.987905383110046,0.120148442685604,-0.215983003377914,-0.971685111522675,0.095810241997242,-0.271433502435684,-0.959491908550262,0.0754926949739456,-0.224572345614433,-0.973105132579803,0.0513193942606449,-0.0937580317258835,-0.99313873052597,0.0698916018009186,-0.125086009502411,-0.987109422683716,0.0998432040214539,-0.350270450115204,-0.921803057193756,-0.16610161960125,0.276078760623932,-0.623250007629395,0.731669306755066,-0.0193035881966352,-0.780716776847839,0.624586760997772,-0.406664788722992,-0.819464504718781,-0.403858572244644,-0.709674477577209,-0.683902621269226,-0.169231995940208,-0.541476368904114,-0.503483831882477,0.673281073570251,-0.660331189632416,-0.640974879264832,0.391297787427902,-0.827659547328949,-0.486256331205368,-0.280240029096603,0.235414892435074,0.428792953491211,-0.872190535068512,0.107558965682983,0.420569807291031,-0.900861859321594,0.205935105681419,0.372101545333862,-0.905058622360229,0.327161103487015,0.387127757072449,-0.862031161785126,0.152607873082161,0.399404585361481,-0.90398383140564,0.0713283121585846,0.395348519086838,-0.915757536888123,0.138243123888969,0.366929143667221,-0.919919431209564,0.214499324560165,0.368658572435379,-0.904478251934052,0.0370762199163437,0.40998312830925,-0.911339223384857,0.0176435355097055,0.367652416229248,-0.929795861244202,0.0180031061172485,0.364884048700333,-0.93087899684906,0.0311556123197079,0.402818024158478,-0.914749801158905,-0.0594481378793716,0.398423284292221,-0.915273070335388,-0.0560443066060543,0.312895059585571,-0.948132753372192,-0.0930893272161484,0.314697116613388,-0.944616496562958,-0.103317447006702,0.399767488241196,-0.910775184631348,-0.317585676908493,0.236297398805618,-0.918315231800079,-0.415635138750076,0.0486002191901207,-0.908232033252716,-0.448314130306244,0.0255579743534327,-0.893510758876801,-0.358066767454147,0.212044343352318,-0.909299492835999, +-0.145944252610207,0.347785204648972,-0.926145732402802,-0.25323498249054,0.212410390377045,-0.943797588348389,-0.300506830215454,0.194484427571297,-0.933740675449371,-0.202154695987701,0.344753175973892,-0.916667222976685,-0.356774508953094,-0.222004234790802,-0.90742826461792,-0.426473051309586,-0.427631705999374,-0.797026872634888,-0.420611500740051,-0.453935176134109,-0.78551185131073,-0.362926304340363,-0.257927179336548,-0.895409524440765,-0.394823133945465,0.0393818058073521,-0.917912721633911,-0.465719193220139,-0.164121493697166,-0.869580268859863,-0.47077676653862,-0.205183088779449,-0.858061254024506,-0.40133935213089,0.00623419089242816,-0.91590827703476,-0.144684463739395,-0.734630107879639,-0.662861287593842,-0.219109073281288,-0.884136438369751,-0.412666916847229,-0.202230662107468,-0.876238405704498,-0.437388926744461,-0.145687073469162,-0.733054399490356,-0.664384365081787,-0.252200037240982,-0.515630304813385,-0.818853199481964,-0.329244554042816,-0.66391259431839,-0.671429991722107,-0.337362289428711,-0.665803611278534,-0.665501475334167,-0.272875040769577,-0.522157609462738,-0.808016538619995,0.0368365831673145,-0.926383197307587,-0.374776422977448,-0.0377522446215153,-0.99390572309494,-0.103567413985729,0.000528821954503655,-0.990991532802582,-0.133923098444939,0.0717619955539703,-0.911660194396973,-0.404630601406097,0.111334316432476,-0.990063548088074,-0.0859000086784363,0.0760283097624779,-0.983653366565704,0.163235858082771,0.0995150357484818,-0.986616313457489,0.129170149564743,0.132259339094162,-0.983596742153168,-0.122658483684063,0.123117446899414,-0.978603839874268,0.164853975176811,0.132298409938812,-0.887074768543243,0.442262053489685,0.125805303454399,-0.899394154548645,0.418644517660141,0.112933404743671,-0.985183894634247,0.129068776965141,0.0910000577569008,-0.890959978103638,0.444870114326477,0.12497303634882,-0.759867608547211,0.637952148914337,0.104554675519466,-0.764979779720306,0.635510981082916,0.0643464848399162,-0.90317440032959,0.424423813819885,-0.0201637167483568,-0.619645237922668,0.784622967243195, +-0.0134707614779472,-0.501416683197021,0.865101099014282,-0.0139401508495212,-0.500759780406952,0.865474045276642,-0.0271517839282751,-0.613849461078644,0.788956165313721,0.0343981459736824,-0.761399686336517,0.647369623184204,0.0530937276780605,-0.623247683048248,0.780220091342926,0.0568012222647667,-0.622241914272308,0.78076159954071,0.0240646414458752,-0.763340950012207,0.645547389984131,-0.101208068430424,-0.4369016289711,0.89379745721817,-0.109895080327988,-0.404433161020279,0.907941043376923,-0.121807597577572,-0.420600652694702,0.899031698703766,-0.113336943089962,-0.437610149383545,0.891993284225464,-0.0340422689914703,-0.500153005123138,0.865267634391785,-0.0493822507560253,-0.441351324319839,0.895974576473236,-0.0686808601021767,-0.445725560188293,0.892531037330627,-0.0563231483101845,-0.494482219219208,0.867360949516296,-0.384872734546661,-0.33587771654129,0.859685480594635,-0.367322683334351,-0.285503387451172,0.885190367698669,-0.353368729352951,-0.322192281484604,0.878249764442444,-0.37226390838623,-0.346704721450806,0.860938727855682,-0.251237392425537,-0.386491060256958,0.887414455413818,-0.231460854411125,-0.363333940505981,0.902449131011963,-0.214046314358711,-0.391745805740356,0.894829273223877,-0.233749315142632,-0.395319432020187,0.888303875923157,-0.572994530200958,-0.786562740802765,0.230209216475487,-0.591236233711243,-0.771278560161591,0.235731139779091,-0.879922270774841,-0.465163230895996,-0.0967481881380081,-0.861643970012665,-0.491122305393219,-0.127939537167549,0.336866825819016,0.648367762565613,-0.68274450302124,0.23800253868103,0.427355140447617,-0.872193992137909,0.212077185511589,0.437326729297638,-0.873938620090485,0.45162832736969,0.809958875179291,-0.37416398525238,-0.744573593139648,-0.60801374912262,-0.275553375482559,-0.545710980892181,-0.837785601615906,-0.0177430957555771,-0.428884506225586,-0.902086734771729,0.0479348935186863,-0.701282441616058,-0.690384030342102,-0.177687346935272,-0.478749483823776,-0.877577602863312,-0.0256220661103725,-0.661759734153748,-0.625784158706665,-0.412878125905991, +-0.734610915184021,-0.437554448843002,-0.518548846244812,-0.591621041297913,-0.79754239320755,-0.117943853139877,-0.565493226051331,-0.804018557071686,0.183770403265953,-0.414932727813721,-0.87975549697876,0.232080042362213,-0.436945647001266,-0.871907830238342,0.221032530069351,-0.584299862384796,-0.79187798500061,0.177547603845596,-0.415749460458755,-0.875468373298645,0.246388897299767,-0.320912301540375,-0.906753838062286,0.273519277572632,-0.340865671634674,-0.895419955253601,0.286415249109268,-0.437343627214432,-0.861037015914917,0.259510964155197,-0.424782812595367,-0.90489250421524,0.0270028002560139,-0.342673450708389,-0.935759842395782,0.0832370519638062,-0.197144120931625,-0.96825784444809,0.153658539056778,-0.289600312709808,-0.951786398887634,0.101164773106575,-0.544476568698883,-0.838473379611969,-0.0225310772657394,-0.423590481281281,-0.905714452266693,0.0158951338380575,-0.280118733644485,-0.959066152572632,0.041542787104845,-0.420215249061584,-0.907179355621338,0.0210951138287783,-0.674196064472198,-0.664638102054596,-0.322049647569656,-0.690157234668732,-0.607308030128479,-0.393522679805756,-0.499092370271683,-0.866470754146576,0.0116306589916348,-0.48812398314476,-0.870676696300507,0.0604735426604748,-0.607519149780273,-0.789759516716003,-0.0848554372787476,-0.487812727689743,-0.871819734573364,0.0443755686283112,-0.35369074344635,-0.926339864730835,0.129604652523994,-0.499629080295563,-0.866147339344025,0.0126375397667289,-0.501980304718018,-0.857725083827972,0.111010625958443,-0.390356123447418,-0.900703966617584,0.190668538212776,-0.238217428326607,-0.953205764293671,0.1861482411623,-0.349875897169113,-0.929444015026093,0.117135375738144,-0.378904044628143,-0.899559080600739,0.217313393950462,-0.257004499435425,-0.923400223255157,0.285097748041153,-0.223433569073677,-0.937684655189514,0.266129434108734,-0.337673753499985,-0.918710350990295,0.204811498522758,-0.520544230937958,-0.85219144821167,0.0529477335512638,-0.365421116352081,-0.915339529514313,0.169176980853081,-0.338769823312759,-0.917428851127625,0.208709195256233, +-0.503702521324158,-0.858878612518311,0.0927971228957176,-0.393270671367645,-0.889121294021606,0.234097331762314,-0.25985261797905,-0.935175716876984,0.240671992301941,-0.102399490773678,-0.955576241016388,0.276384443044662,-0.253654986619949,-0.929844558238983,0.266548812389374,0.0311889071017504,-0.976333141326904,0.214011788368225,-0.0679671466350555,-0.959013640880585,0.275087863206863,-0.110145583748817,-0.933372557163239,0.34158992767334,-0.0117841698229313,-0.959267020225525,0.282255083322525,-0.25536048412323,-0.921657085418701,0.292129188776016,-0.228163301944733,-0.941099286079407,0.249546751379967,-0.173041701316833,-0.963601648807526,0.203785389661789,-0.201999589800835,-0.947556853294373,0.247653439640999,-0.257554203271866,-0.922287881374359,0.288185805082321,-0.106288835406303,-0.9451784491539,0.308772444725037,-0.0740612968802452,-0.943436145782471,0.323176950216293,-0.230694934725761,-0.924392104148865,0.30377471446991,-0.268432259559631,-0.953960418701172,0.133804008364677,-0.125246435403824,-0.985896706581116,0.110999941825867,-0.196641504764557,-0.969350874423981,0.147278413176537,-0.343728125095367,-0.92492288351059,0.162384986877441,-0.222257569432259,-0.917949259281158,0.32858881354332,-0.254340022802353,-0.918886661529541,0.301593273878098,-0.338776916265488,-0.882889270782471,0.325171560049057,-0.319996535778046,-0.879208505153656,0.352979600429535,-0.186833009123802,-0.980823874473572,0.0554798915982246,-0.0926177501678467,-0.994773209095001,0.0429908335208893,-0.126472428441048,-0.990785837173462,0.048458855599165,-0.223784238100052,-0.972801625728607,0.0598150976002216,-0.1003288179636,-0.994936883449554,-0.0059144557453692,0.0948135927319527,-0.994040608406067,-0.053792230784893,0.103052414953709,-0.99293839931488,-0.0587674491107464,-0.135127708315849,-0.99082738161087,-0.00124179560225457,-0.141937151551247,-0.988992631435394,-0.0418043062090874,0.0911056026816368,-0.990906178951263,-0.0990197286009789,0.161903902888298,-0.98006135225296,-0.115182399749756,0.0302955936640501,-0.997014105319977,-0.0710286200046539, +-0.231042549014091,-0.972572803497314,-0.0268611218780279,-0.137615397572517,-0.990358054637909,-0.0159033220261335,0.0317188017070293,-0.997647941112518,-0.0607659853994846,-0.0985474735498428,-0.99350643157959,-0.0568630509078503,-0.0262813828885555,-0.991753756999969,0.12543398141861,0.0463122054934502,-0.99355012178421,0.103506185114384,-0.0309244375675917,-0.991643011569977,0.125251248478889,-0.114517442882061,-0.982399582862854,0.147569760680199,0.0436496026813984,-0.998019576072693,0.0452957414090633,0.154445007443428,-0.987869739532471,0.0161340925842524,0.127157613635063,-0.991683781147003,0.0198548268526793,-0.0392370000481606,-0.99785041809082,0.0524885728955269,-0.0438340343534946,-0.998974919319153,0.0113055063411593,0.115897297859192,-0.992989420890808,-0.0232335831969976,0.102836430072784,-0.994356453418732,-0.0260765664279461,-0.0967183783650398,-0.995163679122925,0.0171764828264713,-0.117383435368538,-0.988395512104034,0.0964136570692062,-0.0368123650550842,-0.996583461761475,0.0739344283938408,-0.0845763832330704,-0.992122054100037,0.0924160182476044,-0.181726828217506,-0.976482093334198,0.116009101271629,-0.0264044776558876,-0.987826228141785,0.153304383158684,0.033517237752676,-0.976017773151398,0.215095117688179,0.113709852099419,-0.981606543064117,0.153358459472656,0.0457708574831486,-0.994760394096375,0.0914152860641479,0.0367948524653912,-0.985428512096405,0.166062727570534,0.0308351926505566,-0.975521862506866,0.217729806900024,0.11725041270256,-0.978386759757996,0.170328259468079,0.114203080534935,-0.986542224884033,0.117013193666935,0.114311873912811,-0.987667739391327,0.106982126832008,0.118764407932758,-0.984721481800079,0.127353265881538,0.155054047703743,-0.982145607471466,0.106527745723724,0.182190448045731,-0.980091154575348,0.0789186432957649,0.0453902035951614,-0.995515763759613,0.0829946249723434,0.114184066653252,-0.986347377300262,0.118662923574448,0.179080829024315,-0.981695294380188,0.0648404583334923,0.157489731907845,-0.98709625005722,0.0289476960897446,0.0338128954172134,-0.98193359375,0.186180174350739, +-0.00801876187324524,-0.969867944717407,0.243499115109444,0.0719632208347321,-0.979228436946869,0.189560264348984,0.118670418858528,-0.984356820583344,0.130226597189903,-0.00218940759077668,-0.983113050460815,0.182986199855804,-0.169943138957024,-0.964160680770874,0.203749150037766,-0.116404712200165,-0.971808671951294,0.20503169298172,0.0727781429886818,-0.982884883880615,0.169235557317734,0.0739101096987724,-0.987461864948273,0.139485612511635,-0.118159182369709,-0.974120080471039,0.192687407135963,-0.0596785992383957,-0.981746852397919,0.180586725473404,0.0652780830860138,-0.991757273674011,0.110255360603333,0.119320012629032,-0.986779987812042,0.109673231840134,0.074196845293045,-0.98851752281189,0.131635710597038,0.0686543881893158,-0.990005075931549,0.123192682862282,0.149489283561707,-0.985297381877899,0.0827165469527245,-0.246519714593887,-0.959937334060669,-0.133223086595535,0.563144505023956,-0.590168118476868,0.578420102596283,0.463877707719803,-0.646737575531006,0.605432093143463,-0.338001787662506,-0.92074066400528,-0.194913893938065,-0.122401192784309,-0.99228698015213,-0.0196029022336006,0.75053608417511,-0.521107852458954,0.406376868486404,0.660589277744293,-0.558121860027313,0.502117216587067,-0.182657688856125,-0.983173787593842,-0.00234029931016266,-0.248706787824631,-0.960726201534271,-0.123085632920265,-0.176955670118332,-0.982779562473297,-0.0532084330916405,0.593144237995148,-0.560730755329132,0.577720582485199,0.579497098922729,-0.589937031269073,0.562278807163239,0.0231940746307373,-0.992286503314972,-0.121776454150677,0.920854508876801,-0.368838995695114,-0.126430839300156,0.8987637758255,-0.434054851531982,0.0618086233735085,-0.101187445223331,-0.982673525810242,-0.15528704226017,-0.11955651640892,-0.987659692764282,-0.101165466010571,-0.100249841809273,-0.988169610500336,-0.116064764559269,0.853642761707306,-0.465329051017761,0.234014838933945,0.765369236469269,-0.518180549144745,0.381705164909363,0.0857015773653984,-0.989427864551544,-0.116994962096214,0.691013216972351,-0.485163033008575,-0.535833537578583, +0.841706097126007,-0.372716575860977,-0.39065745472908,0.153367206454277,-0.977230310440063,-0.146626874804497,0.0174246318638325,-0.986562788486481,-0.162450864911079,0.15004850924015,-0.975866854190826,-0.158649235963821,0.835731029510498,-0.372041374444962,-0.403904587030411,0.916926562786102,-0.362659782171249,-0.166504129767418,0.106121309101582,-0.992546796798706,-0.0599111467599869,0.400923579931259,-0.771284162998199,-0.49434906244278,0.523374676704407,-0.640025556087494,-0.562535524368286,0.0917686820030212,-0.993706881999969,-0.0642286911606789,0.0911017432808876,-0.990905225276947,-0.0990327745676041,0.0844839662313461,-0.992440700531006,-0.089017279446125,0.511586904525757,-0.641804277896881,-0.571284592151642,0.68292111158371,-0.485844254493713,-0.545503675937653,0.177515581250191,-0.982418417930603,0.0578127168118954,0.2469262778759,-0.96665632724762,-0.0678445473313332,0.290657073259354,-0.904872953891754,-0.311003804206848,0.158559203147888,-0.986781775951385,0.0334750227630138,0.115632228553295,-0.992996454238892,-0.0242369044572115,0.144554391503334,-0.989187300205231,-0.0247526299208403,0.296804428100586,-0.903523087501526,-0.309116780757904,0.418564796447754,-0.767816960811615,-0.485036820173264,0.0635877624154091,-0.992564678192139,0.103787936270237,0.111223369836807,-0.88925164937973,0.443690270185471,0.0874467492103577,-0.982633233070374,0.163661301136017,0.148370742797852,-0.985853374004364,0.0779707059264183,0.181510329246521,-0.980461418628693,0.0758260861039162,0.152659013867378,-0.983581960201263,0.0962380692362785,0.208232387900352,-0.963742852210999,0.166850224137306,0.214093118906021,-0.974126756191254,-0.0723964869976044,-0.118096113204956,-0.974039316177368,0.193134129047394,-0.238985568284988,-0.588660657405853,0.772246420383453,-0.220335721969604,-0.731815874576569,0.64490133523941,-0.0570485293865204,-0.980452537536621,0.188303589820862,0.0641519948840141,-0.992300391197205,0.105946026742458,-0.0717067494988441,-0.986832320690155,0.144983783364296,-0.0475780554115772,-0.757362425327301,0.651259303092957, +-0.0824976861476898,-0.890508770942688,0.447424322366714,-0.259536236524582,-0.950102031230927,0.173051819205284,-0.559363543987274,-0.338965058326721,0.756448984146118,-0.550726413726807,-0.391584366559982,0.737130999565125,-0.170968800783157,-0.975077748298645,0.141396641731262,-0.120098739862442,-0.976519525051117,0.178846076130867,-0.170465514063835,-0.969305992126465,0.177164539694786,-0.520844697952271,-0.402622848749161,0.752738773822784,-0.414932876825333,-0.539979100227356,0.732293128967285,-0.469388425350189,-0.882495820522308,-0.0295920465141535,-0.886262834072113,-0.13078635931015,0.444334298372269,-0.840002417564392,-0.180347412824631,0.511733055114746,-0.371143341064453,-0.9284388422966,0.0159350968897343,-0.258863538503647,-0.956170260906219,0.136850923299789,-0.386537402868271,-0.910700142383575,0.145651385188103,-0.703968822956085,-0.256798535585403,0.662180066108704,-0.688426792621613,-0.285968661308289,0.666551172733307,-0.746294796466827,-0.430352181196213,-0.507780492305756,-0.857389986515045,0.248097524046898,-0.450921326875687,-0.969649851322174,0.14711195230484,-0.195287704467773,-0.563431203365326,-0.807969033718109,-0.172427639365196,-0.454346567392349,-0.886956930160522,-0.0829256996512413,-0.576524615287781,-0.803614377975464,-0.147727355360985,-0.98201048374176,0.0115761449560523,0.188471525907516,-0.94926792383194,-0.0692687779664993,0.306744575500488,-0.929934620857239,0.0990416780114174,-0.354136168956757,-0.972027122974396,0.0872172340750694,-0.218074798583984,-0.968736290931702,0.0865925252437592,-0.232490852475166,-0.924595892429352,0.106632262468338,-0.365721195936203,-0.97303694486618,0.0714160725474358,-0.219314992427826,-0.995843052864075,0.0611577890813351,-0.0675009712576866,-0.996766448020935,0.0558959618210793,-0.0577278956770897,-0.969245254993439,0.0766919180750847,-0.233841866254807,-0.969252526760101,0.0765359029173851,-0.233862966299057,-0.996757507324219,0.0560757927596569,-0.0577064119279385,-0.998219966888428,0.0418707206845284,-0.0424721986055374,-0.968680500984192,0.0853623673319817,-0.233176693320274, +-0.924405217170715,0.110358752310276,-0.365097105503082,-0.968614041805267,0.0887200981378555,-0.232197314500809,-0.968705117702484,0.0845301896333694,-0.233377650380135,-0.923076868057251,0.120403453707695,-0.365283876657486,-0.998232841491699,0.0414711870253086,-0.0425617210566998,-0.999211609363556,0.0263140592724085,-0.0297307185828686,-0.975745916366577,0.0853301361203194,-0.201590716838837,-0.968680202960968,0.0853751674294472,-0.23317363858223,-0.999200463294983,0.0269918609410524,-0.0294961668550968,-0.999780654907227,0.0157439354807138,-0.01381263602525,-0.985383093357086,0.0746355727314949,-0.153133004903793,-0.975732862949371,0.0862701162695885,-0.201253235340118,-0.975751459598541,0.0849084854125977,-0.20174203813076,-0.98539012670517,0.0667509734630585,-0.15668648481369,-0.958010017871857,0.109570279717445,-0.264974296092987,-0.941544055938721,0.121484637260437,-0.314223349094391,-0.968464016914368,0.0918610841035843,-0.231600910425186,-0.975789189338684,0.0814461708068848,-0.202982738614082,-0.941546618938446,0.115369409322739,-0.316512107849121,-0.923077166080475,0.120385907590389,-0.365288615226746,-0.998406946659088,0.0354271084070206,-0.0439149513840675,-0.990948796272278,-0.00683940201997757,0.134066238999367,-0.991425335407257,-0.0146817732602358,0.129847198724747,-0.99887090921402,0.0405125580728054,-0.0248131621629,-0.991068363189697,-0.0126332947984338,0.13275520503521,-0.970512926578522,-0.0340122655034065,0.238637432456017,-0.972177743911743,-0.0385969579219818,0.231042832136154,-0.991245746612549,-0.00910389702767134,0.13171549141407,-0.991358757019043,-0.0124875074252486,0.130582720041275,-0.972305953502655,-0.0421861484646797,0.229872822761536,-0.975368022918701,-0.043975830078125,0.216156363487244,-0.992180168628693,-0.00883011892437935,0.124502003192902,-0.998993873596191,0.0363642834126949,-0.0262508019804955,-0.991423904895782,-0.0146334813907743,0.129863381385803,-0.992563009262085,-0.0187085773795843,0.120286278426647,-0.999418139457703,0.0335762277245522,-0.00601661112159491,-0.998344957828522,0.0377374701201916,-0.0433979071676731, +-0.997649013996124,0.0320913083851337,-0.0605522692203522,-0.992564797401428,0.00675668055191636,0.121530279517174,-0.990892291069031,-0.00456651672720909,0.134579241275787,-0.997510194778442,0.0371299088001251,-0.0599575452506542,-0.996870934963226,0.0380842946469784,-0.0692673251032829,-0.994000256061554,0.0188459996134043,0.10774177312851,-0.992471396923065,0.0105090253055096,0.122025087475777,-0.992713034152985,-0.00102926371619105,0.120498053729534,-0.994357645511627,0.00156801892444491,0.106068849563599,-0.972949266433716,-0.0158681105822325,0.230473563075066,-0.971368610858917,-0.022152541205287,0.236542761325836,-0.990927398204803,-0.00595153635367751,0.13426673412323,-0.992785573005676,-0.00703439489006996,0.119696848094463,-0.971446692943573,-0.027187330648303,0.235695347189903,-0.97051477432251,-0.0340887270867825,0.238619029521942,-0.910609543323517,0.219471916556358,-0.350174754858017,-0.49242776632309,0.177289411425591,-0.852105259895325,-0.382364332675934,0.24645522236824,-0.890537679195404,-0.890471458435059,0.203704908490181,-0.406896770000458,-0.991793870925903,-0.00169724319130182,-0.12783519923687,-0.995862066745758,0.0462522618472576,-0.078227125108242,-0.99877917766571,0.0308835543692112,0.038552638143301,-0.993921935558319,0.104160085320473,0.0356379747390747,-0.340093314647675,0.121569372713566,-0.932500660419464,-0.217043712735176,0.181669056415558,-0.959108114242554,-0.390887349843979,0.109560698270798,-0.913894712924957,-0.512398660182953,0.0599188879132271,-0.856654763221741,-0.533272445201874,0.520491302013397,-0.666865289211273,-0.592934012413025,0.683434247970581,-0.425848513841629,-0.564207196235657,0.75926399230957,-0.324327975511551,-0.543749868869781,0.599420428276062,-0.587393701076508,0.320309191942215,0.439039677381516,-0.839432060718536,0.366002351045609,0.495602041482925,-0.787667989730835,0.508364021778107,0.611068487167358,-0.606763064861298,0.441479861736298,0.525404214859009,-0.727355480194092,-0.441727519035339,0.302858918905258,-0.844484090805054,-0.379067867994308,0.269966334104538,-0.885113418102264, +-0.520201563835144,0.318623095750809,-0.792382299900055,-0.553336203098297,0.356200128793716,-0.752954542636871,-0.92929470539093,0.107979491353035,-0.353202402591705,-0.873035311698914,0.120206259191036,-0.472609609365463,-0.878572702407837,0.115950919687748,-0.463320165872574,-0.936543166637421,0.107216969132423,-0.333753526210785,-0.810618281364441,0.141256839036942,-0.568282067775726,-0.823597609996796,0.146249860525131,-0.547994494438171,-0.876204967498779,0.143382847309113,-0.460115432739258,-0.872236847877502,0.133247658610344,-0.470582664012909,-0.913256287574768,0.104860588908195,-0.393658936023712,-0.936293423175812,0.110046498477459,-0.33353316783905,-0.878365516662598,0.118707954883575,-0.46301457285881,-0.823552191257477,0.14238166809082,-0.549080371856689,-0.929159700870514,0.109738998115063,-0.353015065193176,-0.924477338790894,0.108979485929012,-0.365328729152679,-0.873849511146545,0.12833696603775,-0.468952745199203,-0.872840106487274,0.123637862503529,-0.472084552049637,-0.92436420917511,0.111127875745296,-0.364967614412308,-0.923277914524078,0.108539834618568,-0.368479549884796,-0.877461791038513,0.136230394244194,-0.459893524646759,-0.873666703701019,0.13277393579483,-0.468057245016098,-0.873678386211395,0.132502913475037,-0.468112230300903,-0.877538621425629,0.132661610841751,-0.460789531469345,-0.833234310150146,0.155225425958633,-0.530684173107147,-0.822367429733276,0.153975591063499,-0.547725737094879,-0.872412264347076,0.130586504936218,-0.471003204584122,-0.873807787895203,0.129391059279442,-0.468740940093994,-0.822437047958374,0.147753685712814,-0.549332499504089,-0.810600578784943,0.150424167513847,-0.565949976444244,-0.996907413005829,0.0542042888700962,-0.0569006614387035,-0.995936155319214,0.0642299652099609,-0.0631332769989967,-0.975289762020111,0.0734717473387718,-0.208354890346527,-0.970314860343933,0.0859483927488327,-0.226057752966881,-0.996125817298889,0.0609266087412834,-0.0634133890271187,-0.995826125144958,0.0614583268761635,-0.067477710545063,-0.973032653331757,0.0714906379580498,-0.219309240579605, +-0.975472807884216,0.0704329460859299,-0.208547592163086,-0.974518060684204,0.0849266871809959,-0.207610785961151,-0.972130239009857,0.0857642218470573,-0.21819119155407,-0.93011599779129,0.0962947607040405,-0.35441717505455,-0.937739729881287,0.0922078937292099,-0.33487606048584,-0.970338463783264,0.0854045450687408,-0.22616209089756,-0.974070906639099,0.0908126309514046,-0.207217410206795,-0.937466144561768,0.0958894789218903,-0.334607899188995,-0.912922143936157,0.119549989700317,-0.39023220539093,-0.911042511463165,0.197956636548042,-0.361683338880539,-0.890080988407135,0.163698896765709,-0.42539244890213,-0.914504528045654,0.194212779402733,-0.354912608861923,-0.933939158916473,0.221835166215897,-0.28026208281517,-0.889743626117706,0.154380634427071,-0.429561525583267,-0.867599070072174,0.155549004673958,-0.472309559583664,-0.898350119590759,0.148009285330772,-0.413594365119934,-0.915348887443542,0.14755243062973,-0.374652743339539,-0.915125966072083,0.132679462432861,-0.380710661411285,-0.898228108882904,0.132079809904099,-0.419214963912964,-0.922806024551392,0.130177274346352,-0.362605899572372,-0.941531181335449,0.124019406735897,-0.313270151615143,-0.935844600200653,0.134535774588585,-0.325722515583038,-0.915346205234528,0.147180199623108,-0.374805748462677,-0.941473841667175,0.129971444606781,-0.311021536588669,-0.958074867725372,0.114511035382748,-0.262639969587326,-0.923069477081299,0.120721019804478,-0.365197479724884,-0.898128390312195,0.126661837100983,-0.421096444129944,-0.881430149078369,0.131128177046776,-0.453746914863586,-0.877361178398132,0.140246972441673,-0.458877146244049,-0.867592692375183,0.155365511775017,-0.472381770610809,-0.843744575977325,0.163380369544029,-0.511274814605713,-0.881486237049103,0.145769238471985,-0.449147492647171,-0.898310005664825,0.138700097799301,-0.416895240545273,-0.83320152759552,0.160692676901817,-0.52910590171814,-0.877396941184998,0.138886362314224,-0.459222376346588,-0.881482422351837,0.138016819953918,-0.451597422361374,-0.843720555305481,0.161911517381668,-0.511781513690948, +-0.970506191253662,-0.0147743728011847,0.2406235486269,-0.974244952201843,-0.00812661740928888,0.225345775485039,-0.994266986846924,0.00831205677241087,0.106602370738983,-0.992333769798279,0.0167825296521187,0.122442185878754,-0.974222600460052,-0.00712033454328775,0.225476458668709,-0.972855865955353,-0.0104602407664061,0.231175392866135,-0.994297385215759,0.0058284136466682,0.106484316289425,-0.994227409362793,0.0101381167769432,0.106813512742519,-0.993803143501282,0.024382222443819,0.108448289334774,-0.993848860263824,0.0236143786460161,0.108197845518589,-0.996768891811371,0.0410482250154018,-0.0690425932407379,-0.996935784816742,0.0437300838530064,-0.0648594051599503,-0.992479085922241,0.0136173199862242,0.121654979884624,-0.993767499923706,0.0253312047570944,0.108556419610977,-0.996950745582581,0.0433384738862514,-0.0648920983076096,-0.996801495552063,0.0566403158009052,-0.056379921734333,-0.958081007003784,0.115124374628067,-0.26234957575798,-0.973860502243042,0.0878134146332741,-0.209486812353134,-0.954339504241943,0.120122790336609,-0.273508101701736,-0.936054944992065,0.142958268523216,-0.321502804756165,-0.973771929740906,0.0847296640276909,-0.21116141974926,-0.983019292354584,0.0631555840373039,-0.172291800379753,-0.964745342731476,0.1020348072052,-0.242601573467255,-0.954381823539734,0.121221549808979,-0.272874891757965,-0.953459024429321,0.102611020207405,-0.283525973558426,-0.963925123214722,0.0827078074216843,-0.252997666597366,-0.93693470954895,0.126338601112366,-0.325871139764786,-0.927719354629517,0.141062900424004,-0.34559839963913,-0.936164319515228,0.170282199978828,-0.307571619749069,-0.953824460506439,0.108989700675011,-0.279893100261688,-0.928906738758087,0.180267289280891,-0.323475033044815,-0.90997976064682,0.23453663289547,-0.341949731111526,-0.999768793582916,0.0168874356895685,-0.0133129507303238,-0.999959826469421,0.0071174455806613,0.00546528724953532,-0.992445945739746,0.0604299455881119,-0.106768198311329,-0.985366582870483,0.0770013555884361,-0.152064025402069,-0.999951362609863,0.00793318264186382,0.00586503092199564, +-0.999661445617676,0.00196180818602443,0.0259444769471884,-0.995848536491394,0.0474406592547894,-0.0776867344975471,-0.992429912090302,0.0625625848770142,-0.105682700872421,-0.992430865764618,0.0485526882112026,-0.112799108028412,-0.995908975601196,0.036027580499649,-0.0828695744276047,-0.983201742172241,0.0754289627075195,-0.166207656264305,-0.974044620990753,0.0964532271027565,-0.204778045415878,-0.985395312309265,0.0687006339430809,-0.155809104442596,-0.992429435253143,0.0483894608914852,-0.112881816923618,-0.973982274532318,0.093000628054142,-0.206662714481354,-0.958085417747498,0.115611292421818,-0.262118875980377,-0.975550949573517,-0.0480692014098167,0.214452013373375,-0.978366792201996,-0.046647485345602,0.201550528407097,-0.992443382740021,-0.0100173177197576,0.122293829917908,-0.992282450199127,-0.0111998021602631,0.123492062091827,-0.978430807590485,-0.0478994213044643,0.200944751501083,-0.974650204181671,-0.0537736155092716,0.217176407575607,-0.990647912025452,-0.0182520095258951,0.13521745800972,-0.992430984973907,-0.00976609345525503,0.122415415942669,-0.993002355098724,-0.0235778726637363,0.115716993808746,-0.990985631942749,-0.0279432199895382,0.131021603941917,-0.999371707439423,0.0155257461592555,0.0318606495857239,-0.999545574188232,0.0262399800121784,0.0148356817662716,-0.992640435695648,-0.0211663413792849,0.119235098361969,-0.992996394634247,-0.0233961772173643,0.115805312991142,-0.99957138299942,0.0254596993327141,0.0144533477723598,-0.999450922012329,0.0324934795498848,-0.00649019470438361,-0.975296795368195,-0.042490117251873,0.216773793101311,-0.958289802074432,-0.0659526064991951,0.278084307909012,-0.962129712104797,-0.0638892576098442,0.264999330043793,-0.977824926376343,-0.0372465737164021,0.206085324287415,-0.958121180534363,-0.0625103488564491,0.279457062482834,-0.929876983165741,-0.0904076099395752,0.356588393449783,-0.931760370731354,-0.0930211991071701,0.350955635309219,-0.961683332920074,-0.0572525784373283,0.268118143081665,-0.961466908454895,-0.0542829744517803,0.269508510828018, +-0.931688070297241,-0.0917263329029083,0.351487785577774,-0.927407205104828,-0.0949459448456764,0.361802875995636,-0.953904271125793,-0.0657616630196571,0.292817503213882,-0.977866172790527,-0.0379010364413261,0.205770447850227,-0.962223589420319,-0.0653907358646393,0.264291554689407,-0.954485237598419,-0.0762819871306419,0.288338601589203,-0.974361479282379,-0.0473285354673862,0.219953998923302,-0.970668971538544,-0.0417454391717911,0.236768111586571,-0.953469455242157,-0.0523522756993771,0.296909481287003,-0.955023646354675,-0.0568102858960629,0.291037082672119,-0.972279012203217,-0.0413995608687401,0.230129525065422,-0.953590929508209,-0.0579966232180595,0.295467108488083,-0.923095643520355,-0.0753797069191933,0.377110809087753,-0.926100790500641,-0.0800541192293167,0.368685066699982,-0.955126583576202,-0.0596570484340191,0.290128022432327,-0.95522928237915,-0.0627650395035744,0.289132416248322,-0.926267862319946,-0.0849143266677856,0.367174923419952,-0.929754197597504,-0.0875964537262917,0.357608765363693,-0.95802229642868,-0.0606050230562687,0.280215114355087,-0.972383618354797,-0.0445749685168266,0.229092180728912,-0.955183565616608,-0.0613427758216858,0.289588421583176,-0.958125472068787,-0.0625934526324272,0.279423981904984,-0.975170195102692,-0.0399691797792912,0.217820063233376,-0.970492899417877,-0.0331967882812023,0.23883368074894,-0.97148859500885,-0.030953373759985,0.235057413578033,-0.954692423343658,-0.0459871478378773,0.294020056724548,-0.953473925590515,-0.0525324381887913,0.29686364531517,-0.971427619457245,-0.0257903020828962,0.235931113362312,-0.973030507564545,-0.0233330465853214,0.229493379592896,-0.957123339176178,-0.0345703922212124,0.28761088848114,-0.954591929912567,-0.0398606695234776,0.295238167047501,-0.95462441444397,-0.0416105575859547,0.29489141702652,-0.957163214683533,-0.0387180596590042,0.286948621273041,-0.92751282453537,-0.0577495917677879,0.369303315877914,-0.924388229846954,-0.063012033700943,0.376212626695633,-0.953381180763245,-0.0489692389965057,0.297768950462341,-0.954679071903229,-0.0450301617383957,0.294211089611053, +-0.924519956111908,-0.0683697909116745,0.374951422214508,-0.92310094833374,-0.0755716636776924,0.377059102058411,-0.973001539707184,-0.0200438853353262,0.229926913976669,-0.974403440952301,-0.0173714458942413,0.224134296178818,-0.96010023355484,-0.026660218834877,0.278382688760757,-0.957063674926758,-0.0302460938692093,0.288295865058899,-0.974439084529877,-0.0206197649240494,0.223703980445862,-0.970741808414459,-0.0202322173863649,0.239271923899651,-0.95186448097229,-0.0372230857610703,0.304250657558441,-0.960131049156189,-0.0293068401515484,0.278010189533234,-0.960152745246887,-0.0480487123131752,0.275314658880234,-0.952331244945526,-0.0534299686551094,0.300350517034531,-0.927363693714142,-0.0702842101454735,0.367500752210617,-0.93056732416153,-0.0630179420113564,0.360656559467316,-0.957167267799377,-0.0392612107098103,0.286861538887024,-0.960183620452881,-0.0378805063664913,0.276789635419846,-0.930411458015442,-0.0547586753964424,0.362403035163879,-0.927486538887024,-0.0566201023757458,0.369544446468353,-0.546291708946228,0.513476371765137,-0.66174578666687,-0.537562727928162,0.446662247180939,-0.715205669403076,-0.622544527053833,0.598273456096649,-0.504487037658691,-0.602079033851624,0.67678028345108,-0.423638224601746,0.367309242486954,0.563515901565552,-0.739955246448517,0.364646434783936,0.61625349521637,-0.698043406009674,0.431921988725662,0.793693065643311,-0.428362816572189,0.481075912714005,0.720392107963562,-0.499601036310196,-0.954616546630859,-0.0364319942891598,-0.29560112953186,-0.982932388782501,0.0596096329391003,-0.174042508006096,-0.995736479759216,0.0203178450465202,-0.0899781137704849,-0.98891681432724,0.0324315614998341,-0.144885212182999,-0.990406513214111,-0.0127422027289867,0.137595817446709,-0.957080066204071,0.060267735272646,0.283488005399704,-0.99332070350647,-0.0419500321149826,0.107490547001362,-0.999524056911469,0.00965617597103119,0.0293011907488108,-0.972889006137848,-0.0236399360001087,0.230061203241348,-0.879531919956207,0.0962225422263145,0.466009467840195,-0.95276004076004,0.0156108429655433,0.303322553634644, +-0.988837897777557,0.012586323544383,0.148462772369385,-0.951177000999451,-0.0317573808133602,0.307007730007172,-0.762114346027374,0.121303856372833,0.635977447032928,-0.87013977766037,0.034856740385294,0.491570711135864,-0.970917940139771,-0.00139179895631969,0.239408433437347,0.498585313558578,0.708386778831482,-0.499600857496262,0.487598955631256,0.630159556865692,-0.60427325963974,0.356080800294876,0.502737998962402,-0.787693560123444,0.382425159215927,0.555747926235199,-0.738170206546783,0.193313762545586,0.315050810575485,-0.929178595542908,0.278324276208878,0.359447926282883,-0.890692293643951,0.369679301977158,0.403000086545944,-0.837214529514313,0.318241000175476,0.359722405672073,-0.877110302448273,-0.923079609870911,-0.0413601212203503,0.382378548383713,-0.609299540519714,0.143627181649208,0.779823839664459,-0.749828577041626,0.0650854930281639,0.658423185348511,-0.948490262031555,-0.00788709241896868,0.316708207130432,-0.925650656223297,-0.0260517857968807,0.377481341362,-0.46272948384285,0.0978129282593727,0.881086885929108,-0.601753950119019,0.114582225680351,0.790419578552246,-0.920013844966888,-0.0163076240569353,0.391546696424484,0.460901826620102,0.502388477325439,-0.73155677318573,0.357226997613907,0.422031819820404,-0.83323347568512,0.268563508987427,0.372385859489441,-0.88837069272995,0.334335386753082,0.42538246512413,-0.840993225574493,0.0594839975237846,0.274424195289612,-0.959767162799835,0.113449275493622,0.280027359724045,-0.953264951705933,0.256800413131714,0.302051544189453,-0.918051421642303,0.189306437969208,0.274955779314041,-0.942635893821716,-0.927331209182739,-0.0501649864017963,0.370864301919937,-0.309293657541275,0.00522590475156903,0.950952231884003,-0.46257483959198,0.0970569178462029,0.881251692771912,-0.926989316940308,-0.0370873473584652,0.373249679803848,-0.925236105918884,-0.0613710060715675,0.374395340681076,-0.193052932620049,-0.154502883553505,0.96894758939743,-0.309554785490036,0.00738118309527636,0.950852990150452,-0.927796185016632,-0.0558852218091488,0.368878424167633, +0.322093904018402,0.350816488265991,-0.8793084025383,0.255170553922653,0.309328764677048,-0.91608065366745,0.111793234944344,0.286627352237701,-0.951497256755829,0.195437386631966,0.310833215713501,-0.930154263973236,-0.00262747891247272,0.273791521787643,-0.961785495281219,0.0232858806848526,0.270951688289642,-0.962311327457428,0.130806356668472,0.257463186979294,-0.957393527030945,0.087011955678463,0.246477246284485,-0.965234696865082,-0.922836899757385,-0.0673551708459854,0.379256367683411,-0.148303240537643,-0.38461646437645,0.911085247993469,-0.19307941198349,-0.153079479932785,0.969168305397034,-0.925211846828461,-0.0609366483986378,0.374526292085648,-0.924766778945923,-0.0911651775240898,0.369452655315399,-0.219209462404251,-0.612777531147003,0.759243607521057,-0.148384749889374,-0.385241717100143,0.91080778837204,-0.923181295394897,-0.0785946696996689,0.376243412494659,0.18935127556324,0.273929864168167,-0.94292551279068,0.130827441811562,0.257609069347382,-0.957351505756378,0.0236139856278896,0.273008644580841,-0.961721837520599,0.0596062652766705,0.271557718515396,-0.960574567317963,0.0486603863537312,0.227898836135864,-0.972468197345734,0.0214210599660873,0.225923895835876,-0.973909378051758,-0.0225373860448599,0.269019335508347,-0.962871074676514,-0.0188993476331234,0.271018028259277,-0.962388813495636,-0.927001118659973,-0.121186353266239,0.354940593242645,-0.381326228380203,-0.725305259227753,0.573168814182281,-0.223926544189453,-0.625824570655823,0.747128248214722,-0.924652457237244,-0.106097526848316,0.365733623504639,-0.927531599998474,-0.15830634534359,0.338562041521072,-0.559790372848511,-0.698398292064667,0.445953577756882,-0.38708907365799,-0.732902586460114,0.559478223323822,-0.926177501678467,-0.138459101319313,0.350747913122177,0.0845355242490768,0.239606097340584,-0.96718293428421,0.0513384640216827,0.232212498784065,-0.971309304237366,-0.0162679720669985,0.275184541940689,-0.961253821849823,-0.00295934174209833,0.272910356521606,-0.962034940719604,-0.0226624365895987,0.260300636291504,-0.965261578559875, +-0.0247055310755968,0.266778171062469,-0.963441371917725,0.0190086904913187,0.223443791270256,-0.974531471729279,0.0001083757597371,0.225496292114258,-0.974243998527527,-0.924631416797638,-0.179647669196129,0.335832417011261,-0.711246967315674,-0.586225807666779,0.387900859117508,-0.564351320266724,-0.701196670532227,0.435695856809616,-0.926977396011353,-0.165025070309639,0.336867302656174,-0.95127272605896,-0.123840227723122,0.282389551401138,-0.832193434238434,-0.439859390258789,0.33760592341423,-0.737414538860321,-0.590579450130463,0.32777401804924,-0.927068889141083,-0.138779506087303,0.34825786948204,-0.0031447745859623,0.223339274525642,-0.974735796451569,-0.00169813120737672,0.196948826313019,-0.980412304401398,-0.0202438849955797,0.244713976979256,-0.969384014606476,-0.0239406377077103,0.259431183338165,-0.96546483039856,-0.0179395042359829,0.220561981201172,-0.975207984447479,-0.0214916095137596,0.244173496961594,-0.969493389129639,-0.00447242660447955,0.195755839347839,-0.98064249753952,-0.00588623806834221,0.162252381443977,-0.986731708049774,-0.971465110778809,-0.0705862492322922,0.226436242461205,-0.921488165855408,-0.27667298913002,0.272601932287216,-0.864292800426483,-0.436514437198639,0.249906688928604,-0.952434659004211,-0.0884510576725006,0.291624486446381,-0.993250906467438,-0.0111671285703778,0.115447513759136,-0.974920094013214,-0.0906736552715302,0.203246429562569,-0.946806788444519,-0.267485380172729,0.178909808397293,-0.97141021490097,-0.0440195649862289,0.23329059779644,-0.00773331476375461,0.161798745393753,-0.986793577671051,-0.0163092594593763,0.131597250699997,-0.991169095039368,-0.0183362569659948,0.196030288934708,-0.980426490306854,-0.0190756842494011,0.220289275050163,-0.975248038768768,-0.0224258415400982,0.180463045835495,-0.983326077461243,-0.0213344339281321,0.195855617523193,-0.980400741100311,-0.0162236746400595,0.131602913141251,-0.99116975069046,-0.0282812733203173,0.11191900074482,-0.993314862251282,-0.996883034706116,0.0547769479453564,-0.0567782931029797,-0.993674874305725,0.0919574350118637,0.064453549683094, +-0.996759414672852,-0.0701594948768616,0.0393505245447159,-0.992577970027924,0.0113169299438596,0.121082082390785,-0.968815982341766,0.112171657383442,-0.22093690931797,-0.957908570766449,0.25338140130043,-0.134941652417183,-0.983350813388824,0.113586872816086,-0.141842246055603,-0.995513558387756,0.0793774947524071,-0.0514989085495472,-0.0271180383861065,0.174104228615761,-0.98435378074646,-0.0250664185732603,0.180725440382957,-0.983214199542999,-0.0309954956173897,0.112177416682243,-0.993204653263092,-0.0430701300501823,0.10679703950882,-0.993347644805908,-0.0311770793050528,0.201184272766113,-0.979057133197784,-0.0347066856920719,0.182852879166603,-0.982527554035187,-0.0564029142260551,0.121896080672741,-0.990939080715179,-0.0554379038512707,0.15161158144474,-0.986884295940399,-0.911121726036072,0.15699477493763,-0.381064087152481,-0.86384129524231,0.388845026493073,-0.320277780294418,-0.908042073249817,0.259597092866898,-0.32873871922493,-0.967805325984955,0.12526598572731,-0.218314573168755,-0.823544383049011,0.173158586025238,-0.540176451206207,-0.670155346393585,0.479063332080841,-0.566912829875946,-0.764909327030182,0.368649125099182,-0.52821546792984,-0.911509573459625,0.15087702870369,-0.382604777812958,-0.0458104163408279,0.107465751469135,-0.993152797222137,-0.0524007305502892,0.120283626019955,-0.991355657577515,-0.0291414204984903,0.180606320500374,-0.983123660087585,-0.0298889111727476,0.174785673618317,-0.984152793884277,-0.0573142729699612,0.223089978098869,-0.973111569881439,-0.0457633174955845,0.225916892290115,-0.973071038722992,-0.0917908698320389,0.176166474819183,-0.980071425437927,-0.130971476435661,0.174005776643753,-0.975996196269989,-0.809986531734467,0.181828767061234,-0.557548463344574,-0.497060209512711,0.548362553119659,-0.672480225563049,-0.629089593887329,0.460881054401398,-0.625967264175415,-0.82250040769577,0.208115473389626,-0.529321312904358,-0.822120606899261,0.166622519493103,-0.544384717941284,-0.368509232997894,0.562506377696991,-0.74012678861618,-0.506208479404449,0.556199789047241,-0.659086346626282, +-0.81014496088028,0.176724523305893,-0.558957636356354,-0.064569279551506,0.157051354646683,-0.985477387905121,-0.0833011120557785,0.16799733042717,-0.982261657714844,-0.0421298034489155,0.222302168607712,-0.974067151546478,-0.0407182686030865,0.207033038139343,-0.977486312389374,-0.167898595333099,0.172281458973885,-0.970633387565613,-0.208172857761383,0.174329474568367,-0.962430953979492,-0.108224384486675,0.199959382414818,-0.973808884620667,-0.0785844475030899,0.20898774266243,-0.974755644798279,-0.833113670349121,0.168128430843353,-0.526929378509521,-0.299561321735382,0.527967751026154,-0.794678092002869,-0.377166390419006,0.576920747756958,-0.724505364894867,-0.822088479995728,0.167873293161392,-0.54404878616333,-0.84377121925354,0.165174871683121,-0.510654032230377,-0.259285658597946,0.431956321001053,-0.86381983757019,-0.300365030765533,0.530328154563904,-0.792800664901733,-0.832918465137482,0.178029388189316,-0.52397745847702,-0.131659120321274,0.17511622607708,-0.975704967975616,-0.168101906776428,0.172796607017517,-0.970506608486176,-0.0781602039933205,0.207924708724022,-0.975017189979553,-0.0555975548923016,0.220339357852936,-0.973837614059448,-0.282730042934418,0.174562126398087,-0.943181753158569,-0.146861881017685,0.192499294877052,-0.970245242118835,-0.108175002038479,0.199736207723618,-0.973860144615173,-0.208053752779961,0.173798441886902,-0.962552785873413,-0.86718475818634,0.145231023430824,-0.476338893175125,-0.291891276836395,0.327691733837128,-0.898564159870148,-0.260791808366776,0.440873682498932,-0.858846962451935,-0.843736886978149,0.162897527217865,-0.51144152879715,-0.916220605373383,0.0401486717164516,-0.398657888174057,-0.613608539104462,-0.036700002849102,-0.788757085800171,-0.522880911827087,-0.0316806398332119,-0.851816952228546,-0.897530972957611,0.0365995764732361,-0.439429879188538,-0.47296553850174,0.263268649578094,-0.840828835964203,-0.516122877597809,0.329109311103821,-0.790761947631836,-0.386085152626038,0.255550712347031,-0.886358857154846,-0.318492501974106,0.194408133625984,-0.927775859832764, +-0.541823089122772,0.443515568971634,-0.713948130607605,-0.499122142791748,0.373232662677765,-0.782032251358032,-0.615992307662964,0.488110244274139,-0.618305802345276,-0.639140188694,0.582590222358704,-0.502084136009216,-0.926085412502289,0.0289871357381344,-0.376198887825012,-0.70330411195755,-0.0450422801077366,-0.70946079492569,-0.612403750419617,-0.0286632124334574,-0.790025353431702,-0.915903270244598,0.038326907902956,-0.399565190076828,-0.958846628665924,0.0258730165660381,-0.282743453979492,-0.85254043340683,-0.0020384225063026,-0.52265727519989,-0.708914816379547,-0.0727177113294601,-0.70153546333313,-0.93162989616394,0.0667960569262505,-0.357216984033585,-0.543273270130157,0.374316394329071,-0.7514927983284,-0.631268084049225,0.468515604734421,-0.618056416511536,-0.504349529743195,0.367531895637512,-0.781378269195557,-0.437036842107773,0.3102667927742,-0.844235479831696,-0.948704898357391,0.00826288480311632,-0.316055029630661,-0.86464124917984,-0.0677140578627586,-0.497805565595627,-0.96321839094162,0.0712161958217621,-0.259111225605011,-0.981846451759338,0.0339548029005527,-0.18661405146122,-0.890371918678284,0.175318092107773,-0.420120745897293,-0.383727043867111,0.230887398123741,-0.894116520881653,-0.291531533002853,0.31822606921196,-0.902076244354248,-0.867913842201233,0.166129395365715,-0.468109518289566,-0.0714799240231514,0.913036644458771,-0.401565611362457,-0.0638096109032631,0.920014023780823,-0.386655747890472,0.0401286780834198,0.916836977005005,-0.39724001288414,0.037725418806076,0.909614861011505,-0.413735955953598,-0.775990009307861,0.627247214317322,-0.0663360208272934,-0.793936789035797,0.605463147163391,-0.0554875321686268,-0.700145959854126,0.690130591392517,-0.183072492480278,-0.675717532634735,0.710880756378174,-0.195075780153275,-0.105721496045589,-0.957554578781128,0.268164694309235,-0.0266943052411079,-0.96218079328537,0.271100997924805,-0.106359533965588,-0.957198083400726,0.269183039665222,-0.173556491732597,-0.948121011257172,0.266354441642761,-0.388945817947388,0.154347568750381,-0.90823894739151, +-0.217727273702621,0.175484031438828,-0.960104286670685,-0.146947041153908,0.193859159946442,-0.96996146440506,-0.281469404697418,0.159607470035553,-0.946203112602234,-0.658928990364075,-0.623762786388397,-0.420395702123642,-0.704098165035248,-0.643190920352936,-0.300917327404022,-0.641072273254395,-0.698773264884949,-0.317399173974991,-0.599943697452545,-0.679830968379974,-0.421779066324234 + } + TangentsW: *11977 { + 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 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "DiffuseUV" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *23954 { + a: 0.987205386161804,0.326529949903488,0.958945214748383,0.308513671159744,0.98834228515625,0.32353675365448,0.958945214748383,0.308513671159744,0.942295432090759,0.333572626113892,0.939535856246948,0.331443816423416,0.958945214748383,0.308513671159744,0.93605375289917,0.325919896364212,0.934687256813049,0.32258740067482,0.969664812088013,0.340228140354156,0.958945214748383,0.308513671159744,0.974914789199829,0.338147073984146,0.932249903678894,0.306879699230194,0.933202683925629,0.302246570587158,0.958945214748383,0.308513671159744,0.462792038917542,0.247375011444092,0.462264001369476,0.254667997360229,0.455271005630493,0.253883004188538,0.456225991249084,0.246564000844955,0.477317988872528,0.246667996048927,0.478062033653259,0.253755003213882,0.470162987709045,0.254211038351059,0.470054984092712,0.24702200293541,0.494451999664307,0.250153988599777,0.486257016658783,0.251954048871994,0.484845995903015,0.245103001594543,0.491398483514786,0.242804601788521,0.501734972000122,0.247402012348175,0.494451999664307,0.250153988599777,0.491398483514786,0.242804601788521,0.497912466526031,0.240251570940018,0.518692910671234,0.23992595076561,0.509017944335938,0.244648933410645,0.504427433013916,0.237697571516037,0.512776255607605,0.232542186975479,0.962279200553894,0.340524882078171,0.953357696533203,0.338901519775391,0.958945214748383,0.308513671159744,0.52812922000885,0.224079579114914,0.541244983673096,0.228671997785568,0.537654995918274,0.218774020671844,0.526198744773865,0.2169049680233,0.487617999315262,0.917948007583618,0.476404994726181,0.916370987892151,0.475810468196869,0.925846993923187,0.484995007514954,0.926473021507263,0.508409976959229,0.922408044338226,0.498829990625381,0.919524013996124,0.495117008686066,0.927724957466125,0.503650009632111,0.93018501996994,0.525695025920868,0.929835021495819,0.517988979816437,0.925292015075684,0.512184023857117,0.932644009590149,0.519091010093689,0.936658978462219,0.538412094116211,0.939016044139862,0.533399879932404,0.93437784910202,0.525998950004578,0.940673887729645, +0.530480980873108,0.94480299949646,0.547267854213715,0.949870824813843,0.543422996997833,0.943652987480164,0.534962058067322,0.94893205165863,0.538505971431732,0.954728007316589,0.55458801984787,0.970911979675293,0.55285108089447,0.963500022888184,0.543892979621887,0.967753052711487,0.545735895633698,0.974981904029846,0.428858041763306,0.803085088729858,0.422147005796432,0.803071975708008,0.424187064170837,0.795623123645782,0.430916965007782,0.795754909515381,0.958945214748383,0.308513671159744,0.93331778049469,0.319255739450455,0.932814121246338,0.316042840480804,0.946812033653259,0.27989536523819,0.950121641159058,0.278326988220215,0.958945214748383,0.308513671159744,0.44666600227356,0.806183993816376,0.435568004846573,0.803097009658813,0.437647014856339,0.795888006687164,0.449523001909256,0.799395978450775,0.4669309258461,0.815002918243408,0.45776504278183,0.809272050857544,0.461397975683212,0.802904009819031,0.471447944641113,0.809551954269409,0.491469234228134,0.841416239738464,0.484454065561295,0.831747114658356,0.491209983825684,0.827916026115417,0.50029069185257,0.838872313499451,0.650957107543945,0.156525030732155,0.664981007575989,0.154017999768257,0.654299020767212,0.147488996386528,0.640661001205444,0.150290012359619,0.958945214748383,0.308513671159744,0.932308077812195,0.312830179929733,0.932280242443085,0.309854984283447,0.958945214748383,0.308513671159744,0.953429400920868,0.276756227016449,0.957139730453491,0.275966286659241,0.614588975906372,0.156151995062828,0.622748017311096,0.162363976240158,0.636853039264679,0.159445002675056,0.627624988555908,0.153221011161804,0.59422504901886,0.16040301322937,0.600718021392822,0.167142003774643,0.611733019351959,0.164752975106239,0.604407131671906,0.158278033137321,0.585457980632782,0.170779004693031,0.593088030815125,0.168960005044937,0.587234854698181,0.161921963095665,0.580245971679688,0.163441002368927,0.557708024978638,0.167338997125626,0.561607003211975,0.175750985741615,0.573532998561859,0.173264995217323,0.568976998329163,0.165389999747276,0.537800014019012, +0.168120801448822,0.540287017822266,0.178265988826752,0.55094701051712,0.177009001374245,0.547753930091858,0.168069005012512,0.476910918951035,0.903189897537231,0.464502930641174,0.903089880943298,0.466200917959213,0.916217803955078,0.476404994726181,0.916370987892151,0.979653477668762,0.335122406482697,0.958945214748383,0.308513671159744,0.983426809310913,0.330823957920074,0.958945214748383,0.308513671159744,0.937372505664825,0.290216207504272,0.939287424087524,0.28758180141449,0.941199898719788,0.284946262836456,0.944007039070129,0.282421767711639,0.958945214748383,0.308513671159744,0.958945214748383,0.308513671159744,0.989827275276184,0.294374853372574,0.990837097167969,0.297960251569748,0.958945214748383,0.308513671159744,0.987594723701477,0.289587408304214,0.988710522651672,0.291981399059296,0.958945214748383,0.308513671159744,0.982323169708252,0.28286999464035,0.984957575798035,0.286229699850082,0.958945214748383,0.308513671159744,0.991849541664124,0.301544964313507,0.991847157478333,0.306328058242798,0.989481091499329,0.32054415345192,0.958945214748383,0.308513671159744,0.990663051605225,0.315827190876007,0.982323169708252,0.28286999464035,0.958945214748383,0.308513671159744,0.979305386543274,0.280641734600067,0.666156113147736,0.199589997529984,0.683152079582214,0.195439025759697,0.655004024505615,0.174863025546074,0.640425980091095,0.177600979804993,0.718404948711395,0.188898995518684,0.700708031654358,0.191886022686958,0.713954865932465,0.202014982700348,0.733123183250427,0.199842065572739,0.650138020515442,0.204368993639946,0.666156113147736,0.199589997529984,0.640425980091095,0.177600979804993,0.627358973026276,0.181050986051559,0.745555996894836,0.209741994738579,0.725744128227234,0.211363047361374,0.736557960510254,0.219146966934204,0.755701124668121,0.21739199757576,0.683152079582214,0.195439025759697,0.666156113147736,0.199589997529984,0.680154085159302,0.209366023540497,0.696359932422638,0.205184981226921,0.705782055854797,0.225902035832405,0.729286968708038,0.241926997900009,0.743758857250214,0.238563999533653, +0.72008204460144,0.221919000148773,0.708722114562988,0.214132040739059,0.693824112415314,0.218162029981613,0.705782055854797,0.225902035832405,0.72008204460144,0.221919000148773,0.613956093788147,0.210284024477005,0.633455991744995,0.211217001080513,0.614292025566101,0.184501007199287,0.601944029331207,0.186067014932632,0.680154085159302,0.209366023540497,0.666156113147736,0.199589997529984,0.650138020515442,0.204368993639946,0.665151119232178,0.21457202732563,0.680386066436768,0.223562002182007,0.669553935527802,0.23089599609375,0.68292498588562,0.238364994525909,0.693166017532349,0.231291994452477,0.68292498588562,0.238364994525909,0.706736028194427,0.252620011568069,0.716818988323212,0.246556997299194,0.693166017532349,0.231291994452477,0.792692899703979,0.244441956281662,0.777350008487701,0.247710004448891,0.8058140873909,0.25620499253273,0.80608606338501,0.251632004976273,0.780579209327698,0.268187642097473,0.799286842346191,0.268679529428482,0.777350008487701,0.247710004448891,0.756885051727295,0.248537003993988,0.706736028194427,0.252620011568069,0.68292498588562,0.238364994525909,0.675747990608215,0.247396022081375,0.699417948722839,0.26028299331665,0.739470839500427,0.275651395320892,0.718622982501984,0.260405004024506,0.710744976997375,0.267123013734818,0.73037713766098,0.280717730522156,0.818339824676514,0.286892950534821,0.833792924880981,0.302718997001648,0.854375898838043,0.306699901819229,0.838329970836639,0.289550989866257,0.782972812652588,0.28507199883461,0.797487020492554,0.298797011375427,0.814671993255615,0.30000901222229,0.799717009067535,0.285304009914398,0.849000930786133,0.31954100728035,0.863541185855865,0.337092071771622,0.884895026683807,0.343131989240646,0.870013952255249,0.324571967124939,0.811922132968903,0.313626050949097,0.82582700252533,0.32920503616333,0.843689978122711,0.33236899971962,0.829477906227112,0.315814942121506,0.876990020275116,0.355100989341736,0.889160871505737,0.373210936784744,0.910988092422485,0.38159105181694,0.898669123649597,0.362346053123474,0.838752090930939, +0.345178991556168,0.850604057312012,0.361371070146561,0.868884027004242,0.366432011127472,0.856866002082825,0.349319040775299,0.899866998195648,0.391065001487732,0.909204006195068,0.408610939979553,0.930532217025757,0.418354988098145,0.921501994132996,0.400243014097214,0.930532217025757,0.418354988098145,0.909204006195068,0.408610939979553,0.917267024517059,0.425794988870621,0.938396751880646,0.435977876186371,0.86129093170166,0.377604961395264,0.870806932449341,0.393777936697006,0.889093995094299,0.400356948375702,0.879621207714081,0.383474051952362,0.945116996765137,0.453285992145538,0.924144983291626,0.442734003067017,0.929925084114075,0.459544986486435,0.950711011886597,0.470450013875961,0.879145920276642,0.409786999225616,0.886377036571503,0.425695985555649,0.90438312292099,0.433459043502808,0.89731901884079,0.416992008686066,0.955096006393433,0.48742800951004,0.934599101543427,0.476232051849365,0.938154101371765,0.492801070213318,0.958187103271484,0.504174113273621,0.892567098140717,0.441573083400726,0.897756218910217,0.457413077354431,0.915315985679626,0.466140061616898,0.910372018814087,0.449837952852249,0.960290014743805,0.520960986614227,0.940731048583984,0.509362995624542,0.942471981048584,0.526031017303467,0.961710870265961,0.538057923316956,0.901983022689819,0.473213016986847,0.905264019966125,0.488976925611496,0.922213971614838,0.498582929372787,0.919246017932892,0.482376009225845,0.962199985980988,0.555469989776611,0.943222880363464,0.542814970016479,0.942830979824066,0.559723973274231,0.961509883403778,0.573198974132538,0.907615959644318,0.504714012145996,0.908967852592468,0.52039498090744,0.925327003002167,0.531008958816528,0.924275994300842,0.514796018600464,0.959558010101318,0.590735971927643,0.941311061382294,0.576426029205322,0.93868100643158,0.592588007450104,0.956260919570923,0.607572019100189,0.90925008058548,0.53599214553833,0.908576846122742,0.551422953605652,0.924171149730682,0.563226103782654,0.925262868404388,0.547213912010193,0.951969027519226,0.623525023460388,0.935082972049713,0.608123004436493, +0.930662989616394,0.622946977615356,0.947032928466797,0.638414978981018,0.907058954238892,0.566604018211365,0.904647886753082,0.581424951553345,0.919170022010803,0.594022989273071,0.922136008739471,0.578858017921448,0.919170022010803,0.594022989273071,0.904647886753082,0.581424951553345,0.901292979717255,0.59577602148056,0.915282011032104,0.608636021614075,0.919401943683624,0.651315927505493,0.91253000497818,0.665102005004883,0.926918029785156,0.680264055728912,0.934542000293732,0.666604995727539,0.910574853420258,0.622847020626068,0.897112965583801,0.609780967235565,0.892228007316589,0.623564004898071,0.905151009559631,0.636806011199951,0.907058954238892,0.566604018211365,0.908576846122742,0.551422953605652,0.894969999790192,0.541304886341095,0.893881976604462,0.556052088737488,0.891937017440796,0.570533871650696,0.881047070026398,0.561316013336182,0.878652989864349,0.575232982635498,0.88909900188446,0.584660887718201,0.904772996902466,0.67865401506424,0.896005988121033,0.692122936248779,0.909003913402557,0.70678585767746,0.918506979942322,0.69357693195343,0.898926019668579,0.650562882423401,0.886572003364563,0.637187004089355,0.880078017711639,0.650712013244629,0.891816973686218,0.664168953895569,0.885450899600983,0.598491013050079,0.875483870506287,0.58890289068222,0.8715740442276,0.602280974388123,0.881071925163269,0.612082004547119,0.886105120182037,0.705655992031097,0.875140011310577,0.71875411272049,0.886088013648987,0.732926964759827,0.89809912443161,0.720131099224091,0.883770108222961,0.677738130092621,0.872696042060852,0.664249062538147,0.864377975463867,0.677909016609192,0.874732971191406,0.691380023956299,0.875929951667786,0.625513970851898,0.866910994052887,0.615464985370636,0.8614821434021,0.628551006317139,0.869991064071655,0.638870000839233,0.863179802894592,0.730915904045105,0.850422024726868,0.743056118488312,0.859609007835388,0.756128013134003,0.873267948627472,0.744490027427673,0.864715874195099,0.704779028892517,0.855153977870941,0.691522061824799,0.845055997371674,0.704913020133972,0.853729009628296, +0.717616021633148,0.863183975219727,0.652272999286652,0.855168104171753,0.641739130020142,0.847849011421204,0.65522700548172,0.855436265468597,0.665848135948181,0.867111921310425,0.580940008163452,0.85984194278717,0.574010968208313,0.856455028057098,0.586687982082367,0.863627016544342,0.594084024429321,0.859423160552979,0.606960117816925,0.853068232536316,0.599366128444672,0.848211109638214,0.611489117145538,0.854471981525421,0.619663000106812,0.867111921310425,0.580940008163452,0.875483870506287,0.58890289068222,0.878652989864349,0.575232982635498,0.869906008243561,0.567433953285217,0.848580002784729,0.632574021816254,0.843353986740112,0.623612999916077,0.835909903049469,0.637655973434448,0.841556131839752,0.646073997020721,0.882631003856659,0.547196984291077,0.883381903171539,0.532896995544434,0.873844981193542,0.526225984096527,0.873333036899567,0.540035128593445,0.90925008058548,0.53599214553833,0.908967852592468,0.52039498090744,0.894600868225098,0.511314868927002,0.895236015319824,0.526380002498627,0.883274853229523,0.51843798160553,0.882312119007111,0.503850102424622,0.872184932231903,0.498078972101212,0.873423039913177,0.512224018573761,0.907615959644318,0.504714012145996,0.905264019966125,0.488976925611496,0.890405893325806,0.480901956558228,0.892983973026276,0.496143966913223,0.88049191236496,0.489161998033524,0.877767145633698,0.474411070346832,0.867474138736725,0.469560027122498,0.870248019695282,0.483844101428986,0.901983022689819,0.473213016986847,0.897756218910217,0.457413077354431,0.88242506980896,0.450317025184631,0.886884927749634,0.465621948242188,0.874086856842041,0.459632933139801,0.869458913803101,0.444840967655182,0.858995974063873,0.44097501039505,0.863722026348114,0.455271005630493,0.892567098140717,0.441573083400726,0.886377036571503,0.425695985555649,0.870673000812531,0.419681012630463,0.877027094364166,0.434996008872986,0.863891005516052,0.430049061775208,0.857419013977051,0.41531902551651,0.846764981746674,0.412517011165619,0.853299021720886,0.426674008369446,0.879145920276642,0.409786999225616, +0.870806932449341,0.393777936697006,0.854947924613953,0.389055967330933,0.863342046737671,0.404393017292023,0.850078999996185,0.400713980197906,0.841705024242401,0.386092990636826,0.831262826919556,0.384786933660507,0.839529991149902,0.398651003837585,0.86129093170166,0.377604961395264,0.850604057312012,0.361371070146561,0.834767997264862,0.35814905166626,0.845404028892517,0.373594999313354,0.832127869129181,0.3713139295578,0.821521997451782,0.356599986553192,0.811012029647827,0.356557011604309,0.821632027626038,0.370633989572525,0.838752090930939,0.345178991556168,0.82582700252533,0.32920503616333,0.810437977313995,0.327840000391006,0.823102116584778,0.342858016490936,0.810060977935791,0.342170059680939,0.797675967216492,0.328067988157272,0.787696003913879,0.329685986042023,0.799776017665863,0.342923998832703,0.811922132968903,0.313626050949097,0.797487020492554,0.298797011375427,0.782707989215851,0.299309968948364,0.796810030937195,0.313208997249603,0.784297943115234,0.314339995384216,0.770452797412872,0.301307946443558,0.760838985443115,0.304554998874664,0.774542152881622,0.316794067621231,0.782972812652588,0.28507199883461,0.764561533927917,0.269233167171478,0.750861525535583,0.271772146224976,0.768620848655701,0.286482930183411,0.760838985443115,0.304554998874664,0.770452797412872,0.301307946443558,0.756665885448456,0.289297014474869,0.747113943099976,0.293274998664856,0.764561533927917,0.269233167171478,0.741931021213531,0.25118100643158,0.729098081588745,0.255113989114761,0.750861525535583,0.271772146224976,0.710744976997375,0.267123013734818,0.718622982501984,0.260405004024506,0.706736028194427,0.252620011568069,0.699417948722839,0.26028299331665,0.662476003170013,0.240725994110107,0.669553935527802,0.23089599609375,0.653496980667114,0.222157999873161,0.647337138652802,0.23347806930542,0.631656050682068,0.227355048060417,0.633455991744995,0.211217001080513,0.613956093788147,0.210284024477005,0.616760015487671,0.224061012268066,0.584446012973785,0.209253996610641,0.598687887191772,0.209730952978134,0.58959698677063, +0.187631994485855,0.577414989471436,0.188930988311768,0.602262020111084,0.22223499417305,0.598687887191772,0.209730952978134,0.584446012973785,0.209253996610641,0.587778031826019,0.22051802277565,0.558942019939423,0.20898999273777,0.571205019950867,0.208968997001648,0.565234124660492,0.190229013562202,0.553725004196167,0.191165000200272,0.574028015136719,0.219215005636215,0.571205019950867,0.208968997001648,0.558942019939423,0.20898999273777,0.561735868453979,0.218630969524384,0.53437602519989,0.209299981594086,0.546912908554077,0.209154963493347,0.542217135429382,0.192100048065186,0.5293790102005,0.192465007305145,0.549933016300201,0.218555018305779,0.546912908554077,0.209154963493347,0.53437602519989,0.209299981594086,0.537654995918274,0.218774020671844,0.474799007177353,0.888082921504974,0.46138796210289,0.888859927654266,0.464502930641174,0.903089880943298,0.476910918951035,0.903189897537231,0.500948905944824,0.904640793800354,0.5017991065979,0.886857032775879,0.488193988800049,0.887439906597137,0.488929986953735,0.903916001319885,0.46138796210289,0.888859927654266,0.474799007177353,0.888082921504974,0.472831010818481,0.880021989345551,0.459138065576553,0.881097137928009,0.524829983711243,0.907918930053711,0.530867993831635,0.885747134685516,0.515838027000427,0.886258900165558,0.51288902759552,0.906279981136322,0.488193988800049,0.887439906597137,0.5017991065979,0.886857032775879,0.500771045684814,0.877475023269653,0.486699104309082,0.878862202167511,0.568441987037659,0.885397136211395,0.547447025775909,0.885420024394989,0.53634911775589,0.911174058914185,0.547867894172668,0.914427876472473,0.515838027000427,0.886258900165558,0.530867993831635,0.885747134685516,0.530173003673553,0.873739004135132,0.51507306098938,0.875721096992493,0.582705020904541,0.896932005882263,0.568441987037659,0.885397136211395,0.547867894172668,0.914427876472473,0.553385078907013,0.921999037265778,0.547447025775909,0.885420024394989,0.568441987037659,0.885397136211395,0.564121007919312,0.867978990077972,0.546635985374451,0.871672093868256, +0.601770997047424,0.927052855491638,0.598708093166351,0.917160093784332,0.562579989433289,0.93781304359436,0.566256999969482,0.946056008338928,0.600679993629456,0.947512984275818,0.602105855941772,0.937202751636505,0.567255973815918,0.955087065696716,0.568253993988037,0.964118003845215,0.589947998523712,0.874083995819092,0.606943011283875,0.86496102809906,0.598989009857178,0.853337943553925,0.582288980484009,0.861117005348206,0.608119010925293,0.896765947341919,0.621800065040588,0.887704193592072,0.614791989326477,0.876462876796722,0.599316895008087,0.885833740234375,0.489603012800217,0.809594988822937,0.507247984409332,0.779456973075867,0.522193133831024,0.790151178836823,0.501441061496735,0.822685122489929,0.618486046791077,0.939082980155945,0.633629679679871,0.931912899017334,0.633189976215363,0.920300960540771,0.618551969528198,0.928334832191467,0.617466986179352,0.917698085308075,0.63104784488678,0.909299850463867,0.627234995365143,0.898541986942291,0.614078998565674,0.90728098154068,0.633189976215363,0.920300960540771,0.633629679679871,0.931912899017334,0.646917939186096,0.925303936004639,0.644994974136353,0.913873970508575,0.656750977039337,0.907382011413574,0.659263432025909,0.918955445289612,0.674232125282288,0.910265147686005,0.671244025230408,0.899151027202606,0.627234995365143,0.898541986942291,0.63104784488678,0.909299850463867,0.642313063144684,0.902622103691101,0.638113975524902,0.891726016998291,0.649344921112061,0.885072827339172,0.653746008872986,0.896061062812805,0.667828977108002,0.888011991977692,0.663557887077332,0.876822829246521,0.632714867591858,0.880784869194031,0.643958926200867,0.874019920825958,0.637996912002563,0.862504899501801,0.626432001590729,0.869399011135101,0.619480013847351,0.857968986034393,0.631676018238068,0.851005077362061,0.625213027000427,0.839999854564667,0.612071990966797,0.846892952919006,0.647648990154266,0.841970026493073,0.663823008537292,0.832681000232697,0.659069061279297,0.821470141410828,0.642086029052734,0.830878973007202,0.637996912002563,0.862504899501801,0.643958926200867, +0.874019920825958,0.658630073070526,0.86542010307312,0.653244972229004,0.85364305973053,0.676624953746796,0.824957013130188,0.689100027084351,0.816851079463959,0.685486018657684,0.805670976638794,0.672538936138153,0.813711881637573,0.668738961219788,0.844529867172241,0.673538029193878,0.856565892696381,0.685492992401123,0.849039018154144,0.681042790412903,0.836880683898926,0.677937984466553,0.868338882923126,0.681989014148712,0.879739999771118,0.693652987480164,0.872507989406586,0.689674973487854,0.860988020896912,0.685737192630768,0.89065808057785,0.690922021865845,0.900575995445251,0.701264023780823,0.893925130367279,0.697493016719818,0.883378982543945,0.712360143661499,0.830426096916199,0.72836697101593,0.81868189573288,0.724242925643921,0.806470990180969,0.708203971385956,0.818220019340515,0.701587021350861,0.853004932403564,0.705596029758453,0.864640891551971,0.720595002174377,0.854461133480072,0.716494143009186,0.842624008655548,0.704294979572296,0.806414008140564,0.720407009124756,0.794780015945435,0.717094004154205,0.78397798538208,0.700899004936218,0.795416951179504,0.709475994110107,0.875594019889832,0.71160501241684,0.887274026870728,0.72868800163269,0.876351952552795,0.724651992321014,0.865584909915924,0.735634982585907,0.783080875873566,0.749980926513672,0.771359980106354,0.746686100959778,0.760812222957611,0.732387006282806,0.772385954856873,0.724242925643921,0.806470990180969,0.72836697101593,0.81868189573288,0.743614971637726,0.806952059268951,0.739454984664917,0.794712901115417,0.746686100959778,0.760812222957611,0.749980926513672,0.771359980106354,0.763447880744934,0.759661018848419,0.759901940822601,0.749427139759064,0.732542037963867,0.831045150756836,0.736741185188293,0.843146204948425,0.752129018306732,0.83187198638916,0.747877955436707,0.819467842578888,0.740938007831573,0.854571998119354,0.74576997756958,0.865430951118469,0.760305047035217,0.855430006980896,0.756250023841858,0.843775987625122,0.790853023529053,0.833955049514771,0.806867122650146,0.822481095790863,0.80147397518158,0.809252023696899, +0.786420106887817,0.821382105350494,0.753898978233337,0.78287798166275,0.758203983306885,0.795095980167389,0.77223801612854,0.782975018024445,0.767631053924561,0.770898938179016,0.772001028060913,0.738152027130127,0.776018857955933,0.747865855693817,0.787672102451324,0.735859990119934,0.7829509973526,0.726909041404724,0.781864106655121,0.808681011199951,0.796260058879852,0.796330988407135,0.79093199968338,0.783286988735199,0.777059137821198,0.795724093914032,0.821938991546631,0.809525012969971,0.837010979652405,0.796570062637329,0.830316007137299,0.782789051532745,0.815943002700806,0.796271085739136,0.780633985996246,0.758734881877899,0.785664975643158,0.770596027374268,0.798436939716339,0.757965981960297,0.792888998985291,0.746347010135651,0.793540000915527,0.71497106552124,0.798842966556549,0.723353981971741,0.809964120388031,0.710059106349945,0.804556131362915,0.701614022254944,0.809996902942657,0.783153891563416,0.823468029499054,0.769593000411987,0.816972076892853,0.757015109062195,0.804150998592377,0.770310997962952,0.853402018547058,0.782511949539185,0.869791865348816,0.768453896045685,0.859609007835388,0.756128013134003,0.845082104206085,0.769151031970978,0.837064027786255,0.756087005138397,0.850422024726868,0.743056118488312,0.841974020004272,0.730394065380096,0.829651117324829,0.743618071079254,0.846792995929718,0.679499983787537,0.839611887931824,0.668893873691559,0.830542922019958,0.682618021965027,0.837298989295959,0.693132996559143,0.804627120494843,0.733587265014648,0.81072598695755,0.745023012161255,0.822702169418335,0.731703102588654,0.816076040267944,0.720301985740662,0.833589911460876,0.659880876541138,0.828464865684509,0.65169894695282,0.819751024246216,0.665603041648865,0.824874997138977,0.673708915710449,0.0343220010399818,0.00568300019949675,0.0356049984693527,0.0194080043584108,0.0601900070905685,0.0186529997736216,0.0591939985752106,0.00600899988785386,0.88007378578186,0.0177289918065071,0.900996088981628,0.0189290009438992,0.903762996196747,0.0084610003978014,0.880880951881409,0.00940799899399281, +0.853583931922913,0.017536997795105,0.88007378578186,0.0177289918065071,0.880880951881409,0.00940799899399281,0.855166971683502,0.00952500011771917,0.783321976661682,0.00878500007092953,0.779312968254089,0.0170909985899925,0.80320405960083,0.0172189995646477,0.806387066841125,0.00921399984508753,0.741289019584656,0.00843000039458275,0.737541913986206,0.0169939994812012,0.758427977561951,0.017043000087142,0.762305974960327,0.00860800035297871,0.69962602853775,0.00811299961060286,0.697638988494873,0.0165699981153011,0.717589974403381,0.0167820006608963,0.720457017421722,0.00827199965715408,0.658167004585266,0.00712200021371245,0.658268928527832,0.0160259995609522,0.677954077720642,0.0162979997694492,0.678897023200989,0.00761799979954958,0.614078044891357,0.00668800109997392,0.613288998603821,0.0156560000032187,0.635779142379761,0.0158410035073757,0.63612300157547,0.0069050001911819,0.565388858318329,0.00684999907389283,0.565349876880646,0.0152149982750416,0.589318990707397,0.0154360020533204,0.589733004570007,0.0067689991556108,0.542025029659271,0.015437999740243,0.565349876880646,0.0152149982750416,0.565388858318329,0.00684999907389283,0.541369020938873,0.00674099987372756,0.498332917690277,0.015684999525547,0.518700003623962,0.0156609993427992,0.517349004745483,0.00663299998268485,0.496897995471954,0.00662600016221404,0.455659985542297,0.0156030021607876,0.477964997291565,0.01570999994874,0.476448059082031,0.00661800056695938,0.454540967941284,0.00667400006204844,0.411689013242722,0.0154149997979403,0.43335497379303,0.0154969999566674,0.432633996009827,0.00672899931669235,0.410891056060791,0.0068340003490448,0.364149928092957,0.0152469966560602,0.39002200961113,0.0153339998796582,0.389147013425827,0.00693899998441339,0.363488972187042,0.00670799985527992,0.314356029033661,0.0152399996295571,0.338277012109756,0.0151599999517202,0.337830007076263,0.00647700019180775,0.313807010650635,0.00642400048673153,0.262021005153656,0.015277000144124,0.290435016155243,0.0153209995478392,0.289784014225006,0.00636999914422631,0.260645985603333, +0.00693099945783615,0.207515001296997,0.0155149977654219,0.233606994152069,0.0152329979464412,0.23150897026062,0.0074919993057847,0.205457001924515,0.00729699991643429,0.155801996588707,0.0162010006606579,0.181423991918564,0.0157970003783703,0.179405003786087,0.00710100028663874,0.153781965374947,0.00719599891453981,0.107476986944675,0.0172519963234663,0.13018000125885,0.0166059993207455,0.128158003091812,0.00729099893942475,0.106111988425255,0.0068129999563098,0.00927700009196997,0.00562300020828843,0.0121689978986979,0.0204099956899881,0.0201621539890766,0.01976702734828,0.0217989981174469,0.00565299950540066,0.34960201382637,0.347158968448639,0.355302035808563,0.354985028505325,0.34470397233963,0.370528936386108,0.340968012809753,0.36430498957634,0.281284987926483,0.545005917549133,0.280499994754791,0.527462899684906,0.23498871922493,0.528504550457001,0.238275244832039,0.548607230186462,0.261994004249573,0.592705011367798,0.266557991504669,0.601144015789032,0.284278005361557,0.602760016918182,0.283681988716125,0.593430995941162,0.279667019844055,0.497521996498108,0.279619008302689,0.485123008489609,0.233413010835648,0.494899272918701,0.233660250902176,0.506549000740051,0.0543970018625259,0.116916000843048,0.0560460016131401,0.136752009391785,0.104230508208275,0.139798238873482,0.102755643427372,0.118796870112419,0.238275244832039,0.548607230186462,0.23498871922493,0.528504550457001,0.217832267284393,0.550975978374481,0.181845307350159,0.527827262878418,0.181962996721268,0.535569071769714,0.192076176404953,0.531404972076416,0.189451992511749,0.520060002803802,0.189273029565811,0.476176023483276,0.182184994220734,0.478803992271423,0.182348012924194,0.49734503030777,0.18945400416851,0.493795931339264,0.233413010835648,0.494899272918701,0.189520001411438,0.509221971035004,0.189451992511749,0.520060002803802,0.233660250902176,0.506549000740051,0.232636496424675,0.461707472801208,0.189273029565811,0.476176023483276,0.18945400416851,0.493795931339264,0.233080744743347,0.479259759187698,0.188653007149696,0.440822929143906, +0.181697964668274,0.44400292634964,0.181941002607346,0.461403995752335,0.188994988799095,0.458761006593704,0.232050985097885,0.444320976734161,0.231372743844986,0.426821023225784,0.188653007149696,0.440822929143906,0.188994988799095,0.458761006593704,0.230652987957001,0.408928722143173,0.22988224029541,0.391220510005951,0.187864974141121,0.401705950498581,0.188279002904892,0.421634018421173,0.187864974141121,0.401705950498581,0.181109964847565,0.403657972812653,0.181403994560242,0.423830986022949,0.188279002904892,0.421634018421173,0.228338986635208,0.356299221515656,0.187051028013229,0.360503047704697,0.187407001852989,0.381546974182129,0.229055002331734,0.374271512031555,0.187051028013229,0.360503047704697,0.180389001965523,0.36175400018692,0.180750012397766,0.382705986499786,0.187407001852989,0.381546974182129,0.227719008922577,0.313837498426437,0.187011003494263,0.315427958965302,0.186945006251335,0.337920010089874,0.227904513478279,0.335521042346954,0.187011003494263,0.315427958965302,0.180596977472305,0.314670950174332,0.180492967367172,0.338212937116623,0.186945006251335,0.337920010089874,0.228006035089493,0.272848546504974,0.187528982758522,0.274288952350616,0.187169969081879,0.294655978679657,0.22774975001812,0.293149530887604,0.187528982758522,0.274288952350616,0.181106984615326,0.274846971035004,0.180851966142654,0.294758975505829,0.187169969081879,0.294655978679657,0.229219749569893,0.232324749231339,0.189074993133545,0.232098013162613,0.18819697201252,0.253012001514435,0.228495270013809,0.252325266599655,0.189074993133545,0.232098013162613,0.182949006557465,0.230820000171661,0.182027995586395,0.252833992242813,0.18819697201252,0.253012001514435,0.231395751237869,0.195409744977951,0.191249996423721,0.194195002317429,0.190062999725342,0.212817013263702,0.230179727077484,0.213591977953911,0.191249996423721,0.194195002317429,0.18502601981163,0.193714022636414,0.183988004922867,0.212266996502876,0.190062999725342,0.212817013263702,0.23463374376297,0.158529758453369,0.194422006607056,0.156475991010666,0.192723006010056, +0.175260975956917,0.232887238264084,0.177060484886169,0.194422006607056,0.156475991010666,0.188289999961853,0.155083000659943,0.18665799498558,0.174398005008698,0.192723006010056,0.175260975956917,0.0517840012907982,0.590515971183777,0.0740080177783966,0.610307097434998,0.0784720033407211,0.604887008666992,0.0522700063884258,0.579236030578613,0.198815852403641,0.120532907545567,0.196287006139755,0.138300999999046,0.236614972352982,0.139801740646362,0.238393142819405,0.12119072675705,0.1014054864645,0.499670714139938,0.100517928600311,0.528115093708038,0.147695630788803,0.527009010314941,0.150140017271042,0.503476977348328,0.150140017271042,0.503476977348328,0.147695630788803,0.527009010314941,0.158642023801804,0.522616147994995,0.159032002091408,0.502224981784821,0.832390010356903,0.263554006814957,0.8058140873909,0.25620499253273,0.820916891098022,0.271835833787918,0.842015981674194,0.274354010820389,0.348441004753113,0.376753985881805,0.34470397233963,0.370528936386108,0.355302035808563,0.354985028505325,0.361001014709473,0.362809985876083,0.372170001268387,0.376677989959717,0.360050976276398,0.389032006263733,0.354246020317078,0.382892996072769,0.366586029529572,0.369744002819061,0.376293003559113,0.40509894490242,0.368171989917755,0.397065013647079,0.379611968994141,0.384519010782242,0.387055039405823,0.392360061407089,0.390496999025345,0.418449014425278,0.383394956588745,0.411773979663849,0.393660962581635,0.400184005498886,0.400267988443375,0.408008009195328,0.413989007472992,0.423781991004944,0.408217012882233,0.434603989124298,0.399356931447983,0.426525950431824,0.407128065824509,0.415894985198975,0.42772701382637,0.43570801615715,0.423020005226135,0.446438014507294,0.415618002414703,0.440520942211151,0.42085799574852,0.429744929075241,0.44322606921196,0.448550015687943,0.438454985618591,0.459599018096924,0.430737018585205,0.453019022941589,0.435476005077362,0.442128956317902,0.46083664894104,0.466500401496887,0.453064620494843,0.475086212158203,0.445976883172989,0.467098295688629,0.452052175998688,0.457264959812164, +0.499823987483978,0.442599982023239,0.514537990093231,0.450159996747971,0.509528994560242,0.464825004339218,0.494423985481262,0.453774988651276,0.480955958366394,0.497406989336014,0.467361986637115,0.501918971538544,0.464516490697861,0.493827283382416,0.476718842983246,0.487908959388733,0.482536554336548,0.518382847309113,0.467424988746643,0.520031988620758,0.46739399433136,0.510975003242493,0.481906116008759,0.507878124713898,0.480037033557892,0.540130853652954,0.463946014642715,0.541680991649628,0.46568500995636,0.530856013298035,0.48154404759407,0.529229998588562,0.47317698597908,0.567149996757507,0.458422005176544,0.564603984355927,0.461184024810791,0.553142011165619,0.476705014705658,0.553631007671356,0.468599021434784,0.583443999290466,0.452566981315613,0.5798180103302,0.455494940280914,0.572210907936096,0.470887988805771,0.575296998023987,0.494866490364075,0.630170285701752,0.480234742164612,0.622585654258728,0.487176597118378,0.609778702259064,0.497061312198639,0.617858469486237,0.441000044345856,0.599582076072693,0.447560012340546,0.589537978172302,0.461205273866653,0.596072375774384,0.454167723655701,0.609226822853088,0.430101990699768,0.61456298828125,0.436107993125916,0.606384992599487,0.449318528175354,0.61651337146759,0.443203955888748,0.624427616596222,0.421755015850067,0.624117016792297,0.430101990699768,0.61456298828125,0.443203955888748,0.624427616596222,0.43597087264061,0.633282899856567,0.410937070846558,0.660198092460632,0.397162050008774,0.649903118610382,0.406286001205444,0.640424013137817,0.419885009527206,0.651203989982605,0.389982044696808,0.656280994415283,0.397162050008774,0.649903118610382,0.410937070846558,0.660198092460632,0.402844965457916,0.66860294342041,0.377969980239868,0.666894972324371,0.382803022861481,0.662660002708435,0.394753009080887,0.677007079124451,0.386568963527679,0.684778988361359,0.100517928600311,0.528115093708038,0.0983220487833023,0.552909016609192,0.120416723191738,0.5649294257164,0.0740080177783966,0.610307097434998,0.0517840012907982,0.590515971183777,0.0513719990849495, +0.598466992378235,0.0703279972076416,0.61583399772644,0.69038450717926,0.0410689972341061,0.669098973274231,0.0410690009593964,0.663232088088989,0.0491140000522137,0.686543822288513,0.0491140000522137,0.764561533927917,0.269233167171478,0.780579209327698,0.268187642097473,0.756885051727295,0.248537003993988,0.741931021213531,0.25118100643158,0.0556057170033455,0.504808902740479,0.100517928600311,0.528115093708038,0.1014054864645,0.499670714139938,0.056377999484539,0.484452992677689,0.0569729916751385,0.46794193983078,0.102115496993065,0.480458796024323,0.103111736476421,0.460577756166458,0.0578670091927052,0.448848068714142,0.146071791648865,0.119640901684761,0.102755643427372,0.118796870112419,0.104230508208275,0.139798238873482,0.148993015289307,0.141314998269081,0.0587619990110397,0.429754018783569,0.104213759303093,0.440165281295776,0.105244010686874,0.419359028339386,0.0595870018005371,0.410902976989746,0.23498871922493,0.528504550457001,0.280499994754791,0.527462899684906,0.279934912919998,0.514835119247437,0.234081983566284,0.519941210746765,0.103111736476421,0.460577756166458,0.102115496993065,0.480458796024323,0.150707006454468,0.483339011669159,0.151589006185532,0.463778048753738,0.0604120008647442,0.392053008079529,0.106174498796463,0.39852374792099,0.106977000832558,0.378025501966476,0.0611159950494766,0.372475981712341,0.151589006185532,0.463778048753738,0.150707006454468,0.483339011669159,0.159422993659973,0.481833934783936,0.160441994667053,0.463162988424301,0.105244010686874,0.419359028339386,0.104213759303093,0.440165281295776,0.152541995048523,0.443533033132553,0.153323993086815,0.421341985464096,0.06182000041008,0.352898955345154,0.107668250799179,0.357983529567719,0.108264736831188,0.338517755270004,0.0621749982237816,0.333629995584488,0.153323993086815,0.421341985464096,0.152541995048523,0.443533033132553,0.161460995674133,0.444492995738983,0.161978006362915,0.420935034751892,0.106977000832558,0.378025501966476,0.106174498796463,0.39852374792099,0.153940007090569,0.398703068494797,0.1543969810009, +0.377115935087204,0.0625309944152832,0.314359962940216,0.108737252652645,0.319373548030853,0.109054751694202,0.300297737121582,0.0625210180878639,0.295095026493073,0.1543969810009,0.377115935087204,0.153940007090569,0.398703068494797,0.162495002150536,0.397377014160156,0.162716969847679,0.376163899898529,0.108264736831188,0.338517755270004,0.107668250799179,0.357983529567719,0.154742002487183,0.356654942035675,0.155020996928215,0.33739098906517,0.109125748276711,0.262103736400604,0.0622570067644119,0.256428003311157,0.0625120028853416,0.275829017162323,0.109192997217178,0.281228721141815,0.155020996928215,0.33739098906517,0.154742002487183,0.356654942035675,0.162939995527267,0.354950964450836,0.163037002086639,0.33644300699234,0.109054751694202,0.300297737121582,0.108737252652645,0.319373548030853,0.155272006988525,0.318881988525391,0.155532985925674,0.300684988498688,0.0611179918050766,0.216729998588562,0.0620020031929016,0.237028002738953,0.10887023806572,0.242713749408722,0.108442008495331,0.222848981618881,0.155532985925674,0.300684988498688,0.155272006988525,0.318881988525391,0.16313399374485,0.317934989929199,0.16338899731636,0.300212979316711,0.109125748276711,0.262103736400604,0.109192997217178,0.281228721141815,0.155698984861374,0.282671928405762,0.155664995312691,0.264714002609253,0.0602330006659031,0.196431994438171,0.107812486588955,0.20253124833107,0.106951996684074,0.181783258914948,0.0589639917016029,0.176510989665985,0.155664995312691,0.264714002609253,0.155698984861374,0.282671928405762,0.16364398598671,0.282489955425262,0.163559034466743,0.264934003353119,0.108442008495331,0.222848981618881,0.10887023806572,0.242713749408722,0.155361995100975,0.246243000030518,0.15472300350666,0.226690992712975,0.0576950088143349,0.156589031219482,0.105783216655254,0.160805463790894,0.104230508208275,0.139798238873482,0.0560460016131401,0.136752009391785,0.15472300350666,0.226690992712975,0.155361995100975,0.246243000030518,0.16347399353981,0.247376978397369,0.162478029727936,0.227212026715279,0.106951996684074,0.181783258914948, +0.107812486588955,0.20253124833107,0.15378500521183,0.206167995929718,0.152586027979851,0.184787034988403,0.283681988716125,0.593430995941162,0.283087015151978,0.584102094173431,0.256388008594513,0.585099995136261,0.261994004249573,0.592705011367798,0.152586027979851,0.184787034988403,0.15378500521183,0.206167995929718,0.161482006311417,0.207047998905182,0.15998999774456,0.185145005583763,0.104230508208275,0.139798238873482,0.105783216655254,0.160805463790894,0.151023000478745,0.163013994693756,0.148993015289307,0.141314998269081,0.148993015289307,0.141314998269081,0.151023000478745,0.163013994693756,0.158499002456665,0.163241997361183,0.156064972281456,0.141555964946747,0.189520001411438,0.509221971035004,0.182511985301971,0.51588499546051,0.181845307350159,0.527827262878418,0.189451992511749,0.520060002803802,0.573796987533569,0.387768059968948,0.576542019844055,0.376823961734772,0.592489004135132,0.378598988056183,0.590300023555756,0.390854001045227,0.568491995334625,0.407896995544434,0.571051955223083,0.398711979389191,0.588109970092773,0.40310999751091,0.585604012012482,0.413534045219421,0.565895855426788,0.442958950996399,0.548639059066772,0.432049989700317,0.557286024093628,0.424566000699997,0.574496984481812,0.433459013700485,0.553454875946045,0.449757933616638,0.538668990135193,0.437782049179077,0.543654024600983,0.434915989637375,0.559674978256226,0.446357995271683,0.522218108177185,0.452676087617874,0.516804993152618,0.438023000955582,0.527737021446228,0.437902003526688,0.537593007087708,0.452968716621399,0.48811000585556,0.463795006275177,0.499125957489014,0.47408401966095,0.488793760538101,0.48198664188385,0.479971051216125,0.471505045890808,0.492792010307312,0.437554985284805,0.499393045902252,0.425589025020599,0.503509998321533,0.429521948099136,0.499823987483978,0.442599982023239,0.496255993843079,0.421613991260529,0.499393045902252,0.425589025020599,0.492792010307312,0.437554985284805,0.487694025039673,0.431688070297241,0.489059597253799,0.406928479671478,0.492312788963318,0.415511846542358,0.48127469420433, +0.422952324151993,0.47594690322876,0.411376535892487,0.489015012979507,0.385119020938873,0.486205995082855,0.399402022361755,0.471274077892303,0.401226073503494,0.474388986825943,0.384285002946854,0.496007889509201,0.362529933452606,0.491823971271515,0.370835989713669,0.477504074573517,0.36734402179718,0.482453912496567,0.358061939477921,0.50571596622467,0.345457971096039,0.500191986560822,0.354223966598511,0.487402945756912,0.348780006170273,0.493182003498077,0.339203000068665,0.520782053470612,0.319521129131317,0.526260018348694,0.327939987182617,0.51875102519989,0.332316011190414,0.508248090744019,0.324314057826996,0.582952439785004,0.337187349796295,0.596561372280121,0.345253050327301,0.582508027553558,0.350659012794495,0.569817006587982,0.345772981643677,0.558840990066528,0.327784597873688,0.567469954490662,0.330958187580109,0.557126998901367,0.340887010097504,0.550754070281982,0.338509023189545,0.520782053470612,0.319521129131317,0.537354230880737,0.320733249187469,0.535319983959198,0.332035005092621,0.526260018348694,0.327939987182617,0.592489004135132,0.378598988056183,0.576542019844055,0.376823961734772,0.579524993896484,0.363741040229797,0.595197975635529,0.36232402920723,0.477033942937851,0.765489935874939,0.492657959461212,0.771198987960815,0.479016900062561,0.801620006561279,0.468432009220123,0.79364401102066,0.522193133831024,0.790151178836823,0.507247984409332,0.779456973075867,0.514442980289459,0.766412019729614,0.531171083450317,0.776805996894836,0.45898300409317,0.76244193315506,0.477033942937851,0.765489935874939,0.468432009220123,0.79364401102066,0.454014927148819,0.789458930492401,0.539283990859985,0.765878021717072,0.521438002586365,0.755366027355194,0.529209971427917,0.746183931827545,0.54678601026535,0.757444024085999,0.492657959461212,0.771198987960815,0.477033942937851,0.765489935874939,0.479206055402756,0.751405119895935,0.497333943843842,0.757558941841125,0.520278990268707,0.289129972457886,0.514686942100525,0.253909975290298,0.525038123130798,0.249454036355019,0.534769117832184,0.286010056734085, +0.5293790102005,0.192465007305145,0.521223783493042,0.196973025798798,0.524371147155762,0.209933191537857,0.53437602519989,0.209299981594086,0.426856994628906,0.760756015777588,0.414659023284912,0.760558009147644,0.408598005771637,0.749782979488373,0.423702001571655,0.749265015125275,0.440182954072952,0.748966872692108,0.437661945819855,0.738121867179871,0.460727155208588,0.736916542053223,0.459420025348663,0.74911105632782,0.419937938451767,0.739239931106567,0.402536928653717,0.739007949829102,0.399500072002411,0.733842134475708,0.416014015674591,0.731798112392426,0.391721963882446,0.718421995639801,0.386983007192612,0.708170056343079,0.399803012609482,0.703173041343689,0.40599200129509,0.714070081710815,0.460727155208588,0.736916542053223,0.437661945819855,0.738121867179871,0.433439046144485,0.729734063148499,0.4573575258255,0.727022528648376,0.505321264266968,0.710566163063049,0.522321224212646,0.725589871406555,0.509053766727448,0.735249102115631,0.4824498295784,0.722436368465424,0.529209971427917,0.746183931827545,0.521438002586365,0.755366027355194,0.502235054969788,0.746801972389221,0.509053766727448,0.735249102115631,0.382684081792831,0.700360119342804,0.378385007381439,0.692551016807556,0.386568963527679,0.684778988361359,0.393272042274475,0.693636059761047,0.404106050729752,0.686321020126343,0.394753009080887,0.677007079124451,0.402844965457916,0.66860294342041,0.415432989597321,0.677824020385742,0.472135126590729,0.634712934494019,0.480234742164612,0.622585654258728,0.494866490364075,0.630170285701752,0.493073910474777,0.647093117237091,0.461205273866653,0.596072375774384,0.468599021434784,0.583443999290466,0.482671022415161,0.588007926940918,0.474401295185089,0.601987242698669,0.454167723655701,0.609226822853088,0.461205273866653,0.596072375774384,0.474401295185089,0.601987242698669,0.467026859521866,0.616052508354187,0.502986192703247,0.667705893516541,0.485781818628311,0.673746883869171,0.478400617837906,0.655835926532745,0.493073910474777,0.647093117237091,0.466388672590256,0.642750024795532,0.472135126590729, +0.634712934494019,0.493073910474777,0.647093117237091,0.478400617837906,0.655835926532745,0.487176597118378,0.609778702259064,0.502324521541595,0.596214294433594,0.509602427482605,0.61336076259613,0.497061312198639,0.617858469486237,0.494866490364075,0.630170285701752,0.513980031013489,0.629042744636536,0.517416000366211,0.645749270915985,0.493073910474777,0.647093117237091,0.492069154977798,0.691675066947937,0.485781818628311,0.673746883869171,0.502986192703247,0.667705893516541,0.513021349906921,0.685287952423096,0.522321224212646,0.725589871406555,0.505321264266968,0.710566163063049,0.524445772171021,0.70257830619812,0.53643262386322,0.718061506748199,0.549966990947723,0.732137978076935,0.564980983734131,0.726028025150299,0.579671025276184,0.739134013652802,0.565521001815796,0.744884014129639,0.544670045375824,0.659137070178986,0.567915856838226,0.654111981391907,0.575174868106842,0.669176876544952,0.551980018615723,0.675202131271362,0.517416000366211,0.645749270915985,0.513980031013489,0.629042744636536,0.534453988075256,0.62664008140564,0.539131045341492,0.642912983894348,0.561115264892578,0.690740346908569,0.584118962287903,0.6839200258255,0.594794988632202,0.698274075984955,0.572122991085052,0.705381989479065,0.584828019142151,0.71929007768631,0.607093989849091,0.712188005447388,0.620903015136719,0.725612998008728,0.599045991897583,0.732631981372833,0.620903015136719,0.725612998008728,0.607093989849091,0.712188005447388,0.629364013671875,0.704985022544861,0.642503023147583,0.71831202507019,0.606793999671936,0.677321970462799,0.627283930778503,0.671248912811279,0.637830018997192,0.684718012809753,0.617353975772858,0.691262900829315,0.575174868106842,0.669176876544952,0.567915856838226,0.654111981391907,0.590801000595093,0.649165987968445,0.598002016544342,0.663336992263794,0.662331998348236,0.711160004138947,0.649700999259949,0.698105096817017,0.666168868541718,0.691969871520996,0.678876996040344,0.704591989517212,0.693635046482086,0.697936058044434,0.680759012699127,0.685822010040283,0.695461988449097,0.678898990154266, +0.708105027675629,0.690524995326996,0.643730998039246,0.66600102186203,0.658294081687927,0.66091114282608,0.668795883655548,0.673382937908173,0.654253005981445,0.679005980491638,0.618623852729797,0.657943904399872,0.61149400472641,0.64454197883606,0.628160893917084,0.640478909015656,0.63520485162735,0.65325790643692,0.721965074539185,0.682330012321472,0.709969043731689,0.671151995658875,0.723971009254456,0.662527978420258,0.734892904758453,0.673325836658478,0.673128962516785,0.655313014984131,0.687677979469299,0.648985028266907,0.698305010795593,0.660030007362366,0.683630883693695,0.667107880115509,0.698305010795593,0.660030007362366,0.687677979469299,0.648985028266907,0.701382040977478,0.641707003116608,0.712362945079803,0.651998996734619,0.745199978351593,0.663442015647888,0.735400915145874,0.652854025363922,0.742191970348358,0.641956925392151,0.751199007034302,0.652606010437012,0.649802088737488,0.648697137832642,0.642759084701538,0.636468052864075,0.657242000102997,0.632000029087067,0.664471030235291,0.643676996231079,0.754235148429871,0.641326010227203,0.745733022689819,0.631330132484436,0.747414112091064,0.62246710062027,0.755653977394104,0.630110025405884,0.724349975585938,0.643217861652374,0.713608980178833,0.63404107093811,0.723728895187378,0.626547873020172,0.732810020446777,0.633891880512238,0.756626904010773,0.620287895202637,0.747010886669159,0.612115025520325,0.754078984260559,0.605196952819824,0.758320927619934,0.613188982009888,0.747414112091064,0.62246710062027,0.745733022689819,0.631330132484436,0.738390862941742,0.625634908676147,0.741741001605988,0.620060980319977,0.701382040977478,0.641707003116608,0.687677979469299,0.648985028266907,0.678791105747223,0.638038098812103,0.692336857318878,0.63162088394165,0.704738020896912,0.624827027320862,0.697259068489075,0.615392029285431,0.708346009254456,0.608904957771301,0.715624094009399,0.618058979511261,0.741214990615845,0.600161015987396,0.735162138938904,0.589391112327576,0.743396937847137,0.582295000553131,0.749354898929596,0.594286918640137,0.72513210773468, +0.611615121364594,0.718199074268341,0.602313995361328,0.726949870586395,0.595936894416809,0.733401119709015,0.605793118476868,0.743396937847137,0.582295000553131,0.735162138938904,0.589391112327576,0.727735996246338,0.579699993133545,0.735453963279724,0.571054995059967,0.726949870586395,0.595936894416809,0.718199074268341,0.602313995361328,0.71151214838028,0.593243002891541,0.719964981079102,0.586858987808228,0.708346009254456,0.608904957771301,0.697259068489075,0.615392029285431,0.690688848495483,0.605551898479462,0.701745986938477,0.59956693649292,0.684804975986481,0.621454000473022,0.671346008777618,0.627016067504883,0.665046870708466,0.61574399471283,0.678361892700195,0.610922873020172,0.709233045578003,0.568549990653992,0.719052970409393,0.572337985038757,0.713168025016785,0.579563975334167,0.70728200674057,0.57505601644516,0.695912003517151,0.5903480052948,0.684998989105225,0.595677971839905,0.680160105228424,0.586140096187592,0.690932810306549,0.581553876399994,0.700784206390381,0.556457996368408,0.70400595664978,0.544688999652863,0.717397928237915,0.546486973762512,0.713599026203156,0.558399021625519,0.672869026660919,0.600344061851501,0.659739971160889,0.604453027248383,0.655269026756287,0.593369007110596,0.668188869953156,0.590036928653717,0.685412108898163,0.563893020153046,0.696402132511139,0.568480134010315,0.686537027359009,0.57427990436554,0.682453036308289,0.569616973400116,0.685412108898163,0.563893020153046,0.674444139003754,0.562327980995178,0.675490021705627,0.552179992198944,0.688177049160004,0.554225027561188,0.664713025093079,0.580205976963043,0.651917099952698,0.582540988922119,0.649968028068542,0.572019040584564,0.662836015224457,0.571056008338928,0.665046870708466,0.61574399471283,0.671346008777618,0.627016067504883,0.657242000102997,0.632000029087067,0.651027143001556,0.62008410692215,0.645828902721405,0.608108997344971,0.631500005722046,0.611322999000549,0.627604007720947,0.598752975463867,0.641650021076202,0.596258044242859,0.636604905128479,0.623951852321625,0.642759084701538,0.636468052864075, +0.628160893917084,0.640478909015656,0.622087001800537,0.627362012863159,0.638562023639679,0.584504008293152,0.624787926673889,0.586188971996307,0.622922003269196,0.573575973510742,0.636632978916168,0.572820007801056,0.597186923027039,0.603119909763336,0.594642996788025,0.589363992214203,0.610736072063446,0.587691068649292,0.613402009010315,0.600903034210205,0.605535984039307,0.630779027938843,0.61149400472641,0.64454197883606,0.590801000595093,0.649165987968445,0.585014879703522,0.63466888666153,0.554244995117188,0.608434021472931,0.551878988742828,0.593454957008362,0.5747429728508,0.591560006141663,0.577098071575165,0.605815052986145,0.534453988075256,0.62664008140564,0.513980031013489,0.629042744636536,0.509602427482605,0.61336076259613,0.529733061790466,0.610425174236298,0.551262021064758,0.578350961208344,0.551836013793945,0.563028991222382,0.572802126407623,0.562528014183044,0.573352932929993,0.57718700170517,0.505716979503632,0.57695597410202,0.510163068771362,0.56146901845932,0.530632019042969,0.562062978744507,0.5278679728508,0.577991962432861,0.482671022415161,0.588007926940918,0.468599021434784,0.583443999290466,0.470887988805771,0.575296998023987,0.48735499382019,0.576084971427917,0.476705014705658,0.553631007671356,0.480037033557892,0.540130853652954,0.497837007045746,0.536794006824493,0.495015978813171,0.549732029438019,0.513710021972656,0.547042012214661,0.51623797416687,0.533711910247803,0.535125851631165,0.532420992851257,0.533171117305756,0.546768128871918,0.48154404759407,0.529229998588562,0.482536554336548,0.518382847309113,0.499749183654785,0.513982117176056,0.499490052461624,0.525037050247192,0.592966020107269,0.575528025627136,0.591967940330505,0.561532974243164,0.607770025730133,0.56101405620575,0.608928143978119,0.574402093887329,0.553040981292725,0.547397017478943,0.554271936416626,0.532114028930664,0.573445856571198,0.531981885433197,0.572963118553162,0.547418117523193,0.481906116008759,0.507878124713898,0.480955958366394,0.497406989336014,0.495579898357391,0.493303924798965,0.498385012149811, +0.503148019313812,0.535125851631165,0.532420992851257,0.51623797416687,0.533711910247803,0.517625987529755,0.521514892578125,0.536139905452728,0.519337952136993,0.534042000770569,0.484479904174805,0.556427001953125,0.482971012592316,0.553013980388641,0.495386004447937,0.534825921058655,0.496587038040161,0.499125957489014,0.47408401966095,0.48811000585556,0.463795006275177,0.494423985481262,0.453774988651276,0.509528994560242,0.464825004339218,0.553013980388641,0.495386004447937,0.556427001953125,0.482971012592316,0.575701892375946,0.489001870155334,0.567655026912689,0.495447993278503,0.572502017021179,0.503251016139984,0.591762065887451,0.497911989688873,0.591908991336823,0.515802025794983,0.573862016201019,0.516344010829926,0.607052981853485,0.533136069774628,0.621411859989166,0.534424960613251,0.621167004108429,0.548025012016296,0.607057988643646,0.547508001327515,0.607052981853485,0.533136069774628,0.591441035270691,0.532248139381409,0.591908991336823,0.515802025794983,0.608016014099121,0.51715099811554,0.635650098323822,0.535893082618713,0.649653851985931,0.537439823150635,0.649001896381378,0.549793899059296,0.635197997093201,0.548826932907104,0.622874021530151,0.51945698261261,0.625830054283142,0.505088984966278,0.639774084091187,0.50823700428009,0.637175917625427,0.521782875061035,0.663312971591949,0.538964867591858,0.676838994026184,0.540642023086548,0.675490021705627,0.552179992198944,0.662431955337524,0.550807952880859,0.651045978069305,0.524082958698273,0.653109014034271,0.511236071586609,0.666160881519318,0.514141857624054,0.66460907459259,0.526312112808228,0.678139090538025,0.528627991676331,0.679237961769104,0.517117023468018,0.692646861076355,0.520321011543274,0.691910922527313,0.531189978122711,0.705291986465454,0.533410012722015,0.705263018608093,0.52276599407196,0.715963006019592,0.523461997509003,0.717645883560181,0.534698009490967,0.666160881519318,0.514141857624054,0.653109014034271,0.511236071586609,0.655768990516663,0.500409066677094,0.667809009552002,0.50375097990036,0.692646861076355,0.520321011543274, +0.679237961769104,0.517117023468018,0.679983019828796,0.507089972496033,0.692721128463745,0.510500073432922,0.704541981220245,0.512899994850159,0.703592121601105,0.504099011421204,0.711849987506866,0.504068970680237,0.713966906070709,0.513209998607635,0.733025014400482,0.517306089401245,0.739377975463867,0.510545015335083,0.74516898393631,0.518167018890381,0.737782955169678,0.52716201543808,0.74516898393631,0.518167018890381,0.739377975463867,0.510545015335083,0.743798136711121,0.502215981483459,0.750738024711609,0.507901012897491,0.721874177455902,0.511622130870819,0.71883088350296,0.502372860908508,0.725762009620667,0.499758005142212,0.729140877723694,0.508329927921295,0.767014026641846,0.491809010505676,0.765205025672913,0.503739953041077,0.755352258682251,0.498297989368439,0.759872853755951,0.49129194021225,0.746650099754333,0.476855009794235,0.745407998561859,0.464047968387604,0.755185961723328,0.457354992628098,0.756631851196289,0.470932930707932,0.743798136711121,0.502215981483459,0.739377975463867,0.510545015335083,0.735143065452576,0.504060983657837,0.739255130290985,0.499543011188507,0.702875971794128,0.496650993824005,0.701893985271454,0.491047024726868,0.706403970718384,0.488902032375336,0.709806084632874,0.496170997619629,0.692829012870789,0.501713991165161,0.681162118911743,0.498096108436584,0.683558106422424,0.48968306183815,0.693664908409119,0.493947923183441,0.715878963470459,0.493871986865997,0.712005972862244,0.485536992549896,0.718667984008789,0.482069045305252,0.722521126270294,0.491115033626556,0.729797005653381,0.487480044364929,0.726505935192108,0.477588951587677,0.735633909702301,0.471187949180603,0.737773001194,0.482549011707306,0.706203043460846,0.47678405046463,0.699347913265228,0.468443989753723,0.707303941249847,0.462745994329453,0.71345591545105,0.472288012504578,0.706403970718384,0.488902032375336,0.701893985271454,0.491047024726868,0.695901989936829,0.48724502325058,0.700217008590698,0.481646001338959,0.721992909908295,0.466927945613861,0.716436982154846,0.456409990787506,0.72666996717453, +0.448112934827805,0.731829881668091,0.459473967552185,0.742116093635559,0.451577991247177,0.737230062484741,0.439662009477615,0.747337996959686,0.432869046926498,0.751996994018555,0.44489198923111,0.710016906261444,0.446949005126953,0.702636122703552,0.438174039125443,0.713181972503662,0.428220063447952,0.720463037490845,0.437806040048599,0.707303941249847,0.462745994329453,0.699347913265228,0.468443989753723,0.692322015762329,0.461350947618484,0.700634002685547,0.454419046640396,0.735020995140076,0.386078000068665,0.745202898979187,0.399073958396912,0.734260976314545,0.408490002155304,0.725503146648407,0.396890014410019,0.747337996959686,0.432869046926498,0.737230062484741,0.439662009477615,0.731206893920898,0.428516924381256,0.741482973098755,0.420609027147293,0.694199025630951,0.429712951183319,0.684765934944153,0.421549946069717,0.695096969604492,0.410122990608215,0.70480090379715,0.419017910957336,0.674396932125092,0.413668990135193,0.662279009819031,0.405844002962112,0.670589089393616,0.392899066209793,0.683848977088928,0.401456952095032,0.69331693649292,0.388550996780396,0.678882002830505,0.379305928945541,0.687552869319916,0.365891009569168,0.702524065971375,0.375624060630798,0.6475989818573,0.39785099029541,0.630751132965088,0.390271097421646,0.636784911155701,0.376213014125824,0.654851734638214,0.38432589173317,0.661983013153076,0.370270013809204,0.642692983150482,0.361732989549637,0.64894300699234,0.347772985696793,0.669551014900208,0.35654604434967,0.621088027954102,0.353986024856567,0.596561372280121,0.345253050327301,0.60459303855896,0.332802057266235,0.626157999038696,0.339753985404968,0.60459303855896,0.332802057266235,0.596561372280121,0.345253050327301,0.582952439785004,0.337187349796295,0.587647080421448,0.327228009700775,0.621088027954102,0.353986024856567,0.642692983150482,0.361732989549637,0.636784911155701,0.376213014125824,0.616535902023315,0.369035005569458,0.612128973007202,0.383684009313583,0.630751132965088,0.390271097421646,0.624125957489014,0.402964979410172,0.607487976551056,0.396716982126236, +0.574460983276367,0.322975039482117,0.567469954490662,0.330958187580109,0.558840990066528,0.327784597873688,0.564176976680756,0.31998398900032,0.554401993751526,0.318329006433487,0.550303876399994,0.324851393699646,0.537354230880737,0.320733249187469,0.542740881443024,0.318083971738815,0.624125957489014,0.402964979410172,0.630751132965088,0.390271097421646,0.6475989818573,0.39785099029541,0.639666140079498,0.409982085227966,0.674396932125092,0.413668990135193,0.684765934944153,0.421549946069717,0.675406992435455,0.431737929582596,0.665235996246338,0.424509942531586,0.602810978889465,0.408582985401154,0.617404937744141,0.414728939533234,0.611082971096039,0.425998002290726,0.598296999931335,0.419729977846146,0.631626009941101,0.421305984258652,0.644840180873871,0.428059101104736,0.636560916900635,0.438823997974396,0.624050974845886,0.4324109852314,0.599322974681854,0.466454982757568,0.587401986122131,0.459475070238113,0.59706699848175,0.448226988315582,0.608682990074158,0.454806953668594,0.592935025691986,0.430442005395889,0.604516983032227,0.437065005302429,0.59706699848175,0.448226988315582,0.585714936256409,0.44100296497345,0.694199025630951,0.429712951183319,0.702636122703552,0.438174039125443,0.693201005458832,0.446747004985809,0.684759974479675,0.439168006181717,0.656413078308105,0.434733062982559,0.666732013225555,0.441397994756699,0.658452093601227,0.451245069503784,0.647970020771027,0.445090025663376,0.576653003692627,0.450862973928452,0.587401986122131,0.459475070238113,0.574191868305206,0.470803916454315,0.565765023231506,0.459468007087708,0.574191868305206,0.470803916454315,0.587401986122131,0.459475070238113,0.599322974681854,0.466454982757568,0.587293982505798,0.478594988584518,0.552274107933044,0.465778082609177,0.556427001953125,0.482971012592316,0.534042000770569,0.484479904174805,0.53540301322937,0.468753010034561,0.63984489440918,0.455693960189819,0.650613009929657,0.461398005485535,0.643263876438141,0.471978902816772,0.631974875926971,0.466654896736145,0.602401971817017,0.484225004911423,0.611825883388519, +0.472379922866821,0.624321937561035,0.477831929922104,0.616847991943359,0.489077985286713,0.481555134057999,0.443008780479431,0.475263178348541,0.451069891452789,0.464794665575027,0.439463496208191,0.472521007061005,0.432249993085861,0.467435657978058,0.458736717700958,0.46083664894104,0.466500401496887,0.452052175998688,0.457264959812164,0.456938236951828,0.447536796331406,0.466688990592957,0.424021005630493,0.453833103179932,0.426934123039246,0.448411047458649,0.418206989765167,0.461374014616013,0.414261996746063,0.446799069643021,0.436055064201355,0.44322606921196,0.448550015687943,0.435476005077362,0.442128956317902,0.440645009279251,0.428564995527267,0.457424998283386,0.403021991252899,0.443713903427124,0.408971011638641,0.439651101827621,0.399072051048279,0.455691039562225,0.390354990959167,0.439651101827621,0.399072051048279,0.443713903427124,0.408971011638641,0.434664934873581,0.420900940895081,0.428926020860672,0.413085043430328,0.455313891172409,0.378066897392273,0.435993015766144,0.38922706246376,0.432511001825333,0.380149006843567,0.455435991287231,0.367967039346695,0.407128065824509,0.415894985198975,0.400267988443375,0.408008009195328,0.412426024675369,0.388772040605545,0.41777303814888,0.396883010864258,0.393660962581635,0.400184005498886,0.387055039405823,0.392360061407089,0.402087062597275,0.373643100261688,0.407454997301102,0.381053000688553,0.450681984424591,0.342577993869781,0.472759872674942,0.319277882575989,0.483308970928192,0.328117996454239,0.469927996397018,0.341584026813507,0.483308970928192,0.328117996454239,0.472759872674942,0.319277882575989,0.495478957891464,0.316316992044449,0.495211005210876,0.322472006082535,0.495478957891464,0.316316992044449,0.472759872674942,0.319277882575989,0.482383012771606,0.305045008659363,0.500035107135773,0.305005073547363,0.431908994913101,0.337430000305176,0.445684969425201,0.32073301076889,0.455945998430252,0.321404993534088,0.439454942941666,0.340797007083893,0.379611968994141,0.384519010782242,0.372170001268387,0.376677989959717,0.388503015041351,0.359525084495544, +0.39554899930954,0.366452991962433,0.50722998380661,0.256805986166,0.514686942100525,0.253909975290298,0.520278990268707,0.289129972457886,0.505122005939484,0.290298014879227,0.490340024232864,0.262412995100021,0.499771952629089,0.25970196723938,0.490785956382751,0.290627002716064,0.478762030601501,0.291227012872696,0.47175008058548,0.265861064195633,0.48090797662735,0.265122950077057,0.467837065458298,0.291578054428101,0.456799000501633,0.291162997484207,0.482383012771606,0.305045008659363,0.472759872674942,0.319277882575989,0.455945998430252,0.321404993534088,0.469004988670349,0.305480003356934,0.453843027353287,0.265697002410889,0.462592929601669,0.266597986221313,0.446114003658295,0.290087997913361,0.43625009059906,0.288465023040771,0.457848012447357,0.305637985467911,0.445684969425201,0.32073301076889,0.435604989528656,0.319101989269257,0.446857035160065,0.30484801530838,0.436819016933441,0.262347042560577,0.445093005895615,0.264797002077103,0.426661014556885,0.286345988512039,0.416799962520599,0.283783942461014,0.41055703163147,0.349222958087921,0.403059929609299,0.34334996342659,0.414993941783905,0.329581946134567,0.423707008361816,0.333667010068893,0.366586029529572,0.369744002819061,0.361001014709473,0.362809985876083,0.374710947275162,0.346480995416641,0.381610989570618,0.352901011705399,0.436192005872726,0.303301066160202,0.425604999065399,0.316729933023453,0.415582001209259,0.313832998275757,0.426012992858887,0.301187992095947,0.73725700378418,0.186102002859116,0.696945011615753,0.162708014249802,0.683263897895813,0.167415976524353,0.718404948711395,0.188898995518684,0.355302035808563,0.354985028505325,0.34960201382637,0.347158968448639,0.360491991043091,0.333911001682281,0.367643058300018,0.340169072151184,0.395200103521347,0.337567090988159,0.3870629966259,0.33203798532486,0.396640986204147,0.320919007062912,0.405918002128601,0.325251996517181,0.416019946336746,0.298638999462128,0.405580997467041,0.310620009899139,0.395646035671234,0.30729803442955,0.405912011861801,0.295781999826431,0.378736048936844, +0.326925009489059,0.370257824659348,0.322029441595078,0.377997994422913,0.31284698843956,0.387329012155533,0.31682300567627,0.676186978816986,0.44812399148941,0.684731960296631,0.454809010028839,0.677081882953644,0.46322900056839,0.668179988861084,0.457320988178253,0.648190021514893,0.486893087625504,0.636533975601196,0.482704013586044,0.643263876438141,0.471978902816772,0.654047012329102,0.476771056652069,0.692322015762329,0.461350947618484,0.699347913265228,0.468443989753723,0.692643046379089,0.474831014871597,0.685083985328674,0.468879014253616,0.630553007125854,0.493288934230804,0.636533975601196,0.482704013586044,0.648190021514893,0.486893087625504,0.643438994884491,0.496993958950043,0.678949058055878,0.476941049098969,0.687332034111023,0.481909066438675,0.683558106422424,0.48968306183815,0.673943996429443,0.485475927591324,0.189672023057938,0.903910100460052,0.225939005613327,0.91139805316925,0.226205006241798,0.909170985221863,0.191124007105827,0.901875019073486,0.225799918174744,0.915289759635925,0.225672990083694,0.913625001907349,0.188220992684364,0.905944049358368,0.186330005526543,0.90768301486969,0.18444000184536,0.909421980381012,0.226444005966187,0.919111013412476,0.225927993655205,0.916956007480621,0.225799918174744,0.915289759635925,0.186330005526543,0.90768301486969,0.180418998003006,0.912024021148682,0.177646994590759,0.912968993186951,0.196866989135742,0.975121855735779,0.207958996295929,0.973142862319946,0.256705820560455,0.951196670532227,0.255028009414673,0.933886051177979,0.253239989280701,0.934482991695404,0.185775995254517,0.977100968360901,0.174874976277351,0.913913905620575,0.172063991427422,0.914073944091797,0.17587499320507,0.977180957794189,0.165974020957947,0.977261126041412,0.169252991676331,0.914233982563019,0.166767999529839,0.913775980472565,0.155960649251938,0.975762009620667,0.22699099779129,0.907029986381531,0.227776020765305,0.904890060424805,0.192974999547005,0.897108972072601,0.192049041390419,0.899492263793945,0.237080037593842,0.867586135864258,0.233624041080475,0.86744213104248, +0.237370014190674,0.895006000995636,0.239020004868507,0.894128859043121,0.169252991676331,0.914233982563019,0.165974020957947,0.977261126041412,0.17587499320507,0.977180957794189,0.172063991427422,0.914073944091797,0.120482049882412,0.966058373451233,0.157324999570847,0.909986019134521,0.154750004410744,0.908442974090576,0.110110998153687,0.961559891700745,0.120482049882412,0.966058373451233,0.131394892930984,0.970010161399841,0.159899994730949,0.911529004573822,0.157324999570847,0.909986019134521,0.159899994730949,0.911529004573822,0.131394892930984,0.970010161399841,0.145012021064758,0.973782062530518,0.16209203004837,0.912424147129059,0.191124007105827,0.901875019073486,0.226205006241798,0.909170985221863,0.22699099779129,0.907029986381531,0.192049041390419,0.899492263793945,0.475263178348541,0.451069891452789,0.48811000585556,0.463795006275177,0.479971051216125,0.471505045890808,0.467435657978058,0.458736717700958,0.156433001160622,0.87204384803772,0.158776998519897,0.870613098144531,0.148768991231918,0.850611984729767,0.146289989352226,0.85080498456955,0.157495975494385,0.84834885597229,0.154372006654739,0.849385023117065,0.163813978433609,0.868482887744904,0.166509002447128,0.867784976959229,0.265003025531769,0.85375702381134,0.263438940048218,0.856386005878448,0.311155021190643,0.862525105476379,0.266566932201385,0.851127803325653,0.306361973285675,0.882292866706848,0.308759033679962,0.872408986091614,0.263438940048218,0.856386005878448,0.243497997522354,0.892763018608093,0.239928990602493,0.867381989955902,0.237080037593842,0.867586135864258,0.24125899374485,0.893445909023285,0.249832004308701,0.722383975982666,0.24151599407196,0.717040002346039,0.213832020759583,0.809043109416962,0.217105001211166,0.806403875350952,0.265112996101379,0.814149022102356,0.267072975635529,0.816978812217712,0.306229829788208,0.795589685440063,0.216181993484497,0.815120995044708,0.218428984284401,0.812523901462555,0.213832020759583,0.809043109416962,0.211495935916901,0.81205677986145,0.21238599717617,0.820815026760101,0.213935032486916, +0.817717015743256,0.209158971905708,0.815070986747742,0.207443997263908,0.818596005439758,0.210107013583183,0.826874017715454,0.21083702147007,0.823913097381592,0.205727994441986,0.822121977806091,0.204675003886223,0.825841009616852,0.209319964051247,0.833224892616272,0.209377005696297,0.829833984375,0.203621998429298,0.829560041427612,0.203312993049622,0.833578884601593,0.209781005978584,0.839061975479126,0.209264025092125,0.836616098880768,0.203004002571106,0.837598979473114,0.203759014606476,0.840590000152588,0.211285978555679,0.844039916992188,0.210298031568527,0.841508150100708,0.204514995217323,0.843581974506378,0.206084996461868,0.846862852573395,0.213604003190994,0.848752021789551,0.212274998426437,0.846571981906891,0.207653999328613,0.850144982337952,0.209180995821953,0.852472126483917,0.216464027762413,0.852609992027283,0.214933976531029,0.850932002067566,0.210708975791931,0.854798853397369,0.212516993284225,0.856980979442596,0.220005005598068,0.855967879295349,0.217994004487991,0.854287028312683,0.214325994253159,0.85916405916214,0.21696600317955,0.860909879207611,0.224153995513916,0.858913004398346,0.222016006708145,0.857647955417633,0.219606995582581,0.862656116485596,0.221979975700378,0.863983869552612,0.228680998086929,0.861050009727478,0.226291969418526,0.860178887844086,0.22435300052166,0.865311980247498,0.227259993553162,0.866304993629456,0.237080037593842,0.867586135864258,0.236993849277496,0.862354218959808,0.23403200507164,0.862137854099274,0.233624041080475,0.86744213104248,0.24277800321579,0.867178022861481,0.242061972618103,0.861912906169891,0.239527970552444,0.862132847309113,0.239928990602493,0.867381989955902,0.244175001978874,0.861554980278015,0.242061972618103,0.861912906169891,0.24277800321579,0.867178022861481,0.245444998145103,0.866581976413727,0.248551994562149,0.860126972198486,0.246287003159523,0.861197113990784,0.248113036155701,0.865987122058868,0.251064002513885,0.864826023578644,0.252798974514008,0.857895016670227,0.250818014144897,0.859058022499084,0.254016011953354,0.863664984703064, +0.256269007921219,0.862170994281769,0.257052004337311,0.854552030563354,0.254781007766724,0.85673201084137,0.258522987365723,0.860678017139435,0.260980933904648,0.858531832695007,0.266566932201385,0.851127803325653,0.262223988771439,0.848085880279541,0.260773062705994,0.850229203701019,0.265003025531769,0.85375702381134,0.269590049982071,0.844852983951569,0.264643996953964,0.842594027519226,0.263434052467346,0.845340013504028,0.268077999353409,0.847990989685059,0.271135985851288,0.838708996772766,0.265763998031616,0.837370991706848,0.265204012393951,0.839982986450195,0.270363003015518,0.84178102016449,0.271797060966492,0.832202196121216,0.265906989574432,0.831700026988983,0.26583606004715,0.834535181522369,0.271467000246048,0.835456013679504,0.269980013370514,0.823638021945953,0.264470934867859,0.825060904026031,0.265188992023468,0.8283811211586,0.270889073610306,0.827920198440552,0.267072975635529,0.816978812217712,0.262057989835739,0.819720983505249,0.263265013694763,0.822391092777252,0.268527030944824,0.820309102535248,0.263154000043869,0.811320066452026,0.258221000432968,0.814388990402222,0.260140001773834,0.817054986953735,0.265112996101379,0.814149022102356,0.258332014083862,0.806807100772858,0.254416942596436,0.810924828052521,0.256319046020508,0.812657117843628,0.260743021965027,0.809063017368317,0.269980013370514,0.823638021945953,0.312473714351654,0.824710190296173,0.306229829788208,0.795589685440063,0.268527030944824,0.820309102535248,0.312473714351654,0.824710190296173,0.270889073610306,0.827920198440552,0.271797060966492,0.832202196121216,0.313039004802704,0.849131941795349,0.312473714351654,0.824710190296173,0.271467000246048,0.835456013679504,0.271135985851288,0.838708996772766,0.260743021965027,0.809063017368317,0.263154000043869,0.811320066452026,0.306229829788208,0.795589685440063,0.29674169421196,0.773239016532898,0.251473993062973,0.802634954452515,0.254903048276901,0.804720997810364,0.282282501459122,0.751516938209534,0.251473993062973,0.802634954452515,0.248842969536781,0.807769894599915,0.251630008220673, +0.809348046779633,0.254903048276901,0.804720997810364,0.248493000864983,0.80162501335144,0.251473993062973,0.802634954452515,0.282282501459122,0.751516938209534,0.245511993765831,0.800615012645721,0.243912994861603,0.805900931358337,0.246378004550934,0.806834876537323,0.248493000864983,0.80162501335144,0.239370003342628,0.799567997455597,0.238695964217186,0.805219888687134,0.241305023431778,0.805560111999512,0.242440938949585,0.800091981887817,0.236189007759094,0.805329978466034,0.238695964217186,0.805219888687134,0.239370003342628,0.799567997455597,0.235788002610207,0.79963493347168,0.242440938949585,0.800091981887817,0.245511993765831,0.800615012645721,0.273290008306503,0.740649998188019,0.239370003342628,0.799567997455597,0.231048032641411,0.80602502822876,0.233680963516235,0.805439889431,0.232207015156746,0.799700975418091,0.229324042797089,0.800420105457306,0.235788002610207,0.79963493347168,0.239370003342628,0.799567997455597,0.273290008306503,0.740649998188019,0.232207015156746,0.799700975418091,0.220377027988434,0.803765058517456,0.222981974482536,0.809110999107361,0.225697994232178,0.807860970497131,0.223408997058868,0.802452147006989,0.223408997058868,0.802452147006989,0.226442024111748,0.801139116287231,0.258148014545441,0.727727890014648,0.220377027988434,0.803765058517456,0.2345200330019,0.931463122367859,0.237109005451202,0.927883982658386,0.235772043466568,0.926684021949768,0.232864037156105,0.929947972297668,0.270363003015518,0.84178102016449,0.269590049982071,0.844852983951569,0.313039004802704,0.849131941795349,0.271135985851288,0.838708996772766,0.312097012996674,0.855827987194061,0.313039004802704,0.849131941795349,0.269590049982071,0.844852983951569,0.311155021190643,0.862525105476379,0.282572329044342,0.926736176013947,0.267842978239059,0.91951596736908,0.267268002033234,0.921169996261597,0.266292035579681,0.943053185939789,0.273232996463776,0.936672925949097,0.261308997869492,0.929839968681335,0.26002299785614,0.930912017822266,0.246123999357224,0.958252012729645,0.256705820560455,0.951196670532227, +0.249132007360458,0.935304999351501,0.246811002492905,0.935530006885529,0.266292035579681,0.943053185939789,0.26002299785614,0.930912017822266,0.258736997842789,0.93198299407959,0.207958996295929,0.973142862319946,0.229763001203537,0.926519989967346,0.228317007422447,0.924607038497925,0.24125899374485,0.893445909023285,0.237080037593842,0.867586135864258,0.239020004868507,0.894128859043121,0.256705820560455,0.951196670532227,0.253239989280701,0.934482991695404,0.251451998949051,0.93507993221283,0.138525992631912,0.848952054977417,0.148475006222725,0.882598996162415,0.149349004030228,0.880149006843567,0.151248008012772,0.85042005777359,0.148768991231918,0.850611984729767,0.158776998519897,0.870613098144531,0.161119997501373,0.869182109832764,0.268083989620209,0.91718602180481,0.267842978239059,0.91951596736908,0.282572329044342,0.926736176013947,0.289012014865875,0.916937112808228,0.185775995254517,0.977100968360901,0.196866989135742,0.975121855735779,0.177646994590759,0.912968993186951,0.174874976277351,0.913913905620575,0.154372006654739,0.849385023117065,0.151248008012772,0.85042005777359,0.161119997501373,0.869182109832764,0.163813978433609,0.868482887744904,0.188220992684364,0.905944049358368,0.225672990083694,0.913625001907349,0.225939005613327,0.91139805316925,0.189672023057938,0.903910100460052,0.129834026098251,0.835277199745178,0.130802005529404,0.836933851242065,0.147746995091438,0.808448433876038,0.229763001203537,0.926519989967346,0.231208026409149,0.928434073925018,0.234434023499489,0.925485014915466,0.233296006917953,0.92395293712616,0.238186001777649,0.933619976043701,0.240030035376549,0.929587185382843,0.238569036126137,0.928735136985779,0.236352995038033,0.932541906833649,0.207958996295929,0.973142862319946,0.228317007422447,0.924607038497925,0.227638959884644,0.922936797142029,0.243027985095978,0.935053825378418,0.243896037340164,0.930676162242889,0.241962999105453,0.93013197183609,0.240607038140297,0.934337139129639,0.226444005966187,0.919111013412476,0.226959943771362,0.921266913414001,0.231101974844933, +0.919762969017029,0.23069903254509,0.91803514957428,0.246811002492905,0.935530006885529,0.246904954314232,0.931023836135864,0.245400995016098,0.930850028991699,0.244919985532761,0.93529200553894,0.225799918174744,0.915289759635925,0.225927993655205,0.916956007480621,0.230295985937119,0.916307985782623,0.230206966400146,0.914988875389099,0.248721837997437,0.930771768093109,0.246904954314232,0.931023836135864,0.246811002492905,0.935530006885529,0.249132007360458,0.935304999351501,0.230482995510101,0.91015213727951,0.226205006241798,0.909170985221863,0.225939005613327,0.91139805316925,0.230382576584816,0.911921620368958,0.231719002127647,0.906756937503815,0.227776020765305,0.904890060424805,0.22699099779129,0.907029986381531,0.231206625699997,0.908484101295471,0.254866987466812,0.929034888744354,0.253387004137039,0.929762005805969,0.255028009414673,0.933886051177979,0.25688299536705,0.932933986186981,0.233275055885315,0.904149115085602,0.229725003242493,0.901616096496582,0.228751003742218,0.903253018856049,0.232497006654739,0.905453145503998,0.261308997869492,0.929839968681335,0.25835594534874,0.926553905010223,0.257351011037827,0.927430987358093,0.26002299785614,0.930912017822266,0.235490024089813,0.901332020759583,0.232582032680511,0.898118197917938,0.23115299642086,0.899866998195648,0.234382003545761,0.902740001678467,0.265087008476257,0.925692081451416,0.261381506919861,0.923273503780365,0.259663999080658,0.925291001796722,0.262930035591125,0.928244173526764,0.234151005744934,0.897000074386597,0.232582032680511,0.898118197917938,0.235490024089813,0.901332020759583,0.236755013465881,0.900473058223724,0.266692072153091,0.922824025154114,0.262612998485565,0.921012997627258,0.261381506919861,0.923273503780365,0.265087008476257,0.925692081451416,0.237370014190674,0.895006000995636,0.23572102189064,0.895883023738861,0.238020986318588,0.899613976478577,0.239341035485268,0.898918032646179,0.267842978239059,0.91951596736908,0.263523995876312,0.918420076370239,0.263068974018097,0.919716894626617,0.267268002033234,0.921169996261597, +0.24125899374485,0.893445909023285,0.239020004868507,0.894128859043121,0.24066099524498,0.898221909999847,0.242461740970612,0.897755563259125,0.26832503080368,0.914856016635895,0.263835936784744,0.914710998535156,0.263679951429367,0.916565895080566,0.268083989620209,0.91718602180481,0.245535999536514,0.892589867115021,0.243497997522354,0.892763018608093,0.244134515523911,0.897363543510437,0.245860770344734,0.897128164768219,0.263828992843628,0.913066148757935,0.263835936784744,0.914710998535156,0.26832503080368,0.914856016635895,0.268270999193192,0.912784993648529,0.250885993242264,0.897421896457672,0.251902014017105,0.893103897571564,0.249738022685051,0.892760097980499,0.249168217182159,0.897170126438141,0.263242065906525,0.909409999847412,0.26382303237915,0.911422193050385,0.268216013908386,0.910714089870453,0.267468065023422,0.9081911444664,0.253374010324478,0.898076057434082,0.255042999982834,0.893980026245117,0.253472983837128,0.893541812896729,0.252130001783371,0.897748947143555,0.261798024177551,0.905747175216675,0.262661993503571,0.907397985458374,0.266719996929169,0.90566885471344,0.265598952770233,0.903614819049835,0.255872964859009,0.899509906768799,0.258195072412491,0.895779132843018,0.25661900639534,0.894879937171936,0.254624038934708,0.89879310131073,0.260818988084793,0.897635102272034,0.257972985506058,0.901000022888184,0.259452998638153,0.902548909187317,0.26264899969101,0.899598002433777,0.260818988084793,0.897635102272034,0.25950700044632,0.896707057952881,0.256922960281372,0.900254964828491,0.257972985506058,0.901000022888184,0.132034987211227,0.845395863056183,0.134927004575729,0.842046022415161,0.133429035544395,0.84021133184433,0.130135998129845,0.843268990516663,0.127032995223999,0.839123010635376,0.128236025571823,0.841141104698181,0.131770968437195,0.838591873645782,0.130802005529404,0.836933851242065,0.13596199452877,0.847976982593536,0.138135001063347,0.84412693977356,0.136610954999924,0.842978835105896,0.13399900496006,0.846686124801636,0.125137001276016,0.834809899330139,0.125830993056297, +0.837104856967926,0.129834026098251,0.835277199745178,0.129281997680664,0.833395004272461,0.141091033816338,0.849927008152008,0.142287999391556,0.845679998397827,0.140211999416351,0.844904005527496,0.138525992631912,0.848952054977417,0.12424299120903,0.830189883708954,0.124442979693413,0.832515001296997,0.128730982542038,0.831514000892639,0.128589987754822,0.829637885093689,0.146289989352226,0.85080498456955,0.146494001150131,0.846335053443909,0.144391000270844,0.846006989479065,0.143690004944801,0.850366055965424,0.148495018482208,0.84620612859726,0.146494001150131,0.846335053443909,0.146289989352226,0.85080498456955,0.148768991231918,0.850611984729767,0.153038993477821,0.845255970954895,0.150496006011963,0.846076905727386,0.151248008012772,0.85042005777359,0.154372006654739,0.849385023117065,0.157514974474907,0.843210875988007,0.155581995844841,0.844434976577759,0.157495975494385,0.84834885597229,0.159863963723183,0.84681499004364,0.166390016674995,0.840671002864838,0.162771001458168,0.838183104991913,0.161109030246735,0.840085029602051,0.164311036467552,0.842976152896881,0.132789015769958,0.81522810459137,0.129454001784325,0.812444031238556,0.127483010292053,0.815995931625366,0.131081998348236,0.818454027175903,0.169002994894981,0.835688948631287,0.164875984191895,0.834120988845825,0.163823992013931,0.836151957511902,0.167695999145508,0.83817994594574,0.135776966810226,0.812216877937317,0.13316898047924,0.808791995048523,0.131311997771263,0.810617983341217,0.134283006191254,0.813722014427185,0.170426994562149,0.830426037311554,0.165986999869347,0.829843997955322,0.165430992841721,0.831982970237732,0.169715017080307,0.83305698633194,0.135568022727966,0.80739814043045,0.13316898047924,0.808791995048523,0.135776966810226,0.812216877937317,0.137743979692459,0.811105012893677,0.165947198867798,0.827751815319061,0.165986999869347,0.829843997955322,0.170426994562149,0.830426037311554,0.170503050088882,0.827834188938141,0.140457004308701,0.805267930030823,0.137966990470886,0.806003868579865,0.139712005853653,0.809993028640747, +0.14173299074173,0.809410989284515,0.165596455335617,0.823500275611877,0.166173025965691,0.825654983520508,0.170579001307487,0.82524299621582,0.170019000768661,0.822595000267029,0.145413994789124,0.804270148277283,0.142946004867554,0.804533004760742,0.143754988908768,0.80883002281189,0.145750999450684,0.80863893032074,0.164505004882813,0.819459855556488,0.165286034345627,0.82134211063385,0.169458046555519,0.819946110248566,0.168465003371239,0.817633986473083,0.15293200314045,0.809152007102966,0.154251992702484,0.804961025714874,0.151067018508911,0.804484069347382,0.150339007377625,0.808799862861633,0.162426978349686,0.815953016281128,0.163723036646843,0.817577064037323,0.167472004890442,0.815322995185852,0.165861025452614,0.813340067863464,0.157729983329773,0.811479866504669,0.160117000341415,0.807834923267365,0.157184958457947,0.80639785528183,0.155330970883369,0.810316026210785,0.157729983329773,0.811479866504669,0.159430980682373,0.812904000282288,0.162183001637459,0.809596002101898,0.160117000341415,0.807834923267365,0.188733026385307,0.895905137062073,0.192974999547005,0.897108972072601,0.193435966968536,0.894949972629547,0.189094007015228,0.894155919551849,0.189339846372604,0.890329122543335,0.189453974366188,0.892405986785889,0.19389696419239,0.892790913581848,0.193876951932907,0.890215814113617,0.187273994088173,0.899769008159637,0.191124007105827,0.901875019073486,0.192049041390419,0.899492263793945,0.188003987073898,0.897836923599243,0.188874810934067,0.886189818382263,0.189288169145584,0.888238489627838,0.19385701417923,0.88764101266861,0.193269997835159,0.885096073150635,0.184916004538536,0.903069019317627,0.188220992684364,0.905944049358368,0.189672023057938,0.903910100460052,0.186094999313354,0.90141898393631,0.187429994344711,0.881881952285767,0.188522011041641,0.884101986885071,0.19268199801445,0.882551074028015,0.191308006644249,0.879841029644012,0.181848004460335,0.905937016010284,0.18444000184536,0.909421980381012,0.186330005526543,0.90768301486969,0.183382004499435,0.904502987861633,0.187121003866196, +0.873919010162354,0.184024006128311,0.877098977565765,0.185181021690369,0.878381013870239,0.188528001308441,0.875524818897247,0.182429000735283,0.910722970962524,0.18444000184536,0.909421980381012,0.181848004460335,0.905937016010284,0.180205002427101,0.906988024711609,0.182636991143227,0.870575070381165,0.180338963866234,0.874393939971924,0.182181000709534,0.87574702501297,0.184879034757614,0.872247099876404,0.177646994590759,0.912968993186951,0.180418998003006,0.912024021148682,0.17856203019619,0.908038139343262,0.176264539361,0.908640146255493,0.177770033478737,0.868443131446838,0.176362991333008,0.872668862342834,0.17835097014904,0.873531818389893,0.180204004049301,0.869508922100067,0.172063991427422,0.914073944091797,0.174874976277351,0.913913905620575,0.174044981598854,0.909560859203339,0.171733915805817,0.909497380256653,0.171769991517067,0.867303013801575,0.171462967991829,0.871784508228302,0.17391300201416,0.872226893901825,0.174769997596741,0.867873013019562,0.470919996500015,0.478058010339737,0.476718842983246,0.487908959388733,0.464516490697861,0.493827283382416,0.46056604385376,0.485220015048981,0.169339001178741,0.871951997280121,0.171462967991829,0.871784508228302,0.171769991517067,0.867303013801575,0.169138997793198,0.867543995380402,0.161871999502182,0.907621026039124,0.159899994730949,0.911529004573822,0.16209203004837,0.912424147129059,0.163652002811432,0.908340096473694,0.165040999650955,0.872652053833008,0.167215034365654,0.872119188308716,0.166509002447128,0.867784976959229,0.163813978433609,0.868482887744904,0.157649993896484,0.905160009860992,0.154750004410744,0.908442974090576,0.157324999570847,0.909986019134521,0.159760981798172,0.906389892101288,0.160961985588074,0.874336004257202,0.162867993116379,0.873185992240906,0.161119997501373,0.869182109832764,0.158776998519897,0.870613098144531,0.155043035745621,0.90235710144043,0.151573985815048,0.904958009719849,0.153162002563477,0.906701147556305,0.156345993280411,0.90375804901123,0.152152016758919,0.876016020774841,0.155595004558563,0.878760993480682, +0.157324999570847,0.87712299823761,0.15429300069809,0.874029994010925,0.150177031755447,0.902763247489929,0.151573985815048,0.904958009719849,0.155043035745621,0.90235710144043,0.153923004865646,0.900560021400452,0.149349004030228,0.880149006843567,0.153314992785454,0.882128000259399,0.154578894376755,0.880492925643921,0.150749996304512,0.878081977367401,0.148002997040749,0.898060083389282,0.148780003190041,0.900569021701813,0.152803003787994,0.89876389503479,0.152192980051041,0.89671802520752,0.147601008415222,0.885048985481262,0.151911020278931,0.886118054389954,0.152736932039261,0.884171962738037,0.148475006222725,0.882598996162415,0.147065997123718,0.893099009990692,0.147225990891457,0.895551860332489,0.151582986116409,0.89467191696167,0.151482999324799,0.892673969268799,0.14690600335598,0.890645980834961,0.151382997632027,0.890676021575928,0.151647001504898,0.888396859169006,0.147254005074501,0.887848019599915,0.220377027988434,0.803765058517456,0.217105001211166,0.806403875350952,0.22070500254631,0.810817003250122,0.222981974482536,0.809110999107361,0.498829990625381,0.919524013996124,0.500948905944824,0.904640793800354,0.488929986953735,0.903916001319885,0.487617999315262,0.917948007583618,0.517988979816437,0.925292015075684,0.524829983711243,0.907918930053711,0.51288902759552,0.906279981136322,0.508409976959229,0.922408044338226,0.547867894172668,0.914427876472473,0.53634911775589,0.911174058914185,0.525695025920868,0.929835021495819,0.533399879932404,0.93437784910202,0.553385078907013,0.921999037265778,0.547867894172668,0.914427876472473,0.533399879932404,0.93437784910202,0.538412094116211,0.939016044139862,0.562579989433289,0.93781304359436,0.558902144432068,0.929570198059082,0.543422996997833,0.943652987480164,0.547267854213715,0.949870824813843,0.567255973815918,0.955087065696716,0.566256999969482,0.946056008338928,0.551113069057465,0.956089019775391,0.55285108089447,0.963500022888184,0.650957107543945,0.156525030732155,0.669582009315491,0.172124981880188,0.683263897895813,0.167415976524353,0.664981007575989, +0.154017999768257,0.622748017311096,0.162363976240158,0.640425980091095,0.177600979804993,0.655004024505615,0.174863025546074,0.636853039264679,0.159445002675056,0.627358973026276,0.181050986051559,0.640425980091095,0.177600979804993,0.622748017311096,0.162363976240158,0.611733019351959,0.164752975106239,0.601944029331207,0.186067014932632,0.614292025566101,0.184501007199287,0.600718021392822,0.167142003774643,0.593088030815125,0.168960005044937,0.577414989471436,0.188930988311768,0.58959698677063,0.187631994485855,0.585457980632782,0.170779004693031,0.573532998561859,0.173264995217323,0.553725004196167,0.191165000200272,0.565234124660492,0.190229013562202,0.561607003211975,0.175750985741615,0.55094701051712,0.177009001374245,0.385990977287292,0.0376245006918907,0.389232218265533,0.0375141203403473,0.393640697002411,0.0501981526613235,0.389293044805527,0.041069008409977,0.437647014856339,0.795888006687164,0.430916965007782,0.795754909515381,0.430529028177261,0.784605979919434,0.439597070217133,0.785275042057037,0.468432009220123,0.79364401102066,0.461397975683212,0.802904009819031,0.449523001909256,0.799395978450775,0.454014927148819,0.789458930492401,0.489603012800217,0.809594988822937,0.481497079133987,0.816199123859406,0.471447944641113,0.809551954269409,0.479016900062561,0.801620006561279,0.491209983825684,0.827916026115417,0.481497079133987,0.816199123859406,0.489603012800217,0.809594988822937,0.501441061496735,0.822685122489929,0.436819016933441,0.262347042560577,0.428543984889984,0.259896993637085,0.436257928609848,0.250396013259888,0.442268043756485,0.251747012138367,0.453843027353287,0.265697002410889,0.445093005895615,0.264797002077103,0.44827800989151,0.253098011016846,0.455271005630493,0.253883004188538,0.47175008058548,0.265861064195633,0.462592929601669,0.266597986221313,0.462264001369476,0.254667997360229,0.470162987709045,0.254211038351059,0.494451999664307,0.250153988599777,0.499771952629089,0.25970196723938,0.490340024232864,0.262412995100021,0.486257016658783,0.251954048871994,0.509017944335938, +0.244648933410645,0.514686942100525,0.253909975290298,0.50722998380661,0.256805986166,0.501734972000122,0.247402012348175,0.436257928609848,0.250396013259888,0.437591999769211,0.242970004677773,0.44362610578537,0.244361042976379,0.442268043756485,0.251747012138367,0.867806911468506,0.0491139963269234,0.883808016777039,0.0491140000522137,0.877876043319702,0.0410690009593964,0.861692011356354,0.0410690009593964,0.838576793670654,0.0491139926016331,0.851806879043579,0.0491139926016331,0.845507025718689,0.0410690009593964,0.831323027610779,0.0410690009593964,0.812729120254517,0.049114003777504,0.825348019599915,0.0491140000522137,0.817139029502869,0.0410690009593964,0.804130911827087,0.0410690009593964,0.788694798946381,0.0491139926016331,0.800110936164856,0.0491140000522137,0.791123151779175,0.041069008409977,0.779878973960876,0.0410690009593964,0.757879972457886,0.0491140075027943,0.767579019069672,0.0491140000522137,0.758975982666016,0.0410690009593964,0.749315977096558,0.0410690009593964,0.749078869819641,0.0491139963269234,0.757879972457886,0.0491140075027943,0.749315977096558,0.0410690009593964,0.741614878177643,0.0410690009593964,0.729753017425537,0.0491140075027943,0.740278124809265,0.0491140075027943,0.733915090560913,0.041069008409977,0.726037979125977,0.0410690009593964,0.69038450717926,0.0410689972341061,0.686543822288513,0.0491140000522137,0.705265879631042,0.0491139888763428,0.706225991249084,0.0410690009593964,0.590717077255249,0.041069008409977,0.583914995193481,0.049114003777504,0.613121747970581,0.0491140075027943,0.613384962081909,0.0410690009593964,0.53738397359848,0.0410690009593964,0.532811999320984,0.0491139963269234,0.558363974094391,0.0491140000522137,0.5640509724617,0.0410690009593964,0.490866899490356,0.0410690009593964,0.494315057992935,0.0491140075027943,0.513563990592957,0.0491140000522137,0.514124989509583,0.0410690009593964,0.438171982765198,0.0410690009593964,0.443565934896469,0.0491139926016331,0.468941062688828,0.0491140075027943,0.464518934488297,0.0410689935088158,0.409794002771378, +0.0491140000522137,0.426679998636246,0.0491140000522137,0.421612977981567,0.0410690009593964,0.405054986476898,0.0410690009593964,0.393640697002411,0.0501981526613235,0.409794002771378,0.0491140000522137,0.405054986476898,0.0410690009593964,0.389293044805527,0.041069008409977,0.948694884777069,0.0238009970635176,0.949233889579773,0.0341800004243851,0.970651984214783,0.0341800004243851,0.970381855964661,0.0238009989261627,0.897342085838318,0.023801002651453,0.90066385269165,0.0341800004243851,0.924949049949646,0.0341800004243851,0.923018872737885,0.0238009989261627,0.854223012924194,0.0341800004243851,0.87744402885437,0.0341800004243851,0.874817967414856,0.0238009989261627,0.85229504108429,0.0238010007888079,0.799744009971619,0.0238009989261627,0.797349989414215,0.0341800004243851,0.825787007808685,0.0341800004243851,0.826018989086151,0.0238010007888079,0.745012998580933,0.0238010007888079,0.741383016109467,0.0341800004243851,0.769366979598999,0.0341800004243851,0.772378027439117,0.0238010007888079,0.691024899482727,0.0238009970635176,0.683539986610413,0.0341800004243851,0.712460994720459,0.0341800004243851,0.718019008636475,0.023801002651453,0.659100890159607,0.0238009970635176,0.646286010742188,0.0341800004243851,0.66491287946701,0.0341800004243851,0.675063014030457,0.0238009989261627,0.620836973190308,0.0238010045140982,0.609089970588684,0.0341800004243851,0.627687931060791,0.0341800004243851,0.639968991279602,0.0238010007888079,0.585878014564514,0.0238010007888079,0.573730945587158,0.0341800004243851,0.591410994529724,0.0341800004243851,0.603357017040253,0.0238010007888079,0.553654909133911,0.0238009970635176,0.542249023914337,0.0341800004243851,0.557989954948425,0.0341799929738045,0.56976592540741,0.0238009989261627,0.527211427688599,0.0238010045140982,0.519651293754578,0.0341800004243851,0.532018005847931,0.0341800078749657,0.542890906333923,0.0238009970635176,0.504356026649475,0.0341800004243851,0.519651293754578,0.0341800004243851,0.527211427688599,0.0238010045140982,0.514581978321075,0.0238009989261627,0.475591003894806, +0.0341800004243851,0.486924946308136,0.0341800004243851,0.497038006782532,0.0238010007888079,0.486743062734604,0.0238010007888079,0.448850095272064,0.0341800078749657,0.46425598859787,0.0341800004243851,0.476447999477386,0.0238010007888079,0.463718056678772,0.023801002651453,0.413505971431732,0.0341800004243851,0.423475027084351,0.0341800004243851,0.438712000846863,0.0238009989261627,0.426438003778458,0.023801002651453,0.406159996986389,0.0341800004243851,0.413505971431732,0.0341800004243851,0.426438003778458,0.023801002651453,0.415139049291611,0.0238010063767433,0.395220011472702,0.0341800004243851,0.39881494641304,0.0341799929738045,0.403840005397797,0.023801002651453,0.3977330327034,0.0238010045140982,0.382688999176025,0.0341800004243851,0.391626000404358,0.0341800004243851,0.391626000404358,0.0238009989261627,0.382688999176025,0.0238009989261627,0.924870014190674,0.049114003777504,0.957599103450775,0.0491140075027943,0.953853964805603,0.0410690009593964,0.917379975318909,0.0410690009593964,0.229763001203537,0.926519989967346,0.207958996295929,0.973142862319946,0.231208026409149,0.928434073925018,0.219460994005203,0.969608068466187,0.232864037156105,0.929947972297668,0.231208026409149,0.928434073925018,0.207958996295929,0.973142862319946,0.233624041080475,0.86744213104248,0.230167999863625,0.867297053337097,0.23572102189064,0.895883023738861,0.237370014190674,0.895006000995636,0.16745799779892,0.909406900405884,0.163652002811432,0.908340096473694,0.16209203004837,0.912424147129059,0.166767999529839,0.913775980472565,0.16209203004837,0.912424147129059,0.145012021064758,0.973782062530518,0.155960649251938,0.975762009620667,0.166767999529839,0.913775980472565,0.228317007422447,0.924607038497925,0.229763001203537,0.926519989967346,0.233296006917953,0.92395293712616,0.232453674077988,0.922819972038269,0.481555134057999,0.443008780479431,0.492792010307312,0.437554985284805,0.499823987483978,0.442599982023239,0.494423985481262,0.453774988651276,0.475263178348541,0.451069891452789,0.481555134057999,0.443008780479431,0.494423985481262, +0.453774988651276,0.48811000585556,0.463795006275177,0.311155021190643,0.862525105476379,0.269590049982071,0.844852983951569,0.268077999353409,0.847990989685059,0.266566932201385,0.851127803325653,0.308759033679962,0.872408986091614,0.311155021190643,0.862525105476379,0.263438940048218,0.856386005878448,0.25950700044632,0.896707057952881,0.260818988084793,0.897635102272034,0.263438940048218,0.856386005878448,0.260980933904648,0.858531832695007,0.958945214748383,0.308513671159744,0.934149861335754,0.297612369060516,0.935762882232666,0.293914884328842,0.258148014545441,0.727727890014648,0.249832004308701,0.722383975982666,0.217105001211166,0.806403875350952,0.220377027988434,0.803765058517456,0.306229829788208,0.795589685440063,0.263154000043869,0.811320066452026,0.265112996101379,0.814149022102356,0.209158971905708,0.815070986747742,0.213935032486916,0.817717015743256,0.216181993484497,0.815120995044708,0.211495935916901,0.81205677986145,0.205727994441986,0.822121977806091,0.21083702147007,0.823913097381592,0.21238599717617,0.820815026760101,0.207443997263908,0.818596005439758,0.203621998429298,0.829560041427612,0.209377005696297,0.829833984375,0.210107013583183,0.826874017715454,0.204675003886223,0.825841009616852,0.203004002571106,0.837598979473114,0.209264025092125,0.836616098880768,0.209319964051247,0.833224892616272,0.203312993049622,0.833578884601593,0.204514995217323,0.843581974506378,0.210298031568527,0.841508150100708,0.209781005978584,0.839061975479126,0.203759014606476,0.840590000152588,0.207653999328613,0.850144982337952,0.212274998426437,0.846571981906891,0.211285978555679,0.844039916992188,0.206084996461868,0.846862852573395,0.210708975791931,0.854798853397369,0.214933976531029,0.850932002067566,0.213604003190994,0.848752021789551,0.209180995821953,0.852472126483917,0.214325994253159,0.85916405916214,0.217994004487991,0.854287028312683,0.216464027762413,0.852609992027283,0.212516993284225,0.856980979442596,0.219606995582581,0.862656116485596,0.222016006708145,0.857647955417633,0.220005005598068,0.855967879295349, +0.21696600317955,0.860909879207611,0.22435300052166,0.865311980247498,0.226291969418526,0.860178887844086,0.224153995513916,0.858913004398346,0.221979975700378,0.863983869552612,0.230167999863625,0.867297053337097,0.231069996953011,0.861922025680542,0.228680998086929,0.861050009727478,0.227259993553162,0.866304993629456,0.230167999863625,0.867297053337097,0.233624041080475,0.86744213104248,0.23403200507164,0.862137854099274,0.231069996953011,0.861922025680542,0.237080037593842,0.867586135864258,0.239928990602493,0.867381989955902,0.239527970552444,0.862132847309113,0.236993849277496,0.862354218959808,0.248113036155701,0.865987122058868,0.246287003159523,0.861197113990784,0.244175001978874,0.861554980278015,0.245444998145103,0.866581976413727,0.254016011953354,0.863664984703064,0.250818014144897,0.859058022499084,0.248551994562149,0.860126972198486,0.251064002513885,0.864826023578644,0.258522987365723,0.860678017139435,0.254781007766724,0.85673201084137,0.252798974514008,0.857895016670227,0.256269007921219,0.862170994281769,0.263438940048218,0.856386005878448,0.259321987628937,0.852372109889984,0.257052004337311,0.854552030563354,0.260980933904648,0.858531832695007,0.263438940048218,0.856386005878448,0.265003025531769,0.85375702381134,0.260773062705994,0.850229203701019,0.259321987628937,0.852372109889984,0.266566932201385,0.851127803325653,0.268077999353409,0.847990989685059,0.263434052467346,0.845340013504028,0.262223988771439,0.848085880279541,0.269590049982071,0.844852983951569,0.270363003015518,0.84178102016449,0.265204012393951,0.839982986450195,0.264643996953964,0.842594027519226,0.271135985851288,0.838708996772766,0.271467000246048,0.835456013679504,0.26583606004715,0.834535181522369,0.265763998031616,0.837370991706848,0.271797060966492,0.832202196121216,0.270889073610306,0.827920198440552,0.265188992023468,0.8283811211586,0.265906989574432,0.831700026988983,0.269980013370514,0.823638021945953,0.268527030944824,0.820309102535248,0.263265013694763,0.822391092777252,0.264470934867859,0.825060904026031,0.267072975635529, +0.816978812217712,0.265112996101379,0.814149022102356,0.260140001773834,0.817054986953735,0.262057989835739,0.819720983505249,0.263154000043869,0.811320066452026,0.260743021965027,0.809063017368317,0.256319046020508,0.812657117843628,0.258221000432968,0.814388990402222,0.306229829788208,0.795589685440063,0.267072975635529,0.816978812217712,0.268527030944824,0.820309102535248,0.269980013370514,0.823638021945953,0.270889073610306,0.827920198440552,0.312473714351654,0.824710190296173,0.29674169421196,0.773239016532898,0.258332014083862,0.806807100772858,0.260743021965027,0.809063017368317,0.258332014083862,0.806807100772858,0.254903048276901,0.804720997810364,0.251630008220673,0.809348046779633,0.254416942596436,0.810924828052521,0.245511993765831,0.800615012645721,0.248493000864983,0.80162501335144,0.282282501459122,0.751516938209534,0.273290008306503,0.740649998188019,0.251473993062973,0.802634954452515,0.248493000864983,0.80162501335144,0.246378004550934,0.806834876537323,0.248842969536781,0.807769894599915,0.232207015156746,0.799700975418091,0.273290008306503,0.740649998188019,0.265718996524811,0.734188854694366,0.229324042797089,0.800420105457306,0.245511993765831,0.800615012645721,0.242440938949585,0.800091981887817,0.241305023431778,0.805560111999512,0.243912994861603,0.805900931358337,0.232207015156746,0.799700975418091,0.233680963516235,0.805439889431,0.236189007759094,0.805329978466034,0.235788002610207,0.79963493347168,0.226442024111748,0.801139116287231,0.228413999080658,0.806609988212585,0.231048032641411,0.80602502822876,0.229324042797089,0.800420105457306,0.258148014545441,0.727727890014648,0.226442024111748,0.801139116287231,0.229324042797089,0.800420105457306,0.265718996524811,0.734188854694366,0.294414013624191,0.908240973949432,0.266719996929169,0.90566885471344,0.267468065023422,0.9081911444664,0.226442024111748,0.801139116287231,0.223408997058868,0.802452147006989,0.225697994232178,0.807860970497131,0.228413999080658,0.806609988212585,0.234434023499489,0.925485014915466,0.231208026409149,0.928434073925018, +0.232864037156105,0.929947972297668,0.235772043466568,0.926684021949768,0.268270999193192,0.912784993648529,0.294414013624191,0.908240973949432,0.268216013908386,0.910714089870453,0.238186001777649,0.933619976043701,0.230963960289955,0.966071963310242,0.23854398727417,0.962161898612976,0.243027985095978,0.935053825378418,0.240607038140297,0.934337139129639,0.246123999357224,0.958252012729645,0.246811002492905,0.935530006885529,0.244919985532761,0.93529200553894,0.243027985095978,0.935053825378418,0.23854398727417,0.962161898612976,0.236352995038033,0.932541906833649,0.2345200330019,0.931463122367859,0.232864037156105,0.929947972297668,0.219460994005203,0.969608068466187,0.230963960289955,0.966071963310242,0.238186001777649,0.933619976043701,0.499823987483978,0.442599982023239,0.503509998321533,0.429521948099136,0.512215971946716,0.435739010572433,0.514537990093231,0.450159996747971,0.2345200330019,0.931463122367859,0.236352995038033,0.932541906833649,0.238569036126137,0.928735136985779,0.237109005451202,0.927883982658386,0.231101974844933,0.919762969017029,0.226959943771362,0.921266913414001,0.227638959884644,0.922936797142029,0.231630027294159,0.921092092990875,0.238186001777649,0.933619976043701,0.240607038140297,0.934337139129639,0.241962999105453,0.93013197183609,0.240030035376549,0.929587185382843,0.230295985937119,0.916307985782623,0.225927993655205,0.916956007480621,0.226444005966187,0.919111013412476,0.23069903254509,0.91803514957428,0.243027985095978,0.935053825378418,0.244919985532761,0.93529200553894,0.245400995016098,0.930850028991699,0.243896037340164,0.930676162242889,0.230118006467819,0.913669884204865,0.225672990083694,0.913625001907349,0.225799918174744,0.915289759635925,0.230206966400146,0.914988875389099,0.251451998949051,0.93507993221283,0.249989479780197,0.930578112602234,0.248721837997437,0.930771768093109,0.249132007360458,0.935304999351501,0.230118006467819,0.913669884204865,0.230382576584816,0.911921620368958,0.225939005613327,0.91139805316925,0.225672990083694,0.913625001907349,0.255028009414673, +0.933886051177979,0.253387004137039,0.929762005805969,0.251950949430466,0.930142879486084,0.253239989280701,0.934482991695404,0.230482995510101,0.91015213727951,0.231206625699997,0.908484101295471,0.22699099779129,0.907029986381531,0.226205006241798,0.909170985221863,0.258736997842789,0.93198299407959,0.256346046924591,0.928307116031647,0.254866987466812,0.929034888744354,0.25688299536705,0.932933986186981,0.231719002127647,0.906756937503815,0.232497006654739,0.905453145503998,0.228751003742218,0.903253018856049,0.227776020765305,0.904890060424805,0.258736997842789,0.93198299407959,0.26002299785614,0.930912017822266,0.257351011037827,0.927430987358093,0.256346046924591,0.928307116031647,0.233275055885315,0.904149115085602,0.234382003545761,0.902740001678467,0.23115299642086,0.899866998195648,0.229725003242493,0.901616096496582,0.261308997869492,0.929839968681335,0.262930035591125,0.928244173526764,0.259663999080658,0.925291001796722,0.25835594534874,0.926553905010223,0.238020986318588,0.899613976478577,0.23572102189064,0.895883023738861,0.234151005744934,0.897000074386597,0.236755013465881,0.900473058223724,0.24066099524498,0.898221909999847,0.239020004868507,0.894128859043121,0.237370014190674,0.895006000995636,0.239341035485268,0.898918032646179,0.266692072153091,0.922824025154114,0.267268002033234,0.921169996261597,0.263068974018097,0.919716894626617,0.262612998485565,0.921012997627258,0.244134515523911,0.897363543510437,0.243497997522354,0.892763018608093,0.24125899374485,0.893445909023285,0.242461740970612,0.897755563259125,0.267842978239059,0.91951596736908,0.268083989620209,0.91718602180481,0.263679951429367,0.916565895080566,0.263523995876312,0.918420076370239,0.247449964284897,0.896917998790741,0.247573986649513,0.892416894435883,0.245535999536514,0.892589867115021,0.245860770344734,0.897128164768219,0.268216013908386,0.910714089870453,0.26382303237915,0.911422193050385,0.263828992843628,0.913066148757935,0.268270999193192,0.912784993648529,0.247449964284897,0.896917998790741,0.249168217182159,0.897170126438141, +0.249738022685051,0.892760097980499,0.247573986649513,0.892416894435883,0.266719996929169,0.90566885471344,0.262661993503571,0.907397985458374,0.263242065906525,0.909409999847412,0.267468065023422,0.9081911444664,0.250885993242264,0.897421896457672,0.252130001783371,0.897748947143555,0.253472983837128,0.893541812896729,0.251902014017105,0.893103897571564,0.264479011297226,0.901561975479126,0.260933995246887,0.904097080230713,0.261798024177551,0.905747175216675,0.265598952770233,0.903614819049835,0.253374010324478,0.898076057434082,0.254624038934708,0.89879310131073,0.25661900639534,0.894879937171936,0.255042999982834,0.893980026245117,0.264479011297226,0.901561975479126,0.26264899969101,0.899598002433777,0.259452998638153,0.902548909187317,0.260933995246887,0.904097080230713,0.255872964859009,0.899509906768799,0.256922960281372,0.900254964828491,0.25950700044632,0.896707057952881,0.258195072412491,0.895779132843018,0.131770968437195,0.838591873645782,0.128236025571823,0.841141104698181,0.130135998129845,0.843268990516663,0.133429035544395,0.84021133184433,0.129834026098251,0.835277199745178,0.125830993056297,0.837104856967926,0.127032995223999,0.839123010635376,0.130802005529404,0.836933851242065,0.132034987211227,0.845395863056183,0.13399900496006,0.846686124801636,0.136610954999924,0.842978835105896,0.134927004575729,0.842046022415161,0.128730982542038,0.831514000892639,0.124442979693413,0.832515001296997,0.125137001276016,0.834809899330139,0.129281997680664,0.833395004272461,0.13596199452877,0.847976982593536,0.138525992631912,0.848952054977417,0.140211999416351,0.844904005527496,0.138135001063347,0.84412693977356,0.128448992967606,0.827762126922607,0.124041989445686,0.827865958213806,0.12424299120903,0.830189883708954,0.128589987754822,0.829637885093689,0.141091033816338,0.849927008152008,0.143690004944801,0.850366055965424,0.144391000270844,0.846006989479065,0.142287999391556,0.845679998397827,0.128448992967606,0.827762126922607,0.129143506288528,0.823200345039368,0.125026673078537,0.822036325931549,0.124041989445686, +0.827865958213806,0.151248008012772,0.85042005777359,0.150496006011963,0.846076905727386,0.148495018482208,0.84620612859726,0.148768991231918,0.850611984729767,0.157495975494385,0.84834885597229,0.155581995844841,0.844434976577759,0.153038993477821,0.845255970954895,0.154372006654739,0.849385023117065,0.162231966853142,0.845281004905701,0.159446999430656,0.841986060142517,0.157514974474907,0.843210875988007,0.159863963723183,0.84681499004364,0.162231966853142,0.845281004905701,0.164311036467552,0.842976152896881,0.161109030246735,0.840085029602051,0.159446999430656,0.841986060142517,0.129143506288528,0.823200345039368,0.131081998348236,0.818454027175903,0.127483010292053,0.815995931625366,0.125026673078537,0.822036325931549,0.166390016674995,0.840671002864838,0.167695999145508,0.83817994594574,0.163823992013931,0.836151957511902,0.162771001458168,0.838183104991913,0.132789015769958,0.81522810459137,0.134283006191254,0.813722014427185,0.131311997771263,0.810617983341217,0.129454001784325,0.812444031238556,0.169002994894981,0.835688948631287,0.169715017080307,0.83305698633194,0.165430992841721,0.831982970237732,0.164875984191895,0.834120988845825,0.139712005853653,0.809993028640747,0.137966990470886,0.806003868579865,0.135568022727966,0.80739814043045,0.137743979692459,0.811105012893677,0.170579001307487,0.82524299621582,0.166173025965691,0.825654983520508,0.165947198867798,0.827751815319061,0.170503050088882,0.827834188938141,0.143754988908768,0.80883002281189,0.142946004867554,0.804533004760742,0.140457004308701,0.805267930030823,0.14173299074173,0.809410989284515,0.169458046555519,0.819946110248566,0.165286034345627,0.82134211063385,0.165596455335617,0.823500275611877,0.170019000768661,0.822595000267029,0.147746995091438,0.808448433876038,0.147883012890816,0.804007053375244,0.145413994789124,0.804270148277283,0.145750999450684,0.80863893032074,0.167472004890442,0.815322995185852,0.163723036646843,0.817577064037323,0.164505004882813,0.819459855556488,0.168465003371239,0.817633986473083,0.147746995091438,0.808448433876038, +0.150339007377625,0.808799862861633,0.151067018508911,0.804484069347382,0.147883012890816,0.804007053375244,0.164250001311302,0.811356961727142,0.161130964756012,0.814327836036682,0.162426978349686,0.815953016281128,0.165861025452614,0.813340067863464,0.15293200314045,0.809152007102966,0.155330970883369,0.810316026210785,0.157184958457947,0.80639785528183,0.154251992702484,0.804961025714874,0.164250001311302,0.811356961727142,0.162183001637459,0.809596002101898,0.159430980682373,0.812904000282288,0.161130964756012,0.814327836036682,0.19389696419239,0.892790913581848,0.189453974366188,0.892405986785889,0.189094007015228,0.894155919551849,0.193435966968536,0.894949972629547,0.19385701417923,0.88764101266861,0.189288169145584,0.888238489627838,0.189339846372604,0.890329122543335,0.193876951932907,0.890215814113617,0.188733026385307,0.895905137062073,0.188003987073898,0.897836923599243,0.192049041390419,0.899492263793945,0.192974999547005,0.897108972072601,0.19268199801445,0.882551074028015,0.188522011041641,0.884101986885071,0.188874810934067,0.886189818382263,0.193269997835159,0.885096073150635,0.187273994088173,0.899769008159637,0.186094999313354,0.90141898393631,0.189672023057938,0.903910100460052,0.191124007105827,0.901875019073486,0.189934000372887,0.877131879329681,0.186338007450104,0.879661917686462,0.187429994344711,0.881881952285767,0.191308006644249,0.879841029644012,0.184916004538536,0.903069019317627,0.183382004499435,0.904502987861633,0.186330005526543,0.90768301486969,0.188220992684364,0.905944049358368,0.189934000372887,0.877131879329681,0.188528001308441,0.875524818897247,0.185181021690369,0.878381013870239,0.186338007450104,0.879661917686462,0.17856203019619,0.908038139343262,0.180418998003006,0.912024021148682,0.182429000735283,0.910722970962524,0.180205002427101,0.906988024711609,0.187121003866196,0.873919010162354,0.184879034757614,0.872247099876404,0.182181000709534,0.87574702501297,0.184024006128311,0.877098977565765,0.174044981598854,0.909560859203339,0.174874976277351,0.913913905620575,0.177646994590759, +0.912968993186951,0.176264539361,0.908640146255493,0.182636991143227,0.870575070381165,0.180204004049301,0.869508922100067,0.17835097014904,0.873531818389893,0.180338963866234,0.874393939971924,0.169484034180641,0.909756124019623,0.169252991676331,0.914233982563019,0.172063991427422,0.914073944091797,0.171733915805817,0.909497380256653,0.177770033478737,0.868443131446838,0.174769997596741,0.867873013019562,0.17391300201416,0.872226893901825,0.176362991333008,0.872668862342834,0.169484034180641,0.909756124019623,0.16745799779892,0.909406900405884,0.166767999529839,0.913775980472565,0.169252991676331,0.914233982563019,0.166509002447128,0.867784976959229,0.167215034365654,0.872119188308716,0.169339001178741,0.871951997280121,0.169138997793198,0.867543995380402,0.161119997501373,0.869182109832764,0.162867993116379,0.873185992240906,0.165040999650955,0.872652053833008,0.163813978433609,0.868482887744904,0.161871999502182,0.907621026039124,0.159760981798172,0.906389892101288,0.157324999570847,0.909986019134521,0.159899994730949,0.911529004573822,0.156433001160622,0.87204384803772,0.15905599296093,0.875485002994537,0.160961985588074,0.874336004257202,0.158776998519897,0.870613098144531,0.157649993896484,0.905160009860992,0.156345993280411,0.90375804901123,0.153162002563477,0.906701147556305,0.154750004410744,0.908442974090576,0.156433001160622,0.87204384803772,0.15429300069809,0.874029994010925,0.157324999570847,0.87712299823761,0.15905599296093,0.875485002994537,0.152803003787994,0.89876389503479,0.148780003190041,0.900569021701813,0.150177031755447,0.902763247489929,0.153923004865646,0.900560021400452,0.152152016758919,0.876016020774841,0.150749996304512,0.878081977367401,0.154578894376755,0.880492925643921,0.155595004558563,0.878760993480682,0.151582986116409,0.89467191696167,0.147225990891457,0.895551860332489,0.148002997040749,0.898060083389282,0.152192980051041,0.89671802520752,0.149349004030228,0.880149006843567,0.148475006222725,0.882598996162415,0.152736932039261,0.884171962738037,0.153314992785454,0.882128000259399, +0.14690600335598,0.890645980834961,0.147065997123718,0.893099009990692,0.151482999324799,0.892673969268799,0.151382997632027,0.890676021575928,0.147601008415222,0.885048985481262,0.147254005074501,0.887848019599915,0.151647001504898,0.888396859169006,0.151911020278931,0.886118054389954,0.184024006128311,0.877098977565765,0.182181000709534,0.87574702501297,0.171462967991829,0.871784508228302,0.989481091499329,0.32054415345192,0.98834228515625,0.32353675365448,0.958945214748383,0.308513671159744,0.976289391517639,0.27773317694664,0.979305386543274,0.280641734600067,0.958945214748383,0.308513671159744,0.93331778049469,0.319255739450455,0.958945214748383,0.308513671159744,0.934687256813049,0.32258740067482,0.958945214748383,0.308513671159744,0.933202683925629,0.302246570587158,0.934149861335754,0.297612369060516,0.979653477668762,0.335122406482697,0.974914789199829,0.338147073984146,0.958945214748383,0.308513671159744,0.449660986661911,0.24575200676918,0.456225991249084,0.246564000844955,0.455271005630493,0.253883004188538,0.44827800989151,0.253098011016846,0.462792038917542,0.247375011444092,0.470054984092712,0.24702200293541,0.470162987709045,0.254211038351059,0.462264001369476,0.254667997360229,0.477317988872528,0.246667996048927,0.484845995903015,0.245103001594543,0.486257016658783,0.251954048871994,0.478062033653259,0.253755003213882,0.504427433013916,0.237697571516037,0.509017944335938,0.244648933410645,0.501734972000122,0.247402012348175,0.497912466526031,0.240251570940018,0.521490216255188,0.227996230125427,0.529126763343811,0.234602153301239,0.518692910671234,0.23992595076561,0.512776255607605,0.232542186975479,0.476404994726181,0.916370987892151,0.466200917959213,0.916217803955078,0.465090811252594,0.925256371498108,0.475810468196869,0.925846993923187,0.971887230873108,0.276029467582703,0.958945214748383,0.308513671159744,0.968048453330994,0.274119347333908,0.457788109779358,0.916652858257294,0.458849370479584,0.925424754619598,0.465090811252594,0.925256371498108,0.466200917959213,0.916217803955078,0.498829990625381, +0.919524013996124,0.487617999315262,0.917948007583618,0.484995007514954,0.926473021507263,0.495117008686066,0.927724957466125,0.512184023857117,0.932644009590149,0.517988979816437,0.925292015075684,0.508409976959229,0.922408044338226,0.503650009632111,0.93018501996994,0.533399879932404,0.93437784910202,0.525695025920868,0.929835021495819,0.519091010093689,0.936658978462219,0.525998950004578,0.940673887729645,0.534962058067322,0.94893205165863,0.543422996997833,0.943652987480164,0.538412094116211,0.939016044139862,0.530480980873108,0.94480299949646,0.542050004005432,0.960523962974548,0.551113069057465,0.956089019775391,0.547267854213715,0.949870824813843,0.538505971431732,0.954728007316589,0.542050004005432,0.960523962974548,0.543892979621887,0.967753052711487,0.55285108089447,0.963500022888184,0.551113069057465,0.956089019775391,0.437647014856339,0.795888006687164,0.435568004846573,0.803097009658813,0.428858041763306,0.803085088729858,0.430916965007782,0.795754909515381,0.958945214748383,0.308513671159744,0.935762882232666,0.293914884328842,0.937372505664825,0.290216207504272,0.932814121246338,0.316042840480804,0.932308077812195,0.312830179929733,0.958945214748383,0.308513671159744,0.932249903678894,0.306879699230194,0.958945214748383,0.308513671159744,0.932280242443085,0.309854984283447,0.461397975683212,0.802904009819031,0.45776504278183,0.809272050857544,0.44666600227356,0.806183993816376,0.449523001909256,0.799395978450775,0.481497079133987,0.816199123859406,0.476096987724304,0.820734977722168,0.4669309258461,0.815002918243408,0.471447944641113,0.809551954269409,0.481497079133987,0.816199123859406,0.491209983825684,0.827916026115417,0.484454065561295,0.831747114658356,0.476096987724304,0.820734977722168,0.679005026817322,0.151510000228882,0.667936027050018,0.144687995314598,0.654299020767212,0.147488996386528,0.664981007575989,0.154017999768257,0.958945214748383,0.308513671159744,0.957139730453491,0.275966286659241,0.960848927497864,0.275173604488373,0.650957107543945,0.156525030732155,0.640661001205444,0.150290012359619, +0.627624988555908,0.153221011161804,0.636853039264679,0.159445002675056,0.614588975906372,0.156151995062828,0.604407131671906,0.158278033137321,0.611733019351959,0.164752975106239,0.622748017311096,0.162363976240158,0.59422504901886,0.16040301322937,0.587234854698181,0.161921963095665,0.593088030815125,0.168960005044937,0.600718021392822,0.167142003774643,0.585457980632782,0.170779004693031,0.580245971679688,0.163441002368927,0.568976998329163,0.165389999747276,0.573532998561859,0.173264995217323,0.557708024978638,0.167338997125626,0.547753930091858,0.168069005012512,0.55094701051712,0.177009001374245,0.561607003211975,0.175750985741615,0.537800014019012,0.168120801448822,0.524708986282349,0.167145788669586,0.526793003082275,0.177669003605843,0.540287017822266,0.178265988826752,0.476910918951035,0.903189897537231,0.476404994726181,0.916370987892151,0.487617999315262,0.917948007583618,0.488929986953735,0.903916001319885,0.958945214748383,0.308513671159744,0.950121641159058,0.278326988220215,0.953429400920868,0.276756227016449,0.983426809310913,0.330823957920074,0.958945214748383,0.308513671159744,0.987205386161804,0.326529949903488,0.946812033653259,0.27989536523819,0.958945214748383,0.308513671159744,0.944007039070129,0.282421767711639,0.941199898719788,0.284946262836456,0.958945214748383,0.308513671159744,0.939287424087524,0.28758180141449,0.991849541664124,0.301544964313507,0.958945214748383,0.308513671159744,0.990837097167969,0.297960251569748,0.549119114875793,0.283560037612915,0.534769117832184,0.286010056734085,0.525038123130798,0.249454036355019,0.537480592727661,0.244022369384766,0.958945214748383,0.308513671159744,0.988710522651672,0.291981399059296,0.989827275276184,0.294374853372574,0.987594723701477,0.289587408304214,0.958945214748383,0.308513671159744,0.984957575798035,0.286229699850082,0.991849541664124,0.311111330986023,0.958945214748383,0.308513671159744,0.991847157478333,0.306328058242798,0.991849541664124,0.311111330986023,0.990663051605225,0.315827190876007,0.958945214748383,0.308513671159744,0.669582009315491, +0.172124981880188,0.655004024505615,0.174863025546074,0.683152079582214,0.195439025759697,0.700708031654358,0.191886022686958,0.713954865932465,0.202014982700348,0.725744128227234,0.211363047361374,0.745555996894836,0.209741994738579,0.733123183250427,0.199842065572739,0.745555996894836,0.209741994738579,0.768899023532867,0.210233002901077,0.753077983856201,0.198167994618416,0.733123183250427,0.199842065572739,0.753077983856201,0.198167994618416,0.73725700378418,0.186102002859116,0.718404948711395,0.188898995518684,0.733123183250427,0.199842065572739,0.614292025566101,0.184501007199287,0.633455991744995,0.211217001080513,0.650138020515442,0.204368993639946,0.627358973026276,0.181050986051559,0.0964563190937042,0.568715572357178,0.0541765205562115,0.537130296230316,0.0534786731004715,0.55276882648468,0.0912920087575912,0.591284394264221,0.776177048683167,0.216144993901253,0.768899023532867,0.210233002901077,0.745555996894836,0.209741994738579,0.755701124668121,0.21739199757576,0.680154085159302,0.209366023540497,0.693824112415314,0.218162029981613,0.708722114562988,0.214132040739059,0.696359932422638,0.205184981226921,0.708722114562988,0.214132040739059,0.725744128227234,0.211363047361374,0.713954865932465,0.202014982700348,0.696359932422638,0.205184981226921,0.713954865932465,0.202014982700348,0.700708031654358,0.191886022686958,0.683152079582214,0.195439025759697,0.696359932422638,0.205184981226921,0.760260045528412,0.236258029937744,0.777350008487701,0.247710004448891,0.792692899703979,0.244441956281662,0.778818070888519,0.234795048832893,0.792692899703979,0.244441956281662,0.813354969024658,0.245452001690865,0.798405051231384,0.23375503718853,0.778818070888519,0.234795048832893,0.729286968708038,0.241926997900009,0.705782055854797,0.225902035832405,0.693166017532349,0.231291994452477,0.716818988323212,0.246556997299194,0.736557960510254,0.219146966934204,0.725744128227234,0.211363047361374,0.708722114562988,0.214132040739059,0.72008204460144,0.221919000148773,0.58959698677063,0.187631994485855,0.598687887191772, +0.209730952978134,0.613956093788147,0.210284024477005,0.601944029331207,0.186067014932632,0.650138020515442,0.204368993639946,0.633455991744995,0.211217001080513,0.653496980667114,0.222157999873161,0.665151119232178,0.21457202732563,0.653496980667114,0.222157999873161,0.669553935527802,0.23089599609375,0.680386066436768,0.223562002182007,0.665151119232178,0.21457202732563,0.680386066436768,0.223562002182007,0.693824112415314,0.218162029981613,0.680154085159302,0.209366023540497,0.665151119232178,0.21457202732563,0.67010486125946,0.257404953241348,0.689944267272949,0.267028480768204,0.699417948722839,0.26028299331665,0.675747990608215,0.247396022081375,0.705782055854797,0.225902035832405,0.693824112415314,0.218162029981613,0.680386066436768,0.223562002182007,0.693166017532349,0.231291994452477,0.729286968708038,0.241926997900009,0.741931021213531,0.25118100643158,0.756885051727295,0.248537003993988,0.743758857250214,0.238563999533653,0.756885051727295,0.248537003993988,0.777350008487701,0.247710004448891,0.760260045528412,0.236258029937744,0.743758857250214,0.238563999533653,0.8058140873909,0.25620499253273,0.832390010356903,0.263554006814957,0.822871923446655,0.254503011703491,0.80608606338501,0.251632004976273,0.822871923446655,0.254503011703491,0.813354969024658,0.245452001690865,0.792692899703979,0.244441956281662,0.80608606338501,0.251632004976273,0.0547330006957054,0.523630976676941,0.0983220487833023,0.552909016609192,0.100517928600311,0.528115093708038,0.0556057170033455,0.504808902740479,0.706736028194427,0.252620011568069,0.718622982501984,0.260405004024506,0.729098081588745,0.255113989114761,0.716818988323212,0.246556997299194,0.729098081588745,0.255113989114761,0.741931021213531,0.25118100643158,0.729286968708038,0.241926997900009,0.716818988323212,0.246556997299194,0.721700429916382,0.285606265068054,0.73037713766098,0.280717730522156,0.710744976997375,0.267123013734818,0.704292118549347,0.274253010749817,0.854375898838043,0.306699901819229,0.875992059707642,0.311134994029999,0.859004020690918,0.292744010686874, +0.838329970836639,0.289550989866257,0.859004020690918,0.292744010686874,0.842015981674194,0.274354010820389,0.820916891098022,0.271835833787918,0.838329970836639,0.289550989866257,0.820916891098022,0.271835833787918,0.799286842346191,0.268679529428482,0.818339824676514,0.286892950534821,0.838329970836639,0.289550989866257,0.814671993255615,0.30000901222229,0.833792924880981,0.302718997001648,0.818339824676514,0.286892950534821,0.799717009067535,0.285304009914398,0.818339824676514,0.286892950534821,0.799286842346191,0.268679529428482,0.780579209327698,0.268187642097473,0.799717009067535,0.285304009914398,0.780579209327698,0.268187642097473,0.764561533927917,0.269233167171478,0.782972812652588,0.28507199883461,0.799717009067535,0.285304009914398,0.884895026683807,0.343131989240646,0.90755295753479,0.349373996257782,0.891772985458374,0.330255031585693,0.870013952255249,0.324571967124939,0.891772985458374,0.330255031585693,0.875992059707642,0.311134994029999,0.854375898838043,0.306699901819229,0.870013952255249,0.324571967124939,0.854375898838043,0.306699901819229,0.833792924880981,0.302718997001648,0.849000930786133,0.31954100728035,0.870013952255249,0.324571967124939,0.843689978122711,0.33236899971962,0.863541185855865,0.337092071771622,0.849000930786133,0.31954100728035,0.829477906227112,0.315814942121506,0.849000930786133,0.31954100728035,0.833792924880981,0.302718997001648,0.814671993255615,0.30000901222229,0.829477906227112,0.315814942121506,0.814671993255615,0.30000901222229,0.797487020492554,0.298797011375427,0.811922132968903,0.313626050949097,0.829477906227112,0.315814942121506,0.910988092422485,0.38159105181694,0.934700965881348,0.391272008419037,0.921126961708069,0.370323002338409,0.898669123649597,0.362346053123474,0.921126961708069,0.370323002338409,0.90755295753479,0.349373996257782,0.884895026683807,0.343131989240646,0.898669123649597,0.362346053123474,0.884895026683807,0.343131989240646,0.863541185855865,0.337092071771622,0.876990020275116,0.355100989341736,0.898669123649597,0.362346053123474,0.868884027004242, +0.366432011127472,0.889160871505737,0.373210936784744,0.876990020275116,0.355100989341736,0.856866002082825,0.349319040775299,0.876990020275116,0.355100989341736,0.863541185855865,0.337092071771622,0.843689978122711,0.33236899971962,0.856866002082825,0.349319040775299,0.843689978122711,0.33236899971962,0.82582700252533,0.32920503616333,0.838752090930939,0.345178991556168,0.856866002082825,0.349319040775299,0.930532217025757,0.418354988098145,0.952960848808289,0.429154932498932,0.943830966949463,0.410212993621826,0.921501994132996,0.400243014097214,0.943830966949463,0.410212993621826,0.934700965881348,0.391272008419037,0.910988092422485,0.38159105181694,0.921501994132996,0.400243014097214,0.910988092422485,0.38159105181694,0.889160871505737,0.373210936784744,0.899866998195648,0.391065001487732,0.921501994132996,0.400243014097214,0.917267024517059,0.425794988870621,0.924144983291626,0.442734003067017,0.945116996765137,0.453285992145538,0.938396751880646,0.435977876186371,0.945116996765137,0.453285992145538,0.967273831367493,0.46454992890358,0.960116982460022,0.446853011846542,0.938396751880646,0.435977876186371,0.960116982460022,0.446853011846542,0.952960848808289,0.429154932498932,0.930532217025757,0.418354988098145,0.938396751880646,0.435977876186371,0.889093995094299,0.400356948375702,0.909204006195068,0.408610939979553,0.899866998195648,0.391065001487732,0.879621207714081,0.383474051952362,0.899866998195648,0.391065001487732,0.889160871505737,0.373210936784744,0.868884027004242,0.366432011127472,0.879621207714081,0.383474051952362,0.868884027004242,0.366432011127472,0.850604057312012,0.361371070146561,0.86129093170166,0.377604961395264,0.879621207714081,0.383474051952362,0.929925084114075,0.459544986486435,0.934599101543427,0.476232051849365,0.955096006393433,0.48742800951004,0.950711011886597,0.470450013875961,0.955096006393433,0.48742800951004,0.976952016353607,0.499360024929047,0.972113013267517,0.48195493221283,0.950711011886597,0.470450013875961,0.972113013267517,0.48195493221283,0.967273831367493,0.46454992890358, +0.945116996765137,0.453285992145538,0.950711011886597,0.470450013875961,0.90438312292099,0.433459043502808,0.924144983291626,0.442734003067017,0.917267024517059,0.425794988870621,0.89731901884079,0.416992008686066,0.917267024517059,0.425794988870621,0.909204006195068,0.408610939979553,0.889093995094299,0.400356948375702,0.89731901884079,0.416992008686066,0.889093995094299,0.400356948375702,0.870806932449341,0.393777936697006,0.879145920276642,0.409786999225616,0.89731901884079,0.416992008686066,0.938154101371765,0.492801070213318,0.940731048583984,0.509362995624542,0.960290014743805,0.520960986614227,0.958187103271484,0.504174113273621,0.960290014743805,0.520960986614227,0.980614066123962,0.532685995101929,0.978782892227173,0.516022920608521,0.958187103271484,0.504174113273621,0.978782892227173,0.516022920608521,0.976952016353607,0.499360024929047,0.955096006393433,0.48742800951004,0.958187103271484,0.504174113273621,0.915315985679626,0.466140061616898,0.934599101543427,0.476232051849365,0.929925084114075,0.459544986486435,0.910372018814087,0.449837952852249,0.929925084114075,0.459544986486435,0.924144983291626,0.442734003067017,0.90438312292099,0.433459043502808,0.910372018814087,0.449837952852249,0.90438312292099,0.433459043502808,0.886377036571503,0.425695985555649,0.892567098140717,0.441573083400726,0.910372018814087,0.449837952852249,0.942471981048584,0.526031017303467,0.943222880363464,0.542814970016479,0.962199985980988,0.555469989776611,0.961710870265961,0.538057923316956,0.962199985980988,0.555469989776611,0.98232901096344,0.568279027938843,0.981471002101898,0.550481975078583,0.961710870265961,0.538057923316956,0.981471002101898,0.550481975078583,0.980614066123962,0.532685995101929,0.960290014743805,0.520960986614227,0.961710870265961,0.538057923316956,0.922213971614838,0.498582929372787,0.940731048583984,0.509362995624542,0.938154101371765,0.492801070213318,0.919246017932892,0.482376009225845,0.938154101371765,0.492801070213318,0.934599101543427,0.476232051849365,0.915315985679626,0.466140061616898,0.919246017932892, +0.482376009225845,0.915315985679626,0.466140061616898,0.897756218910217,0.457413077354431,0.901983022689819,0.473213016986847,0.919246017932892,0.482376009225845,0.942830979824066,0.559723973274231,0.941311061382294,0.576426029205322,0.959558010101318,0.590735971927643,0.961509883403778,0.573198974132538,0.959558010101318,0.590735971927643,0.979162991046906,0.606033027172089,0.980745911598206,0.587155997753143,0.961509883403778,0.573198974132538,0.980745911598206,0.587155997753143,0.98232901096344,0.568279027938843,0.962199985980988,0.555469989776611,0.961509883403778,0.573198974132538,0.925327003002167,0.531008958816528,0.943222880363464,0.542814970016479,0.942471981048584,0.526031017303467,0.924275994300842,0.514796018600464,0.942471981048584,0.526031017303467,0.940731048583984,0.509362995624542,0.922213971614838,0.498582929372787,0.924275994300842,0.514796018600464,0.922213971614838,0.498582929372787,0.905264019966125,0.488976925611496,0.907615959644318,0.504714012145996,0.924275994300842,0.514796018600464,0.93868100643158,0.592588007450104,0.935082972049713,0.608123004436493,0.951969027519226,0.623525023460388,0.956260919570923,0.607572019100189,0.951969027519226,0.623525023460388,0.969552755355835,0.640332937240601,0.974358022212982,0.623183012008667,0.956260919570923,0.607572019100189,0.974358022212982,0.623183012008667,0.979162991046906,0.606033027172089,0.959558010101318,0.590735971927643,0.956260919570923,0.607572019100189,0.924171149730682,0.563226103782654,0.941311061382294,0.576426029205322,0.942830979824066,0.559723973274231,0.925262868404388,0.547213912010193,0.942830979824066,0.559723973274231,0.943222880363464,0.542814970016479,0.925327003002167,0.531008958816528,0.925262868404388,0.547213912010193,0.925327003002167,0.531008958816528,0.908967852592468,0.52039498090744,0.90925008058548,0.53599214553833,0.925262868404388,0.547213912010193,0.930662989616394,0.622946977615356,0.925431966781616,0.637273013591766,0.941280901432037,0.652642011642456,0.947032928466797,0.638414978981018,0.941280901432037,0.652642011642456, +0.958240866661072,0.668592929840088,0.963896989822388,0.654462993144989,0.947032928466797,0.638414978981018,0.963896989822388,0.654462993144989,0.969552755355835,0.640332937240601,0.951969027519226,0.623525023460388,0.947032928466797,0.638414978981018,0.919170022010803,0.594022989273071,0.935082972049713,0.608123004436493,0.93868100643158,0.592588007450104,0.922136008739471,0.578858017921448,0.93868100643158,0.592588007450104,0.941311061382294,0.576426029205322,0.924171149730682,0.563226103782654,0.922136008739471,0.578858017921448,0.924171149730682,0.563226103782654,0.908576846122742,0.551422953605652,0.907058954238892,0.566604018211365,0.922136008739471,0.578858017921448,0.901292979717255,0.59577602148056,0.897112965583801,0.609780967235565,0.910574853420258,0.622847020626068,0.915282011032104,0.608636021614075,0.910574853420258,0.622847020626068,0.925431966781616,0.637273013591766,0.930662989616394,0.622946977615356,0.915282011032104,0.608636021614075,0.930662989616394,0.622946977615356,0.935082972049713,0.608123004436493,0.919170022010803,0.594022989273071,0.915282011032104,0.608636021614075,0.926918029785156,0.680264055728912,0.942016124725342,0.695973992347717,0.950127959251404,0.6822829246521,0.934542000293732,0.666604995727539,0.950127959251404,0.6822829246521,0.958240866661072,0.668592929840088,0.941280901432037,0.652642011642456,0.934542000293732,0.666604995727539,0.941280901432037,0.652642011642456,0.925431966781616,0.637273013591766,0.919401943683624,0.651315927505493,0.934542000293732,0.666604995727539,0.892228007316589,0.623564004898071,0.886572003364563,0.637187004089355,0.898926019668579,0.650562882423401,0.905151009559631,0.636806011199951,0.898926019668579,0.650562882423401,0.91253000497818,0.665102005004883,0.919401943683624,0.651315927505493,0.905151009559631,0.636806011199951,0.919401943683624,0.651315927505493,0.925431966781616,0.637273013591766,0.910574853420258,0.622847020626068,0.905151009559631,0.636806011199951,0.894969999790192,0.541304886341095,0.883381903171539,0.532896995544434,0.882631003856659, +0.547196984291077,0.893881976604462,0.556052088737488,0.882631003856659,0.547196984291077,0.881047070026398,0.561316013336182,0.891937017440796,0.570533871650696,0.893881976604462,0.556052088737488,0.891937017440796,0.570533871650696,0.904647886753082,0.581424951553345,0.907058954238892,0.566604018211365,0.893881976604462,0.556052088737488,0.878652989864349,0.575232982635498,0.875483870506287,0.58890289068222,0.885450899600983,0.598491013050079,0.88909900188446,0.584660887718201,0.885450899600983,0.598491013050079,0.897112965583801,0.609780967235565,0.901292979717255,0.59577602148056,0.88909900188446,0.584660887718201,0.901292979717255,0.59577602148056,0.904647886753082,0.581424951553345,0.891937017440796,0.570533871650696,0.88909900188446,0.584660887718201,0.909003913402557,0.70678585767746,0.92324697971344,0.721463024616241,0.932631969451904,0.708718001842499,0.918506979942322,0.69357693195343,0.932631969451904,0.708718001842499,0.942016124725342,0.695973992347717,0.926918029785156,0.680264055728912,0.918506979942322,0.69357693195343,0.926918029785156,0.680264055728912,0.91253000497818,0.665102005004883,0.904772996902466,0.67865401506424,0.918506979942322,0.69357693195343,0.880078017711639,0.650712013244629,0.872696042060852,0.664249062538147,0.883770108222961,0.677738130092621,0.891816973686218,0.664168953895569,0.883770108222961,0.677738130092621,0.896005988121033,0.692122936248779,0.904772996902466,0.67865401506424,0.891816973686218,0.664168953895569,0.904772996902466,0.67865401506424,0.91253000497818,0.665102005004883,0.898926019668579,0.650562882423401,0.891816973686218,0.664168953895569,0.8715740442276,0.602280974388123,0.866910994052887,0.615464985370636,0.875929951667786,0.625513970851898,0.881071925163269,0.612082004547119,0.875929951667786,0.625513970851898,0.886572003364563,0.637187004089355,0.892228007316589,0.623564004898071,0.881071925163269,0.612082004547119,0.892228007316589,0.623564004898071,0.897112965583801,0.609780967235565,0.885450899600983,0.598491013050079,0.881071925163269,0.612082004547119, +0.886088013648987,0.732926964759827,0.8975590467453,0.747945070266724,0.91040313243866,0.73470413684845,0.89809912443161,0.720131099224091,0.91040313243866,0.73470413684845,0.92324697971344,0.721463024616241,0.909003913402557,0.70678585767746,0.89809912443161,0.720131099224091,0.909003913402557,0.70678585767746,0.896005988121033,0.692122936248779,0.886105120182037,0.705655992031097,0.89809912443161,0.720131099224091,0.864377975463867,0.677909016609192,0.855153977870941,0.691522061824799,0.864715874195099,0.704779028892517,0.874732971191406,0.691380023956299,0.864715874195099,0.704779028892517,0.875140011310577,0.71875411272049,0.886105120182037,0.705655992031097,0.874732971191406,0.691380023956299,0.886105120182037,0.705655992031097,0.896005988121033,0.692122936248779,0.883770108222961,0.677738130092621,0.874732971191406,0.691380023956299,0.8614821434021,0.628551006317139,0.855168104171753,0.641739130020142,0.863183975219727,0.652272999286652,0.869991064071655,0.638870000839233,0.863183975219727,0.652272999286652,0.872696042060852,0.664249062538147,0.880078017711639,0.650712013244629,0.869991064071655,0.638870000839233,0.880078017711639,0.650712013244629,0.886572003364563,0.637187004089355,0.875929951667786,0.625513970851898,0.869991064071655,0.638870000839233,0.859609007835388,0.756128013134003,0.869791865348816,0.768453896045685,0.883675992488861,0.75819993019104,0.873267948627472,0.744490027427673,0.883675992488861,0.75819993019104,0.8975590467453,0.747945070266724,0.886088013648987,0.732926964759827,0.873267948627472,0.744490027427673,0.886088013648987,0.732926964759827,0.875140011310577,0.71875411272049,0.863179802894592,0.730915904045105,0.873267948627472,0.744490027427673,0.845055997371674,0.704913020133972,0.834200024604797,0.71825098991394,0.841974020004272,0.730394065380096,0.853729009628296,0.717616021633148,0.841974020004272,0.730394065380096,0.850422024726868,0.743056118488312,0.863179802894592,0.730915904045105,0.853729009628296,0.717616021633148,0.863179802894592,0.730915904045105,0.875140011310577, +0.71875411272049,0.864715874195099,0.704779028892517,0.853729009628296,0.717616021633148,0.847849011421204,0.65522700548172,0.839611887931824,0.668893873691559,0.846792995929718,0.679499983787537,0.855436265468597,0.665848135948181,0.846792995929718,0.679499983787537,0.855153977870941,0.691522061824799,0.864377975463867,0.677909016609192,0.855436265468597,0.665848135948181,0.864377975463867,0.677909016609192,0.872696042060852,0.664249062538147,0.863183975219727,0.652272999286652,0.855436265468597,0.665848135948181,0.856455028057098,0.586687982082367,0.853068232536316,0.599366128444672,0.859423160552979,0.606960117816925,0.863627016544342,0.594084024429321,0.859423160552979,0.606960117816925,0.866910994052887,0.615464985370636,0.8715740442276,0.602280974388123,0.863627016544342,0.594084024429321,0.8715740442276,0.602280974388123,0.875483870506287,0.58890289068222,0.867111921310425,0.580940008163452,0.863627016544342,0.594084024429321,0.848211109638214,0.611489117145538,0.843353986740112,0.623612999916077,0.848580002784729,0.632574021816254,0.854471981525421,0.619663000106812,0.848580002784729,0.632574021816254,0.855168104171753,0.641739130020142,0.8614821434021,0.628551006317139,0.854471981525421,0.619663000106812,0.8614821434021,0.628551006317139,0.866910994052887,0.615464985370636,0.859423160552979,0.606960117816925,0.854471981525421,0.619663000106812,0.878652989864349,0.575232982635498,0.881047070026398,0.561316013336182,0.871986985206604,0.553740978240967,0.869906008243561,0.567433953285217,0.871986985206604,0.553740978240967,0.864172875881195,0.546886920928955,0.862007021903992,0.560449004173279,0.869906008243561,0.567433953285217,0.862007021903992,0.560449004173279,0.85984194278717,0.574010968208313,0.867111921310425,0.580940008163452,0.869906008243561,0.567433953285217,0.835909903049469,0.637655973434448,0.828464865684509,0.65169894695282,0.833589911460876,0.659880876541138,0.841556131839752,0.646073997020721,0.833589911460876,0.659880876541138,0.839611887931824,0.668893873691559,0.847849011421204,0.65522700548172, +0.841556131839752,0.646073997020721,0.847849011421204,0.65522700548172,0.855168104171753,0.641739130020142,0.848580002784729,0.632574021816254,0.841556131839752,0.646073997020721,0.873844981193542,0.526225984096527,0.865848004817963,0.520551979541779,0.865010023117065,0.533720016479492,0.873333036899567,0.540035128593445,0.865010023117065,0.533720016479492,0.864172875881195,0.546886920928955,0.871986985206604,0.553740978240967,0.873333036899567,0.540035128593445,0.871986985206604,0.553740978240967,0.881047070026398,0.561316013336182,0.882631003856659,0.547196984291077,0.873333036899567,0.540035128593445,0.894600868225098,0.511314868927002,0.882312119007111,0.503850102424622,0.883274853229523,0.51843798160553,0.895236015319824,0.526380002498627,0.883274853229523,0.51843798160553,0.883381903171539,0.532896995544434,0.894969999790192,0.541304886341095,0.895236015319824,0.526380002498627,0.894969999790192,0.541304886341095,0.908576846122742,0.551422953605652,0.90925008058548,0.53599214553833,0.895236015319824,0.526380002498627,0.872184932231903,0.498078972101212,0.863401055335999,0.4931960105896,0.8646240234375,0.506874024868011,0.873423039913177,0.512224018573761,0.8646240234375,0.506874024868011,0.865848004817963,0.520551979541779,0.873844981193542,0.526225984096527,0.873423039913177,0.512224018573761,0.873844981193542,0.526225984096527,0.883381903171539,0.532896995544434,0.883274853229523,0.51843798160553,0.873423039913177,0.512224018573761,0.890405893325806,0.480901956558228,0.877767145633698,0.474411070346832,0.88049191236496,0.489161998033524,0.892983973026276,0.496143966913223,0.88049191236496,0.489161998033524,0.882312119007111,0.503850102424622,0.894600868225098,0.511314868927002,0.892983973026276,0.496143966913223,0.894600868225098,0.511314868927002,0.908967852592468,0.52039498090744,0.907615959644318,0.504714012145996,0.892983973026276,0.496143966913223,0.867474138736725,0.469560027122498,0.858857989311218,0.46551901102066,0.861129999160767,0.479357987642288,0.870248019695282,0.483844101428986,0.861129999160767, +0.479357987642288,0.863401055335999,0.4931960105896,0.872184932231903,0.498078972101212,0.870248019695282,0.483844101428986,0.872184932231903,0.498078972101212,0.882312119007111,0.503850102424622,0.88049191236496,0.489161998033524,0.870248019695282,0.483844101428986,0.88242506980896,0.450317025184631,0.869458913803101,0.444840967655182,0.874086856842041,0.459632933139801,0.886884927749634,0.465621948242188,0.874086856842041,0.459632933139801,0.877767145633698,0.474411070346832,0.890405893325806,0.480901956558228,0.886884927749634,0.465621948242188,0.890405893325806,0.480901956558228,0.905264019966125,0.488976925611496,0.901983022689819,0.473213016986847,0.886884927749634,0.465621948242188,0.858995974063873,0.44097501039505,0.850291132926941,0.43792599439621,0.854574978351593,0.451723009347916,0.863722026348114,0.455271005630493,0.854574978351593,0.451723009347916,0.858857989311218,0.46551901102066,0.867474138736725,0.469560027122498,0.863722026348114,0.455271005630493,0.867474138736725,0.469560027122498,0.877767145633698,0.474411070346832,0.874086856842041,0.459632933139801,0.863722026348114,0.455271005630493,0.870673000812531,0.419681012630463,0.857419013977051,0.41531902551651,0.863891005516052,0.430049061775208,0.877027094364166,0.434996008872986,0.863891005516052,0.430049061775208,0.869458913803101,0.444840967655182,0.88242506980896,0.450317025184631,0.877027094364166,0.434996008872986,0.88242506980896,0.450317025184631,0.897756218910217,0.457413077354431,0.892567098140717,0.441573083400726,0.877027094364166,0.434996008872986,0.846764981746674,0.412517011165619,0.837665021419525,0.410246014595032,0.843978106975555,0.424086034297943,0.853299021720886,0.426674008369446,0.843978106975555,0.424086034297943,0.850291132926941,0.43792599439621,0.858995974063873,0.44097501039505,0.853299021720886,0.426674008369446,0.858995974063873,0.44097501039505,0.869458913803101,0.444840967655182,0.863891005516052,0.430049061775208,0.853299021720886,0.426674008369446,0.854947924613953,0.389055967330933,0.841705024242401,0.386092990636826, +0.850078999996185,0.400713980197906,0.863342046737671,0.404393017292023,0.850078999996185,0.400713980197906,0.857419013977051,0.41531902551651,0.870673000812531,0.419681012630463,0.863342046737671,0.404393017292023,0.870673000812531,0.419681012630463,0.886377036571503,0.425695985555649,0.879145920276642,0.409786999225616,0.863342046737671,0.404393017292023,0.831262826919556,0.384786933660507,0.823010921478271,0.384545981884003,0.83033812046051,0.39739602804184,0.839529991149902,0.398651003837585,0.83033812046051,0.39739602804184,0.837665021419525,0.410246014595032,0.846764981746674,0.412517011165619,0.839529991149902,0.398651003837585,0.846764981746674,0.412517011165619,0.857419013977051,0.41531902551651,0.850078999996185,0.400713980197906,0.839529991149902,0.398651003837585,0.834767997264862,0.35814905166626,0.821521997451782,0.356599986553192,0.832127869129181,0.3713139295578,0.845404028892517,0.373594999313354,0.832127869129181,0.3713139295578,0.841705024242401,0.386092990636826,0.854947924613953,0.389055967330933,0.845404028892517,0.373594999313354,0.854947924613953,0.389055967330933,0.870806932449341,0.393777936697006,0.86129093170166,0.377604961395264,0.845404028892517,0.373594999313354,0.811012029647827,0.356557011604309,0.802039980888367,0.356959998607635,0.812525987625122,0.370752990245819,0.821632027626038,0.370633989572525,0.812525987625122,0.370752990245819,0.823010921478271,0.384545981884003,0.831262826919556,0.384786933660507,0.821632027626038,0.370633989572525,0.831262826919556,0.384786933660507,0.841705024242401,0.386092990636826,0.832127869129181,0.3713139295578,0.821632027626038,0.370633989572525,0.810437977313995,0.327840000391006,0.797675967216492,0.328067988157272,0.810060977935791,0.342170059680939,0.823102116584778,0.342858016490936,0.810060977935791,0.342170059680939,0.821521997451782,0.356599986553192,0.834767997264862,0.35814905166626,0.823102116584778,0.342858016490936,0.834767997264862,0.35814905166626,0.850604057312012,0.361371070146561,0.838752090930939,0.345178991556168,0.823102116584778, +0.342858016490936,0.787696003913879,0.329685986042023,0.779698014259338,0.331838995218277,0.790868997573853,0.344399988651276,0.799776017665863,0.342923998832703,0.790868997573853,0.344399988651276,0.802039980888367,0.356959998607635,0.811012029647827,0.356557011604309,0.799776017665863,0.342923998832703,0.811012029647827,0.356557011604309,0.821521997451782,0.356599986553192,0.810060977935791,0.342170059680939,0.799776017665863,0.342923998832703,0.782707989215851,0.299309968948364,0.770452797412872,0.301307946443558,0.784297943115234,0.314339995384216,0.796810030937195,0.313208997249603,0.784297943115234,0.314339995384216,0.797675967216492,0.328067988157272,0.810437977313995,0.327840000391006,0.796810030937195,0.313208997249603,0.810437977313995,0.327840000391006,0.82582700252533,0.32920503616333,0.811922132968903,0.313626050949097,0.796810030937195,0.313208997249603,0.760838985443115,0.304554998874664,0.752628087997437,0.307978987693787,0.766162991523743,0.319909036159515,0.774542152881622,0.316794067621231,0.766162991523743,0.319909036159515,0.779698014259338,0.331838995218277,0.787696003913879,0.329685986042023,0.774542152881622,0.316794067621231,0.787696003913879,0.329685986042023,0.797675967216492,0.328067988157272,0.784297943115234,0.314339995384216,0.774542152881622,0.316794067621231,0.750861525535583,0.271772146224976,0.739470839500427,0.275651395320892,0.756665885448456,0.289297014474869,0.768620848655701,0.286482930183411,0.756665885448456,0.289297014474869,0.770452797412872,0.301307946443558,0.782707989215851,0.299309968948364,0.768620848655701,0.286482930183411,0.782707989215851,0.299309968948364,0.797487020492554,0.298797011375427,0.782972812652588,0.28507199883461,0.768620848655701,0.286482930183411,0.756665885448456,0.289297014474869,0.739470839500427,0.275651395320892,0.73037713766098,0.280717730522156,0.747113943099976,0.293274998664856,0.73037713766098,0.280717730522156,0.721700429916382,0.285606265068054,0.738763093948364,0.297834992408752,0.747113943099976,0.293274998664856,0.738763093948364,0.297834992408752, +0.752628087997437,0.307978987693787,0.760838985443115,0.304554998874664,0.747113943099976,0.293274998664856,0.739470839500427,0.275651395320892,0.750861525535583,0.271772146224976,0.729098081588745,0.255113989114761,0.718622982501984,0.260405004024506,0.986315011978149,0.0191639997065067,0.991024971008301,0.00566700007766485,0.971789121627808,0.00600699987262487,0.969581127166748,0.0191440023481846,0.391721963882446,0.718421995639801,0.40599200129509,0.714070081710815,0.416014015674591,0.731798112392426,0.399500072002411,0.733842134475708,0.689944267272949,0.267028480768204,0.704292118549347,0.274253010749817,0.710744976997375,0.267123013734818,0.699417948722839,0.26028299331665,0.68292498588562,0.238364994525909,0.669553935527802,0.23089599609375,0.662476003170013,0.240725994110107,0.675747990608215,0.247396022081375,0.662476003170013,0.240725994110107,0.65753698348999,0.251572996377945,0.67010486125946,0.257404953241348,0.675747990608215,0.247396022081375,0.653496980667114,0.222157999873161,0.633455991744995,0.211217001080513,0.631656050682068,0.227355048060417,0.647337138652802,0.23347806930542,0.631656050682068,0.227355048060417,0.630312025547028,0.24175900220871,0.643923997879028,0.246666014194489,0.647337138652802,0.23347806930542,0.643923997879028,0.246666014194489,0.65753698348999,0.251572996377945,0.662476003170013,0.240725994110107,0.647337138652802,0.23347806930542,0.613956093788147,0.210284024477005,0.598687887191772,0.209730952978134,0.602262020111084,0.22223499417305,0.616760015487671,0.224061012268066,0.602262020111084,0.22223499417305,0.606253027915955,0.235253021121025,0.618282854557037,0.238505959510803,0.616760015487671,0.224061012268066,0.618282854557037,0.238505959510803,0.630312025547028,0.24175900220871,0.631656050682068,0.227355048060417,0.616760015487671,0.224061012268066,0.565234124660492,0.190229013562202,0.571205019950867,0.208968997001648,0.584446012973785,0.209253996610641,0.577414989471436,0.188930988311768,0.584446012973785,0.209253996610641,0.571205019950867,0.208968997001648,0.574028015136719, +0.219215005636215,0.587778031826019,0.22051802277565,0.574028015136719,0.219215005636215,0.575821042060852,0.229193061590195,0.591036975383759,0.232223004102707,0.587778031826019,0.22051802277565,0.591036975383759,0.232223004102707,0.606253027915955,0.235253021121025,0.602262020111084,0.22223499417305,0.587778031826019,0.22051802277565,0.546912908554077,0.209154963493347,0.558942019939423,0.20898999273777,0.553725004196167,0.191165000200272,0.542217135429382,0.192100048065186,0.558942019939423,0.20898999273777,0.546912908554077,0.209154963493347,0.549933016300201,0.218555018305779,0.561735868453979,0.218630969524384,0.549933016300201,0.218555018305779,0.553385972976685,0.227934971451759,0.564602971076965,0.228563994169235,0.561735868453979,0.218630969524384,0.564602971076965,0.228563994169235,0.575821042060852,0.229193061590195,0.574028015136719,0.219215005636215,0.561735868453979,0.218630969524384,0.474799007177353,0.888082921504974,0.476910918951035,0.903189897537231,0.488929986953735,0.903916001319885,0.488193988800049,0.887439906597137,0.0552729964256287,0.66948413848877,0.0473910793662071,0.670179188251495,0.0479943454265594,0.6573725938797,0.0554411560297012,0.661211490631104,0.541244983673096,0.228671997785568,0.553385972976685,0.227934971451759,0.549933016300201,0.218555018305779,0.537654995918274,0.218774020671844,0.457788109779358,0.916652858257294,0.466200917959213,0.916217803955078,0.464502930641174,0.903089880943298,0.454254746437073,0.905250072479248,0.524371147155762,0.209933191537857,0.526198744773865,0.2169049680233,0.537654995918274,0.218774020671844,0.53437602519989,0.209299981594086,0.472831010818481,0.880021989345551,0.470275044441223,0.871968030929565,0.456611037254333,0.873075127601624,0.459138065576553,0.881097137928009,0.500948905944824,0.904640793800354,0.51288902759552,0.906279981136322,0.515838027000427,0.886258900165558,0.5017991065979,0.886857032775879,0.500771045684814,0.877475023269653,0.499231070280075,0.868329048156738,0.484753012657166,0.870147943496704,0.486699104309082,0.878862202167511, +0.484753012657166,0.870147943496704,0.470275044441223,0.871968030929565,0.472831010818481,0.880021989345551,0.486699104309082,0.878862202167511,0.472831010818481,0.880021989345551,0.474799007177353,0.888082921504974,0.488193988800049,0.887439906597137,0.486699104309082,0.878862202167511,0.524829983711243,0.907918930053711,0.53634911775589,0.911174058914185,0.547447025775909,0.885420024394989,0.530867993831635,0.885747134685516,0.530173003673553,0.873739004135132,0.527594983577728,0.861613988876343,0.513412892818451,0.864971995353699,0.51507306098938,0.875721096992493,0.513412892818451,0.864971995353699,0.499231070280075,0.868329048156738,0.500771045684814,0.877475023269653,0.51507306098938,0.875721096992493,0.500771045684814,0.877475023269653,0.5017991065979,0.886857032775879,0.515838027000427,0.886258900165558,0.51507306098938,0.875721096992493,0.558902144432068,0.929570198059082,0.592494010925293,0.907221138477325,0.582705020904541,0.896932005882263,0.553385078907013,0.921999037265778,0.564121007919312,0.867978990077972,0.558965981006622,0.853538990020752,0.543280005455017,0.85757702589035,0.546635985374451,0.871672093868256,0.543280005455017,0.85757702589035,0.527594983577728,0.861613988876343,0.530173003673553,0.873739004135132,0.546635985374451,0.871672093868256,0.530173003673553,0.873739004135132,0.530867993831635,0.885747134685516,0.547447025775909,0.885420024394989,0.546635985374451,0.871672093868256,0.558902144432068,0.929570198059082,0.562579989433289,0.93781304359436,0.598708093166351,0.917160093784332,0.592494010925293,0.907221138477325,0.601770997047424,0.927052855491638,0.566256999969482,0.946056008338928,0.567255973815918,0.955087065696716,0.602105855941772,0.937202751636505,0.598989009857178,0.853337943553925,0.592002987861633,0.84154200553894,0.575484097003937,0.847540140151978,0.582288980484009,0.861117005348206,0.575484097003937,0.847540140151978,0.558965981006622,0.853538990020752,0.564121007919312,0.867978990077972,0.582288980484009,0.861117005348206,0.564121007919312,0.867978990077972,0.568441987037659, +0.885397136211395,0.589947998523712,0.874083995819092,0.582288980484009,0.861117005348206,0.614791989326477,0.876462876796722,0.606943011283875,0.86496102809906,0.589947998523712,0.874083995819092,0.599316895008087,0.885833740234375,0.589947998523712,0.874083995819092,0.568441987037659,0.885397136211395,0.582705020904541,0.896932005882263,0.599316895008087,0.885833740234375,0.582705020904541,0.896932005882263,0.592494010925293,0.907221138477325,0.608119010925293,0.896765947341919,0.599316895008087,0.885833740234375,0.537967026233673,0.800957024097443,0.51170289516449,0.834031343460083,0.501441061496735,0.822685122489929,0.522193133831024,0.790151178836823,0.633189976215363,0.920300960540771,0.63104784488678,0.909299850463867,0.617466986179352,0.917698085308075,0.618551969528198,0.928334832191467,0.617466986179352,0.917698085308075,0.601770997047424,0.927052855491638,0.602105855941772,0.937202751636505,0.618551969528198,0.928334832191467,0.602105855941772,0.937202751636505,0.600679993629456,0.947512984275818,0.618486046791077,0.939082980155945,0.618551969528198,0.928334832191467,0.627234995365143,0.898541986942291,0.621800065040588,0.887704193592072,0.608119010925293,0.896765947341919,0.614078998565674,0.90728098154068,0.608119010925293,0.896765947341919,0.592494010925293,0.907221138477325,0.598708093166351,0.917160093784332,0.614078998565674,0.90728098154068,0.598708093166351,0.917160093784332,0.601770997047424,0.927052855491638,0.617466986179352,0.917698085308075,0.614078998565674,0.90728098154068,0.646917939186096,0.925303936004639,0.659263432025909,0.918955445289612,0.656750977039337,0.907382011413574,0.644994974136353,0.913873970508575,0.656750977039337,0.907382011413574,0.653746008872986,0.896061062812805,0.642313063144684,0.902622103691101,0.644994974136353,0.913873970508575,0.642313063144684,0.902622103691101,0.63104784488678,0.909299850463867,0.633189976215363,0.920300960540771,0.644994974136353,0.913873970508575,0.674232125282288,0.910265147686005,0.690922021865845,0.900575995445251,0.685737192630768,0.89065808057785, +0.671244025230408,0.899151027202606,0.685737192630768,0.89065808057785,0.681989014148712,0.879739999771118,0.667828977108002,0.888011991977692,0.671244025230408,0.899151027202606,0.667828977108002,0.888011991977692,0.653746008872986,0.896061062812805,0.656750977039337,0.907382011413574,0.671244025230408,0.899151027202606,0.642313063144684,0.902622103691101,0.653746008872986,0.896061062812805,0.649344921112061,0.885072827339172,0.638113975524902,0.891726016998291,0.649344921112061,0.885072827339172,0.643958926200867,0.874019920825958,0.632714867591858,0.880784869194031,0.638113975524902,0.891726016998291,0.632714867591858,0.880784869194031,0.621800065040588,0.887704193592072,0.627234995365143,0.898541986942291,0.638113975524902,0.891726016998291,0.667828977108002,0.888011991977692,0.681989014148712,0.879739999771118,0.677937984466553,0.868338882923126,0.663557887077332,0.876822829246521,0.677937984466553,0.868338882923126,0.673538029193878,0.856565892696381,0.658630073070526,0.86542010307312,0.663557887077332,0.876822829246521,0.658630073070526,0.86542010307312,0.643958926200867,0.874019920825958,0.649344921112061,0.885072827339172,0.663557887077332,0.876822829246521,0.637996912002563,0.862504899501801,0.631676018238068,0.851005077362061,0.619480013847351,0.857968986034393,0.626432001590729,0.869399011135101,0.619480013847351,0.857968986034393,0.606943011283875,0.86496102809906,0.614791989326477,0.876462876796722,0.626432001590729,0.869399011135101,0.614791989326477,0.876462876796722,0.621800065040588,0.887704193592072,0.632714867591858,0.880784869194031,0.626432001590729,0.869399011135101,0.625213027000427,0.839999854564667,0.616869986057281,0.830447018146515,0.604436993598938,0.835994124412537,0.612071990966797,0.846892952919006,0.604436993598938,0.835994124412537,0.592002987861633,0.84154200553894,0.598989009857178,0.853337943553925,0.612071990966797,0.846892952919006,0.598989009857178,0.853337943553925,0.606943011283875,0.86496102809906,0.619480013847351,0.857968986034393,0.612071990966797,0.846892952919006,0.659069061279297, +0.821470141410828,0.6539586186409,0.810833811759949,0.63654100894928,0.820079922676086,0.642086029052734,0.830878973007202,0.63654100894928,0.820079922676086,0.616869986057281,0.830447018146515,0.625213027000427,0.839999854564667,0.642086029052734,0.830878973007202,0.625213027000427,0.839999854564667,0.631676018238068,0.851005077362061,0.647648990154266,0.841970026493073,0.642086029052734,0.830878973007202,0.658630073070526,0.86542010307312,0.673538029193878,0.856565892696381,0.668738961219788,0.844529867172241,0.653244972229004,0.85364305973053,0.668738961219788,0.844529867172241,0.663823008537292,0.832681000232697,0.647648990154266,0.841970026493073,0.653244972229004,0.85364305973053,0.647648990154266,0.841970026493073,0.631676018238068,0.851005077362061,0.637996912002563,0.862504899501801,0.653244972229004,0.85364305973053,0.685486018657684,0.805670976638794,0.681027889251709,0.795896887779236,0.668618977069855,0.802805006504059,0.672538936138153,0.813711881637573,0.668618977069855,0.802805006504059,0.6539586186409,0.810833811759949,0.659069061279297,0.821470141410828,0.672538936138153,0.813711881637573,0.659069061279297,0.821470141410828,0.663823008537292,0.832681000232697,0.676624953746796,0.824957013130188,0.672538936138153,0.813711881637573,0.685492992401123,0.849039018154144,0.697449862957001,0.840954005718231,0.69318699836731,0.828757047653198,0.681042790412903,0.836880683898926,0.69318699836731,0.828757047653198,0.689100027084351,0.816851079463959,0.676624953746796,0.824957013130188,0.681042790412903,0.836880683898926,0.676624953746796,0.824957013130188,0.663823008537292,0.832681000232697,0.668738961219788,0.844529867172241,0.681042790412903,0.836880683898926,0.693652987480164,0.872507989406586,0.705596029758453,0.864640891551971,0.701587021350861,0.853004932403564,0.689674973487854,0.860988020896912,0.701587021350861,0.853004932403564,0.697449862957001,0.840954005718231,0.685492992401123,0.849039018154144,0.689674973487854,0.860988020896912,0.685492992401123,0.849039018154144,0.673538029193878,0.856565892696381, +0.677937984466553,0.868338882923126,0.689674973487854,0.860988020896912,0.701264023780823,0.893925130367279,0.71160501241684,0.887274026870728,0.709475994110107,0.875594019889832,0.697493016719818,0.883378982543945,0.709475994110107,0.875594019889832,0.705596029758453,0.864640891551971,0.693652987480164,0.872507989406586,0.697493016719818,0.883378982543945,0.693652987480164,0.872507989406586,0.681989014148712,0.879739999771118,0.685737192630768,0.89065808057785,0.697493016719818,0.883378982543945,0.724242925643921,0.806470990180969,0.720407009124756,0.794780015945435,0.704294979572296,0.806414008140564,0.708203971385956,0.818220019340515,0.704294979572296,0.806414008140564,0.689100027084351,0.816851079463959,0.69318699836731,0.828757047653198,0.708203971385956,0.818220019340515,0.69318699836731,0.828757047653198,0.697449862957001,0.840954005718231,0.712360143661499,0.830426096916199,0.708203971385956,0.818220019340515,0.720595002174377,0.854461133480072,0.736741185188293,0.843146204948425,0.732542037963867,0.831045150756836,0.716494143009186,0.842624008655548,0.732542037963867,0.831045150756836,0.72836697101593,0.81868189573288,0.712360143661499,0.830426096916199,0.716494143009186,0.842624008655548,0.712360143661499,0.830426096916199,0.697449862957001,0.840954005718231,0.701587021350861,0.853004932403564,0.716494143009186,0.842624008655548,0.717094004154205,0.78397798538208,0.714494109153748,0.773750066757202,0.697761118412018,0.78482311964035,0.700899004936218,0.795416951179504,0.697761118412018,0.78482311964035,0.681027889251709,0.795896887779236,0.685486018657684,0.805670976638794,0.700899004936218,0.795416951179504,0.685486018657684,0.805670976638794,0.689100027084351,0.816851079463959,0.704294979572296,0.806414008140564,0.700899004936218,0.795416951179504,0.72868800163269,0.876351952552795,0.74576997756958,0.865430951118469,0.740938007831573,0.854571998119354,0.724651992321014,0.865584909915924,0.740938007831573,0.854571998119354,0.736741185188293,0.843146204948425,0.720595002174377,0.854461133480072,0.724651992321014, +0.865584909915924,0.720595002174377,0.854461133480072,0.705596029758453,0.864640891551971,0.709475994110107,0.875594019889832,0.724651992321014,0.865584909915924,0.746686100959778,0.760812222957611,0.744356989860535,0.750570058822632,0.729424893856049,0.762159883975983,0.732387006282806,0.772385954856873,0.729424893856049,0.762159883975983,0.714494109153748,0.773750066757202,0.717094004154205,0.78397798538208,0.732387006282806,0.772385954856873,0.717094004154205,0.78397798538208,0.720407009124756,0.794780015945435,0.735634982585907,0.783080875873566,0.732387006282806,0.772385954856873,0.743614971637726,0.806952059268951,0.758203983306885,0.795095980167389,0.753898978233337,0.78287798166275,0.739454984664917,0.794712901115417,0.753898978233337,0.78287798166275,0.749980926513672,0.771359980106354,0.735634982585907,0.783080875873566,0.739454984664917,0.794712901115417,0.735634982585907,0.783080875873566,0.720407009124756,0.794780015945435,0.724242925643921,0.806470990180969,0.739454984664917,0.794712901115417,0.763447880744934,0.759661018848419,0.776018857955933,0.747865855693817,0.772001028060913,0.738152027130127,0.759901940822601,0.749427139759064,0.772001028060913,0.738152027130127,0.768988966941833,0.728819012641907,0.756672978401184,0.739695012569427,0.759901940822601,0.749427139759064,0.756672978401184,0.739695012569427,0.744356989860535,0.750570058822632,0.746686100959778,0.760812222957611,0.759901940822601,0.749427139759064,0.752129018306732,0.83187198638916,0.767067015171051,0.820447981357574,0.762664139270782,0.807744145393372,0.747877955436707,0.819467842578888,0.762664139270782,0.807744145393372,0.758203983306885,0.795095980167389,0.743614971637726,0.806952059268951,0.747877955436707,0.819467842578888,0.743614971637726,0.806952059268951,0.72836697101593,0.81868189573288,0.732542037963867,0.831045150756836,0.747877955436707,0.819467842578888,0.760305047035217,0.855430006980896,0.774839997291565,0.84542989730835,0.771205127239227,0.832834124565125,0.756250023841858,0.843775987625122,0.771205127239227,0.832834124565125, +0.767067015171051,0.820447981357574,0.752129018306732,0.83187198638916,0.756250023841858,0.843775987625122,0.752129018306732,0.83187198638916,0.736741185188293,0.843146204948425,0.740938007831573,0.854571998119354,0.756250023841858,0.843775987625122,0.80147397518158,0.809252023696899,0.796260058879852,0.796330988407135,0.781864106655121,0.808681011199951,0.786420106887817,0.821382105350494,0.781864106655121,0.808681011199951,0.767067015171051,0.820447981357574,0.771205127239227,0.832834124565125,0.786420106887817,0.821382105350494,0.771205127239227,0.832834124565125,0.774839997291565,0.84542989730835,0.790853023529053,0.833955049514771,0.786420106887817,0.821382105350494,0.77223801612854,0.782975018024445,0.785664975643158,0.770596027374268,0.780633985996246,0.758734881877899,0.767631053924561,0.770898938179016,0.780633985996246,0.758734881877899,0.776018857955933,0.747865855693817,0.763447880744934,0.759661018848419,0.767631053924561,0.770898938179016,0.763447880744934,0.759661018848419,0.749980926513672,0.771359980106354,0.753898978233337,0.78287798166275,0.767631053924561,0.770898938179016,0.787672102451324,0.735859990119934,0.798842966556549,0.723353981971741,0.793540000915527,0.71497106552124,0.7829509973526,0.726909041404724,0.793540000915527,0.71497106552124,0.787966012954712,0.708631992340088,0.778478026390076,0.718725979328156,0.7829509973526,0.726909041404724,0.778478026390076,0.718725979328156,0.768988966941833,0.728819012641907,0.772001028060913,0.738152027130127,0.7829509973526,0.726909041404724,0.79093199968338,0.783286988735199,0.785664975643158,0.770596027374268,0.77223801612854,0.782975018024445,0.777059137821198,0.795724093914032,0.77223801612854,0.782975018024445,0.758203983306885,0.795095980167389,0.762664139270782,0.807744145393372,0.777059137821198,0.795724093914032,0.762664139270782,0.807744145393372,0.767067015171051,0.820447981357574,0.781864106655121,0.808681011199951,0.777059137821198,0.795724093914032,0.830316007137299,0.782789051532745,0.823468029499054,0.769593000411987,0.809996902942657, +0.783153891563416,0.815943002700806,0.796271085739136,0.809996902942657,0.783153891563416,0.796260058879852,0.796330988407135,0.80147397518158,0.809252023696899,0.815943002700806,0.796271085739136,0.80147397518158,0.809252023696899,0.806867122650146,0.822481095790863,0.821938991546631,0.809525012969971,0.815943002700806,0.796271085739136,0.798436939716339,0.757965981960297,0.81072598695755,0.745023012161255,0.804627120494843,0.733587265014648,0.792888998985291,0.746347010135651,0.804627120494843,0.733587265014648,0.798842966556549,0.723353981971741,0.787672102451324,0.735859990119934,0.792888998985291,0.746347010135651,0.787672102451324,0.735859990119934,0.776018857955933,0.747865855693817,0.780633985996246,0.758734881877899,0.792888998985291,0.746347010135651,0.809964120388031,0.710059106349945,0.820655882358551,0.696353912353516,0.815250933170319,0.687603890895844,0.804556131362915,0.701614022254944,0.815250933170319,0.687603890895844,0.811037123203278,0.679506123065948,0.799500942230225,0.694069027900696,0.804556131362915,0.701614022254944,0.799500942230225,0.694069027900696,0.787966012954712,0.708631992340088,0.793540000915527,0.71497106552124,0.804556131362915,0.701614022254944,0.816972076892853,0.757015109062195,0.81072598695755,0.745023012161255,0.798436939716339,0.757965981960297,0.804150998592377,0.770310997962952,0.798436939716339,0.757965981960297,0.785664975643158,0.770596027374268,0.79093199968338,0.783286988735199,0.804150998592377,0.770310997962952,0.79093199968338,0.783286988735199,0.796260058879852,0.796330988407135,0.809996902942657,0.783153891563416,0.804150998592377,0.770310997962952,0.859609007835388,0.756128013134003,0.850422024726868,0.743056118488312,0.837064027786255,0.756087005138397,0.845082104206085,0.769151031970978,0.837064027786255,0.756087005138397,0.823468029499054,0.769593000411987,0.830316007137299,0.782789051532745,0.845082104206085,0.769151031970978,0.830316007137299,0.782789051532745,0.837010979652405,0.796570062637329,0.853402018547058,0.782511949539185,0.845082104206085,0.769151031970978, +0.841974020004272,0.730394065380096,0.834200024604797,0.71825098991394,0.822702169418335,0.731703102588654,0.829651117324829,0.743618071079254,0.822702169418335,0.731703102588654,0.81072598695755,0.745023012161255,0.816972076892853,0.757015109062195,0.829651117324829,0.743618071079254,0.816972076892853,0.757015109062195,0.823468029499054,0.769593000411987,0.837064027786255,0.756087005138397,0.829651117324829,0.743618071079254,0.830542922019958,0.682618021965027,0.820655882358551,0.696353912353516,0.82703310251236,0.706736922264099,0.837298989295959,0.693132996559143,0.82703310251236,0.706736922264099,0.834200024604797,0.71825098991394,0.845055997371674,0.704913020133972,0.837298989295959,0.693132996559143,0.845055997371674,0.704913020133972,0.855153977870941,0.691522061824799,0.846792995929718,0.679499983787537,0.837298989295959,0.693132996559143,0.822702169418335,0.731703102588654,0.834200024604797,0.71825098991394,0.82703310251236,0.706736922264099,0.816076040267944,0.720301985740662,0.82703310251236,0.706736922264099,0.820655882358551,0.696353912353516,0.809964120388031,0.710059106349945,0.816076040267944,0.720301985740662,0.809964120388031,0.710059106349945,0.798842966556549,0.723353981971741,0.804627120494843,0.733587265014648,0.816076040267944,0.720301985740662,0.819751024246216,0.665603041648865,0.811037123203278,0.679506123065948,0.815250933170319,0.687603890895844,0.824874997138977,0.673708915710449,0.815250933170319,0.687603890895844,0.820655882358551,0.696353912353516,0.830542922019958,0.682618021965027,0.824874997138977,0.673708915710449,0.830542922019958,0.682618021965027,0.839611887931824,0.668893873691559,0.833589911460876,0.659880876541138,0.824874997138977,0.673708915710449,0.921917974948883,0.0201299991458654,0.945749998092651,0.0196369998157024,0.949217021465302,0.00675999978557229,0.92664510011673,0.00751300062984228,0.921917974948883,0.0201299991458654,0.92664510011673,0.00751300062984228,0.903762996196747,0.0084610003978014,0.900996088981628,0.0189290009438992,0.829451858997345,0.00964299775660038, +0.827093958854675,0.0173460002988577,0.853583931922913,0.017536997795105,0.855166971683502,0.00952500011771917,0.829451858997345,0.00964299775660038,0.806387066841125,0.00921399984508753,0.80320405960083,0.0172189995646477,0.827093958854675,0.0173460002988577,0.783321976661682,0.00878500007092953,0.762305974960327,0.00860800035297871,0.758427977561951,0.017043000087142,0.779312968254089,0.0170909985899925,0.741289019584656,0.00843000039458275,0.720457017421722,0.00827199965715408,0.717589974403381,0.0167820006608963,0.737541913986206,0.0169939994812012,0.69962602853775,0.00811299961060286,0.678897023200989,0.00761799979954958,0.677954077720642,0.0162979997694492,0.697638988494873,0.0165699981153011,0.658167004585266,0.00712200021371245,0.63612300157547,0.0069050001911819,0.635779142379761,0.0158410035073757,0.658268928527832,0.0160259995609522,0.614078044891357,0.00668800109997392,0.589733004570007,0.0067689991556108,0.589318990707397,0.0154360020533204,0.613288998603821,0.0156560000032187,0.517349004745483,0.00663299998268485,0.518700003623962,0.0156609993427992,0.542025029659271,0.015437999740243,0.541369020938873,0.00674099987372756,0.476448059082031,0.00661800056695938,0.477964997291565,0.01570999994874,0.498332917690277,0.015684999525547,0.496897995471954,0.00662600016221404,0.432633996009827,0.00672899931669235,0.43335497379303,0.0154969999566674,0.455659985542297,0.0156030021607876,0.454540967941284,0.00667400006204844,0.389147013425827,0.00693899998441339,0.39002200961113,0.0153339998796582,0.411689013242722,0.0154149997979403,0.410891056060791,0.0068340003490448,0.337830007076263,0.00647700019180775,0.338277012109756,0.0151599999517202,0.364149928092957,0.0152469966560602,0.363488972187042,0.00670799985527992,0.289784014225006,0.00636999914422631,0.290435016155243,0.0153209995478392,0.314356029033661,0.0152399996295571,0.313807010650635,0.00642400048673153,0.23150897026062,0.0074919993057847,0.233606994152069,0.0152329979464412,0.262021005153656,0.015277000144124,0.260645985603333,0.00693099945783615,0.179405003786087, +0.00710100028663874,0.181423991918564,0.0157970003783703,0.207515001296997,0.0155149977654219,0.205457001924515,0.00729699991643429,0.128158003091812,0.00729099893942475,0.13018000125885,0.0166059993207455,0.155801996588707,0.0162010006606579,0.153781965374947,0.00719599891453981,0.0840649977326393,0.00633500004187226,0.0847740024328232,0.0178989991545677,0.107476986944675,0.0172519963234663,0.106111988425255,0.0068129999563098,0.0840649977326393,0.00633500004187226,0.0591939985752106,0.00600899988785386,0.0601900070905685,0.0186529997736216,0.0847740024328232,0.0178989991545677,0.0343220010399818,0.00568300019949675,0.0217989981174469,0.00565299950540066,0.0201621539890766,0.01976702734828,0.0356049984693527,0.0194080043584108,0.25156843662262,0.57788872718811,0.256388008594513,0.585099995136261,0.283087015151978,0.584102094173431,0.282458990812302,0.573767006397247,0.271122008562088,0.609583020210266,0.273786008358002,0.61863386631012,0.284745991230011,0.620863974094391,0.284512013196945,0.611811995506287,0.277741998434067,0.628527164459229,0.280423939228058,0.641109585762024,0.286129772663116,0.635592997074127,0.285253047943115,0.628229022026062,0.281558007001877,0.554219007492065,0.236315369606018,0.56401252746582,0.244590029120445,0.571578025817871,0.281830012798309,0.563432991504669,0.280423939228058,0.641109585762024,0.286895632743835,0.642228007316589,0.286129772663116,0.635592997074127,0.234081983566284,0.519941210746765,0.279934912919998,0.514835119247437,0.279667019844055,0.497521996498108,0.233660250902176,0.506549000740051,0.192076176404953,0.531404972076416,0.181962996721268,0.535569071769714,0.199435338377953,0.541890025138855,0.192076176404953,0.531404972076416,0.199435338377953,0.541890025138855,0.23498871922493,0.528504550457001,0.234081983566284,0.519941210746765,0.278811007738113,0.467083990573883,0.278003990650177,0.449043989181519,0.232636496424675,0.461707472801208,0.233080744743347,0.479259759187698,0.279619008302689,0.485123008489609,0.278811007738113,0.467083990573883,0.233080744743347,0.479259759187698, +0.233413010835648,0.494899272918701,0.189520001411438,0.509221971035004,0.18945400416851,0.493795931339264,0.182348012924194,0.49734503030777,0.182511985301971,0.51588499546051,0.234081983566284,0.519941210746765,0.233660250902176,0.506549000740051,0.189451992511749,0.520060002803802,0.192076176404953,0.531404972076416,0.232636496424675,0.461707472801208,0.278003990650177,0.449043989181519,0.276962041854858,0.43118605017662,0.232050985097885,0.444320976734161,0.276962041854858,0.43118605017662,0.275918960571289,0.413327932357788,0.231372743844986,0.426821023225784,0.232050985097885,0.444320976734161,0.233413010835648,0.494899272918701,0.233080744743347,0.479259759187698,0.18945400416851,0.493795931339264,0.189520001411438,0.509221971035004,0.189273029565811,0.476176023483276,0.188994988799095,0.458761006593704,0.181941002607346,0.461403995752335,0.182184994220734,0.478803992271423,0.232636496424675,0.461707472801208,0.232050985097885,0.444320976734161,0.188994988799095,0.458761006593704,0.189273029565811,0.476176023483276,0.188653007149696,0.440822929143906,0.231372743844986,0.426821023225784,0.230652987957001,0.408928722143173,0.188279002904892,0.421634018421173,0.188653007149696,0.440822929143906,0.188279002904892,0.421634018421173,0.181403994560242,0.423830986022949,0.181697964668274,0.44400292634964,0.275918960571289,0.413327932357788,0.275092005729675,0.396380007266998,0.230652987957001,0.408928722143173,0.231372743844986,0.426821023225784,0.275092005729675,0.396380007266998,0.274264007806778,0.379431009292603,0.22988224029541,0.391220510005951,0.230652987957001,0.408928722143173,0.273387014865875,0.366026997566223,0.272509008646011,0.352622985839844,0.228338986635208,0.356299221515656,0.229055002331734,0.374271512031555,0.22988224029541,0.391220510005951,0.274264007806778,0.379431009292603,0.273387014865875,0.366026997566223,0.229055002331734,0.374271512031555,0.272116005420685,0.331628024578094,0.271723002195358,0.3106330037117,0.227719008922577,0.313837498426437,0.227904513478279,0.335521042346954,0.228338986635208, +0.356299221515656,0.272509008646011,0.352622985839844,0.272116005420685,0.331628024578094,0.227904513478279,0.335521042346954,0.187864974141121,0.401705950498581,0.22988224029541,0.391220510005951,0.229055002331734,0.374271512031555,0.187407001852989,0.381546974182129,0.187864974141121,0.401705950498581,0.187407001852989,0.381546974182129,0.180750012397766,0.382705986499786,0.181109964847565,0.403657972812653,0.272020936012268,0.289970934391022,0.272320002317429,0.269309043884277,0.228006035089493,0.272848546504974,0.22774975001812,0.293149530887604,0.227719008922577,0.313837498426437,0.271723002195358,0.3106330037117,0.272020936012268,0.289970934391022,0.22774975001812,0.293149530887604,0.228338986635208,0.356299221515656,0.227904513478279,0.335521042346954,0.186945006251335,0.337920010089874,0.187051028013229,0.360503047704697,0.273037999868393,0.249282002449036,0.273755997419357,0.229255020618439,0.229219749569893,0.232324749231339,0.228495270013809,0.252325266599655,0.228006035089493,0.272848546504974,0.272320002317429,0.269309043884277,0.273037999868393,0.249282002449036,0.228495270013809,0.252325266599655,0.187051028013229,0.360503047704697,0.186945006251335,0.337920010089874,0.180492967367172,0.338212937116623,0.180389001965523,0.36175400018692,0.227719008922577,0.313837498426437,0.22774975001812,0.293149530887604,0.187169969081879,0.294655978679657,0.187011003494263,0.315427958965302,0.27492493391037,0.211423963308334,0.27609395980835,0.193592995405197,0.231395751237869,0.195409744977951,0.230179727077484,0.213591977953911,0.229219749569893,0.232324749231339,0.273755997419357,0.229255020618439,0.27492493391037,0.211423963308334,0.230179727077484,0.213591977953911,0.187011003494263,0.315427958965302,0.187169969081879,0.294655978679657,0.180851966142654,0.294758975505829,0.180596977472305,0.314670950174332,0.228006035089493,0.272848546504974,0.228495270013809,0.252325266599655,0.18819697201252,0.253012001514435,0.187528982758522,0.274288952350616,0.277889013290405,0.17535699903965,0.279684990644455,0.157121002674103, +0.23463374376297,0.158529758453369,0.232887238264084,0.177060484886169,0.27609395980835,0.193592995405197,0.277889013290405,0.17535699903965,0.232887238264084,0.177060484886169,0.231395751237869,0.195409744977951,0.187528982758522,0.274288952350616,0.18819697201252,0.253012001514435,0.182027995586395,0.252833992242813,0.181106984615326,0.274846971035004,0.229219749569893,0.232324749231339,0.230179727077484,0.213591977953911,0.190062999725342,0.212817013263702,0.189074993133545,0.232098013162613,0.284110993146896,0.117067001760006,0.238393142819405,0.12119072675705,0.236614972352982,0.139801740646362,0.281898021697998,0.137094005942345,0.23463374376297,0.158529758453369,0.279684990644455,0.157121002674103,0.281898021697998,0.137094005942345,0.236614972352982,0.139801740646362,0.189074993133545,0.232098013162613,0.190062999725342,0.212817013263702,0.183988004922867,0.212266996502876,0.182949006557465,0.230820000171661,0.231395751237869,0.195409744977951,0.232887238264084,0.177060484886169,0.192723006010056,0.175260975956917,0.191249996423721,0.194195002317429,0.191249996423721,0.194195002317429,0.192723006010056,0.175260975956917,0.18665799498558,0.174398005008698,0.18502601981163,0.193714022636414,0.0829370021820068,0.599466979503632,0.0527559965848923,0.567956984043121,0.0522700063884258,0.579236030578613,0.0784720033407211,0.604887008666992,0.23463374376297,0.158529758453369,0.236614972352982,0.139801740646362,0.196287006139755,0.138300999999046,0.194422006607056,0.156475991010666,0.158642023801804,0.522616147994995,0.147695630788803,0.527009010314941,0.143860965967178,0.546185612678528,0.160901993513107,0.534439980983734,0.194422006607056,0.156475991010666,0.196287006139755,0.138300999999046,0.190208971500397,0.137288987636566,0.188289999961853,0.155083000659943,0.372170001268387,0.376677989959717,0.379611968994141,0.384519010782242,0.368171989917755,0.397065013647079,0.360050976276398,0.389032006263733,0.348441004753113,0.376753985881805,0.361001014709473,0.362809985876083,0.366586029529572,0.369744002819061,0.354246020317078, +0.382892996072769,0.904338955879211,0.0491139963269234,0.924870014190674,0.049114003777504,0.917379975318909,0.0410690009593964,0.897627949714661,0.0410689935088158,0.376293003559113,0.40509894490242,0.387055039405823,0.392360061407089,0.393660962581635,0.400184005498886,0.383394956588745,0.411773979663849,0.390496999025345,0.418449014425278,0.400267988443375,0.408008009195328,0.407128065824509,0.415894985198975,0.399356931447983,0.426525950431824,0.413989007472992,0.423781991004944,0.42085799574852,0.429744929075241,0.415618002414703,0.440520942211151,0.408217012882233,0.434603989124298,0.42772701382637,0.43570801615715,0.435476005077362,0.442128956317902,0.430737018585205,0.453019022941589,0.423020005226135,0.446438014507294,0.44322606921196,0.448550015687943,0.452052175998688,0.457264959812164,0.445976883172989,0.467098295688629,0.438454985618591,0.459599018096924,0.480955958366394,0.497406989336014,0.481906116008759,0.507878124713898,0.46739399433136,0.510975003242493,0.467361986637115,0.501918971538544,0.482536554336548,0.518382847309113,0.48154404759407,0.529229998588562,0.46568500995636,0.530856013298035,0.467424988746643,0.520031988620758,0.480037033557892,0.540130853652954,0.476705014705658,0.553631007671356,0.461184024810791,0.553142011165619,0.463946014642715,0.541680991649628,0.47317698597908,0.567149996757507,0.470887988805771,0.575296998023987,0.455494940280914,0.572210907936096,0.458422005176544,0.564603984355927,0.468599021434784,0.583443999290466,0.461205273866653,0.596072375774384,0.447560012340546,0.589537978172302,0.452566981315613,0.5798180103302,0.449318528175354,0.61651337146759,0.436107993125916,0.606384992599487,0.441000044345856,0.599582076072693,0.454167723655701,0.609226822853088,0.428348869085312,0.641636371612549,0.41541001200676,0.630945980548859,0.421755015850067,0.624117016792297,0.43597087264061,0.633282899856567,0.428348869085312,0.641636371612549,0.419885009527206,0.651203989982605,0.406286001205444,0.640424013137817,0.41541001200676,0.630945980548859,0.394753009080887,0.677007079124451, +0.382803022861481,0.662660002708435,0.389982044696808,0.656280994415283,0.402844965457916,0.66860294342041,0.378385007381439,0.692551016807556,0.373136013746262,0.671130001544952,0.377969980239868,0.666894972324371,0.386568963527679,0.684778988361359,0.0912920087575912,0.591284394264221,0.0534786731004715,0.55276882648468,0.0527559965848923,0.567956984043121,0.0829370021820068,0.599466979503632,0.0509599968791008,0.606418013572693,0.0666479989886284,0.621360003948212,0.0703279972076416,0.61583399772644,0.0513719990849495,0.598466992378235,0.0500969961285591,0.627819001674652,0.061039999127388,0.633642017841339,0.0638440027832985,0.627501010894775,0.0505279935896397,0.617118000984192,0.0666479989886284,0.621360003948212,0.0509599968791008,0.606418013572693,0.0505279935896397,0.617118000984192,0.0638440027832985,0.627501010894775,0.120416723191738,0.5649294257164,0.0983220487833023,0.552909016609192,0.0964563190937042,0.568715572357178,0.10719034075737,0.576332330703735,0.254903048276901,0.804720997810364,0.258332014083862,0.806807100772858,0.29674169421196,0.773239016532898,0.282282501459122,0.751516938209534,0.0983220487833023,0.552909016609192,0.0547330006957054,0.523630976676941,0.0541765205562115,0.537130296230316,0.0964563190937042,0.568715572357178,0.0584031008183956,0.641896963119507,0.0500419922173023,0.63565993309021,0.0492378026247025,0.644462943077087,0.0563770048320293,0.651134312152863,0.061039999127388,0.633642017841339,0.0500969961285591,0.627819001674652,0.0500419922173023,0.63565993309021,0.0584031008183956,0.641896963119507,0.0563770048320293,0.651134312152863,0.0492378026247025,0.644462943077087,0.0479943454265594,0.6573725938797,0.0554411560297012,0.661211490631104,0.281558007001877,0.554219007492065,0.281284987926483,0.545005917549133,0.238275244832039,0.548607230186462,0.236315369606018,0.56401252746582,0.613384962081909,0.0410690009593964,0.613121747970581,0.0491140075027943,0.641104519367218,0.0491139963269234,0.646642863750458,0.0410690009593964,0.10719034075737,0.576332330703735,0.0964563190937042, +0.568715572357178,0.0912920087575912,0.591284394264221,0.100517928600311,0.528115093708038,0.120416723191738,0.5649294257164,0.143860965967178,0.546185612678528,0.147695630788803,0.527009010314941,0.0569729916751385,0.46794193983078,0.056377999484539,0.484452992677689,0.1014054864645,0.499670714139938,0.102115496993065,0.480458796024323,0.0587619990110397,0.429754018783569,0.0578670091927052,0.448848068714142,0.103111736476421,0.460577756166458,0.104213759303093,0.440165281295776,0.150707006454468,0.483339011669159,0.102115496993065,0.480458796024323,0.1014054864645,0.499670714139938,0.150140017271042,0.503476977348328,0.0604120008647442,0.392053008079529,0.0595870018005371,0.410902976989746,0.105244010686874,0.419359028339386,0.106174498796463,0.39852374792099,0.150707006454468,0.483339011669159,0.150140017271042,0.503476977348328,0.159032002091408,0.502224981784821,0.159422993659973,0.481833934783936,0.152541995048523,0.443533033132553,0.104213759303093,0.440165281295776,0.103111736476421,0.460577756166458,0.151589006185532,0.463778048753738,0.06182000041008,0.352898955345154,0.0611159950494766,0.372475981712341,0.106977000832558,0.378025501966476,0.107668250799179,0.357983529567719,0.152541995048523,0.443533033132553,0.151589006185532,0.463778048753738,0.160441994667053,0.463162988424301,0.161460995674133,0.444492995738983,0.153940007090569,0.398703068494797,0.106174498796463,0.39852374792099,0.105244010686874,0.419359028339386,0.153323993086815,0.421341985464096,0.0625309944152832,0.314359962940216,0.0621749982237816,0.333629995584488,0.108264736831188,0.338517755270004,0.108737252652645,0.319373548030853,0.162495002150536,0.397377014160156,0.153940007090569,0.398703068494797,0.153323993086815,0.421341985464096,0.161978006362915,0.420935034751892,0.154742002487183,0.356654942035675,0.107668250799179,0.357983529567719,0.106977000832558,0.378025501966476,0.1543969810009,0.377115935087204,0.109192997217178,0.281228721141815,0.0625120028853416,0.275829017162323,0.0625210180878639,0.295095026493073,0.109054751694202, +0.300297737121582,0.154742002487183,0.356654942035675,0.1543969810009,0.377115935087204,0.162716969847679,0.376163899898529,0.162939995527267,0.354950964450836,0.155272006988525,0.318881988525391,0.108737252652645,0.319373548030853,0.108264736831188,0.338517755270004,0.155020996928215,0.33739098906517,0.10887023806572,0.242713749408722,0.0620020031929016,0.237028002738953,0.0622570067644119,0.256428003311157,0.109125748276711,0.262103736400604,0.16313399374485,0.317934989929199,0.155272006988525,0.318881988525391,0.155020996928215,0.33739098906517,0.163037002086639,0.33644300699234,0.155698984861374,0.282671928405762,0.109192997217178,0.281228721141815,0.109054751694202,0.300297737121582,0.155532985925674,0.300684988498688,0.0602330006659031,0.196431994438171,0.0611179918050766,0.216729998588562,0.108442008495331,0.222848981618881,0.107812486588955,0.20253124833107,0.16364398598671,0.282489955425262,0.155698984861374,0.282671928405762,0.155532985925674,0.300684988498688,0.16338899731636,0.300212979316711,0.155361995100975,0.246243000030518,0.10887023806572,0.242713749408722,0.109125748276711,0.262103736400604,0.155664995312691,0.264714002609253,0.0576950088143349,0.156589031219482,0.0589639917016029,0.176510989665985,0.106951996684074,0.181783258914948,0.105783216655254,0.160805463790894,0.16347399353981,0.247376978397369,0.155361995100975,0.246243000030518,0.155664995312691,0.264714002609253,0.163559034466743,0.264934003353119,0.15378500521183,0.206167995929718,0.107812486588955,0.20253124833107,0.108442008495331,0.222848981618881,0.15472300350666,0.226690992712975,0.161482006311417,0.207047998905182,0.15378500521183,0.206167995929718,0.15472300350666,0.226690992712975,0.162478029727936,0.227212026715279,0.151023000478745,0.163013994693756,0.105783216655254,0.160805463790894,0.106951996684074,0.181783258914948,0.152586027979851,0.184787034988403,0.151023000478745,0.163013994693756,0.152586027979851,0.184787034988403,0.15998999774456,0.185145005583763,0.158499002456665,0.163241997361183,0.153631001710892,0.119869999587536, +0.146071791648865,0.119640901684761,0.148993015289307,0.141314998269081,0.156064972281456,0.141555964946747,0.192129001021385,0.119494996964931,0.190208971500397,0.137288987636566,0.196287006139755,0.138300999999046,0.198815852403641,0.120532907545567,0.588109970092773,0.40310999751091,0.571051955223083,0.398711979389191,0.573796987533569,0.387768059968948,0.590300023555756,0.390854001045227,0.583096981048584,0.423958003520966,0.565932989120483,0.417081952095032,0.568491995334625,0.407896995544434,0.585604012012482,0.413534045219421,0.583096981048584,0.423958003520966,0.574496984481812,0.433459013700485,0.557286024093628,0.424566000699997,0.565932989120483,0.417081952095032,0.565895855426788,0.442958950996399,0.559674978256226,0.446357995271683,0.543654024600983,0.434915989637375,0.548639059066772,0.432049989700317,0.553454875946045,0.449757933616638,0.537593007087708,0.452968716621399,0.527737021446228,0.437902003526688,0.538668990135193,0.437782049179077,0.522218108177185,0.452676087617874,0.514537990093231,0.450159996747971,0.512215971946716,0.435739010572433,0.516804993152618,0.438023000955582,0.48127469420433,0.422952324151993,0.492312788963318,0.415511846542358,0.496255993843079,0.421613991260529,0.487694025039673,0.431688070297241,0.471274077892303,0.401226073503494,0.486205995082855,0.399402022361755,0.489059597253799,0.406928479671478,0.47594690322876,0.411376535892487,0.477504074573517,0.36734402179718,0.491823971271515,0.370835989713669,0.489015012979507,0.385119020938873,0.474388986825943,0.384285002946854,0.487402945756912,0.348780006170273,0.500191986560822,0.354223966598511,0.496007889509201,0.362529933452606,0.482453912496567,0.358061939477921,0.498961091041565,0.329626053571701,0.511240899562836,0.336691945791245,0.50571596622467,0.345457971096039,0.493182003498077,0.339203000068665,0.498961091041565,0.329626053571701,0.508248090744019,0.324314057826996,0.51875102519989,0.332316011190414,0.511240899562836,0.336691945791245,0.557126998901367,0.340887010097504,0.567469954490662,0.330958187580109,0.582952439785004, +0.337187349796295,0.569817006587982,0.345772981643677,0.544380068778992,0.336131036281586,0.550303876399994,0.324851393699646,0.558840990066528,0.327784597873688,0.550754070281982,0.338509023189545,0.544380068778992,0.336131036281586,0.535319983959198,0.332035005092621,0.537354230880737,0.320733249187469,0.550303876399994,0.324851393699646,0.489603012800217,0.809594988822937,0.479016900062561,0.801620006561279,0.492657959461212,0.771198987960815,0.507247984409332,0.779456973075867,0.514442980289459,0.766412019729614,0.521438002586365,0.755366027355194,0.539283990859985,0.765878021717072,0.531171083450317,0.776805996894836,0.539283990859985,0.765878021717072,0.557451128959656,0.774982094764709,0.547708988189697,0.787969946861267,0.531171083450317,0.776805996894836,0.547708988189697,0.787969946861267,0.537967026233673,0.800957024097443,0.522193133831024,0.790151178836823,0.531171083450317,0.776805996894836,0.439597070217133,0.785275042057037,0.441320091485977,0.761162042617798,0.45898300409317,0.76244193315506,0.454014927148819,0.789458930492401,0.529209971427917,0.746183931827545,0.538478970527649,0.738547027111053,0.555068016052246,0.75071108341217,0.54678601026535,0.757444024085999,0.555068016052246,0.75071108341217,0.569877982139587,0.761920869350433,0.563664078712463,0.768452048301697,0.54678601026535,0.757444024085999,0.563664078712463,0.768452048301697,0.557451128959656,0.774982094764709,0.539283990859985,0.765878021717072,0.54678601026535,0.757444024085999,0.479206055402756,0.751405119895935,0.481129944324493,0.739174008369446,0.502235054969788,0.746801972389221,0.497333943843842,0.757558941841125,0.502235054969788,0.746801972389221,0.521438002586365,0.755366027355194,0.514442980289459,0.766412019729614,0.497333943843842,0.757558941841125,0.514442980289459,0.766412019729614,0.507247984409332,0.779456973075867,0.492657959461212,0.771198987960815,0.497333943843842,0.757558941841125,0.439597070217133,0.785275042057037,0.430529028177261,0.784605979919434,0.426856994628906,0.760756015777588,0.441320091485977,0.761162042617798, +0.490785956382751,0.290627002716064,0.499771952629089,0.25970196723938,0.50722998380661,0.256805986166,0.505122005939484,0.290298014879227,0.408598005771637,0.749782979488373,0.402536928653717,0.739007949829102,0.419937938451767,0.739239931106567,0.423702001571655,0.749265015125275,0.419937938451767,0.739239931106567,0.437661945819855,0.738121867179871,0.440182954072952,0.748966872692108,0.423702001571655,0.749265015125275,0.440182954072952,0.748966872692108,0.441320091485977,0.761162042617798,0.426856994628906,0.760756015777588,0.423702001571655,0.749265015125275,0.460727155208588,0.736916542053223,0.481129944324493,0.739174008369446,0.479206055402756,0.751405119895935,0.459420025348663,0.74911105632782,0.479206055402756,0.751405119895935,0.477033942937851,0.765489935874939,0.45898300409317,0.76244193315506,0.459420025348663,0.74911105632782,0.45898300409317,0.76244193315506,0.441320091485977,0.761162042617798,0.440182954072952,0.748966872692108,0.459420025348663,0.74911105632782,0.420922994613647,0.709182977676392,0.433439046144485,0.729734063148499,0.416014015674591,0.731798112392426,0.40599200129509,0.714070081710815,0.433439046144485,0.729734063148499,0.420922994613647,0.709182977676392,0.439791977405548,0.702378153800964,0.4573575258255,0.727022528648376,0.433439046144485,0.729734063148499,0.437661945819855,0.738121867179871,0.419937938451767,0.739239931106567,0.416014015674591,0.731798112392426,0.399803012609482,0.703173041343689,0.412998020648956,0.69677197933197,0.420922994613647,0.709182977676392,0.40599200129509,0.714070081710815,0.4824498295784,0.722436368465424,0.4573575258255,0.727022528648376,0.439791977405548,0.702378153800964,0.45939514040947,0.700253367424011,0.4573575258255,0.727022528648376,0.4824498295784,0.722436368465424,0.481129944324493,0.739174008369446,0.460727155208588,0.736916542053223,0.438535630702972,0.678183436393738,0.45939514040947,0.700253367424011,0.439791977405548,0.702378153800964,0.427164077758789,0.688785195350647,0.420922994613647,0.709182977676392,0.412998020648956,0.69677197933197, +0.427164077758789,0.688785195350647,0.439791977405548,0.702378153800964,0.481129944324493,0.739174008369446,0.4824498295784,0.722436368465424,0.509053766727448,0.735249102115631,0.502235054969788,0.746801972389221,0.736557960510254,0.219146966934204,0.760260045528412,0.236258029937744,0.778818070888519,0.234795048832893,0.755701124668121,0.21739199757576,0.522321224212646,0.725589871406555,0.538478970527649,0.738547027111053,0.529209971427917,0.746183931827545,0.509053766727448,0.735249102115631,0.386568963527679,0.684778988361359,0.394753009080887,0.677007079124451,0.404106050729752,0.686321020126343,0.393272042274475,0.693636059761047,0.404106050729752,0.686321020126343,0.412998020648956,0.69677197933197,0.399803012609482,0.703173041343689,0.393272042274475,0.693636059761047,0.399803012609482,0.703173041343689,0.386983007192612,0.708170056343079,0.382684081792831,0.700360119342804,0.393272042274475,0.693636059761047,0.402844965457916,0.66860294342041,0.410937070846558,0.660198092460632,0.424794614315033,0.66933536529541,0.415432989597321,0.677824020385742,0.427164077758789,0.688785195350647,0.412998020648956,0.69677197933197,0.404106050729752,0.686321020126343,0.415432989597321,0.677824020385742,0.447214841842651,0.643701374530792,0.455084979534149,0.633414447307587,0.466388672590256,0.642750024795532,0.458428412675858,0.653533220291138,0.424794614315033,0.66933536529541,0.410937070846558,0.660198092460632,0.419885009527206,0.651203989982605,0.437996983528137,0.654747068881989,0.480234742164612,0.622585654258728,0.472135126590729,0.634712934494019,0.461049973964691,0.625458002090454,0.467026859521866,0.616052508354187,0.461049973964691,0.625458002090454,0.449318528175354,0.61651337146759,0.454167723655701,0.609226822853088,0.467026859521866,0.616052508354187,0.760260045528412,0.236258029937744,0.736557960510254,0.219146966934204,0.72008204460144,0.221919000148773,0.743758857250214,0.238563999533653,0.478400617837906,0.655835926532745,0.485781818628311,0.673746883869171,0.467003524303436,0.681717753410339,0.469277113676071, +0.661527156829834,0.467003524303436,0.681717753410339,0.449783951044083,0.665350794792175,0.458428412675858,0.653533220291138,0.469277113676071,0.661527156829834,0.513980031013489,0.629042744636536,0.494866490364075,0.630170285701752,0.497061312198639,0.617858469486237,0.509602427482605,0.61336076259613,0.449783951044083,0.665350794792175,0.467003524303436,0.681717753410339,0.45939514040947,0.700253367424011,0.438535630702972,0.678183436393738,0.517416000366211,0.645749270915985,0.52361536026001,0.663667380809784,0.502986192703247,0.667705893516541,0.493073910474777,0.647093117237091,0.505321264266968,0.710566163063049,0.4824498295784,0.722436368465424,0.45939514040947,0.700253367424011,0.492069154977798,0.691675066947937,0.502986192703247,0.667705893516541,0.52361536026001,0.663667380809784,0.531373560428619,0.680519938468933,0.513021349906921,0.685287952423096,0.531373560428619,0.680519938468933,0.54167366027832,0.696521520614624,0.524445772171021,0.70257830619812,0.513021349906921,0.685287952423096,0.524445772171021,0.70257830619812,0.505321264266968,0.710566163063049,0.492069154977798,0.691675066947937,0.513021349906921,0.685287952423096,0.524445772171021,0.70257830619812,0.54167366027832,0.696521520614624,0.551992952823639,0.712009966373444,0.53643262386322,0.718061506748199,0.551992952823639,0.712009966373444,0.564980983734131,0.726028025150299,0.549966990947723,0.732137978076935,0.53643262386322,0.718061506748199,0.549966990947723,0.732137978076935,0.538478970527649,0.738547027111053,0.522321224212646,0.725589871406555,0.53643262386322,0.718061506748199,0.579671025276184,0.739134013652802,0.592217028141022,0.752358973026276,0.581047058105469,0.757140040397644,0.565521001815796,0.744884014129639,0.581047058105469,0.757140040397644,0.569877982139587,0.761920869350433,0.555068016052246,0.75071108341217,0.565521001815796,0.744884014129639,0.555068016052246,0.75071108341217,0.538478970527649,0.738547027111053,0.549966990947723,0.732137978076935,0.565521001815796,0.744884014129639,0.575174868106842,0.669176876544952, +0.584118962287903,0.6839200258255,0.561115264892578,0.690740346908569,0.551980018615723,0.675202131271362,0.561115264892578,0.690740346908569,0.54167366027832,0.696521520614624,0.531373560428619,0.680519938468933,0.551980018615723,0.675202131271362,0.531373560428619,0.680519938468933,0.52361536026001,0.663667380809784,0.544670045375824,0.659137070178986,0.551980018615723,0.675202131271362,0.534453988075256,0.62664008140564,0.557875990867615,0.62348198890686,0.562291979789734,0.638794004917145,0.539131045341492,0.642912983894348,0.562291979789734,0.638794004917145,0.567915856838226,0.654111981391907,0.544670045375824,0.659137070178986,0.539131045341492,0.642912983894348,0.544670045375824,0.659137070178986,0.52361536026001,0.663667380809784,0.517416000366211,0.645749270915985,0.539131045341492,0.642912983894348,0.594794988632202,0.698274075984955,0.607093989849091,0.712188005447388,0.584828019142151,0.71929007768631,0.572122991085052,0.705381989479065,0.584828019142151,0.71929007768631,0.564980983734131,0.726028025150299,0.551992952823639,0.712009966373444,0.572122991085052,0.705381989479065,0.551992952823639,0.712009966373444,0.54167366027832,0.696521520614624,0.561115264892578,0.690740346908569,0.572122991085052,0.705381989479065,0.620903015136719,0.725612998008728,0.635823011398315,0.739022970199585,0.614019989967346,0.745691061019897,0.599045991897583,0.732631981372833,0.614019989967346,0.745691061019897,0.592217028141022,0.752358973026276,0.579671025276184,0.739134013652802,0.599045991897583,0.732631981372833,0.579671025276184,0.739134013652802,0.564980983734131,0.726028025150299,0.584828019142151,0.71929007768631,0.599045991897583,0.732631981372833,0.629364013671875,0.704985022544861,0.649700999259949,0.698105096817017,0.662331998348236,0.711160004138947,0.642503023147583,0.71831202507019,0.662331998348236,0.711160004138947,0.676594018936157,0.723859071731567,0.656208992004395,0.731441020965576,0.642503023147583,0.71831202507019,0.656208992004395,0.731441020965576,0.635823011398315,0.739022970199585,0.620903015136719, +0.725612998008728,0.642503023147583,0.71831202507019,0.637830018997192,0.684718012809753,0.649700999259949,0.698105096817017,0.629364013671875,0.704985022544861,0.617353975772858,0.691262900829315,0.629364013671875,0.704985022544861,0.607093989849091,0.712188005447388,0.594794988632202,0.698274075984955,0.617353975772858,0.691262900829315,0.594794988632202,0.698274075984955,0.584118962287903,0.6839200258255,0.606793999671936,0.677321970462799,0.617353975772858,0.691262900829315,0.590801000595093,0.649165987968445,0.61149400472641,0.64454197883606,0.618623852729797,0.657943904399872,0.598002016544342,0.663336992263794,0.618623852729797,0.657943904399872,0.627283930778503,0.671248912811279,0.606793999671936,0.677321970462799,0.598002016544342,0.663336992263794,0.606793999671936,0.677321970462799,0.584118962287903,0.6839200258255,0.575174868106842,0.669176876544952,0.598002016544342,0.663336992263794,0.666168868541718,0.691969871520996,0.680759012699127,0.685822010040283,0.693635046482086,0.697936058044434,0.678876996040344,0.704591989517212,0.693635046482086,0.697936058044434,0.707367122173309,0.710223078727722,0.691980004310608,0.717041015625,0.678876996040344,0.704591989517212,0.691980004310608,0.717041015625,0.676594018936157,0.723859071731567,0.662331998348236,0.711160004138947,0.678876996040344,0.704591989517212,0.695461988449097,0.678898990154266,0.709969043731689,0.671151995658875,0.721965074539185,0.682330012321472,0.708105027675629,0.690524995326996,0.721965074539185,0.682330012321472,0.734942018985748,0.693911015987396,0.721153974533081,0.702067017555237,0.708105027675629,0.690524995326996,0.721153974533081,0.702067017555237,0.707367122173309,0.710223078727722,0.693635046482086,0.697936058044434,0.708105027675629,0.690524995326996,0.668795883655548,0.673382937908173,0.680759012699127,0.685822010040283,0.666168868541718,0.691969871520996,0.654253005981445,0.679005980491638,0.666168868541718,0.691969871520996,0.649700999259949,0.698105096817017,0.637830018997192,0.684718012809753,0.654253005981445,0.679005980491638, +0.637830018997192,0.684718012809753,0.627283930778503,0.671248912811279,0.643730998039246,0.66600102186203,0.654253005981445,0.679005980491638,0.628160893917084,0.640478909015656,0.642759084701538,0.636468052864075,0.649802088737488,0.648697137832642,0.63520485162735,0.65325790643692,0.649802088737488,0.648697137832642,0.658294081687927,0.66091114282608,0.643730998039246,0.66600102186203,0.63520485162735,0.65325790643692,0.643730998039246,0.66600102186203,0.627283930778503,0.671248912811279,0.618623852729797,0.657943904399872,0.63520485162735,0.65325790643692,0.723971009254456,0.662527978420258,0.735400915145874,0.652854025363922,0.745199978351593,0.663442015647888,0.734892904758453,0.673325836658478,0.745199978351593,0.663442015647888,0.756002128124237,0.674610137939453,0.745472013950348,0.684260010719299,0.734892904758453,0.673325836658478,0.745472013950348,0.684260010719299,0.734942018985748,0.693911015987396,0.721965074539185,0.682330012321472,0.734892904758453,0.673325836658478,0.698305010795593,0.660030007362366,0.709969043731689,0.671151995658875,0.695461988449097,0.678898990154266,0.683630883693695,0.667107880115509,0.695461988449097,0.678898990154266,0.680759012699127,0.685822010040283,0.668795883655548,0.673382937908173,0.683630883693695,0.667107880115509,0.668795883655548,0.673382937908173,0.658294081687927,0.66091114282608,0.673128962516785,0.655313014984131,0.683630883693695,0.667107880115509,0.701382040977478,0.641707003116608,0.713608980178833,0.63404107093811,0.724349975585938,0.643217861652374,0.712362945079803,0.651998996734619,0.724349975585938,0.643217861652374,0.735400915145874,0.652854025363922,0.723971009254456,0.662527978420258,0.712362945079803,0.651998996734619,0.723971009254456,0.662527978420258,0.709969043731689,0.671151995658875,0.698305010795593,0.660030007362366,0.712362945079803,0.651998996734619,0.742191970348358,0.641956925392151,0.745733022689819,0.631330132484436,0.754235148429871,0.641326010227203,0.751199007034302,0.652606010437012,0.754235148429871,0.641326010227203,0.76403397321701, +0.65448397397995,0.760017991065979,0.664547026157379,0.751199007034302,0.652606010437012,0.760017991065979,0.664547026157379,0.756002128124237,0.674610137939453,0.745199978351593,0.663442015647888,0.751199007034302,0.652606010437012,0.657242000102997,0.632000029087067,0.671346008777618,0.627016067504883,0.678791105747223,0.638038098812103,0.664471030235291,0.643676996231079,0.678791105747223,0.638038098812103,0.687677979469299,0.648985028266907,0.673128962516785,0.655313014984131,0.664471030235291,0.643676996231079,0.673128962516785,0.655313014984131,0.658294081687927,0.66091114282608,0.649802088737488,0.648697137832642,0.664471030235291,0.643676996231079,0.747414112091064,0.62246710062027,0.747010886669159,0.612115025520325,0.756626904010773,0.620287895202637,0.755653977394104,0.630110025405884,0.756626904010773,0.620287895202637,0.766323029994965,0.626257002353668,0.765179038047791,0.640371084213257,0.755653977394104,0.630110025405884,0.765179038047791,0.640371084213257,0.76403397321701,0.65448397397995,0.754235148429871,0.641326010227203,0.755653977394104,0.630110025405884,0.723728895187378,0.626547873020172,0.731975078582764,0.619828999042511,0.738390862941742,0.625634908676147,0.732810020446777,0.633891880512238,0.738390862941742,0.625634908676147,0.745733022689819,0.631330132484436,0.742191970348358,0.641956925392151,0.732810020446777,0.633891880512238,0.742191970348358,0.641956925392151,0.735400915145874,0.652854025363922,0.724349975585938,0.643217861652374,0.732810020446777,0.633891880512238,0.754078984260559,0.605196952819824,0.762430906295776,0.601716995239258,0.764376997947693,0.613987028598785,0.758320927619934,0.613188982009888,0.764376997947693,0.613987028598785,0.766323029994965,0.626257002353668,0.756626904010773,0.620287895202637,0.758320927619934,0.613188982009888,0.738390862941742,0.625634908676147,0.731975078582764,0.619828999042511,0.738577902317047,0.614482998847961,0.741741001605988,0.620060980319977,0.738577902317047,0.614482998847961,0.747010886669159,0.612115025520325,0.747414112091064,0.62246710062027, +0.741741001605988,0.620060980319977,0.678791105747223,0.638038098812103,0.671346008777618,0.627016067504883,0.684804975986481,0.621454000473022,0.692336857318878,0.63162088394165,0.684804975986481,0.621454000473022,0.697259068489075,0.615392029285431,0.704738020896912,0.624827027320862,0.692336857318878,0.63162088394165,0.704738020896912,0.624827027320862,0.713608980178833,0.63404107093811,0.701382040977478,0.641707003116608,0.692336857318878,0.63162088394165,0.708346009254456,0.608904957771301,0.718199074268341,0.602313995361328,0.72513210773468,0.611615121364594,0.715624094009399,0.618058979511261,0.72513210773468,0.611615121364594,0.731975078582764,0.619828999042511,0.723728895187378,0.626547873020172,0.715624094009399,0.618058979511261,0.723728895187378,0.626547873020172,0.713608980178833,0.63404107093811,0.704738020896912,0.624827027320862,0.715624094009399,0.618058979511261,0.743396937847137,0.582295000553131,0.752884984016418,0.574867010116577,0.757658004760742,0.588292002677917,0.749354898929596,0.594286918640137,0.757658004760742,0.588292002677917,0.762430906295776,0.601716995239258,0.754078984260559,0.605196952819824,0.749354898929596,0.594286918640137,0.754078984260559,0.605196952819824,0.747010886669159,0.612115025520325,0.741214990615845,0.600161015987396,0.749354898929596,0.594286918640137,0.726949870586395,0.595936894416809,0.735162138938904,0.589391112327576,0.741214990615845,0.600161015987396,0.733401119709015,0.605793118476868,0.741214990615845,0.600161015987396,0.747010886669159,0.612115025520325,0.738577902317047,0.614482998847961,0.733401119709015,0.605793118476868,0.738577902317047,0.614482998847961,0.731975078582764,0.619828999042511,0.72513210773468,0.611615121364594,0.733401119709015,0.605793118476868,0.727735996246338,0.579699993133545,0.719052970409393,0.572337985038757,0.725522100925446,0.562460124492645,0.735453963279724,0.571054995059967,0.725522100925446,0.562460124492645,0.733406066894531,0.548467993736267,0.743146061897278,0.561667084693909,0.735453963279724,0.571054995059967,0.743146061897278, +0.561667084693909,0.752884984016418,0.574867010116577,0.743396937847137,0.582295000553131,0.735453963279724,0.571054995059967,0.71151214838028,0.593243002891541,0.705379009246826,0.584820985794067,0.713168025016785,0.579563975334167,0.719964981079102,0.586858987808228,0.713168025016785,0.579563975334167,0.719052970409393,0.572337985038757,0.727735996246338,0.579699993133545,0.719964981079102,0.586858987808228,0.727735996246338,0.579699993133545,0.735162138938904,0.589391112327576,0.726949870586395,0.595936894416809,0.719964981079102,0.586858987808228,0.690688848495483,0.605551898479462,0.684998989105225,0.595677971839905,0.695912003517151,0.5903480052948,0.701745986938477,0.59956693649292,0.695912003517151,0.5903480052948,0.705379009246826,0.584820985794067,0.71151214838028,0.593243002891541,0.701745986938477,0.59956693649292,0.71151214838028,0.593243002891541,0.718199074268341,0.602313995361328,0.708346009254456,0.608904957771301,0.701745986938477,0.59956693649292,0.665046870708466,0.61574399471283,0.659739971160889,0.604453027248383,0.672869026660919,0.600344061851501,0.678361892700195,0.610922873020172,0.672869026660919,0.600344061851501,0.684998989105225,0.595677971839905,0.690688848495483,0.605551898479462,0.678361892700195,0.610922873020172,0.690688848495483,0.605551898479462,0.697259068489075,0.615392029285431,0.684804975986481,0.621454000473022,0.678361892700195,0.610922873020172,0.713168025016785,0.579563975334167,0.705379009246826,0.584820985794067,0.700107991695404,0.577464997768402,0.70728200674057,0.57505601644516,0.700107991695404,0.577464997768402,0.696402132511139,0.568480134010315,0.709233045578003,0.568549990653992,0.70728200674057,0.57505601644516,0.680160105228424,0.586140096187592,0.676427006721497,0.577463865280151,0.686537027359009,0.57427990436554,0.690932810306549,0.581553876399994,0.686537027359009,0.57427990436554,0.696402132511139,0.568480134010315,0.700107991695404,0.577464997768402,0.690932810306549,0.581553876399994,0.700107991695404,0.577464997768402,0.705379009246826,0.584820985794067, +0.695912003517151,0.5903480052948,0.690932810306549,0.581553876399994,0.717397928237915,0.546486973762512,0.733406066894531,0.548467993736267,0.725522100925446,0.562460124492645,0.713599026203156,0.558399021625519,0.725522100925446,0.562460124492645,0.719052970409393,0.572337985038757,0.709233045578003,0.568549990653992,0.713599026203156,0.558399021625519,0.709233045578003,0.568549990653992,0.696402132511139,0.568480134010315,0.700784206390381,0.556457996368408,0.713599026203156,0.558399021625519,0.655269026756287,0.593369007110596,0.651917099952698,0.582540988922119,0.664713025093079,0.580205976963043,0.668188869953156,0.590036928653717,0.664713025093079,0.580205976963043,0.676427006721497,0.577463865280151,0.680160105228424,0.586140096187592,0.668188869953156,0.590036928653717,0.680160105228424,0.586140096187592,0.684998989105225,0.595677971839905,0.672869026660919,0.600344061851501,0.668188869953156,0.590036928653717,0.686537027359009,0.57427990436554,0.676427006721497,0.577463865280151,0.674057006835938,0.570173978805542,0.682453036308289,0.569616973400116,0.674057006835938,0.570173978805542,0.674444139003754,0.562327980995178,0.685412108898163,0.563893020153046,0.682453036308289,0.569616973400116,0.675490021705627,0.552179992198944,0.676838994026184,0.540642023086548,0.690445065498352,0.542646050453186,0.688177049160004,0.554225027561188,0.690445065498352,0.542646050453186,0.70400595664978,0.544688999652863,0.700784206390381,0.556457996368408,0.688177049160004,0.554225027561188,0.700784206390381,0.556457996368408,0.696402132511139,0.568480134010315,0.685412108898163,0.563893020153046,0.688177049160004,0.554225027561188,0.649968028068542,0.572019040584564,0.649101972579956,0.561277091503143,0.662195980548859,0.561589002609253,0.662836015224457,0.571056008338928,0.662195980548859,0.561589002609253,0.674444139003754,0.562327980995178,0.674057006835938,0.570173978805542,0.662836015224457,0.571056008338928,0.674057006835938,0.570173978805542,0.676427006721497,0.577463865280151,0.664713025093079,0.580205976963043,0.662836015224457, +0.571056008338928,0.657242000102997,0.632000029087067,0.642759084701538,0.636468052864075,0.636604905128479,0.623951852321625,0.651027143001556,0.62008410692215,0.636604905128479,0.623951852321625,0.631500005722046,0.611322999000549,0.645828902721405,0.608108997344971,0.651027143001556,0.62008410692215,0.645828902721405,0.608108997344971,0.659739971160889,0.604453027248383,0.665046870708466,0.61574399471283,0.651027143001556,0.62008410692215,0.627604007720947,0.598752975463867,0.624787926673889,0.586188971996307,0.638562023639679,0.584504008293152,0.641650021076202,0.596258044242859,0.638562023639679,0.584504008293152,0.651917099952698,0.582540988922119,0.655269026756287,0.593369007110596,0.641650021076202,0.596258044242859,0.655269026756287,0.593369007110596,0.659739971160889,0.604453027248383,0.645828902721405,0.608108997344971,0.641650021076202,0.596258044242859,0.628160893917084,0.640478909015656,0.61149400472641,0.64454197883606,0.605535984039307,0.630779027938843,0.622087001800537,0.627362012863159,0.605535984039307,0.630779027938843,0.600762009620667,0.616892993450165,0.617120921611786,0.614104986190796,0.622087001800537,0.627362012863159,0.617120921611786,0.614104986190796,0.631500005722046,0.611322999000549,0.636604905128479,0.623951852321625,0.622087001800537,0.627362012863159,0.622922003269196,0.573575973510742,0.621788024902344,0.560869991779327,0.63559889793396,0.560998022556305,0.636632978916168,0.572820007801056,0.63559889793396,0.560998022556305,0.649101972579956,0.561277091503143,0.649968028068542,0.572019040584564,0.636632978916168,0.572820007801056,0.649968028068542,0.572019040584564,0.651917099952698,0.582540988922119,0.638562023639679,0.584504008293152,0.636632978916168,0.572820007801056,0.610736072063446,0.587691068649292,0.624787926673889,0.586188971996307,0.627604007720947,0.598752975463867,0.613402009010315,0.600903034210205,0.627604007720947,0.598752975463867,0.631500005722046,0.611322999000549,0.617120921611786,0.614104986190796,0.613402009010315,0.600903034210205,0.617120921611786,0.614104986190796, +0.600762009620667,0.616892993450165,0.597186923027039,0.603119909763336,0.613402009010315,0.600903034210205,0.590801000595093,0.649165987968445,0.567915856838226,0.654111981391907,0.562291979789734,0.638794004917145,0.585014879703522,0.63466888666153,0.562291979789734,0.638794004917145,0.557875990867615,0.62348198890686,0.580497145652771,0.620125114917755,0.585014879703522,0.63466888666153,0.580497145652771,0.620125114917755,0.600762009620667,0.616892993450165,0.605535984039307,0.630779027938843,0.585014879703522,0.63466888666153,0.5747429728508,0.591560006141663,0.594642996788025,0.589363992214203,0.597186923027039,0.603119909763336,0.577098071575165,0.605815052986145,0.597186923027039,0.603119909763336,0.600762009620667,0.616892993450165,0.580497145652771,0.620125114917755,0.577098071575165,0.605815052986145,0.580497145652771,0.620125114917755,0.557875990867615,0.62348198890686,0.554244995117188,0.608434021472931,0.577098071575165,0.605815052986145,0.509602427482605,0.61336076259613,0.502324521541595,0.596214294433594,0.526895999908447,0.594223976135254,0.529733061790466,0.610425174236298,0.526895999908447,0.594223976135254,0.551878988742828,0.593454957008362,0.554244995117188,0.608434021472931,0.529733061790466,0.610425174236298,0.554244995117188,0.608434021472931,0.557875990867615,0.62348198890686,0.534453988075256,0.62664008140564,0.529733061790466,0.610425174236298,0.572802126407623,0.562528014183044,0.591967940330505,0.561532974243164,0.592966020107269,0.575528025627136,0.573352932929993,0.57718700170517,0.592966020107269,0.575528025627136,0.594642996788025,0.589363992214203,0.5747429728508,0.591560006141663,0.573352932929993,0.57718700170517,0.5747429728508,0.591560006141663,0.551878988742828,0.593454957008362,0.551262021064758,0.578350961208344,0.573352932929993,0.57718700170517,0.530632019042969,0.562062978744507,0.551836013793945,0.563028991222382,0.551262021064758,0.578350961208344,0.5278679728508,0.577991962432861,0.551262021064758,0.578350961208344,0.551878988742828,0.593454957008362,0.526895999908447, +0.594223976135254,0.5278679728508,0.577991962432861,0.526895999908447,0.594223976135254,0.502324521541595,0.596214294433594,0.505716979503632,0.57695597410202,0.5278679728508,0.577991962432861,0.470887988805771,0.575296998023987,0.47317698597908,0.567149996757507,0.491398990154266,0.56308501958847,0.48735499382019,0.576084971427917,0.491398990154266,0.56308501958847,0.510163068771362,0.56146901845932,0.505716979503632,0.57695597410202,0.48735499382019,0.576084971427917,0.505716979503632,0.57695597410202,0.502324521541595,0.596214294433594,0.482671022415161,0.588007926940918,0.48735499382019,0.576084971427917,0.497837007045746,0.536794006824493,0.51623797416687,0.533711910247803,0.513710021972656,0.547042012214661,0.495015978813171,0.549732029438019,0.513710021972656,0.547042012214661,0.510163068771362,0.56146901845932,0.491398990154266,0.56308501958847,0.495015978813171,0.549732029438019,0.491398990154266,0.56308501958847,0.47317698597908,0.567149996757507,0.476705014705658,0.553631007671356,0.495015978813171,0.549732029438019,0.535125851631165,0.532420992851257,0.554271936416626,0.532114028930664,0.553040981292725,0.547397017478943,0.533171117305756,0.546768128871918,0.553040981292725,0.547397017478943,0.551836013793945,0.563028991222382,0.530632019042969,0.562062978744507,0.533171117305756,0.546768128871918,0.530632019042969,0.562062978744507,0.510163068771362,0.56146901845932,0.513710021972656,0.547042012214661,0.533171117305756,0.546768128871918,0.499749183654785,0.513982117176056,0.517562031745911,0.51010799407959,0.517625987529755,0.521514892578125,0.499490052461624,0.525037050247192,0.517625987529755,0.521514892578125,0.51623797416687,0.533711910247803,0.497837007045746,0.536794006824493,0.499490052461624,0.525037050247192,0.497837007045746,0.536794006824493,0.480037033557892,0.540130853652954,0.48154404759407,0.529229998588562,0.499490052461624,0.525037050247192,0.607770025730133,0.56101405620575,0.621788024902344,0.560869991779327,0.622922003269196,0.573575973510742,0.608928143978119,0.574402093887329,0.622922003269196, +0.573575973510742,0.624787926673889,0.586188971996307,0.610736072063446,0.587691068649292,0.608928143978119,0.574402093887329,0.610736072063446,0.587691068649292,0.594642996788025,0.589363992214203,0.592966020107269,0.575528025627136,0.608928143978119,0.574402093887329,0.573445856571198,0.531981885433197,0.591441035270691,0.532248139381409,0.591459989547729,0.547299027442932,0.572963118553162,0.547418117523193,0.591459989547729,0.547299027442932,0.591967940330505,0.561532974243164,0.572802126407623,0.562528014183044,0.572963118553162,0.547418117523193,0.572802126407623,0.562528014183044,0.551836013793945,0.563028991222382,0.553040981292725,0.547397017478943,0.572963118553162,0.547418117523193,0.495579898357391,0.493303924798965,0.512603878974915,0.485853970050812,0.515734851360321,0.499143898487091,0.498385012149811,0.503148019313812,0.515734851360321,0.499143898487091,0.517562031745911,0.51010799407959,0.499749183654785,0.513982117176056,0.498385012149811,0.503148019313812,0.499749183654785,0.513982117176056,0.482536554336548,0.518382847309113,0.481906116008759,0.507878124713898,0.498385012149811,0.503148019313812,0.517625987529755,0.521514892578125,0.517562031745911,0.51010799407959,0.536084055900574,0.507424116134644,0.536139905452728,0.519337952136993,0.536084055900574,0.507424116134644,0.554625928401947,0.505336999893188,0.554923057556152,0.517835974693298,0.536139905452728,0.519337952136993,0.554923057556152,0.517835974693298,0.554271936416626,0.532114028930664,0.535125851631165,0.532420992851257,0.536139905452728,0.519337952136993,0.553013980388641,0.495386004447937,0.554625928401947,0.505336999893188,0.536084055900574,0.507424116134644,0.534825921058655,0.496587038040161,0.536084055900574,0.507424116134644,0.517562031745911,0.51010799407959,0.515734851360321,0.499143898487091,0.534825921058655,0.496587038040161,0.515734851360321,0.499143898487091,0.512603878974915,0.485853970050812,0.534042000770569,0.484479904174805,0.534825921058655,0.496587038040161,0.499125957489014,0.47408401966095,0.512603878974915,0.485853970050812, +0.495579898357391,0.493303924798965,0.488793760538101,0.48198664188385,0.495579898357391,0.493303924798965,0.480955958366394,0.497406989336014,0.476718842983246,0.487908959388733,0.488793760538101,0.48198664188385,0.575701892375946,0.489001870155334,0.591762065887451,0.497911989688873,0.572502017021179,0.503251016139984,0.567655026912689,0.495447993278503,0.572502017021179,0.503251016139984,0.554625928401947,0.505336999893188,0.553013980388641,0.495386004447937,0.567655026912689,0.495447993278503,0.591908991336823,0.515802025794983,0.591441035270691,0.532248139381409,0.573445856571198,0.531981885433197,0.573862016201019,0.516344010829926,0.573445856571198,0.531981885433197,0.554271936416626,0.532114028930664,0.554923057556152,0.517835974693298,0.573862016201019,0.516344010829926,0.554923057556152,0.517835974693298,0.554625928401947,0.505336999893188,0.572502017021179,0.503251016139984,0.573862016201019,0.516344010829926,0.621167004108429,0.548025012016296,0.621788024902344,0.560869991779327,0.607770025730133,0.56101405620575,0.607057988643646,0.547508001327515,0.607770025730133,0.56101405620575,0.591967940330505,0.561532974243164,0.591459989547729,0.547299027442932,0.607057988643646,0.547508001327515,0.591459989547729,0.547299027442932,0.591441035270691,0.532248139381409,0.607052981853485,0.533136069774628,0.607057988643646,0.547508001327515,0.591908991336823,0.515802025794983,0.591762065887451,0.497911989688873,0.610948085784912,0.50173807144165,0.608016014099121,0.51715099811554,0.610948085784912,0.50173807144165,0.625830054283142,0.505088984966278,0.622874021530151,0.51945698261261,0.608016014099121,0.51715099811554,0.622874021530151,0.51945698261261,0.621411859989166,0.534424960613251,0.607052981853485,0.533136069774628,0.608016014099121,0.51715099811554,0.649001896381378,0.549793899059296,0.649101972579956,0.561277091503143,0.63559889793396,0.560998022556305,0.635197997093201,0.548826932907104,0.63559889793396,0.560998022556305,0.621788024902344,0.560869991779327,0.621167004108429,0.548025012016296,0.635197997093201, +0.548826932907104,0.621167004108429,0.548025012016296,0.621411859989166,0.534424960613251,0.635650098323822,0.535893082618713,0.635197997093201,0.548826932907104,0.639774084091187,0.50823700428009,0.653109014034271,0.511236071586609,0.651045978069305,0.524082958698273,0.637175917625427,0.521782875061035,0.651045978069305,0.524082958698273,0.649653851985931,0.537439823150635,0.635650098323822,0.535893082618713,0.637175917625427,0.521782875061035,0.635650098323822,0.535893082618713,0.621411859989166,0.534424960613251,0.622874021530151,0.51945698261261,0.637175917625427,0.521782875061035,0.675490021705627,0.552179992198944,0.674444139003754,0.562327980995178,0.662195980548859,0.561589002609253,0.662431955337524,0.550807952880859,0.662195980548859,0.561589002609253,0.649101972579956,0.561277091503143,0.649001896381378,0.549793899059296,0.662431955337524,0.550807952880859,0.649001896381378,0.549793899059296,0.649653851985931,0.537439823150635,0.663312971591949,0.538964867591858,0.662431955337524,0.550807952880859,0.666160881519318,0.514141857624054,0.679237961769104,0.517117023468018,0.678139090538025,0.528627991676331,0.66460907459259,0.526312112808228,0.678139090538025,0.528627991676331,0.676838994026184,0.540642023086548,0.663312971591949,0.538964867591858,0.66460907459259,0.526312112808228,0.663312971591949,0.538964867591858,0.649653851985931,0.537439823150635,0.651045978069305,0.524082958698273,0.66460907459259,0.526312112808228,0.692646861076355,0.520321011543274,0.705263018608093,0.52276599407196,0.705291986465454,0.533410012722015,0.691910922527313,0.531189978122711,0.705291986465454,0.533410012722015,0.70400595664978,0.544688999652863,0.690445065498352,0.542646050453186,0.691910922527313,0.531189978122711,0.690445065498352,0.542646050453186,0.676838994026184,0.540642023086548,0.678139090538025,0.528627991676331,0.691910922527313,0.531189978122711,0.715963006019592,0.523461997509003,0.725100040435791,0.521835029125214,0.728601932525635,0.533224940299988,0.717645883560181,0.534698009490967,0.728601932525635,0.533224940299988, +0.733406066894531,0.548467993736267,0.717397928237915,0.546486973762512,0.717645883560181,0.534698009490967,0.717397928237915,0.546486973762512,0.70400595664978,0.544688999652863,0.705291986465454,0.533410012722015,0.717645883560181,0.534698009490967,0.655768990516663,0.500409066677094,0.659377992153168,0.490701943635941,0.6701899766922,0.494431018829346,0.667809009552002,0.50375097990036,0.6701899766922,0.494431018829346,0.681162118911743,0.498096108436584,0.679983019828796,0.507089972496033,0.667809009552002,0.50375097990036,0.679983019828796,0.507089972496033,0.679237961769104,0.517117023468018,0.666160881519318,0.514141857624054,0.667809009552002,0.50375097990036,0.679983019828796,0.507089972496033,0.681162118911743,0.498096108436584,0.692829012870789,0.501713991165161,0.692721128463745,0.510500073432922,0.692829012870789,0.501713991165161,0.703592121601105,0.504099011421204,0.704541981220245,0.512899994850159,0.692721128463745,0.510500073432922,0.704541981220245,0.512899994850159,0.705263018608093,0.52276599407196,0.692646861076355,0.520321011543274,0.692721128463745,0.510500073432922,0.711849987506866,0.504068970680237,0.71883088350296,0.502372860908508,0.721874177455902,0.511622130870819,0.713966906070709,0.513209998607635,0.721874177455902,0.511622130870819,0.725100040435791,0.521835029125214,0.715963006019592,0.523461997509003,0.713966906070709,0.513209998607635,0.715963006019592,0.523461997509003,0.705263018608093,0.52276599407196,0.704541981220245,0.512899994850159,0.713966906070709,0.513209998607635,0.74516898393631,0.518167018890381,0.752550005912781,0.526445031166077,0.742977976799011,0.537455976009369,0.737782955169678,0.52716201543808,0.742977976799011,0.537455976009369,0.733406066894531,0.548467993736267,0.728601932525635,0.533224940299988,0.737782955169678,0.52716201543808,0.728601932525635,0.533224940299988,0.725100040435791,0.521835029125214,0.733025014400482,0.517306089401245,0.737782955169678,0.52716201543808,0.743798136711121,0.502215981483459,0.747237980365753,0.490469992160797,0.755352258682251, +0.498297989368439,0.750738024711609,0.507901012897491,0.755352258682251,0.498297989368439,0.765205025672913,0.503739953041077,0.758876919746399,0.515092015266418,0.750738024711609,0.507901012897491,0.758876919746399,0.515092015266418,0.752550005912781,0.526445031166077,0.74516898393631,0.518167018890381,0.750738024711609,0.507901012897491,0.725762009620667,0.499758005142212,0.732474088668823,0.496379047632217,0.735143065452576,0.504060983657837,0.729140877723694,0.508329927921295,0.735143065452576,0.504060983657837,0.739377975463867,0.510545015335083,0.733025014400482,0.517306089401245,0.729140877723694,0.508329927921295,0.733025014400482,0.517306089401245,0.725100040435791,0.521835029125214,0.721874177455902,0.511622130870819,0.729140877723694,0.508329927921295,0.755352258682251,0.498297989368439,0.747237980365753,0.490469992160797,0.757729113101959,0.483090043067932,0.759872853755951,0.49129194021225,0.757729113101959,0.483090043067932,0.768822014331818,0.47987699508667,0.767014026641846,0.491809010505676,0.759872853755951,0.49129194021225,0.755185961723328,0.457354992628098,0.765509009361267,0.449916005134583,0.767166018486023,0.464896976947784,0.756631851196289,0.470932930707932,0.767166018486023,0.464896976947784,0.768822014331818,0.47987699508667,0.757729113101959,0.483090043067932,0.756631851196289,0.470932930707932,0.757729113101959,0.483090043067932,0.747237980365753,0.490469992160797,0.746650099754333,0.476855009794235,0.756631851196289,0.470932930707932,0.735143065452576,0.504060983657837,0.732474088668823,0.496379047632217,0.738796949386597,0.492389976978302,0.739255130290985,0.499543011188507,0.738796949386597,0.492389976978302,0.747237980365753,0.490469992160797,0.743798136711121,0.502215981483459,0.739255130290985,0.499543011188507,0.706403970718384,0.488902032375336,0.712005972862244,0.485536992549896,0.715878963470459,0.493871986865997,0.709806084632874,0.496170997619629,0.715878963470459,0.493871986865997,0.71883088350296,0.502372860908508,0.711849987506866,0.504068970680237,0.709806084632874,0.496170997619629, +0.711849987506866,0.504068970680237,0.703592121601105,0.504099011421204,0.702875971794128,0.496650993824005,0.709806084632874,0.496170997619629,0.683558106422424,0.48968306183815,0.687332034111023,0.481909066438675,0.695901989936829,0.48724502325058,0.693664908409119,0.493947923183441,0.695901989936829,0.48724502325058,0.701893985271454,0.491047024726868,0.702875971794128,0.496650993824005,0.693664908409119,0.493947923183441,0.702875971794128,0.496650993824005,0.703592121601105,0.504099011421204,0.692829012870789,0.501713991165161,0.693664908409119,0.493947923183441,0.718667984008789,0.482069045305252,0.726505935192108,0.477588951587677,0.729797005653381,0.487480044364929,0.722521126270294,0.491115033626556,0.729797005653381,0.487480044364929,0.732474088668823,0.496379047632217,0.725762009620667,0.499758005142212,0.722521126270294,0.491115033626556,0.725762009620667,0.499758005142212,0.71883088350296,0.502372860908508,0.715878963470459,0.493871986865997,0.722521126270294,0.491115033626556,0.735633909702301,0.471187949180603,0.745407998561859,0.464047968387604,0.746650099754333,0.476855009794235,0.737773001194,0.482549011707306,0.746650099754333,0.476855009794235,0.747237980365753,0.490469992160797,0.738796949386597,0.492389976978302,0.737773001194,0.482549011707306,0.738796949386597,0.492389976978302,0.732474088668823,0.496379047632217,0.729797005653381,0.487480044364929,0.737773001194,0.482549011707306,0.707303941249847,0.462745994329453,0.716436982154846,0.456409990787506,0.721992909908295,0.466927945613861,0.71345591545105,0.472288012504578,0.721992909908295,0.466927945613861,0.726505935192108,0.477588951587677,0.718667984008789,0.482069045305252,0.71345591545105,0.472288012504578,0.718667984008789,0.482069045305252,0.712005972862244,0.485536992549896,0.706203043460846,0.47678405046463,0.71345591545105,0.472288012504578,0.695901989936829,0.48724502325058,0.687332034111023,0.481909066438675,0.692643046379089,0.474831014871597,0.700217008590698,0.481646001338959,0.692643046379089,0.474831014871597,0.699347913265228, +0.468443989753723,0.706203043460846,0.47678405046463,0.700217008590698,0.481646001338959,0.706203043460846,0.47678405046463,0.712005972862244,0.485536992549896,0.706403970718384,0.488902032375336,0.700217008590698,0.481646001338959,0.72666996717453,0.448112934827805,0.737230062484741,0.439662009477615,0.742116093635559,0.451577991247177,0.731829881668091,0.459473967552185,0.742116093635559,0.451577991247177,0.745407998561859,0.464047968387604,0.735633909702301,0.471187949180603,0.731829881668091,0.459473967552185,0.735633909702301,0.471187949180603,0.726505935192108,0.477588951587677,0.721992909908295,0.466927945613861,0.731829881668091,0.459473967552185,0.747337996959686,0.432869046926498,0.757844090461731,0.427706062793732,0.761675953865051,0.438811004161835,0.751996994018555,0.44489198923111,0.761675953865051,0.438811004161835,0.765509009361267,0.449916005134583,0.755185961723328,0.457354992628098,0.751996994018555,0.44489198923111,0.755185961723328,0.457354992628098,0.745407998561859,0.464047968387604,0.742116093635559,0.451577991247177,0.751996994018555,0.44489198923111,0.713181972503662,0.428220063447952,0.724002003669739,0.417964994907379,0.731206893920898,0.428516924381256,0.720463037490845,0.437806040048599,0.731206893920898,0.428516924381256,0.737230062484741,0.439662009477615,0.72666996717453,0.448112934827805,0.720463037490845,0.437806040048599,0.72666996717453,0.448112934827805,0.716436982154846,0.456409990787506,0.710016906261444,0.446949005126953,0.720463037490845,0.437806040048599,0.692322015762329,0.461350947618484,0.684731960296631,0.454809010028839,0.693201005458832,0.446747004985809,0.700634002685547,0.454419046640396,0.693201005458832,0.446747004985809,0.702636122703552,0.438174039125443,0.710016906261444,0.446949005126953,0.700634002685547,0.454419046640396,0.710016906261444,0.446949005126953,0.716436982154846,0.456409990787506,0.707303941249847,0.462745994329453,0.700634002685547,0.454419046640396,0.734260976314545,0.408490002155304,0.724002003669739,0.417964994907379,0.715568125247955,0.407828062772751, +0.725503146648407,0.396890014410019,0.715568125247955,0.407828062772751,0.705480992794037,0.398045003414154,0.714994847774506,0.38590395450592,0.725503146648407,0.396890014410019,0.714994847774506,0.38590395450592,0.724838018417358,0.373081058263779,0.735020995140076,0.386078000068665,0.725503146648407,0.396890014410019,0.731206893920898,0.428516924381256,0.724002003669739,0.417964994907379,0.734260976314545,0.408490002155304,0.741482973098755,0.420609027147293,0.734260976314545,0.408490002155304,0.745202898979187,0.399073958396912,0.751523017883301,0.413389950990677,0.741482973098755,0.420609027147293,0.751523017883301,0.413389950990677,0.757844090461731,0.427706062793732,0.747337996959686,0.432869046926498,0.741482973098755,0.420609027147293,0.695096969604492,0.410122990608215,0.705480992794037,0.398045003414154,0.715568125247955,0.407828062772751,0.70480090379715,0.419017910957336,0.715568125247955,0.407828062772751,0.724002003669739,0.417964994907379,0.713181972503662,0.428220063447952,0.70480090379715,0.419017910957336,0.713181972503662,0.428220063447952,0.702636122703552,0.438174039125443,0.694199025630951,0.429712951183319,0.70480090379715,0.419017910957336,0.670589089393616,0.392899066209793,0.678882002830505,0.379305928945541,0.69331693649292,0.388550996780396,0.683848977088928,0.401456952095032,0.69331693649292,0.388550996780396,0.705480992794037,0.398045003414154,0.695096969604492,0.410122990608215,0.683848977088928,0.401456952095032,0.695096969604492,0.410122990608215,0.684765934944153,0.421549946069717,0.674396932125092,0.413668990135193,0.683848977088928,0.401456952095032,0.687552869319916,0.365891009569168,0.698361039161682,0.352290987968445,0.711599946022034,0.362685978412628,0.702524065971375,0.375624060630798,0.711599946022034,0.362685978412628,0.724838018417358,0.373081058263779,0.714994847774506,0.38590395450592,0.702524065971375,0.375624060630798,0.714994847774506,0.38590395450592,0.705480992794037,0.398045003414154,0.69331693649292,0.388550996780396,0.702524065971375,0.375624060630798,0.636784911155701, +0.376213014125824,0.642692983150482,0.361732989549637,0.661983013153076,0.370270013809204,0.654851734638214,0.38432589173317,0.661983013153076,0.370270013809204,0.678882002830505,0.379305928945541,0.670589089393616,0.392899066209793,0.654851734638214,0.38432589173317,0.670589089393616,0.392899066209793,0.662279009819031,0.405844002962112,0.6475989818573,0.39785099029541,0.654851734638214,0.38432589173317,0.64894300699234,0.347772985696793,0.656314015388489,0.333685994148254,0.677337884902954,0.342988967895508,0.669551014900208,0.35654604434967,0.677337884902954,0.342988967895508,0.698361039161682,0.352290987968445,0.687552869319916,0.365891009569168,0.669551014900208,0.35654604434967,0.687552869319916,0.365891009569168,0.678882002830505,0.379305928945541,0.661983013153076,0.370270013809204,0.669551014900208,0.35654604434967,0.60459303855896,0.332802057266235,0.606663107872009,0.31817501783371,0.631488025188446,0.325931012630463,0.626157999038696,0.339753985404968,0.631488025188446,0.325931012630463,0.656314015388489,0.333685994148254,0.64894300699234,0.347772985696793,0.626157999038696,0.339753985404968,0.64894300699234,0.347772985696793,0.642692983150482,0.361732989549637,0.621088027954102,0.353986024856567,0.626157999038696,0.339753985404968,0.582952439785004,0.337187349796295,0.567469954490662,0.330958187580109,0.574460983276367,0.322975039482117,0.587647080421448,0.327228009700775,0.574460983276367,0.322975039482117,0.580090045928955,0.311969071626663,0.593375980854034,0.315072000026703,0.587647080421448,0.327228009700775,0.593375980854034,0.315072000026703,0.606663107872009,0.31817501783371,0.60459303855896,0.332802057266235,0.587647080421448,0.327228009700775,0.636784911155701,0.376213014125824,0.630751132965088,0.390271097421646,0.612128973007202,0.383684009313583,0.616535902023315,0.369035005569458,0.612128973007202,0.383684009313583,0.592489004135132,0.378598988056183,0.595197975635529,0.36232402920723,0.616535902023315,0.369035005569458,0.595197975635529,0.36232402920723,0.596561372280121,0.345253050327301, +0.621088027954102,0.353986024856567,0.616535902023315,0.369035005569458,0.624125957489014,0.402964979410172,0.617404937744141,0.414728939533234,0.602810978889465,0.408582985401154,0.607487976551056,0.396716982126236,0.602810978889465,0.408582985401154,0.588109970092773,0.40310999751091,0.590300023555756,0.390854001045227,0.607487976551056,0.396716982126236,0.590300023555756,0.390854001045227,0.592489004135132,0.378598988056183,0.612128973007202,0.383684009313583,0.607487976551056,0.396716982126236,0.558840990066528,0.327784597873688,0.550303876399994,0.324851393699646,0.554401993751526,0.318329006433487,0.564176976680756,0.31998398900032,0.554401993751526,0.318329006433487,0.561287999153137,0.308959990739822,0.570689082145691,0.31046399474144,0.564176976680756,0.31998398900032,0.570689082145691,0.31046399474144,0.580090045928955,0.311969071626663,0.574460983276367,0.322975039482117,0.564176976680756,0.31998398900032,0.539385139942169,0.309820532798767,0.561287999153137,0.308959990739822,0.554401993751526,0.318329006433487,0.542740881443024,0.318083971738815,0.51929897069931,0.304008990526199,0.520278990268707,0.289129972457886,0.534769117832184,0.286010056734085,0.537513971328735,0.300711005926132,0.534769117832184,0.286010056734085,0.549119114875793,0.283560037612915,0.555203914642334,0.296259999275208,0.537513971328735,0.300711005926132,0.555203914642334,0.296259999275208,0.561287999153137,0.308959990739822,0.539385139942169,0.309820532798767,0.537513971328735,0.300711005926132,0.6475989818573,0.39785099029541,0.662279009819031,0.405844002962112,0.653554022312164,0.417314946651459,0.639666140079498,0.409982085227966,0.653554022312164,0.417314946651459,0.644840180873871,0.428059101104736,0.631626009941101,0.421305984258652,0.639666140079498,0.409982085227966,0.631626009941101,0.421305984258652,0.617404937744141,0.414728939533234,0.624125957489014,0.402964979410172,0.639666140079498,0.409982085227966,0.675406992435455,0.431737929582596,0.666732013225555,0.441397994756699,0.656413078308105,0.434733062982559,0.665235996246338, +0.424509942531586,0.656413078308105,0.434733062982559,0.644840180873871,0.428059101104736,0.653554022312164,0.417314946651459,0.665235996246338,0.424509942531586,0.653554022312164,0.417314946651459,0.662279009819031,0.405844002962112,0.674396932125092,0.413668990135193,0.665235996246338,0.424509942531586,0.611082971096039,0.425998002290726,0.604516983032227,0.437065005302429,0.592935025691986,0.430442005395889,0.598296999931335,0.419729977846146,0.592935025691986,0.430442005395889,0.583096981048584,0.423958003520966,0.585604012012482,0.413534045219421,0.598296999931335,0.419729977846146,0.585604012012482,0.413534045219421,0.588109970092773,0.40310999751091,0.602810978889465,0.408582985401154,0.598296999931335,0.419729977846146,0.636560916900635,0.438823997974396,0.628485023975372,0.449730068445206,0.616538047790527,0.443508088588715,0.624050974845886,0.4324109852314,0.616538047790527,0.443508088588715,0.604516983032227,0.437065005302429,0.611082971096039,0.425998002290726,0.624050974845886,0.4324109852314,0.611082971096039,0.425998002290726,0.617404937744141,0.414728939533234,0.631626009941101,0.421305984258652,0.624050974845886,0.4324109852314,0.59706699848175,0.448226988315582,0.604516983032227,0.437065005302429,0.616538047790527,0.443508088588715,0.608682990074158,0.454806953668594,0.616538047790527,0.443508088588715,0.628485023975372,0.449730068445206,0.620379984378815,0.460898995399475,0.608682990074158,0.454806953668594,0.620379984378815,0.460898995399475,0.611825883388519,0.472379922866821,0.599322974681854,0.466454982757568,0.608682990074158,0.454806953668594,0.59706699848175,0.448226988315582,0.587401986122131,0.459475070238113,0.576653003692627,0.450862973928452,0.585714936256409,0.44100296497345,0.576653003692627,0.450862973928452,0.565895855426788,0.442958950996399,0.574496984481812,0.433459013700485,0.585714936256409,0.44100296497345,0.574496984481812,0.433459013700485,0.583096981048584,0.423958003520966,0.592935025691986,0.430442005395889,0.585714936256409,0.44100296497345,0.693201005458832,0.446747004985809, +0.684731960296631,0.454809010028839,0.676186978816986,0.44812399148941,0.684759974479675,0.439168006181717,0.676186978816986,0.44812399148941,0.666732013225555,0.441397994756699,0.675406992435455,0.431737929582596,0.684759974479675,0.439168006181717,0.675406992435455,0.431737929582596,0.684765934944153,0.421549946069717,0.694199025630951,0.429712951183319,0.684759974479675,0.439168006181717,0.658452093601227,0.451245069503784,0.650613009929657,0.461398005485535,0.63984489440918,0.455693960189819,0.647970020771027,0.445090025663376,0.63984489440918,0.455693960189819,0.628485023975372,0.449730068445206,0.636560916900635,0.438823997974396,0.647970020771027,0.445090025663376,0.636560916900635,0.438823997974396,0.644840180873871,0.428059101104736,0.656413078308105,0.434733062982559,0.647970020771027,0.445090025663376,0.574191868305206,0.470803916454315,0.556427001953125,0.482971012592316,0.552274107933044,0.465778082609177,0.565765023231506,0.459468007087708,0.552274107933044,0.465778082609177,0.553454875946045,0.449757933616638,0.559674978256226,0.446357995271683,0.565765023231506,0.459468007087708,0.559674978256226,0.446357995271683,0.565895855426788,0.442958950996399,0.576653003692627,0.450862973928452,0.565765023231506,0.459468007087708,0.599322974681854,0.466454982757568,0.611825883388519,0.472379922866821,0.602401971817017,0.484225004911423,0.587293982505798,0.478594988584518,0.602401971817017,0.484225004911423,0.591762065887451,0.497911989688873,0.575701892375946,0.489001870155334,0.587293982505798,0.478594988584518,0.575701892375946,0.489001870155334,0.556427001953125,0.482971012592316,0.574191868305206,0.470803916454315,0.587293982505798,0.478594988584518,0.534042000770569,0.484479904174805,0.512603878974915,0.485853970050812,0.519653916358948,0.46842497587204,0.53540301322937,0.468753010034561,0.519653916358948,0.46842497587204,0.522218108177185,0.452676087617874,0.537593007087708,0.452968716621399,0.53540301322937,0.468753010034561,0.537593007087708,0.452968716621399,0.553454875946045,0.449757933616638,0.552274107933044, +0.465778082609177,0.53540301322937,0.468753010034561,0.643263876438141,0.471978902816772,0.636533975601196,0.482704013586044,0.624321937561035,0.477831929922104,0.631974875926971,0.466654896736145,0.624321937561035,0.477831929922104,0.611825883388519,0.472379922866821,0.620379984378815,0.460898995399475,0.631974875926971,0.466654896736145,0.620379984378815,0.460898995399475,0.628485023975372,0.449730068445206,0.63984489440918,0.455693960189819,0.631974875926971,0.466654896736145,0.624321937561035,0.477831929922104,0.636533975601196,0.482704013586044,0.630553007125854,0.493288934230804,0.616847991943359,0.489077985286713,0.630553007125854,0.493288934230804,0.625830054283142,0.505088984966278,0.610948085784912,0.50173807144165,0.616847991943359,0.489077985286713,0.610948085784912,0.50173807144165,0.591762065887451,0.497911989688873,0.602401971817017,0.484225004911423,0.616847991943359,0.489077985286713,0.514537990093231,0.450159996747971,0.522218108177185,0.452676087617874,0.519653916358948,0.46842497587204,0.509528994560242,0.464825004339218,0.519653916358948,0.46842497587204,0.512603878974915,0.485853970050812,0.499125957489014,0.47408401966095,0.509528994560242,0.464825004339218,0.46083664894104,0.466500401496887,0.470919996500015,0.478058010339737,0.46056604385376,0.485220015048981,0.453064620494843,0.475086212158203,0.46083664894104,0.466500401496887,0.467435657978058,0.458736717700958,0.479971051216125,0.471505045890808,0.470919996500015,0.478058010339737,0.470919996500015,0.478058010339737,0.479971051216125,0.471505045890808,0.488793760538101,0.48198664188385,0.476718842983246,0.487908959388733,0.464794665575027,0.439463496208191,0.453833103179932,0.426934123039246,0.466688990592957,0.424021005630493,0.472521007061005,0.432249993085861,0.466688990592957,0.424021005630493,0.48127469420433,0.422952324151993,0.487694025039673,0.431688070297241,0.472521007061005,0.432249993085861,0.487694025039673,0.431688070297241,0.492792010307312,0.437554985284805,0.481555134057999,0.443008780479431,0.472521007061005,0.432249993085861, +0.452052175998688,0.457264959812164,0.44322606921196,0.448550015687943,0.446799069643021,0.436055064201355,0.456938236951828,0.447536796331406,0.446799069643021,0.436055064201355,0.453833103179932,0.426934123039246,0.464794665575027,0.439463496208191,0.456938236951828,0.447536796331406,0.464794665575027,0.439463496208191,0.475263178348541,0.451069891452789,0.467435657978058,0.458736717700958,0.456938236951828,0.447536796331406,0.448411047458649,0.418206989765167,0.443713903427124,0.408971011638641,0.457424998283386,0.403021991252899,0.461374014616013,0.414261996746063,0.457424998283386,0.403021991252899,0.471274077892303,0.401226073503494,0.47594690322876,0.411376535892487,0.461374014616013,0.414261996746063,0.47594690322876,0.411376535892487,0.48127469420433,0.422952324151993,0.466688990592957,0.424021005630493,0.461374014616013,0.414261996746063,0.435476005077362,0.442128956317902,0.42772701382637,0.43570801615715,0.434664934873581,0.420900940895081,0.440645009279251,0.428564995527267,0.434664934873581,0.420900940895081,0.443713903427124,0.408971011638641,0.448411047458649,0.418206989765167,0.440645009279251,0.428564995527267,0.448411047458649,0.418206989765167,0.453833103179932,0.426934123039246,0.446799069643021,0.436055064201355,0.440645009279251,0.428564995527267,0.439651101827621,0.399072051048279,0.435993015766144,0.38922706246376,0.455313891172409,0.378066897392273,0.455691039562225,0.390354990959167,0.455313891172409,0.378066897392273,0.477504074573517,0.36734402179718,0.474388986825943,0.384285002946854,0.455691039562225,0.390354990959167,0.474388986825943,0.384285002946854,0.471274077892303,0.401226073503494,0.457424998283386,0.403021991252899,0.455691039562225,0.390354990959167,0.434664934873581,0.420900940895081,0.42772701382637,0.43570801615715,0.42085799574852,0.429744929075241,0.428926020860672,0.413085043430328,0.42085799574852,0.429744929075241,0.413989007472992,0.423781991004944,0.423328101634979,0.405088126659393,0.428926020860672,0.413085043430328,0.423328101634979,0.405088126659393,0.435993015766144, +0.38922706246376,0.439651101827621,0.399072051048279,0.428926020860672,0.413085043430328,0.432511001825333,0.380149006843567,0.430436015129089,0.367291986942291,0.459244012832642,0.356868058443069,0.455435991287231,0.367967039346695,0.459244012832642,0.356868058443069,0.487402945756912,0.348780006170273,0.482453912496567,0.358061939477921,0.455435991287231,0.367967039346695,0.482453912496567,0.358061939477921,0.477504074573517,0.36734402179718,0.455313891172409,0.378066897392273,0.455435991287231,0.367967039346695,0.412426024675369,0.388772040605545,0.430436015129089,0.367291986942291,0.432511001825333,0.380149006843567,0.41777303814888,0.396883010864258,0.432511001825333,0.380149006843567,0.435993015766144,0.38922706246376,0.423328101634979,0.405088126659393,0.41777303814888,0.396883010864258,0.423328101634979,0.405088126659393,0.413989007472992,0.423781991004944,0.407128065824509,0.415894985198975,0.41777303814888,0.396883010864258,0.402087062597275,0.373643100261688,0.417163014411926,0.355233013629913,0.42235204577446,0.361424058675766,0.407454997301102,0.381053000688553,0.42235204577446,0.361424058675766,0.430436015129089,0.367291986942291,0.412426024675369,0.388772040605545,0.407454997301102,0.381053000688553,0.412426024675369,0.388772040605545,0.400267988443375,0.408008009195328,0.393660962581635,0.400184005498886,0.407454997301102,0.381053000688553,0.483308970928192,0.328117996454239,0.498961091041565,0.329626053571701,0.493182003498077,0.339203000068665,0.469927996397018,0.341584026813507,0.493182003498077,0.339203000068665,0.487402945756912,0.348780006170273,0.459244012832642,0.356868058443069,0.469927996397018,0.341584026813507,0.459244012832642,0.356868058443069,0.430436015129089,0.367291986942291,0.450681984424591,0.342577993869781,0.469927996397018,0.341584026813507,0.519822239875793,0.317452162504196,0.520782053470612,0.319521129131317,0.508248090744019,0.324314057826996,0.495211005210876,0.322472006082535,0.508248090744019,0.324314057826996,0.498961091041565,0.329626053571701,0.483308970928192,0.328117996454239, +0.495211005210876,0.322472006082535,0.482383012771606,0.305045008659363,0.490785956382751,0.290627002716064,0.505122005939484,0.290298014879227,0.500035107135773,0.305005073547363,0.505122005939484,0.290298014879227,0.520278990268707,0.289129972457886,0.51929897069931,0.304008990526199,0.500035107135773,0.305005073547363,0.520159542560577,0.313009828329086,0.519822239875793,0.317452162504196,0.495211005210876,0.322472006082535,0.495478957891464,0.316316992044449,0.455945998430252,0.321404993534088,0.472759872674942,0.319277882575989,0.450681984424591,0.342577993869781,0.439454942941666,0.340797007083893,0.450681984424591,0.342577993869781,0.430436015129089,0.367291986942291,0.42235204577446,0.361424058675766,0.439454942941666,0.340797007083893,0.42235204577446,0.361424058675766,0.417163014411926,0.355233013629913,0.431908994913101,0.337430000305176,0.439454942941666,0.340797007083893,0.388503015041351,0.359525084495544,0.403059929609299,0.34334996342659,0.41055703163147,0.349222958087921,0.39554899930954,0.366452991962433,0.41055703163147,0.349222958087921,0.417163014411926,0.355233013629913,0.402087062597275,0.373643100261688,0.39554899930954,0.366452991962433,0.402087062597275,0.373643100261688,0.387055039405823,0.392360061407089,0.379611968994141,0.384519010782242,0.39554899930954,0.366452991962433,0.406877994537354,0.280514001846313,0.428543984889984,0.259896993637085,0.436819016933441,0.262347042560577,0.416799962520599,0.283783942461014,0.467837065458298,0.291578054428101,0.48090797662735,0.265122950077057,0.490340024232864,0.262412995100021,0.478762030601501,0.291227012872696,0.446114003658295,0.290087997913361,0.462592929601669,0.266597986221313,0.47175008058548,0.265861064195633,0.456799000501633,0.291162997484207,0.455945998430252,0.321404993534088,0.445684969425201,0.32073301076889,0.457848012447357,0.305637985467911,0.469004988670349,0.305480003356934,0.457848012447357,0.305637985467911,0.467837065458298,0.291578054428101,0.478762030601501,0.291227012872696,0.469004988670349,0.305480003356934,0.478762030601501, +0.291227012872696,0.490785956382751,0.290627002716064,0.482383012771606,0.305045008659363,0.469004988670349,0.305480003356934,0.426661014556885,0.286345988512039,0.445093005895615,0.264797002077103,0.453843027353287,0.265697002410889,0.43625009059906,0.288465023040771,0.435604989528656,0.319101989269257,0.425604999065399,0.316729933023453,0.436192005872726,0.303301066160202,0.446857035160065,0.30484801530838,0.436192005872726,0.303301066160202,0.446114003658295,0.290087997913361,0.456799000501633,0.291162997484207,0.446857035160065,0.30484801530838,0.456799000501633,0.291162997484207,0.467837065458298,0.291578054428101,0.457848012447357,0.305637985467911,0.446857035160065,0.30484801530838,0.414659023284912,0.760558009147644,0.426856994628906,0.760756015777588,0.430529028177261,0.784605979919434,0.421461045742035,0.783938109874725,0.414993941783905,0.329581946134567,0.425604999065399,0.316729933023453,0.435604989528656,0.319101989269257,0.423707008361816,0.333667010068893,0.435604989528656,0.319101989269257,0.445684969425201,0.32073301076889,0.431908994913101,0.337430000305176,0.423707008361816,0.333667010068893,0.431908994913101,0.337430000305176,0.417163014411926,0.355233013629913,0.41055703163147,0.349222958087921,0.423707008361816,0.333667010068893,0.374710947275162,0.346480995416641,0.3870629966259,0.33203798532486,0.395200103521347,0.337567090988159,0.381610989570618,0.352901011705399,0.395200103521347,0.337567090988159,0.403059929609299,0.34334996342659,0.388503015041351,0.359525084495544,0.381610989570618,0.352901011705399,0.388503015041351,0.359525084495544,0.372170001268387,0.376677989959717,0.366586029529572,0.369744002819061,0.381610989570618,0.352901011705399,0.415582001209259,0.313832998275757,0.405580997467041,0.310620009899139,0.416019946336746,0.298638999462128,0.426012992858887,0.301187992095947,0.416019946336746,0.298638999462128,0.426661014556885,0.286345988512039,0.43625009059906,0.288465023040771,0.426012992858887,0.301187992095947,0.43625009059906,0.288465023040771,0.446114003658295,0.290087997913361, +0.436192005872726,0.303301066160202,0.426012992858887,0.301187992095947,0.46138796210289,0.888859927654266,0.450418174266815,0.892598390579224,0.454254746437073,0.905250072479248,0.464502930641174,0.903089880943298,0.360491991043091,0.333911001682281,0.370257824659348,0.322029441595078,0.378736048936844,0.326925009489059,0.367643058300018,0.340169072151184,0.378736048936844,0.326925009489059,0.3870629966259,0.33203798532486,0.374710947275162,0.346480995416641,0.367643058300018,0.340169072151184,0.374710947275162,0.346480995416641,0.361001014709473,0.362809985876083,0.355302035808563,0.354985028505325,0.367643058300018,0.340169072151184,0.396640986204147,0.320919007062912,0.405580997467041,0.310620009899139,0.415582001209259,0.313832998275757,0.405918002128601,0.325251996517181,0.415582001209259,0.313832998275757,0.425604999065399,0.316729933023453,0.414993941783905,0.329581946134567,0.405918002128601,0.325251996517181,0.414993941783905,0.329581946134567,0.403059929609299,0.34334996342659,0.395200103521347,0.337567090988159,0.405918002128601,0.325251996517181,0.395646035671234,0.30729803442955,0.386279761791229,0.303198516368866,0.395745992660522,0.292773008346558,0.405912011861801,0.295781999826431,0.395745992660522,0.292773008346558,0.406877994537354,0.280514001846313,0.416799962520599,0.283783942461014,0.405912011861801,0.295781999826431,0.416799962520599,0.283783942461014,0.426661014556885,0.286345988512039,0.416019946336746,0.298638999462128,0.405912011861801,0.295781999826431,0.377997994422913,0.31284698843956,0.386279761791229,0.303198516368866,0.395646035671234,0.30729803442955,0.387329012155533,0.31682300567627,0.395646035671234,0.30729803442955,0.405580997467041,0.310620009899139,0.396640986204147,0.320919007062912,0.387329012155533,0.31682300567627,0.396640986204147,0.320919007062912,0.3870629966259,0.33203798532486,0.378736048936844,0.326925009489059,0.387329012155533,0.31682300567627,0.677081882953644,0.46322900056839,0.67026299238205,0.472025066614151,0.660784900188446,0.46684193611145,0.668179988861084, +0.457320988178253,0.660784900188446,0.46684193611145,0.650613009929657,0.461398005485535,0.658452093601227,0.451245069503784,0.668179988861084,0.457320988178253,0.658452093601227,0.451245069503784,0.666732013225555,0.441397994756699,0.676186978816986,0.44812399148941,0.668179988861084,0.457320988178253,0.643263876438141,0.471978902816772,0.650613009929657,0.461398005485535,0.660784900188446,0.46684193611145,0.654047012329102,0.476771056652069,0.660784900188446,0.46684193611145,0.67026299238205,0.472025066614151,0.664286017417908,0.48121103644371,0.654047012329102,0.476771056652069,0.664286017417908,0.48121103644371,0.659377992153168,0.490701943635941,0.648190021514893,0.486893087625504,0.654047012329102,0.476771056652069,0.692643046379089,0.474831014871597,0.687332034111023,0.481909066438675,0.678949058055878,0.476941049098969,0.685083985328674,0.468879014253616,0.678949058055878,0.476941049098969,0.67026299238205,0.472025066614151,0.677081882953644,0.46322900056839,0.685083985328674,0.468879014253616,0.677081882953644,0.46322900056839,0.684731960296631,0.454809010028839,0.692322015762329,0.461350947618484,0.685083985328674,0.468879014253616,0.648190021514893,0.486893087625504,0.659377992153168,0.490701943635941,0.655768990516663,0.500409066677094,0.643438994884491,0.496993958950043,0.655768990516663,0.500409066677094,0.653109014034271,0.511236071586609,0.639774084091187,0.50823700428009,0.643438994884491,0.496993958950043,0.639774084091187,0.50823700428009,0.625830054283142,0.505088984966278,0.630553007125854,0.493288934230804,0.643438994884491,0.496993958950043,0.683558106422424,0.48968306183815,0.681162118911743,0.498096108436584,0.6701899766922,0.494431018829346,0.673943996429443,0.485475927591324,0.6701899766922,0.494431018829346,0.659377992153168,0.490701943635941,0.664286017417908,0.48121103644371,0.673943996429443,0.485475927591324,0.664286017417908,0.48121103644371,0.67026299238205,0.472025066614151,0.678949058055878,0.476941049098969,0.673943996429443,0.485475927591324,0.55458801984787,0.970911979675293, +0.568253993988037,0.964118003845215,0.567255973815918,0.955087065696716,0.55285108089447,0.963500022888184,0.498829990625381,0.919524013996124,0.508409976959229,0.922408044338226,0.51288902759552,0.906279981136322,0.500948905944824,0.904640793800354,0.517988979816437,0.925292015075684,0.525695025920868,0.929835021495819,0.53634911775589,0.911174058914185,0.524829983711243,0.907918930053711,0.543422996997833,0.943652987480164,0.558902144432068,0.929570198059082,0.553385078907013,0.921999037265778,0.538412094116211,0.939016044139862,0.551113069057465,0.956089019775391,0.566256999969482,0.946056008338928,0.562579989433289,0.93781304359436,0.547267854213715,0.949870824813843,0.650957107543945,0.156525030732155,0.636853039264679,0.159445002675056,0.655004024505615,0.174863025546074,0.669582009315491,0.172124981880188,0.696945011615753,0.162708014249802,0.679005026817322,0.151510000228882,0.664981007575989,0.154017999768257,0.683263897895813,0.167415976524353,0.600718021392822,0.167142003774643,0.614292025566101,0.184501007199287,0.627358973026276,0.181050986051559,0.611733019351959,0.164752975106239,0.585457980632782,0.170779004693031,0.58959698677063,0.187631994485855,0.601944029331207,0.186067014932632,0.593088030815125,0.168960005044937,0.561607003211975,0.175750985741615,0.565234124660492,0.190229013562202,0.577414989471436,0.188930988311768,0.573532998561859,0.173264995217323,0.540287017822266,0.178265988826752,0.542217135429382,0.192100048065186,0.553725004196167,0.191165000200272,0.55094701051712,0.177009001374245,0.540287017822266,0.178265988826752,0.526793003082275,0.177669003605843,0.5293790102005,0.192465007305145,0.542217135429382,0.192100048065186,0.421461045742035,0.783938109874725,0.430529028177261,0.784605979919434,0.430916965007782,0.795754909515381,0.424187064170837,0.795623123645782,0.437647014856339,0.795888006687164,0.439597070217133,0.785275042057037,0.454014927148819,0.789458930492401,0.449523001909256,0.799395978450775,0.468432009220123,0.79364401102066,0.479016900062561,0.801620006561279,0.471447944641113, +0.809551954269409,0.461397975683212,0.802904009819031,0.51170289516449,0.834031343460083,0.50029069185257,0.838872313499451,0.491209983825684,0.827916026115417,0.501441061496735,0.822685122489929,0.44827800989151,0.253098011016846,0.445093005895615,0.264797002077103,0.436819016933441,0.262347042560577,0.442268043756485,0.251747012138367,0.462264001369476,0.254667997360229,0.462592929601669,0.266597986221313,0.453843027353287,0.265697002410889,0.455271005630493,0.253883004188538,0.478062033653259,0.253755003213882,0.48090797662735,0.265122950077057,0.47175008058548,0.265861064195633,0.470162987709045,0.254211038351059,0.478062033653259,0.253755003213882,0.486257016658783,0.251954048871994,0.490340024232864,0.262412995100021,0.48090797662735,0.265122950077057,0.494451999664307,0.250153988599777,0.501734972000122,0.247402012348175,0.50722998380661,0.256805986166,0.499771952629089,0.25970196723938,0.509017944335938,0.244648933410645,0.518692910671234,0.23992595076561,0.525038123130798,0.249454036355019,0.514686942100525,0.253909975290298,0.537480592727661,0.244022369384766,0.525038123130798,0.249454036355019,0.518692910671234,0.23992595076561,0.529126763343811,0.234602153301239,0.883808016777039,0.0491140000522137,0.904338955879211,0.0491139963269234,0.897627949714661,0.0410689935088158,0.877876043319702,0.0410690009593964,0.845507025718689,0.0410690009593964,0.851806879043579,0.0491139926016331,0.867806911468506,0.0491139963269234,0.861692011356354,0.0410690009593964,0.825348019599915,0.0491140000522137,0.838576793670654,0.0491139926016331,0.831323027610779,0.0410690009593964,0.817139029502869,0.0410690009593964,0.791123151779175,0.041069008409977,0.800110936164856,0.0491140000522137,0.812729120254517,0.049114003777504,0.804130911827087,0.0410690009593964,0.777279019355774,0.0491140000522137,0.788694798946381,0.0491139926016331,0.779878973960876,0.0410690009593964,0.768635988235474,0.0410690009593964,0.777279019355774,0.0491140000522137,0.768635988235474,0.0410690009593964,0.758975982666016,0.0410690009593964,0.767579019069672, +0.0491140000522137,0.733915090560913,0.041069008409977,0.740278124809265,0.0491140075027943,0.749078869819641,0.0491139963269234,0.741614878177643,0.0410690009593964,0.718159973621368,0.0410690009593964,0.719227015972137,0.0491140000522137,0.729753017425537,0.0491140075027943,0.726037979125977,0.0410690009593964,0.718159973621368,0.0410690009593964,0.706225991249084,0.0410690009593964,0.705265879631042,0.0491139888763428,0.719227015972137,0.0491140000522137,0.669098973274231,0.0410690009593964,0.646642863750458,0.0410690009593964,0.641104519367218,0.0491139963269234,0.663232088088989,0.0491140000522137,0.590717077255249,0.041069008409977,0.5640509724617,0.0410690009593964,0.558363974094391,0.0491140000522137,0.583914995193481,0.049114003777504,0.53738397359848,0.0410690009593964,0.514124989509583,0.0410690009593964,0.513563990592957,0.0491140000522137,0.532811999320984,0.0491139963269234,0.490866899490356,0.0410690009593964,0.464518934488297,0.0410689935088158,0.468941062688828,0.0491140075027943,0.494315057992935,0.0491140075027943,0.438171982765198,0.0410690009593964,0.421612977981567,0.0410690009593964,0.426679998636246,0.0491140000522137,0.443565934896469,0.0491139926016331,0.992069005966187,0.0341800004243851,0.992069005966187,0.0238010007888079,0.970381855964661,0.0238009989261627,0.970651984214783,0.0341800004243851,0.948694884777069,0.0238009970635176,0.923018872737885,0.0238009989261627,0.924949049949646,0.0341800004243851,0.949233889579773,0.0341800004243851,0.897342085838318,0.023801002651453,0.874817967414856,0.0238009989261627,0.87744402885437,0.0341800004243851,0.90066385269165,0.0341800004243851,0.854223012924194,0.0341800004243851,0.85229504108429,0.0238010007888079,0.826018989086151,0.0238010007888079,0.825787007808685,0.0341800004243851,0.799744009971619,0.0238009989261627,0.772378027439117,0.0238010007888079,0.769366979598999,0.0341800004243851,0.797349989414215,0.0341800004243851,0.745012998580933,0.0238010007888079,0.718019008636475,0.023801002651453,0.712460994720459,0.0341800004243851,0.741383016109467, +0.0341800004243851,0.691024899482727,0.0238009970635176,0.675063014030457,0.0238009989261627,0.66491287946701,0.0341800004243851,0.683539986610413,0.0341800004243851,0.659100890159607,0.0238009970635176,0.639968991279602,0.0238010007888079,0.627687931060791,0.0341800004243851,0.646286010742188,0.0341800004243851,0.620836973190308,0.0238010045140982,0.603357017040253,0.0238010007888079,0.591410994529724,0.0341800004243851,0.609089970588684,0.0341800004243851,0.585878014564514,0.0238010007888079,0.56976592540741,0.0238009989261627,0.557989954948425,0.0341799929738045,0.573730945587158,0.0341800004243851,0.553654909133911,0.0238009970635176,0.542890906333923,0.0238009970635176,0.532018005847931,0.0341800078749657,0.542249023914337,0.0341800004243851,0.486924946308136,0.0341800004243851,0.504356026649475,0.0341800004243851,0.514581978321075,0.0238009989261627,0.497038006782532,0.0238010007888079,0.476447999477386,0.0238010007888079,0.46425598859787,0.0341800004243851,0.475591003894806,0.0341800004243851,0.486743062734604,0.0238010007888079,0.450987011194229,0.023801002651453,0.433443933725357,0.0341800004243851,0.448850095272064,0.0341800078749657,0.463718056678772,0.023801002651453,0.450987011194229,0.023801002651453,0.438712000846863,0.0238009989261627,0.423475027084351,0.0341800004243851,0.433443933725357,0.0341800004243851,0.39881494641304,0.0341799929738045,0.406159996986389,0.0341800004243851,0.415139049291611,0.0238010063767433,0.403840005397797,0.023801002651453,0.391626000404358,0.0238009989261627,0.391626000404358,0.0341800004243851,0.395220011472702,0.0341800004243851,0.3977330327034,0.0238010045140982,0.957599103450775,0.0491140075027943,0.990328013896942,0.0491140000522137,0.990328013896942,0.0410690009593964,0.953853964805603,0.0410690009593964,0.217105001211166,0.806403875350952,0.213832020759583,0.809043109416962,0.218428984284401,0.812523901462555,0.22070500254631,0.810817003250122,0.579524993896484,0.363741040229797,0.582508027553558,0.350659012794495,0.596561372280121,0.345253050327301,0.595197975635529, +0.36232402920723,0.945749998092651,0.0196369998157024,0.969581127166748,0.0191440023481846,0.971789121627808,0.00600699987262487,0.949217021465302,0.00675999978557229,0.449660986661911,0.24575200676918,0.44827800989151,0.253098011016846,0.442268043756485,0.251747012138367,0.44362610578537,0.244361042976379,0.251950949430466,0.930142879486084,0.249989479780197,0.930578112602234,0.251451998949051,0.93507993221283,0.253239989280701,0.934482991695404,0.101075023412704,0.956023097038269,0.110110998153687,0.961559891700745,0.154750004410744,0.908442974090576,0.153162002563477,0.906701147556305,0.156433001160622,0.87204384803772,0.146289989352226,0.85080498456955,0.143690004944801,0.850366055965424,0.15429300069809,0.874029994010925,0.15429300069809,0.874029994010925,0.143690004944801,0.850366055965424,0.141091033816338,0.849927008152008,0.152152016758919,0.876016020774841,0.152152016758919,0.876016020774841,0.141091033816338,0.849927008152008,0.138525992631912,0.848952054977417,0.150749996304512,0.878081977367401,0.150749996304512,0.878081977367401,0.138525992631912,0.848952054977417,0.149349004030228,0.880149006843567,0.13596199452877,0.847976982593536,0.13399900496006,0.846686124801636,0.0593350008130074,0.916211009025574,0.0680930018424988,0.926612019538879,0.46138796210289,0.888859927654266,0.459138065576553,0.881097137928009,0.448221325874329,0.885800004005432,0.450418174266815,0.892598390579224,0.526793003082275,0.177669003605843,0.518274903297424,0.185296833515167,0.521223783493042,0.196973025798798,0.5293790102005,0.192465007305145,0.526793003082275,0.177669003605843,0.524708986282349,0.167145788669586,0.517031967639923,0.166038826107979,0.518274903297424,0.185296833515167,0.382688999176025,0.0341800004243851,0.382688999176025,0.0238009989261627,0.389232218265533,0.0375141203403473,0.385990977287292,0.0376245006918907,0.456611037254333,0.873075127601624,0.445911169052124,0.87880665063858,0.448221325874329,0.885800004005432,0.459138065576553,0.881097137928009,0.286895632743835,0.642228007316589,0.280423939228058, +0.641109585762024,0.281831413507462,0.650557518005371,0.287705928087234,0.65053117275238,0.132034987211227,0.845395863056183,0.0541170015931129,0.906945943832397,0.0593350008130074,0.916211009025574,0.13399900496006,0.846686124801636,0.227638959884644,0.922936797142029,0.228317007422447,0.924607038497925,0.232453674077988,0.922819972038269,0.231630027294159,0.921092092990875,0.245535999536514,0.892589867115021,0.24277800321579,0.867178022861481,0.239928990602493,0.867381989955902,0.243497997522354,0.892763018608093,0.253472983837128,0.893541812896729,0.255042999982834,0.893980026245117,0.254016011953354,0.863664984703064,0.251064002513885,0.864826023578644,0.251902014017105,0.893103897571564,0.253472983837128,0.893541812896729,0.251064002513885,0.864826023578644,0.248113036155701,0.865987122058868,0.249738022685051,0.892760097980499,0.251902014017105,0.893103897571564,0.248113036155701,0.865987122058868,0.245444998145103,0.866581976413727,0.247573986649513,0.892416894435883,0.245444998145103,0.866581976413727,0.24277800321579,0.867178022861481,0.245535999536514,0.892589867115021,0.247573986649513,0.892416894435883,0.249738022685051,0.892760097980499,0.245444998145103,0.866581976413727,0.228751003742218,0.903253018856049,0.193435966968536,0.894949972629547,0.192974999547005,0.897108972072601,0.227776020765305,0.904890060424805,0.229725003242493,0.901616096496582,0.19389696419239,0.892790913581848,0.193435966968536,0.894949972629547,0.228751003742218,0.903253018856049,0.23115299642086,0.899866998195648,0.193876951932907,0.890215814113617,0.19389696419239,0.892790913581848,0.229725003242493,0.901616096496582,0.22435300052166,0.865311980247498,0.19385701417923,0.88764101266861,0.193876951932907,0.890215814113617,0.23115299642086,0.899866998195648,0.232582032680511,0.898118197917938,0.227259993553162,0.866304993629456,0.221979975700378,0.863983869552612,0.193269997835159,0.885096073150635,0.19385701417923,0.88764101266861,0.22435300052166,0.865311980247498,0.219606995582581,0.862656116485596,0.19268199801445,0.882551074028015, +0.193269997835159,0.885096073150635,0.221979975700378,0.863983869552612,0.21696600317955,0.860909879207611,0.191308006644249,0.879841029644012,0.19268199801445,0.882551074028015,0.219606995582581,0.862656116485596,0.214325994253159,0.85916405916214,0.189934000372887,0.877131879329681,0.191308006644249,0.879841029644012,0.21696600317955,0.860909879207611,0.212516993284225,0.856980979442596,0.188528001308441,0.875524818897247,0.189934000372887,0.877131879329681,0.214325994253159,0.85916405916214,0.210708975791931,0.854798853397369,0.187121003866196,0.873919010162354,0.188528001308441,0.875524818897247,0.212516993284225,0.856980979442596,0.209180995821953,0.852472126483917,0.184879034757614,0.872247099876404,0.187121003866196,0.873919010162354,0.210708975791931,0.854798853397369,0.207653999328613,0.850144982337952,0.182636991143227,0.870575070381165,0.184879034757614,0.872247099876404,0.209180995821953,0.852472126483917,0.206084996461868,0.846862852573395,0.180204004049301,0.869508922100067,0.182636991143227,0.870575070381165,0.207653999328613,0.850144982337952,0.169138997793198,0.867543995380402,0.159863963723183,0.84681499004364,0.157495975494385,0.84834885597229,0.166509002447128,0.867784976959229,0.204514995217323,0.843581974506378,0.167695999145508,0.83817994594574,0.166390016674995,0.840671002864838,0.177770033478737,0.868443131446838,0.180204004049301,0.869508922100067,0.206084996461868,0.846862852573395,0.177770033478737,0.868443131446838,0.166390016674995,0.840671002864838,0.164311036467552,0.842976152896881,0.174769997596741,0.867873013019562,0.174769997596741,0.867873013019562,0.164311036467552,0.842976152896881,0.162231966853142,0.845281004905701,0.171769991517067,0.867303013801575,0.171769991517067,0.867303013801575,0.162231966853142,0.845281004905701,0.159863963723183,0.84681499004364,0.169138997793198,0.867543995380402,0.203759014606476,0.840590000152588,0.169002994894981,0.835688948631287,0.167695999145508,0.83817994594574,0.204514995217323,0.843581974506378,0.203004002571106,0.837598979473114,0.169715017080307, +0.83305698633194,0.169002994894981,0.835688948631287,0.203759014606476,0.840590000152588,0.203312993049622,0.833578884601593,0.170426994562149,0.830426037311554,0.169715017080307,0.83305698633194,0.203004002571106,0.837598979473114,0.203621998429298,0.829560041427612,0.170503050088882,0.827834188938141,0.170426994562149,0.830426037311554,0.203312993049622,0.833578884601593,0.204675003886223,0.825841009616852,0.170579001307487,0.82524299621582,0.170503050088882,0.827834188938141,0.203621998429298,0.829560041427612,0.205727994441986,0.822121977806091,0.170019000768661,0.822595000267029,0.170579001307487,0.82524299621582,0.204675003886223,0.825841009616852,0.207443997263908,0.818596005439758,0.169458046555519,0.819946110248566,0.170019000768661,0.822595000267029,0.205727994441986,0.822121977806091,0.209158971905708,0.815070986747742,0.168465003371239,0.817633986473083,0.169458046555519,0.819946110248566,0.207443997263908,0.818596005439758,0.211495935916901,0.81205677986145,0.167472004890442,0.815322995185852,0.168465003371239,0.817633986473083,0.209158971905708,0.815070986747742,0.232307940721512,0.712868869304657,0.211495935916901,0.81205677986145,0.213832020759583,0.809043109416962,0.24151599407196,0.717040002346039,0.223100006580353,0.708697915077209,0.165861025452614,0.813340067863464,0.167472004890442,0.815322995185852,0.211495935916901,0.81205677986145,0.232307940721512,0.712868869304657,0.210537001490593,0.705299019813538,0.164250001311302,0.811356961727142,0.165861025452614,0.813340067863464,0.223100006580353,0.708697915077209,0.198097974061966,0.703016042709351,0.162183001637459,0.809596002101898,0.164250001311302,0.811356961727142,0.210537001490593,0.705299019813538,0.18442602455616,0.701860308647156,0.160117000341415,0.807834923267365,0.162183001637459,0.809596002101898,0.198097974061966,0.703016042709351,0.173371255397797,0.701533079147339,0.157184958457947,0.80639785528183,0.160117000341415,0.807834923267365,0.18442602455616,0.701860308647156,0.160879924893379,0.702236175537109,0.154251992702484,0.804961025714874, +0.157184958457947,0.80639785528183,0.173371255397797,0.701533079147339,0.146392941474915,0.703449010848999,0.151067018508911,0.804484069347382,0.154251992702484,0.804961025714874,0.160879924893379,0.702236175537109,0.134965002536774,0.705901980400085,0.147883012890816,0.804007053375244,0.151067018508911,0.804484069347382,0.146392941474915,0.703449010848999,0.123164013028145,0.70915013551712,0.145413994789124,0.804270148277283,0.147883012890816,0.804007053375244,0.134965002536774,0.705901980400085,0.0460108146071434,0.786994814872742,0.129454001784325,0.812444031238556,0.131311997771263,0.810617983341217,0.0605276674032211,0.760319709777832,0.111861996352673,0.715136051177979,0.142946004867554,0.804533004760742,0.145413994789124,0.804270148277283,0.123164013028145,0.70915013551712,0.100559011101723,0.721121072769165,0.140457004308701,0.805267930030823,0.142946004867554,0.804533004760742,0.111861996352673,0.715136051177979,0.0903579965233803,0.728739023208618,0.137966990470886,0.806003868579865,0.140457004308701,0.805267930030823,0.100559011101723,0.721121072769165,0.0809444338083267,0.736749649047852,0.135568022727966,0.80739814043045,0.137966990470886,0.806003868579865,0.0903579965233803,0.728739023208618,0.0724149867892265,0.745230853557587,0.13316898047924,0.808791995048523,0.135568022727966,0.80739814043045,0.0809444338083267,0.736749649047852,0.0605276674032211,0.760319709777832,0.13316898047924,0.808791995048523,0.0724149867892265,0.745230853557587,0.0605276674032211,0.760319709777832,0.131311997771263,0.810617983341217,0.13316898047924,0.808791995048523,0.0357920005917549,0.840504050254822,0.124442979693413,0.832515001296997,0.12424299120903,0.830189883708954,0.0383166670799255,0.814040184020996,0.0383166670799255,0.814040184020996,0.12424299120903,0.830189883708954,0.124041989445686,0.827865958213806,0.0383166670799255,0.814040184020996,0.124041989445686,0.827865958213806,0.125026673078537,0.822036325931549,0.0460108146071434,0.786994814872742,0.0460108146071434,0.786994814872742,0.127483010292053,0.815995931625366, +0.129454001784325,0.812444031238556,0.0460108146071434,0.786994814872742,0.125026673078537,0.822036325931549,0.127483010292053,0.815995931625366,0.0449310019612312,0.886475086212158,0.0488980002701283,0.897680997848511,0.0541170015931129,0.906945943832397,0.132034987211227,0.845395863056183,0.130135998129845,0.843268990516663,0.0409640073776245,0.875269114971161,0.0449310019612312,0.886475086212158,0.130135998129845,0.843268990516663,0.128236025571823,0.841141104698181,0.0392679981887341,0.866784989833832,0.0409640073776245,0.875269114971161,0.128236025571823,0.841141104698181,0.127032995223999,0.839123010635376,0.0375719964504242,0.858301997184753,0.0392679981887341,0.866784989833832,0.127032995223999,0.839123010635376,0.125830993056297,0.837104856967926,0.0366819947957993,0.849402904510498,0.0375719964504242,0.858301997184753,0.125830993056297,0.837104856967926,0.125137001276016,0.834809899330139,0.0357920005917549,0.840504050254822,0.0366819947957993,0.849402904510498,0.125137001276016,0.834809899330139,0.124442979693413,0.832515001296997,0.151573985815048,0.904958009719849,0.0920389965176582,0.950485944747925,0.101075023412704,0.956023097038269,0.153162002563477,0.906701147556305,0.14690600335598,0.890645980834961,0.0680930018424988,0.926612019538879,0.0768510028719902,0.937012076377869,0.150177031755447,0.902763247489929,0.0920389965176582,0.950485944747925,0.151573985815048,0.904958009719849,0.148780003190041,0.900569021701813,0.0844449996948242,0.943748950958252,0.0920389965176582,0.950485944747925,0.150177031755447,0.902763247489929,0.148002997040749,0.898060083389282,0.0844449996948242,0.943748950958252,0.148780003190041,0.900569021701813,0.0768510028719902,0.937012076377869,0.0844449996948242,0.943748950958252,0.148002997040749,0.898060083389282,0.147225990891457,0.895551860332489,0.0768510028719902,0.937012076377869,0.147225990891457,0.895551860332489,0.147065997123718,0.893099009990692,0.14690600335598,0.890645980834961,0.0768510028719902,0.937012076377869,0.147065997123718,0.893099009990692,0.147254005074501, +0.887848019599915,0.0680930018424988,0.926612019538879,0.14690600335598,0.890645980834961,0.147601008415222,0.885048985481262,0.13596199452877,0.847976982593536,0.0680930018424988,0.926612019538879,0.147254005074501,0.887848019599915,0.258195072412491,0.895779132843018,0.25950700044632,0.896707057952881,0.260980933904648,0.858531832695007,0.258522987365723,0.860678017139435,0.25661900639534,0.894879937171936,0.258195072412491,0.895779132843018,0.258522987365723,0.860678017139435,0.256269007921219,0.862170994281769,0.255042999982834,0.893980026245117,0.25661900639534,0.894879937171936,0.256269007921219,0.862170994281769,0.254016011953354,0.863664984703064,0.300388038158417,0.895267009735107,0.306361973285675,0.882292866706848,0.263438940048218,0.856386005878448,0.300388038158417,0.895267009735107,0.263438940048218,0.856386005878448,0.260818988084793,0.897635102272034,0.26264899969101,0.899598002433777,0.300388038158417,0.895267009735107,0.26264899969101,0.899598002433777,0.264479011297226,0.901561975479126,0.300388038158417,0.895267009735107,0.264479011297226,0.901561975479126,0.265598952770233,0.903614819049835,0.294414013624191,0.908240973949432,0.300388038158417,0.895267009735107,0.265598952770233,0.903614819049835,0.266719996929169,0.90566885471344,0.23572102189064,0.895883023738861,0.230167999863625,0.867297053337097,0.234151005744934,0.897000074386597,0.227259993553162,0.866304993629456,0.232582032680511,0.898118197917938,0.234151005744934,0.897000074386597,0.230167999863625,0.867297053337097,0.249132007360458,0.935304999351501,0.256705820560455,0.951196670532227,0.251451998949051,0.93507993221283,0.266292035579681,0.943053185939789,0.258736997842789,0.93198299407959,0.25688299536705,0.932933986186981,0.256705820560455,0.951196670532227,0.266292035579681,0.943053185939789,0.25688299536705,0.932933986186981,0.255028009414673,0.933886051177979,0.261308997869492,0.929839968681335,0.273232996463776,0.936672925949097,0.262930035591125,0.928244173526764,0.273232996463776,0.936672925949097,0.282572329044342,0.926736176013947, +0.265087008476257,0.925692081451416,0.262930035591125,0.928244173526764,0.282572329044342,0.926736176013947,0.266692072153091,0.922824025154114,0.265087008476257,0.925692081451416,0.266692072153091,0.922824025154114,0.282572329044342,0.926736176013947,0.267268002033234,0.921169996261597,0.26832503080368,0.914856016635895,0.268083989620209,0.91718602180481,0.289012014865875,0.916937112808228,0.26832503080368,0.914856016635895,0.289012014865875,0.916937112808228,0.294414013624191,0.908240973949432,0.268270999193192,0.912784993648529,0.268216013908386,0.910714089870453,0.294414013624191,0.908240973949432,0.267468065023422,0.9081911444664,0.182429000735283,0.910722970962524,0.226959943771362,0.921266913414001,0.226444005966187,0.919111013412476,0.18444000184536,0.909421980381012,0.180418998003006,0.912024021148682,0.207958996295929,0.973142862319946,0.227638959884644,0.922936797142029,0.226959943771362,0.921266913414001,0.182429000735283,0.910722970962524,0.138525992631912,0.848952054977417,0.13596199452877,0.847976982593536,0.147601008415222,0.885048985481262,0.148475006222725,0.882598996162415,0.284512013196945,0.611811995506287,0.284278005361557,0.602760016918182,0.266557991504669,0.601144015789032,0.271122008562088,0.609583020210266,0.285253047943115,0.628229022026062,0.284745991230011,0.620863974094391,0.273786008358002,0.61863386631012,0.277741998434067,0.628527164459229,0.281830012798309,0.563432991504669,0.244590029120445,0.571578025817871,0.25156843662262,0.57788872718811,0.282458990812302,0.573767006397247,0.958945214748383,0.308513671159744,0.953357696533203,0.338901519775391,0.949023365974426,0.336995214223862,0.945053100585938,0.335703551769257,0.942295432090759,0.333572626113892,0.958945214748383,0.308513671159744,0.949023365974426,0.336995214223862,0.945053100585938,0.335703551769257,0.958945214748383,0.308513671159744,0.958945214748383,0.308513671159744,0.960848927497864,0.275173604488373,0.964162886142731,0.275086522102356,0.968048453330994,0.274119347333908,0.958945214748383,0.308513671159744,0.964162886142731, +0.275086522102356,0.971887230873108,0.276029467582703,0.976289391517639,0.27773317694664,0.958945214748383,0.308513671159744,0.93605375289917,0.325919896364212,0.958945214748383,0.308513671159744,0.938284575939178,0.329047203063965,0.938284575939178,0.329047203063965,0.958945214748383,0.308513671159744,0.939535856246948,0.331443816423416,0.969664812088013,0.340228140354156,0.962279200553894,0.340524882078171,0.958945214748383,0.308513671159744,0.23498871922493,0.528504550457001,0.199435338377953,0.541890025138855,0.217832267284393,0.550975978374481,0.236315369606018,0.56401252746582,0.238275244832039,0.548607230186462,0.217832267284393,0.550975978374481,0.312473714351654,0.824710190296173,0.271797060966492,0.832202196121216,0.271467000246048,0.835456013679504,0.502324521541595,0.596214294433594,0.487176597118378,0.609778702259064,0.474401295185089,0.601987242698669,0.482671022415161,0.588007926940918,0.487176597118378,0.609778702259064,0.480234742164612,0.622585654258728,0.467026859521866,0.616052508354187,0.474401295185089,0.601987242698669,0.43597087264061,0.633282899856567,0.443203955888748,0.624427616596222,0.455084979534149,0.633414447307587,0.447214841842651,0.643701374530792,0.8058140873909,0.25620499253273,0.777350008487701,0.247710004448891,0.799286842346191,0.268679529428482,0.820916891098022,0.271835833787918,0.461049973964691,0.625458002090454,0.455084979534149,0.633414447307587,0.443203955888748,0.624427616596222,0.449318528175354,0.61651337146759,0.419885009527206,0.651203989982605,0.428348869085312,0.641636371612549,0.437996983528137,0.654747068881989,0.428348869085312,0.641636371612549,0.43597087264061,0.633282899856567,0.447214841842651,0.643701374530792,0.437996983528137,0.654747068881989,0.437996983528137,0.654747068881989,0.447214841842651,0.643701374530792,0.458428412675858,0.653533220291138,0.449783951044083,0.665350794792175,0.669582009315491,0.172124981880188,0.700708031654358,0.191886022686958,0.718404948711395,0.188898995518684,0.683263897895813,0.167415976524353,0.798405051231384,0.23375503718853, +0.776177048683167,0.216144993901253,0.755701124668121,0.21739199757576,0.778818070888519,0.234795048832893,0.51929897069931,0.304008990526199,0.520159542560577,0.313009828329086,0.495478957891464,0.316316992044449,0.500035107135773,0.305005073547363,0.537513971328735,0.300711005926132,0.539385139942169,0.309820532798767,0.520159542560577,0.313009828329086,0.51929897069931,0.304008990526199,0.519822239875793,0.317452162504196,0.520159542560577,0.313009828329086,0.539385139942169,0.309820532798767,0.542740881443024,0.318083971738815,0.537354230880737,0.320733249187469,0.520782053470612,0.319521129131317,0.519822239875793,0.317452162504196,0.542740881443024,0.318083971738815,0.415432989597321,0.677824020385742,0.424794614315033,0.66933536529541,0.438535630702972,0.678183436393738,0.427164077758789,0.688785195350647,0.424794614315033,0.66933536529541,0.437996983528137,0.654747068881989,0.449783951044083,0.665350794792175,0.438535630702972,0.678183436393738,0.472135126590729,0.634712934494019,0.466388672590256,0.642750024795532,0.455084979534149,0.633414447307587,0.461049973964691,0.625458002090454,0.466388672590256,0.642750024795532,0.478400617837906,0.655835926532745,0.469277113676071,0.661527156829834,0.458428412675858,0.653533220291138,0.467003524303436,0.681717753410339,0.485781818628311,0.673746883869171,0.492069154977798,0.691675066947937,0.45939514040947,0.700253367424011,0.213604003190994,0.848752021789551,0.214933976531029,0.850932002067566,0.236993849277496,0.862354218959808,0.214933976531029,0.850932002067566,0.216464027762413,0.852609992027283,0.236993849277496,0.862354218959808,0.216464027762413,0.852609992027283,0.217994004487991,0.854287028312683,0.236993849277496,0.862354218959808,0.217994004487991,0.854287028312683,0.220005005598068,0.855967879295349,0.236993849277496,0.862354218959808,0.220005005598068,0.855967879295349,0.222016006708145,0.857647955417633,0.236993849277496,0.862354218959808,0.222016006708145,0.857647955417633,0.224153995513916,0.858913004398346,0.236993849277496,0.862354218959808,0.224153995513916, +0.858913004398346,0.226291969418526,0.860178887844086,0.236993849277496,0.862354218959808,0.226291969418526,0.860178887844086,0.228680998086929,0.861050009727478,0.236993849277496,0.862354218959808,0.228680998086929,0.861050009727478,0.231069996953011,0.861922025680542,0.236993849277496,0.862354218959808,0.231069996953011,0.861922025680542,0.23403200507164,0.862137854099274,0.236993849277496,0.862354218959808,0.239527970552444,0.862132847309113,0.242061972618103,0.861912906169891,0.236993849277496,0.862354218959808,0.242061972618103,0.861912906169891,0.244175001978874,0.861554980278015,0.236993849277496,0.862354218959808,0.244175001978874,0.861554980278015,0.246287003159523,0.861197113990784,0.236993849277496,0.862354218959808,0.246287003159523,0.861197113990784,0.248551994562149,0.860126972198486,0.236993849277496,0.862354218959808,0.248551994562149,0.860126972198486,0.250818014144897,0.859058022499084,0.236993849277496,0.862354218959808,0.250818014144897,0.859058022499084,0.252798974514008,0.857895016670227,0.236993849277496,0.862354218959808,0.252798974514008,0.857895016670227,0.254781007766724,0.85673201084137,0.236993849277496,0.862354218959808,0.254781007766724,0.85673201084137,0.257052004337311,0.854552030563354,0.236993849277496,0.862354218959808,0.257052004337311,0.854552030563354,0.259321987628937,0.852372109889984,0.236993849277496,0.862354218959808,0.259321987628937,0.852372109889984,0.260773062705994,0.850229203701019,0.236993849277496,0.862354218959808,0.260773062705994,0.850229203701019,0.262223988771439,0.848085880279541,0.236993849277496,0.862354218959808,0.262223988771439,0.848085880279541,0.263434052467346,0.845340013504028,0.236993849277496,0.862354218959808,0.263434052467346,0.845340013504028,0.264643996953964,0.842594027519226,0.236993849277496,0.862354218959808,0.264643996953964,0.842594027519226,0.265204012393951,0.839982986450195,0.236993849277496,0.862354218959808,0.265204012393951,0.839982986450195,0.265763998031616,0.837370991706848,0.236993849277496,0.862354218959808,0.265763998031616, +0.837370991706848,0.26583606004715,0.834535181522369,0.236993849277496,0.862354218959808,0.26583606004715,0.834535181522369,0.265906989574432,0.831700026988983,0.236993849277496,0.862354218959808,0.265906989574432,0.831700026988983,0.265188992023468,0.8283811211586,0.236993849277496,0.862354218959808,0.265188992023468,0.8283811211586,0.264470934867859,0.825060904026031,0.236993849277496,0.862354218959808,0.264470934867859,0.825060904026031,0.263265013694763,0.822391092777252,0.236993849277496,0.862354218959808,0.263265013694763,0.822391092777252,0.262057989835739,0.819720983505249,0.236993849277496,0.862354218959808,0.262057989835739,0.819720983505249,0.260140001773834,0.817054986953735,0.236993849277496,0.862354218959808,0.260140001773834,0.817054986953735,0.258221000432968,0.814388990402222,0.236993849277496,0.862354218959808,0.258221000432968,0.814388990402222,0.256319046020508,0.812657117843628,0.236993849277496,0.862354218959808,0.256319046020508,0.812657117843628,0.254416942596436,0.810924828052521,0.236993849277496,0.862354218959808,0.254416942596436,0.810924828052521,0.251630008220673,0.809348046779633,0.236993849277496,0.862354218959808,0.251630008220673,0.809348046779633,0.248842969536781,0.807769894599915,0.236993849277496,0.862354218959808,0.248842969536781,0.807769894599915,0.246378004550934,0.806834876537323,0.236993849277496,0.862354218959808,0.246378004550934,0.806834876537323,0.243912994861603,0.805900931358337,0.236993849277496,0.862354218959808,0.243912994861603,0.805900931358337,0.241305023431778,0.805560111999512,0.236993849277496,0.862354218959808,0.241305023431778,0.805560111999512,0.238695964217186,0.805219888687134,0.236993849277496,0.862354218959808,0.238695964217186,0.805219888687134,0.236189007759094,0.805329978466034,0.236993849277496,0.862354218959808,0.236189007759094,0.805329978466034,0.233680963516235,0.805439889431,0.236993849277496,0.862354218959808,0.233680963516235,0.805439889431,0.231048032641411,0.80602502822876,0.236993849277496,0.862354218959808,0.231048032641411,0.80602502822876, +0.228413999080658,0.806609988212585,0.236993849277496,0.862354218959808,0.228413999080658,0.806609988212585,0.225697994232178,0.807860970497131,0.236993849277496,0.862354218959808,0.225697994232178,0.807860970497131,0.222981974482536,0.809110999107361,0.236993849277496,0.862354218959808,0.222981974482536,0.809110999107361,0.22070500254631,0.810817003250122,0.236993849277496,0.862354218959808,0.22070500254631,0.810817003250122,0.218428984284401,0.812523901462555,0.236993849277496,0.862354218959808,0.218428984284401,0.812523901462555,0.216181993484497,0.815120995044708,0.236993849277496,0.862354218959808,0.216181993484497,0.815120995044708,0.213935032486916,0.817717015743256,0.236993849277496,0.862354218959808,0.213935032486916,0.817717015743256,0.21238599717617,0.820815026760101,0.236993849277496,0.862354218959808,0.21238599717617,0.820815026760101,0.21083702147007,0.823913097381592,0.236993849277496,0.862354218959808,0.21083702147007,0.823913097381592,0.210107013583183,0.826874017715454,0.236993849277496,0.862354218959808,0.210107013583183,0.826874017715454,0.209377005696297,0.829833984375,0.236993849277496,0.862354218959808,0.209377005696297,0.829833984375,0.209319964051247,0.833224892616272,0.236993849277496,0.862354218959808,0.209319964051247,0.833224892616272,0.209264025092125,0.836616098880768,0.236993849277496,0.862354218959808,0.209264025092125,0.836616098880768,0.209781005978584,0.839061975479126,0.236993849277496,0.862354218959808,0.209781005978584,0.839061975479126,0.210298031568527,0.841508150100708,0.236993849277496,0.862354218959808,0.210298031568527,0.841508150100708,0.211285978555679,0.844039916992188,0.236993849277496,0.862354218959808,0.211285978555679,0.844039916992188,0.212274998426437,0.846571981906891,0.236993849277496,0.862354218959808,0.212274998426437,0.846571981906891,0.213604003190994,0.848752021789551,0.236993849277496,0.862354218959808,0.238020986318588,0.899613976478577,0.236755013465881,0.900473058223724,0.249168217182159,0.897170126438141,0.236755013465881,0.900473058223724,0.235490024089813, +0.901332020759583,0.249168217182159,0.897170126438141,0.235490024089813,0.901332020759583,0.234382003545761,0.902740001678467,0.249168217182159,0.897170126438141,0.234382003545761,0.902740001678467,0.233275055885315,0.904149115085602,0.249168217182159,0.897170126438141,0.233275055885315,0.904149115085602,0.232497006654739,0.905453145503998,0.249168217182159,0.897170126438141,0.232497006654739,0.905453145503998,0.231719002127647,0.906756937503815,0.249168217182159,0.897170126438141,0.231719002127647,0.906756937503815,0.231206625699997,0.908484101295471,0.249168217182159,0.897170126438141,0.231206625699997,0.908484101295471,0.230482995510101,0.91015213727951,0.249168217182159,0.897170126438141,0.230482995510101,0.91015213727951,0.230382576584816,0.911921620368958,0.249168217182159,0.897170126438141,0.230382576584816,0.911921620368958,0.230118006467819,0.913669884204865,0.249168217182159,0.897170126438141,0.230118006467819,0.913669884204865,0.230206966400146,0.914988875389099,0.249168217182159,0.897170126438141,0.230206966400146,0.914988875389099,0.230295985937119,0.916307985782623,0.249168217182159,0.897170126438141,0.230295985937119,0.916307985782623,0.23069903254509,0.91803514957428,0.249168217182159,0.897170126438141,0.23069903254509,0.91803514957428,0.231101974844933,0.919762969017029,0.249168217182159,0.897170126438141,0.231101974844933,0.919762969017029,0.231630027294159,0.921092092990875,0.249168217182159,0.897170126438141,0.231630027294159,0.921092092990875,0.232453674077988,0.922819972038269,0.249168217182159,0.897170126438141,0.232453674077988,0.922819972038269,0.233296006917953,0.92395293712616,0.249168217182159,0.897170126438141,0.233296006917953,0.92395293712616,0.234434023499489,0.925485014915466,0.249168217182159,0.897170126438141,0.234434023499489,0.925485014915466,0.235772043466568,0.926684021949768,0.249168217182159,0.897170126438141,0.235772043466568,0.926684021949768,0.237109005451202,0.927883982658386,0.249168217182159,0.897170126438141,0.237109005451202,0.927883982658386,0.238569036126137,0.928735136985779, +0.249168217182159,0.897170126438141,0.238569036126137,0.928735136985779,0.240030035376549,0.929587185382843,0.249168217182159,0.897170126438141,0.240030035376549,0.929587185382843,0.241962999105453,0.93013197183609,0.249168217182159,0.897170126438141,0.241962999105453,0.93013197183609,0.243896037340164,0.930676162242889,0.249168217182159,0.897170126438141,0.243896037340164,0.930676162242889,0.245400995016098,0.930850028991699,0.249168217182159,0.897170126438141,0.245400995016098,0.930850028991699,0.246904954314232,0.931023836135864,0.249168217182159,0.897170126438141,0.246904954314232,0.931023836135864,0.248721837997437,0.930771768093109,0.249168217182159,0.897170126438141,0.248721837997437,0.930771768093109,0.249989479780197,0.930578112602234,0.249168217182159,0.897170126438141,0.249989479780197,0.930578112602234,0.251950949430466,0.930142879486084,0.249168217182159,0.897170126438141,0.251950949430466,0.930142879486084,0.253387004137039,0.929762005805969,0.249168217182159,0.897170126438141,0.253387004137039,0.929762005805969,0.254866987466812,0.929034888744354,0.249168217182159,0.897170126438141,0.254866987466812,0.929034888744354,0.256346046924591,0.928307116031647,0.249168217182159,0.897170126438141,0.256346046924591,0.928307116031647,0.257351011037827,0.927430987358093,0.249168217182159,0.897170126438141,0.257351011037827,0.927430987358093,0.25835594534874,0.926553905010223,0.249168217182159,0.897170126438141,0.25835594534874,0.926553905010223,0.259663999080658,0.925291001796722,0.249168217182159,0.897170126438141,0.259663999080658,0.925291001796722,0.261381506919861,0.923273503780365,0.249168217182159,0.897170126438141,0.261381506919861,0.923273503780365,0.262612998485565,0.921012997627258,0.249168217182159,0.897170126438141,0.262612998485565,0.921012997627258,0.263068974018097,0.919716894626617,0.249168217182159,0.897170126438141,0.263068974018097,0.919716894626617,0.263523995876312,0.918420076370239,0.249168217182159,0.897170126438141,0.263523995876312,0.918420076370239,0.263679951429367,0.916565895080566,0.249168217182159, +0.897170126438141,0.263679951429367,0.916565895080566,0.263835936784744,0.914710998535156,0.249168217182159,0.897170126438141,0.263835936784744,0.914710998535156,0.263828992843628,0.913066148757935,0.249168217182159,0.897170126438141,0.263828992843628,0.913066148757935,0.26382303237915,0.911422193050385,0.249168217182159,0.897170126438141,0.26382303237915,0.911422193050385,0.263242065906525,0.909409999847412,0.249168217182159,0.897170126438141,0.263242065906525,0.909409999847412,0.262661993503571,0.907397985458374,0.249168217182159,0.897170126438141,0.262661993503571,0.907397985458374,0.261798024177551,0.905747175216675,0.249168217182159,0.897170126438141,0.261798024177551,0.905747175216675,0.260933995246887,0.904097080230713,0.249168217182159,0.897170126438141,0.260933995246887,0.904097080230713,0.259452998638153,0.902548909187317,0.249168217182159,0.897170126438141,0.259452998638153,0.902548909187317,0.257972985506058,0.901000022888184,0.249168217182159,0.897170126438141,0.257972985506058,0.901000022888184,0.256922960281372,0.900254964828491,0.249168217182159,0.897170126438141,0.256922960281372,0.900254964828491,0.255872964859009,0.899509906768799,0.249168217182159,0.897170126438141,0.255872964859009,0.899509906768799,0.254624038934708,0.89879310131073,0.249168217182159,0.897170126438141,0.254624038934708,0.89879310131073,0.253374010324478,0.898076057434082,0.249168217182159,0.897170126438141,0.253374010324478,0.898076057434082,0.252130001783371,0.897748947143555,0.249168217182159,0.897170126438141,0.252130001783371,0.897748947143555,0.250885993242264,0.897421896457672,0.249168217182159,0.897170126438141,0.247449964284897,0.896917998790741,0.245860770344734,0.897128164768219,0.249168217182159,0.897170126438141,0.245860770344734,0.897128164768219,0.244134515523911,0.897363543510437,0.249168217182159,0.897170126438141,0.244134515523911,0.897363543510437,0.242461740970612,0.897755563259125,0.249168217182159,0.897170126438141,0.242461740970612,0.897755563259125,0.24066099524498,0.898221909999847,0.249168217182159,0.897170126438141, +0.24066099524498,0.898221909999847,0.239341035485268,0.898918032646179,0.249168217182159,0.897170126438141,0.239341035485268,0.898918032646179,0.238020986318588,0.899613976478577,0.249168217182159,0.897170126438141,0.182181000709534,0.87574702501297,0.180338963866234,0.874393939971924,0.171462967991829,0.871784508228302,0.180338963866234,0.874393939971924,0.17835097014904,0.873531818389893,0.171462967991829,0.871784508228302,0.17835097014904,0.873531818389893,0.176362991333008,0.872668862342834,0.171462967991829,0.871784508228302,0.176362991333008,0.872668862342834,0.17391300201416,0.872226893901825,0.171462967991829,0.871784508228302,0.169339001178741,0.871951997280121,0.167215034365654,0.872119188308716,0.171462967991829,0.871784508228302,0.167215034365654,0.872119188308716,0.165040999650955,0.872652053833008,0.171462967991829,0.871784508228302,0.165040999650955,0.872652053833008,0.162867993116379,0.873185992240906,0.171462967991829,0.871784508228302,0.162867993116379,0.873185992240906,0.160961985588074,0.874336004257202,0.171462967991829,0.871784508228302,0.160961985588074,0.874336004257202,0.15905599296093,0.875485002994537,0.171462967991829,0.871784508228302,0.15905599296093,0.875485002994537,0.157324999570847,0.87712299823761,0.171462967991829,0.871784508228302,0.157324999570847,0.87712299823761,0.155595004558563,0.878760993480682,0.171462967991829,0.871784508228302,0.155595004558563,0.878760993480682,0.154578894376755,0.880492925643921,0.171462967991829,0.871784508228302,0.154578894376755,0.880492925643921,0.153314992785454,0.882128000259399,0.171462967991829,0.871784508228302,0.153314992785454,0.882128000259399,0.152736932039261,0.884171962738037,0.171462967991829,0.871784508228302,0.152736932039261,0.884171962738037,0.151911020278931,0.886118054389954,0.171462967991829,0.871784508228302,0.151911020278931,0.886118054389954,0.151647001504898,0.888396859169006,0.171462967991829,0.871784508228302,0.151647001504898,0.888396859169006,0.151382997632027,0.890676021575928,0.171462967991829,0.871784508228302,0.151382997632027, +0.890676021575928,0.151482999324799,0.892673969268799,0.171462967991829,0.871784508228302,0.151482999324799,0.892673969268799,0.151582986116409,0.89467191696167,0.171462967991829,0.871784508228302,0.151582986116409,0.89467191696167,0.152192980051041,0.89671802520752,0.171462967991829,0.871784508228302,0.152192980051041,0.89671802520752,0.152803003787994,0.89876389503479,0.171462967991829,0.871784508228302,0.152803003787994,0.89876389503479,0.153923004865646,0.900560021400452,0.171462967991829,0.871784508228302,0.153923004865646,0.900560021400452,0.155043035745621,0.90235710144043,0.171462967991829,0.871784508228302,0.155043035745621,0.90235710144043,0.156345993280411,0.90375804901123,0.171462967991829,0.871784508228302,0.156345993280411,0.90375804901123,0.157649993896484,0.905160009860992,0.171462967991829,0.871784508228302,0.157649993896484,0.905160009860992,0.159760981798172,0.906389892101288,0.171462967991829,0.871784508228302,0.159760981798172,0.906389892101288,0.161871999502182,0.907621026039124,0.171462967991829,0.871784508228302,0.161871999502182,0.907621026039124,0.163652002811432,0.908340096473694,0.171462967991829,0.871784508228302,0.163652002811432,0.908340096473694,0.16745799779892,0.909406900405884,0.171462967991829,0.871784508228302,0.16745799779892,0.909406900405884,0.169484034180641,0.909756124019623,0.171462967991829,0.871784508228302,0.169484034180641,0.909756124019623,0.171733915805817,0.909497380256653,0.171462967991829,0.871784508228302,0.171733915805817,0.909497380256653,0.174044981598854,0.909560859203339,0.171462967991829,0.871784508228302,0.174044981598854,0.909560859203339,0.176264539361,0.908640146255493,0.171462967991829,0.871784508228302,0.176264539361,0.908640146255493,0.17856203019619,0.908038139343262,0.171462967991829,0.871784508228302,0.17856203019619,0.908038139343262,0.180205002427101,0.906988024711609,0.171462967991829,0.871784508228302,0.180205002427101,0.906988024711609,0.181848004460335,0.905937016010284,0.171462967991829,0.871784508228302,0.181848004460335,0.905937016010284, +0.183382004499435,0.904502987861633,0.171462967991829,0.871784508228302,0.183382004499435,0.904502987861633,0.184916004538536,0.903069019317627,0.171462967991829,0.871784508228302,0.184916004538536,0.903069019317627,0.186094999313354,0.90141898393631,0.171462967991829,0.871784508228302,0.186094999313354,0.90141898393631,0.187273994088173,0.899769008159637,0.171462967991829,0.871784508228302,0.187273994088173,0.899769008159637,0.188003987073898,0.897836923599243,0.171462967991829,0.871784508228302,0.188003987073898,0.897836923599243,0.188733026385307,0.895905137062073,0.171462967991829,0.871784508228302,0.188733026385307,0.895905137062073,0.189094007015228,0.894155919551849,0.171462967991829,0.871784508228302,0.189094007015228,0.894155919551849,0.189453974366188,0.892405986785889,0.171462967991829,0.871784508228302,0.189453974366188,0.892405986785889,0.189339846372604,0.890329122543335,0.171462967991829,0.871784508228302,0.189339846372604,0.890329122543335,0.189288169145584,0.888238489627838,0.171462967991829,0.871784508228302,0.189288169145584,0.888238489627838,0.188874810934067,0.886189818382263,0.171462967991829,0.871784508228302,0.188874810934067,0.886189818382263,0.188522011041641,0.884101986885071,0.171462967991829,0.871784508228302,0.188522011041641,0.884101986885071,0.187429994344711,0.881881952285767,0.171462967991829,0.871784508228302,0.187429994344711,0.881881952285767,0.186338007450104,0.879661917686462,0.171462967991829,0.871784508228302,0.186338007450104,0.879661917686462,0.185181021690369,0.878381013870239,0.171462967991829,0.871784508228302,0.185181021690369,0.878381013870239,0.184024006128311,0.877098977565765,0.171462967991829,0.871784508228302,0.130802005529404,0.836933851242065,0.131770968437195,0.838591873645782,0.147746995091438,0.808448433876038,0.131770968437195,0.838591873645782,0.133429035544395,0.84021133184433,0.147746995091438,0.808448433876038,0.133429035544395,0.84021133184433,0.134927004575729,0.842046022415161,0.147746995091438,0.808448433876038,0.134927004575729,0.842046022415161,0.136610954999924, +0.842978835105896,0.147746995091438,0.808448433876038,0.136610954999924,0.842978835105896,0.138135001063347,0.84412693977356,0.147746995091438,0.808448433876038,0.138135001063347,0.84412693977356,0.140211999416351,0.844904005527496,0.147746995091438,0.808448433876038,0.140211999416351,0.844904005527496,0.142287999391556,0.845679998397827,0.147746995091438,0.808448433876038,0.142287999391556,0.845679998397827,0.144391000270844,0.846006989479065,0.147746995091438,0.808448433876038,0.144391000270844,0.846006989479065,0.146494001150131,0.846335053443909,0.147746995091438,0.808448433876038,0.146494001150131,0.846335053443909,0.148495018482208,0.84620612859726,0.147746995091438,0.808448433876038,0.148495018482208,0.84620612859726,0.150496006011963,0.846076905727386,0.147746995091438,0.808448433876038,0.150496006011963,0.846076905727386,0.153038993477821,0.845255970954895,0.147746995091438,0.808448433876038,0.153038993477821,0.845255970954895,0.155581995844841,0.844434976577759,0.147746995091438,0.808448433876038,0.155581995844841,0.844434976577759,0.157514974474907,0.843210875988007,0.147746995091438,0.808448433876038,0.157514974474907,0.843210875988007,0.159446999430656,0.841986060142517,0.147746995091438,0.808448433876038,0.159446999430656,0.841986060142517,0.161109030246735,0.840085029602051,0.147746995091438,0.808448433876038,0.161109030246735,0.840085029602051,0.162771001458168,0.838183104991913,0.147746995091438,0.808448433876038,0.162771001458168,0.838183104991913,0.163823992013931,0.836151957511902,0.147746995091438,0.808448433876038,0.163823992013931,0.836151957511902,0.164875984191895,0.834120988845825,0.147746995091438,0.808448433876038,0.164875984191895,0.834120988845825,0.165430992841721,0.831982970237732,0.147746995091438,0.808448433876038,0.165430992841721,0.831982970237732,0.165986999869347,0.829843997955322,0.147746995091438,0.808448433876038,0.165986999869347,0.829843997955322,0.165947198867798,0.827751815319061,0.147746995091438,0.808448433876038,0.165947198867798,0.827751815319061,0.166173025965691,0.825654983520508, +0.147746995091438,0.808448433876038,0.166173025965691,0.825654983520508,0.165596455335617,0.823500275611877,0.147746995091438,0.808448433876038,0.165596455335617,0.823500275611877,0.165286034345627,0.82134211063385,0.147746995091438,0.808448433876038,0.165286034345627,0.82134211063385,0.164505004882813,0.819459855556488,0.147746995091438,0.808448433876038,0.164505004882813,0.819459855556488,0.163723036646843,0.817577064037323,0.147746995091438,0.808448433876038,0.163723036646843,0.817577064037323,0.162426978349686,0.815953016281128,0.147746995091438,0.808448433876038,0.162426978349686,0.815953016281128,0.161130964756012,0.814327836036682,0.147746995091438,0.808448433876038,0.161130964756012,0.814327836036682,0.159430980682373,0.812904000282288,0.147746995091438,0.808448433876038,0.159430980682373,0.812904000282288,0.157729983329773,0.811479866504669,0.147746995091438,0.808448433876038,0.157729983329773,0.811479866504669,0.155330970883369,0.810316026210785,0.147746995091438,0.808448433876038,0.155330970883369,0.810316026210785,0.15293200314045,0.809152007102966,0.147746995091438,0.808448433876038,0.15293200314045,0.809152007102966,0.150339007377625,0.808799862861633,0.147746995091438,0.808448433876038,0.145750999450684,0.80863893032074,0.143754988908768,0.80883002281189,0.147746995091438,0.808448433876038,0.143754988908768,0.80883002281189,0.14173299074173,0.809410989284515,0.147746995091438,0.808448433876038,0.14173299074173,0.809410989284515,0.139712005853653,0.809993028640747,0.147746995091438,0.808448433876038,0.139712005853653,0.809993028640747,0.137743979692459,0.811105012893677,0.147746995091438,0.808448433876038,0.137743979692459,0.811105012893677,0.135776966810226,0.812216877937317,0.147746995091438,0.808448433876038,0.135776966810226,0.812216877937317,0.134283006191254,0.813722014427185,0.147746995091438,0.808448433876038,0.134283006191254,0.813722014427185,0.132789015769958,0.81522810459137,0.147746995091438,0.808448433876038,0.132789015769958,0.81522810459137,0.131081998348236,0.818454027175903,0.147746995091438, +0.808448433876038,0.131081998348236,0.818454027175903,0.129143506288528,0.823200345039368,0.147746995091438,0.808448433876038,0.129143506288528,0.823200345039368,0.128448992967606,0.827762126922607,0.147746995091438,0.808448433876038,0.128448992967606,0.827762126922607,0.128589987754822,0.829637885093689,0.147746995091438,0.808448433876038,0.128589987754822,0.829637885093689,0.128730982542038,0.831514000892639,0.147746995091438,0.808448433876038,0.128730982542038,0.831514000892639,0.129281997680664,0.833395004272461,0.147746995091438,0.808448433876038,0.129281997680664,0.833395004272461,0.129834026098251,0.835277199745178,0.147746995091438,0.808448433876038,0.216701358556747,0.676236510276794,0.205227628350258,0.67306262254715,0.202618226408958,0.681989908218384,0.215042188763618,0.686188161373138,0.205227628350258,0.67306262254715,0.196678012609482,0.669644713401794,0.192032888531685,0.674243748188019,0.202618226408958,0.681989908218384,0.202618226408958,0.681989908218384,0.192032888531685,0.674243748188019,0.186134606599808,0.68009889125824,0.198810562491417,0.689350664615631,0.215042188763618,0.686188161373138,0.202618226408958,0.681989908218384,0.198810562491417,0.689350664615631,0.21368008852005,0.694363355636597,0.244362860918045,0.689804255962372,0.240682706236839,0.68235170841217,0.228156864643097,0.686246156692505,0.229372292757034,0.694444537162781,0.240682706236839,0.68235170841217,0.237780645489693,0.676496386528015,0.228584602475166,0.676956057548523,0.228156864643097,0.686246156692505,0.228156864643097,0.686246156692505,0.228584602475166,0.676956057548523,0.216701358556747,0.676236510276794,0.215042188763618,0.686188161373138,0.229372292757034,0.694444537162781,0.228156864643097,0.686246156692505,0.215042188763618,0.686188161373138,0.21368008852005,0.694363355636597,0.196678012609482,0.669644713401794,0.193386644124985,0.661029815673828,0.184432074427605,0.663543105125427,0.192032888531685,0.674243748188019,0.193386644124985,0.661029815673828,0.190394163131714,0.649501919746399,0.180405557155609,0.651047110557556, +0.184432074427605,0.663543105125427,0.184432074427605,0.663543105125427,0.180405557155609,0.651047110557556,0.172191724181175,0.65234112739563,0.177026078104973,0.667300701141357,0.192032888531685,0.674243748188019,0.184432074427605,0.663543105125427,0.177026078104973,0.667300701141357,0.186134606599808,0.68009889125824,0.266555279493332,0.668069303035736,0.25920507311821,0.664180934429169,0.251343041658401,0.674695551395416,0.257130414247513,0.680651724338531,0.25920507311821,0.664180934429169,0.250257670879364,0.659479856491089,0.243687584996223,0.669413864612579,0.251343041658401,0.674695551395416,0.251343041658401,0.674695551395416,0.243687584996223,0.669413864612579,0.237780645489693,0.676496386528015,0.240682706236839,0.68235170841217,0.257130414247513,0.680651724338531,0.251343041658401,0.674695551395416,0.240682706236839,0.68235170841217,0.244362860918045,0.689804255962372,0.190394163131714,0.649501919746399,0.189852669835091,0.637599945068359,0.180540263652802,0.637910842895508,0.180405557155609,0.651047110557556,0.189852669835091,0.637599945068359,0.190450429916382,0.628407180309296,0.184629559516907,0.625421404838562,0.180540263652802,0.637910842895508,0.180540263652802,0.637910842895508,0.184629559516907,0.625421404838562,0.177223905920982,0.621642351150513,0.172338217496872,0.636607944965363,0.180405557155609,0.651047110557556,0.180540263652802,0.637910842895508,0.172338217496872,0.636607944965363,0.172191724181175,0.65234112739563,0.221949368715286,0.644752204418182,0.203931301832199,0.647456109523773,0.205438435077667,0.661004304885864,0.218952730298042,0.6627317070961,0.203931301832199,0.647456109523773,0.190394163131714,0.649501919746399,0.193386644124985,0.661029815673828,0.205438435077667,0.661004304885864,0.205438435077667,0.661004304885864,0.193386644124985,0.661029815673828,0.196678012609482,0.669644713401794,0.205227628350258,0.67306262254715,0.218952730298042,0.6627317070961,0.205438435077667,0.661004304885864,0.205227628350258,0.67306262254715,0.216701358556747,0.676236510276794,0.237780645489693, +0.676496386528015,0.243687584996223,0.669413864612579,0.232296794652939,0.665480256080627,0.228584602475166,0.676956057548523,0.243687584996223,0.669413864612579,0.250257670879364,0.659479856491089,0.238115847110748,0.653153359889984,0.232296794652939,0.665480256080627,0.232296794652939,0.665480256080627,0.238115847110748,0.653153359889984,0.221949368715286,0.644752204418182,0.218952730298042,0.6627317070961,0.228584602475166,0.676956057548523,0.232296794652939,0.665480256080627,0.218952730298042,0.6627317070961,0.216701358556747,0.676236510276794,0.221949368715286,0.644752204418182,0.213805809617043,0.628445625305176,0.201389819383621,0.634061455726624,0.203931301832199,0.647456109523773,0.213805809617043,0.628445625305176,0.207675501704216,0.616195499897003,0.197629749774933,0.622603356838226,0.201389819383621,0.634061455726624,0.201389819383621,0.634061455726624,0.197629749774933,0.622603356838226,0.190450429916382,0.628407180309296,0.189852669835091,0.637599945068359,0.203931301832199,0.647456109523773,0.201389819383621,0.634061455726624,0.189852669835091,0.637599945068359,0.190394163131714,0.649501919746399,0.190450429916382,0.628407180309296,0.197629749774933,0.622603356838226,0.192467898130417,0.614863991737366,0.184629559516907,0.625421404838562,0.197629749774933,0.622603356838226,0.207675501704216,0.616195499897003,0.203131705522537,0.607161998748779,0.192467898130417,0.614863991737366,0.192467898130417,0.614863991737366,0.203131705522537,0.607161998748779,0.199379652738571,0.599737167358398,0.186605125665665,0.608984470367432,0.184629559516907,0.625421404838562,0.192467898130417,0.614863991737366,0.186605125665665,0.608984470367432,0.177223905920982,0.621642351150513,0.271751672029495,0.637397766113281,0.263521641492844,0.63857114315033,0.263338774442673,0.651711881160736,0.271518886089325,0.653139233589172,0.263521641492844,0.63857114315033,0.257046967744827,0.639506757259369,0.254629850387573,0.648396015167236,0.263338774442673,0.651711881160736,0.263338774442673,0.651711881160736,0.254629850387573,0.648396015167236, +0.250257670879364,0.659479856491089,0.25920507311821,0.664180934429169,0.271518886089325,0.653139233589172,0.263338774442673,0.651711881160736,0.25920507311821,0.664180934429169,0.266555279493332,0.668069303035736,0.207675501704216,0.616195499897003,0.218835532665253,0.612019836902618,0.215694516897202,0.603237628936768,0.203131705522537,0.607161998748779,0.218835532665253,0.612019836902618,0.227782338857651,0.609753489494324,0.228860452771187,0.603288233280182,0.215694516897202,0.603237628936768,0.215694516897202,0.603237628936768,0.228860452771187,0.603288233280182,0.230233654379845,0.595046401023865,0.214444160461426,0.595004141330719,0.203131705522537,0.607161998748779,0.215694516897202,0.603237628936768,0.214444160461426,0.595004141330719,0.199379652738571,0.599737167358398,0.257897555828094,0.609490573406219,0.251940786838531,0.615296959877014,0.259530186653137,0.626042246818542,0.266983151435852,0.622381150722504,0.251940786838531,0.615296959877014,0.24471253156662,0.622367858886719,0.252137720584869,0.631688237190247,0.259530186653137,0.626042246818542,0.259530186653137,0.626042246818542,0.252137720584869,0.631688237190247,0.257046967744827,0.639506757259369,0.263521641492844,0.63857114315033,0.266983151435852,0.622381150722504,0.259530186653137,0.626042246818542,0.263521641492844,0.63857114315033,0.271751672029495,0.637397766113281,0.221949368715286,0.644752204418182,0.234940379858017,0.631967842578888,0.225757792592049,0.62190169095993,0.213805809617043,0.628445625305176,0.234940379858017,0.631967842578888,0.24471253156662,0.622367858886719,0.235510274767876,0.614799320697784,0.225757792592049,0.62190169095993,0.225757792592049,0.62190169095993,0.235510274767876,0.614799320697784,0.227782338857651,0.609753489494324,0.218835532665253,0.612019836902618,0.213805809617043,0.628445625305176,0.225757792592049,0.62190169095993,0.218835532665253,0.612019836902618,0.207675501704216,0.616195499897003,0.257046967744827,0.639506757259369,0.252137720584869,0.631688237190247,0.244864195585251,0.641308009624481,0.254629850387573, +0.648396015167236,0.252137720584869,0.631688237190247,0.24471253156662,0.622367858886719,0.234940379858017,0.631967842578888,0.244864195585251,0.641308009624481,0.244864195585251,0.641308009624481,0.234940379858017,0.631967842578888,0.221949368715286,0.644752204418182,0.238115847110748,0.653153359889984,0.254629850387573,0.648396015167236,0.244864195585251,0.641308009624481,0.238115847110748,0.653153359889984,0.250257670879364,0.659479856491089,0.24471253156662,0.622367858886719,0.251940786838531,0.615296959877014,0.241329699754715,0.607509911060333,0.235510274767876,0.614799320697784,0.251940786838531,0.615296959877014,0.257897555828094,0.609490573406219,0.245183065533638,0.600127637386322,0.241329699754715,0.607509911060333,0.241329699754715,0.607509911060333,0.245183065533638,0.600127637386322,0.230233654379845,0.595046401023865,0.228860452771187,0.603288233280182,0.235510274767876,0.614799320697784,0.241329699754715,0.607509911060333,0.228860452771187,0.603288233280182,0.227782338857651,0.609753489494324,0.833059012889862,0.978268980979919,0.837907016277313,0.97187602519989,0.835268020629883,0.968931972980499,0.82837700843811,0.973748981952667,0.833626985549927,0.957464993000031,0.826469004154205,0.955136001110077,0.824953973293304,0.961578011512756,0.832989990711212,0.961368024349213,0.832989990711212,0.961368024349213,0.824953973293304,0.961578011512756,0.825444996356964,0.968007028102875,0.833582997322083,0.965324997901917,0.838800013065338,0.981029987335205,0.84136301279068,0.9738450050354,0.837907016277313,0.97187602519989,0.833059012889862,0.978268980979919,0.845072984695435,0.982057988643646,0.845254004001617,0.974644005298615,0.84136301279068,0.9738450050354,0.838800013065338,0.981029987335205,0.835632026195526,0.954024016857147,0.829554975032806,0.949352025985718,0.826469004154205,0.955136001110077,0.833626985549927,0.957464993000031,0.8386390209198,0.951368987560272,0.834089994430542,0.944716989994049,0.829554975032806,0.949352025985718,0.835632026195526,0.954024016857147,0.857123017311096,0.978954017162323, +0.852809011936188,0.972328007221222,0.849196016788483,0.974077999591827,0.851350009441376,0.981379985809326,0.851350009441376,0.981379985809326,0.849196016788483,0.974077999591827,0.845254004001617,0.974644005298615,0.845072984695435,0.982057988643646,0.842284977436066,0.94982898235321,0.839953005313873,0.941721975803375,0.834089994430542,0.944716989994049,0.8386390209198,0.951368987560272,0.846237003803253,0.949398994445801,0.846396028995514,0.940801024436951,0.839953005313873,0.941721975803375,0.842284977436066,0.94982898235321,0.865217983722687,0.969187021255493,0.857629001140594,0.966123998165131,0.855708003044128,0.969574987888336,0.861881017684937,0.974734008312225,0.861881017684937,0.974734008312225,0.855708003044128,0.969574987888336,0.852809011936188,0.972328007221222,0.857123017311096,0.978954017162323,0.853627979755402,0.951870977878571,0.858371019363403,0.945856988430023,0.852670013904572,0.942387998104095,0.850160002708435,0.95007997751236,0.850160002708435,0.95007997751236,0.852670013904572,0.942387998104095,0.846396028995514,0.940801024436951,0.846237003803253,0.949398994445801,0.866117000579834,0.956306993961334,0.857806980609894,0.958383977413177,0.858304023742676,0.962279975414276,0.866728007793427,0.962777018547058,0.866728007793427,0.962777018547058,0.858304023742676,0.962279975414276,0.857629001140594,0.966123998165131,0.865217983722687,0.969187021255493,0.856212973594666,0.954777002334595,0.863092005252838,0.950582027435303,0.858371019363403,0.945856988430023,0.853627979755402,0.951870977878571,0.866117000579834,0.956306993961334,0.863092005252838,0.950582027435303,0.856212973594666,0.954777002334595,0.857806980609894,0.958383977413177,0.820293009281158,0.474510997533798,0.819850027561188,0.473536014556885,0.809644997119904,0.476352989673615,0.809774994850159,0.4774169921875,0.805727005004883,0.442474007606506,0.828845024108887,0.439857006072998,0.827360987663269,0.432617992162704,0.822866976261139,0.426746010780334,0.805727005004883,0.442474007606506,0.822866976261139,0.426746010780334,0.817399978637695, +0.421766996383667,0.810317993164063,0.41966301202774,0.805727005004883,0.442474007606506,0.810317993164063,0.41966301202774,0.803009986877441,0.418837010860443,0.796079993247986,0.421287000179291,0.805727005004883,0.442474007606506,0.796079993247986,0.421287000179291,0.789671003818512,0.42492601275444,0.785479009151459,0.430997014045715,0.805727005004883,0.442474007606506,0.825966000556946,0.453951001167297,0.829023003578186,0.447236001491547,0.828845024108887,0.439857006072998,0.788563013076782,0.458186000585556,0.805727005004883,0.442474007606506,0.78260201215744,0.445089012384415,0.784080028533936,0.452320009469986,0.805727005004883,0.442474007606506,0.815357029438019,0.4636569917202,0.821772992610931,0.460020005702972,0.825966000556946,0.453951001167297,0.782423973083496,0.437712997198105,0.772318005561829,0.435656994581223,0.77180802822113,0.446318000555038,0.78260201215744,0.445089012384415,0.805727005004883,0.442474007606506,0.801086008548737,0.465279996395111,0.80840802192688,0.46610701084137,0.815357029438019,0.4636569917202,0.805727005004883,0.442474007606506,0.788563013076782,0.458186000585556,0.794013023376465,0.463169008493423,0.801086008548737,0.465279996395111,0.785479009151459,0.430997014045715,0.782423973083496,0.437712997198105,0.78260201215744,0.445089012384415,0.805727005004883,0.442474007606506,0.785479009151459,0.430997014045715,0.776022017002106,0.425655007362366,0.772318005561829,0.435656994581223,0.782423973083496,0.437712997198105,0.789671003818512,0.42492601275444,0.782697975635529,0.417340993881226,0.776022017002106,0.425655007362366,0.785479009151459,0.430997014045715,0.796079993247986,0.421287000179291,0.791490972042084,0.411410987377167,0.782697975635529,0.417340993881226,0.789671003818512,0.42492601275444,0.803009986877441,0.418837010860443,0.801540970802307,0.408560007810593,0.791490972042084,0.411410987377167,0.796079993247986,0.421287000179291,0.810317993164063,0.41966301202774,0.812014997005463,0.408932000398636,0.801540970802307,0.408560007810593,0.803009986877441,0.418837010860443, +0.830645024776459,0.419279992580414,0.822080016136169,0.412669003009796,0.817399978637695,0.421766996383667,0.822866976261139,0.426746010780334,0.839577972888947,0.438618004322052,0.836620986461639,0.428270012140274,0.827360987663269,0.432617992162704,0.828845024108887,0.439857006072998,0.822080016136169,0.412669003009796,0.812014997005463,0.408932000398636,0.810317993164063,0.41966301202774,0.817399978637695,0.421766996383667,0.835380017757416,0.459300994873047,0.839084982872009,0.449297994375229,0.829023003578186,0.447236001491547,0.825966000556946,0.453951001167297,0.836620986461639,0.428270012140274,0.830645024776459,0.419279992580414,0.822866976261139,0.426746010780334,0.827360987663269,0.432617992162704,0.828697979450226,0.467615991830826,0.821772992610931,0.460020005702972,0.815357029438019,0.4636569917202,0.819850027561188,0.473536014556885,0.839084982872009,0.449297994375229,0.839577972888947,0.438618004322052,0.828845024108887,0.439857006072998,0.829023003578186,0.447236001491547,0.828697979450226,0.467615991830826,0.835380017757416,0.459300994873047,0.825966000556946,0.453951001167297,0.821772992610931,0.460020005702972,0.799052000045776,0.475939005613327,0.809644997119904,0.476352989673615,0.80840802192688,0.46610701084137,0.801086008548737,0.465279996395111,0.794013023376465,0.463169008493423,0.789040982723236,0.472169011831284,0.799052000045776,0.475939005613327,0.801086008548737,0.465279996395111,0.809644997119904,0.476352989673615,0.819850027561188,0.473536014556885,0.815357029438019,0.4636569917202,0.80840802192688,0.46610701084137,0.788563013076782,0.458186000585556,0.780597984790802,0.465555012226105,0.789040982723236,0.472169011831284,0.794013023376465,0.463169008493423,0.784080028533936,0.452320009469986,0.774711012840271,0.45661199092865,0.780597984790802,0.465555012226105,0.788563013076782,0.458186000585556,0.78260201215744,0.445089012384415,0.77180802822113,0.446318000555038,0.774711012840271,0.45661199092865,0.784080028533936,0.452320009469986,0.809774994850159,0.4774169921875,0.809644997119904, +0.476352989673615,0.799052000045776,0.475939005613327,0.798855006694794,0.476992011070251,0.789040982723236,0.472169011831284,0.788527011871338,0.473105013370514,0.798855006694794,0.476992011070251,0.799052000045776,0.475939005613327,0.780597984790802,0.465555012226105,0.779814004898071,0.46628400683403,0.788527011871338,0.473105013370514,0.789040982723236,0.472169011831284,0.836308002471924,0.459827989339828,0.835380017757416,0.459300994873047,0.828697979450226,0.467615991830826,0.829416990280151,0.46840500831604,0.829416990280151,0.46840500831604,0.828697979450226,0.467615991830826,0.819850027561188,0.473536014556885,0.820293009281158,0.474510997533798,0.774711012840271,0.45661199092865,0.773738980293274,0.457058012485504,0.779814004898071,0.46628400683403,0.780597984790802,0.465555012226105,0.77180802822113,0.446318000555038,0.770743012428284,0.446440011262894,0.773738980293274,0.457058012485504,0.774711012840271,0.45661199092865,0.840635001659393,0.438495010137558,0.839577972888947,0.438618004322052,0.839084982872009,0.449297994375229,0.840129017829895,0.449512004852295,0.840129017829895,0.449512004852295,0.839084982872009,0.449297994375229,0.835380017757416,0.459300994873047,0.836308002471924,0.459827989339828,0.772318005561829,0.435656994581223,0.771269023418427,0.435443013906479,0.770743012428284,0.446440011262894,0.77180802822113,0.446318000555038,0.776022017002106,0.425655007362366,0.775088012218475,0.425128012895584,0.771269023418427,0.435443013906479,0.772318005561829,0.435656994581223,0.831404983997345,0.418538987636566,0.830645024776459,0.419279992580414,0.836620986461639,0.428270012140274,0.837580025196075,0.427816987037659,0.837580025196075,0.427816987037659,0.836620986461639,0.428270012140274,0.839577972888947,0.438618004322052,0.840635001659393,0.438495010137558,0.782697975635529,0.417340993881226,0.781974017620087,0.416554003953934,0.775088012218475,0.425128012895584,0.776022017002106,0.425655007362366,0.791490972042084,0.411410987377167,0.791034996509552,0.410436987876892,0.781974017620087,0.416554003953934, +0.782697975635529,0.417340993881226,0.812168002128601,0.40786999464035,0.812014997005463,0.408932000398636,0.822080016136169,0.412669003009796,0.822555005550385,0.411720991134644,0.822555005550385,0.411720991134644,0.822080016136169,0.412669003009796,0.830645024776459,0.419279992580414,0.831404983997345,0.418538987636566,0.801540970802307,0.408560007810593,0.801379978656769,0.407492011785507,0.791034996509552,0.410436987876892,0.791490972042084,0.411410987377167,0.812168002128601,0.40786999464035,0.801379978656769,0.407492011785507,0.801540970802307,0.408560007810593,0.812014997005463,0.408932000398636,0.863754987716675,0.894842982292175,0.870020985603333,0.890870988368988,0.865773022174835,0.886182010173798,0.861240029335022,0.891915023326874,0.306894987821579,0.034935999661684,0.301001012325287,0.0360089987516403,0.300341993570328,0.0392649993300438,0.304143011569977,0.0398470014333725,0.295381993055344,0.0380799993872643,0.296508014202118,0.0423070006072521,0.300341993570328,0.0392649993300438,0.301001012325287,0.0360089987516403,0.300186008214951,0.0449850000441074,0.304143011569977,0.0398470014333725,0.300341993570328,0.0392649993300438,0.296508014202118,0.0423070006072521,0.285650998353958,0.0449879989027977,0.286700010299683,0.0505179986357689,0.291512995958328,0.0465870015323162,0.290217012166977,0.0411109998822212,0.286700010299683,0.0505179986357689,0.288594990968704,0.0578930005431175,0.295118987560272,0.0509940013289452,0.291512995958328,0.0465870015323162,0.291512995958328,0.0465870015323162,0.295118987560272,0.0509940013289452,0.300186008214951,0.0449850000441074,0.296508014202118,0.0423070006072521,0.290217012166977,0.0411109998822212,0.291512995958328,0.0465870015323162,0.296508014202118,0.0423070006072521,0.295381993055344,0.0380799993872643,0.317119002342224,0.0456559993326664,0.316935986280441,0.0398630015552044,0.310357004404068,0.0399289987981319,0.307339996099472,0.0457759983837605,0.316935986280441,0.0398630015552044,0.318791002035141,0.0359009988605976,0.312885999679565,0.03490199893713,0.310357004404068, +0.0399289987981319,0.310357004404068,0.0399289987981319,0.312885999679565,0.03490199893713,0.306894987821579,0.034935999661684,0.304143011569977,0.0398470014333725,0.307339996099472,0.0457759983837605,0.310357004404068,0.0399289987981319,0.304143011569977,0.0398470014333725,0.300186008214951,0.0449850000441074,0.329631000757217,0.0408940017223358,0.324425995349884,0.0379270017147064,0.321828007698059,0.0399970002472401,0.324364989995956,0.0428860001266003,0.318791002035141,0.0359009988605976,0.316935986280441,0.0398630015552044,0.321828007698059,0.0399970002472401,0.324425995349884,0.0379270017147064,0.317119002342224,0.0456559993326664,0.324364989995956,0.0428860001266003,0.321828007698059,0.0399970002472401,0.316935986280441,0.0398630015552044,0.288594990968704,0.0578930005431175,0.299618989229202,0.0616439990699291,0.303346991539001,0.0532610006630421,0.295118987560272,0.0509940013289452,0.299618989229202,0.0616439990699291,0.311242014169693,0.0644949972629547,0.313704013824463,0.0551940016448498,0.303346991539001,0.0532610006630421,0.303346991539001,0.0532610006630421,0.313704013824463,0.0551940016448498,0.317119002342224,0.0456559993326664,0.307339996099472,0.0457759983837605,0.295118987560272,0.0509940013289452,0.303346991539001,0.0532610006630421,0.307339996099472,0.0457759983837605,0.300186008214951,0.0449850000441074,0.285650998353958,0.0449879989027977,0.281825989484787,0.0495980009436607,0.283414006233215,0.0525150001049042,0.286700010299683,0.0505179986357689,0.278854012489319,0.0547959990799427,0.282433986663818,0.0573100000619888,0.283414006233215,0.0525150001049042,0.281825989484787,0.0495980009436607,0.288594990968704,0.0578930005431175,0.286700010299683,0.0505179986357689,0.283414006233215,0.0525150001049042,0.282433986663818,0.0573100000619888,0.275840014219284,0.0663399994373322,0.280362993478775,0.0708890035748482,0.281358003616333,0.0637990012764931,0.276845991611481,0.0604359991848469,0.280362993478775,0.0708890035748482,0.286680996417999,0.0764240026473999,0.28762298822403,0.0670759975910187, +0.281358003616333,0.0637990012764931,0.281358003616333,0.0637990012764931,0.28762298822403,0.0670759975910187,0.288594990968704,0.0578930005431175,0.282433986663818,0.0573100000619888,0.276845991611481,0.0604359991848469,0.281358003616333,0.0637990012764931,0.282433986663818,0.0573100000619888,0.278854012489319,0.0547959990799427,0.332100987434387,0.0551350004971027,0.334154009819031,0.05112100020051,0.329071998596191,0.0469439998269081,0.325143992900848,0.0509690009057522,0.334154009819031,0.05112100020051,0.338122010231018,0.0492799989879131,0.33424100279808,0.0447189994156361,0.329071998596191,0.0469439998269081,0.329071998596191,0.0469439998269081,0.33424100279808,0.0447189994156361,0.329631000757217,0.0408940017223358,0.324364989995956,0.0428860001266003,0.325143992900848,0.0509690009057522,0.329071998596191,0.0469439998269081,0.324364989995956,0.0428860001266003,0.317119002342224,0.0456559993326664,0.343214005231857,0.0600709989666939,0.341136008501053,0.0544530004262924,0.33781498670578,0.0543689988553524,0.337900996208191,0.0582120008766651,0.338122010231018,0.0492799989879131,0.334154009819031,0.05112100020051,0.33781498670578,0.0543689988553524,0.341136008501053,0.0544530004262924,0.332100987434387,0.0551350004971027,0.337900996208191,0.0582120008766651,0.33781498670578,0.0543689988553524,0.334154009819031,0.05112100020051,0.332702994346619,0.0703819990158081,0.33933299779892,0.071542002260685,0.338898003101349,0.0643460005521774,0.332403004169464,0.0620989985764027,0.33933299779892,0.071542002260685,0.344328999519348,0.0719510018825531,0.344287991523743,0.0659639984369278,0.338898003101349,0.0643460005521774,0.338898003101349,0.0643460005521774,0.344287991523743,0.0659639984369278,0.343214005231857,0.0600709989666939,0.337900996208191,0.0582120008766651,0.332403004169464,0.0620989985764027,0.338898003101349,0.0643460005521774,0.337900996208191,0.0582120008766651,0.332100987434387,0.0551350004971027,0.332702994346619,0.0703819990158081,0.330642998218536,0.0783500000834465,0.337733000516891,0.0785709992051125, +0.33933299779892,0.071542002260685,0.330642998218536,0.0783500000834465,0.327596992254257,0.0864529982209206,0.335750013589859,0.0844610035419464,0.337733000516891,0.0785709992051125,0.337733000516891,0.0785709992051125,0.335750013589859,0.0844610035419464,0.341295003890991,0.0834909975528717,0.343313008546829,0.0778520032763481,0.33933299779892,0.071542002260685,0.337733000516891,0.0785709992051125,0.343313008546829,0.0778520032763481,0.344328999519348,0.0719510018825531,0.286680996417999,0.0764240026473999,0.296743988990784,0.0782319977879524,0.297394990921021,0.0701820030808449,0.28762298822403,0.0670759975910187,0.296743988990784,0.0782319977879524,0.306910991668701,0.0808959975838661,0.308943003416061,0.0732090026140213,0.297394990921021,0.0701820030808449,0.297394990921021,0.0701820030808449,0.308943003416061,0.0732090026140213,0.311242014169693,0.0644949972629547,0.299618989229202,0.0616439990699291,0.28762298822403,0.0670759975910187,0.297394990921021,0.0701820030808449,0.299618989229202,0.0616439990699291,0.288594990968704,0.0578930005431175,0.276423007249832,0.0783620029687881,0.279020994901657,0.0838339999318123,0.27962800860405,0.0774850025773048,0.275871992111206,0.0723299980163574,0.279020994901657,0.0838339999318123,0.282045006752014,0.0890040025115013,0.28362101316452,0.082786001265049,0.27962800860405,0.0774850025773048,0.27962800860405,0.0774850025773048,0.28362101316452,0.082786001265049,0.286680996417999,0.0764240026473999,0.280362993478775,0.0708890035748482,0.275871992111206,0.0723299980163574,0.27962800860405,0.0774850025773048,0.280362993478775,0.0708890035748482,0.275840014219284,0.0663399994373322,0.334513992071152,0.0933099985122681,0.338330000638962,0.0886960029602051,0.335040003061295,0.088238999247551,0.330899000167847,0.0908470004796982,0.341295003890991,0.0834909975528717,0.335750013589859,0.0844610035419464,0.335040003061295,0.088238999247551,0.338330000638962,0.0886960029602051,0.327596992254257,0.0864529982209206,0.330899000167847,0.0908470004796982,0.335040003061295,0.088238999247551, +0.335750013589859,0.0844610035419464,0.327596992254257,0.0864529982209206,0.319743990898132,0.0913650020956993,0.325204998254776,0.094141997396946,0.330899000167847,0.0908470004796982,0.319743990898132,0.0913650020956993,0.314559012651443,0.0953259989619255,0.319900006055832,0.0973799973726273,0.325204998254776,0.094141997396946,0.325204998254776,0.094141997396946,0.319900006055832,0.0973799973726273,0.324772000312805,0.10020200163126,0.329943001270294,0.0971779972314835,0.330899000167847,0.0908470004796982,0.325204998254776,0.094141997396946,0.329943001270294,0.0971779972314835,0.334513992071152,0.0933099985122681,0.282045006752014,0.0890040025115013,0.285919010639191,0.0935729965567589,0.288089007139206,0.0883809998631477,0.28362101316452,0.082786001265049,0.285919010639191,0.0935729965567589,0.290522009134293,0.0974040031433105,0.292827993631363,0.0931390002369881,0.288089007139206,0.0883809998631477,0.288089007139206,0.0883809998631477,0.292827993631363,0.0931390002369881,0.294293999671936,0.0896760001778603,0.291584998369217,0.084977000951767,0.28362101316452,0.082786001265049,0.288089007139206,0.0883809998631477,0.291584998369217,0.084977000951767,0.286680996417999,0.0764240026473999,0.294293999671936,0.0896760001778603,0.298613995313644,0.0910189971327782,0.297733992338181,0.085148997604847,0.291584998369217,0.084977000951767,0.298613995313644,0.0910189971327782,0.3038389980793,0.0924559980630875,0.305247992277145,0.087117999792099,0.297733992338181,0.085148997604847,0.297733992338181,0.085148997604847,0.305247992277145,0.087117999792099,0.306910991668701,0.0808959975838661,0.296743988990784,0.0782319977879524,0.291584998369217,0.084977000951767,0.297733992338181,0.085148997604847,0.296743988990784,0.0782319977879524,0.286680996417999,0.0764240026473999,0.30136901140213,0.102380000054836,0.302569001913071,0.0974930003285408,0.29763600230217,0.0959300026297569,0.295727998018265,0.100362002849579,0.302569001913071,0.0974930003285408,0.3038389980793,0.0924559980630875,0.298613995313644,0.0910189971327782,0.29763600230217, +0.0959300026297569,0.29763600230217,0.0959300026297569,0.298613995313644,0.0910189971327782,0.294293999671936,0.0896760001778603,0.292827993631363,0.0931390002369881,0.295727998018265,0.100362002849579,0.29763600230217,0.0959300026297569,0.292827993631363,0.0931390002369881,0.290522009134293,0.0974040031433105,0.31326299905777,0.103363998234272,0.319153994321823,0.102283000946045,0.31692698597908,0.0998179987072945,0.312599986791611,0.0992909967899323,0.324772000312805,0.10020200163126,0.319900006055832,0.0973799973726273,0.31692698597908,0.0998179987072945,0.319153994321823,0.102283000946045,0.314559012651443,0.0953259989619255,0.312599986791611,0.0992909967899323,0.31692698597908,0.0998179987072945,0.319900006055832,0.0973799973726273,0.311242014169693,0.0644949972629547,0.322804987430573,0.067720003426075,0.32369801402092,0.05859399959445,0.313704013824463,0.0551940016448498,0.322804987430573,0.067720003426075,0.332702994346619,0.0703819990158081,0.332403004169464,0.0620989985764027,0.32369801402092,0.05859399959445,0.32369801402092,0.05859399959445,0.332403004169464,0.0620989985764027,0.332100987434387,0.0551350004971027,0.325143992900848,0.0509690009057522,0.313704013824463,0.0551940016448498,0.32369801402092,0.05859399959445,0.325143992900848,0.0509690009057522,0.317119002342224,0.0456559993326664,0.306910991668701,0.0808959975838661,0.317133992910385,0.083575002849102,0.320535987615585,0.0762469992041588,0.308943003416061,0.0732090026140213,0.317133992910385,0.083575002849102,0.327596992254257,0.0864529982209206,0.330642998218536,0.0783500000834465,0.320535987615585,0.0762469992041588,0.320535987615585,0.0762469992041588,0.330642998218536,0.0783500000834465,0.332702994346619,0.0703819990158081,0.322804987430573,0.067720003426075,0.308943003416061,0.0732090026140213,0.320535987615585,0.0762469992041588,0.322804987430573,0.067720003426075,0.311242014169693,0.0644949972629547,0.3038389980793,0.0924559980630875,0.309179991483688,0.0937879979610443,0.31283900141716,0.0891069993376732,0.305247992277145,0.087117999792099, +0.309179991483688,0.0937879979610443,0.314559012651443,0.0953259989619255,0.319743990898132,0.0913650020956993,0.31283900141716,0.0891069993376732,0.31283900141716,0.0891069993376732,0.319743990898132,0.0913650020956993,0.327596992254257,0.0864529982209206,0.317133992910385,0.083575002849102,0.305247992277145,0.087117999792099,0.31283900141716,0.0891069993376732,0.317133992910385,0.083575002849102,0.306910991668701,0.0808959975838661,0.30136901140213,0.102380000054836,0.307274997234344,0.103387996554375,0.307686001062393,0.0985639989376068,0.302569001913071,0.0974930003285408,0.307274997234344,0.103387996554375,0.31326299905777,0.103363998234272,0.312599986791611,0.0992909967899323,0.307686001062393,0.0985639989376068,0.307686001062393,0.0985639989376068,0.312599986791611,0.0992909967899323,0.314559012651443,0.0953259989619255,0.309179991483688,0.0937879979610443,0.302569001913071,0.0974930003285408,0.307686001062393,0.0985639989376068,0.309179991483688,0.0937879979610443,0.3038389980793,0.0924559980630875,0.0453409999608994,0.0964770019054413,0.0457700006663799,0.0906649976968765,0.0383550003170967,0.0922119989991188,0.0354069992899895,0.0962850004434586,0.0394200012087822,0.0838280022144318,0.0349650010466576,0.0899489969015121,0.0383550003170967,0.0922119989991188,0.0457700006663799,0.0906649976968765,0.0256769992411137,0.0958330035209656,0.0354069992899895,0.0962850004434586,0.0383550003170967,0.0922119989991188,0.0349650010466576,0.0899489969015121,0.0661809965968132,0.0956640020012856,0.0659869983792305,0.0890159979462624,0.0553359985351563,0.089648000895977,0.0556849986314774,0.0961470007896423,0.0659869983792305,0.0890159979462624,0.0666719973087311,0.0800409987568855,0.0555579997599125,0.0818829983472824,0.0553359985351563,0.089648000895977,0.0553359985351563,0.089648000895977,0.0555579997599125,0.0818829983472824,0.0394200012087822,0.0838280022144318,0.0457700006663799,0.0906649976968765,0.0556849986314774,0.0961470007896423,0.0553359985351563,0.089648000895977,0.0457700006663799,0.0906649976968765,0.0453409999608994, +0.0964770019054413,0.0661809965968132,0.0956640020012856,0.0765710026025772,0.0953959971666336,0.0766550004482269,0.0886219963431358,0.0659869983792305,0.0890159979462624,0.0765710026025772,0.0953959971666336,0.0867889970541,0.0952610000967979,0.0871749967336655,0.0883719995617867,0.0766550004482269,0.0886219963431358,0.0766550004482269,0.0886219963431358,0.0871749967336655,0.0883719995617867,0.0887280032038689,0.0792410001158714,0.0776410028338432,0.0807079970836639,0.0659869983792305,0.0890159979462624,0.0766550004482269,0.0886219963431358,0.0776410028338432,0.0807079970836639,0.0666719973087311,0.0800409987568855,0.0666719973087311,0.0800409987568855,0.064471997320652,0.0700870007276535,0.0569219999015331,0.0715830028057098,0.0555579997599125,0.0818829983472824,0.064471997320652,0.0700870007276535,0.0653190016746521,0.0601460002362728,0.058458000421524,0.0607930012047291,0.0569219999015331,0.0715830028057098,0.0569219999015331,0.0715830028057098,0.058458000421524,0.0607930012047291,0.05120600014925,0.0612920001149178,0.0482929982244968,0.0714489966630936,0.0555579997599125,0.0818829983472824,0.0569219999015331,0.0715830028057098,0.0482929982244968,0.0714489966630936,0.0394200012087822,0.0838280022144318,0.0867889970541,0.0952610000967979,0.0967670008540154,0.0951749980449677,0.0973820015788078,0.0881699994206429,0.0871749967336655,0.0883719995617867,0.0967670008540154,0.0951749980449677,0.106499001383781,0.0951239988207817,0.107267998158932,0.0879840031266212,0.0973820015788078,0.0881699994206429,0.0973820015788078,0.0881699994206429,0.107267998158932,0.0879840031266212,0.108276002109051,0.0797320008277893,0.0988920032978058,0.080035001039505,0.0871749967336655,0.0883719995617867,0.0973820015788078,0.0881699994206429,0.0988920032978058,0.080035001039505,0.0887280032038689,0.0792410001158714,0.0382269993424416,0.0608059987425804,0.0331909991800785,0.0652989968657494,0.0397510007023811,0.0695779994130135,0.0438469983637333,0.0616619996726513,0.0331909991800785,0.0652989968657494,0.026435999199748,0.069861002266407, +0.0342109985649586,0.077235996723175,0.0397510007023811,0.0695779994130135,0.0397510007023811,0.0695779994130135,0.0342109985649586,0.077235996723175,0.0394200012087822,0.0838280022144318,0.0482929982244968,0.0714489966630936,0.0438469983637333,0.0616619996726513,0.0397510007023811,0.0695779994130135,0.0482929982244968,0.0714489966630936,0.05120600014925,0.0612920001149178,0.0375740006566048,0.0465169996023178,0.030120000243187,0.0490269996225834,0.0305080004036427,0.0579439997673035,0.0378019995987415,0.0550410002470016,0.030120000243187,0.0490269996225834,0.0226719994097948,0.0520239993929863,0.0231950003653765,0.0613930001854897,0.0305080004036427,0.0579439997673035,0.0305080004036427,0.0579439997673035,0.0231950003653765,0.0613930001854897,0.026435999199748,0.069861002266407,0.0331909991800785,0.0652989968657494,0.0378019995987415,0.0550410002470016,0.0305080004036427,0.0579439997673035,0.0331909991800785,0.0652989968657494,0.0382269993424416,0.0608059987425804,0.030120000243187,0.0490269996225834,0.0311200004070997,0.0310779996216297,0.0238749999552965,0.0315090008080006,0.0226719994097948,0.0520239993929863,0.0450390018522739,0.0449809990823269,0.0460910014808178,0.0306800007820129,0.0384860001504421,0.0307630002498627,0.0375740006566048,0.0465169996023178,0.0524309985339642,0.0441330000758171,0.0537550002336502,0.0307490006089211,0.0460910014808178,0.0306800007820129,0.0450390018522739,0.0449809990823269,0.0667179971933365,0.04356300085783,0.068681001663208,0.0310660004615784,0.061294000595808,0.0308880005031824,0.0596669986844063,0.0436879992485046,0.0382269993424416,0.0608059987425804,0.0438469983637333,0.0616619996726513,0.0450560003519058,0.0532299987971783,0.0378019995987415,0.0550410002470016,0.0438469983637333,0.0616619996726513,0.05120600014925,0.0612920001149178,0.0522079989314079,0.0521799996495247,0.0450560003519058,0.0532299987971783,0.0450560003519058,0.0532299987971783,0.0522079989314079,0.0521799996495247,0.0524309985339642,0.0441330000758171,0.0450390018522739,0.0449809990823269,0.0378019995987415, +0.0550410002470016,0.0450560003519058,0.0532299987971783,0.0450390018522739,0.0449809990823269,0.0375740006566048,0.0465169996023178,0.0596669986844063,0.0436879992485046,0.061294000595808,0.0308880005031824,0.0537550002336502,0.0307490006089211,0.0524309985339642,0.0441330000758171,0.0735590010881424,0.0436760000884533,0.0758860036730766,0.0312479995191097,0.068681001663208,0.0310660004615784,0.0667179971933365,0.04356300085783,0.05120600014925,0.0612920001149178,0.058458000421524,0.0607930012047291,0.0591939985752106,0.0515579991042614,0.0522079989314079,0.0521799996495247,0.058458000421524,0.0607930012047291,0.0653190016746521,0.0601460002362728,0.0660049989819527,0.0512880012392998,0.0591939985752106,0.0515579991042614,0.0591939985752106,0.0515579991042614,0.0660049989819527,0.0512880012392998,0.0667179971933365,0.04356300085783,0.0596669986844063,0.0436879992485046,0.0522079989314079,0.0521799996495247,0.0591939985752106,0.0515579991042614,0.0596669986844063,0.0436879992485046,0.0524309985339642,0.0441330000758171,0.0801739990711212,0.0437959991395473,0.0828180015087128,0.0314159989356995,0.0758860036730766,0.0312479995191097,0.0735590010881424,0.0436760000884533,0.0926640033721924,0.0434850007295609,0.0956410020589828,0.0316589996218681,0.0893839970231056,0.0315520018339157,0.0865489989519119,0.0436940006911755,0.0653190016746521,0.0601460002362728,0.0715029984712601,0.0593309998512268,0.0726329982280731,0.0512970015406609,0.0660049989819527,0.0512880012392998,0.0715029984712601,0.0593309998512268,0.0771709978580475,0.0599999986588955,0.0790690034627914,0.0513360016047955,0.0726329982280731,0.0512970015406609,0.0726329982280731,0.0512970015406609,0.0790690034627914,0.0513360016047955,0.0801739990711212,0.0437959991395473,0.0735590010881424,0.0436760000884533,0.0660049989819527,0.0512880012392998,0.0726329982280731,0.0512970015406609,0.0735590010881424,0.0436760000884533,0.0667179971933365,0.04356300085783,0.0653190016746521,0.0601460002362728,0.064471997320652,0.0700870007276535,0.0697750002145767,0.0670659989118576, +0.0715029984712601,0.0593309998512268,0.0666719973087311,0.0800409987568855,0.073515996336937,0.0698300004005432,0.0697750002145767,0.0670659989118576,0.064471997320652,0.0700870007276535,0.0771709978580475,0.0599999986588955,0.0715029984712601,0.0593309998512268,0.0697750002145767,0.0670659989118576,0.073515996336937,0.0698300004005432,0.0887280032038689,0.0792410001158714,0.0878319963812828,0.0692899972200394,0.0804330036044121,0.0705149993300438,0.0776410028338432,0.0807079970836639,0.0878319963812828,0.0692899972200394,0.0897879973053932,0.0595050007104874,0.0834980010986328,0.0600089989602566,0.0804330036044121,0.0705149993300438,0.0804330036044121,0.0705149993300438,0.0834980010986328,0.0600089989602566,0.0771709978580475,0.0599999986588955,0.073515996336937,0.0698300004005432,0.0776410028338432,0.0807079970836639,0.0804330036044121,0.0705149993300438,0.073515996336937,0.0698300004005432,0.0666719973087311,0.0800409987568855,0.0865489989519119,0.0436940006911755,0.0893839970231056,0.0315520018339157,0.0828180015087128,0.0314159989356995,0.0801739990711212,0.0437959991395473,0.0984959974884987,0.0432859994471073,0.10164699703455,0.0317419990897179,0.0956410020589828,0.0316589996218681,0.0926640033721924,0.0434850007295609,0.0771709978580475,0.0599999986588955,0.0834980010986328,0.0600089989602566,0.0853039994835854,0.0511579997837543,0.0790690034627914,0.0513360016047955,0.0834980010986328,0.0600089989602566,0.0897879973053932,0.0595050007104874,0.0913079977035522,0.0508989989757538,0.0853039994835854,0.0511579997837543,0.0853039994835854,0.0511579997837543,0.0913079977035522,0.0508989989757538,0.0926640033721924,0.0434850007295609,0.0865489989519119,0.0436940006911755,0.0790690034627914,0.0513360016047955,0.0853039994835854,0.0511579997837543,0.0865489989519119,0.0436940006911755,0.0801739990711212,0.0437959991395473,0.104069001972675,0.0429870001971722,0.10734099894762,0.0317800007760525,0.10164699703455,0.0317419990897179,0.0984959974884987,0.0432859994471073,0.114510998129845,0.0419379994273186,0.117714002728462, +0.0316380001604557,0.112664997577667,0.0317529998719692,0.109406001865864,0.0424779988825321,0.0897879973053932,0.0595050007104874,0.0878319963812828,0.0692899972200394,0.0930240005254745,0.0663250014185905,0.0953480005264282,0.0586329996585846,0.0887280032038689,0.0792410001158714,0.0960429981350899,0.069020003080368,0.0930240005254745,0.0663250014185905,0.0878319963812828,0.0692899972200394,0.10020799934864,0.059128001332283,0.0953480005264282,0.0586329996585846,0.0930240005254745,0.0663250014185905,0.0960429981350899,0.069020003080368,0.0897879973053932,0.0595050007104874,0.0953480005264282,0.0586329996585846,0.0970510020852089,0.0506939999759197,0.0913079977035522,0.0508989989757538,0.0953480005264282,0.0586329996585846,0.10020799934864,0.059128001332283,0.102563999593258,0.0504029989242554,0.0970510020852089,0.0506939999759197,0.0970510020852089,0.0506939999759197,0.102563999593258,0.0504029989242554,0.104069001972675,0.0429870001971722,0.0984959974884987,0.0432859994471073,0.0913079977035522,0.0508989989757538,0.0970510020852089,0.0506939999759197,0.0984959974884987,0.0432859994471073,0.0926640033721924,0.0434850007295609,0.108276002109051,0.0797320008277893,0.109760999679565,0.0692579969763756,0.102193996310234,0.069641001522541,0.0988920032978058,0.080035001039505,0.109760999679565,0.0692579969763756,0.111428000032902,0.0584880001842976,0.105714000761509,0.0589409992098808,0.102193996310234,0.069641001522541,0.102193996310234,0.069641001522541,0.105714000761509,0.0589409992098808,0.10020799934864,0.059128001332283,0.0960429981350899,0.069020003080368,0.0988920032978058,0.080035001039505,0.102193996310234,0.069641001522541,0.0960429981350899,0.069020003080368,0.0887280032038689,0.0792410001158714,0.109406001865864,0.0424779988825321,0.112664997577667,0.0317529998719692,0.10734099894762,0.0317800007760525,0.104069001972675,0.0429870001971722,0.119384996592999,0.0415470004081726,0.122584998607635,0.0314100012183189,0.117714002728462,0.0316380001604557,0.114510998129845,0.0419379994273186,0.10020799934864,0.059128001332283, +0.105714000761509,0.0589409992098808,0.107878997921944,0.0498879998922348,0.102563999593258,0.0504029989242554,0.105714000761509,0.0589409992098808,0.111428000032902,0.0584880001842976,0.112983003258705,0.0493520013988018,0.107878997921944,0.0498879998922348,0.107878997921944,0.0498879998922348,0.112983003258705,0.0493520013988018,0.114510998129845,0.0419379994273186,0.109406001865864,0.0424779988825321,0.102563999593258,0.0504029989242554,0.107878997921944,0.0498879998922348,0.109406001865864,0.0424779988825321,0.104069001972675,0.0429870001971722,0.124075002968311,0.0412210002541542,0.127240002155304,0.0311990007758141,0.122584998607635,0.0314100012183189,0.119384996592999,0.0415470004081726,0.133054003119469,0.0406659990549088,0.135897994041443,0.0311019998043776,0.131644994020462,0.0311360005289316,0.128626003861427,0.0408780016005039,0.111428000032902,0.0584880001842976,0.116911999881268,0.0581879988312721,0.11786500364542,0.0489999987185001,0.112983003258705,0.0493520013988018,0.116911999881268,0.0581879988312721,0.121927998960018,0.0576880015432835,0.122580997645855,0.0487020015716553,0.11786500364542,0.0489999987185001,0.11786500364542,0.0489999987185001,0.122580997645855,0.0487020015716553,0.124075002968311,0.0412210002541542,0.119384996592999,0.0415470004081726,0.112983003258705,0.0493520013988018,0.11786500364542,0.0489999987185001,0.119384996592999,0.0415470004081726,0.114510998129845,0.0419379994273186,0.128626003861427,0.0408780016005039,0.131644994020462,0.0311360005289316,0.127240002155304,0.0311990007758141,0.124075002968311,0.0412210002541542,0.137373998761177,0.0407340005040169,0.140098005533218,0.030977999791503,0.135897994041443,0.0311019998043776,0.133054003119469,0.0406659990549088,0.108276002109051,0.0797320008277893,0.117302000522614,0.0794190019369125,0.117026999592781,0.0689409971237183,0.109760999679565,0.0692579969763756,0.117302000522614,0.0794190019369125,0.126734003424644,0.0779120028018951,0.122882999479771,0.0677059963345528,0.117026999592781,0.0689409971237183,0.117026999592781,0.0689409971237183, +0.122882999479771,0.0677059963345528,0.121927998960018,0.0576880015432835,0.116911999881268,0.0581879988312721,0.109760999679565,0.0692579969763756,0.117026999592781,0.0689409971237183,0.116911999881268,0.0581879988312721,0.111428000032902,0.0584880001842976,0.121927998960018,0.0576880015432835,0.126239001750946,0.0566349998116493,0.127186000347137,0.0483309999108315,0.122580997645855,0.0487020015716553,0.126239001750946,0.0566349998116493,0.130538001656532,0.0571289993822575,0.131681993603706,0.048080001026392,0.127186000347137,0.0483309999108315,0.127186000347137,0.0483309999108315,0.131681993603706,0.048080001026392,0.133054003119469,0.0406659990549088,0.128626003861427,0.0408780016005039,0.122580997645855,0.0487020015716553,0.127186000347137,0.0483309999108315,0.128626003861427,0.0408780016005039,0.124075002968311,0.0412210002541542,0.141636997461319,0.0409330017864704,0.144228994846344,0.0308379996567965,0.140098005533218,0.030977999791503,0.137373998761177,0.0407340005040169,0.150178998708725,0.0413810014724731,0.152317002415657,0.0306940004229546,0.14826999604702,0.030757000669837,0.145895004272461,0.0411190018057823,0.106499001383781,0.0951239988207817,0.115976996719837,0.0950950011610985,0.116827003657818,0.0877849981188774,0.107267998158932,0.0879840031266212,0.115976996719837,0.0950950011610985,0.125301003456116,0.0949949994683266,0.126175001263618,0.0875829979777336,0.116827003657818,0.0877849981188774,0.116827003657818,0.0877849981188774,0.126175001263618,0.0875829979777336,0.126734003424644,0.0779120028018951,0.117302000522614,0.0794190019369125,0.107267998158932,0.0879840031266212,0.116827003657818,0.0877849981188774,0.117302000522614,0.0794190019369125,0.108276002109051,0.0797320008277893,0.143959000706673,0.0945869982242584,0.144806995987892,0.0873079970479012,0.135428994894028,0.0873889997601509,0.134568005800247,0.0947360023856163,0.144806995987892,0.0873079970479012,0.145860001444817,0.077725000679493,0.135887995362282,0.0789439976215363,0.135428994894028,0.0873889997601509,0.135428994894028,0.0873889997601509, +0.135887995362282,0.0789439976215363,0.126734003424644,0.0779120028018951,0.126175001263618,0.0875829979777336,0.134568005800247,0.0947360023856163,0.135428994894028,0.0873889997601509,0.126175001263618,0.0875829979777336,0.125301003456116,0.0949949994683266,0.121927998960018,0.0576880015432835,0.122882999479771,0.0677059963345528,0.126221001148224,0.0645729973912239,0.126239001750946,0.0566349998116493,0.126734003424644,0.0779120028018951,0.129813000559807,0.0673400014638901,0.126221001148224,0.0645729973912239,0.122882999479771,0.0677059963345528,0.130538001656532,0.0571289993822575,0.126239001750946,0.0566349998116493,0.126221001148224,0.0645729973912239,0.129813000559807,0.0673400014638901,0.130538001656532,0.0571289993822575,0.135297000408173,0.0573900006711483,0.136069998145103,0.048140998929739,0.131681993603706,0.048080001026392,0.135297000408173,0.0573900006711483,0.140187993645668,0.0571440011262894,0.140408992767334,0.0483289994299412,0.136069998145103,0.048140998929739,0.136069998145103,0.048140998929739,0.140408992767334,0.0483289994299412,0.141636997461319,0.0409330017864704,0.137373998761177,0.0407340005040169,0.131681993603706,0.048080001026392,0.136069998145103,0.048140998929739,0.137373998761177,0.0407340005040169,0.133054003119469,0.0406659990549088,0.126734003424644,0.0779120028018951,0.135887995362282,0.0789439976215363,0.135539993643761,0.0683009997010231,0.129813000559807,0.0673400014638901,0.135887995362282,0.0789439976215363,0.145860001444817,0.077725000679493,0.141927003860474,0.0669189989566803,0.135539993643761,0.0683009997010231,0.135539993643761,0.0683009997010231,0.141927003860474,0.0669189989566803,0.140187993645668,0.0571440011262894,0.135297000408173,0.0573900006711483,0.129813000559807,0.0673400014638901,0.135539993643761,0.0683009997010231,0.135297000408173,0.0573900006711483,0.130538001656532,0.0571289993822575,0.145895004272461,0.0411190018057823,0.14826999604702,0.030757000669837,0.144228994846344,0.0308379996567965,0.141636997461319,0.0409330017864704,0.154521003365517,0.0418099984526634, +0.156468003988266,0.0306080002337694,0.152317002415657,0.0306940004229546,0.150178998708725,0.0413810014724731,0.140187993645668,0.0571440011262894,0.144889995455742,0.0561110004782677,0.144760996103287,0.0484599992632866,0.140408992767334,0.0483289994299412,0.144889995455742,0.0561110004782677,0.14852599799633,0.0538370013237,0.149146005511284,0.0486590005457401,0.144760996103287,0.0484599992632866,0.144760996103287,0.0484599992632866,0.149146005511284,0.0486590005457401,0.150178998708725,0.0413810014724731,0.145895004272461,0.0411190018057823,0.140408992767334,0.0483289994299412,0.144760996103287,0.0484599992632866,0.145895004272461,0.0411190018057823,0.141636997461319,0.0409330017864704,0.158986002206802,0.0422450006008148,0.160732999444008,0.0305480007082224,0.156468003988266,0.0306080002337694,0.154521003365517,0.0418099984526634,0.168532997369766,0.0427110008895397,0.169745996594429,0.0305080004036427,0.165123999118805,0.0305589996278286,0.16363599896431,0.042518999427557,0.145860001444817,0.077725000679493,0.152256995439529,0.0671560019254684,0.14750300347805,0.0626569986343384,0.141927003860474,0.0669189989566803,0.152256995439529,0.0671560019254684,0.156278997659683,0.0577550008893013,0.151610001921654,0.0564050003886223,0.14750300347805,0.0626569986343384,0.14750300347805,0.0626569986343384,0.151610001921654,0.0564050003886223,0.14852599799633,0.0538370013237,0.144889995455742,0.0561110004782677,0.141927003860474,0.0669189989566803,0.14750300347805,0.0626569986343384,0.144889995455742,0.0561110004782677,0.140187993645668,0.0571440011262894,0.14852599799633,0.0538370013237,0.151610001921654,0.0564050003886223,0.153588995337486,0.0490540005266666,0.149146005511284,0.0486590005457401,0.151610001921654,0.0564050003886223,0.156278997659683,0.0577550008893013,0.158159002661705,0.0494530014693737,0.153588995337486,0.0490540005266666,0.153588995337486,0.0490540005266666,0.158159002661705,0.0494530014693737,0.158986002206802,0.0422450006008148,0.154521003365517,0.0418099984526634,0.149146005511284,0.0486590005457401, +0.153588995337486,0.0490540005266666,0.154521003365517,0.0418099984526634,0.150178998708725,0.0413810014724731,0.16363599896431,0.042518999427557,0.165123999118805,0.0305589996278286,0.160732999444008,0.0305480007082224,0.158986002206802,0.0422450006008148,0.1737380027771,0.0428939983248711,0.174704998731613,0.0302610006183386,0.169745996594429,0.0305080004036427,0.168532997369766,0.0427110008895397,0.156278997659683,0.0577550008893013,0.161546006798744,0.0582210011780262,0.162925004959106,0.0496639981865883,0.158159002661705,0.0494530014693737,0.161546006798744,0.0582210011780262,0.167012006044388,0.0580569989979267,0.167940005660057,0.0498140007257462,0.162925004959106,0.0496639981865883,0.162925004959106,0.0496639981865883,0.167940005660057,0.0498140007257462,0.168532997369766,0.0427110008895397,0.16363599896431,0.042518999427557,0.158159002661705,0.0494530014693737,0.162925004959106,0.0496639981865883,0.16363599896431,0.042518999427557,0.158986002206802,0.0422450006008148,0.179352998733521,0.0429649986326694,0.180077999830246,0.0299759991466999,0.174704998731613,0.0302610006183386,0.1737380027771,0.0428939983248711,0.19225500524044,0.0425710007548332,0.192466005682945,0.0294599998742342,0.185945004224777,0.0298089999705553,0.185481995344162,0.0428159981966019,0.166581004858017,0.0780910030007362,0.165402993559837,0.0677739977836609,0.158807992935181,0.0686710029840469,0.156028002500534,0.0790619999170303,0.165402993559837,0.0677739977836609,0.167012006044388,0.0580569989979267,0.161546006798744,0.0582210011780262,0.158807992935181,0.0686710029840469,0.158807992935181,0.0686710029840469,0.161546006798744,0.0582210011780262,0.156278997659683,0.0577550008893013,0.152256995439529,0.0671560019254684,0.156028002500534,0.0790619999170303,0.158807992935181,0.0686710029840469,0.152256995439529,0.0671560019254684,0.145860001444817,0.077725000679493,0.143959000706673,0.0945869982242584,0.153653994202614,0.094818003475666,0.154522001743317,0.0874430015683174,0.144806995987892,0.0873079970479012,0.153653994202614,0.094818003475666, +0.163938999176025,0.0953729972243309,0.164887994527817,0.0878169983625412,0.154522001743317,0.0874430015683174,0.154522001743317,0.0874430015683174,0.164887994527817,0.0878169983625412,0.166581004858017,0.0780910030007362,0.156028002500534,0.0790619999170303,0.144806995987892,0.0873079970479012,0.154522001743317,0.0874430015683174,0.156028002500534,0.0790619999170303,0.145860001444817,0.077725000679493,0.167012006044388,0.0580569989979267,0.172275006771088,0.0575160011649132,0.173256993293762,0.0500309988856316,0.167940005660057,0.0498140007257462,0.172275006771088,0.0575160011649132,0.177483007311821,0.0583689995110035,0.178976997733116,0.0501650013029575,0.173256993293762,0.0500309988856316,0.173256993293762,0.0500309988856316,0.178976997733116,0.0501650013029575,0.179352998733521,0.0429649986326694,0.1737380027771,0.0428939983248711,0.167940005660057,0.0498140007257462,0.173256993293762,0.0500309988856316,0.1737380027771,0.0428939983248711,0.168532997369766,0.0427110008895397,0.185481995344162,0.0428159981966019,0.185945004224777,0.0298089999705553,0.180077999830246,0.0299759991466999,0.179352998733521,0.0429649986326694,0.19980600476265,0.0423500016331673,0.199799001216888,0.028626000508666,0.192466005682945,0.0294599998742342,0.19225500524044,0.0425710007548332,0.167012006044388,0.0580569989979267,0.165402993559837,0.0677739977836609,0.170288994908333,0.0650409981608391,0.172275006771088,0.0575160011649132,0.166581004858017,0.0780910030007362,0.173767000436783,0.0680190026760101,0.170288994908333,0.0650409981608391,0.165402993559837,0.0677739977836609,0.177483007311821,0.0583689995110035,0.172275006771088,0.0575160011649132,0.170288994908333,0.0650409981608391,0.173767000436783,0.0680190026760101,0.177483007311821,0.0583689995110035,0.184030994772911,0.0586169995367527,0.18520100414753,0.0500670000910759,0.178976997733116,0.0501650013029575,0.184030994772911,0.0586169995367527,0.191673994064331,0.0586949996650219,0.192050993442535,0.0499330013990402,0.18520100414753,0.0500670000910759,0.18520100414753,0.0500670000910759, +0.192050993442535,0.0499330013990402,0.19225500524044,0.0425710007548332,0.185481995344162,0.0428159981966019,0.178976997733116,0.0501650013029575,0.18520100414753,0.0500670000910759,0.185481995344162,0.0428159981966019,0.179352998733521,0.0429649986326694,0.208333998918533,0.0421999990940094,0.208114996552467,0.0280050002038479,0.199799001216888,0.028626000508666,0.19980600476265,0.0423500016331673,0.229252994060516,0.0423539988696575,0.228393003344536,0.0288549996912479,0.217584997415543,0.0282910000532866,0.218037992715836,0.0421690009534359,0.190081000328064,0.0805040001869202,0.191027998924255,0.0696099996566772,0.181117996573448,0.0691649988293648,0.178001001477242,0.0797609984874725,0.191027998924255,0.0696099996566772,0.191673994064331,0.0586949996650219,0.184030994772911,0.0586169995367527,0.181117996573448,0.0691649988293648,0.181117996573448,0.0691649988293648,0.184030994772911,0.0586169995367527,0.177483007311821,0.0583689995110035,0.173767000436783,0.0680190026760101,0.178001001477242,0.0797609984874725,0.181117996573448,0.0691649988293648,0.173767000436783,0.0680190026760101,0.166581004858017,0.0780910030007362,0.163938999176025,0.0953729972243309,0.17510099709034,0.0961939990520477,0.176217004656792,0.0884530022740364,0.164887994527817,0.0878169983625412,0.17510099709034,0.0961939990520477,0.187349006533623,0.0968080013990402,0.188798993825912,0.0892049968242645,0.176217004656792,0.0884530022740364,0.176217004656792,0.0884530022740364,0.188798993825912,0.0892049968242645,0.190081000328064,0.0805040001869202,0.178001001477242,0.0797609984874725,0.164887994527817,0.0878169983625412,0.176217004656792,0.0884530022740364,0.178001001477242,0.0797609984874725,0.166581004858017,0.0780910030007362,0.191673994064331,0.0586949996650219,0.200167000293732,0.0590410009026527,0.19964599609375,0.0499569997191429,0.192050993442535,0.0499330013990402,0.200167000293732,0.0590410009026527,0.209030002355576,0.0592229999601841,0.208171993494034,0.0500780008733273,0.19964599609375,0.0499569997191429,0.19964599609375,0.0499569997191429, +0.208171993494034,0.0500780008733273,0.208333998918533,0.0421999990940094,0.19980600476265,0.0423500016331673,0.192050993442535,0.0499330013990402,0.19964599609375,0.0499569997191429,0.19980600476265,0.0423500016331673,0.19225500524044,0.0425710007548332,0.218037992715836,0.0421690009534359,0.217584997415543,0.0282910000532866,0.208114996552467,0.0280050002038479,0.208333998918533,0.0421999990940094,0.242313995957375,0.0428530015051365,0.240722998976707,0.0290680006146431,0.228393003344536,0.0288549996912479,0.229252994060516,0.0423539988696575,0.256298989057541,0.0435080006718636,0.25381401181221,0.0291050001978874,0.240722998976707,0.0290680006146431,0.242313995957375,0.0428530015051365,0.209030002355576,0.0592229999601841,0.217779994010925,0.0588090009987354,0.217818006873131,0.0502379983663559,0.208171993494034,0.0500780008733273,0.217779994010925,0.0588090009987354,0.227908998727798,0.0604149997234344,0.228865996003151,0.0506800003349781,0.217818006873131,0.0502379983663559,0.217818006873131,0.0502379983663559,0.228865996003151,0.0506800003349781,0.229252994060516,0.0423539988696575,0.218037992715836,0.0421690009534359,0.208171993494034,0.0500780008733273,0.217818006873131,0.0502379983663559,0.218037992715836,0.0421690009534359,0.208333998918533,0.0421999990940094,0.190081000328064,0.0805040001869202,0.203749999403954,0.0816569998860359,0.20218400657177,0.0704850032925606,0.191027998924255,0.0696099996566772,0.203749999403954,0.0816569998860359,0.219904005527496,0.0822699964046478,0.212142005562782,0.0702790021896362,0.20218400657177,0.0704850032925606,0.20218400657177,0.0704850032925606,0.212142005562782,0.0702790021896362,0.209030002355576,0.0592229999601841,0.200167000293732,0.0590410009026527,0.191027998924255,0.0696099996566772,0.20218400657177,0.0704850032925606,0.200167000293732,0.0590410009026527,0.191673994064331,0.0586949996650219,0.227908998727798,0.0604149997234344,0.240385994315147,0.0622979998588562,0.24159599840641,0.0516479983925819,0.228865996003151,0.0506800003349781,0.240385994315147,0.0622979998588562, +0.254038989543915,0.0643199980258942,0.255169004201889,0.0528789982199669,0.24159599840641,0.0516479983925819,0.24159599840641,0.0516479983925819,0.255169004201889,0.0528789982199669,0.256298989057541,0.0435080006718636,0.242313995957375,0.0428530015051365,0.228865996003151,0.0506800003349781,0.24159599840641,0.0516479983925819,0.242313995957375,0.0428530015051365,0.229252994060516,0.0423539988696575,0.209030002355576,0.0592229999601841,0.212142005562782,0.0702790021896362,0.218459993600845,0.0674810037016869,0.217779994010925,0.0588090009987354,0.219904005527496,0.0822699964046478,0.226465001702309,0.0717080011963844,0.218459993600845,0.0674810037016869,0.212142005562782,0.0702790021896362,0.227908998727798,0.0604149997234344,0.217779994010925,0.0588090009987354,0.218459993600845,0.0674810037016869,0.226465001702309,0.0717080011963844,0.219904005527496,0.0822699964046478,0.236794993281364,0.0861909985542297,0.239401996135712,0.0751359984278679,0.226465001702309,0.0717080011963844,0.236794993281364,0.0861909985542297,0.250912994146347,0.0898400023579597,0.254806011915207,0.0781639963388443,0.239401996135712,0.0751359984278679,0.239401996135712,0.0751359984278679,0.254806011915207,0.0781639963388443,0.254038989543915,0.0643199980258942,0.240385994315147,0.0622979998588562,0.226465001702309,0.0717080011963844,0.239401996135712,0.0751359984278679,0.240385994315147,0.0622979998588562,0.227908998727798,0.0604149997234344,0.187349006533623,0.0968080013990402,0.200893998146057,0.0967419967055321,0.202921003103256,0.0899249985814095,0.188798993825912,0.0892049968242645,0.200893998146057,0.0967419967055321,0.216719001531601,0.0960469990968704,0.217317000031471,0.0906689986586571,0.202921003103256,0.0899249985814095,0.202921003103256,0.0899249985814095,0.217317000031471,0.0906689986586571,0.219904005527496,0.0822699964046478,0.203749999403954,0.0816569998860359,0.188798993825912,0.0892049968242645,0.202921003103256,0.0899249985814095,0.203749999403954,0.0816569998860359,0.190081000328064,0.0805040001869202,0.219904005527496, +0.0822699964046478,0.217317000031471,0.0906689986586571,0.23071700334549,0.0914909988641739,0.236794993281364,0.0861909985542297,0.216719001531601,0.0960469990968704,0.235805004835129,0.0947730019688606,0.23071700334549,0.0914909988641739,0.217317000031471,0.0906689986586571,0.250912994146347,0.0898400023579597,0.236794993281364,0.0861909985542297,0.23071700334549,0.0914909988641739,0.235805004835129,0.0947730019688606,0.329970002174377,0.200247004628181,0.348818004131317,0.186230003833771,0.342330008745193,0.173954993486404,0.31988999247551,0.180653005838394,0.340721994638443,0.160202994942665,0.316917985677719,0.158653005957603,0.31988999247551,0.180653005838394,0.342330008745193,0.173954993486404,0.343768000602722,0.146629005670547,0.321386992931366,0.136978998780251,0.316917985677719,0.158653005957603,0.340721994638443,0.160202994942665,0.388036012649536,0.225401997566223,0.385812014341354,0.201652005314827,0.371937990188599,0.200942993164063,0.366032004356384,0.223983004689217,0.366032004356384,0.223983004689217,0.371937990188599,0.200942993164063,0.359062999486923,0.195676997303963,0.345802009105682,0.215377002954483,0.42705300450325,0.205878004431725,0.410149991512299,0.189046993851662,0.399053007364273,0.197427004575729,0.409191012382507,0.218970000743866,0.359062999486923,0.195676997303963,0.364271998405457,0.187781006097794,0.356386005878448,0.180592998862267,0.348818004131317,0.186230003833771,0.364271998405457,0.187781006097794,0.368912994861603,0.180666998028755,0.363211005926132,0.175503000617027,0.356386005878448,0.180592998862267,0.356386005878448,0.180592998862267,0.363211005926132,0.175503000617027,0.359593003988266,0.168749004602432,0.351393014192581,0.171228006482124,0.348818004131317,0.186230003833771,0.356386005878448,0.180592998862267,0.351393014192581,0.171228006482124,0.342330008745193,0.173954993486404,0.359593003988266,0.168749004602432,0.358698010444641,0.161164000630379,0.350196003913879,0.160732001066208,0.351393014192581,0.171228006482124,0.358698010444641,0.161164000630379,0.360365003347397, +0.153666004538536,0.352548986673355,0.150364995002747,0.350196003913879,0.160732001066208,0.350196003913879,0.160732001066208,0.352548986673355,0.150364995002747,0.343768000602722,0.146629005670547,0.340721994638443,0.160202994942665,0.351393014192581,0.171228006482124,0.350196003913879,0.160732001066208,0.340721994638443,0.160202994942665,0.342330008745193,0.173954993486404,0.370370000600815,0.142388999462128,0.366443991661072,0.134786993265152,0.358206003904343,0.14138500392437,0.364434987306595,0.147171005606651,0.366443991661072,0.134786993265152,0.362127989530563,0.126294001936913,0.351240992546082,0.134890004992485,0.358206003904343,0.14138500392437,0.358206003904343,0.14138500392437,0.351240992546082,0.134890004992485,0.343768000602722,0.146629005670547,0.352548986673355,0.150364995002747,0.364434987306595,0.147171005606651,0.358206003904343,0.14138500392437,0.352548986673355,0.150364995002747,0.360365003347397,0.153666004538536,0.385812014341354,0.201652005314827,0.38476100564003,0.192217007279396,0.374148011207581,0.19174599647522,0.371937990188599,0.200942993164063,0.38476100564003,0.192217007279396,0.383733987808228,0.18375800549984,0.376060992479324,0.183478996157646,0.374148011207581,0.19174599647522,0.374148011207581,0.19174599647522,0.376060992479324,0.183478996157646,0.368912994861603,0.180666998028755,0.364271998405457,0.187781006097794,0.371937990188599,0.200942993164063,0.374148011207581,0.19174599647522,0.364271998405457,0.187781006097794,0.359062999486923,0.195676997303963,0.409191012382507,0.218970000743866,0.399053007364273,0.197427004575729,0.385812014341354,0.201652005314827,0.388036012649536,0.225401997566223,0.444471001625061,0.165763005614281,0.420720994472504,0.163723006844521,0.417593985795975,0.177289992570877,0.439179986715317,0.187314003705978,0.410149991512299,0.189046993851662,0.403293013572693,0.182466000318527,0.394858002662659,0.188923001289368,0.399053007364273,0.197427004575729,0.403293013572693,0.182466000318527,0.397074997425079,0.176620006561279,0.391012012958527,0.181325003504753, +0.394858002662659,0.188923001289368,0.394858002662659,0.188923001289368,0.391012012958527,0.181325003504753,0.383733987808228,0.18375800549984,0.38476100564003,0.192217007279396,0.399053007364273,0.197427004575729,0.394858002662659,0.188923001289368,0.38476100564003,0.192217007279396,0.385812014341354,0.201652005314827,0.439179986715317,0.187314003705978,0.417593985795975,0.177289992570877,0.410149991512299,0.189046993851662,0.42705300450325,0.205878004431725,0.431993991136551,0.123769000172615,0.41253200173378,0.137494996190071,0.418866991996765,0.149912998080254,0.441823989152908,0.143708005547523,0.420720994472504,0.163723006844521,0.411247998476028,0.163078993558884,0.408923000097275,0.173452004790306,0.417593985795975,0.177289992570877,0.411247998476028,0.163078993558884,0.402734994888306,0.162587001919746,0.401100009679794,0.170083999633789,0.408923000097275,0.173452004790306,0.408923000097275,0.173452004790306,0.401100009679794,0.170083999633789,0.397074997425079,0.176620006561279,0.403293013572693,0.182466000318527,0.417593985795975,0.177289992570877,0.408923000097275,0.173452004790306,0.403293013572693,0.182466000318527,0.410149991512299,0.189046993851662,0.441823989152908,0.143708005547523,0.418866991996765,0.149912998080254,0.420720994472504,0.163723006844521,0.444471001625061,0.165763005614281,0.395321011543274,0.0996380001306534,0.389366000890732,0.122680000960827,0.402218014001846,0.128105998039246,0.415735989809036,0.108569003641605,0.41253200173378,0.137494996190071,0.404882997274399,0.143103003501892,0.409770011901855,0.152548000216484,0.418866991996765,0.149912998080254,0.404882997274399,0.143103003501892,0.398065000772476,0.148209005594254,0.401625007390976,0.154997006058693,0.409770011901855,0.152548000216484,0.409770011901855,0.152548000216484,0.401625007390976,0.154997006058693,0.402734994888306,0.162587001919746,0.411247998476028,0.163078993558884,0.418866991996765,0.149912998080254,0.409770011901855,0.152548000216484,0.411247998476028,0.163078993558884,0.420720994472504,0.163723006844521,0.415735989809036, +0.108569003641605,0.402218014001846,0.128105998039246,0.41253200173378,0.137494996190071,0.431993991136551,0.123769000172615,0.35155001282692,0.104855999350548,0.362127989530563,0.126294001936913,0.37542000412941,0.122149996459484,0.373017996549606,0.0985070019960403,0.389366000890732,0.122680000960827,0.387163996696472,0.131910994648933,0.396979004144669,0.135989993810654,0.402218014001846,0.128105998039246,0.387163996696472,0.131910994648933,0.385271996259689,0.140224993228912,0.392349004745483,0.143119007349014,0.396979004144669,0.135989993810654,0.396979004144669,0.135989993810654,0.392349004745483,0.143119007349014,0.398065000772476,0.148209005594254,0.404882997274399,0.143103003501892,0.402218014001846,0.128105998039246,0.396979004144669,0.135989993810654,0.404882997274399,0.143103003501892,0.41253200173378,0.137494996190071,0.373017996549606,0.0985070019960403,0.37542000412941,0.122149996459484,0.389366000890732,0.122680000960827,0.395321011543274,0.0996380001306534,0.343768000602722,0.146629005670547,0.351240992546082,0.134890004992485,0.333635002374649,0.118363000452518,0.321386992931366,0.136978998780251,0.362127989530563,0.126294001936913,0.366443991661072,0.134786993265152,0.376540988683701,0.131568998098373,0.37542000412941,0.122149996459484,0.366443991661072,0.134786993265152,0.370370000600815,0.142388999462128,0.377629995346069,0.14002799987793,0.376540988683701,0.131568998098373,0.376540988683701,0.131568998098373,0.377629995346069,0.14002799987793,0.385271996259689,0.140224993228912,0.387163996696472,0.131910994648933,0.37542000412941,0.122149996459484,0.376540988683701,0.131568998098373,0.387163996696472,0.131910994648933,0.389366000890732,0.122680000960827,0.333635002374649,0.118363000452518,0.351240992546082,0.134890004992485,0.362127989530563,0.126294001936913,0.35155001282692,0.104855999350548,0.0375740006566048,0.0465169996023178,0.0384860001504421,0.0307630002498627,0.0311200004070997,0.0310779996216297,0.030120000243187,0.0490269996225834,0.914437890052795,0.854288160800934,0.90512478351593, +0.854463398456573,0.904423654079437,0.86383855342865,0.917202353477478,0.860287427902222,0.90512478351593,0.854463398456573,0.893132388591766,0.853349924087524,0.891165256500244,0.863376975059509,0.904423654079437,0.86383855342865,0.904423654079437,0.86383855342865,0.891165256500244,0.863376975059509,0.889561176300049,0.871627748012543,0.905422985553741,0.872160971164703,0.917202353477478,0.860287427902222,0.904423654079437,0.86383855342865,0.905422985553741,0.872160971164703,0.920710265636444,0.867899477481842,0.943782031536102,0.846642255783081,0.936468362808228,0.8425013422966,0.928204596042633,0.852880477905273,0.933881878852844,0.859047055244446,0.936468362808228,0.8425013422966,0.927567422389984,0.837482452392578,0.920621573925018,0.8473219871521,0.928204596042633,0.852880477905273,0.928204596042633,0.852880477905273,0.920621573925018,0.8473219871521,0.914437890052795,0.854288160800934,0.917202353477478,0.860287427902222,0.933881878852844,0.859047055244446,0.928204596042633,0.852880477905273,0.917202353477478,0.860287427902222,0.920710265636444,0.867899477481842,0.893132388591766,0.853349924087524,0.881627380847931,0.849784791469574,0.878725647926331,0.85874879360199,0.891165256500244,0.863376975059509,0.881627380847931,0.849784791469574,0.873226046562195,0.846082210540771,0.868564665317535,0.850613534450531,0.878725647926331,0.85874879360199,0.878725647926331,0.85874879360199,0.868564665317535,0.850613534450531,0.862741053104401,0.856394708156586,0.874666571617126,0.866101086139679,0.891165256500244,0.863376975059509,0.878725647926331,0.85874879360199,0.874666571617126,0.866101086139679,0.889561176300049,0.871627748012543,0.949988126754761,0.815846085548401,0.941629230976105,0.816772758960724,0.941031455993652,0.830037713050842,0.949258148670197,0.831728875637054,0.941629230976105,0.816772758960724,0.935055792331696,0.81751412153244,0.932332217693329,0.826419234275818,0.941031455993652,0.830037713050842,0.941031455993652,0.830037713050842,0.932332217693329,0.826419234275818,0.927567422389984,0.837482452392578, +0.936468362808228,0.8425013422966,0.949258148670197,0.831728875637054,0.941031455993652,0.830037713050842,0.936468362808228,0.8425013422966,0.943782031536102,0.846642255783081,0.873226046562195,0.846082210540771,0.870338380336761,0.83728289604187,0.862142503261566,0.839636564254761,0.868564665317535,0.850613534450531,0.870338380336761,0.83728289604187,0.86787873506546,0.825597703456879,0.859276056289673,0.827122628688812,0.862142503261566,0.839636564254761,0.862142503261566,0.839636564254761,0.859276056289673,0.827122628688812,0.852992534637451,0.82854437828064,0.85578727722168,0.843324244022369,0.868564665317535,0.850613534450531,0.862142503261566,0.839636564254761,0.85578727722168,0.843324244022369,0.862741053104401,0.856394708156586,0.914437890052795,0.854288160800934,0.920621573925018,0.8473219871521,0.909228026866913,0.84298175573349,0.90512478351593,0.854463398456573,0.920621573925018,0.8473219871521,0.927567422389984,0.837482452392578,0.915494978427887,0.830706894397736,0.909228026866913,0.84298175573349,0.909228026866913,0.84298175573349,0.915494978427887,0.830706894397736,0.899422645568848,0.821703910827637,0.895824730396271,0.839770376682281,0.90512478351593,0.854463398456573,0.909228026866913,0.84298175573349,0.895824730396271,0.839770376682281,0.893132388591766,0.853349924087524,0.899422645568848,0.821703910827637,0.881118893623352,0.823865413665771,0.882213294506073,0.837599277496338,0.895824730396271,0.839770376682281,0.881118893623352,0.823865413665771,0.86787873506546,0.825597703456879,0.870338380336761,0.83728289604187,0.882213294506073,0.837599277496338,0.882213294506073,0.837599277496338,0.870338380336761,0.83728289604187,0.873226046562195,0.846082210540771,0.881627380847931,0.849784791469574,0.895824730396271,0.839770376682281,0.882213294506073,0.837599277496338,0.881627380847931,0.849784791469574,0.893132388591766,0.853349924087524,0.86787873506546,0.825597703456879,0.867699682712555,0.813683271408081,0.859780550003052,0.814381301403046,0.859276056289673,0.827122628688812,0.867699682712555,0.813683271408081, +0.868844091892242,0.804816842079163,0.863986372947693,0.802394986152649,0.859780550003052,0.814381301403046,0.859780550003052,0.814381301403046,0.863986372947693,0.802394986152649,0.8583003282547,0.799753367900848,0.85354346036911,0.813713550567627,0.859276056289673,0.827122628688812,0.859780550003052,0.814381301403046,0.85354346036911,0.813713550567627,0.852992534637451,0.82854437828064,0.935055792331696,0.81751412153244,0.930343270301819,0.809459984302521,0.922687530517578,0.818948924541473,0.932332217693329,0.826419234275818,0.930343270301819,0.809459984302521,0.923141062259674,0.79980206489563,0.912958562374115,0.809194445610046,0.922687530517578,0.818948924541473,0.922687530517578,0.818948924541473,0.912958562374115,0.809194445610046,0.899422645568848,0.821703910827637,0.915494978427887,0.830706894397736,0.932332217693329,0.826419234275818,0.922687530517578,0.818948924541473,0.915494978427887,0.830706894397736,0.927567422389984,0.837482452392578,0.93689900636673,0.787237703800201,0.930680871009827,0.792897284030914,0.93799889087677,0.803992807865143,0.945653438568115,0.800535976886749,0.930680871009827,0.792897284030914,0.923141062259674,0.79980206489563,0.930343270301819,0.809459984302521,0.93799889087677,0.803992807865143,0.93799889087677,0.803992807865143,0.930343270301819,0.809459984302521,0.935055792331696,0.81751412153244,0.941629230976105,0.816772758960724,0.945653438568115,0.800535976886749,0.93799889087677,0.803992807865143,0.941629230976105,0.816772758960724,0.949988126754761,0.815846085548401,0.899422645568848,0.821703910827637,0.891715347766876,0.804978132247925,0.878979682922363,0.81025642156601,0.881118893623352,0.823865413665771,0.891715347766876,0.804978132247925,0.886292517185211,0.792754352092743,0.875958383083344,0.798956453800201,0.878979682922363,0.81025642156601,0.878979682922363,0.81025642156601,0.875958383083344,0.798956453800201,0.868844091892242,0.804816842079163,0.867699682712555,0.813683271408081,0.881118893623352,0.823865413665771,0.878979682922363,0.81025642156601,0.867699682712555, +0.813683271408081,0.86787873506546,0.825597703456879,0.868844091892242,0.804816842079163,0.875958383083344,0.798956453800201,0.872220873832703,0.792148768901825,0.863986372947693,0.802394986152649,0.875958383083344,0.798956453800201,0.886292517185211,0.792754352092743,0.883121848106384,0.784510552883148,0.872220873832703,0.792148768901825,0.872220873832703,0.792148768901825,0.883121848106384,0.784510552883148,0.881077766418457,0.778256118297577,0.868124127388,0.787588596343994,0.863986372947693,0.802394986152649,0.872220873832703,0.792148768901825,0.868124127388,0.787588596343994,0.8583003282547,0.799753367900848,0.909879207611084,0.77217710018158,0.907980144023895,0.780218064785004,0.920219480991364,0.784687221050262,0.924372971057892,0.777388751506805,0.907980144023895,0.780218064785004,0.906547248363495,0.786596715450287,0.914089381694794,0.791846096515656,0.920219480991364,0.784687221050262,0.920219480991364,0.784687221050262,0.914089381694794,0.791846096515656,0.923141062259674,0.79980206489563,0.930680871009827,0.792897284030914,0.924372971057892,0.777388751506805,0.920219480991364,0.784687221050262,0.930680871009827,0.792897284030914,0.93689900636673,0.787237703800201,0.906547248363495,0.786596715450287,0.897550284862518,0.788717985153198,0.904003262519836,0.798725724220276,0.914089381694794,0.791846096515656,0.897550284862518,0.788717985153198,0.886292517185211,0.792754352092743,0.891715347766876,0.804978132247925,0.904003262519836,0.798725724220276,0.904003262519836,0.798725724220276,0.891715347766876,0.804978132247925,0.899422645568848,0.821703910827637,0.912958562374115,0.809194445610046,0.914089381694794,0.791846096515656,0.904003262519836,0.798725724220276,0.912958562374115,0.809194445610046,0.923141062259674,0.79980206489563,0.906547248363495,0.786596715450287,0.907980144023895,0.780218064785004,0.895328283309937,0.780346393585205,0.897550284862518,0.788717985153198,0.907980144023895,0.780218064785004,0.909879207611084,0.77217710018158,0.895221292972565,0.772792935371399,0.895328283309937,0.780346393585205, +0.895328283309937,0.780346393585205,0.895221292972565,0.772792935371399,0.881077766418457,0.778256118297577,0.883121848106384,0.784510552883148,0.897550284862518,0.788717985153198,0.895328283309937,0.780346393585205,0.883121848106384,0.784510552883148,0.886292517185211,0.792754352092743,0.865230023860931,0.89842700958252,0.872783005237579,0.896538972854614,0.870020985603333,0.890870988368988,0.863754987716675,0.894842982292175,0.85452401638031,0.881094992160797,0.854075014591217,0.889258980751038,0.857887983322144,0.890052020549774,0.86045902967453,0.882722020149231,0.86045902967453,0.882722020149231,0.857887983322144,0.890052020549774,0.861240029335022,0.891915023326874,0.865773022174835,0.886182010173798,0.865462005138397,0.902254998683929,0.87364000082016,0.902935981750488,0.872783005237579,0.896538972854614,0.865230023860931,0.89842700958252,0.86455100774765,0.905992984771729,0.872413992881775,0.909223973751068,0.87364000082016,0.902935981750488,0.865462005138397,0.902254998683929,0.848411977291107,0.881909012794495,0.850179970264435,0.889544010162354,0.854075014591217,0.889258980751038,0.85452401638031,0.881094992160797,0.842603981494904,0.884617984294891,0.84662002325058,0.890945971012115,0.850179970264435,0.889544010162354,0.848411977291107,0.881909012794495,0.859759986400604,0.911893010139465,0.863889992237091,0.918522000312805,0.868925988674164,0.914566993713379,0.862595021724701,0.909304022789001,0.862595021724701,0.909304022789001,0.868925988674164,0.914566993713379,0.872413992881775,0.909223973751068,0.86455100774765,0.905992984771729,0.83406001329422,0.893894016742706,0.8418989777565,0.896833002567291,0.843815982341766,0.893501996994019,0.837577998638153,0.888674974441528,0.837577998638153,0.888674974441528,0.843815982341766,0.893501996994019,0.84662002325058,0.890945971012115,0.842603981494904,0.884617984294891,0.852344989776611,0.913856983184814,0.851814985275269,0.92103099822998,0.858021020889282,0.920647978782654,0.856211006641388,0.913461029529572,0.856211006641388,0.913461029529572,0.858021020889282, +0.920647978782654,0.863889992237091,0.918522000312805,0.859759986400604,0.911893010139465,0.832776010036469,0.900090992450714,0.841000974178314,0.900556981563568,0.8418989777565,0.896833002567291,0.83406001329422,0.893894016742706,0.833549976348877,0.906463980674744,0.841234982013702,0.904353976249695,0.841000974178314,0.900556981563568,0.832776010036469,0.900090992450714,0.848559975624084,0.912926971912384,0.845770001411438,0.91975599527359,0.851814985275269,0.92103099822998,0.852344989776611,0.913856983184814,0.845225989818573,0.910874009132385,0.840395987033844,0.916818976402283,0.845770001411438,0.91975599527359,0.848559975624084,0.912926971912384,0.83620697259903,0.912213981151581,0.842714011669159,0.907904982566833,0.841234982013702,0.904353976249695,0.833549976348877,0.906463980674744,0.845225989818573,0.910874009132385,0.842714011669159,0.907904982566833,0.83620697259903,0.912213981151581,0.840395987033844,0.916818976402283,0.567321598529816,0.356954008340836,0.561398863792419,0.375491201877594,0.557934939861298,0.373697370290756,0.5643669962883,0.35373067855835,0.5643669962883,0.35373067855835,0.557934939861298,0.373697370290756,0.552321135997772,0.371177792549133,0.560405611991882,0.351062685251236,0.541803300380707,0.342119067907333,0.534683346748352,0.362060397863388,0.526232481002808,0.357259720563889,0.533316135406494,0.338979691267014,0.549767971038818,0.345259964466095,0.540929853916168,0.365693628787994,0.534683346748352,0.362060397863388,0.541803300380707,0.342119067907333,0.949551999568939,0.131741002202034,0.951647996902466,0.155090004205704,0.959007441997528,0.15350840985775,0.960886716842651,0.13143926858902,0.561398863792419,0.375491201877594,0.567321598529816,0.356954008340836,0.569146931171417,0.36011216044426,0.563929259777069,0.37631818652153,0.515211760997772,0.350949972867966,0.523539364337921,0.33751380443573,0.527295291423798,0.337572455406189,0.518926620483398,0.352869480848312,0.540929853916168,0.365693628787994,0.537011086940765,0.373211532831192,0.530041694641113,0.369170516729355, +0.534683346748352,0.362060397863388,0.534683346748352,0.362060397863388,0.530041694641113,0.369170516729355,0.52200573682785,0.364875465631485,0.526232481002808,0.357259720563889,0.533316135406494,0.338979691267014,0.526232481002808,0.357259720563889,0.518926620483398,0.352869480848312,0.527295291423798,0.337572455406189,0.555705964565277,0.348205715417862,0.546518683433533,0.368551820516586,0.540929853916168,0.365693628787994,0.549767971038818,0.345259964466095,0.552321135997772,0.371177792549133,0.549462676048279,0.378855049610138,0.543164551258087,0.376329779624939,0.546518683433533,0.368551820516586,0.546518683433533,0.368551820516586,0.543164551258087,0.376329779624939,0.537011086940765,0.373211532831192,0.540929853916168,0.365693628787994,0.54102224111557,0.395800203084946,0.534508764743805,0.392738372087479,0.5391486287117,0.383714318275452,0.545622825622559,0.386489421129227,0.534508764743805,0.392738372087479,0.529206573963165,0.390233010053635,0.533350646495819,0.381053507328033,0.5391486287117,0.383714318275452,0.5391486287117,0.383714318275452,0.533350646495819,0.381053507328033,0.537011086940765,0.373211532831192,0.543164551258087,0.376329779624939,0.545622825622559,0.386489421129227,0.5391486287117,0.383714318275452,0.543164551258087,0.376329779624939,0.549462676048279,0.378855049610138,0.529206573963165,0.390233010053635,0.522957265377045,0.387314051389694,0.52712619304657,0.377748996019363,0.533350646495819,0.381053507328033,0.522957265377045,0.387314051389694,0.515003442764282,0.383554250001907,0.518555641174316,0.373380571603775,0.52712619304657,0.377748996019363,0.52712619304657,0.377748996019363,0.518555641174316,0.373380571603775,0.52200573682785,0.364875465631485,0.530041694641113,0.369170516729355,0.533350646495819,0.381053507328033,0.52712619304657,0.377748996019363,0.530041694641113,0.369170516729355,0.537011086940765,0.373211532831192,0.529206573963165,0.390233010053635,0.525236487388611,0.399618685245514,0.518907248973846,0.396548092365265,0.522957265377045,0.387314051389694,0.518907248973846, +0.396548092365265,0.513452768325806,0.41180419921875,0.50864177942276,0.408176690340042,0.51096910238266,0.393089681863785,0.5368971824646,0.40577620267868,0.529607057571411,0.419388592243195,0.523794114589691,0.417526006698608,0.530538082122803,0.40233188867569,0.522957265377045,0.387314051389694,0.518907248973846,0.396548092365265,0.51096910238266,0.393089681863785,0.515003442764282,0.383554250001907,0.54102224111557,0.395800203084946,0.5368971824646,0.40577620267868,0.530538082122803,0.40233188867569,0.534508764743805,0.392738372087479,0.530538082122803,0.40233188867569,0.523794114589691,0.417526006698608,0.518333554267883,0.414994269609451,0.525236487388611,0.399618685245514,0.540425181388855,0.421044528484344,0.535365343093872,0.420768767595291,0.543425023555756,0.409699290990829,0.547450542449951,0.412440210580826,0.534508764743805,0.392738372087479,0.530538082122803,0.40233188867569,0.525236487388611,0.399618685245514,0.529206573963165,0.390233010053635,0.504413366317749,0.390891969203949,0.503955781459808,0.404721915721893,0.500401616096497,0.401286602020264,0.500757217407227,0.390151858329773,0.511898040771484,0.35930123925209,0.50990104675293,0.358508974313736,0.513452291488647,0.349871456623077,0.515211760997772,0.350949972867966,0.515211760997772,0.350949972867966,0.513452291488647,0.349871456623077,0.520261645317078,0.337980717420578,0.523539364337921,0.33751380443573,0.754886984825134,0.150260999798775,0.768904983997345,0.152574002742767,0.760842978954315,0.131660997867584,0.746704995632172,0.131643995642662,0.768904983997345,0.152574002742767,0.785776972770691,0.15463599562645,0.778553009033203,0.131573006510735,0.760842978954315,0.131660997867584,0.785776972770691,0.15463599562645,0.802537977695465,0.155807003378868,0.795982003211975,0.131466999650002,0.778553009033203,0.131573006510735,0.802537977695465,0.155807003378868,0.816586017608643,0.156571999192238,0.810770988464355,0.131413996219635,0.795982003211975,0.131466999650002,0.82532000541687,0.157416000962257,0.830995976924896,0.15828700363636,0.827507972717285, +0.131521999835968,0.82056200504303,0.131482005119324,0.816586017608643,0.156571999192238,0.82532000541687,0.157416000962257,0.82056200504303,0.131482005119324,0.810770988464355,0.131413996219635,0.835870027542114,0.15913699567318,0.84102600812912,0.159967005252838,0.840407013893127,0.131255999207497,0.833763003349304,0.131381005048752,0.830995976924896,0.15828700363636,0.835870027542114,0.15913699567318,0.833763003349304,0.131381005048752,0.827507972717285,0.131521999835968,0.847545027732849,0.160782992839813,0.85452002286911,0.161476999521255,0.857502996921539,0.131466001272202,0.848518013954163,0.131344005465508,0.84102600812912,0.159967005252838,0.847545027732849,0.160782992839813,0.848518013954163,0.131344005465508,0.840407013893127,0.131255999207497,0.85452002286911,0.161476999521255,0.861043989658356,0.161945000290871,0.866771996021271,0.131441995501518,0.857502996921539,0.131466001272202,0.861043989658356,0.161945000290871,0.866896986961365,0.162202000617981,0.875232994556427,0.131396993994713,0.866771996021271,0.131441995501518,0.866896986961365,0.162202000617981,0.871856987476349,0.162264004349709,0.881790995597839,0.131452992558479,0.875232994556427,0.131396993994713,0.871856987476349,0.162264004349709,0.876631021499634,0.162248998880386,0.887754023075104,0.131561994552612,0.881790995597839,0.131452992558479,0.881923973560333,0.162269994616508,0.890681982040405,0.161896005272865,0.90327000617981,0.131790995597839,0.894428014755249,0.131676003336906,0.876631021499634,0.162248998880386,0.881923973560333,0.162269994616508,0.894428014755249,0.131676003336906,0.887754023075104,0.131561994552612,0.905852019786835,0.160695001482964,0.923451006412506,0.158940002322197,0.928960978984833,0.131953001022339,0.91574102640152,0.131901994347572,0.890681982040405,0.161896005272865,0.905852019786835,0.160695001482964,0.91574102640152,0.131901994347572,0.90327000617981,0.131790995597839,0.939496994018555,0.156905993819237,0.951647996902466,0.155090004205704,0.949551999568939,0.131741002202034,0.940051019191742,0.131890997290611, +0.923451006412506,0.158940002322197,0.939496994018555,0.156905993819237,0.940051019191742,0.131890997290611,0.928960978984833,0.131953001022339,0.52200573682785,0.364875465631485,0.515443027019501,0.361167252063751,0.518926620483398,0.352869480848312,0.526232481002808,0.357259720563889,0.742304444313049,0.146404653787613,0.754886984825134,0.150260999798775,0.746704995632172,0.131643995642662,0.718695998191833,0.128970995545387,0.518926620483398,0.352869480848312,0.515443027019501,0.361167252063751,0.511898040771484,0.35930123925209,0.515211760997772,0.350949972867966,0.555634737014771,0.381143510341644,0.557934939861298,0.373697370290756,0.561398863792419,0.375491201877594,0.559633195400238,0.382550209760666,0.52200573682785,0.364875465631485,0.518555641174316,0.373380571603775,0.511388123035431,0.370041817426682,0.515443027019501,0.361167252063751,0.518555641174316,0.373380571603775,0.515003442764282,0.383554250001907,0.508204162120819,0.380640506744385,0.511388123035431,0.370041817426682,0.511388123035431,0.370041817426682,0.508204162120819,0.380640506744385,0.504451632499695,0.379326909780502,0.507780134677887,0.368523925542831,0.515443027019501,0.361167252063751,0.511388123035431,0.370041817426682,0.507780134677887,0.368523925542831,0.511898040771484,0.35930123925209,0.552321135997772,0.371177792549133,0.557934939861298,0.373697370290756,0.555634737014771,0.381143510341644,0.549462676048279,0.378855049610138,0.559633195400238,0.382550209760666,0.55651068687439,0.391067445278168,0.552171766757965,0.389250487089157,0.555634737014771,0.381143510341644,0.55651068687439,0.391067445278168,0.552999079227448,0.402110248804092,0.548327147960663,0.39951565861702,0.552171766757965,0.389250487089157,0.552171766757965,0.389250487089157,0.548327147960663,0.39951565861702,0.54102224111557,0.395800203084946,0.545622825622559,0.386489421129227,0.555634737014771,0.381143510341644,0.552171766757965,0.389250487089157,0.545622825622559,0.386489421129227,0.549462676048279,0.378855049610138,0.552999079227448,0.402110248804092,0.547450542449951, +0.412440210580826,0.543425023555756,0.409699290990829,0.548327147960663,0.39951565861702,0.529607057571411,0.419388592243195,0.5368971824646,0.40577620267868,0.543425023555756,0.409699290990829,0.535365343093872,0.420768767595291,0.504413366317749,0.390891969203949,0.51096910238266,0.393089681863785,0.50864177942276,0.408176690340042,0.503955781459808,0.404721915721893,0.548327147960663,0.39951565861702,0.543425023555756,0.409699290990829,0.5368971824646,0.40577620267868,0.54102224111557,0.395800203084946,0.504413366317749,0.390891969203949,0.500757217407227,0.390151858329773,0.504451632499695,0.379326909780502,0.508204162120819,0.380640506744385,0.51096910238266,0.393089681863785,0.504413366317749,0.390891969203949,0.508204162120819,0.380640506744385,0.515003442764282,0.383554250001907,0.50864177942276,0.408176690340042,0.507477343082428,0.414525300264359,0.503858149051666,0.410514712333679,0.503955781459808,0.404721915721893,0.507477343082428,0.414525300264359,0.50635814666748,0.417604446411133,0.503709971904755,0.414006561040878,0.503858149051666,0.410514712333679,0.503858149051666,0.410514712333679,0.503709971904755,0.414006561040878,0.502124726772308,0.411038756370544,0.50113582611084,0.407614350318909,0.503955781459808,0.404721915721893,0.503858149051666,0.410514712333679,0.50113582611084,0.407614350318909,0.500401616096497,0.401286602020264,0.518333554267883,0.414994269609451,0.51587837934494,0.421406865119934,0.511396288871765,0.418323457241058,0.513452768325806,0.41180419921875,0.51587837934494,0.421406865119934,0.514544188976288,0.424276471138,0.510060906410217,0.421286344528198,0.511396288871765,0.418323457241058,0.511396288871765,0.418323457241058,0.510060906410217,0.421286344528198,0.50635814666748,0.417604446411133,0.507477343082428,0.414525300264359,0.513452768325806,0.41180419921875,0.511396288871765,0.418323457241058,0.507477343082428,0.414525300264359,0.50864177942276,0.408176690340042,0.518333554267883,0.414994269609451,0.523794114589691,0.417526006698608,0.521055400371552,0.423261135816574,0.51587837934494, +0.421406865119934,0.523794114589691,0.417526006698608,0.529607057571411,0.419388592243195,0.526531577110291,0.424209713935852,0.521055400371552,0.423261135816574,0.521055400371552,0.423261135816574,0.526531577110291,0.424209713935852,0.525120913982391,0.426671415567398,0.519751965999603,0.425954222679138,0.51587837934494,0.421406865119934,0.521055400371552,0.423261135816574,0.519751965999603,0.425954222679138,0.514544188976288,0.424276471138,0.529607057571411,0.419388592243195,0.535365343093872,0.420768767595291,0.531808197498322,0.424441576004028,0.526531577110291,0.424209713935852,0.535365343093872,0.420768767595291,0.540425181388855,0.421044528484344,0.535816729068756,0.424560517072678,0.531808197498322,0.424441576004028,0.531808197498322,0.424441576004028,0.535816729068756,0.424560517072678,0.532931566238403,0.425845295190811,0.529720723628998,0.426470398902893,0.526531577110291,0.424209713935852,0.531808197498322,0.424441576004028,0.529720723628998,0.426470398902893,0.525120913982391,0.426671415567398,0.507780134677887,0.368523925542831,0.505716979503632,0.367893546819687,0.50990104675293,0.358508974313736,0.511898040771484,0.35930123925209,0.500757217407227,0.390151858329773,0.498571515083313,0.389754861593246,0.502212345600128,0.378625243902206,0.504451632499695,0.379326909780502,0.507780134677887,0.368523925542831,0.504451632499695,0.379326909780502,0.502212345600128,0.378625243902206,0.505716979503632,0.367893546819687,0.50113582611084,0.407614350318909,0.498978346586227,0.40682452917099,0.498103678226471,0.399985522031784,0.500401616096497,0.401286602020264,0.500757217407227,0.390151858329773,0.500401616096497,0.401286602020264,0.498103678226471,0.399985522031784,0.498571515083313,0.389754861593246,0.503709971904755,0.414006561040878,0.502425491809845,0.415828973054886,0.500655174255371,0.411711275577545,0.502124726772308,0.411038756370544,0.50113582611084,0.407614350318909,0.502124726772308,0.411038756370544,0.500655174255371,0.411711275577545,0.498978346586227,0.40682452917099,0.510060906410217,0.421286344528198, +0.508799910545349,0.423396736383438,0.504946231842041,0.41955229640007,0.50635814666748,0.417604446411133,0.503709971904755,0.414006561040878,0.50635814666748,0.417604446411133,0.504946231842041,0.41955229640007,0.502425491809845,0.415828973054886,0.519751965999603,0.425954222679138,0.5189568400383,0.428077161312103,0.513465225696564,0.426434278488159,0.514544188976288,0.424276471138,0.510060906410217,0.421286344528198,0.514544188976288,0.424276471138,0.513465225696564,0.426434278488159,0.508799910545349,0.423396736383438,0.529720723628998,0.426470398902893,0.529478490352631,0.428354561328888,0.524675846099854,0.428714156150818,0.525120913982391,0.426671415567398,0.519751965999603,0.425954222679138,0.525120913982391,0.426671415567398,0.524675846099854,0.428714156150818,0.5189568400383,0.428077161312103,0.535816729068756,0.424560517072678,0.538067042827606,0.425485402345657,0.533767342567444,0.427193015813828,0.532931566238403,0.425845295190811,0.529720723628998,0.426470398902893,0.532931566238403,0.425845295190811,0.533767342567444,0.427193015813828,0.529478490352631,0.428354561328888,0.547450542449951,0.412440210580826,0.549844026565552,0.413979649543762,0.543265759944916,0.421642392873764,0.540425181388855,0.421044528484344,0.535816729068756,0.424560517072678,0.540425181388855,0.421044528484344,0.543265759944916,0.421642392873764,0.538067042827606,0.425485402345657,0.55651068687439,0.391067445278168,0.559186637401581,0.392299592494965,0.555770397186279,0.403620928525925,0.552999079227448,0.402110248804092,0.547450542449951,0.412440210580826,0.552999079227448,0.402110248804092,0.555770397186279,0.403620928525925,0.549844026565552,0.413979649543762,0.561398863792419,0.375491201877594,0.563929259777069,0.37631818652153,0.562221884727478,0.383571296930313,0.559633195400238,0.382550209760666,0.55651068687439,0.391067445278168,0.559633195400238,0.382550209760666,0.562221884727478,0.383571296930313,0.559186637401581,0.392299592494965,0.948836028575897,0.192094996571541,0.93756502866745,0.19140200316906,0.939445972442627, +0.202509000897408,0.952513992786407,0.202408000826836,0.93756502866745,0.19140200316906,0.926174998283386,0.190631002187729,0.925855994224548,0.202052995562553,0.939445972442627,0.202509000897408,0.939445972442627,0.202509000897408,0.925855994224548,0.202052995562553,0.925677001476288,0.215546995401382,0.94056898355484,0.215735003352165,0.952513992786407,0.202408000826836,0.939445972442627,0.202509000897408,0.94056898355484,0.215735003352165,0.95771598815918,0.215794995427132,0.925677001476288,0.215546995401382,0.925549983978271,0.229488000273705,0.938925981521606,0.229573994874954,0.94056898355484,0.215735003352165,0.925549983978271,0.229488000273705,0.92510598897934,0.243257001042366,0.936278998851776,0.24329200387001,0.938925981521606,0.229573994874954,0.938925981521606,0.229573994874954,0.936278998851776,0.24329200387001,0.948269009590149,0.242768004536629,0.952588975429535,0.229904994368553,0.94056898355484,0.215735003352165,0.938925981521606,0.229573994874954,0.952588975429535,0.229904994368553,0.95771598815918,0.215794995427132,0.925677001476288,0.215546995401382,0.910961985588074,0.216181993484497,0.911880016326904,0.229629993438721,0.925549983978271,0.229488000273705,0.910961985588074,0.216181993484497,0.897266983985901,0.217198997735977,0.89859801530838,0.229762002825737,0.911880016326904,0.229629993438721,0.911880016326904,0.229629993438721,0.89859801530838,0.229762002825737,0.901510000228882,0.241877004504204,0.913482010364532,0.242786005139351,0.925549983978271,0.229488000273705,0.911880016326904,0.229629993438721,0.913482010364532,0.242786005139351,0.92510598897934,0.243257001042366,0.925677001476288,0.215546995401382,0.925855994224548,0.202052995562553,0.91330498456955,0.202972993254662,0.910961985588074,0.216181993484497,0.925855994224548,0.202052995562553,0.926174998283386,0.190631002187729,0.916453003883362,0.191558003425598,0.91330498456955,0.202972993254662,0.91330498456955,0.202972993254662,0.916453003883362,0.191558003425598,0.906445026397705,0.19370000064373,0.901201009750366,0.20473800599575, +0.910961985588074,0.216181993484497,0.91330498456955,0.202972993254662,0.901201009750366,0.20473800599575,0.897266983985901,0.217198997735977,0.980108022689819,0.239545002579689,0.982389986515045,0.239201992750168,0.984737992286682,0.231439992785454,0.978680014610291,0.231075003743172,0.933192014694214,0.271333992481232,0.933304011821747,0.265832990407944,0.922860980033875,0.266014993190765,0.922396004199982,0.272583991289139,0.981683015823364,0.927330017089844,0.985565006732941,0.919973015785217,0.978080987930298,0.915861010551453,0.976170003414154,0.92205399274826,0.960591971874237,0.964078009128571,0.955735981464386,0.96086198091507,0.952409029006958,0.968221008777618,0.957063972949982,0.971893012523651,0.972249984741211,0.736198008060455,0.969554007053375,0.729336977005005,0.965121984481812,0.734206020832062,0.96773099899292,0.741796016693115,0.971110999584198,0.944518983364105,0.976391971111298,0.936085999011993,0.970273017883301,0.932816028594971,0.965537011623383,0.94139301776886,0.948836028575897,0.192094996571541,0.958202004432678,0.190933004021645,0.954043984413147,0.186012998223305,0.946676015853882,0.185356006026268,0.96415501832962,0.188669994473457,0.956140995025635,0.183753997087479,0.954043984413147,0.186012998223305,0.958202004432678,0.190933004021645,0.946779012680054,0.181319996714592,0.946676015853882,0.185356006026268,0.954043984413147,0.186012998223305,0.956140995025635,0.183753997087479,0.948836028575897,0.192094996571541,0.952513992786407,0.202408000826836,0.963495016098022,0.199818998575211,0.958202004432678,0.190933004021645,0.952513992786407,0.202408000826836,0.95771598815918,0.215794995427132,0.969169020652771,0.208998993039131,0.963495016098022,0.199818998575211,0.963495016098022,0.199818998575211,0.969169020652771,0.208998993039131,0.977019011974335,0.206098005175591,0.971283972263336,0.196827992796898,0.958202004432678,0.190933004021645,0.963495016098022,0.199818998575211,0.971283972263336,0.196827992796898,0.96415501832962,0.188669994473457,0.92720901966095,0.178101003170013,0.926723003387451, +0.182906001806259,0.936933994293213,0.183924004435539,0.936900019645691,0.179270997643471,0.926723003387451,0.182906001806259,0.926174998283386,0.190631002187729,0.93756502866745,0.19140200316906,0.936933994293213,0.183924004435539,0.936933994293213,0.183924004435539,0.93756502866745,0.19140200316906,0.948836028575897,0.192094996571541,0.946676015853882,0.185356006026268,0.936900019645691,0.179270997643471,0.936933994293213,0.183924004435539,0.946676015853882,0.185356006026268,0.946779012680054,0.181319996714592,0.980108022689819,0.239545002579689,0.978680014610291,0.231075003743172,0.967122972011566,0.230501994490623,0.962338984012604,0.241561993956566,0.978680014610291,0.231075003743172,0.980732023715973,0.222473993897438,0.971138000488281,0.221076995134354,0.967122972011566,0.230501994490623,0.967122972011566,0.230501994490623,0.971138000488281,0.221076995134354,0.95771598815918,0.215794995427132,0.952588975429535,0.229904994368553,0.962338984012604,0.241561993956566,0.967122972011566,0.230501994490623,0.952588975429535,0.229904994368553,0.948269009590149,0.242768004536629,0.95771598815918,0.215794995427132,0.971138000488281,0.221076995134354,0.974472999572754,0.214805006980896,0.969169020652771,0.208998993039131,0.980732023715973,0.222473993897438,0.980849027633667,0.214350000023842,0.974472999572754,0.214805006980896,0.971138000488281,0.221076995134354,0.977019011974335,0.206098005175591,0.969169020652771,0.208998993039131,0.974472999572754,0.214805006980896,0.980849027633667,0.214350000023842,0.909896016120911,0.179832994937897,0.909042000770569,0.185400992631912,0.917949974536896,0.183488994836807,0.918411016464233,0.178305000066757,0.909042000770569,0.185400992631912,0.906445026397705,0.19370000064373,0.916453003883362,0.191558003425598,0.917949974536896,0.183488994836807,0.917949974536896,0.183488994836807,0.916453003883362,0.191558003425598,0.926174998283386,0.190631002187729,0.926723003387451,0.182906001806259,0.918411016464233,0.178305000066757,0.917949974536896,0.183488994836807,0.926723003387451,0.182906001806259, +0.92720901966095,0.178101003170013,0.948269009590149,0.242768004536629,0.945088982582092,0.254970014095306,0.9566969871521,0.252737998962402,0.962338984012604,0.241561993956566,0.945088982582092,0.254970014095306,0.943228006362915,0.264203011989594,0.952291011810303,0.261469006538391,0.9566969871521,0.252737998962402,0.9566969871521,0.252737998962402,0.952291011810303,0.261469006538391,0.959339022636414,0.257773995399475,0.965978980064392,0.250885993242264,0.962338984012604,0.241561993956566,0.9566969871521,0.252737998962402,0.965978980064392,0.250885993242264,0.980108022689819,0.239545002579689,0.92510598897934,0.243257001042366,0.923974990844727,0.256233006715775,0.934394001960754,0.256159991025925,0.936278998851776,0.24329200387001,0.923974990844727,0.256233006715775,0.922860980033875,0.266014993190765,0.933304011821747,0.265832990407944,0.934394001960754,0.256159991025925,0.934394001960754,0.256159991025925,0.933304011821747,0.265832990407944,0.943228006362915,0.264203011989594,0.945088982582092,0.254970014095306,0.936278998851776,0.24329200387001,0.934394001960754,0.256159991025925,0.945088982582092,0.254970014095306,0.948269009590149,0.242768004536629,0.901510000228882,0.241877004504204,0.902315974235535,0.252992004156113,0.913191974163055,0.255116999149323,0.913482010364532,0.242786005139351,0.902315974235535,0.252992004156113,0.902077972888947,0.261290997266769,0.912239015102386,0.264405012130737,0.913191974163055,0.255116999149323,0.913191974163055,0.255116999149323,0.912239015102386,0.264405012130737,0.922860980033875,0.266014993190765,0.923974990844727,0.256233006715775,0.913482010364532,0.242786005139351,0.913191974163055,0.255116999149323,0.923974990844727,0.256233006715775,0.92510598897934,0.243257001042366,0.901510000228882,0.241877004504204,0.889289975166321,0.240529000759125,0.891617000102997,0.250041991472244,0.902315974235535,0.252992004156113,0.889289975166321,0.240529000759125,0.879730999469757,0.2394759953022,0.883386015892029,0.24770000576973,0.891617000102997,0.250041991472244,0.891617000102997, +0.250041991472244,0.883386015892029,0.24770000576973,0.887116014957428,0.25305500626564,0.893013000488281,0.2569600045681,0.902315974235535,0.252992004156113,0.891617000102997,0.250041991472244,0.893013000488281,0.2569600045681,0.902077972888947,0.261290997266769,0.897266983985901,0.217198997735977,0.885435998439789,0.218158006668091,0.886389970779419,0.229647994041443,0.89859801530838,0.229762002825737,0.885435998439789,0.218158006668091,0.876936018466949,0.218869000673294,0.877314984798431,0.229543998837471,0.886389970779419,0.229647994041443,0.886389970779419,0.229647994041443,0.877314984798431,0.229543998837471,0.879730999469757,0.2394759953022,0.889289975166321,0.240529000759125,0.89859801530838,0.229762002825737,0.886389970779419,0.229647994041443,0.889289975166321,0.240529000759125,0.901510000228882,0.241877004504204,0.897266983985901,0.217198997735977,0.901201009750366,0.20473800599575,0.888952016830444,0.206816002726555,0.885435998439789,0.218158006668091,0.901201009750366,0.20473800599575,0.906445026397705,0.19370000064373,0.894195973873138,0.196571007370949,0.888952016830444,0.206816002726555,0.888952016830444,0.206816002726555,0.894195973873138,0.196571007370949,0.883867979049683,0.198826998472214,0.879391014575958,0.208416000008583,0.885435998439789,0.218158006668091,0.888952016830444,0.206816002726555,0.879391014575958,0.208416000008583,0.876936018466949,0.218869000673294,0.906445026397705,0.19370000064373,0.909042000770569,0.185400992631912,0.898424983024597,0.188369005918503,0.894195973873138,0.196571007370949,0.909042000770569,0.185400992631912,0.909896016120911,0.179832994937897,0.901054978370667,0.182635992765427,0.898424983024597,0.188369005918503,0.898424983024597,0.188369005918503,0.901054978370667,0.182635992765427,0.894481003284454,0.185751006007195,0.889555990695953,0.190742000937462,0.894195973873138,0.196571007370949,0.898424983024597,0.188369005918503,0.889555990695953,0.190742000937462,0.883867979049683,0.198826998472214,0.960591971874237,0.964078009128571,0.964021980762482,0.95687597990036, +0.958966016769409,0.953953981399536,0.955735981464386,0.96086198091507,0.967127978801727,0.722227990627289,0.96483701467514,0.71499502658844,0.960026025772095,0.718180000782013,0.962562024593353,0.726276993751526,0.943243026733398,0.269479006528854,0.943228006362915,0.264203011989594,0.933304011821747,0.265832990407944,0.933192014694214,0.271333992481232,0.912239015102386,0.264405012130737,0.911749005317688,0.269829988479614,0.922396004199982,0.272583991289139,0.922860980033875,0.266014993190765,0.902077972888947,0.261290997266769,0.901636004447937,0.266306012868881,0.911749005317688,0.269829988479614,0.912239015102386,0.264405012130737,0.893013000488281,0.2569600045681,0.892592012882233,0.261245012283325,0.901636004447937,0.266306012868881,0.902077972888947,0.261290997266769,0.962562024593353,0.726276993751526,0.965121984481812,0.734206020832062,0.969554007053375,0.729336977005005,0.967127978801727,0.722227990627289,0.978734016418457,0.750208020210266,0.97528600692749,0.743070006370544,0.97018700838089,0.749040007591248,0.972292006015778,0.755928993225098,0.887116014957428,0.25305500626564,0.884895980358124,0.255048990249634,0.892592012882233,0.261245012283325,0.893013000488281,0.2569600045681,0.883386015892029,0.24770000576973,0.878829002380371,0.248124003410339,0.884895980358124,0.255048990249634,0.887116014957428,0.25305500626564,0.96773099899292,0.741796016693115,0.97018700838089,0.749040007591248,0.97528600692749,0.743070006370544,0.972249984741211,0.736198008060455,0.986522972583771,0.767206013202667,0.9825080037117,0.758092999458313,0.973869979381561,0.763173997402191,0.974747002124786,0.771484971046448,0.879730999469757,0.2394759953022,0.874535024166107,0.239949002861977,0.878829002380371,0.248124003410339,0.883386015892029,0.24770000576973,0.877314984798431,0.229543998837471,0.872157990932465,0.230004996061325,0.874535024166107,0.239949002861977,0.879730999469757,0.2394759953022,0.972292006015778,0.755928993225098,0.973869979381561,0.763173997402191,0.9825080037117,0.758092999458313,0.978734016418457,0.750208020210266, +0.992631018161774,0.786566972732544,0.990118026733398,0.776910006999969,0.97488397359848,0.780372977256775,0.974241971969604,0.789350986480713,0.876936018466949,0.218869000673294,0.871926009654999,0.219200998544693,0.872157990932465,0.230004996061325,0.877314984798431,0.229543998837471,0.879391014575958,0.208416000008583,0.874068975448608,0.208443000912666,0.871926009654999,0.219200998544693,0.876936018466949,0.218869000673294,0.974747002124786,0.771484971046448,0.97488397359848,0.780372977256775,0.990118026733398,0.776910006999969,0.986522972583771,0.767206013202667,0.973020970821381,0.798205018043518,0.971423983573914,0.806720972061157,0.994710028171539,0.805226981639862,0.994136989116669,0.796048998832703,0.883867979049683,0.198826998472214,0.878423988819122,0.198434993624687,0.874068975448608,0.208443000912666,0.879391014575958,0.208416000008583,0.889555990695953,0.190742000937462,0.88483202457428,0.18987600505352,0.878423988819122,0.198434993624687,0.883867979049683,0.198826998472214,0.974241971969604,0.789350986480713,0.973020970821381,0.798205018043518,0.994136989116669,0.796048998832703,0.992631018161774,0.786566972732544,0.994599997997284,0.814451992511749,0.994710028171539,0.805226981639862,0.971423983573914,0.806720972061157,0.969743013381958,0.814809024333954,0.894481003284454,0.185751006007195,0.892554998397827,0.183094993233681,0.88483202457428,0.18987600505352,0.889555990695953,0.190742000937462,0.901054978370667,0.182635992765427,0.900857985019684,0.17841799557209,0.892554998397827,0.183094993233681,0.894481003284454,0.185751006007195,0.969743013381958,0.814809024333954,0.968271970748901,0.822377979755402,0.994054973125458,0.824078023433685,0.994599997997284,0.814451992511749,0.993427991867065,0.833142995834351,0.994054973125458,0.824078023433685,0.968271970748901,0.822377979755402,0.967087984085083,0.82965499162674,0.909896016120911,0.179832994937897,0.909509003162384,0.175499007105827,0.900857985019684,0.17841799557209,0.901054978370667,0.182635992765427,0.918411016464233,0.178305000066757,0.918280005455017, +0.173991993069649,0.909509003162384,0.175499007105827,0.909896016120911,0.179832994937897,0.967087984085083,0.82965499162674,0.966265022754669,0.83686900138855,0.993067979812622,0.840690016746521,0.993427991867065,0.833142995834351,0.992905974388123,0.84750497341156,0.993067979812622,0.840690016746521,0.966265022754669,0.83686900138855,0.966105997562408,0.84417998790741,0.92720901966095,0.178101003170013,0.927296996116638,0.173847004771233,0.918280005455017,0.173991993069649,0.918411016464233,0.178305000066757,0.936900019645691,0.179270997643471,0.936689019203186,0.17501500248909,0.927296996116638,0.173847004771233,0.92720901966095,0.178101003170013,0.992870986461639,0.854376018047333,0.992905974388123,0.84750497341156,0.966105997562408,0.84417998790741,0.966915011405945,0.851746022701263,0.993113994598389,0.869934022426605,0.99294501543045,0.861715018749237,0.96884697675705,0.859586000442505,0.972063004970551,0.867716014385223,0.946779012680054,0.181319996714592,0.946776986122131,0.177491992712021,0.936689019203186,0.17501500248909,0.936900019645691,0.179270997643471,0.956140995025635,0.183753997087479,0.957881987094879,0.181273996829987,0.946776986122131,0.177491992712021,0.946779012680054,0.181319996714592,0.966915011405945,0.851746022701263,0.96884697675705,0.859586000442505,0.99294501543045,0.861715018749237,0.992870986461639,0.854376018047333,0.993004024028778,0.888034999370575,0.993193984031677,0.878789007663727,0.975468993186951,0.876118004322052,0.977976024150848,0.884772002696991,0.96415501832962,0.188669994473457,0.968249976634979,0.186938002705574,0.957881987094879,0.181273996829987,0.956140995025635,0.183753997087479,0.971283972263336,0.196827992796898,0.976123988628387,0.19505999982357,0.968249976634979,0.186938002705574,0.96415501832962,0.188669994473457,0.972063004970551,0.867716014385223,0.975468993186951,0.876118004322052,0.993193984031677,0.878789007663727,0.993113994598389,0.869934022426605,0.979512989521027,0.893371999263763,0.980011999607086,0.901610016822815,0.990710973739624,0.905395984649658, +0.992268025875092,0.89709597826004,0.977019011974335,0.206098005175591,0.981635987758636,0.20448100566864,0.976123988628387,0.19505999982357,0.971283972263336,0.196827992796898,0.980849027633667,0.214350000023842,0.984917998313904,0.214044004678726,0.981635987758636,0.20448100566864,0.977019011974335,0.206098005175591,0.977976024150848,0.884772002696991,0.979512989521027,0.893371999263763,0.992268025875092,0.89709597826004,0.993004024028778,0.888034999370575,0.979519009590149,0.90920102596283,0.988439977169037,0.913001000881195,0.990710973739624,0.905395984649658,0.980011999607086,0.901610016822815,0.980732023715973,0.222473993897438,0.985956013202667,0.223210006952286,0.984917998313904,0.214044004678726,0.980849027633667,0.214350000023842,0.965978980064392,0.250885993242264,0.970629990100861,0.251690000295639,0.98164302110672,0.240638002753258,0.980108022689819,0.239545002579689,0.975609004497528,0.923232018947601,0.970273017883301,0.932816028594971,0.976391971111298,0.936085999011993,0.981683015823364,0.927330017089844,0.964021980762482,0.95687597990036,0.967258989810944,0.950902998447418,0.962000012397766,0.947951972484589,0.958966016769409,0.953953981399536,0.959339022636414,0.257773995399475,0.96041601896286,0.260895997285843,0.970629990100861,0.251690000295639,0.965978980064392,0.250885993242264,0.952291011810303,0.261469006538391,0.951803028583527,0.266413003206253,0.96041601896286,0.260895997285843,0.959339022636414,0.257773995399475,0.965537011623383,0.94139301776886,0.962000012397766,0.947951972484589,0.967258989810944,0.950902998447418,0.971110999584198,0.944518983364105,0.943243026733398,0.269479006528854,0.951803028583527,0.266413003206253,0.952291011810303,0.261469006538391,0.943228006362915,0.264203011989594,0.978680014610291,0.231075003743172,0.984737992286682,0.231439992785454,0.985956013202667,0.223210006952286,0.980732023715973,0.222473993897438,0.82837700843811,0.973748981952667,0.835268020629883,0.968931972980499,0.833582997322083,0.965324997901917,0.825444996356964,0.968007028102875,0.345802009105682, +0.215377002954483,0.359062999486923,0.195676997303963,0.348818004131317,0.186230003833771,0.329970002174377,0.200247004628181,0.525236487388611,0.399618685245514,0.518333554267883,0.414994269609451,0.513452768325806,0.41180419921875,0.518907248973846,0.396548092365265,0.978080987930298,0.915861010551453,0.985565006732941,0.919973015785217,0.988439977169037,0.913001000881195,0.979519009590149,0.90920102596283,0.560405611991882,0.351062685251236,0.552321135997772,0.371177792549133,0.546518683433533,0.368551820516586,0.555705964565277,0.348205715417862 + } + UVIndex: *11977 { + 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,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036, +1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446, +1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856, +1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266, +2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676, +2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,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,2993,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,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,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,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,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,3204,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,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,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,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,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,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,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,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,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,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,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,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,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,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,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,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,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,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,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826, +8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236, +9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646, +9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10047, +10048,10049,10050,10051,10052,10053,10054,10055,10056,10057,10058,10059,10060,10061,10062,10063,10064,10065,10066,10067,10068,10069,10070,10071,10072,10073,10074,10075,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,10086,10087,10088,10089,10090,10091,10092,10093,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126,10127,10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165,10166,10167,10168,10169,10170,10171,10172,10173,10174,10175,10176,10177,10178,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,10190,10191,10192,10193,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,10205,10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217,10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256,10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,10297,10298,10299,10300,10301,10302,10303,10304,10305,10306,10307,10308,10309,10310,10311,10312,10313,10314,10315,10316,10317,10318,10319,10320,10321,10322,10323,10324,10325,10326,10327,10328,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,10370,10371,10372,10373,10374,10375,10376,10377,10378,10379,10380,10381,10382,10383,10384,10385,10386,10387,10388,10389, +10390,10391,10392,10393,10394,10395,10396,10397,10398,10399,10400,10401,10402,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412,10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,10423,10424,10425,10426,10427,10428,10429,10430,10431,10432,10433,10434,10435,10436,10437,10438,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,10450,10451,10452,10453,10454,10455,10456,10457,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,10512,10513,10514,10515,10516,10517,10518,10519,10520,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10536,10537,10538,10539,10540,10541,10542,10543,10544,10545,10546,10547,10548,10549,10550,10551,10552,10553,10554,10555,10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568,10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,10605,10606,10607,10608,10609,10610,10611,10612,10613,10614,10615,10616,10617,10618,10619,10620,10621,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,10646,10647,10648,10649,10650,10651,10652,10653,10654,10655,10656,10657,10658,10659,10660,10661,10662,10663,10664,10665,10666,10667,10668,10669,10670,10671,10672,10673,10674,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694,10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,10707,10708,10709,10710,10711,10712,10713,10714,10715,10716,10717,10718,10719,10720,10721,10722,10723,10724,10725,10726,10727,10728,10729,10730,10731, +10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,10743,10744,10745,10746,10747,10748,10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759,10760,10761,10762,10763,10764,10765,10766,10767,10768,10769,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,10785,10786,10787,10788,10789,10790,10791,10792,10793,10794,10795,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,10810,10811,10812,10813,10814,10815,10816,10817,10818,10819,10820,10821,10822,10823,10824,10825,10826,10827,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10840,10841,10842,10843,10844,10845,10846,10847,10848,10849,10850,10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,10861,10862,10863,10864,10865,10866,10867,10868,10869,10870,10871,10872,10873,10874,10875,10876,10877,10878,10879,10880,10881,10882,10883,10884,10885,10886,10887,10888,10889,10890,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10902,10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967,10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11032,11033,11034,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073, +11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084,11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097,11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110,11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136,11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149,11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188,11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214,11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240,11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266,11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279,11280,11281,11282,11283,11284,11285,11286,11287,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,11300,11301,11302,11303,11304,11305,11306,11307,11308,11309,11310,11311,11312,11313,11314,11315,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,11330,11331,11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344,11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357,11358,11359,11360,11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11379,11380,11381,11382,11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11415, +11416,11417,11418,11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,11431,11432,11433,11434,11435,11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448,11449,11450,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461,11462,11463,11464,11465,11466,11467,11468,11469,11470,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481,11482,11483,11484,11485,11486,11487,11488,11489,11490,11491,11492,11493,11494,11495,11496,11497,11498,11499,11500,11501,11502,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11521,11522,11523,11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11564,11565,11566,11567,11568,11569,11570,11571,11572,11573,11574,11575,11576,11577,11578,11579,11580,11581,11582,11583,11584,11585,11586,11587,11588,11589,11590,11591,11592,11593,11594,11595,11596,11597,11598,11599,11600,11601,11602,11603,11604,11605,11606,11607,11608,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630,11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643,11644,11645,11646,11647,11648,11649,11650,11651,11652,11653,11654,11655,11656,11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669,11670,11671,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11687,11688,11689,11690,11691,11692,11693,11694,11695,11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708,11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,11724,11725,11726,11727,11728,11729,11730,11731,11732,11733,11734,11735,11736,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,11750,11751,11752,11753,11754,11755,11756,11757, +11758,11759,11760,11761,11762,11763,11764,11765,11766,11767,11768,11769,11770,11771,11772,11773,11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,11800,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,11814,11815,11816,11817,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,11831,11832,11833,11834,11835,11836,11837,11838,11839,11840,11841,11842,11843,11844,11845,11846,11847,11848,11849,11850,11851,11852,11853,11854,11855,11856,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976 + } + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: *6076 { + a: 1,1,0,1,0,1,1,0,1,1,1,0,0,1,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,1,1,0,1,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,1,0,1,1,0,1,0,1,0,1,0,0,1,0,1,1,0,1,0,1,0,1,0,1,1,0,1,1,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,0,1,0,1,0,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,0,1,1,0,1,0,1,0,0,1,0,1,0,0,1,1,1,0,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,1,1,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,1,1,0,1,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,1,0,1,0,1,1,1,1,0,1,0,0,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,0,1,0,1,1,1,1,1,1,0,0,1,0,1,0, +1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,0,0,0,1,1,1,0,1,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0,1,1,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,1,0,1,0,1,1,0,1,0,1,0,1,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,0,1,1,1,0,1,0,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,0,1,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,1,0,1,0,1,1,1,0,1,1,0,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,1,1,0,1,0,0,1,0,1,0,0, +1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,1,1,0,0,1,0,1,1,1,0,0,1,0,1,1,1,0,1,0,1,0,0,0,1,1,0,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,0,0,1,0,0,1,1,1,0,0,1,1,1,1,0,0,1,1,1,0,1,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,1,0,1,1,0,1,1,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,1,1,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,0,0,0,1,0,0,1,0,1,1,1,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,0,1,1,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,1,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0, +1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,1,1,0,0,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0, +0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,0,1,0,1,0,0,1,1,0,1,1,0,0,1,1,0,1,1,0,0,0,0,1,1,1,0,1,0,1,0,0,1,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0,1,0,1,1,1,1,0,0,1,1,1,1,1,0,1,0,0,0,0 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: *1 { + a: 0 + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementBinormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTangent" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementSmoothing" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + NodeAttribute: 2285107654816, "NodeAttribute::", "Null" { + TypeFlags: "Null" + } + NodeAttribute: 2285107656048, "NodeAttribute::", "Null" { + TypeFlags: "Null" + } + Model: 2287400062720, "Model::right_oculus_controller_world", "Root" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",1,1,1 + P: "filmboxTypeID", "Short", "", "A+UH",2,2,2 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400067360, "Model::b_button_oculus", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-1.34458,-0.0953069,-1.56308 + P: "Lcl Rotation", "Lcl Rotation", "", "A+L7",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",1,0.999999999999999,1 + P: "filmboxTypeID", "Short", "", "A+UH",5,5,5 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400095200, "Model::b_trigger_front", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+L7",0.499064,-0.947063,2.72572 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-4.80617390085405e-30,-5.19076463248225e-14,1.06101316326947e-14 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",1,1,1 + P: "filmboxTypeID", "Short", "", "A+UH",5,5,5 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400097520, "Model::b_trigger_grip", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+L7",-0.494865,-3.57376,-1.33871 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-6.36110936292703e-15,-4.77083202219528e-15,5.56597069256115e-15 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",1,1,1 + P: "filmboxTypeID", "Short", "", "A+UH",5,5,5 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400099840, "Model::b_button_b", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.26844,0.123654,0.0535727 + P: "Lcl Rotation", "Lcl Rotation", "", "A+L7",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",0.999999999999999,1,1 + P: "filmboxTypeID", "Short", "", "A+UH",5,5,5 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400069680, "Model::b_button_a", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0.522335,0.064359,-1.30829 + P: "Lcl Rotation", "Lcl Rotation", "", "A+L7",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",0.999999999999999,1,1 + P: "filmboxTypeID", "Short", "", "A+UH",5,5,5 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400109120, "Model::b_thumbstick", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+L7",-0.935476,-0.472432999206454,0.273653234554331 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",8.26944217180514e-14,-9.54166404439056e-15,1.27222187258541e-14 + P: "Lcl Scaling", "Lcl Scaling", "", "A+L7",1,1,1 + P: "filmboxTypeID", "Short", "", "A+UH",5,5,5 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400102160, "Model::r_rainier_mesh", "Mesh" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",0.905368559334783,-0.120237907449915,-0.622680262485757 + P: "ScalingPivot", "Vector3D", "Vector", "",0.905368559334783,-0.120237907449915,-0.622680262485757 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "AL7",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "AL7",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "AL7",1,1,1 + P: "currentUVSet", "KString", "", "U", "DiffuseUV" + } + Shading: T + Culling: "CullingOff" + } + Model: 2287400113760, "Model::right_laser_begin", "Null" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0.9,-0.321028529853374,3.087 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,6.5,7 + } + Shading: Y + Culling: "CullingOff" + } + Model: 2287400104480, "Model::pasted__laser_end_pointer", "Null" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "AL7",0,0,28.94798994644 + P: "Lcl Rotation", "Lcl Rotation", "", "AL7",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "AL7",1,1,1 + } + Shading: Y + Culling: "CullingOff" + } + Pose: 2285107654640, "Pose::skinCluster2", "BindPose" { + Type: "BindPose" + Version: 100 + NbPoseNodes: 8 + PoseNode: { + Node: 2287400102160 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1 + } + } + PoseNode: { + Node: 2287400062720 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,1.11022e-16,-2.77556e-17,0,1 + } + } + PoseNode: { + Node: 2287400067360 + Matrix: *16 { + a: 1,0,0,0,0,0.999999999999999,0,0,0,0,1,0,-1.34458,-0.0953069,-1.56308,1 + } + } + PoseNode: { + Node: 2287400095200 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,0.499064,-0.947063,2.72572,1 + } + } + PoseNode: { + Node: 2287400097520 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-0.494865,-3.57376,-1.33871,1 + } + } + PoseNode: { + Node: 2287400099840 + Matrix: *16 { + a: 0.999999999999999,0,0,0,0,1,0,0,0,0,1,0,1.26844,0.123654,0.0535727,1 + } + } + PoseNode: { + Node: 2287400069680 + Matrix: *16 { + a: 0.999999999999999,0,0,0,0,1,0,0,0,0,1,0,0.522335,0.064359,-1.30829,1 + } + } + PoseNode: { + Node: 2287400109120 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-0.935476,-0.472432999206454,0.273653234554331,1 + } + } + } + Material: 2286526865984, "Material::bothControllerMAT", "" { + Version: 102 + ShadingModel: "unknown" + MultiLayer: 0 + Properties70: { + P: "Maya", "Compound", "", "" + P: "Maya|TypeId", "int", "Integer", "",1166017 + P: "Maya|TEX_global_diffuse_cube", "Vector3D", "Vector", "",0,0,0 + P: "Maya|TEX_global_specular_cube", "Vector3D", "Vector", "",0,0,0 + P: "Maya|TEX_brdf_lut", "Vector3D", "Vector", "",0,0,0 + P: "Maya|use_normal_map", "float", "", "",0 + P: "Maya|uv_offset", "Vector2D", "Vector2", "",0,0 + P: "Maya|uv_scale", "Vector2D", "Vector2", "",1,1 + P: "Maya|TEX_normal_map", "Vector3D", "Vector", "",0,0,0 + P: "Maya|use_color_map", "float", "", "",1 + P: "Maya|TEX_color_map", "Vector3D", "Vector", "",0,0,0 + P: "Maya|base_color", "Vector3D", "Vector", "",1,1,1 + P: "Maya|use_metallic_map", "float", "", "",1 + P: "Maya|TEX_metallic_map", "Vector3D", "Vector", "",0,0,0 + P: "Maya|metallic", "float", "", "",1 + P: "Maya|use_roughness_map", "float", "", "",1 + P: "Maya|TEX_roughness_map", "Vector3D", "Vector", "",0,0,0 + P: "Maya|roughness", "float", "", "",1 + P: "Maya|use_emissive_map", "float", "", "",0 + P: "Maya|TEX_emissive_map", "Vector3D", "Vector", "",0,0,0 + P: "Maya|emissive", "Vector3D", "Vector", "",0,0,0 + P: "Maya|emissive_intensity", "float", "", "",0 + P: "Maya|use_ao_map", "float", "", "",0 + P: "Maya|TEX_ao_map", "Vector3D", "Vector", "",0,0,0 + } + } + Deformer: 2287478708576, "Deformer::", "Skin" { + Version: 101 + Link_DeformAcuracy: 50 + SkinningType: "Linear" + } + Deformer: 2286590739136, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *2136 { + 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,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037, +1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447, +1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857, +1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135 + } + Weights: *2136 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-1.11022e-16,2.77556e-17,0,1 + } + TransformLink: *16 { + a: 1,0,0,0,-0,1,0,0,0,-0,1,0,1.11022e-16,-2.77556e-17,0,1 + } + } + Deformer: 2286590742896, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *61 { + a: 2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287 + } + Weights: *61 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,1.34458,0.0953069000000001,1.56308,1 + } + TransformLink: *16 { + a: 1,0,0,0,-0,0.999999999999999,0,0,0,-0,1,0,-1.34458,-0.0953069,-1.56308,1 + } + } + Deformer: 2286590728608, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *147 { + a: 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,2902,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,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007 + } + Weights: *147 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-0.499064,0.947063,-2.72572,1 + } + TransformLink: *16 { + a: 1,0,0,0,-0,1,0,0,0,-0,1,0,0.499064,-0.947063,2.72572,1 + } + } + Deformer: 2286590730112, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *127 { + a: 2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860 + } + Weights: *127 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,0.494865,3.57376,1.33871,1 + } + TransformLink: *16 { + a: 1,0,0,0,-0,1,0,0,0,-0,1,0,-0.494865,-3.57376,-1.33871,1 + } + } + Deformer: 2286590734624, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *91 { + a: 2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733 + } + Weights: *91 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-1.26844,-0.123654,-0.0535727,1 + } + TransformLink: *16 { + a: 0.999999999999999,0,0,0,-0,1,0,0,0,-0,1,0,1.26844,0.123654,0.0535727,1 + } + } + Deformer: 2286590736880, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *91 { + a: 2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226 + } + Weights: *91 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-0.522335,-0.064359,1.30829,1 + } + TransformLink: *16 { + a: 0.999999999999999,0,0,0,-0,1,0,0,0,-0,1,0,0.522335,0.064359,-1.30829,1 + } + } + Deformer: 2286590739888, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *355 { + a: 2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642 + } + Weights: *355 { + 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 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,0.935476,0.472432999206454,-0.273653234554331,1 + } + TransformLink: *16 { + a: 1,0,0,0,-0,1,0,0,0,-0,1,0,-0.935476,-0.472432999206454,0.273653234554331,1 + } + } + Video: 2286596660336, "Video::metallicRoughnessTexture", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "Z:/shows/avatarsdk/assets/prop/prp00003nextController/source/shade/texture/quest2_controllerBoth_properties512_gltf.tga" + P: "RelPath", "KString", "XRefUrl", "", "Z:\shows\avatarsdk\assets\prop\prp00003nextController\source\shade\texture\quest2_controllerBoth_properties512_gltf.tga" + } + UseMipMap: 0 + Filename: "Z:/shows/avatarsdk/assets/prop/prp00003nextController/source/shade/texture/quest2_controllerBoth_properties512_gltf.tga" + RelativeFilename: "Z:\shows\avatarsdk\assets\prop\prp00003nextController\source\shade\texture\quest2_controllerBoth_properties512_gltf.tga" + } + Video: 2286596666096, "Video::file6", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/midday/specular_cube.dds" + P: "RelPath", "KString", "XRefUrl", "", "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\midday\specular_cube.dds" + } + UseMipMap: 0 + Filename: "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/midday/specular_cube.dds" + RelativeFilename: "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\midday\specular_cube.dds" + } + Video: 2286596666576, "Video::file5", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/midday/diffuse_cube.dds" + P: "RelPath", "KString", "XRefUrl", "", "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\midday\diffuse_cube.dds" + } + UseMipMap: 0 + Filename: "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/midday/diffuse_cube.dds" + RelativeFilename: "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\midday\diffuse_cube.dds" + } + Video: 2286596655536, "Video::file7", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/ibl_brdf_lut.dds" + P: "RelPath", "KString", "XRefUrl", "", "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\ibl_brdf_lut.dds" + } + UseMipMap: 0 + Filename: "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/ibl_brdf_lut.dds" + RelativeFilename: "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\ibl_brdf_lut.dds" + } + Video: 2286596656496, "Video::file4", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "Z:/shows/avatarsdk/assets/prop/prp00003nextController/source/shade/texture/quest2_controllerBoth_color1k.png" + P: "RelPath", "KString", "XRefUrl", "", "Z:\shows\avatarsdk\assets\prop\prp00003nextController\source\shade\texture\quest2_controllerBoth_color1k.png" + } + UseMipMap: 0 + Filename: "Z:/shows/avatarsdk/assets/prop/prp00003nextController/source/shade/texture/quest2_controllerBoth_color1k.png" + RelativeFilename: "Z:\shows\avatarsdk\assets\prop\prp00003nextController\source\shade\texture\quest2_controllerBoth_color1k.png" + } + Texture: 2286596652656, "Texture::metallicRoughnessTexture", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::metallicRoughnessTexture" + Properties70: { + P: "UseMaterial", "bool", "", "",1 + } + Media: "Video::metallicRoughnessTexture" + FileName: "Z:/shows/avatarsdk/assets/prop/prp00003nextController/source/shade/texture/quest2_controllerBoth_properties512_gltf.tga" + RelativeFilename: "Z:\shows\avatarsdk\assets\prop\prp00003nextController\source\shade\texture\quest2_controllerBoth_properties512_gltf.tga" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Texture: 2286596659856, "Texture::file6", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::file6" + Properties70: { + P: "UseMaterial", "bool", "", "",1 + } + Media: "Video::file6" + FileName: "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/midday/specular_cube.dds" + RelativeFilename: "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\midday\specular_cube.dds" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Texture: 2286596665616, "Texture::file5", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::file5" + Properties70: { + P: "UseMaterial", "bool", "", "",1 + } + Media: "Video::file5" + FileName: "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/midday/diffuse_cube.dds" + RelativeFilename: "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\midday\diffuse_cube.dds" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Texture: 2286596653136, "Texture::file7", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::file7" + Properties70: { + P: "UseMaterial", "bool", "", "",1 + } + Media: "Video::file7" + FileName: "C:/Program Files/Autodesk/Maya2018/presets/ShaderFX/Images/PBS/ibl_brdf_lut.dds" + RelativeFilename: "..\..\..\..\..\..\..\..\..\..\..\Program Files\Autodesk\Maya2018\presets\ShaderFX\Images\PBS\ibl_brdf_lut.dds" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Texture: 2286596654576, "Texture::file4", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::file4" + Properties70: { + P: "UseMaterial", "bool", "", "",1 + } + Media: "Video::file4" + FileName: "Z:/shows/avatarsdk/assets/prop/prp00003nextController/source/shade/texture/quest2_controllerBoth_color1k.png" + RelativeFilename: "Z:\shows\avatarsdk\assets\prop\prp00003nextController\source\shade\texture\quest2_controllerBoth_color1k.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Implementation: 2286733631440, "Implementation::bothControllerMAT_Implementation", "" { + Version: 100 + Properties70: { + P: "ShaderLanguage", "KString", "", "", "SFX" + P: "ShaderLanguageVersion", "KString", "", "", "28" + P: "RenderAPI", "KString", "", "", "SFX_PBS_SHADER" + P: "RootBindingName", "KString", "", "", "root" + P: "ShaderGraph", "Blob", "", "",32740 { + BinaryData: "U0ZCX1dJTiA9IHsgcGFyZW50X21hdGVyaWFsID0gImNvcmUvc3RpbmdyYXlfcmVuZGVyZXIvc2hhZGVyX2ltcG9ydC9zdGFuZGFyZCIgLyoKVmVyc2lvbj0yOApHcm91cFZlcnNpb249LTEuMDAwMDAwCkFkdmFuY2VkPTAKSGVscElEPTAKUGFyZW50TWF0ZXJpYWw9cHJlc2V0cy9TdGFuZGFyZApOdW1iZXJPZk5vZGVzPTMyCiNOVD0yMDE4OSAwCglQQz0zCgluYW1lPTEgdj01MDAwIE1ldGFsbGljX01hcF9Td2l0Y2gKCXBvc3g9MSB2PTIwMDMgMTAyMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgMjQwLjAwMDAwMAoJZ3JvdXA9LTEKCUlTQz00CgkJU1ZUPTUwMjIgMjAwMyAxIDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDIgMSAwIAoJCVNEVj0xLjAwMDAwMAoJCVNWVD01MDIyIDIwMDMgMyAwIDEgCgkJU0NTPXIKCQlTVlQ9NTAyMiAyMDAzIDQgMCAwIAoJT1NDPTEKCQlTVlQ9NTAyMiAyMDAzIDUgCgkJQ0M9MQoJCQlDPTAgMCA1IDUgNSA2IDAKCQkJQ1BDPTAKI05UPTIwMTg5IDAKCVBDPTMKCW5hbWU9MSB2PTUwMDAgRW1pc3NpdmVfTWFwX1N3aXRjaAoJcG9zeD0xIHY9MjAwMyA3NDAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDc4MC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9NAoJCVNWVD01MDIyIDIwMDMgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDEgMCAKCQlTRFY9MS4wMDAwMDAKCQlTVlQ9NTAyMiAzMDAyIDMgMCAxIAoJCVNDUz1yZ2IKCQlTVlQ9NTAyMiAzMDAyIDQgMCAwIAoJT1NDPTEKCQlTVlQ9NTAyMiAzMDAyIDUgCgkJQ0M9MQoJCQlDPTEgMCA1IDEwIDAgMSAwCgkJCUNQQz0wCiNOVD0yMDE4OSAwCglQQz0zCgluYW1lPTEgdj01MDAwIENvbG9yX01hcF9Td2l0Y2gKCXBvc3g9MSB2PTIwMDMgMTAyMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgLTM0MC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9NAoJCVNWVD01MDIyIDIwMDMgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDEgMCAKCQlTRFY9MS4wMDAwMDAKCQlTVlQ9NTAyMiAzMDAyIDMgMCAxIAoJCVNDUz1yZ2IKCQlTVlQ9NTAyMiAzMDAyIDQgMCAwIAoJT1NDPTEKCQlTVlQ9NTAyMiAzMDAyIDUgCgkJQ0M9MQoJCQlDPTIgMCA1IDUgMSAyIDAKCQkJQ1BDPTAKI05UPTIwMTg5IDAKCVBDPTMKCW5hbWU9MSB2PTUwMDAgTm9ybWFsX01hcF9Td2l0Y2gKCXBvc3g9MSB2PTIwMDMgMTAyMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgLTYwLjAwMDAwMAoJZ3JvdXA9LTEKCUlTQz00CgkJU1ZUPTUwMjIgMjAwMyAxIDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDIgMSAwIAoJCVNEVj0xLjAwMDAwMAoJCVNWVD01MDIyIDMwMDIgMyAwIDAgCgkJU1ZUPTUwMjIgMzAwMiA0IDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMiA1IAoJCUNDPTEKCQkJQz0zIDAgNSA1IDQgNSAwCgkJCUNQQz0wCiNOVD0yMDE4OSAwCglQQz0zCgluYW1lPTEgdj01MDAwIFJvdWdobmVzc19NYXBfU3dpdGNoCglwb3N4PTEgdj0yMDAzIDEwMjAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDU0MC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9NAoJCVNWVD01MDIyIDIwMDMgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDEgMCAKCQlTRFY9MS4wMDAwMDAKCQlTVlQ9NTAyMiAyMDAzIDMgMCAxIAoJCVNDUz1yCgkJU1ZUPTUwMjIgMjAwMyA0IDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyA1IAoJCUNDPTEKCQkJQz00IDAgNSA1IDYgNyAwCgkJCUNQQz0wCiNOVD0yMDE3NiAwCglQQz01Cglwb3N4PTEgdj0yMDAzIDEzNjAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDI2MC4wMDAwMDAKCXNoYWRlcnJlc291cmNlPTEgdj01MDAwIGNvcmUvc3RpbmdyYXlfcmVuZGVyZXIvc2hhZGVyX2ltcG9ydC9zdGFuZGFyZAoJcHJlc2V0X3BhdGg9MSB2PTUwMDAgcHJlc2V0cy9TdGFuZGFyZAoJbm9ybWFsc3BhY2U9MiBlPTAgdj01MDEyIDEKCWdyb3VwPS0xCglJU0M9MTMKCQlTVlQ9NTAyMiAzMDAyIDEgMCAwIAoJCVNWVD01MDIyIDMwMDIgMiAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAzIDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDQgMCAwIAoJCVNWVD01MDIyIDMwMDIgNSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyA2IDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDcgMCAwIAoJCVNWVD01MDIyIDMwMDIgOCAwIDAgCgkJU1ZUPTUwMjIgMjAwMyA5IDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDEwIDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDExIDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDE0IDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDE1IDAgMCAKCU9TQz0wCiNOVD0yMDE4OSAwCglQQz0zCgluYW1lPTEgdj01MDAwIEFvX01hcF9Td3RpY2gKCXBvc3g9MSB2PTIwMDMgMTAyMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgMTEwMC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9NAoJCVNWVD01MDIyIDIwMDMgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDEgMCAKCQlTRFY9MS4wMDAwMDAKCQlTVlQ9NTAyMiAyMDAzIDMgMCAxIAoJCVNDUz1yCgkJU1ZUPTUwMjIgMjAwMyA0IDEgMCAKCQlTRFY9MS4wMDAwMDAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyA1IAoJCUNDPTEKCQkJQz02IDAgNSA1IDggOSAwCgkJCUNQQz0wCiNOVD0yMDE3OCAwCglQQz0yCglwb3N4PTEgdj0yMDAzIC0yNjAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDQyMC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAzMDAxIDEgCgkJQ0M9MQoJCQlDPTcgMCAxIDI4IDEgMiAwCgkJCUNQQz0wCiNOVD0yMDE3NyAwCglQQz02Cglu", + "YW1lPTEgdj01MDAwIHJvdWdobmVzc19tYXAKCXBvc3g9MSB2PTIwMDMgNzAwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyA1NDAuMDAwMDAwCgl0ZXh0dXJlcGF0aD0yIGU9MSB2PTUwMDAgWjovc2hvd3MvYXZhdGFyc2RrL2Fzc2V0cy9wcm9wL3BycDAwMDAzbmV4dENvbnRyb2xsZXIvc291cmNlL3NoYWRlL3RleHR1cmUvbmV4dENvbnRyb2xsZXJCb3RoX3Byb3BlcnRpZXMxa19nbHRmLnBuZwoJZW5jb2Rpbmc9MiBlPTAgdj01MDEyIDAKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDQKCWdyb3VwPS0xCglJU0M9MgoJCVNWVD01MDIyIDMwMDEgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMyAzIAoJCUNDPTEKCQkJQz04IDAgMyA0IDIgMyAwCgkJCUNQQz0wCiNOVD0yMDE3NyAwCglQQz00CgluYW1lPTEgdj01MDAwIGVtaXNzaXZlX21hcAoJcG9zeD0xIHY9MjAwMyA0MjAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDc4MC4wMDAwMDAKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDUKCWdyb3VwPS0xCglJU0M9MgoJCVNWVD01MDIyIDMwMDEgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMyAzIAoJCUNDPTEKCQkJQz05IDAgMyAxIDIgMyAwCgkJCUNQQz0wCiNOVD0yMDE4NiAwCglQQz0yCglwb3N4PTEgdj0yMDAzIDEwMjAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDg0MC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9MgoJCVNWVD01MDIyIDMwMDIgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMiAzIAoJCUNDPTEKCQkJQz0xMCAwIDMgNSA3IDggMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NwoJbmFtZT0xIHY9NTAwMCB1c2VfY29sb3JfbWFwCglwb3N4PTEgdj0yMDAzIDcwMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgLTQwMC4wMDAwMDAKCXR5cGU9MiBlPTAgdj01MDEyIDAKCWRlZmF1bHRzY2FsYXI9MiBlPTAgdj0yMDAzIDEuMDAwMDAwCgl1aXR5cGU9MiBlPTAgdj01MDEyIDEKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDEwCglncm91cD0tMQoJSVNDPTAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyAxIAoJCUNDPTEKCQkJQz0xMSAwIDEgMiAwIDEgMAoJCQlDUEM9MAojTlQ9MjAxNzcgMAoJUEM9NQoJbmFtZT0xIHY9NTAwMCBjb2xvcl9tYXAKCXBvc3g9MSB2PTIwMDMgNzAwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyAtMzQwLjAwMDAwMAoJdGV4dHVyZXBhdGg9MiBlPTEgdj01MDAwIFo6L3Nob3dzL2F2YXRhcnNkay9hc3NldHMvcHJvcC9wcnAwMDAwM25leHRDb250cm9sbGVyL3NvdXJjZS9zaGFkZS90ZXh0dXJlL25leHRDb250cm9sbGVyQm90aF9jb2xvcjFrLnBuZwoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgMQoJZ3JvdXA9LTEKCUlTQz0yCgkJU1ZUPTUwMjIgMzAwMSAxIDAgMCAKCQlTVlQ9NTAyMiAyMDAzIDIgMCAwIAoJT1NDPTEKCQlTVlQ9NTAyMiAzMDAzIDMgCgkJQ0M9MQoJCQlDPTEyIDAgMyAyIDIgMyAwCgkJCUNQQz0wCiNOVD0yMDE4NSAwCglQQz03CgluYW1lPTEgdj01MDAwIGJhc2VfY29sb3IKCXBvc3g9MSB2PTIwMDMgNzAwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyAtMjQwLjAwMDAwMAoJdHlwZT0yIGU9MCB2PTUwMTIgMgoJZGVmYXVsdHZlY3RocmVlPTIgZT0wIHY9MzAwMiAxLjAwMDAwMCwxLjAwMDAwMCwxLjAwMDAwMAoJZGVmYXVsdHZlY3Rvcj0yIGU9MCB2PTMwMDMgMC41MDAwMDAsMC41MDAwMDAsMC41MDAwMDAsMC4wMDAwMDAKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDIwCglncm91cD0tMQoJSVNDPTAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMiAxIAoJCUNDPTEKCQkJQz0xMyAwIDEgMiAzIDQgMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NgoJbmFtZT0xIHY9NTAwMCB1c2Vfbm9ybWFsX21hcAoJcG9zeD0xIHY9MjAwMyA3MDAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIC0xMjAuMDAwMDAwCgl0eXBlPTIgZT0wIHY9NTAxMiAwCgl1aXR5cGU9MiBlPTAgdj01MDEyIDEKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDExCglncm91cD0tMQoJSVNDPTAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyAxIAoJCUNDPTEKCQkJQz0xNCAwIDEgMyAwIDEgMAoJCQlDUEM9MAojTlQ9MjAxOTQgMAoJUEM9MgoJcG9zeD0xIHY9MjAwMyA2ODAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDYwLjAwMDAwMAoJZ3JvdXA9LTEKCUlTQz0wCglPU0M9MQoJCVNWVD01MDIyIDMwMDIgMSAKCQlDQz0xCgkJCUM9MTUgMCAxIDMgMyA0IDAKCQkJQ1BDPTAKI05UPTIwMTk1IDAKCVBDPTIKCXBvc3g9MSB2PTIwMDMgNzQwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyAtNjAuMDAwMDAwCglncm91cD0tMQoJSVNDPTEKCQlTVlQ9NTAyMiAzMDAyIDEgMCAxIAoJCVNDUz1yZ2IKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMiAyIAoJCUNDPTEKCQkJQz0xNiAwIDIgMyAyIDMgMAoJCQlDUEM9MAojTlQ9MjAxNzcgMAoJUEM9NQoJbmFtZT0xIHY9NTAwMCBub3JtYWxfbWFwCglwb3N4PTEgdj0yMDAzIDQ0MC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgLTYwLjAwMDAwMAoJZW5jb2Rpbmc9MiBlPTAgdj01MDEyIDIKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDIKCWdyb3VwPS0xCglJU0M9MgoJCVNWVD01MDIyIDMwMDEgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMyAzIAoJCUNDPTEKCQkJQz0xNyAwIDMgMTYgMCAxIDAKCQkJQ1BD", + "PTAKI05UPTIwMTc3IDAKCVBDPTcKCW5hbWU9MSB2PTUwMDAgbWV0YWxsaWNfbWFwCglwb3N4PTEgdj0yMDAzIDcwMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgMjQwLjAwMDAwMAoJdGV4dHVyZXBhdGg9MiBlPTEgdj01MDAwIFo6L3Nob3dzL2F2YXRhcnNkay9hc3NldHMvcHJvcC9wcnAwMDAwM25leHRDb250cm9sbGVyL3NvdXJjZS9zaGFkZS90ZXh0dXJlL25leHRDb250cm9sbGVyQm90aF9wcm9wZXJ0aWVzMWtfZ2x0Zi5wbmcKCWVuY29kaW5nPTIgZT0wIHY9NTAxMiAwCglmaWx0ZXI9MiBlPTAgdj01MDEyIDEKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDMKCWdyb3VwPS0xCglJU0M9MgoJCVNWVD01MDIyIDMwMDEgMSAwIDAgCgkJU1ZUPTUwMjIgMjAwMyAyIDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMyAzIAoJCUNDPTEKCQkJQz0xOCAwIDMgMCAyIDMgMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NwoJbmFtZT0xIHY9NTAwMCB1c2VfbWV0YWxsaWNfbWFwCglwb3N4PTEgdj0yMDAzIDcwMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgMTgwLjAwMDAwMAoJdHlwZT0yIGU9MCB2PTUwMTIgMAoJZGVmYXVsdHNjYWxhcj0yIGU9MCB2PTIwMDMgMS4wMDAwMDAKCXVpdHlwZT0yIGU9MCB2PTUwMTIgMQoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgMTIKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAyMDAzIDEgCgkJQ0M9MQoJCQlDPTE5IDAgMSAwIDAgMSAwCgkJCUNQQz0wCiNOVD0yMDE4NSAwCglQQz02CgluYW1lPTEgdj01MDAwIG1ldGFsbGljCglwb3N4PTEgdj0yMDAzIDcwMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgMzQwLjAwMDAwMAoJdHlwZT0yIGU9MCB2PTUwMTIgMAoJZGVmYXVsdHNjYWxhcj0yIGU9MCB2PTIwMDMgMS4wMDAwMDAKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDIxCglncm91cD0tMQoJSVNDPTAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyAxIAoJCUNDPTEKCQkJQz0yMCAwIDEgMCAzIDQgMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NwoJbmFtZT0xIHY9NTAwMCB1c2Vfcm91Z2huZXNzX21hcAoJcG9zeD0xIHY9MjAwMyA3MDAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDQ4MC4wMDAwMDAKCXR5cGU9MiBlPTAgdj01MDEyIDAKCWRlZmF1bHRzY2FsYXI9MiBlPTAgdj0yMDAzIDEuMDAwMDAwCgl1aXR5cGU9MiBlPTAgdj01MDEyIDEKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDEzCglncm91cD0tMQoJSVNDPTAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyAxIAoJCUNDPTEKCQkJQz0yMSAwIDEgNCAwIDEgMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NgoJbmFtZT0xIHY9NTAwMCByb3VnaG5lc3MKCXBvc3g9MSB2PTIwMDMgNzAwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyA2NDAuMDAwMDAwCgl0eXBlPTIgZT0wIHY9NTAxMiAwCglkZWZhdWx0c2NhbGFyPTIgZT0wIHY9MjAwMyAxLjAwMDAwMAoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgMjIKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAyMDAzIDEgCgkJQ0M9MQoJCQlDPTIyIDAgMSA0IDMgNCAwCgkJCUNQQz0wCiNOVD0yMDE4NSAwCglQQz01CgluYW1lPTEgdj01MDAwIGVtaXNzaXZlCglwb3N4PTEgdj0yMDAzIDQyMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgODgwLjAwMDAwMAoJdHlwZT0yIGU9MCB2PTUwMTIgMgoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgMjMKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAzMDAyIDEgCgkJQ0M9MQoJCQlDPTIzIDAgMSAxIDMgNCAwCgkJCUNQQz0wCiNOVD0yMDE4NSAwCglQQz02CgluYW1lPTEgdj01MDAwIHVzZV9lbWlzc2l2ZV9tYXAKCXBvc3g9MSB2PTIwMDMgNDIwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyA3MjAuMDAwMDAwCgl0eXBlPTIgZT0wIHY9NTAxMiAwCgl1aXR5cGU9MiBlPTAgdj01MDEyIDEKCXVpb3JkZXI9MiBlPTAgdj0yMDAyIDE0Cglncm91cD0tMQoJSVNDPTAKCU9TQz0xCgkJU1ZUPTUwMjIgMjAwMyAxIAoJCUNDPTEKCQkJQz0yNCAwIDEgMSAwIDEgMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NgoJbmFtZT0xIHY9NTAwMCB1c2VfYW9fbWFwCglwb3N4PTEgdj0yMDAzIDcwMC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgMTEwMC4wMDAwMDAKCXR5cGU9MiBlPTAgdj01MDEyIDAKCXVpdHlwZT0yIGU9MCB2PTUwMTIgMQoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgMTUKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAyMDAzIDEgCgkJQ0M9MQoJCQlDPTI1IDAgMSA2IDAgMSAwCgkJCUNQQz0wCiNOVD0yMDE3NyAwCglQQz02CgluYW1lPTEgdj01MDAwIGFvX21hcAoJcG9zeD0xIHY9MjAwMyA3MDAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDExNjAuMDAwMDAwCgllbmNvZGluZz0yIGU9MCB2PTUwMTIgMAoJZmlsdGVyPTIgZT0wIHY9NTAxMiAxCgl1aW9yZGVyPTIgZT0wIHY9MjAwMiA2Cglncm91cD0tMQoJSVNDPTIKCQlTVlQ9NTAyMiAzMDAxIDEgMCAwIAoJCVNWVD01MDIyIDIwMDMgMiAwIDAgCglPU0M9MQoJCVNWVD01MDIyIDMwMDMgMyAKCQlDQz0xCgkJCUM9MjYgMCAzIDYgMiAzIDAKCQkJQ1BDPTAKI05UPTIwMTg1IDAKCVBDPTYKCW5hbWU9MSB2PTUwMDAgZW1pc3NpdmVfaW50ZW5zaXR5Cglwb3N4PTEgdj0yMDAzIDc0MC4wMDAwMDAKCXBvc3k9MSB2PTIwMDMgOTIwLjAwMDAwMAoJdHlwZT0yIGU9MCB2PTUwMTIgMAoJbWF4cmFuZ2U9MiBlPTAgdj0yMDAzIDEwLjAwMDAw", + "MAoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgNTMKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAyMDAzIDEgCgkJQ0M9MQoJCQlDPTI3IDAgMSAxMCAxIDIgMAoJCQlDUEM9MAojTlQ9MjAxODYgMAoJUEM9MgoJcG9zeD0xIHY9MjAwMyAtNjAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDQwMC4wMDAwMDAKCWdyb3VwPS0xCglJU0M9MgoJCVNWVD01MDIyIDMwMDEgMSAwIDAgCgkJU1ZUPTUwMjIgMzAwMSAyIDAgMCAKCU9TQz0xCgkJU1ZUPTUwMjIgMzAwMSAzIAoJCUNDPTEKCQkJQz0yOCAwIDMgMjkgMSAyIDAKCQkJQ1BDPTAKI05UPTIwMTg3IDAKCVBDPTIKCXBvc3g9MSB2PTIwMDMgMTIwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyA0MDAuMDAwMDAwCglncm91cD0tMQoJSVNDPTIKCQlTVlQ9NTAyMiAzMDAxIDEgMCAwIAoJCVNWVD01MDIyIDMwMDEgMiAwIDAgCglPU0M9MQoJCVNWVD01MDIyIDMwMDEgMyAKCQlDQz02CgkJCUM9MjkgMCAzIDEyIDAgMSAwCgkJCUNQQz0wCgkJCUM9MjkgMCAzIDE3IDAgMSAwCgkJCUNQQz0wCgkJCUM9MjkgMCAzIDE4IDAgMSAwCgkJCUNQQz0wCgkJCUM9MjkgMCAzIDggMCAxIDAKCQkJQ1BDPTAKCQkJQz0yOSAwIDMgOSAwIDEgMAoJCQlDUEM9MAoJCQlDPTI5IDAgMyAyNiAwIDEgMAoJCQlDUEM9MAojTlQ9MjAxODUgMAoJUEM9NwoJbmFtZT0xIHY9NTAwMCB1dl9vZmZzZXQKCXBvc3g9MSB2PTIwMDMgLTYwLjAwMDAwMAoJcG9zeT0xIHY9MjAwMyAzNDAuMDAwMDAwCgl0eXBlPTIgZT0wIHY9NTAxMiAxCgltaW5yYW5nZT0yIGU9MCB2PTIwMDMgLTEwMDAwMS4wMDAwMDAKCW1heHJhbmdlPTIgZT0wIHY9MjAwMyAxMDAwMDEuMDAwMDAwCgl1aW9yZGVyPTIgZT0wIHY9MjAwMiA2MAoJZ3JvdXA9LTEKCUlTQz0wCglPU0M9MQoJCVNWVD01MDIyIDMwMDEgMSAKCQlDQz0xCgkJCUM9MzAgMCAxIDI5IDAgMSAwCgkJCUNQQz0wCiNOVD0yMDE4NSAwCglQQz05CgluYW1lPTEgdj01MDAwIHV2X3NjYWxlCglwb3N4PTEgdj0yMDAzIC0yNDAuMDAwMDAwCglwb3N5PTEgdj0yMDAzIDM0MC4wMDAwMDAKCXR5cGU9MiBlPTAgdj01MDEyIDEKCWRlZmF1bHR2ZWN0d289MiBlPTAgdj0zMDAxIDEuMDAwMDAwLDEuMDAwMDAwCglkZWZhdWx0dmVjdG9yPTIgZT0wIHY9MzAwMyAxLjAwMDAwMCwxLjAwMDAwMCwwLjAwMDAwMCwwLjAwMDAwMAoJbWlucmFuZ2U9MiBlPTAgdj0yMDAzIC0xMDAwMDEuMDAwMDAwCgltYXhyYW5nZT0yIGU9MCB2PTIwMDMgMTAwMDAxLjAwMDAwMAoJdWlvcmRlcj0yIGU9MCB2PTIwMDIgNjEKCWdyb3VwPS0xCglJU0M9MAoJT1NDPTEKCQlTVlQ9NTAyMiAzMDAxIDEgCgkJQ0M9MQoJCQlDPTMxIDAgMSAyOCAwIDEgMAoJCQlDUEM9MAoKICovIH0gCmNvbm5lY3Rpb25zID0gWwoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJhY2E2OTBjYi02MzA1LTRhMmYtYmYzZC02OTE4M2E0OTNkYjMiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjYiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIzIiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiQ0VEN0JCRjMtMEI0OC00MzM1LUI5MzMtMDk1QTQxQ0EwMjk0IiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIzIiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxMiIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjRDQkI0NDgwLTc5RTgtNENFNy1BQzBGLThCMDlCQUYxMjM5MCIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMyIgCgkJfSAKCQlzZWxlY3QgPSBbIAoJCQkicmdiIiAKCQkJXSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTMiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICIxZWU5YWYxZi02NWYyLTQ3MzktYWQyOC01ZWE2YTBlNjhmYzMiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTMiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjMwIiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiMWVlOWFmMWYtNjVmMi00NzM5LWFkMjgtNWVhNmEwZTY4ZmMzIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjE4IiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIzMCIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjFlZTlhZjFmLTY1ZjItNDczOS1hZDI4LTVlYTZhMGU2OGZjMyIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxOSIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9p", + "ZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMzAiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICIxZWU5YWYxZi02NWYyLTQ3MzktYWQyOC01ZWE2YTBlNjhmYzMiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjkiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjMwIiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiMWVlOWFmMWYtNjVmMi00NzM5LWFkMjgtNWVhNmEwZTY4ZmMzIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjEwIiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIzMCIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjFlZTlhZjFmLTY1ZjItNDczOS1hZDI4LTVlYTZhMGU2OGZjMyIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyNyIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMzAiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJmNzI1OTdjNC03NDg3LTQxOWEtYWZmYi1kZjY5MGU2NTgyZTEiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMzAiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjMxIiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiMDgwNmRiMGQtMmM0YS00M2NhLTk5Y2MtZjVhMmYwMzZhOGU4IiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjMwIiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyOSIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gImM1ODIzYzc1LTRhZTUtNGM3MS1iMDcwLTMxNWZhNGQwM2U4ZSIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyOSIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMzIiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICIyNDJkMTY0OC1hNjI2LTQ0NWItOTUzNC1iY2NlYzA5NDExMmYiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMjkiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI4IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiRjJGNzRFNTgtNDAyRC00NzJCLTg3REQtMzMxRTAwREI0MTZDIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIzIiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxNCIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gImIxYzg2NDA4LWFhY2ItNDQ2Ni1iNzU0LWRkY2YzN2EzYTJjOCIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNiIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjQiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJDRUQ3QkJGMy0wQjQ4LTQzMzUtQjkzMy0wOTVBNDFDQTAyOTQiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjQiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjE1IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiNENCQjQ0ODAtNzlFOC00Q0U3LUFDMEYtOEIwOUJBRjEyMzkwIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI0IiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxNyIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gImY3MjU5N2M0LTc0ODctNDE5YS1hZmZiLWRmNjkwZTY1ODJlMSIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxNyIgCgkJfSAKCQlzZWxlY3QgPSBbIAoJCQkicmdiIiAKCQkJXSAKCQlzb3VyY2Ug", + "PSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTgiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJGMkY3NEU1OC00MDJELTQ3MkItODdERC0zMzFFMDBEQjQxNkMiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjQiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjE2IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiYWQ1ZTA1MmYtZDMxNi00YTBmLThiNzktNTNjMzgyMDRkNjFiIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI2IiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMSIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIkNFRDdCQkYzLTBCNDgtNDMzNS1COTMzLTA5NUE0MUNBMDI5NCIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMSIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMjAiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICI0Q0JCNDQ4MC03OUU4LTRDRTctQUMwRi04QjA5QkFGMTIzOTAiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjEiIAoJCX0gCgkJc2VsZWN0ID0gWyAKCQkJInIiIAoJCQldIAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxOSIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIkYyRjc0RTU4LTQwMkQtNDcyQi04N0RELTMzMUUwMERCNDE2QyIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMSIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMjEiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICIzNmJhNDZkMi1mNmVhLTRlNjAtYTQyOC1mZGMxN2M3NWJjNjIiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjYiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI1IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiQ0VEN0JCRjMtMEI0OC00MzM1LUI5MzMtMDk1QTQxQ0EwMjk0IiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI1IiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyMiIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjRDQkI0NDgwLTc5RTgtNENFNy1BQzBGLThCMDlCQUYxMjM5MCIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNSIgCgkJfSAKCQlzZWxlY3QgPSBbIAoJCQkiciIgCgkJCV0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI5IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiRjJGNzRFNTgtNDAyRC00NzJCLTg3REQtMzMxRTAwREI0MTZDIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI1IiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyMyIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjExNjRhNWVmLTQ1NjMtNDc5NS1iM2I1LTQyODI1ZDZkZjAzNyIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNiIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTEiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJjNTgyM2M3NS00YWU1LTRjNzEtYjA3MC0zMTVmYTRkMDNlOGUiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTEiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIyIiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiQ0VEN0JCRjMtMEI0OC00MzM1LUI5MzMtMDk1QTQxQ0EwMjk0IiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEt", + "YWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIyIiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyNSIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjRDQkI0NDgwLTc5RTgtNENFNy1BQzBGLThCMDlCQUYxMjM5MCIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMiIgCgkJfSAKCQlzZWxlY3QgPSBbIAoJCQkicmdiIiAKCQkJXSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTAiIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJGMkY3NEU1OC00MDJELTQ3MkItODdERC0zMzFFMDBEQjQxNkMiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjIiIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjI0IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiMjQyZDE2NDgtYTYyNi00NDViLTk1MzQtYmNjZWMwOTQxMTJmIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjExIiAKCQl9IAoJCXNvdXJjZSA9IHsgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyOCIgCgkJfSAKCX0gCgl7IAoJCWRlc3RpbmF0aW9uID0geyAKCQkJY29ubmVjdG9yX2lkID0gIjU5ZmQxY2Y0LWY3MzYtNDcwZC04NTEwLTFkZDdjMDE2NjM5ZSIgCgkJCWluc3RhbmNlX2lkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNiIgCgkJfSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjciIAoJCX0gCgl9IAoJeyAKCQlkZXN0aW5hdGlvbiA9IHsgCgkJCWNvbm5lY3Rvcl9pZCA9ICJDRUQ3QkJGMy0wQjQ4LTQzMzUtQjkzMy0wOTVBNDFDQTAyOTQiIAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjciIAoJCX0gCgkJc291cmNlID0geyAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjI2IiAKCQl9IAoJfSAKCXsgCgkJZGVzdGluYXRpb24gPSB7IAoJCQljb25uZWN0b3JfaWQgPSAiNENCQjQ0ODAtNzlFOC00Q0U3LUFDMEYtOEIwOUJBRjEyMzkwIiAKCQkJaW5zdGFuY2VfaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI3IiAKCQl9IAoJCXNlbGVjdCA9IFsgCgkJCSJyIiAKCQkJXSAKCQlzb3VyY2UgPSB7IAoJCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMjciIAoJCX0gCgl9IApdCmNvbnN0YW50cyA9IFsKCXsgCgkJY29ubmVjdG9yX2lkID0gIjM5QkM3NjE5LTI3NjgtNDgwQi1BQ0ZELTYzRkE2NkVGNjkwNSIgCgkJaWQgPSAiMWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIzIiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjMiIAoJCXZhbHVlID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKCXsgCgkJY29ubmVjdG9yX2lkID0gIjM5QkM3NjE5LTI3NjgtNDgwQi1BQ0ZELTYzRkE2NkVGNjkwNSIgCgkJaWQgPSAiMWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI0IiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjQiIAoJCXZhbHVlID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKCXsgCgkJY29ubmVjdG9yX2lkID0gIjM5QkM3NjE5LTI3NjgtNDgwQi1BQ0ZELTYzRkE2NkVGNjkwNSIgCgkJaWQgPSAiMWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIxIiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjEiIAoJCXZhbHVlID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKCXsgCgkJY29ubmVjdG9yX2lkID0gIjM5QkM3NjE5LTI3NjgtNDgwQi1BQ0ZELTYzRkE2NkVGNjkwNSIgCgkJaWQgPSAiMWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI1IiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjUiIAoJCXZhbHVlID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKCXsgCgkJY29ubmVjdG9yX2lkID0gIjM5QkM3NjE5LTI3NjgtNDgwQi1BQ0ZELTYzRkE2NkVGNjkwNSIgCgkJaWQgPSAiMWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIyIiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjIiIAoJCXZhbHVlID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKCXsgCgkJY29ubmVjdG9yX2lkID0gIjM5QkM3NjE5LTI3NjgtNDgwQi1BQ0ZELTYzRkE2NkVGNjkwNSIgCgkJaWQgPSAiMWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI3IiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjciIAoJCXZhbHVl", + "ID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKCXsgCgkJY29ubmVjdG9yX2lkID0gIkYyRjc0RTU4LTQwMkQtNDcyQi04N0RELTMzMUUwMERCNDE2QyIgCgkJaWQgPSAiM2JiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI3IiAKCQlpbnN0YW5jZV9pZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjciIAoJCXZhbHVlID0gWyAKCQkJMS4wMDAwMDAKCQldIAoJfSAKXQpub2RlcyA9IFsKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNiIgCgkJb3B0aW9ucyA9IFsgCgkJCSIyYjEzNjQ0Ny02NzZlLTQ5NDMtOTk3Yi0wNGEyOGFlNjg0OTciCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTEzNjAgCgkJCTI2MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIlN0YW5kYXJkIEJhc2UiIAoJCXR5cGUgPSAiY29yZS9zdGluZ3JheV9yZW5kZXJlci9vdXRwdXRfbm9kZXMvc3RhbmRhcmRfYmFzZSIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmIzIiAKCQlvcHRpb25zID0gWyAKCQkJIjlBODQyODJCLUYxQTItNDZENC05RkM0LTVBNzZGQzlCMzBERCIKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJMTAyMCAKCQkJLTM0MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIkNvbG9yIE1hcCBTd2l0Y2giIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvaWYiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQkJbWF0ZXJpYWxfdmFyaWFibGUgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIlVzZSBDb2xvciBNYXAiIAoJCQkJbmFtZSA9ICJ1c2VfY29sb3JfbWFwIiAKCQkJCXVpID0geyAKCQkJCQltYXggPSAxIAoJCQkJCW1pbiA9IDAuMDAwMDAwIAoJCQkJCXN0ZXAgPSAxIAoJCQkJCW9yZGVyID0gMTAgCgkJCQkJdWlfdHlwZSA9ICJjaGVja2JveCIgCgkJCQl9IAoJCQkJdHlwZSA9ICJmbG9hdCIgCgkJCQl2YWx1ZSA9IDEuMDAwMDAwIAoJCQl9IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjEyIiAKCQlvcHRpb25zID0gWyAKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNzAwIAoJCQktNDAwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiVXNlIENvbG9yIE1hcCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9tYXRlcmlhbF92YXJpYWJsZSIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjEzIiAKCQlvcHRpb25zID0gWyAKCQkJIjFlMDY3NDY0LTEyZDgtNDgyNi05YjcyLWNmZDU3NjUwMDNlMyIKCQkJImZiM2Y3MDliLWE1NGEtNGU5My1hYzlmLWU5ZmM3NmZiOGJjZCIKCQkJIjVkZDU5YjNkLTE3NjItNGExNC05OTMwLTc1MDAyMzBlZjNkYiIKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNzAwIAoJCQktMzQwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCQl0ZXh0dXJlX21hcCA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiQ29sb3IgTWFwIiAKCQkJCXNsb3RfbmFtZSA9ICJjb2xvcl9tYXAiIAoJCQkJdWkgPSB7IAoJCQkJCW9yZGVyID0gMSAKCQkJCX0gCgkJCX0gCgkJfSAKCQl0aXRsZSA9ICJDb2xvciBNYXAiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvc2FtcGxlX3RleHR1cmUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIzMCIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTEyMCAKCQkJNDAwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiQWRkIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL2FkZCIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCQltYXRlcmlhbF92YXJpYWJsZSA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiVXYgT2Zmc2V0IiAKCQkJCW5hbWUgPSAidXZfb2Zmc2V0IiAKCQkJCXVpID0geyAKCQkJCQltYXggPSBbIDEwMDAwMS4wMDAwMDAgMTAwMDAxLjAwMDAwMCBdIAoJCQkJCW1pbiA9IFsgLTEwMDAwMS4wMDAwMDAgLTEwMDAwMS4wMDAwMDAgXSAKCQkJCQlzdGVwID0gWyAwLjAxIDAuMDEgXSAKCQkJCQlvcmRlciA9IDYwIAoJCQkJfSAKCQkJCXR5cGUgPSAiZmxvYXQyIiAKCQkJCXZhbHVlID0gWzAuMDAwMDAwIDAuMDAwMDAwXSAKCQkJfSAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIzMSIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCS02MCAKCQkJMzQwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiVXYgT2Zmc2V0IiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL21hdGVyaWFsX3ZhcmlhYmxlIiAKCX0gCgl7IAoJ", + "CWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMjkiIAoJCW9wdGlvbnMgPSBbIAoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQktNjAgCgkJCTQwMCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIk11bHRpcGx5IiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL211bCIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCQltYXRlcmlhbF92YXJpYWJsZSA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiVXYgU2NhbGUiIAoJCQkJbmFtZSA9ICJ1dl9zY2FsZSIgCgkJCQl1aSA9IHsgCgkJCQkJbWF4ID0gWyAxMDAwMDEuMDAwMDAwIDEwMDAwMS4wMDAwMDAgXSAKCQkJCQltaW4gPSBbIC0xMDAwMDEuMDAwMDAwIC0xMDAwMDEuMDAwMDAwIF0gCgkJCQkJc3RlcCA9IFsgMC4wMSAwLjAxIF0gCgkJCQkJb3JkZXIgPSA2MSAKCQkJCX0gCgkJCQl0eXBlID0gImZsb2F0MiIgCgkJCQl2YWx1ZSA9IFsxLjAwMDAwMCAxLjAwMDAwMF0gCgkJCX0gCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMzIiIAoJCW9wdGlvbnMgPSBbIAoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQktMjQwIAoJCQkzNDAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJVdiBTY2FsZSIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9tYXRlcmlhbF92YXJpYWJsZSIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI4IiAKCQlvcHRpb25zID0gWyAKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJLTI2MCAKCQkJNDIwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiVGV4Y29vcmQwIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL3RleHR1cmVfY29vcmRpbmF0ZTAiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQkJbWF0ZXJpYWxfdmFyaWFibGUgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIkJhc2UgQ29sb3IiIAoJCQkJbmFtZSA9ICJiYXNlX2NvbG9yIiAKCQkJCXVpID0geyAKCQkJCQltYXggPSBbIDEuMDAwMDAwIDEuMDAwMDAwIDEuMDAwMDAwIF0gCgkJCQkJbWluID0gWyAwLjAwMDAwMCAwLjAwMDAwMCAwLjAwMDAwMCBdIAoJCQkJCXN0ZXAgPSBbIDAuMDEgMC4wMSAwLjAxIF0gCgkJCQkJb3JkZXIgPSAyMCAKCQkJCQl1aV90eXBlID0gImNvbG9yIiAKCQkJCX0gCgkJCQl0eXBlID0gImZsb2F0MyIgCgkJCQl2YWx1ZSA9IFsxLjAwMDAwMCAxLjAwMDAwMCAxLjAwMDAwMF0gCgkJCX0gCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTQiIAoJCW9wdGlvbnMgPSBbIAoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQk3MDAgCgkJCS0yNDAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJCYXNlIENvbG9yIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL21hdGVyaWFsX3ZhcmlhYmxlIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiYjQiIAoJCW9wdGlvbnMgPSBbIAoJCQkiOUE4NDI4MkItRjFBMi00NkQ0LTlGQzQtNUE3NkZDOUIzMEREIgoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQkxMDIwIAoJCQktNjAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJOb3JtYWwgTWFwIFN3aXRjaCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9pZiIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCQltYXRlcmlhbF92YXJpYWJsZSA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiVXNlIE5vcm1hbCBNYXAiIAoJCQkJbmFtZSA9ICJ1c2Vfbm9ybWFsX21hcCIgCgkJCQl1aSA9IHsgCgkJCQkJbWF4ID0gMSAKCQkJCQltaW4gPSAwLjAwMDAwMCAKCQkJCQlzdGVwID0gMSAKCQkJCQlvcmRlciA9IDExIAoJCQkJCXVpX3R5cGUgPSAiY2hlY2tib3giIAoJCQkJfSAKCQkJCXR5cGUgPSAiZmxvYXQiIAoJCQkJdmFsdWUgPSAwLjAwMDAwMCAKCQkJfSAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxNSIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTcwMCAKCQkJLTEyMCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIlVzZSBOb3JtYWwgTWFwIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL21hdGVyaWFsX3ZhcmlhYmxlIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTciIAoJCW9wdGlvbnMgPSBbIAoJCQkiMGEwZmI1YWQtMTQ1ZC00MjI5LWFiZDQtNWIzNjU2MjYwN2IzIgoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQk3NDAgCgkJCS02MCAKCQldIAoJCXNh", + "bXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIlRhbmdlbnQgVG8gV29ybGQiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvdGFuZ2VudF90b193b3JsZCIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjE4IiAKCQlvcHRpb25zID0gWyAKCQkJIjFlMDY3NDY0LTEyZDgtNDgyNi05YjcyLWNmZDU3NjUwMDNlMyIKCQkJIjkwZTIwODI2LTg2ODktNDJmYS04ZTI0LWY0ODRlYzY0YzVjMyIKCQkJIjVkZDU5YjNkLTE3NjItNGExNC05OTMwLTc1MDAyMzBlZjNkYiIKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNDQwIAoJCQktNjAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJCXRleHR1cmVfbWFwID0geyAKCQkJCWRpc3BsYXlfbmFtZSA9ICJOb3JtYWwgTWFwIiAKCQkJCXNsb3RfbmFtZSA9ICJub3JtYWxfbWFwIiAKCQkJCXVpID0geyAKCQkJCQlvcmRlciA9IDIgCgkJCQl9IAoJCQl9IAoJCX0gCgkJdGl0bGUgPSAiTm9ybWFsIE1hcCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9zYW1wbGVfdGV4dHVyZSIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjE2IiAKCQlvcHRpb25zID0gWyAKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNjgwIAoJCQk2MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIldvcmxkIE5vcm1hbCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy93b3JsZF9zcGFjZV9ub3JtYWwiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMSIgCgkJb3B0aW9ucyA9IFsgCgkJCSI5QTg0MjgyQi1GMUEyLTQ2RDQtOUZDNC01QTc2RkM5QjMwREQiCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTEwMjAgCgkJCTI0MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIk1ldGFsbGljIE1hcCBTd2l0Y2giIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvaWYiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQkJbWF0ZXJpYWxfdmFyaWFibGUgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIlVzZSBNZXRhbGxpYyBNYXAiIAoJCQkJbmFtZSA9ICJ1c2VfbWV0YWxsaWNfbWFwIiAKCQkJCXVpID0geyAKCQkJCQltYXggPSAxIAoJCQkJCW1pbiA9IDAuMDAwMDAwIAoJCQkJCXN0ZXAgPSAxIAoJCQkJCW9yZGVyID0gMTIgCgkJCQkJdWlfdHlwZSA9ICJjaGVja2JveCIgCgkJCQl9IAoJCQkJdHlwZSA9ICJmbG9hdCIgCgkJCQl2YWx1ZSA9IDEuMDAwMDAwIAoJCQl9IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjIwIiAKCQlvcHRpb25zID0gWyAKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNzAwIAoJCQkxODAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJVc2UgTWV0YWxsaWMgTWFwIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL21hdGVyaWFsX3ZhcmlhYmxlIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTkiIAoJCW9wdGlvbnMgPSBbIAoJCQkiZjY2OWEzYTYtMDM3Ni00MTg3LTg0MGUtODAwMDBlMjkzOWQ1IgoJCQkiZTk0ZTUzZTYtNDliNi00MTk0LWE3NDctOGYwNjRhNTkzMmUwIgoJCQkiNWRkNTliM2QtMTc2Mi00YTE0LTk5MzAtNzUwMDIzMGVmM2RiIgoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQk3MDAgCgkJCTI0MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQkJdGV4dHVyZV9tYXAgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIk1ldGFsbGljIE1hcCIgCgkJCQlzbG90X25hbWUgPSAibWV0YWxsaWNfbWFwIiAKCQkJCXVpID0geyAKCQkJCQlvcmRlciA9IDMgCgkJCQl9IAoJCQl9IAoJCX0gCgkJdGl0bGUgPSAiTWV0YWxsaWMgTWFwIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL3NhbXBsZV90ZXh0dXJlIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJCW1hdGVyaWFsX3ZhcmlhYmxlID0geyAKCQkJCWRpc3BsYXlfbmFtZSA9ICJNZXRhbGxpYyIgCgkJCQluYW1lID0gIm1ldGFsbGljIiAKCQkJCXVpID0geyAKCQkJCQltYXggPSAxLjAwMDAwMCAKCQkJCQltaW4gPSAwLjAwMDAwMCAKCQkJCQlzdGVwID0gMC4wMSAKCQkJCQlvcmRlciA9IDIxIAoJCQkJfSAKCQkJCXR5cGUgPSAiZmxvYXQiIAoJCQkJdmFsdWUgPSAxLjAwMDAwMCAKCQkJfSAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyMSIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTcwMCAKCQkJMzQwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiTWV0YWxsaWMiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvbWF0ZXJpYWxfdmFy", + "aWFibGUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNSIgCgkJb3B0aW9ucyA9IFsgCgkJCSI5QTg0MjgyQi1GMUEyLTQ2RDQtOUZDNC01QTc2RkM5QjMwREQiCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTEwMjAgCgkJCTU0MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIlJvdWdobmVzcyBNYXAgU3dpdGNoIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL2lmIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJCW1hdGVyaWFsX3ZhcmlhYmxlID0geyAKCQkJCWRpc3BsYXlfbmFtZSA9ICJVc2UgUm91Z2huZXNzIE1hcCIgCgkJCQluYW1lID0gInVzZV9yb3VnaG5lc3NfbWFwIiAKCQkJCXVpID0geyAKCQkJCQltYXggPSAxIAoJCQkJCW1pbiA9IDAuMDAwMDAwIAoJCQkJCXN0ZXAgPSAxIAoJCQkJCW9yZGVyID0gMTMgCgkJCQkJdWlfdHlwZSA9ICJjaGVja2JveCIgCgkJCQl9IAoJCQkJdHlwZSA9ICJmbG9hdCIgCgkJCQl2YWx1ZSA9IDEuMDAwMDAwIAoJCQl9IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjIyIiAKCQlvcHRpb25zID0gWyAKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNzAwIAoJCQk0ODAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJVc2UgUm91Z2huZXNzIE1hcCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9tYXRlcmlhbF92YXJpYWJsZSIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYmI5IiAKCQlvcHRpb25zID0gWyAKCQkJIjFlMDY3NDY0LTEyZDgtNDgyNi05YjcyLWNmZDU3NjUwMDNlMyIKCQkJImU5NGU1M2U2LTQ5YjYtNDE5NC1hNzQ3LThmMDY0YTU5MzJlMCIKCQkJIjVkZDU5YjNkLTE3NjItNGExNC05OTMwLTc1MDAyMzBlZjNkYiIKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNzAwIAoJCQk1NDAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJCXRleHR1cmVfbWFwID0geyAKCQkJCWRpc3BsYXlfbmFtZSA9ICJSb3VnaG5lc3MgTWFwIiAKCQkJCXNsb3RfbmFtZSA9ICJyb3VnaG5lc3NfbWFwIiAKCQkJCXVpID0geyAKCQkJCQlvcmRlciA9IDQgCgkJCQl9IAoJCQl9IAoJCX0gCgkJdGl0bGUgPSAiUm91Z2huZXNzIE1hcCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9zYW1wbGVfdGV4dHVyZSIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCQltYXRlcmlhbF92YXJpYWJsZSA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiUm91Z2huZXNzIiAKCQkJCW5hbWUgPSAicm91Z2huZXNzIiAKCQkJCXVpID0geyAKCQkJCQltYXggPSAxLjAwMDAwMCAKCQkJCQltaW4gPSAwLjAwMDAwMCAKCQkJCQlzdGVwID0gMC4wMSAKCQkJCQlvcmRlciA9IDIyIAoJCQkJfSAKCQkJCXR5cGUgPSAiZmxvYXQiIAoJCQkJdmFsdWUgPSAxLjAwMDAwMCAKCQkJfSAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyMyIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTcwMCAKCQkJNjQwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiUm91Z2huZXNzIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL21hdGVyaWFsX3ZhcmlhYmxlIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMTEiIAoJCW9wdGlvbnMgPSBbIAoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQkxMDIwIAoJCQk4NDAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJNdWx0aXBseSIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9tdWwiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiMiIgCgkJb3B0aW9ucyA9IFsgCgkJCSI5QTg0MjgyQi1GMUEyLTQ2RDQtOUZDNC01QTc2RkM5QjMwREQiCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTc0MCAKCQkJNzgwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiRW1pc3NpdmUgTWFwIFN3aXRjaCIgCgkJdHlwZSA9ICJjb3JlL3NoYWRlcl9ub2Rlcy9pZiIgCgl9IAoJeyAKCQljb250ZW50X3NpemUgPSBbIAoJCQkxNjAgCgkJCTAgCgkJXSAKCQlleHBvcnQgPSB7IAoJCQltYXRlcmlhbF92YXJpYWJsZSA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiVXNlIEVtaXNzaXZlIE1hcCIgCgkJCQluYW1lID0gInVzZV9lbWlzc2l2ZV9tYXAiIAoJCQkJdWkgPSB7IAoJCQkJCW1heCA9IDEgCgkJCQkJbWluID0gMC4wMDAwMDAgCgkJCQkJc3RlcCA9IDEgCgkJCQkJb3JkZXIgPSAxNCAKCQkJCQl1aV90eXBlID0gImNoZWNrYm94IiAKCQkJCX0gCgkJCQl0eXBlID0gImZsb2F0IiAKCQkJCXZh", + "bHVlID0gMC4wMDAwMDAgCgkJCX0gCgkJfSAKCQlpZCA9ICJhYmJhYWJiYS1hYmJhLWFiYmEtYWJiYS1hYmJhYWJiYWFiMjUiIAoJCW9wdGlvbnMgPSBbIAoJCV0gCgkJcG9zaXRpb24gPSBbIAoJCQk0MjAgCgkJCTcyMCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIlVzZSBFbWlzc2l2ZSBNYXAiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvbWF0ZXJpYWxfdmFyaWFibGUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIxMCIgCgkJb3B0aW9ucyA9IFsgCgkJCSIxZTA2NzQ2NC0xMmQ4LTQ4MjYtOWI3Mi1jZmQ1NzY1MDAzZTMiCgkJCSJmYjNmNzA5Yi1hNTRhLTRlOTMtYWM5Zi1lOWZjNzZmYjhiY2QiCgkJCSI1ZGQ1OWIzZC0xNzYyLTRhMTQtOTkzMC03NTAwMjMwZWYzZGIiCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTQyMCAKCQkJNzgwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCQl0ZXh0dXJlX21hcCA9IHsgCgkJCQlkaXNwbGF5X25hbWUgPSAiRW1pc3NpdmUgTWFwIiAKCQkJCXNsb3RfbmFtZSA9ICJlbWlzc2l2ZV9tYXAiIAoJCQkJdWkgPSB7IAoJCQkJCW9yZGVyID0gNSAKCQkJCX0gCgkJCX0gCgkJfSAKCQl0aXRsZSA9ICJFbWlzc2l2ZSBNYXAiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvc2FtcGxlX3RleHR1cmUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQkJbWF0ZXJpYWxfdmFyaWFibGUgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIkVtaXNzaXZlIiAKCQkJCW5hbWUgPSAiZW1pc3NpdmUiIAoJCQkJdWkgPSB7IAoJCQkJCW1heCA9IFsgMS4wMDAwMDAgMS4wMDAwMDAgMS4wMDAwMDAgXSAKCQkJCQltaW4gPSBbIDAuMDAwMDAwIDAuMDAwMDAwIDAuMDAwMDAwIF0gCgkJCQkJc3RlcCA9IFsgMC4wMSAwLjAxIDAuMDEgXSAKCQkJCQlvcmRlciA9IDIzIAoJCQkJCXVpX3R5cGUgPSAiY29sb3IiIAoJCQkJfSAKCQkJCXR5cGUgPSAiZmxvYXQzIiAKCQkJCXZhbHVlID0gWzAuMDAwMDAwIDAuMDAwMDAwIDAuMDAwMDAwXSAKCQkJfSAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyNCIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTQyMCAKCQkJODgwIAoJCV0gCgkJc2FtcGxlcnMgPSB7IAoJCX0gCgkJdGl0bGUgPSAiRW1pc3NpdmUiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvbWF0ZXJpYWxfdmFyaWFibGUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQkJbWF0ZXJpYWxfdmFyaWFibGUgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIkVtaXNzaXZlIEludGVuc2l0eSIgCgkJCQluYW1lID0gImVtaXNzaXZlX2ludGVuc2l0eSIgCgkJCQl1aSA9IHsgCgkJCQkJbWF4ID0gMTAuMDAwMDAwIAoJCQkJCW1pbiA9IDAuMDAwMDAwIAoJCQkJCXN0ZXAgPSAwLjAxIAoJCQkJCW9yZGVyID0gNTMgCgkJCQl9IAoJCQkJdHlwZSA9ICJmbG9hdCIgCgkJCQl2YWx1ZSA9IDAuMDAwMDAwIAoJCQl9IAoJCX0gCgkJaWQgPSAiYWJiYWFiYmEtYWJiYS1hYmJhLWFiYmEtYWJiYWFiYmFhYjI4IiAKCQlvcHRpb25zID0gWyAKCQldIAoJCXBvc2l0aW9uID0gWyAKCQkJNzQwIAoJCQk5MjAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJFbWlzc2l2ZSBJbnRlbnNpdHkiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvbWF0ZXJpYWxfdmFyaWFibGUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYwIAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWJiNyIgCgkJb3B0aW9ucyA9IFsgCgkJCSI5QTg0MjgyQi1GMUEyLTQ2RDQtOUZDNC01QTc2RkM5QjMwREQiCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTEwMjAgCgkJCTExMDAgCgkJXSAKCQlzYW1wbGVycyA9IHsgCgkJfSAKCQl0aXRsZSA9ICJBbyBNYXAgU3d0aWNoIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL2lmIiAKCX0gCgl7IAoJCWNvbnRlbnRfc2l6ZSA9IFsgCgkJCTE2MCAKCQkJMCAKCQldIAoJCWV4cG9ydCA9IHsgCgkJCW1hdGVyaWFsX3ZhcmlhYmxlID0geyAKCQkJCWRpc3BsYXlfbmFtZSA9ICJVc2UgQW8gTWFwIiAKCQkJCW5hbWUgPSAidXNlX2FvX21hcCIgCgkJCQl1aSA9IHsgCgkJCQkJbWF4ID0gMSAKCQkJCQltaW4gPSAwLjAwMDAwMCAKCQkJCQlzdGVwID0gMSAKCQkJCQlvcmRlciA9IDE1IAoJCQkJCXVpX3R5cGUgPSAiY2hlY2tib3giIAoJCQkJfSAKCQkJCXR5cGUgPSAiZmxvYXQiIAoJCQkJdmFsdWUgPSAwLjAwMDAwMCAKCQkJfSAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyNiIgCgkJb3B0aW9ucyA9IFsgCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTcwMCAKCQkJMTEwMCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQl9IAoJCXRpdGxlID0gIlVzZSBBbyBNYXAiIAoJCXR5cGUgPSAiY29yZS9zaGFkZXJfbm9kZXMvbWF0ZXJpYWxfdmFyaWFibGUiIAoJfSAKCXsgCgkJY29udGVudF9zaXplID0gWyAKCQkJMTYw", + "IAoJCQkwIAoJCV0gCgkJZXhwb3J0ID0geyAKCQl9IAoJCWlkID0gImFiYmFhYmJhLWFiYmEtYWJiYS1hYmJhLWFiYmFhYmJhYWIyNyIgCgkJb3B0aW9ucyA9IFsgCgkJCSJmNjY5YTNhNi0wMzc2LTQxODctODQwZS04MDAwMGUyOTM5ZDUiCgkJCSJlOTRlNTNlNi00OWI2LTQxOTQtYTc0Ny04ZjA2NGE1OTMyZTAiCgkJCSI1ZGQ1OWIzZC0xNzYyLTRhMTQtOTkzMC03NTAwMjMwZWYzZGIiCgkJXSAKCQlwb3NpdGlvbiA9IFsgCgkJCTcwMCAKCQkJMTE2MCAKCQldIAoJCXNhbXBsZXJzID0geyAKCQkJdGV4dHVyZV9tYXAgPSB7IAoJCQkJZGlzcGxheV9uYW1lID0gIkFvIE1hcCIgCgkJCQlzbG90X25hbWUgPSAiYW9fbWFwIiAKCQkJCXVpID0geyAKCQkJCQlvcmRlciA9IDYgCgkJCQl9IAoJCQl9IAoJCX0gCgkJdGl0bGUgPSAiQW8gTWFwIiAKCQl0eXBlID0gImNvcmUvc2hhZGVyX25vZGVzL3NhbXBsZV90ZXh0dXJlIiAKCX0gCl0KdmVyc2lvbiA9IDMKAA==" + } + } + } + BindingTable: 2285967142992, "BindingTable::root 5", "" { + Version: 100 + Properties70: { + P: "TargetName", "KString", "", "", "root" + P: "TargetType", "KString", "", "", "shader" + } + Entry: "Maya|use_metallic_map", "FbxPropertyEntry", "use_metallic_map", "FbxSemanticEntry" + Entry: "Maya|base_color", "FbxPropertyEntry", "base_color", "FbxSemanticEntry" + Entry: "Maya|use_ao_map", "FbxPropertyEntry", "use_ao_map", "FbxSemanticEntry" + Entry: "Maya|TEX_emissive_map", "FbxPropertyEntry", "TEX_emissive_map", "FbxSemanticEntry" + Entry: "Maya|TEX_metallic_map", "FbxPropertyEntry", "TEX_metallic_map", "FbxSemanticEntry" + Entry: "Maya|TEX_ao_map", "FbxPropertyEntry", "TEX_ao_map", "FbxSemanticEntry" + Entry: "Maya|uv_offset", "FbxPropertyEntry", "uv_offset", "FbxSemanticEntry" + Entry: "Maya|emissive_intensity", "FbxPropertyEntry", "emissive_intensity", "FbxSemanticEntry" + Entry: "Maya|metallic", "FbxPropertyEntry", "metallic", "FbxSemanticEntry" + Entry: "Maya|TEX_global_specular_cube", "FbxPropertyEntry", "TEX_global_specular_cube", "FbxSemanticEntry" + Entry: "Maya|use_roughness_map", "FbxPropertyEntry", "use_roughness_map", "FbxSemanticEntry" + Entry: "Maya|use_normal_map", "FbxPropertyEntry", "use_normal_map", "FbxSemanticEntry" + Entry: "Maya|use_color_map", "FbxPropertyEntry", "use_color_map", "FbxSemanticEntry" + Entry: "Maya|emissive", "FbxPropertyEntry", "emissive", "FbxSemanticEntry" + Entry: "Maya|use_emissive_map", "FbxPropertyEntry", "use_emissive_map", "FbxSemanticEntry" + Entry: "Maya|uv_scale", "FbxPropertyEntry", "uv_scale", "FbxSemanticEntry" + Entry: "Maya|TEX_global_diffuse_cube", "FbxPropertyEntry", "TEX_global_diffuse_cube", "FbxSemanticEntry" + Entry: "Maya|TEX_roughness_map", "FbxPropertyEntry", "TEX_roughness_map", "FbxSemanticEntry" + Entry: "Maya|roughness", "FbxPropertyEntry", "roughness", "FbxSemanticEntry" + Entry: "Maya|TEX_brdf_lut", "FbxPropertyEntry", "TEX_brdf_lut", "FbxSemanticEntry" + Entry: "Maya|TEX_color_map", "FbxPropertyEntry", "TEX_color_map", "FbxSemanticEntry" + Entry: "Maya|TEX_normal_map", "FbxPropertyEntry", "TEX_normal_map", "FbxSemanticEntry" + } + AnimationStack: 2285109622000, "AnimStack::Take 001", "" { + Properties70: { + P: "LocalStop", "KTime", "Time", "",83135084400 + P: "ReferenceStop", "KTime", "Time", "",83135084400 + } + } + AnimationCurve: 2286526862464, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526864864, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.347384,-1.347384,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458,-1.34458 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526867104, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.1447486,-0.1447486,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069,-0.0953069 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526865664, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.556177,-1.556177,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308,-1.56308 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526865824, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526867744, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,19.9997,19.9997,0,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30,-4.806174e-30 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526863904, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-0.1002117,-0.1002117,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14,-5.190765e-14 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526867264, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,0.03026834,0.03026834,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14,1.061013e-14 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526866464, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526867904, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,1.340817,1.340817,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15,-6.361109e-15 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526868224, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,7.364182,7.364182,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15,-4.770832e-15 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526863264, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,4.117923,4.117923,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15,5.565971e-15 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526866624, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526864544, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.25556,1.25556,1.26844,1.26844,1.254352,1.254352,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844,1.26844 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526869184, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,-0.03542938,-0.03542938,0.123654,0.123654,-0.05034345,-0.05034345,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654,0.123654 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526866784, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.06482313,0.06482313,0.0535727,0.0535727,0.06587785,0.06587785,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727,0.0535727 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526869344, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286526861664, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.5104621,0.5104621,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.5104621,0.5104621,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335,0.522335 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2285102393552, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,-0.1143322,-0.1143322,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,-0.1143322,-0.1143322,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359,0.064359 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529252768, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.290166,-1.290166,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.290166,-1.290166,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829,-1.30829 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529250048, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529249568, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,8.269442e-14,22.31703,22.31703,-22.3401,-22.3401,0.6744151,0.6744151,0.3703204,0.3703204,-15.47399,-15.47399,16.19623,16.19623,14.85129,14.85129,-14.68388,-14.68388,8.269442e-14,8.269442e-14,8.269442e-14 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529253248, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: -9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-9.541664e-15,-2.8932,-2.8932,2.699247,2.699247,-2.613539,-2.613539,2.673588,2.673588,-4.218134,-4.218134,0.4860009,0.4860009,-4.425328,-4.425328,8.04482,8.04482,-9.541664e-15,-9.541664e-15,-9.541664e-15 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529251488, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + a: 1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,1.272222e-14,-0.06029885,-0.06029885,-1.043604,-1.043604,-22.35498,-22.35498,22.34823,22.34823,-15.40157,-15.40157,-15.72487,-15.72487,15.92415,15.92415,14.22861,14.22861,1.272222e-14,1.272222e-14,1.272222e-14 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529249728, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529251968, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529248928, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529253888, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529253728, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurve: 2286529254368, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *55 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400 + } + KeyValueFloat: *55 { + 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 + } + ;KeyAttrFlags: Constant|ConstantStandard + KeyAttrFlags: *1 { + a: 2 + } + ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 55 + } + } + AnimationCurveNode: 2285847550112, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",2 + } + } + AnimationCurveNode: 2285847547408, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2285847546368, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",5 + } + } + AnimationCurveNode: 2285847546576, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2285852484912, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",5 + } + } + AnimationCurveNode: 2285852483456, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2285852482208, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",5 + } + } + AnimationCurveNode: 2285852483248, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2285852483664, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",5 + } + } + AnimationCurveNode: 2285852483872, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2285852484496, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",5 + } + } + AnimationCurveNode: 2285852485328, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2285852484704, "AnimCurveNode::filmboxTypeID", "" { + Properties70: { + P: "d|filmboxTypeID", "Short", "", "A",5 + } + } + AnimationCurveNode: 2285852485536, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 2285726909856, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 2285726906944, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2285726907568, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 2285726907776, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 2285726907984, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-1.34458 + P: "d|Y", "Number", "", "A",-0.0953069 + P: "d|Z", "Number", "", "A",-1.56308 + } + } + AnimationCurveNode: 2285726908192, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",0.999999999999999 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2285726909232, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 2285726909440, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 2285726908400, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.499064 + P: "d|Y", "Number", "", "A",-0.947063 + P: "d|Z", "Number", "", "A",2.72572 + } + } + AnimationCurveNode: 2285726909648, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2285108396864, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-4.80617390085405e-30 + P: "d|Y", "Number", "", "A",-5.19076463248225e-14 + P: "d|Z", "Number", "", "A",1.06101316326947e-14 + } + } + AnimationCurveNode: 2285108394992, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 2285108397696, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-0.494865 + P: "d|Y", "Number", "", "A",-3.57376 + P: "d|Z", "Number", "", "A",-1.33871 + } + } + AnimationCurveNode: 2285108398320, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2285108395824, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-6.36110936292703e-15 + P: "d|Y", "Number", "", "A",-4.77083202219528e-15 + P: "d|Z", "Number", "", "A",5.56597069256115e-15 + } + } + AnimationCurveNode: 2285108396240, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 2285108397904, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",1.26844 + P: "d|Y", "Number", "", "A",0.123654 + P: "d|Z", "Number", "", "A",0.0535727 + } + } + AnimationCurveNode: 2285108397072, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.999999999999999 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2285108398528, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 2285722606640, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 2285722606848, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.522335 + P: "d|Y", "Number", "", "A",0.064359 + P: "d|Z", "Number", "", "A",-1.30829 + } + } + AnimationCurveNode: 2285722607680, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.999999999999999 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2285722610384, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 2285722610800, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 2285722609136, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-0.935476 + P: "d|Y", "Number", "", "A",-0.472432999206454 + P: "d|Z", "Number", "", "A",0.273653234554331 + } + } + AnimationCurveNode: 2285722608096, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 2285722608720, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",8.26944217180514e-14 + P: "d|Y", "Number", "", "A",-9.54166404439056e-15 + P: "d|Z", "Number", "", "A",1.27222187258541e-14 + } + } + AnimationLayer: 2287399198624, "AnimLayer::BaseLayer", "" { + } + CollectionExclusive: 2287478717024, "DisplayLayer::leftLayer", "DisplayLayer" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::right_oculus_controller_world, Model::RootNode + C: "OO",2287400062720,0 + + ;Model::r_rainier_mesh, Model::RootNode + C: "OO",2287400102160,0 + + ;Model::right_laser_begin, Model::RootNode + C: "OO",2287400113760,0 + + ;AnimLayer::BaseLayer, AnimStack::Take 001 + C: "OO",2287399198624,2285109622000 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2285847550112,2287399198624 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2285847547408,2287399198624 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2285847546368,2287399198624 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2285847546576,2287399198624 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2285852484912,2287399198624 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2285852483456,2287399198624 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2285852482208,2287399198624 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2285852483248,2287399198624 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2285852483664,2287399198624 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2285852483872,2287399198624 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2285852484496,2287399198624 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2285852485328,2287399198624 + + ;AnimCurveNode::filmboxTypeID, AnimLayer::BaseLayer + C: "OO",2285852484704,2287399198624 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",2285852485536,2287399198624 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2285726909856,2287399198624 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2285726906944,2287399198624 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2285726907568,2287399198624 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",2285726907776,2287399198624 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2285726907984,2287399198624 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2285726908192,2287399198624 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2285726909232,2287399198624 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",2285726909440,2287399198624 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2285726908400,2287399198624 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2285726909648,2287399198624 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2285108396864,2287399198624 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",2285108394992,2287399198624 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2285108397696,2287399198624 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2285108398320,2287399198624 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2285108395824,2287399198624 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",2285108396240,2287399198624 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2285108397904,2287399198624 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2285108397072,2287399198624 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2285108398528,2287399198624 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",2285722606640,2287399198624 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2285722606848,2287399198624 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2285722607680,2287399198624 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2285722610384,2287399198624 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",2285722610800,2287399198624 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",2285722609136,2287399198624 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",2285722608096,2287399198624 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",2285722608720,2287399198624 + + ;NodeAttribute::, Model::right_oculus_controller_world + C: "OO",2287478674016,2287400062720 + + ;Model::b_button_oculus, Model::right_oculus_controller_world + C: "OO",2287400067360,2287400062720 + + ;Model::b_trigger_front, Model::right_oculus_controller_world + C: "OO",2287400095200,2287400062720 + + ;Model::b_trigger_grip, Model::right_oculus_controller_world + C: "OO",2287400097520,2287400062720 + + ;Model::b_button_b, Model::right_oculus_controller_world + C: "OO",2287400099840,2287400062720 + + ;Model::b_button_a, Model::right_oculus_controller_world + C: "OO",2287400069680,2287400062720 + + ;Model::b_thumbstick, Model::right_oculus_controller_world + C: "OO",2287400109120,2287400062720 + + ;AnimCurveNode::T, Model::right_oculus_controller_world + C: "OP",2285726909856,2287400062720, "Lcl Translation" + + ;AnimCurveNode::R, Model::right_oculus_controller_world + C: "OP",2285726907568,2287400062720, "Lcl Rotation" + + ;AnimCurveNode::S, Model::right_oculus_controller_world + C: "OP",2285726906944,2287400062720, "Lcl Scaling" + + ;AnimCurveNode::filmboxTypeID, Model::right_oculus_controller_world + C: "OP",2285847550112,2287400062720, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::right_oculus_controller_world + C: "OP",2285847547408,2287400062720, "lockInfluenceWeights" + + ;NodeAttribute::, Model::b_button_oculus + C: "OO",2287478715296,2287400067360 + + ;AnimCurveNode::T, Model::b_button_oculus + C: "OP",2285726907984,2287400067360, "Lcl Translation" + + ;AnimCurveNode::R, Model::b_button_oculus + C: "OP",2285726909232,2287400067360, "Lcl Rotation" + + ;AnimCurveNode::S, Model::b_button_oculus + C: "OP",2285726908192,2287400067360, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::b_button_oculus + C: "OP",2285726907776,2287400067360, "Visibility" + + ;AnimCurveNode::filmboxTypeID, Model::b_button_oculus + C: "OP",2285847546368,2287400067360, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::b_button_oculus + C: "OP",2285847546576,2287400067360, "lockInfluenceWeights" + + ;NodeAttribute::, Model::b_trigger_front + C: "OO",2287478714720,2287400095200 + + ;AnimCurveNode::T, Model::b_trigger_front + C: "OP",2285726908400,2287400095200, "Lcl Translation" + + ;AnimCurveNode::R, Model::b_trigger_front + C: "OP",2285108396864,2287400095200, "Lcl Rotation" + + ;AnimCurveNode::S, Model::b_trigger_front + C: "OP",2285726909648,2287400095200, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::b_trigger_front + C: "OP",2285726909440,2287400095200, "Visibility" + + ;AnimCurveNode::filmboxTypeID, Model::b_trigger_front + C: "OP",2285852484912,2287400095200, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::b_trigger_front + C: "OP",2285852483456,2287400095200, "lockInfluenceWeights" + + ;NodeAttribute::, Model::b_trigger_grip + C: "OO",2287478712800,2287400097520 + + ;AnimCurveNode::T, Model::b_trigger_grip + C: "OP",2285108397696,2287400097520, "Lcl Translation" + + ;AnimCurveNode::R, Model::b_trigger_grip + C: "OP",2285108395824,2287400097520, "Lcl Rotation" + + ;AnimCurveNode::S, Model::b_trigger_grip + C: "OP",2285108398320,2287400097520, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::b_trigger_grip + C: "OP",2285108394992,2287400097520, "Visibility" + + ;AnimCurveNode::filmboxTypeID, Model::b_trigger_grip + C: "OP",2285852482208,2287400097520, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::b_trigger_grip + C: "OP",2285852483248,2287400097520, "lockInfluenceWeights" + + ;NodeAttribute::, Model::b_button_b + C: "OO",2287478708000,2287400099840 + + ;AnimCurveNode::T, Model::b_button_b + C: "OP",2285108397904,2287400099840, "Lcl Translation" + + ;AnimCurveNode::R, Model::b_button_b + C: "OP",2285108398528,2287400099840, "Lcl Rotation" + + ;AnimCurveNode::S, Model::b_button_b + C: "OP",2285108397072,2287400099840, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::b_button_b + C: "OP",2285108396240,2287400099840, "Visibility" + + ;AnimCurveNode::filmboxTypeID, Model::b_button_b + C: "OP",2285852483664,2287400099840, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::b_button_b + C: "OP",2285852483872,2287400099840, "lockInfluenceWeights" + + ;NodeAttribute::, Model::b_button_a + C: "OO",2287478713760,2287400069680 + + ;AnimCurveNode::T, Model::b_button_a + C: "OP",2285722606848,2287400069680, "Lcl Translation" + + ;AnimCurveNode::R, Model::b_button_a + C: "OP",2285722610384,2287400069680, "Lcl Rotation" + + ;AnimCurveNode::S, Model::b_button_a + C: "OP",2285722607680,2287400069680, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::b_button_a + C: "OP",2285722606640,2287400069680, "Visibility" + + ;AnimCurveNode::filmboxTypeID, Model::b_button_a + C: "OP",2285852484496,2287400069680, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::b_button_a + C: "OP",2285852485328,2287400069680, "lockInfluenceWeights" + + ;NodeAttribute::, Model::b_thumbstick + C: "OO",2287478717984,2287400109120 + + ;AnimCurveNode::T, Model::b_thumbstick + C: "OP",2285722609136,2287400109120, "Lcl Translation" + + ;AnimCurveNode::R, Model::b_thumbstick + C: "OP",2285722608720,2287400109120, "Lcl Rotation" + + ;AnimCurveNode::S, Model::b_thumbstick + C: "OP",2285722608096,2287400109120, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::b_thumbstick + C: "OP",2285722610800,2287400109120, "Visibility" + + ;AnimCurveNode::filmboxTypeID, Model::b_thumbstick + C: "OP",2285852484704,2287400109120, "filmboxTypeID" + + ;AnimCurveNode::lockInfluenceWeights, Model::b_thumbstick + C: "OP",2285852485536,2287400109120, "lockInfluenceWeights" + + ;Deformer::, Geometry:: + C: "OO",2287478708576,2285110195968 + + ;Texture::file5, Material::bothControllerMAT + C: "OP",2286596665616,2286526865984, "Maya|TEX_global_diffuse_cube" + + ;Texture::file6, Material::bothControllerMAT + C: "OP",2286596659856,2286526865984, "Maya|TEX_global_specular_cube" + + ;Texture::file7, Material::bothControllerMAT + C: "OP",2286596653136,2286526865984, "Maya|TEX_brdf_lut" + + ;Texture::file4, Material::bothControllerMAT + C: "OP",2286596654576,2286526865984, "Maya|TEX_color_map" + + ;Texture::metallicRoughnessTexture, Material::bothControllerMAT + C: "OP",2286596652656,2286526865984, "Maya|TEX_metallic_map" + + ;Texture::metallicRoughnessTexture, Material::bothControllerMAT + C: "OP",2286596652656,2286526865984, "Maya|TEX_roughness_map" + + ;Material::bothControllerMAT, Implementation::bothControllerMAT_Implementation + C: "OO",2286526865984,2286733631440 + + ;BindingTable::root 5, Implementation::bothControllerMAT_Implementation + C: "OO",2285967142992,2286733631440 + + ;Video::metallicRoughnessTexture, Texture::metallicRoughnessTexture + C: "OO",2286596660336,2286596652656 + + ;Video::file6, Texture::file6 + C: "OO",2286596666096,2286596659856 + + ;Video::file5, Texture::file5 + C: "OO",2286596666576,2286596665616 + + ;Video::file7, Texture::file7 + C: "OO",2286596655536,2286596653136 + + ;Video::file4, Texture::file4 + C: "OO",2286596656496,2286596654576 + + ;Geometry::, Model::r_rainier_mesh + C: "OO",2285110195968,2287400102160 + + ;Material::bothControllerMAT, Model::r_rainier_mesh + C: "OO",2286526865984,2287400102160 + + ;NodeAttribute::, Model::right_laser_begin + C: "OO",2285107654816,2287400113760 + + ;Model::pasted__laser_end_pointer, Model::right_laser_begin + C: "OO",2287400104480,2287400113760 + + ;NodeAttribute::, Model::pasted__laser_end_pointer + C: "OO",2285107656048,2287400104480 + + ;AnimCurve::, AnimCurveNode::lockInfluenceWeights + C: "OP",2286529249728,2285847546576, "d|lockInfluenceWeights" + + ;AnimCurve::, AnimCurveNode::lockInfluenceWeights + C: "OP",2286529251968,2285852483456, "d|lockInfluenceWeights" + + ;AnimCurve::, AnimCurveNode::lockInfluenceWeights + C: "OP",2286529248928,2285852483248, "d|lockInfluenceWeights" + + ;AnimCurve::, AnimCurveNode::lockInfluenceWeights + C: "OP",2286529253888,2285852483872, "d|lockInfluenceWeights" + + ;AnimCurve::, AnimCurveNode::lockInfluenceWeights + C: "OP",2286529253728,2285852485328, "d|lockInfluenceWeights" + + ;AnimCurve::, AnimCurveNode::lockInfluenceWeights + C: "OP",2286529254368,2285852485536, "d|lockInfluenceWeights" + + ;Model::right_oculus_controller_world, DisplayLayer::leftLayer + C: "OO",2287400062720,2287478717024 + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",2286526862464,2285726907776, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286526864864,2285726907984, "d|X" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286526867104,2285726907984, "d|Y" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286526865664,2285726907984, "d|Z" + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",2286526865824,2285726909440, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286526867744,2285108396864, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286526863904,2285108396864, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286526867264,2285108396864, "d|Z" + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",2286526866464,2285108394992, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286526867904,2285108395824, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286526868224,2285108395824, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286526863264,2285108395824, "d|Z" + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",2286526866624,2285108396240, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286526864544,2285108397904, "d|X" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286526869184,2285108397904, "d|Y" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286526866784,2285108397904, "d|Z" + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",2286526869344,2285722606640, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286526861664,2285722606848, "d|X" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2285102393552,2285722606848, "d|Y" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",2286529252768,2285722606848, "d|Z" + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",2286529250048,2285722610800, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286529249568,2285722608720, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286529253248,2285722608720, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",2286529251488,2285722608720, "d|Z" + + ;SubDeformer::, Deformer:: + C: "OO",2286590739136,2287478708576 + + ;SubDeformer::, Deformer:: + C: "OO",2286590742896,2287478708576 + + ;SubDeformer::, Deformer:: + C: "OO",2286590728608,2287478708576 + + ;SubDeformer::, Deformer:: + C: "OO",2286590730112,2287478708576 + + ;SubDeformer::, Deformer:: + C: "OO",2286590734624,2287478708576 + + ;SubDeformer::, Deformer:: + C: "OO",2286590736880,2287478708576 + + ;SubDeformer::, Deformer:: + C: "OO",2286590739888,2287478708576 + + ;Model::right_oculus_controller_world, SubDeformer:: + C: "OO",2287400062720,2286590739136 + + ;Model::b_button_oculus, SubDeformer:: + C: "OO",2287400067360,2286590742896 + + ;Model::b_trigger_front, SubDeformer:: + C: "OO",2287400095200,2286590728608 + + ;Model::b_trigger_grip, SubDeformer:: + C: "OO",2287400097520,2286590730112 + + ;Model::b_button_b, SubDeformer:: + C: "OO",2287400099840,2286590734624 + + ;Model::b_button_a, SubDeformer:: + C: "OO",2287400069680,2286590736880 + + ;Model::b_thumbstick, SubDeformer:: + C: "OO",2287400109120,2286590739888 +} +;Takes section +;---------------------------------------------------- + +Takes: { + Current: "Take 001" + Take: "Take 001" { + FileName: "Take_001.tak" + LocalTime: 0,83135084400 + ReferenceTime: 0,83135084400 + } +} diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Right.fbx.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Right.fbx.meta new file mode 100644 index 00000000..390be236 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuest2/OculusTouchForQuest2_Right.fbx.meta @@ -0,0 +1,1073 @@ +fileFormatVersion: 2 +guid: 25b5eb0761edb6346b0b3444af76b55e +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: b_button_a + 100002: b_button_b + 100004: b_button_oculus + 100006: b_thumbstick + 100008: b_trigger_front + 100010: b_trigger_grip + 100012: pasted__laser_end_pointer + 100014: right_laser_begin + 100016: right_oculus_controller_world + 100018: //RootNode + 100020: right_quest2_mesh + 100022: r_rainier_mesh + 400000: b_button_a + 400002: b_button_b + 400004: b_button_oculus + 400006: b_thumbstick + 400008: b_trigger_front + 400010: b_trigger_grip + 400012: pasted__laser_end_pointer + 400014: right_laser_begin + 400016: right_oculus_controller_world + 400018: //RootNode + 400020: right_quest2_mesh + 400022: r_rainier_mesh + 2100000: bothControllerMAT + 4300000: right_quest2_mesh + 4300002: r_rainier_mesh + 7400000: right_quest2_controller_animation + 7400002: right_quest2_controller_button01 + 7400004: right_quest2_controller_stickSE + 7400006: right_quest2_controller_trigger + 7400008: right_quest2_controller_button02 + 7400010: right_quest2_controller_button03 + 7400012: right_quest2_controller_stickSW + 7400014: right_quest2_controller_stickE + 7400016: right_quest2_controller_grip + 7400018: right_quest2_controller_stickNW + 7400020: right_quest2_controller_stickNE + 7400022: right_quest2_controller_stickW + 7400024: right_quest2_controller_stickS + 7400026: right_quest2_controller_neutral_button01 + 7400028: right_quest2_controller_neutral_button02 + 7400030: right_quest2_controller_neutral_button03 + 7400032: right_quest2_controller_neutral_grip + 7400034: right_quest2_controller_neutral_trigger + 7400036: right_quest2_controller_stickN + 9500000: //RootNode + 13700000: right_quest2_mesh + 13700002: r_rainier_mesh + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: bothControllerMAT + second: {fileID: 2100000, guid: d7292a5e1ae17a64c95f3081d2c6be5a, type: 2} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: + - serializedVersion: 16 + name: right_quest2_controller_animation + takeName: Take 001 + firstFrame: 0 + lastFrame: 54 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_button01 + takeName: Take 001 + firstFrame: 6 + lastFrame: 7 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 1 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 0 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_stickSE + takeName: Take 001 + firstFrame: 50 + lastFrame: 51 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 1 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_trigger + takeName: Take 001 + firstFrame: 20 + lastFrame: 21 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 0 + - path: right_oculus_controller_world/b_trigger_front + weight: 1 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_button02 + takeName: Take 001 + firstFrame: 10 + lastFrame: 11 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 1 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 0 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_button03 + takeName: Take 001 + firstFrame: 30 + lastFrame: 31 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 1 + - path: right_oculus_controller_world/b_thumbstick + weight: 0 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_stickSW + takeName: Take 001 + firstFrame: 44 + lastFrame: 45 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 1 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_stickE + takeName: Take 001 + firstFrame: 42 + lastFrame: 43 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 1 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_grip + takeName: Take 001 + firstFrame: 26 + lastFrame: 27 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 0 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 1 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_stickNW + takeName: Take 001 + firstFrame: 46 + lastFrame: 47 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 1 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_stickNE + takeName: Take 001 + firstFrame: 48 + lastFrame: 49 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 1 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_stickW + takeName: Take 001 + firstFrame: 40 + lastFrame: 41 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 1 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_stickS + takeName: Take 001 + firstFrame: 38 + lastFrame: 39 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 1 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_neutral_button01 + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 1 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 0 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_neutral_button02 + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 1 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 0 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_neutral_button03 + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 1 + - path: right_oculus_controller_world/b_thumbstick + weight: 0 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_neutral_grip + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 0 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 1 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_neutral_trigger + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 0 + - path: right_oculus_controller_world/b_trigger_front + weight: 1 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest2_controller_stickN + takeName: Take 001 + firstFrame: 36 + lastFrame: 37 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: r_rainier_mesh + weight: 0 + - path: right_laser_begin + weight: 0 + - path: right_laser_begin/pasted__laser_end_pointer + weight: 0 + - path: right_oculus_controller_world + weight: 0 + - path: right_oculus_controller_world/b_button_a + weight: 0 + - path: right_oculus_controller_world/b_button_b + weight: 0 + - path: right_oculus_controller_world/b_button_oculus + weight: 0 + - path: right_oculus_controller_world/b_thumbstick + weight: 1 + - path: right_oculus_controller_world/b_trigger_front + weight: 0 + - path: right_oculus_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 0.01 + hasPreviousCalculatedGlobalScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 2 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation.meta new file mode 100644 index 00000000..b4b7301c --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9e964712df095d74d8eaac4bfe4b40e4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSLeftAnimation.controller b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSLeftAnimation.controller new file mode 100644 index 00000000..52b00acb --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSLeftAnimation.controller @@ -0,0 +1,679 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: OculusTouchQuestAndRiftSLeftAnimation + serializedVersion: 5 + m_AnimatorParameters: + - m_Name: Button 1 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Button 2 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Button 3 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Grip + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Trigger + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Joy X + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Joy Y + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 1107521045517535590} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 1 + m_StateMachine: {fileID: 1107952837483422278} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 2 + m_StateMachine: {fileID: 1107661262722686046} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 3 + m_StateMachine: {fileID: 1107617238690245714} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Grip + m_StateMachine: {fileID: 1107611457393986700} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Trigger + m_StateMachine: {fileID: 1107446127407293338} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Joystick + m_StateMachine: {fileID: 1107573175546992920} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!206 &206217599917462660 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400030, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400024, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 2 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206386242654772672 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400034, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400006, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Trigger + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206443678587036618 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400032, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400026, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 3 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206473048002560522 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400036, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400018, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Grip + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206691222721410912 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400008, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 0.14285715 + m_Position: {x: 1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400020, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 0.2857143 + m_Position: {x: 0, y: -1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 0.42857143 + m_Position: {x: -1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400016, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 0.5714286 + m_Position: {x: 0.707106, y: 0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400014, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 0.71428573 + m_Position: {x: -0.707106, y: 0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400010, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 0.85714287 + m_Position: {x: 0.707106, y: -0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400012, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 1 + m_Position: {x: -0.707106, y: -0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Joy X + m_BlendParameterY: Joy Y + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 3 +--- !u!206 &206971632958765170 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400028, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400022, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 1 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!1102 &1102121122168462422 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 3 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206443678587036618} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102282624834042376 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Trigger + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206386242654772672} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102363758892143746 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 1 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206971632958765170} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102481999648770782 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joystick + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206691222721410912} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102544609724274744 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grip + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206473048002560522} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102952634917922508 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 2 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206217599917462660} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &1107446127407293338 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Trigger + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102282624834042376} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102282624834042376} +--- !u!1107 &1107521045517535590 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: [] + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 0} +--- !u!1107 &1107573175546992920 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joystick + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102481999648770782} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102481999648770782} +--- !u!1107 &1107611457393986700 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grip + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102544609724274744} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102544609724274744} +--- !u!1107 &1107617238690245714 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 3 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102121122168462422} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102121122168462422} +--- !u!1107 &1107661262722686046 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 2 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102952634917922508} + m_Position: {x: 24, y: 168, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102952634917922508} +--- !u!1107 &1107952837483422278 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: utton 11 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102363758892143746} + m_Position: {x: 24, y: 168, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102363758892143746} diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSLeftAnimation.controller.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSLeftAnimation.controller.meta new file mode 100644 index 00000000..826dac79 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSLeftAnimation.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 92dd1ff21e711dc4b8b57eb39ab807ac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSRightAnimation.controller b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSRightAnimation.controller new file mode 100644 index 00000000..a887e87c --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSRightAnimation.controller @@ -0,0 +1,679 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: OculusTouchQuestAndRiftSRightAnimation + serializedVersion: 5 + m_AnimatorParameters: + - m_Name: Button 1 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Button 2 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Button 3 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Grip + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Trigger + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Joy X + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Joy Y + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 1107521045517535590} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 1 + m_StateMachine: {fileID: 1107952837483422278} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 2 + m_StateMachine: {fileID: 1107661262722686046} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 3 + m_StateMachine: {fileID: 1107617238690245714} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Grip + m_StateMachine: {fileID: 1107611457393986700} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Trigger + m_StateMachine: {fileID: 1107446127407293338} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Joystick + m_StateMachine: {fileID: 1107573175546992920} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!206 &206217599917462660 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400030, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400008, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 2 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206386242654772672 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400034, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400006, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Trigger + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206443678587036618 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400032, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400010, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 3 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206473048002560522 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400036, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400016, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Grip + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206691222721410912 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400026, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400014, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 0.14285715 + m_Position: {x: 1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400024, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 0.2857143 + m_Position: {x: 0, y: -1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400022, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 0.42857143 + m_Position: {x: -1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400020, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 0.5714286 + m_Position: {x: 0.707106, y: 0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400018, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 0.71428573 + m_Position: {x: -0.707106, y: 0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 0.85714287 + m_Position: {x: 0.707106, y: -0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400012, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 1 + m_Position: {x: -0.707106, y: -0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Joy X + m_BlendParameterY: Joy Y + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 3 +--- !u!206 &206971632958765170 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400028, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 1 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!1102 &1102121122168462422 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 3 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206443678587036618} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102282624834042376 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Trigger + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206386242654772672} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102363758892143746 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 1 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206971632958765170} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102481999648770782 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joystick + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206691222721410912} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102544609724274744 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grip + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206473048002560522} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102952634917922508 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 2 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206217599917462660} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &1107446127407293338 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Trigger + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102282624834042376} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102282624834042376} +--- !u!1107 &1107521045517535590 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: [] + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 0} +--- !u!1107 &1107573175546992920 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joystick + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102481999648770782} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102481999648770782} +--- !u!1107 &1107611457393986700 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grip + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102544609724274744} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102544609724274744} +--- !u!1107 &1107617238690245714 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 3 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102121122168462422} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102121122168462422} +--- !u!1107 &1107661262722686046 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 2 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102952634917922508} + m_Position: {x: 24, y: 168, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102952634917922508} +--- !u!1107 &1107952837483422278 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: utton 11 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102363758892143746} + m_Position: {x: 24, y: 168, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102363758892143746} diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSRightAnimation.controller.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSRightAnimation.controller.meta new file mode 100644 index 00000000..f53e4033 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/Animation/OculusTouchQuestAndRiftSRightAnimation.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f974d61f39a79c408d54b32f31f186c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Left.fbx b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Left.fbx index 04a438ea..738bf499 100644 Binary files a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Left.fbx and b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Left.fbx differ diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Left.fbx.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Left.fbx.meta index af1e5095..4d6d5041 100644 --- a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Left.fbx.meta +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Left.fbx.meta @@ -1,16 +1,64 @@ fileFormatVersion: 2 guid: 32fbc8bcebb64584da5868aeeb086cda ModelImporter: - serializedVersion: 22 + serializedVersion: 23 fileIDToRecycleName: 100000: //RootNode + 100002: b_button_oculus + 100004: b_button_x + 100006: b_button_y + 100008: b_thumbstick + 100010: b_trigger_front + 100012: b_trigger_grip + 100014: l_controller_ply + 100016: left_monterey_controller_world + 100018: prp00002questController_animrig:f_world + 100020: prp00002questController_animrig:left_monterey_controller_rig + 100022: prp00002questController_animrig:RIG_left_monterey_controller_world 400000: //RootNode + 400002: b_button_oculus + 400004: b_button_x + 400006: b_button_y + 400008: b_thumbstick + 400010: b_trigger_front + 400012: b_trigger_grip + 400014: l_controller_ply + 400016: left_monterey_controller_world + 400018: prp00002questController_animrig:f_world + 400020: prp00002questController_animrig:left_monterey_controller_rig + 400022: prp00002questController_animrig:RIG_left_monterey_controller_world 2100000: controllerMTL + 2100002: controlerMAT 2300000: //RootNode 3300000: //RootNode 4300000: l_controller_ply + 7400000: left_quest_controller_animation + 7400002: left_quest_controller_stickW + 7400004: left_quest_controller_stickE + 7400006: left_quest_controller_trigger + 7400008: left_quest_controller_stickN + 7400010: left_quest_controller_stickSE + 7400012: left_quest_controller_stickSW + 7400014: left_quest_controller_stickNW + 7400016: left_quest_controller_stickNE + 7400018: left_quest_controller_grip + 7400020: left_quest_controller_stickS + 7400022: left_quest_controller_button01 + 7400024: left_quest_controller_button02 + 7400026: left_quest_controller_button03 + 7400028: left_quest_controller_button01_neutral + 7400030: left_quest_controller_button02_neutral + 7400032: left_quest_controller_button03_neutral + 7400034: left_quest_controller_trigger_neutral + 7400036: left_quest_controller_grip_neutral 9500000: //RootNode + 13700000: l_controller_ply externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: controlerMAT + second: {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} - first: type: UnityEngine:Material assembly: UnityEngine.CoreModule @@ -34,6 +82,7 @@ ModelImporter: animationRetargetingWarnings: animationDoRetargetingWarnings: 0 importAnimatedCustomProperties: 0 + importConstraints: 0 animationCompression: 1 animationRotationError: 0.5 animationPositionError: 0.5 @@ -41,13 +90,978 @@ ModelImporter: animationWrapMode: 0 extraExposedTransformPaths: [] extraUserProperties: [] - clipAnimations: [] + clipAnimations: + - serializedVersion: 16 + name: left_quest_controller_animation + takeName: Take 001 + firstFrame: 0 + lastFrame: 60 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_stickW + takeName: Take 001 + firstFrame: 40 + lastFrame: 41 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 1 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_stickE + takeName: Take 001 + firstFrame: 42 + lastFrame: 43 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 1 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_trigger + takeName: Take 001 + firstFrame: 20 + lastFrame: 21 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 0 + - path: left_monterey_controller_world/b_trigger_front + weight: 1 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_stickN + takeName: Take 001 + firstFrame: 36 + lastFrame: 37 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 1 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_stickSE + takeName: Take 001 + firstFrame: 50 + lastFrame: 51 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 1 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_stickSW + takeName: Take 001 + firstFrame: 44 + lastFrame: 45 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 1 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_stickNW + takeName: Take 001 + firstFrame: 46 + lastFrame: 47 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 1 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_stickNE + takeName: Take 001 + firstFrame: 48 + lastFrame: 49 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 1 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_grip + takeName: Take 001 + firstFrame: 26 + lastFrame: 27 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 0 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 1 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_stickS + takeName: Take 001 + firstFrame: 38 + lastFrame: 39 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 1 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_button01 + takeName: Take 001 + firstFrame: 6 + lastFrame: 7 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 1 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 0 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_button02 + takeName: Take 001 + firstFrame: 10 + lastFrame: 11 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 1 + - path: left_monterey_controller_world/b_thumbstick + weight: 0 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_button03 + takeName: Take 001 + firstFrame: 30 + lastFrame: 31 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 1 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 0 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_button01_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 1 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 0 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_button02_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 1 + - path: left_monterey_controller_world/b_thumbstick + weight: 0 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_button03_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 1 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 0 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_trigger_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 0 + - path: left_monterey_controller_world/b_trigger_front + weight: 1 + - path: left_monterey_controller_world/b_trigger_grip + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_quest_controller_grip_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: l_controller_ply + weight: 0 + - path: left_monterey_controller_world + weight: 0 + - path: left_monterey_controller_world/b_button_oculus + weight: 0 + - path: left_monterey_controller_world/b_button_x + weight: 0 + - path: left_monterey_controller_world/b_button_y + weight: 0 + - path: left_monterey_controller_world/b_thumbstick + weight: 0 + - path: left_monterey_controller_world/b_trigger_front + weight: 0 + - path: left_monterey_controller_world/b_trigger_grip + weight: 1 + - path: prp00002questController_animrig:left_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:left_monterey_controller_rig/prp00002questController_animrig:RIG_left_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 isReadable: 1 meshes: lODScreenPercentages: [] globalScale: 1 meshCompression: 0 addColliders: 0 + useSRGBMaterialColor: 1 importVisibility: 1 importBlendShapes: 1 importCameras: 1 @@ -65,11 +1079,16 @@ ModelImporter: secondaryUVHardAngle: 88 secondaryUVPackMargin: 4 useFileScale: 1 + previousCalculatedGlobalScale: 0.01 + hasPreviousCalculatedGlobalScale: 1 tangentSpace: normalSmoothAngle: 60 - normalImportMode: 0 + normalImportMode: 1 tangentImportMode: 3 normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 importAnimation: 1 copyAvatar: 0 humanDescription: @@ -84,7 +1103,6 @@ ModelImporter: legStretch: 0.05 feetSpacing: 0 rootMotionBoneName: - rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} hasTranslationDoF: 0 hasExtraRoot: 0 skeletonHasParents: 1 diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Right.fbx b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Right.fbx index 7a63b79a..1fb33c03 100644 Binary files a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Right.fbx and b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Right.fbx differ diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Right.fbx.meta b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Right.fbx.meta index 4cc0e443..f7112eed 100644 --- a/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Right.fbx.meta +++ b/Assets/Oculus/VR/Meshes/OculusTouchForQuestAndRiftS/OculusTouchForQuestAndRiftS_Right.fbx.meta @@ -1,16 +1,64 @@ fileFormatVersion: 2 guid: 37ba10a26a648144fa2390c8adfb2c8a ModelImporter: - serializedVersion: 22 + serializedVersion: 23 fileIDToRecycleName: 100000: //RootNode + 100002: b_button_a + 100004: b_button_b + 100006: b_button_oculus + 100008: b_thumbstick + 100010: b_trigger_front + 100012: b_trigger_grip + 100014: prp00002questController_animrig:f_world + 100016: prp00002questController_animrig:RIG_right_monterey_controller_world + 100018: prp00002questController_animrig:right_monterey_controller_rig + 100020: r_controller_ply + 100022: right_monterey_controller_world 400000: //RootNode + 400002: b_button_a + 400004: b_button_b + 400006: b_button_oculus + 400008: b_thumbstick + 400010: b_trigger_front + 400012: b_trigger_grip + 400014: prp00002questController_animrig:f_world + 400016: prp00002questController_animrig:RIG_right_monterey_controller_world + 400018: prp00002questController_animrig:right_monterey_controller_rig + 400020: r_controller_ply + 400022: right_monterey_controller_world 2100000: controllerMTL + 2100002: controlerMAT 2300000: //RootNode 3300000: //RootNode 4300000: r_controller_ply + 7400000: right_quest_controller_animation + 7400002: right_quest_controller_button01 + 7400004: right_quest_controller_stickSE + 7400006: right_quest_controller_trigger + 7400008: right_quest_controller_button02 + 7400010: right_quest_controller_button03 + 7400012: right_quest_controller_stickSW + 7400014: right_quest_controller_stickE + 7400016: right_quest_controller_grip + 7400018: right_quest_controller_stickNW + 7400020: right_quest_controller_stickNE + 7400022: right_quest_controller_stickW + 7400024: right_quest_controller_stickS + 7400026: right_quest_controller_stickN + 7400028: right_quest_controller_button01_neutral + 7400030: right_quest_controller_button02_neutral + 7400032: right_quest_controller_button03_neutral + 7400034: right_quest_controller_trigger_neutral + 7400036: right_quest_controller_grip_neutral 9500000: //RootNode + 13700000: r_controller_ply externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: controlerMAT + second: {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} - first: type: UnityEngine:Material assembly: UnityEngine.CoreModule @@ -34,6 +82,7 @@ ModelImporter: animationRetargetingWarnings: animationDoRetargetingWarnings: 0 importAnimatedCustomProperties: 0 + importConstraints: 0 animationCompression: 1 animationRotationError: 0.5 animationPositionError: 0.5 @@ -41,13 +90,978 @@ ModelImporter: animationWrapMode: 0 extraExposedTransformPaths: [] extraUserProperties: [] - clipAnimations: [] + clipAnimations: + - serializedVersion: 16 + name: right_quest_controller_animation + takeName: Take 001 + firstFrame: 0 + lastFrame: 60 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_button01 + takeName: Take 001 + firstFrame: 6 + lastFrame: 7 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 1 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 0 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_stickSE + takeName: Take 001 + firstFrame: 50 + lastFrame: 51 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 1 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_trigger + takeName: Take 001 + firstFrame: 20 + lastFrame: 21 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 0 + - path: right_monterey_controller_world/b_trigger_front + weight: 1 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_button02 + takeName: Take 001 + firstFrame: 10 + lastFrame: 11 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 1 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 0 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_button03 + takeName: Take 001 + firstFrame: 30 + lastFrame: 31 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 1 + - path: right_monterey_controller_world/b_thumbstick + weight: 0 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_stickSW + takeName: Take 001 + firstFrame: 44 + lastFrame: 45 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 1 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_stickE + takeName: Take 001 + firstFrame: 42 + lastFrame: 43 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 1 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_grip + takeName: Take 001 + firstFrame: 26 + lastFrame: 27 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 0 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 1 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_stickNW + takeName: Take 001 + firstFrame: 46 + lastFrame: 47 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 1 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_stickNE + takeName: Take 001 + firstFrame: 48 + lastFrame: 49 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 1 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_stickW + takeName: Take 001 + firstFrame: 40 + lastFrame: 41 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 1 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_stickS + takeName: Take 001 + firstFrame: 38 + lastFrame: 39 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 1 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_stickN + takeName: Take 001 + firstFrame: 36 + lastFrame: 37 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 1 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_button01_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 1 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 0 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_button02_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 1 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 0 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_button03_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 1 + - path: right_monterey_controller_world/b_thumbstick + weight: 0 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_trigger_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 0 + - path: right_monterey_controller_world/b_trigger_front + weight: 1 + - path: right_monterey_controller_world/b_trigger_grip + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_quest_controller_grip_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: prp00002questController_animrig:right_monterey_controller_rig + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world + weight: 0 + - path: prp00002questController_animrig:right_monterey_controller_rig/prp00002questController_animrig:RIG_right_monterey_controller_world/prp00002questController_animrig:f_world + weight: 0 + - path: r_controller_ply + weight: 0 + - path: right_monterey_controller_world + weight: 0 + - path: right_monterey_controller_world/b_button_a + weight: 0 + - path: right_monterey_controller_world/b_button_b + weight: 0 + - path: right_monterey_controller_world/b_button_oculus + weight: 0 + - path: right_monterey_controller_world/b_thumbstick + weight: 0 + - path: right_monterey_controller_world/b_trigger_front + weight: 0 + - path: right_monterey_controller_world/b_trigger_grip + weight: 1 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 isReadable: 1 meshes: lODScreenPercentages: [] globalScale: 1 meshCompression: 0 addColliders: 0 + useSRGBMaterialColor: 1 importVisibility: 1 importBlendShapes: 1 importCameras: 1 @@ -65,11 +1079,16 @@ ModelImporter: secondaryUVHardAngle: 88 secondaryUVPackMargin: 4 useFileScale: 1 + previousCalculatedGlobalScale: 0.01 + hasPreviousCalculatedGlobalScale: 1 tangentSpace: normalSmoothAngle: 60 - normalImportMode: 0 + normalImportMode: 1 tangentImportMode: 3 normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 importAnimation: 1 copyAvatar: 0 humanDescription: @@ -84,7 +1103,6 @@ ModelImporter: legStretch: 0.05 feetSpacing: 0 rootMotionBoneName: - rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} hasTranslationDoF: 0 hasExtraRoot: 0 skeletonHasParents: 1 diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation.meta b/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation.meta new file mode 100644 index 00000000..6bb0e1bb --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3b260c1246189f4ba4c083650747005 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation/OculusTouchRiftLeftAnimation.controller b/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation/OculusTouchRiftLeftAnimation.controller new file mode 100644 index 00000000..7b488070 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation/OculusTouchRiftLeftAnimation.controller @@ -0,0 +1,679 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: OculusTouchRiftLeftAnimation + serializedVersion: 5 + m_AnimatorParameters: + - m_Name: Button 1 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Button 2 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Button 3 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Grip + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Trigger + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Joy X + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Joy Y + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 1107521045517535590} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 1 + m_StateMachine: {fileID: 1107952837483422278} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 2 + m_StateMachine: {fileID: 1107661262722686046} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 3 + m_StateMachine: {fileID: 1107617238690245714} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Grip + m_StateMachine: {fileID: 1107611457393986700} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Trigger + m_StateMachine: {fileID: 1107446127407293338} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Joystick + m_StateMachine: {fileID: 1107573175546992920} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!206 &206217599917462660 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400034, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400024, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 2 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206386242654772672 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400028, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400006, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Trigger + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206443678587036618 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400036, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400026, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 3 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206473048002560522 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400030, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400018, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Grip + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206691222721410912 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400008, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 0.14285715 + m_Position: {x: 1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400020, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 0.2857143 + m_Position: {x: 0, y: -1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400012, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 0.42857143 + m_Position: {x: -1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400016, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 0.5714286 + m_Position: {x: 0.707106, y: 0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 0.71428573 + m_Position: {x: -0.707106, y: 0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400010, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 0.85714287 + m_Position: {x: 0.707106, y: -0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 1 + m_Position: {x: -0.707106, y: -0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Joy X + m_BlendParameterY: Joy Y + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 3 +--- !u!206 &206971632958765170 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400032, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400022, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 1 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!1102 &1102121122168462422 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 3 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206443678587036618} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102282624834042376 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Trigger + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206386242654772672} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102363758892143746 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 1 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206971632958765170} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102481999648770782 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joystick + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206691222721410912} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102544609724274744 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grip + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206473048002560522} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102952634917922508 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 2 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206217599917462660} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &1107446127407293338 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Trigger + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102282624834042376} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102282624834042376} +--- !u!1107 &1107521045517535590 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: [] + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 0} +--- !u!1107 &1107573175546992920 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joystick + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102481999648770782} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102481999648770782} +--- !u!1107 &1107611457393986700 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grip + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102544609724274744} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102544609724274744} +--- !u!1107 &1107617238690245714 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 3 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102121122168462422} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102121122168462422} +--- !u!1107 &1107661262722686046 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 2 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102952634917922508} + m_Position: {x: 24, y: 168, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102952634917922508} +--- !u!1107 &1107952837483422278 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: utton 11 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102363758892143746} + m_Position: {x: 24, y: 168, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102363758892143746} diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation/OculusTouchRiftLeftAnimation.controller.meta b/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation/OculusTouchRiftLeftAnimation.controller.meta new file mode 100644 index 00000000..99f5d5f1 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation/OculusTouchRiftLeftAnimation.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3c08ce434693a4740bb5d256ffa5f8d1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation/OculusTouchRiftRightAnimation.controller b/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation/OculusTouchRiftRightAnimation.controller new file mode 100644 index 00000000..04f292ba --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation/OculusTouchRiftRightAnimation.controller @@ -0,0 +1,679 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: OculusTouchRiftRightAnimation + serializedVersion: 5 + m_AnimatorParameters: + - m_Name: Button 1 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Button 2 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Button 3 + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Grip + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Trigger + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Joy X + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Joy Y + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 1107521045517535590} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 1 + m_StateMachine: {fileID: 1107952837483422278} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 2 + m_StateMachine: {fileID: 1107661262722686046} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Button 3 + m_StateMachine: {fileID: 1107617238690245714} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Grip + m_StateMachine: {fileID: 1107611457393986700} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Trigger + m_StateMachine: {fileID: 1107446127407293338} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} + - serializedVersion: 5 + m_Name: Joystick + m_StateMachine: {fileID: 1107573175546992920} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 1 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!206 &206217599917462660 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400032, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400008, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 2 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206386242654772672 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400030, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400006, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Trigger + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206443678587036618 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400034, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400010, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 3 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206473048002560522 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400036, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400016, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Grip + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &206691222721410912 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400026, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 0.14285715 + m_Position: {x: 1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400024, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 0.2857143 + m_Position: {x: 0, y: -1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400022, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 0.42857143 + m_Position: {x: -1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400020, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 0.5714286 + m_Position: {x: 0.707106, y: 0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400018, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 0.71428573 + m_Position: {x: -0.707106, y: 0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 0.85714287 + m_Position: {x: 0.707106, y: -0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400012, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 1 + m_Position: {x: -0.707106, y: -0.707106} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Joy X + m_BlendParameterY: Joy Y + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 3 +--- !u!206 &206971632958765170 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400028, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Button 1 + m_Mirror: 0 + m_BlendParameter: Button 1 + m_BlendParameterY: Button 1 + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!1102 &1102121122168462422 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 3 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206443678587036618} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102282624834042376 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Trigger + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206386242654772672} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102363758892143746 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 1 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206971632958765170} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102481999648770782 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joystick + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206691222721410912} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102544609724274744 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grip + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206473048002560522} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &1102952634917922508 +AnimatorState: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 2 + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 206217599917462660} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &1107446127407293338 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Trigger + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102282624834042376} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102282624834042376} +--- !u!1107 &1107521045517535590 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: [] + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 0} +--- !u!1107 &1107573175546992920 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joystick + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102481999648770782} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102481999648770782} +--- !u!1107 &1107611457393986700 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grip + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102544609724274744} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102544609724274744} +--- !u!1107 &1107617238690245714 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 3 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102121122168462422} + m_Position: {x: 24, y: 180, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102121122168462422} +--- !u!1107 &1107661262722686046 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Button 2 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102952634917922508} + m_Position: {x: 24, y: 168, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102952634917922508} +--- !u!1107 &1107952837483422278 +AnimatorStateMachine: + serializedVersion: 5 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: utton 11 + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 1102363758892143746} + m_Position: {x: 24, y: 168, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 1102363758892143746} diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation/OculusTouchRiftRightAnimation.controller.meta b/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation/OculusTouchRiftRightAnimation.controller.meta new file mode 100644 index 00000000..315af5b6 --- /dev/null +++ b/Assets/Oculus/VR/Meshes/OculusTouchForRift/Animation/OculusTouchRiftRightAnimation.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9889b45bb24173a4d93c7f6b5a496800 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForRift/left_touch_controller_model_skel.fbx b/Assets/Oculus/VR/Meshes/OculusTouchForRift/left_touch_controller_model_skel.fbx index 9510e105..92e9d2eb 100644 Binary files a/Assets/Oculus/VR/Meshes/OculusTouchForRift/left_touch_controller_model_skel.fbx and b/Assets/Oculus/VR/Meshes/OculusTouchForRift/left_touch_controller_model_skel.fbx differ diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForRift/left_touch_controller_model_skel.fbx.meta b/Assets/Oculus/VR/Meshes/OculusTouchForRift/left_touch_controller_model_skel.fbx.meta index 3dc3e4ee..346a567a 100644 --- a/Assets/Oculus/VR/Meshes/OculusTouchForRift/left_touch_controller_model_skel.fbx.meta +++ b/Assets/Oculus/VR/Meshes/OculusTouchForRift/left_touch_controller_model_skel.fbx.meta @@ -1,75 +1,57 @@ fileFormatVersion: 2 -guid: 45137ecb2b0f9ba45b80adefb16de509 +guid: c3ba18e9fa5e9104098cbdbb3e23a5b4 ModelImporter: - serializedVersion: 22 + serializedVersion: 23 fileIDToRecycleName: - 100000: lctrl:b_button01 - 100002: lctrl:b_button02 - 100004: lctrl:b_button03 - 100006: lctrl:b_hold - 100008: lctrl:b_stick - 100010: lctrl:b_stick_IGNORE - 100012: lctrl:b_trigger - 100014: lctrl:controller_body_PLY - 100016: lctrl:geometry_null - 100018: lctrl:left_touch_controller_world - 100020: lctrl:main_trigger_PLY - 100022: lctrl:o_button_decal_PLY - 100024: lctrl:o_button_PLY - 100026: lctrl:ring_PLY - 100028: lctrl:side_trigger_PLY - 100030: lctrl:surface_PLY - 100032: lctrl:thumbstick_ball_PLY - 100034: lctrl:x_button_PLY - 100036: lctrl:y_button_PLY - 100038: //RootNode - 400000: lctrl:b_button01 - 400002: lctrl:b_button02 - 400004: lctrl:b_button03 - 400006: lctrl:b_hold - 400008: lctrl:b_stick - 400010: lctrl:b_stick_IGNORE - 400012: lctrl:b_trigger - 400014: lctrl:controller_body_PLY - 400016: lctrl:geometry_null - 400018: lctrl:left_touch_controller_world - 400020: lctrl:main_trigger_PLY - 400022: lctrl:o_button_decal_PLY - 400024: lctrl:o_button_PLY - 400026: lctrl:ring_PLY - 400028: lctrl:side_trigger_PLY - 400030: lctrl:surface_PLY - 400032: lctrl:thumbstick_ball_PLY - 400034: lctrl:x_button_PLY - 400036: lctrl:y_button_PLY - 400038: //RootNode - 2100000: l_controller_mat - 4300000: lctrl:o_button_decal_PLY - 4300002: lctrl:surface_PLY - 4300004: lctrl:x_button_PLY - 4300006: lctrl:y_button_PLY - 4300008: lctrl:ring_PLY - 4300010: lctrl:controller_body_PLY - 4300012: lctrl:main_trigger_PLY - 4300014: lctrl:o_button_PLY - 4300016: lctrl:thumbstick_ball_PLY - 4300018: lctrl:side_trigger_PLY + 100000: b_button01 + 100002: b_button02 + 100004: b_button03 + 100006: b_hold1 + 100008: b_stick + 100010: b_stick_IGNORE + 100012: b_trigger + 100014: //RootNode + 100016: left_touch_controller_world + 100018: left_touch_mesh + 400000: b_button01 + 400002: b_button02 + 400004: b_button03 + 400006: b_hold1 + 400008: b_stick + 400010: b_stick_IGNORE + 400012: b_trigger + 400014: //RootNode + 400016: left_touch_controller_world + 400018: left_touch_mesh + 2100000: pasted__touchPBS_MAT + 2100002: touchControllerMAT + 4300000: left_touch_mesh + 7400000: left_rift_controller_animation + 7400002: left_rift_controller_stickSW + 7400004: left_rift_controller_stickE + 7400006: left_rift_controller_trigger + 7400008: left_rift_controller_stickN + 7400010: left_rift_controller_stickSE + 7400012: left_rift_controller_stickW + 7400014: left_rift_controller_stickNW + 7400016: left_rift_controller_stickNE + 7400018: left_rift_controller_grip + 7400020: left_rift_controller_stickS + 7400022: left_rift_controller_button01 + 7400024: left_rift_controller_button02 + 7400026: left_rift_controller_button03 + 7400028: left_rift_controller_trigger_neutral + 7400030: left_rift_controller_grip_neutral + 7400032: left_rift_controller_button01_neutral + 7400034: left_rift_controller_button02_neutral + 7400036: left_rift_controller_button03_neutral 9500000: //RootNode - 13700000: lctrl:controller_body_PLY - 13700002: lctrl:main_trigger_PLY - 13700004: lctrl:o_button_decal_PLY - 13700006: lctrl:o_button_PLY - 13700008: lctrl:ring_PLY - 13700010: lctrl:side_trigger_PLY - 13700012: lctrl:surface_PLY - 13700014: lctrl:thumbstick_ball_PLY - 13700016: lctrl:x_button_PLY - 13700018: lctrl:y_button_PLY + 13700000: left_touch_mesh externalObjects: - first: type: UnityEngine:Material assembly: UnityEngine.CoreModule - name: l_controller_mat + name: touchControllerMAT second: {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} materials: importMaterials: 1 @@ -89,6 +71,7 @@ ModelImporter: animationRetargetingWarnings: animationDoRetargetingWarnings: 0 importAnimatedCustomProperties: 0 + importConstraints: 0 animationCompression: 1 animationRotationError: 0.5 animationPositionError: 0.5 @@ -96,13 +79,906 @@ ModelImporter: animationWrapMode: 0 extraExposedTransformPaths: [] extraUserProperties: [] - clipAnimations: [] + clipAnimations: + - serializedVersion: 16 + name: left_rift_controller_animation + takeName: Take 001 + firstFrame: 0 + lastFrame: 54 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_stickW + takeName: Take 001 + firstFrame: 40 + lastFrame: 41 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 1 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_stickE + takeName: Take 001 + firstFrame: 42 + lastFrame: 43 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 1 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_trigger + takeName: Take 001 + firstFrame: 20 + lastFrame: 21 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 0 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 1 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_stickN + takeName: Take 001 + firstFrame: 36 + lastFrame: 37 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 1 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_stickSE + takeName: Take 001 + firstFrame: 50 + lastFrame: 51 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 1 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_stickSW + takeName: Take 001 + firstFrame: 44 + lastFrame: 45 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 1 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_stickNW + takeName: Take 001 + firstFrame: 46 + lastFrame: 47 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 1 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_stickNE + takeName: Take 001 + firstFrame: 48 + lastFrame: 49 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 1 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_grip + takeName: Take 001 + firstFrame: 26 + lastFrame: 27 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 1 + - path: left_touch_controller_world/b_stick + weight: 0 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_stickS + takeName: Take 001 + firstFrame: 38 + lastFrame: 39 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 1 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_button01 + takeName: Take 001 + firstFrame: 6 + lastFrame: 7 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 1 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 0 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_button02 + takeName: Take 001 + firstFrame: 10 + lastFrame: 11 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 1 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 0 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_button03 + takeName: Take 001 + firstFrame: 30 + lastFrame: 31 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 1 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 0 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_trigger_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 0 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 1 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_grip_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 1 + - path: left_touch_controller_world/b_stick + weight: 0 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_button01_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 1 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 0 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_button02_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 1 + - path: left_touch_controller_world/b_button03 + weight: 0 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 0 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: left_rift_controller_button03_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: left_touch_controller_world + weight: 0 + - path: left_touch_controller_world/b_button01 + weight: 0 + - path: left_touch_controller_world/b_button02 + weight: 0 + - path: left_touch_controller_world/b_button03 + weight: 1 + - path: left_touch_controller_world/b_hold1 + weight: 0 + - path: left_touch_controller_world/b_stick + weight: 0 + - path: left_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: left_touch_controller_world/b_trigger + weight: 0 + - path: left_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 isReadable: 1 meshes: lODScreenPercentages: [] globalScale: 1 meshCompression: 0 addColliders: 0 + useSRGBMaterialColor: 1 importVisibility: 1 importBlendShapes: 1 importCameras: 1 @@ -120,11 +996,16 @@ ModelImporter: secondaryUVHardAngle: 88 secondaryUVPackMargin: 4 useFileScale: 1 + previousCalculatedGlobalScale: 0.01 + hasPreviousCalculatedGlobalScale: 1 tangentSpace: normalSmoothAngle: 60 normalImportMode: 0 tangentImportMode: 3 normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 importAnimation: 1 copyAvatar: 0 humanDescription: @@ -139,7 +1020,6 @@ ModelImporter: legStretch: 0.05 feetSpacing: 0 rootMotionBoneName: - rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} hasTranslationDoF: 0 hasExtraRoot: 0 skeletonHasParents: 1 diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForRift/right_touch_controller_model_skel.fbx b/Assets/Oculus/VR/Meshes/OculusTouchForRift/right_touch_controller_model_skel.fbx index 06702f0d..69fade0c 100644 Binary files a/Assets/Oculus/VR/Meshes/OculusTouchForRift/right_touch_controller_model_skel.fbx and b/Assets/Oculus/VR/Meshes/OculusTouchForRift/right_touch_controller_model_skel.fbx differ diff --git a/Assets/Oculus/VR/Meshes/OculusTouchForRift/right_touch_controller_model_skel.fbx.meta b/Assets/Oculus/VR/Meshes/OculusTouchForRift/right_touch_controller_model_skel.fbx.meta index 62e424aa..94db444b 100644 --- a/Assets/Oculus/VR/Meshes/OculusTouchForRift/right_touch_controller_model_skel.fbx.meta +++ b/Assets/Oculus/VR/Meshes/OculusTouchForRift/right_touch_controller_model_skel.fbx.meta @@ -1,75 +1,56 @@ fileFormatVersion: 2 -guid: eb8e07cd3e0ce494f81482c6835d2b10 +guid: c3798d66af7bbe54bbfe22a3b302300b ModelImporter: - serializedVersion: 22 + serializedVersion: 23 fileIDToRecycleName: - 100000: rctrl:a_button_PLY - 100002: rctrl:b_button01 - 100004: rctrl:b_button02 - 100006: rctrl:b_button03 - 100008: rctrl:b_button_PLY - 100010: rctrl:b_hold - 100012: rctrl:b_stick - 100014: rctrl:b_stick_IGNORE - 100016: rctrl:b_trigger - 100018: rctrl:controller_body_PLY - 100020: rctrl:geometry_null - 100022: rctrl:main_trigger_PLY - 100024: rctrl:o_button_decal_PLY - 100026: rctrl:o_button_PLY - 100028: rctrl:right_touch_controller_world - 100030: rctrl:ring_PLY - 100032: rctrl:side_trigger_PLY - 100034: rctrl:surface_PLY - 100036: rctrl:thumbstick_ball_PLY - 100038: //RootNode - 400000: rctrl:a_button_PLY - 400002: rctrl:b_button01 - 400004: rctrl:b_button02 - 400006: rctrl:b_button03 - 400008: rctrl:b_button_PLY - 400010: rctrl:b_hold - 400012: rctrl:b_stick - 400014: rctrl:b_stick_IGNORE - 400016: rctrl:b_trigger - 400018: rctrl:controller_body_PLY - 400020: rctrl:geometry_null - 400022: rctrl:main_trigger_PLY - 400024: rctrl:o_button_decal_PLY - 400026: rctrl:o_button_PLY - 400028: rctrl:right_touch_controller_world - 400030: rctrl:ring_PLY - 400032: rctrl:side_trigger_PLY - 400034: rctrl:surface_PLY - 400036: rctrl:thumbstick_ball_PLY - 400038: //RootNode - 2100000: r_controller_mat - 4300000: rctrl:o_button_decal_PLY - 4300002: rctrl:surface_PLY - 4300004: rctrl:ring_PLY - 4300006: rctrl:controller_body_PLY - 4300008: rctrl:main_trigger_PLY - 4300010: rctrl:o_button_PLY - 4300012: rctrl:thumbstick_ball_PLY - 4300014: rctrl:side_trigger_PLY - 4300016: rctrl:b_button_PLY - 4300018: rctrl:a_button_PLY + 100000: b_button01 + 100002: b_button02 + 100004: b_button03 + 100006: b_hold + 100008: b_stick + 100010: b_stick_IGNORE + 100012: b_trigger + 100014: //RootNode + 100016: right_touch_controller_world + 100018: right_touch_mesh + 400000: b_button01 + 400002: b_button02 + 400004: b_button03 + 400006: b_hold + 400008: b_stick + 400010: b_stick_IGNORE + 400012: b_trigger + 400014: //RootNode + 400016: right_touch_controller_world + 400018: right_touch_mesh + 2100000: touchControllerMAT + 4300000: right_touch_mesh + 7400000: right_rift_controller_animation + 7400002: right_rift_controller_button01 + 7400004: right_rift_controller_stickSE + 7400006: right_rift_controller_trigger + 7400008: right_rift_controller_button02 + 7400010: right_rift_controller_button03 + 7400012: right_rift_controller_stickSW + 7400014: right_rift_controller_stickE + 7400016: right_rift_controller_grip + 7400018: right_rift_controller_stickNW + 7400020: right_rift_controller_stickNE + 7400022: right_rift_controller_stickW + 7400024: right_rift_controller_stickS + 7400026: right_rift_controller_stickN + 7400028: right_rift_controller_button01_neutral + 7400030: right_rift_controller_trigger_neutral + 7400032: right_rift_controller_button02_neutral + 7400034: right_rift_controller_button03_neutral + 7400036: right_rift_controller_grip_neutral 9500000: //RootNode - 13700000: rctrl:a_button_PLY - 13700002: rctrl:b_button_PLY - 13700004: rctrl:controller_body_PLY - 13700006: rctrl:main_trigger_PLY - 13700008: rctrl:o_button_decal_PLY - 13700010: rctrl:o_button_PLY - 13700012: rctrl:ring_PLY - 13700014: rctrl:side_trigger_PLY - 13700016: rctrl:surface_PLY - 13700018: rctrl:thumbstick_ball_PLY + 13700000: right_touch_mesh externalObjects: - first: type: UnityEngine:Material assembly: UnityEngine.CoreModule - name: r_controller_mat + name: touchControllerMAT second: {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} materials: importMaterials: 1 @@ -89,6 +70,7 @@ ModelImporter: animationRetargetingWarnings: animationDoRetargetingWarnings: 0 importAnimatedCustomProperties: 0 + importConstraints: 0 animationCompression: 1 animationRotationError: 0.5 animationPositionError: 0.5 @@ -96,13 +78,906 @@ ModelImporter: animationWrapMode: 0 extraExposedTransformPaths: [] extraUserProperties: [] - clipAnimations: [] + clipAnimations: + - serializedVersion: 16 + name: right_rift_controller_animation + takeName: Take 001 + firstFrame: 0 + lastFrame: 54 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_button01 + takeName: Take 001 + firstFrame: 6 + lastFrame: 7 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 1 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 0 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_stickSE + takeName: Take 001 + firstFrame: 50 + lastFrame: 51 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 1 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_trigger + takeName: Take 001 + firstFrame: 20 + lastFrame: 21 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 0 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 1 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_button02 + takeName: Take 001 + firstFrame: 10 + lastFrame: 11 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 1 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 0 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_button03 + takeName: Take 001 + firstFrame: 30 + lastFrame: 31 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 1 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 0 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_stickSW + takeName: Take 001 + firstFrame: 44 + lastFrame: 45 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 1 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_stickE + takeName: Take 001 + firstFrame: 42 + lastFrame: 43 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 1 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_grip + takeName: Take 001 + firstFrame: 26 + lastFrame: 27 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 1 + - path: right_touch_controller_world/b_stick + weight: 0 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_stickNW + takeName: Take 001 + firstFrame: 46 + lastFrame: 47 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 1 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_stickNE + takeName: Take 001 + firstFrame: 48 + lastFrame: 49 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 1 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_stickW + takeName: Take 001 + firstFrame: 40 + lastFrame: 41 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 1 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_stickS + takeName: Take 001 + firstFrame: 38 + lastFrame: 39 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 1 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_stickN + takeName: Take 001 + firstFrame: 36 + lastFrame: 37 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 1 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_button01_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 1 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 0 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_trigger_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 0 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 1 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_button02_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 1 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 1 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 0 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_button03_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 54 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 1 + - path: right_touch_controller_world/b_hold + weight: 0 + - path: right_touch_controller_world/b_stick + weight: 0 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + - serializedVersion: 16 + name: right_rift_controller_grip_neutral + takeName: Take 001 + firstFrame: 0 + lastFrame: 54 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: right_touch_controller_world + weight: 0 + - path: right_touch_controller_world/b_button01 + weight: 0 + - path: right_touch_controller_world/b_button02 + weight: 0 + - path: right_touch_controller_world/b_button03 + weight: 0 + - path: right_touch_controller_world/b_hold + weight: 1 + - path: right_touch_controller_world/b_stick + weight: 0 + - path: right_touch_controller_world/b_stick/b_stick_IGNORE + weight: 0 + - path: right_touch_controller_world/b_trigger + weight: 0 + - path: right_touch_mesh + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 isReadable: 1 meshes: lODScreenPercentages: [] globalScale: 1 meshCompression: 0 addColliders: 0 + useSRGBMaterialColor: 1 importVisibility: 1 importBlendShapes: 1 importCameras: 1 @@ -120,11 +995,16 @@ ModelImporter: secondaryUVHardAngle: 88 secondaryUVPackMargin: 4 useFileScale: 1 + previousCalculatedGlobalScale: 0.01 + hasPreviousCalculatedGlobalScale: 1 tangentSpace: normalSmoothAngle: 60 normalImportMode: 0 tangentImportMode: 3 normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 importAnimation: 1 copyAvatar: 0 humanDescription: @@ -139,7 +1019,6 @@ ModelImporter: legStretch: 0.05 feetSpacing: 0 rootMotionBoneName: - rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} hasTranslationDoF: 0 hasExtraRoot: 0 skeletonHasParents: 1 diff --git a/Assets/Oculus/VR/Oculus.VR.asmdef b/Assets/Oculus/VR/Oculus.VR.asmdef index 42b981e0..2c4d2dd1 100644 --- a/Assets/Oculus/VR/Oculus.VR.asmdef +++ b/Assets/Oculus/VR/Oculus.VR.asmdef @@ -15,6 +15,11 @@ "name": "com.unity.xr.oculus", "expression": "", "define": "USING_XR_SDK_OCULUS" + }, + { + "name": "com.unity.xr.oculus", + "expression": "1.4.0", + "define": "USING_COMPATIBLE_OCULUS_XR_PLUGIN_VERSION" } ] } \ No newline at end of file diff --git a/Assets/Oculus/VR/Plugins/1.48.0/Android/OVRPlugin.aar b/Assets/Oculus/VR/Plugins/1.48.0/Android/OVRPlugin.aar.disabled similarity index 100% rename from Assets/Oculus/VR/Plugins/1.48.0/Android/OVRPlugin.aar rename to Assets/Oculus/VR/Plugins/1.48.0/Android/OVRPlugin.aar.disabled diff --git a/Assets/Oculus/VR/Plugins/1.48.0/Android/OVRPlugin.aar.meta b/Assets/Oculus/VR/Plugins/1.48.0/Android/OVRPlugin.aar.disabled.meta similarity index 100% rename from Assets/Oculus/VR/Plugins/1.48.0/Android/OVRPlugin.aar.meta rename to Assets/Oculus/VR/Plugins/1.48.0/Android/OVRPlugin.aar.disabled.meta diff --git a/Assets/Oculus/VR/Plugins/1.48.0/AndroidUniversal/OVRPlugin.aar b/Assets/Oculus/VR/Plugins/1.48.0/AndroidUniversal/OVRPlugin.aar.disabled similarity index 100% rename from Assets/Oculus/VR/Plugins/1.48.0/AndroidUniversal/OVRPlugin.aar rename to Assets/Oculus/VR/Plugins/1.48.0/AndroidUniversal/OVRPlugin.aar.disabled diff --git a/Assets/Oculus/VR/Plugins/1.48.0/AndroidUniversal/OVRPlugin.aar.meta b/Assets/Oculus/VR/Plugins/1.48.0/AndroidUniversal/OVRPlugin.aar.disabled.meta similarity index 100% rename from Assets/Oculus/VR/Plugins/1.48.0/AndroidUniversal/OVRPlugin.aar.meta rename to Assets/Oculus/VR/Plugins/1.48.0/AndroidUniversal/OVRPlugin.aar.disabled.meta diff --git a/Assets/Oculus/VR/Plugins/1.48.0/Win/OVRPlugin.dll b/Assets/Oculus/VR/Plugins/1.48.0/Win/OVRPlugin.dll.disabled similarity index 100% rename from Assets/Oculus/VR/Plugins/1.48.0/Win/OVRPlugin.dll rename to Assets/Oculus/VR/Plugins/1.48.0/Win/OVRPlugin.dll.disabled diff --git a/Assets/Oculus/VR/Plugins/1.48.0/Win/OVRPlugin.dll.meta b/Assets/Oculus/VR/Plugins/1.48.0/Win/OVRPlugin.dll.disabled.meta similarity index 100% rename from Assets/Oculus/VR/Plugins/1.48.0/Win/OVRPlugin.dll.meta rename to Assets/Oculus/VR/Plugins/1.48.0/Win/OVRPlugin.dll.disabled.meta diff --git a/Assets/Oculus/VR/Plugins/1.48.0/Win64/OVRPlugin.dll b/Assets/Oculus/VR/Plugins/1.48.0/Win64/OVRPlugin.dll.disabled similarity index 100% rename from Assets/Oculus/VR/Plugins/1.48.0/Win64/OVRPlugin.dll rename to Assets/Oculus/VR/Plugins/1.48.0/Win64/OVRPlugin.dll.disabled diff --git a/Assets/Oculus/VR/Plugins/1.48.0/Win64/OVRPlugin.dll.meta b/Assets/Oculus/VR/Plugins/1.48.0/Win64/OVRPlugin.dll.disabled.meta similarity index 100% rename from Assets/Oculus/VR/Plugins/1.48.0/Win64/OVRPlugin.dll.meta rename to Assets/Oculus/VR/Plugins/1.48.0/Win64/OVRPlugin.dll.disabled.meta diff --git a/Assets/Oculus/VR/Plugins/1.55.1.meta b/Assets/Oculus/VR/Plugins/1.55.1.meta new file mode 100644 index 00000000..6f675f10 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.55.1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 66627c8fb04014f4898c4c36603ec469 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.55.1/Android.meta b/Assets/Oculus/VR/Plugins/1.55.1/Android.meta new file mode 100644 index 00000000..0ac79ad9 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.55.1/Android.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39affdcc05cd23f41960e7ecbc41b9b1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.55.1/Android/OVRPlugin.aar.disabled b/Assets/Oculus/VR/Plugins/1.55.1/Android/OVRPlugin.aar.disabled new file mode 100644 index 00000000..ac641eca Binary files /dev/null and b/Assets/Oculus/VR/Plugins/1.55.1/Android/OVRPlugin.aar.disabled differ diff --git a/Assets/Oculus/VR/Plugins/1.55.1/Android/OVRPlugin.aar.disabled.meta b/Assets/Oculus/VR/Plugins/1.55.1/Android/OVRPlugin.aar.disabled.meta new file mode 100644 index 00000000..be3a52a1 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.55.1/Android/OVRPlugin.aar.disabled.meta @@ -0,0 +1,32 @@ +fileFormatVersion: 2 +guid: a881098510939a648a800d8f75bcf383 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Android: Android + second: + enabled: 0 + settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.55.1/AndroidOpenXR.meta b/Assets/Oculus/VR/Plugins/1.55.1/AndroidOpenXR.meta new file mode 100644 index 00000000..908abc6c --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.55.1/AndroidOpenXR.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3bae967181997504a9370cff5c4153ed +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.55.1/AndroidOpenXR/OVRPlugin.aar.disabled b/Assets/Oculus/VR/Plugins/1.55.1/AndroidOpenXR/OVRPlugin.aar.disabled new file mode 100644 index 00000000..b87d5f1f Binary files /dev/null and b/Assets/Oculus/VR/Plugins/1.55.1/AndroidOpenXR/OVRPlugin.aar.disabled differ diff --git a/Assets/Oculus/VR/Plugins/1.55.1/AndroidOpenXR/OVRPlugin.aar.disabled.meta b/Assets/Oculus/VR/Plugins/1.55.1/AndroidOpenXR/OVRPlugin.aar.disabled.meta new file mode 100644 index 00000000..dfe82e01 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.55.1/AndroidOpenXR/OVRPlugin.aar.disabled.meta @@ -0,0 +1,32 @@ +fileFormatVersion: 2 +guid: f57f4b22f5c44c342a041bb1a6fd6f36 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Android: Android + second: + enabled: 0 + settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.55.1/AndroidUniversal.meta b/Assets/Oculus/VR/Plugins/1.55.1/AndroidUniversal.meta new file mode 100644 index 00000000..79a874f3 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.55.1/AndroidUniversal.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cde0ab6d54314c743a16a3b14dc2355f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.55.1/AndroidUniversal/OVRPlugin.aar.disabled b/Assets/Oculus/VR/Plugins/1.55.1/AndroidUniversal/OVRPlugin.aar.disabled new file mode 100644 index 00000000..3b125a5c Binary files /dev/null and b/Assets/Oculus/VR/Plugins/1.55.1/AndroidUniversal/OVRPlugin.aar.disabled differ diff --git a/Assets/Oculus/VR/Plugins/1.55.1/AndroidUniversal/OVRPlugin.aar.disabled.meta b/Assets/Oculus/VR/Plugins/1.55.1/AndroidUniversal/OVRPlugin.aar.disabled.meta new file mode 100644 index 00000000..fbb85f8d --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.55.1/AndroidUniversal/OVRPlugin.aar.disabled.meta @@ -0,0 +1,32 @@ +fileFormatVersion: 2 +guid: 1322daafcbf05de468b1eeadb2ed7c10 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Android: Android + second: + enabled: 1 + settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.55.1/Win.meta b/Assets/Oculus/VR/Plugins/1.55.1/Win.meta new file mode 100644 index 00000000..91d774a6 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.55.1/Win.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c2ac8d3d881624342a3d691418e84ccc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.55.1/Win/OVRPlugin.dll.disabled b/Assets/Oculus/VR/Plugins/1.55.1/Win/OVRPlugin.dll.disabled new file mode 100644 index 00000000..4fe117ac Binary files /dev/null and b/Assets/Oculus/VR/Plugins/1.55.1/Win/OVRPlugin.dll.disabled differ diff --git a/Assets/Oculus/VR/Plugins/1.55.1/Win/OVRPlugin.dll.disabled.meta b/Assets/Oculus/VR/Plugins/1.55.1/Win/OVRPlugin.dll.disabled.meta new file mode 100644 index 00000000..8aaf8aba --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.55.1/Win/OVRPlugin.dll.disabled.meta @@ -0,0 +1,41 @@ +fileFormatVersion: 2 +guid: 739ef985fe1c48b41a762c5a96b29b21 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Editor + second: + enabled: 0 + settings: + CPU: X86 + OS: Windows + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + CPU: X86 + DefaultValueInitialized: true + OS: Windows + - first: + Standalone: Win + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.55.1/Win64.meta b/Assets/Oculus/VR/Plugins/1.55.1/Win64.meta new file mode 100644 index 00000000..3151bd73 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.55.1/Win64.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 685926a0e9245c74f855fdd2e31e8a58 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.55.1/Win64/OVRPlugin.dll.disabled b/Assets/Oculus/VR/Plugins/1.55.1/Win64/OVRPlugin.dll.disabled new file mode 100644 index 00000000..8c21872b Binary files /dev/null and b/Assets/Oculus/VR/Plugins/1.55.1/Win64/OVRPlugin.dll.disabled differ diff --git a/Assets/Oculus/VR/Plugins/1.55.1/Win64/OVRPlugin.dll.disabled.meta b/Assets/Oculus/VR/Plugins/1.55.1/Win64/OVRPlugin.dll.disabled.meta new file mode 100644 index 00000000..d239a1bc --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.55.1/Win64/OVRPlugin.dll.disabled.meta @@ -0,0 +1,41 @@ +fileFormatVersion: 2 +guid: d5773420a253bbe49abb246932d39859 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Editor + second: + enabled: 0 + settings: + CPU: X86_64 + OS: Windows + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + CPU: X86_64 + DefaultValueInitialized: true + OS: Windows + - first: + Standalone: Win64 + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.57.0.meta b/Assets/Oculus/VR/Plugins/1.57.0.meta new file mode 100644 index 00000000..12e9bab4 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.57.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0a847e9117105b242bcd66b1985fced4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.57.0/Android.meta b/Assets/Oculus/VR/Plugins/1.57.0/Android.meta new file mode 100644 index 00000000..d3c73b5a --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.57.0/Android.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 122eb30676e0a4745a452e0b534654f6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.57.0/Android/OVRPlugin.aar b/Assets/Oculus/VR/Plugins/1.57.0/Android/OVRPlugin.aar new file mode 100644 index 00000000..7bb2abce Binary files /dev/null and b/Assets/Oculus/VR/Plugins/1.57.0/Android/OVRPlugin.aar differ diff --git a/Assets/Oculus/VR/Plugins/1.57.0/Android/OVRPlugin.aar.meta b/Assets/Oculus/VR/Plugins/1.57.0/Android/OVRPlugin.aar.meta new file mode 100644 index 00000000..3fdeb19f --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.57.0/Android/OVRPlugin.aar.meta @@ -0,0 +1,32 @@ +fileFormatVersion: 2 +guid: 75fd324adf19a7443bbb2e4daa79c818 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Android: Android + second: + enabled: 0 + settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.57.0/AndroidOpenXR.meta b/Assets/Oculus/VR/Plugins/1.57.0/AndroidOpenXR.meta new file mode 100644 index 00000000..e2e80005 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.57.0/AndroidOpenXR.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9bd67d16ed134444db4d2cf5f0fa30a6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.57.0/AndroidOpenXR/OVRPlugin.aar b/Assets/Oculus/VR/Plugins/1.57.0/AndroidOpenXR/OVRPlugin.aar new file mode 100644 index 00000000..c78ee0eb Binary files /dev/null and b/Assets/Oculus/VR/Plugins/1.57.0/AndroidOpenXR/OVRPlugin.aar differ diff --git a/Assets/Oculus/VR/Plugins/1.57.0/AndroidOpenXR/OVRPlugin.aar.meta b/Assets/Oculus/VR/Plugins/1.57.0/AndroidOpenXR/OVRPlugin.aar.meta new file mode 100644 index 00000000..b2e798ae --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.57.0/AndroidOpenXR/OVRPlugin.aar.meta @@ -0,0 +1,32 @@ +fileFormatVersion: 2 +guid: d8e1e4655de71ef47a89d89cc01e7eac +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Android: Android + second: + enabled: 0 + settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.57.0/AndroidUniversal.meta b/Assets/Oculus/VR/Plugins/1.57.0/AndroidUniversal.meta new file mode 100644 index 00000000..172d6d26 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.57.0/AndroidUniversal.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2188e393f1b42d74c8dec6b91e9ab3ba +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.57.0/AndroidUniversal/OVRPlugin.aar b/Assets/Oculus/VR/Plugins/1.57.0/AndroidUniversal/OVRPlugin.aar new file mode 100644 index 00000000..73a4a753 Binary files /dev/null and b/Assets/Oculus/VR/Plugins/1.57.0/AndroidUniversal/OVRPlugin.aar differ diff --git a/Assets/Oculus/VR/Plugins/1.57.0/AndroidUniversal/OVRPlugin.aar.meta b/Assets/Oculus/VR/Plugins/1.57.0/AndroidUniversal/OVRPlugin.aar.meta new file mode 100644 index 00000000..63432656 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.57.0/AndroidUniversal/OVRPlugin.aar.meta @@ -0,0 +1,32 @@ +fileFormatVersion: 2 +guid: 5388034eee10e6f498c72b5b0f2c0219 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Android: Android + second: + enabled: 1 + settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.57.0/Win.meta b/Assets/Oculus/VR/Plugins/1.57.0/Win.meta new file mode 100644 index 00000000..e2708d58 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.57.0/Win.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 72f4abfd9a560194889693eeda3fcd71 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.57.0/Win/OVRPlugin.dll b/Assets/Oculus/VR/Plugins/1.57.0/Win/OVRPlugin.dll new file mode 100644 index 00000000..05939bb7 Binary files /dev/null and b/Assets/Oculus/VR/Plugins/1.57.0/Win/OVRPlugin.dll differ diff --git a/Assets/Oculus/VR/Plugins/1.57.0/Win/OVRPlugin.dll.meta b/Assets/Oculus/VR/Plugins/1.57.0/Win/OVRPlugin.dll.meta new file mode 100644 index 00000000..ed500b5e --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.57.0/Win/OVRPlugin.dll.meta @@ -0,0 +1,41 @@ +fileFormatVersion: 2 +guid: 1846f67456f9fab43964c3c786a4b246 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Editor + second: + enabled: 0 + settings: + CPU: X86 + OS: Windows + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + CPU: X86 + DefaultValueInitialized: true + OS: Windows + - first: + Standalone: Win + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.57.0/Win64.meta b/Assets/Oculus/VR/Plugins/1.57.0/Win64.meta new file mode 100644 index 00000000..26f6c954 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.57.0/Win64.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dbfa5f129905045468cf73d4310e4d56 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Plugins/1.57.0/Win64/OVRPlugin.dll b/Assets/Oculus/VR/Plugins/1.57.0/Win64/OVRPlugin.dll new file mode 100644 index 00000000..1403465a Binary files /dev/null and b/Assets/Oculus/VR/Plugins/1.57.0/Win64/OVRPlugin.dll differ diff --git a/Assets/Oculus/VR/Plugins/1.57.0/Win64/OVRPlugin.dll.meta b/Assets/Oculus/VR/Plugins/1.57.0/Win64/OVRPlugin.dll.meta new file mode 100644 index 00000000..059ea1b2 --- /dev/null +++ b/Assets/Oculus/VR/Plugins/1.57.0/Win64/OVRPlugin.dll.meta @@ -0,0 +1,41 @@ +fileFormatVersion: 2 +guid: a889d6460298be5479719588758fc758 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Editor + second: + enabled: 0 + settings: + CPU: X86_64 + OS: Windows + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + CPU: X86_64 + DefaultValueInitialized: true + OS: Windows + - first: + Standalone: Win64 + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Prefabs/OVRControllerPrefab.prefab b/Assets/Oculus/VR/Prefabs/OVRControllerPrefab.prefab index caf303d4..d0447952 100644 --- a/Assets/Oculus/VR/Prefabs/OVRControllerPrefab.prefab +++ b/Assets/Oculus/VR/Prefabs/OVRControllerPrefab.prefab @@ -3,9 +3,10 @@ --- !u!1 &112276 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 488160} - component: {fileID: 11479374} @@ -18,2986 +19,478 @@ GameObject: m_IsActive: 1 --- !u!4 &488160 Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 112276} 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_Children: - - {fileID: 4000011296770734} - - {fileID: 4464436526328426} - - {fileID: 4018669889632488} - - {fileID: 4590459659269666} - - {fileID: 4674903275779108} - - {fileID: 4424331664721706} + - {fileID: 2774251407684675044} + - {fileID: 2114446122515498521} + - {fileID: 4828818719732838786} + - {fileID: 3092784099471453321} + - {fileID: 6871378272463734979} + - {fileID: 5342833014125283329} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &11479374 MonoBehaviour: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 112276} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: aed62bf3ae2456c408f247f96808ce96, type: 3} m_Name: m_EditorClassIdentifier: - m_modelGearVrController: {fileID: 1000010178323718} - m_modelOculusGoController: {fileID: 1956530202777762} - m_modelOculusTouchQuestAndRiftSLeftController: {fileID: 1864357959958104} - m_modelOculusTouchQuestAndRiftSRightController: {fileID: 1307870489563208} - m_modelOculusTouchRiftLeftController: {fileID: 1999073185825882} - m_modelOculusTouchRiftRightController: {fileID: 1351868014986946} + m_modelOculusTouchQuestAndRiftSLeftController: {fileID: 2774251407684647364} + m_modelOculusTouchQuestAndRiftSRightController: {fileID: 2114446122515339833} + m_modelOculusTouchRiftLeftController: {fileID: 6871378272464032995} + m_modelOculusTouchRiftRightController: {fileID: 5342833014125450273} + m_modelOculusTouchQuest2LeftController: {fileID: 4828818719732477346} + m_modelOculusTouchQuest2RightController: {fileID: 3092784099471880361} m_controller: 33554432 ---- !u!1001 &100100000 -Prefab: - m_ObjectHideFlags: 1 +--- !u!1001 &2114446122515373209 +PrefabInstance: + m_ObjectHideFlags: 0 serializedVersion: 2 m_Modification: - m_TransformParent: {fileID: 0} - m_Modifications: [] + m_TransformParent: {fileID: 488160} + m_Modifications: + - target: {fileID: 100000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_Name + value: OculusTouchForQuestAndRiftS_Right + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9500000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 3f974d61f39a79c408d54b32f31f186c, type: 2} m_RemovedComponents: [] - m_ParentPrefab: {fileID: 0} - m_RootGameObject: {fileID: 112276} - m_IsPrefabParent: 1 ---- !u!1 &1000010178323718 -GameObject: + m_SourcePrefab: {fileID: 100100000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} +--- !u!1 &2114446122515339833 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 100000, guid: 37ba10a26a648144fa2390c8adfb2c8a, + type: 3} + m_PrefabInstance: {fileID: 2114446122515373209} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2114446122515498521 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400000, guid: 37ba10a26a648144fa2390c8adfb2c8a, + type: 3} + m_PrefabInstance: {fileID: 2114446122515373209} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2774251407684550500 +PrefabInstance: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4000011296770734} - m_Layer: 0 - m_Name: GearVrControllerModel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1000011436655710 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4000012142331768} - - component: {fileID: 33000013153656990} - - component: {fileID: 23000011768000172} - m_Layer: 0 - m_Name: home_button_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1000011549955176 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4000012748093882} - - component: {fileID: 33000013186836272} - - component: {fileID: 23000013477210968} - m_Layer: 0 - m_Name: trigger_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1000012388513744 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4000010547406920} - - component: {fileID: 33000013134621756} - - component: {fileID: 23000010895726220} - m_Layer: 0 - m_Name: chassis_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1000012567764716 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4000010554578882} - - component: {fileID: 33000013511306870} - - component: {fileID: 23000012129420234} - m_Layer: 0 - m_Name: disc_button_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1000013696185028 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4000011347987256} - - component: {fileID: 33000013945561740} - - component: {fileID: 23000010818504298} - m_Layer: 0 - m_Name: back_button_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1000013718830530 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4000011835757296} - - component: {fileID: 33000010177796194} - - component: {fileID: 23000011389392996} - m_Layer: 0 - m_Name: text_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1000014047055526 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4000012637917122} - - component: {fileID: 33000013874298672} - - component: {fileID: 23000010051961506} - m_Layer: 0 - m_Name: center_button_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1043718319765106 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4217597188290772} - - component: {fileID: 137516833752771690} - m_Layer: 0 - m_Name: rctrl:o_button_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1046305140630946 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4145440608189314} - - component: {fileID: 137894515578887148} - m_Layer: 0 - m_Name: rctrl:ring_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1111836968271984 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4930198374904308} - m_Layer: 0 - m_Name: lctrl:b_trigger - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1150514829769540 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4054458720371030} - - component: {fileID: 137953460083308940} - m_Layer: 0 - m_Name: lctrl:main_trigger_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1153598635317830 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4475506175273502} - m_Layer: 0 - m_Name: lctrl:b_button01 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1163019739493792 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4756900187738382} - m_Layer: 0 - m_Name: rctrl:b_trigger - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1175928214747458 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4160029557842794} - m_Layer: 0 - m_Name: rctrl:b_button03 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1272650095541868 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4984268951621866} - m_Layer: 0 - m_Name: rctrl:b_button02 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1291433702725222 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4497618915451418} - m_Layer: 0 - m_Name: rctrl:geometry_null - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1307870489563208 -GameObject: + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 488160} + m_Modifications: + - target: {fileID: 100000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_Name + value: OculusTouchForQuestAndRiftS_Left + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9500000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 92dd1ff21e711dc4b8b57eb39ab807ac, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} +--- !u!1 &2774251407684647364 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 100000, guid: 32fbc8bcebb64584da5868aeeb086cda, + type: 3} + m_PrefabInstance: {fileID: 2774251407684550500} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2774251407684675044 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400000, guid: 32fbc8bcebb64584da5868aeeb086cda, + type: 3} + m_PrefabInstance: {fileID: 2774251407684550500} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3092784099471848987 +PrefabInstance: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4590459659269666} - - component: {fileID: 33487662383985252} - - component: {fileID: 23740872028335676} - - component: {fileID: 95033031799970748} - m_Layer: 0 - m_Name: OculusTouchForQuestAndRiftSRightModel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1341283074334724 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4986827042887056} - m_Layer: 0 - m_Name: lctrl:b_button02 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1346558941273396 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4336468700419714} - m_Layer: 0 - m_Name: lctrl:b_button03 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1351868014986946 -GameObject: + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 488160} + m_Modifications: + - target: {fileID: 100018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_Name + value: OculusTouchForQuest2RightModel + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9500000, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 62a9d09916ac8bf4ba30ba4803d3503a, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} +--- !u!1 &3092784099471880361 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 100018, guid: 25b5eb0761edb6346b0b3444af76b55e, + type: 3} + m_PrefabInstance: {fileID: 3092784099471848987} + m_PrefabAsset: {fileID: 0} +--- !u!4 &3092784099471453321 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, + type: 3} + m_PrefabInstance: {fileID: 3092784099471848987} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4828818719732443922 +PrefabInstance: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4424331664721706} - - component: {fileID: 95159725740943820} - m_Layer: 0 - m_Name: OculusTouchForRiftRightModel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1407562648133754 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4966908025643000} - m_Layer: 0 - m_Name: lctrl:b_stick_IGNORE - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1410792866537844 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4183120237395500} - m_Layer: 0 - m_Name: lctrl:b_hold - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1420546792291356 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4622968367758772} - m_Layer: 0 - m_Name: lctrl:left_touch_controller_world - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1501938979627348 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4781385269134180} - - component: {fileID: 137132433173345654} - m_Layer: 0 - m_Name: lctrl:side_trigger_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1580528522853954 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4519872946202134} - - component: {fileID: 137548540825210660} - m_Layer: 0 - m_Name: rctrl:controller_body_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1582883067469128 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4287477734124642} - - component: {fileID: 137013385765703262} - m_Layer: 0 - m_Name: lctrl:o_button_decal_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1591694296978774 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4488555750834636} - m_Layer: 0 - m_Name: rctrl:b_stick - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1634122703765650 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4835306428485234} - - component: {fileID: 137410385877248658} - m_Layer: 0 - m_Name: rctrl:thumbstick_ball_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1640091058704360 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4291277175788902} - m_Layer: 0 - m_Name: lctrl:geometry_null - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1653136352874222 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4844326987582138} - - component: {fileID: 137799296538821628} - m_Layer: 0 - m_Name: lctrl:controller_body_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1680001862499580 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4620985457895698} - m_Layer: 0 - m_Name: lctrl:b_stick - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1694063663317782 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4501959689107672} - m_Layer: 0 - m_Name: rctrl:b_hold - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1715807544907940 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4556676711426526} - m_Layer: 0 - m_Name: rctrl:right_touch_controller_world - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1731361599223734 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4593899846663936} - - component: {fileID: 137670343033052700} - m_Layer: 0 - m_Name: rctrl:o_button_decal_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1738261221487676 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4840275246547096} - - component: {fileID: 137020412966494170} - m_Layer: 0 - m_Name: rctrl:a_button_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1741382130313638 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4684588568180746} - - component: {fileID: 137310653907615322} - m_Layer: 0 - m_Name: lctrl:surface_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1758321880106294 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4401767331493524} - - component: {fileID: 137812751115180306} - m_Layer: 0 - m_Name: rctrl:side_trigger_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1833973838428082 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4626860071786586} - - component: {fileID: 137378573564850912} - m_Layer: 0 - m_Name: rctrl:b_button_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1846566732132504 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4471428637981784} - - component: {fileID: 137580252240055964} - m_Layer: 0 - m_Name: lctrl:y_button_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1864357959958104 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4018669889632488} - - component: {fileID: 33444066182808318} - - component: {fileID: 23022262598936998} - - component: {fileID: 95091669218293994} - m_Layer: 0 - m_Name: OculusTouchForQuestAndRiftSLeftModel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1864589419913158 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4043977657542554} - - component: {fileID: 137306554513006224} - m_Layer: 0 - m_Name: lctrl:thumbstick_ball_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1914456947047296 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4441198579746148} - - component: {fileID: 137735589292049982} - m_Layer: 0 - m_Name: rctrl:main_trigger_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1925473343199970 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4782286329022162} - - component: {fileID: 137119327089857916} - m_Layer: 0 - m_Name: lctrl:ring_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1930270789047778 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4944515266127590} - - component: {fileID: 137039721825203164} - m_Layer: 0 - m_Name: lctrl:x_button_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1937342357854408 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4771435348981660} - - component: {fileID: 137967895554077838} - m_Layer: 0 - m_Name: lctrl:o_button_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1938084028754538 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4273564299776498} - - component: {fileID: 137903369291241316} - m_Layer: 0 - m_Name: rctrl:surface_PLY - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1944473258442844 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4356416327803184} - m_Layer: 0 - m_Name: rctrl:b_button01 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1956530202777762 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4464436526328426} - - component: {fileID: 33356632527651328} - - component: {fileID: 23705978566827108} - m_Layer: 0 - m_Name: OculusGoControllerModel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1971879593916346 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4095537424049504} - m_Layer: 0 - m_Name: rctrl:b_stick_IGNORE - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!1 &1999073185825882 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4674903275779108} - - component: {fileID: 95607614017261978} - m_Layer: 0 - m_Name: OculusTouchForRiftLeftModel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4000010547406920 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000012388513744} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0.00007190227, z: -0.023617705} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4000011296770734} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4000010554578882 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000012567764716} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0.00007190227, z: -0.023617705} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4000011296770734} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4000011296770734 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000010178323718} - 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_Children: - - {fileID: 4000011347987256} - - {fileID: 4000012637917122} - - {fileID: 4000010547406920} - - {fileID: 4000010554578882} - - {fileID: 4000012142331768} - - {fileID: 4000011835757296} - - {fileID: 4000012748093882} - m_Father: {fileID: 488160} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4000011347987256 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000013696185028} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0.00007190227, z: -0.023617705} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4000011296770734} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4000011835757296 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000013718830530} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0.00007190227, z: -0.023617705} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4000011296770734} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4000012142331768 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000011436655710} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0.00007190227, z: -0.023617705} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4000011296770734} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4000012637917122 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000014047055526} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0.00007190227, z: -0.023617705} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4000011296770734} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4000012748093882 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000011549955176} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0.00007190227, z: -0.023617705} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4000011296770734} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4018669889632488 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1864357959958104} - 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_Children: [] - m_Father: {fileID: 488160} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4043977657542554 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1864589419913158} - 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_Children: [] - m_Father: {fileID: 4291277175788902} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4054458720371030 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1150514829769540} - 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_Children: [] - m_Father: {fileID: 4291277175788902} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4095537424049504 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1971879593916346} - m_LocalRotation: {x: -4.5059287e-17, y: -0.70108956, z: -6.5911624e-17, w: 0.71307325} - m_LocalPosition: {x: -0.019321036, y: 0, z: 9.992007e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4488555750834636} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4145440608189314 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1046305140630946} - 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_Children: [] - m_Father: {fileID: 4497618915451418} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4160029557842794 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1175928214747458} - m_LocalRotation: {x: 0.07876507, y: 0.01894126, z: 0.5343878, w: 0.8413483} - m_LocalPosition: {x: -0.012083728, y: -0.01402681, z: -0.0007126567} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4556676711426526} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4183120237395500 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1410792866537844} - m_LocalRotation: {x: -0.18065539, y: -0.13555649, z: -0.067166515, w: 0.97184193} - m_LocalPosition: {x: 0.013074442, y: -0.025639696, z: -0.027427113} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4622968367758772} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4217597188290772 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1043718319765106} - 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_Children: [] - m_Father: {fileID: 4497618915451418} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4273564299776498 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1938084028754538} - 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_Children: [] - m_Father: {fileID: 4497618915451418} - m_RootOrder: 8 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4287477734124642 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1582883067469128} - 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_Children: [] - m_Father: {fileID: 4291277175788902} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4291277175788902 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1640091058704360} - m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4844326987582138} - - {fileID: 4054458720371030} - - {fileID: 4287477734124642} - - {fileID: 4771435348981660} - - {fileID: 4782286329022162} - - {fileID: 4781385269134180} - - {fileID: 4684588568180746} - - {fileID: 4043977657542554} - - {fileID: 4944515266127590} - - {fileID: 4471428637981784} - m_Father: {fileID: 4674903275779108} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4336468700419714 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1346558941273396} - m_LocalRotation: {x: 0.05660452, y: -0.05795374, z: -0.0046757394, w: 0.9967023} - m_LocalPosition: {x: 0.012083728, y: -0.01402681, z: -0.0007126567} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4622968367758772} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4356416327803184 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1944473258442844} - m_LocalRotation: {x: 0.056604527, y: 0.05795374, z: 0.004675739, w: 0.9967023} - m_LocalPosition: {x: 0.0019170768, y: -0.0073837424, z: -0.00091214647} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4556676711426526} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4401767331493524 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1758321880106294} - 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_Children: [] - m_Father: {fileID: 4497618915451418} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4424331664721706 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1351868014986946} - 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_Children: - - {fileID: 4497618915451418} - - {fileID: 4556676711426526} - m_Father: {fileID: 488160} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4441198579746148 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1914456947047296} - 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_Children: [] - m_Father: {fileID: 4497618915451418} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4464436526328426 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1956530202777762} - m_LocalRotation: {x: 6.123234e-17, y: -0.0000000754979, z: 6.1232336e-17, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 488160} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4471428637981784 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1846566732132504} - 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_Children: [] - m_Father: {fileID: 4291277175788902} - m_RootOrder: 9 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4475506175273502 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1153598635317830} - m_LocalRotation: {x: 0.05660452, y: -0.05795374, z: -0.0046757394, w: 0.9967023} - m_LocalPosition: {x: -0.0019170768, y: -0.0073837424, z: -0.00091214647} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4622968367758772} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4488555750834636 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1591694296978774} - m_LocalRotation: {x: -0.003149668, y: 0.7098123, z: 0.002783398, w: 0.7043784} - m_LocalPosition: {x: -0.010637393, y: 0.00497835, z: -0.009418557} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4095537424049504} - m_Father: {fileID: 4556676711426526} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4497618915451418 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1291433702725222} - m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4840275246547096} - - {fileID: 4626860071786586} - - {fileID: 4519872946202134} - - {fileID: 4441198579746148} - - {fileID: 4593899846663936} - - {fileID: 4217597188290772} - - {fileID: 4145440608189314} - - {fileID: 4401767331493524} - - {fileID: 4273564299776498} - - {fileID: 4835306428485234} - m_Father: {fileID: 4424331664721706} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4501959689107672 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1694063663317782} - m_LocalRotation: {x: -0.17913595, y: 0.14914332, z: 0.022661837, w: 0.97218984} - m_LocalPosition: {x: -0.013074442, y: -0.025639696, z: -0.027427113} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4556676711426526} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4519872946202134 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1580528522853954} - 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_Children: [] - m_Father: {fileID: 4497618915451418} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4556676711426526 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1715807544907940} - m_LocalRotation: {x: 0, y: 0.7071068, z: 0.7071068, w: -8.659561e-17} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4356416327803184} - - {fileID: 4984268951621866} - - {fileID: 4160029557842794} - - {fileID: 4501959689107672} - - {fileID: 4488555750834636} - - {fileID: 4756900187738382} - m_Father: {fileID: 4424331664721706} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4590459659269666 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1307870489563208} - 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_Children: [] - m_Father: {fileID: 488160} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4593899846663936 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1731361599223734} - 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_Children: [] - m_Father: {fileID: 4497618915451418} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4620985457895698 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1680001862499580} - m_LocalRotation: {x: 0.0027868259, y: 0.70437866, z: -0.0031505642, w: 0.7098119} - m_LocalPosition: {x: 0.010637393, y: 0.00497835, z: -0.009418557} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4966908025643000} - m_Father: {fileID: 4622968367758772} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4622968367758772 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1420546792291356} - m_LocalRotation: {x: 0, y: 0.7071068, z: 0.7071068, w: -8.659561e-17} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4475506175273502} - - {fileID: 4986827042887056} - - {fileID: 4336468700419714} - - {fileID: 4183120237395500} - - {fileID: 4620985457895698} - - {fileID: 4930198374904308} - m_Father: {fileID: 4674903275779108} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4626860071786586 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1833973838428082} - 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_Children: [] - m_Father: {fileID: 4497618915451418} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4674903275779108 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1999073185825882} - 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_Children: - - {fileID: 4291277175788902} - - {fileID: 4622968367758772} - m_Father: {fileID: 488160} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4684588568180746 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1741382130313638} - 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_Children: [] - m_Father: {fileID: 4291277175788902} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4756900187738382 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1163019739493792} - m_LocalRotation: {x: 0.056604527, y: 0.05795374, z: 0.004675739, w: 0.9967023} - m_LocalPosition: {x: 0.001420367, y: 0.021865888, z: -0.005495974} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4556676711426526} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4771435348981660 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1937342357854408} - 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_Children: [] - m_Father: {fileID: 4291277175788902} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4781385269134180 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1501938979627348} - 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_Children: [] - m_Father: {fileID: 4291277175788902} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4782286329022162 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1925473343199970} - 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_Children: [] - m_Father: {fileID: 4291277175788902} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4835306428485234 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1634122703765650} - 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_Children: [] - m_Father: {fileID: 4497618915451418} - m_RootOrder: 9 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4840275246547096 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1738261221487676} - 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_Children: [] - m_Father: {fileID: 4497618915451418} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4844326987582138 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1653136352874222} - 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_Children: [] - m_Father: {fileID: 4291277175788902} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4930198374904308 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1111836968271984} - m_LocalRotation: {x: -0.05795374, y: -0.05660452, z: 0.9967023, w: 0.0046757394} - m_LocalPosition: {x: -0.001420367, y: 0.021865888, z: -0.005495974} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4622968367758772} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4944515266127590 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1930270789047778} - 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_Children: [] - m_Father: {fileID: 4291277175788902} - m_RootOrder: 8 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4966908025643000 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1407562648133754} - m_LocalRotation: {x: 0, y: -0.70108956, z: -0, w: 0.71307325} - m_LocalPosition: {x: -0.019321036, y: 0, z: 9.992007e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4620985457895698} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4984268951621866 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1272650095541868} - m_LocalRotation: {x: 0.07876507, y: 0.01894126, z: 0.5343878, w: 0.8413483} - m_LocalPosition: {x: 0.009152712, y: 0.0054823146, z: 0.000030916483} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4556676711426526} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4986827042887056 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1341283074334724} - m_LocalRotation: {x: 0.017080953, y: -0.07918932, z: 0.52647054, w: 0.84632504} - m_LocalPosition: {x: -0.0091353385, y: 0.005499125, z: -0.00011681918} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4622968367758772} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!23 &23000010051961506 -MeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000014047055526} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: f6ccc53b9bcfb114996e76ee88ce6948, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!23 &23000010818504298 -MeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000013696185028} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: f6ccc53b9bcfb114996e76ee88ce6948, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!23 &23000010895726220 -MeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000012388513744} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: f6ccc53b9bcfb114996e76ee88ce6948, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!23 &23000011389392996 -MeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000013718830530} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: f6ccc53b9bcfb114996e76ee88ce6948, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!23 &23000011768000172 -MeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000011436655710} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: f6ccc53b9bcfb114996e76ee88ce6948, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!23 &23000012129420234 -MeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000012567764716} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: f6ccc53b9bcfb114996e76ee88ce6948, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!23 &23000013477210968 -MeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000011549955176} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: f6ccc53b9bcfb114996e76ee88ce6948, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!23 &23022262598936998 -MeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1864357959958104} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!23 &23705978566827108 -MeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1956530202777762} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: 6c0b208d35ece4a459821be19df69561, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!23 &23740872028335676 -MeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1307870489563208} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!33 &33000010177796194 -MeshFilter: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000013718830530} - m_Mesh: {fileID: 4300000, guid: 84c37137326e7b943a87be7ae2a7ea19, type: 3} ---- !u!33 &33000013134621756 -MeshFilter: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000012388513744} - m_Mesh: {fileID: 4300012, guid: 84c37137326e7b943a87be7ae2a7ea19, type: 3} ---- !u!33 &33000013153656990 -MeshFilter: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000011436655710} - m_Mesh: {fileID: 4300006, guid: 84c37137326e7b943a87be7ae2a7ea19, type: 3} ---- !u!33 &33000013186836272 -MeshFilter: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000011549955176} - m_Mesh: {fileID: 4300004, guid: 84c37137326e7b943a87be7ae2a7ea19, type: 3} ---- !u!33 &33000013511306870 -MeshFilter: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000012567764716} - m_Mesh: {fileID: 4300010, guid: 84c37137326e7b943a87be7ae2a7ea19, type: 3} ---- !u!33 &33000013874298672 -MeshFilter: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000014047055526} - m_Mesh: {fileID: 4300002, guid: 84c37137326e7b943a87be7ae2a7ea19, type: 3} ---- !u!33 &33000013945561740 -MeshFilter: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1000013696185028} - m_Mesh: {fileID: 4300008, guid: 84c37137326e7b943a87be7ae2a7ea19, type: 3} ---- !u!33 &33356632527651328 -MeshFilter: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1956530202777762} - m_Mesh: {fileID: 4300000, guid: e0f1914fdbfd3764faeff5474c0cbe1e, type: 3} ---- !u!33 &33444066182808318 -MeshFilter: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1864357959958104} - m_Mesh: {fileID: 4300000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} ---- !u!33 &33487662383985252 -MeshFilter: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1307870489563208} - m_Mesh: {fileID: 4300000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} ---- !u!95 &95033031799970748 -Animator: - serializedVersion: 3 - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1307870489563208} - m_Enabled: 1 - m_Avatar: {fileID: 9000000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} - m_Controller: {fileID: 0} - m_CullingMode: 0 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 ---- !u!95 &95091669218293994 -Animator: - serializedVersion: 3 - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1864357959958104} - m_Enabled: 1 - m_Avatar: {fileID: 9000000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} - m_Controller: {fileID: 0} - m_CullingMode: 0 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 ---- !u!95 &95159725740943820 -Animator: - serializedVersion: 3 - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1351868014986946} - m_Enabled: 1 - m_Avatar: {fileID: 9000000, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} - m_Controller: {fileID: 0} - m_CullingMode: 1 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 ---- !u!95 &95607614017261978 -Animator: - serializedVersion: 3 - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1999073185825882} - m_Enabled: 1 - m_Avatar: {fileID: 9000000, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} - m_Controller: {fileID: 0} - m_CullingMode: 1 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 ---- !u!137 &137013385765703262 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1582883067469128} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300000, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} - m_Bones: - - {fileID: 4336468700419714} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4336468700419714} - m_AABB: - m_Center: {x: 0.000017451588, y: -0.00010048866, z: 0.0012767098} - m_Extent: {x: 0.00211959, y: 0.001628002, z: 0.000015275553} - m_DirtyAABB: 0 ---- !u!137 &137020412966494170 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1738261221487676} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300018, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} - m_Bones: - - {fileID: 4356416327803184} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4356416327803184} - m_AABB: - m_Center: {x: 0.0000007292256, y: 0.000013417564, z: 0.00051031867} - m_Extent: {x: 0.0050891023, y: 0.005111115, z: 0.0025862483} - m_DirtyAABB: 0 ---- !u!137 &137039721825203164 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1930270789047778} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300004, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} - m_Bones: - - {fileID: 4475506175273502} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4475506175273502} - m_AABB: - m_Center: {x: -0.00000072829425, y: 0.000013418496, z: 0.0004995642} - m_Extent: {x: 0.0050891023, y: 0.005111114, z: 0.0025754946} - m_DirtyAABB: 0 ---- !u!137 &137119327089857916 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1925473343199970} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300008, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} - m_Bones: - - {fileID: 4622968367758772} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4622968367758772} - m_AABB: - m_Center: {x: 0.016699282, y: 0.010818447, z: -0.036364146} - m_Extent: {x: 0.054633915, y: 0.02167825, z: 0.050220706} - m_DirtyAABB: 0 ---- !u!137 &137132433173345654 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1501938979627348} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300018, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} - m_Bones: - - {fileID: 4183120237395500} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4183120237395500} - m_AABB: - m_Center: {x: -0.015075568, y: -0.000016345643, z: 0.0018507424} - m_Extent: {x: 0.0069265533, y: 0.014548335, z: 0.007307569} - m_DirtyAABB: 0 ---- !u!137 &137306554513006224 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1864589419913158} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300016, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} - m_Bones: - - {fileID: 4622968367758772} - - {fileID: 4620985457895698} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4622968367758772} - m_AABB: - m_Center: {x: 0.010604477, y: 0.0049807085, z: 0.0022465447} - m_Extent: {x: 0.010754766, y: 0.010751986, z: 0.007853852} - m_DirtyAABB: 0 ---- !u!137 &137310653907615322 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1741382130313638} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300002, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} - m_Bones: - - {fileID: 4622968367758772} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4622968367758772} - m_AABB: - m_Center: {x: 0.00016466714, y: 0.00024955533, z: -0.0010734661} - m_Extent: {x: 0.02819586, y: 0.02827545, z: 0.005969927} - m_DirtyAABB: 0 ---- !u!137 &137378573564850912 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1833973838428082} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300016, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} - m_Bones: - - {fileID: 4984268951621866} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4984268951621866} - m_AABB: - m_Center: {x: 0.000000345055, y: -0.0000009192154, z: 0.0003571303} - m_Extent: {x: 0.0050524976, y: 0.0050528734, z: 0.0025179689} - m_DirtyAABB: 0 ---- !u!137 &137410385877248658 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1634122703765650} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300012, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} - m_Bones: - - {fileID: 4556676711426526} - - {fileID: 4488555750834636} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4556676711426526} - m_AABB: - m_Center: {x: -0.01054777, y: 0.004984765, z: 0.00224772} - m_Extent: {x: 0.010899382, y: 0.010843774, z: 0.007860384} - m_DirtyAABB: 0 ---- !u!137 &137516833752771690 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1043718319765106} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300010, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} - m_Bones: - - {fileID: 4160029557842794} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4160029557842794} - m_AABB: - m_Center: {x: -0.00000026635826, y: -0.00000013131648, z: 0.0005419669} - m_Extent: {x: 0.004489839, y: 0.0044893455, z: 0.0007474746} - m_DirtyAABB: 0 ---- !u!137 &137548540825210660 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1580528522853954} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300006, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} - m_Bones: - - {fileID: 4556676711426526} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4556676711426526} - m_AABB: - m_Center: {x: -0.0012377053, y: -0.019060574, z: -0.031160347} - m_Extent: {x: 0.030484851, y: 0.051344886, z: 0.035910763} - m_DirtyAABB: 0 ---- !u!137 &137580252240055964 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1846566732132504} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300006, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} - m_Bones: - - {fileID: 4986827042887056} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4986827042887056} - m_AABB: - m_Center: {x: 0.0000023958273, y: -0.000002474524, z: 0.0004961197} - m_Extent: {x: 0.005060065, y: 0.0050237104, z: 0.0025072566} - m_DirtyAABB: 0 ---- !u!137 &137670343033052700 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1731361599223734} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300000, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} - m_Bones: - - {fileID: 4160029557842794} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4160029557842794} - m_AABB: - m_Center: {x: 0.00004066783, y: 0.00002745376, z: 0.0012303367} - m_Extent: {x: 0.0015236214, y: 0.0021297487, z: 0.00001941109} - m_DirtyAABB: 0 ---- !u!137 &137735589292049982 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1914456947047296} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300008, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} - m_Bones: - - {fileID: 4756900187738382} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4756900187738382} - m_AABB: - m_Center: {x: -0.0006609438, y: -0.0013324562, z: -0.013972085} - m_Extent: {x: 0.014561905, y: 0.009363498, z: 0.013364948} - m_DirtyAABB: 0 ---- !u!137 &137799296538821628 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1653136352874222} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300010, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} - m_Bones: - - {fileID: 4622968367758772} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4622968367758772} - m_AABB: - m_Center: {x: 0.0012377053, y: -0.01906057, z: -0.031179678} - m_Extent: {x: 0.030484851, y: 0.051344883, z: 0.03589144} - m_DirtyAABB: 0 ---- !u!137 &137812751115180306 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1758321880106294} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300014, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} - m_Bones: - - {fileID: 4501959689107672} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4501959689107672} - m_AABB: - m_Center: {x: 0.015085926, y: 0.00079575554, z: 0.0022845895} - m_Extent: {x: 0.0075142607, y: 0.014562387, z: 0.0074783238} - m_DirtyAABB: 0 ---- !u!137 &137894515578887148 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1046305140630946} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300004, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} - m_Bones: - - {fileID: 4556676711426526} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4556676711426526} - m_AABB: - m_Center: {x: -0.016699282, y: 0.010818443, z: -0.036364153} - m_Extent: {x: 0.054633915, y: 0.021678247, z: 0.050220713} - m_DirtyAABB: 0 ---- !u!137 &137903369291241316 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1938084028754538} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300002, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} - m_Bones: - - {fileID: 4556676711426526} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4556676711426526} - m_AABB: - m_Center: {x: -0.00016466714, y: 0.00024955347, z: -0.0010734657} - m_Extent: {x: 0.02819586, y: 0.02827545, z: 0.0059699244} - m_DirtyAABB: 0 ---- !u!137 &137953460083308940 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1150514829769540} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 + m_Modification: + m_TransformParent: {fileID: 488160} + m_Modifications: + - target: {fileID: 100016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_Name + value: OculusTouchForQuest2LeftModel + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9500000, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 4a8e946ed663e4a4db0f537e2965635d, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} +--- !u!1 &4828818719732477346 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 100016, guid: 8b83018900d13bb4f8e0ad895cb004e5, + type: 3} + m_PrefabInstance: {fileID: 4828818719732443922} + m_PrefabAsset: {fileID: 0} +--- !u!4 &4828818719732838786 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, + type: 3} + m_PrefabInstance: {fileID: 4828818719732443922} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5342833014125417103 +PrefabInstance: + m_ObjectHideFlags: 0 serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300012, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} - m_Bones: - - {fileID: 4930198374904308} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4930198374904308} - m_AABB: - m_Center: {x: -0.0006609438, y: 0.0013324535, z: -0.013972079} - m_Extent: {x: 0.0145619055, y: 0.009363498, z: 0.0133649465} - m_DirtyAABB: 0 ---- !u!137 &137967895554077838 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1937342357854408} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 + m_Modification: + m_TransformParent: {fileID: 488160} + m_Modifications: + - target: {fileID: 100014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_Name + value: right_touch_controller_model_skel + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9500000, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 9889b45bb24173a4d93c7f6b5a496800, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c3798d66af7bbe54bbfe22a3b302300b, type: 3} +--- !u!1 &5342833014125450273 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 100014, guid: c3798d66af7bbe54bbfe22a3b302300b, + type: 3} + m_PrefabInstance: {fileID: 5342833014125417103} + m_PrefabAsset: {fileID: 0} +--- !u!4 &5342833014125283329 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400014, guid: c3798d66af7bbe54bbfe22a3b302300b, + type: 3} + m_PrefabInstance: {fileID: 5342833014125417103} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6871378272464130637 +PrefabInstance: + m_ObjectHideFlags: 0 serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300014, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} - m_Bones: - - {fileID: 4336468700419714} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4336468700419714} - m_AABB: - m_Center: {x: 0.00000037020072, y: 0.00000087032095, z: 0.00057196105} - m_Extent: {x: 0.004508083, y: 0.004509521, z: 0.0007474739} - m_DirtyAABB: 0 + m_Modification: + m_TransformParent: {fileID: 488160} + m_Modifications: + - target: {fileID: 100014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_Name + value: left_touch_controller_model_skel + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9500000, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 3c08ce434693a4740bb5d256ffa5f8d1, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, type: 3} +--- !u!1 &6871378272464032995 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 100014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, + type: 3} + m_PrefabInstance: {fileID: 6871378272464130637} + m_PrefabAsset: {fileID: 0} +--- !u!4 &6871378272463734979 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400014, guid: c3ba18e9fa5e9104098cbdbb3e23a5b4, + type: 3} + m_PrefabInstance: {fileID: 6871378272464130637} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Oculus/VR/Prefabs/OVRControllerPrefab.prefab.meta b/Assets/Oculus/VR/Prefabs/OVRControllerPrefab.prefab.meta index 226b4d72..085c5d98 100644 --- a/Assets/Oculus/VR/Prefabs/OVRControllerPrefab.prefab.meta +++ b/Assets/Oculus/VR/Prefabs/OVRControllerPrefab.prefab.meta @@ -1,8 +1,7 @@ fileFormatVersion: 2 guid: d9809c5e8418bb047bf2c8ba1d1a2cec -timeCreated: 1486168892 -licenseType: Store -NativeFormatImporter: +PrefabImporter: + externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Oculus/VR/Prefabs/OVRCustomHandPrefab_L.prefab b/Assets/Oculus/VR/Prefabs/OVRCustomHandPrefab_L.prefab index fcb33cbe..10f93287 100644 --- a/Assets/Oculus/VR/Prefabs/OVRCustomHandPrefab_L.prefab +++ b/Assets/Oculus/VR/Prefabs/OVRCustomHandPrefab_L.prefab @@ -1,22 +1,12 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: ---- !u!1001 &100100000 -Prefab: - m_ObjectHideFlags: 1 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 0} - m_Modifications: [] - m_RemovedComponents: [] - m_ParentPrefab: {fileID: 0} - m_RootGameObject: {fileID: 1732268206786806} - m_IsPrefabParent: 1 --- !u!1 &1003592954002200 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4988006361719660} m_Layer: 0 @@ -26,12 +16,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4988006361719660 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1003592954002200} + m_LocalRotation: {x: 3.7685698e-16, y: 0.7218523, z: -0.12169107, w: 0.6812639} + m_LocalPosition: {x: -0.03251291, y: 5.5511148e-18, z: -1.7763568e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4771060497142086} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1055909473010358 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4178103343611426} m_Layer: 0 @@ -41,12 +46,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4178103343611426 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1055909473010358} + m_LocalRotation: {x: 0.03068309, y: 0.018855589, z: -0.043281443, w: 0.9984136} + m_LocalPosition: {x: -0.09599624, y: 0.0073164543, z: -0.02355068} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4439640941519472} + - {fileID: 4310422937706112} + m_Father: {fileID: 4562126893162318} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1073802471101866 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4789457035641226} m_Layer: 0 @@ -56,12 +78,28 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4789457035641226 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1073802471101866} + m_LocalRotation: {x: 0.37538692, y: -0.42458406, z: 0.007778856, w: 0.8238644} + m_LocalPosition: {x: -0.020069301, y: 0.011554099, z: -0.0104965195} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4771060497142086} + m_Father: {fileID: 4562126893162318} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1094180951327588 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4808358397016166} m_Layer: 0 @@ -71,12 +109,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4808358397016166 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1094180951327588} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.032258697, y: -0.01390163, z: -0.00085723423} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 14 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1099419752738008 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4945672018387430} m_Layer: 0 @@ -86,12 +139,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4945672018387430 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1099419752738008} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.018125344, y: 0.005780465, z: 0.0003378707} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4319936315435910} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1102361899082002 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4771060497142086} m_Layer: 0 @@ -101,12 +169,31 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4771060497142086 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1102361899082002} + m_LocalRotation: {x: 0.26023024, y: -0.024330912, z: -0.12567802, w: 0.95702314} + m_LocalPosition: {x: -0.024852559, y: -8.881784e-18, z: 1.0547119e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4511282706868578} + - {fileID: 4923526880159192} + - {fileID: 4988006361719660} + - {fileID: 4846267599207224} + m_Father: {fileID: 4789457035641226} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1121530367872790 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4913291532809462} m_Layer: 0 @@ -116,12 +203,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4913291532809462 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1121530367872790} + m_LocalRotation: {x: -0.03761665, y: 0.042937692, z: 0.013286047, w: 0.99828094} + m_LocalPosition: {x: -0.030720409, y: -3.330669e-18, z: -8.881784e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4204096449325514} + - {fileID: 4612222730730876} + m_Father: {fileID: 4417149081627286} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1142300610397456 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4702573677762660} m_Layer: 0 @@ -131,12 +235,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4702573677762660 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1142300610397456} + m_LocalRotation: {x: 1.0748633e-17, y: 0.04351636, z: 0.24580926, w: 0.96834093} + m_LocalPosition: {x: -0.020069301, y: 0.011554099, z: -0.0104965195} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 31 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1145320188996728 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4326705712341020} m_Layer: 0 @@ -146,12 +265,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4326705712341020 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1145320188996728} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.031125726, y: -0.0026320296, z: -0.02514459} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1153038631775868 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4345738514649220} m_Layer: 0 @@ -161,12 +295,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4345738514649220 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1153038631775868} + m_LocalRotation: {x: -0.011228237, y: 0.00437888, z: 0.0019782642, w: 0.99992543} + m_LocalPosition: {x: -0.04292699, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4699508361348608} + - {fileID: 4615574990593550} + m_Father: {fileID: 4515130557893472} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1165518834024390 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4632083467199296} m_Layer: 0 @@ -176,12 +327,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4632083467199296 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1165518834024390} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.017108196, y: 0.005134742, z: 0.0009990304} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4204096449325514} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1195491024936062 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4102437393509580} m_Layer: 0 @@ -191,12 +357,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4102437393509580 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1195491024936062} + m_LocalRotation: {x: -1.1565109e-16, y: 0.68458194, z: 0.11390015, w: 0.7199822} + m_LocalPosition: {x: -0.03379309, y: -2.5535128e-17, z: 2.6645352e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4511282706868578} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1204728968842496 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4730863053780380} m_Layer: 0 @@ -206,12 +387,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4730863053780380 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1204728968842496} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.09611815, y: -0.005218656, z: -0.021928234} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1219531211149702 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4297029131421562} m_Layer: 0 @@ -221,12 +417,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4297029131421562 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1219531211149702} + m_LocalRotation: {x: 5.2041704e-18, y: 1.3877788e-17, z: -1.7997756e-17, w: 1} + m_LocalPosition: {x: -0.011583036, y: -6.661338e-18, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4524810560304764} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1227615245037232 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4104995983339432} m_Layer: 0 @@ -236,12 +447,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4104995983339432 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1227615245037232} + m_LocalRotation: {x: 4.1633363e-17, y: -5.551115e-17, z: 3.469447e-17, w: 1} + m_LocalPosition: {x: -0.01193941, y: 1.110223e-18, z: 6.661338e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4319936315435910} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1231987469657500 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4153578433685328} m_Layer: 0 @@ -251,12 +477,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4153578433685328 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1231987469657500} + m_LocalRotation: {x: 1.3147193e-16, y: 0.7492193, z: -0.0585215, w: 0.6597315} + m_LocalPosition: {x: -0.030720409, y: -3.330669e-18, z: -6.661338e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4417149081627286} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1263930307255416 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4204096449325514} m_Layer: 0 @@ -266,12 +507,31 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4204096449325514 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1263930307255416} + m_LocalRotation: {x: 0.00064476096, y: -0.04917067, z: 0.024018826, w: 0.99850136} + m_LocalPosition: {x: -0.020311384, y: 6.661338e-18, z: -8.881784e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4224614346273668} + - {fileID: 4632083467199296} + - {fileID: 4222966581868304} + - {fileID: 4501634264160836} + m_Father: {fileID: 4913291532809462} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1285661188137574 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4647965363832890} m_Layer: 0 @@ -281,12 +541,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4647965363832890 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1285661188137574} + m_LocalRotation: {x: 2.0816682e-17, y: -1.3877788e-17, z: -1.7347235e-17, w: 1} + m_LocalPosition: {x: -0.0122034745, y: -6.661338e-18, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4699508361348608} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1286973465318448 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4121485431770798} m_Layer: 0 @@ -296,12 +571,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4121485431770798 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1286973465318448} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.023881743, y: 0.033495843, z: -0.012114872} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 15 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1286975142158218 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4202809639216194} m_Layer: 0 @@ -311,12 +601,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4202809639216194 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1286975142158218} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.031793382, y: -0.012720075, z: 0.009874243} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 27 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1299546650925714 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4513653759072024} m_Layer: 0 @@ -326,12 +631,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4513653759072024 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1299546650925714} + m_LocalRotation: {x: -3.01168e-17, y: -0.17582493, z: -0.70094967, w: 0.69119835} + m_LocalPosition: {x: -0.07789584, y: 0.013691182, z: 0.035054065} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 19 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1313864920060254 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4612222730730876} m_Layer: 0 @@ -341,12 +661,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4612222730730876 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1313864920060254} + m_LocalRotation: {x: 5.8284866e-18, y: 0.6882537, z: 0.0010032057, w: 0.72546947} + m_LocalPosition: {x: -0.020311384, y: 2.220446e-18, z: 3.330669e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4913291532809462} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1319325477145168 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4179284116126766} m_Layer: 0 @@ -356,12 +691,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4179284116126766 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1319325477145168} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0006809305, y: -0.011009849, z: 0.0030307423} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4515130557893472} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1367616435690710 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4789458452374276} - component: {fileID: 95390787848344758} @@ -372,12 +722,48 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4789458452374276 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1367616435690710} + 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_Children: + - {fileID: 4562126893162318} + - {fileID: 4840507617941916} + m_Father: {fileID: 4927695388962516} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &95390787848344758 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1367616435690710} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: 442d5b4503ed83c4897ef44659446587, type: 3} + m_Controller: {fileID: 0} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 --- !u!1 &1393433834654804 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4833922627094908} m_Layer: 0 @@ -387,12 +773,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4833922627094908 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1393433834654804} + m_LocalRotation: {x: -1.3877788e-17, y: -1.8388069e-16, z: -2.4980018e-16, w: 1} + m_LocalPosition: {x: -0.014863368, y: 0, z: -8.881784e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4542833751384476} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1405685377050602 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4913753453655698} m_Layer: 0 @@ -402,12 +803,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4913753453655698 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1405685377050602} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.015404448, y: -0.006164825, z: 0.0003091432} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4524810560304764} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1420147266551370 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4562126893162318} m_Layer: 0 @@ -417,12 +833,59 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4562126893162318 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1420147266551370} + 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_Children: + - {fileID: 4641231825944820} + - {fileID: 4178103343611426} + - {fileID: 4515130557893472} + - {fileID: 4559078275043850} + - {fileID: 4876270575425730} + - {fileID: 4789457035641226} + - {fileID: 4730863053780380} + - {fileID: 4736991955847838} + - {fileID: 4176639798641328} + - {fileID: 4326705712341020} + - {fileID: 4975001866631280} + - {fileID: 4778838571259814} + - {fileID: 4258682669044212} + - {fileID: 4620045435722338} + - {fileID: 4808358397016166} + - {fileID: 4121485431770798} + - {fileID: 4701115029648134} + - {fileID: 4065231626000536} + - {fileID: 4524937456313628} + - {fileID: 4513653759072024} + - {fileID: 4151681478596992} + - {fileID: 4001587400043954} + - {fileID: 4337148572201208} + - {fileID: 4673224142818226} + - {fileID: 4709580368530308} + - {fileID: 4723185206809210} + - {fileID: 4930983035417160} + - {fileID: 4202809639216194} + - {fileID: 4927187610440856} + - {fileID: 4063635372302338} + - {fileID: 4707957086871710} + - {fileID: 4702573677762660} + m_Father: {fileID: 4789458452374276} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1429833340266136 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4295512442569564} m_Layer: 0 @@ -432,12 +895,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4295512442569564 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1429833340266136} + m_LocalRotation: {x: 1.605726e-15, y: 0.71326023, z: -0.006631614, w: 0.70086795} + m_LocalPosition: {x: -0.026573397, y: -4.440892e-18, z: -8.881784e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4837604885819856} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1430541181625126 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4699508361348608} m_Layer: 0 @@ -447,12 +925,31 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4699508361348608 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1430541181625126} + m_LocalRotation: {x: -0.034319542, y: 0.004611837, z: 0.09300701, w: 0.9950631} + m_LocalPosition: {x: -0.027549583, y: 0, z: -4.440892e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4647965363832890} + - {fileID: 4045275670359654} + - {fileID: 4632502700799338} + - {fileID: 4437140624287864} + m_Father: {fileID: 4345738514649220} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1431886518160342 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4366847818129506} m_Layer: 0 @@ -462,12 +959,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4366847818129506 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1431886518160342} + m_LocalRotation: {x: -3.699927e-16, y: 0.7107332, z: -0.015982324, w: 0.70328015} + m_LocalPosition: {x: -0.04292699, y: 2.220446e-18, z: 2.220446e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4515130557893472} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1457235584575586 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4063635372302338} m_Layer: 0 @@ -477,12 +989,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4063635372302338 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1457235584575586} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.090111874, y: 0.023441624, z: 0.018823301} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 29 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1460556292968306 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4837604885819856} m_Layer: 0 @@ -492,12 +1019,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4837604885819856 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1460556292968306} + m_LocalRotation: {x: -0.033632524, y: 0.0027898494, z: -0.005676029, w: 0.99941427} + m_LocalPosition: {x: -0.0389961, y: 7.771561e-18, z: -8.881784e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4319936315435910} + - {fileID: 4295512442569564} + m_Father: {fileID: 4876270575425730} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1473573554971700 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4524937456313628} m_Layer: 0 @@ -507,12 +1051,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4524937456313628 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1473573554971700} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.07580273, y: 0.004132048, z: 0.03734504} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 18 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1474613188913336 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4897388692554662} m_Layer: 0 @@ -522,12 +1081,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4897388692554662 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1474613188913336} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.022363367, y: -0.0010250708, z: 0.0002956079} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4524810560304764} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1495547324326310 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4151681478596992} m_Layer: 0 @@ -537,12 +1111,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4151681478596992 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1495547324326310} + m_LocalRotation: {x: 2.365652e-17, y: 0.78830963, z: -0.18553992, w: 0.5866369} + m_LocalPosition: {x: -0.07789584, y: 0.013691182, z: 0.035054065} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 20 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1501068066296852 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4036246526268684} m_Layer: 0 @@ -552,12 +1141,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4036246526268684 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1501068066296852} + m_LocalRotation: {x: 2.3891104e-16, y: 0.71541184, z: -0.048002377, w: 0.6970521} + m_LocalPosition: {x: -0.0389961, y: 4.440892e-18, z: 1.110223e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4876270575425730} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1503877996444186 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4511282706868578} m_Layer: 0 @@ -567,27 +1171,59 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!1 &1520041954151050 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4399149056336536} - m_Layer: 0 - m_Name: l_ring_fingernail_marker - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 +--- !u!4 &4511282706868578 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1503877996444186} + m_LocalRotation: {x: -0.08270365, y: 0.07696168, z: 0.084062226, w: 0.99003565} + m_LocalPosition: {x: -0.03251291, y: 1.7763568e-17, z: -2.6090241e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4542833751384476} + - {fileID: 4102437393509580} + m_Father: {fileID: 4771060497142086} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1520041954151050 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4399149056336536} + m_Layer: 0 + m_Name: l_ring_fingernail_marker + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4399149056336536 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1520041954151050} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.016140504, y: -0.0065357205, z: -0.0003754784} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4319936315435910} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1521037339739344 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4439640941519472} m_Layer: 0 @@ -597,12 +1233,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4439640941519472 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1521037339739344} + m_LocalRotation: {x: -0.025852412, y: 0.0071160584, z: -0.0032929415, w: 0.99963504} + m_LocalPosition: {x: -0.0379273, y: -2.220446e-18, z: -8.881784e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4524810560304764} + - {fileID: 4853722958274216} + m_Father: {fileID: 4178103343611426} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1537640236240474 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4222966581868304} m_Layer: 0 @@ -612,12 +1265,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4222966581868304 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1537640236240474} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.021922385, y: -0.0012160853, z: -0.00024648113} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4204096449325514} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1538552291812218 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4319936315435910} m_Layer: 0 @@ -627,12 +1295,31 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4319936315435910 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1538552291812218} + m_LocalRotation: {x: -0.0034774544, y: -0.029179465, z: 0.02502854, w: 0.99925476} + m_LocalPosition: {x: -0.026573397, y: -4.440892e-18, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4104995983339432} + - {fileID: 4945672018387430} + - {fileID: 4875755424105542} + - {fileID: 4399149056336536} + m_Father: {fileID: 4837604885819856} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1539667218475886 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4787701974537636} m_Layer: 0 @@ -642,12 +1329,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4787701974537636 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1539667218475886} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.015208288, y: -0.0057479027, z: -0.00019024296} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4542833751384476} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1540177964910918 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4673224142818226} m_Layer: 0 @@ -657,12 +1359,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4673224142818226 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1540177964910918} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.076709814, y: 0.02712936, z: 0.038026694} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 23 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1589176743408326 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4853722958274216} m_Layer: 0 @@ -672,12 +1389,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4853722958274216 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1589176743408326} + m_LocalRotation: {x: 1.7943107e-16, y: 0.71756595, z: -0.023630999, w: 0.6960895} + m_LocalPosition: {x: -0.024303643, y: 1.110223e-18, z: 4.440892e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4439640941519472} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1594145237178518 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4001587400043954} m_Layer: 0 @@ -687,12 +1419,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4001587400043954 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1594145237178518} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.030887451, y: -0.010569479, z: 0.015313314} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 21 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1598854801710444 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4337148572201208} m_Layer: 0 @@ -702,12 +1449,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4337148572201208 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1598854801710444} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.024559118, y: 0.02867835, z: 0.018615067} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1603907026097434 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4325499800668186} m_Layer: 0 @@ -717,12 +1479,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4325499800668186 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1603907026097434} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.024590766, y: -0.0010269715, z: 0.0006703722} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4542833751384476} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1616847770321604 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4632502700799338} m_Layer: 0 @@ -732,12 +1509,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4632502700799338 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1616847770321604} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.02496492, y: -0.0011372991, z: 0.00030865276} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4699508361348608} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1637213570895744 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4045275670359654} m_Layer: 0 @@ -747,12 +1539,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4045275670359654 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1637213570895744} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.01761396, y: 0.0062872535, z: 0.000073752104} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4699508361348608} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1643422373325056 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4258682669044212} m_Layer: 0 @@ -762,12 +1569,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4258682669044212 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643422373325056} + m_LocalRotation: {x: -5.0163127e-18, y: -0.012751378, z: -0.7221367, w: 0.69163287} + m_LocalPosition: {x: -0.095646605, y: 0.0025431546, z: -0.0017259055} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1651920366775336 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4641231825944820} m_Layer: 0 @@ -777,12 +1599,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4641231825944820 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1651920366775336} + 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_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1659225593422874 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4723185206809210} m_Layer: 0 @@ -792,12 +1629,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4723185206809210 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1659225593422874} + m_LocalRotation: {x: 0, y: -0.077165164, z: -0.7174004, w: 0.6923744} + m_LocalPosition: {x: -0.08869379, y: 0.006529307, z: 0.017465241} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 25 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1667761981693730 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4930983035417160} m_Layer: 0 @@ -807,12 +1659,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4930983035417160 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1667761981693730} + m_LocalRotation: {x: 2.815203e-17, y: 0.7838948, z: -0.0762138, w: 0.6161985} + m_LocalPosition: {x: -0.08869379, y: 0.006529307, z: 0.017465241} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 26 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1676142497980822 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4707957086871710} m_Layer: 0 @@ -822,12 +1689,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4707957086871710 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676142497980822} + m_LocalRotation: {x: -9.947095e-17, y: 0.8370959, z: -0.2633566, w: -0.47949323} + m_LocalPosition: {x: -0.03595843, y: 0.019157719, z: -0.028028497} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 30 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1677087940028212 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4310422937706112} m_Layer: 0 @@ -837,12 +1719,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4310422937706112 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1677087940028212} + m_LocalRotation: {x: 2.0884326e-15, y: 0.7105201, z: -0.03675238, w: 0.70271647} + m_LocalPosition: {x: -0.0379273, y: 2.220446e-18, z: -4.440892e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4178103343611426} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1696555216213342 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4524810560304764} m_Layer: 0 @@ -852,27 +1749,61 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!1 &1697345750962126 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4501634264160836} - m_Layer: 0 - m_Name: l_pinky_fingernail_marker - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 +--- !u!4 &4524810560304764 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1696555216213342} + m_LocalRotation: {x: -0.016056, y: 0.027148725, z: 0.07203398, w: 0.99690336} + m_LocalPosition: {x: -0.024303643, y: 3.0531133e-18, z: 4.440892e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4297029131421562} + - {fileID: 4677646783326020} + - {fileID: 4897388692554662} + - {fileID: 4913753453655698} + m_Father: {fileID: 4439640941519472} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1697345750962126 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4501634264160836} + m_Layer: 0 + m_Name: l_pinky_fingernail_marker + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4501634264160836 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1697345750962126} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.015289234, y: -0.0056285444, z: -0.0005408356} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4204096449325514} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1706397270209090 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4065231626000536} m_Layer: 0 @@ -882,12 +1813,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4065231626000536 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1706397270209090} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.08176033, y: 0.020539844, z: -0.004241872} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 17 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1711414737279320 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4840507617941916} - component: {fileID: 137338082485951984} @@ -898,12 +1844,93 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4840507617941916 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1711414737279320} + 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_Children: [] + m_Father: {fileID: 4789458452374276} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &137338082485951984 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1711414737279320} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 442d5b4503ed83c4897ef44659446587, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 442d5b4503ed83c4897ef44659446587, type: 3} + m_Bones: + - {fileID: 4562126893162318} + - {fileID: 4771060497142086} + - {fileID: 4511282706868578} + - {fileID: 4542833751384476} + - {fileID: 4178103343611426} + - {fileID: 4439640941519472} + - {fileID: 4524810560304764} + - {fileID: 4515130557893472} + - {fileID: 4345738514649220} + - {fileID: 4699508361348608} + - {fileID: 4876270575425730} + - {fileID: 4837604885819856} + - {fileID: 4319936315435910} + - {fileID: 4559078275043850} + - {fileID: 4417149081627286} + - {fileID: 4913291532809462} + - {fileID: 4204096449325514} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 4562126893162318} + m_AABB: + m_Center: {x: -0.08462602, y: 0.018837288, z: -0.013709355} + m_Extent: {x: 0.1069836, y: 0.05242701, z: 0.07775007} + m_DirtyAABB: 0 --- !u!1 &1732268206786806 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4927695388962516} - component: {fileID: 114320645607636018} @@ -915,12 +1942,110 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4927695388962516 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1732268206786806} + 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_Children: + - {fileID: 4789458452374276} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &114320645607636018 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1732268206786806} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cb7623a8f0b49cf4dbaa40aea4d4be64, type: 3} + m_Name: + m_EditorClassIdentifier: + HandType: 0 + _pointerPoseRoot: {fileID: 0} +--- !u!114 &114674612155881938 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1732268206786806} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 674a40251fe8ad841b18517ac5209957, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonType: 0 + _updateRootPose: 0 + _updateRootScale: 0 + _enablePhysicsCapsules: 0 + _applyBoneTranslations: 0 + _customBones_V2: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} --- !u!1 &1738046394478382 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4620045435722338} m_Layer: 0 @@ -930,12 +2055,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4620045435722338 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1738046394478382} + m_LocalRotation: {x: 4.9666047e-16, y: 0.7409508, z: -0.00991445, w: 0.6714862} + m_LocalPosition: {x: -0.095646605, y: 0.0025431546, z: -0.0017259055} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1752495592943620 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4736991955847838} m_Layer: 0 @@ -945,12 +2085,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4736991955847838 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752495592943620} + m_LocalRotation: {x: 1.5147017e-17, y: 0.04358452, z: -0.72520274, w: 0.68715465} + m_LocalPosition: {x: -0.09599624, y: 0.0073164543, z: -0.02355068} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1754089187962412 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4709580368530308} m_Layer: 0 @@ -960,12 +2115,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4709580368530308 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1754089187962412} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.08772871, y: -0.003426938, z: 0.020637572} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 24 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1764226292457560 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4437140624287864} m_Layer: 0 @@ -975,12 +2145,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4437140624287864 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1764226292457560} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.017000813, y: -0.006589214, z: 0.00014421427} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4699508361348608} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1768660759588060 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4846267599207224} m_Layer: 0 @@ -990,12 +2175,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4846267599207224 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1768660759588060} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0028762673, y: 0.023947366, z: -0.014718027} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4771060497142086} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1791933322066870 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4515130557893472} m_Layer: 0 @@ -1005,12 +2205,30 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4515130557893472 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1791933322066870} + m_LocalRotation: {x: -0.009066327, y: 0.05146559, z: -0.051835753, w: 0.99728745} + m_LocalPosition: {x: -0.095646605, y: 0.0025431546, z: -0.0017259055} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4345738514649220} + - {fileID: 4179284116126766} + - {fileID: 4366847818129506} + m_Father: {fileID: 4562126893162318} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1827214511279382 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4451947704827988} m_Layer: 0 @@ -1020,12 +2238,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4451947704827988 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1827214511279382} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.01354, y: 0.00952, z: 0.00024} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4542833751384476} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1829571907382640 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4542833751384476} m_Layer: 0 @@ -1035,27 +2268,61 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!1 &1833092045915350 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4927187610440856} - m_Layer: 0 - m_Name: l_ring_palm_collider_base1_marker - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 +--- !u!4 &4542833751384476 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1829571907382640} + m_LocalRotation: {x: 0.08350578, y: -0.065015696, z: 0.058274068, w: 0.9926751} + m_LocalPosition: {x: -0.03379309, y: -1.3322676e-17, z: 3.4416914e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4833922627094908} + - {fileID: 4451947704827988} + - {fileID: 4325499800668186} + - {fileID: 4787701974537636} + m_Father: {fileID: 4511282706868578} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1833092045915350 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4927187610440856} + m_Layer: 0 + m_Name: l_ring_palm_collider_base1_marker + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4927187610440856 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1833092045915350} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.025067307, y: 0.02954595, z: 0.010401509} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 28 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1851580404326698 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4923526880159192} m_Layer: 0 @@ -1065,12 +2332,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4923526880159192 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851580404326698} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.00929482, y: -0.012075913, z: 0.0015779873} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4771060497142086} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1853042336644024 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4615574990593550} m_Layer: 0 @@ -1080,12 +2362,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4615574990593550 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1853042336644024} + m_LocalRotation: {x: -1.03328696e-16, y: 0.73815125, z: -0.064592175, w: 0.67153597} + m_LocalPosition: {x: -0.027549583, y: 0, z: -8.881784e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4345738514649220} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1861845431115816 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4778838571259814} m_Layer: 0 @@ -1095,12 +2392,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4778838571259814 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1861845431115816} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.10016154, y: 0.0238383, z: -0.024254706} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1880418305314592 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4677646783326020} m_Layer: 0 @@ -1110,12 +2422,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4677646783326020 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1880418305314592} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.015230434, y: 0.0056992564, z: 0.00008346747} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4524810560304764} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1890790538293954 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4224614346273668} m_Layer: 0 @@ -1125,12 +2452,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4224614346273668 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1890790538293954} + m_LocalRotation: {x: -2.7755576e-17, y: 1.3877788e-16, z: 6.938894e-18, w: 1} + m_LocalPosition: {x: -0.011908775, y: 1.6653345e-18, z: 4.440892e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4204096449325514} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1894459976662924 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4559078275043850} m_Layer: 0 @@ -1140,12 +2482,28 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4559078275043850 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1894459976662924} + m_LocalRotation: {x: -0.20703599, y: 0.14034285, z: -0.0183118, w: 0.96804166} + m_LocalPosition: {x: -0.034073558, y: 0.009419835, z: 0.022998573} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4417149081627286} + m_Father: {fileID: 4562126893162318} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1895920940756908 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4975001866631280} m_Layer: 0 @@ -1155,12 +2513,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4975001866631280 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1895920940756908} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.023881743, y: 0.033495843, z: -0.012114872} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1946567125134520 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4876270575425730} m_Layer: 0 @@ -1170,12 +2543,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4876270575425730 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1946567125134520} + m_LocalRotation: {x: -0.053159367, y: 0.12310341, z: -0.049813494, w: 0.9897163} + m_LocalPosition: {x: -0.08869379, y: 0.006529307, z: 0.017465241} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4837604885819856} + - {fileID: 4036246526268684} + m_Father: {fileID: 4562126893162318} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1965702014429150 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4875755424105542} m_Layer: 0 @@ -1185,12 +2575,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4875755424105542 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1965702014429150} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.024326129, y: -0.0016081713, z: 0.0002579043} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4319936315435910} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1973079942686900 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4701115029648134} m_Layer: 0 @@ -1200,12 +2605,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4701115029648134 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1973079942686900} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0987255, y: 0.020649666, z: -0.0006196165} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 16 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1973670658740738 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4176639798641328} m_Layer: 0 @@ -1215,12 +2635,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4176639798641328 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1973670658740738} + m_LocalRotation: {x: -4.670291e-17, y: 0.70719343, z: 0.04265578, w: 0.7057322} + m_LocalPosition: {x: -0.09599624, y: 0.0073164543, z: -0.02355068} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4562126893162318} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1999977758266682 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4417149081627286} m_Layer: 0 @@ -1230,1268 +2665,19 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &4001587400043954 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1594145237178518} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.030887451, y: -0.010569479, z: 0.015313314} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 21 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4036246526268684 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1501068066296852} - m_LocalRotation: {x: 2.3891104e-16, y: 0.71541184, z: -0.048002377, w: 0.6970521} - m_LocalPosition: {x: -0.0389961, y: 4.440892e-18, z: 1.110223e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4876270575425730} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4045275670359654 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1637213570895744} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.01761396, y: 0.0062872535, z: 0.000073752104} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4699508361348608} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4063635372302338 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1457235584575586} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.090111874, y: 0.023441624, z: 0.018823301} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 29 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4065231626000536 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1706397270209090} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.08176033, y: 0.020539844, z: -0.004241872} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 17 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4102437393509580 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1195491024936062} - m_LocalRotation: {x: -1.1565109e-16, y: 0.68458194, z: 0.11390015, w: 0.7199822} - m_LocalPosition: {x: -0.03379309, y: -2.5535128e-17, z: 2.6645352e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4511282706868578} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4104995983339432 +--- !u!4 &4417149081627286 Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1227615245037232} - m_LocalRotation: {x: 4.1633363e-17, y: -5.551115e-17, z: 3.469447e-17, w: 1} - m_LocalPosition: {x: -0.01193941, y: 1.110223e-18, z: 6.661338e-18} + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1999977758266682} + m_LocalRotation: {x: 0.09111303, y: -0.0040713567, z: -0.02812922, w: 0.9954349} + m_LocalPosition: {x: -0.04565054, y: 0.0000009982332, z: -0.0000021940255} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4319936315435910} + m_Children: + - {fileID: 4913291532809462} + - {fileID: 4153578433685328} + m_Father: {fileID: 4559078275043850} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4121485431770798 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1286973465318448} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.023881743, y: 0.033495843, z: -0.012114872} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 15 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4151681478596992 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1495547324326310} - m_LocalRotation: {x: 2.365652e-17, y: 0.78830963, z: -0.18553992, w: 0.5866369} - m_LocalPosition: {x: -0.07789584, y: 0.013691182, z: 0.035054065} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 20 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4153578433685328 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1231987469657500} - m_LocalRotation: {x: 1.3147193e-16, y: 0.7492193, z: -0.0585215, w: 0.6597315} - m_LocalPosition: {x: -0.030720409, y: -3.330669e-18, z: -6.661338e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4417149081627286} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4176639798641328 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1973670658740738} - m_LocalRotation: {x: -4.670291e-17, y: 0.70719343, z: 0.04265578, w: 0.7057322} - m_LocalPosition: {x: -0.09599624, y: 0.0073164543, z: -0.02355068} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 8 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4178103343611426 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1055909473010358} - m_LocalRotation: {x: 0.03068309, y: 0.018855589, z: -0.043281443, w: 0.9984136} - m_LocalPosition: {x: -0.09599624, y: 0.0073164543, z: -0.02355068} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4439640941519472} - - {fileID: 4310422937706112} - m_Father: {fileID: 4562126893162318} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4179284116126766 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1319325477145168} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.0006809305, y: -0.011009849, z: 0.0030307423} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4515130557893472} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4202809639216194 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1286975142158218} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.031793382, y: -0.012720075, z: 0.009874243} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 27 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4204096449325514 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1263930307255416} - m_LocalRotation: {x: 0.00064476096, y: -0.04917067, z: 0.024018826, w: 0.99850136} - m_LocalPosition: {x: -0.020311384, y: 6.661338e-18, z: -8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4224614346273668} - - {fileID: 4632083467199296} - - {fileID: 4222966581868304} - - {fileID: 4501634264160836} - m_Father: {fileID: 4913291532809462} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4222966581868304 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1537640236240474} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.021922385, y: -0.0012160853, z: -0.00024648113} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4204096449325514} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4224614346273668 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1890790538293954} - m_LocalRotation: {x: -2.7755576e-17, y: 1.3877788e-16, z: 6.938894e-18, w: 1} - m_LocalPosition: {x: -0.011908775, y: 1.6653345e-18, z: 4.440892e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4204096449325514} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4258682669044212 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1643422373325056} - m_LocalRotation: {x: -5.0163127e-18, y: -0.012751378, z: -0.7221367, w: 0.69163287} - m_LocalPosition: {x: -0.095646605, y: 0.0025431546, z: -0.0017259055} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 12 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4295512442569564 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1429833340266136} - m_LocalRotation: {x: 1.605726e-15, y: 0.71326023, z: -0.006631614, w: 0.70086795} - m_LocalPosition: {x: -0.026573397, y: -4.440892e-18, z: -8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4837604885819856} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4297029131421562 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1219531211149702} - m_LocalRotation: {x: 5.2041704e-18, y: 1.3877788e-17, z: -1.7997756e-17, w: 1} - m_LocalPosition: {x: -0.011583036, y: -6.661338e-18, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4524810560304764} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4310422937706112 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1677087940028212} - m_LocalRotation: {x: 2.0884326e-15, y: 0.7105201, z: -0.03675238, w: 0.70271647} - m_LocalPosition: {x: -0.0379273, y: 2.220446e-18, z: -4.440892e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4178103343611426} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4319936315435910 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1538552291812218} - m_LocalRotation: {x: -0.0034774544, y: -0.029179465, z: 0.02502854, w: 0.99925476} - m_LocalPosition: {x: -0.026573397, y: -4.440892e-18, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4104995983339432} - - {fileID: 4945672018387430} - - {fileID: 4875755424105542} - - {fileID: 4399149056336536} - m_Father: {fileID: 4837604885819856} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4325499800668186 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1603907026097434} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.024590766, y: -0.0010269715, z: 0.0006703722} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4542833751384476} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4326705712341020 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1145320188996728} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.031125726, y: -0.0026320296, z: -0.02514459} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 9 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4337148572201208 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1598854801710444} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.024559118, y: 0.02867835, z: 0.018615067} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 22 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4345738514649220 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1153038631775868} - m_LocalRotation: {x: -0.011228237, y: 0.00437888, z: 0.0019782642, w: 0.99992543} - m_LocalPosition: {x: -0.04292699, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4699508361348608} - - {fileID: 4615574990593550} - m_Father: {fileID: 4515130557893472} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4366847818129506 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1431886518160342} - m_LocalRotation: {x: -3.699927e-16, y: 0.7107332, z: -0.015982324, w: 0.70328015} - m_LocalPosition: {x: -0.04292699, y: 2.220446e-18, z: 2.220446e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4515130557893472} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4399149056336536 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1520041954151050} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.016140504, y: -0.0065357205, z: -0.0003754784} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4319936315435910} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4417149081627286 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1999977758266682} - m_LocalRotation: {x: 0.09111303, y: -0.0040713567, z: -0.02812922, w: 0.9954349} - m_LocalPosition: {x: -0.04565054, y: 0.0000009982332, z: -0.0000021940255} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4913291532809462} - - {fileID: 4153578433685328} - m_Father: {fileID: 4559078275043850} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4437140624287864 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1764226292457560} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.017000813, y: -0.006589214, z: 0.00014421427} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4699508361348608} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4439640941519472 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1521037339739344} - m_LocalRotation: {x: -0.025852412, y: 0.0071160584, z: -0.0032929415, w: 0.99963504} - m_LocalPosition: {x: -0.0379273, y: -2.220446e-18, z: -8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4524810560304764} - - {fileID: 4853722958274216} - m_Father: {fileID: 4178103343611426} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4451947704827988 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1827214511279382} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.01354, y: 0.00952, z: 0.00024} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4542833751384476} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4501634264160836 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1697345750962126} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.015289234, y: -0.0056285444, z: -0.0005408356} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4204096449325514} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4511282706868578 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1503877996444186} - m_LocalRotation: {x: -0.08270365, y: 0.07696168, z: 0.084062226, w: 0.99003565} - m_LocalPosition: {x: -0.03251291, y: 1.7763568e-17, z: -2.6090241e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4542833751384476} - - {fileID: 4102437393509580} - m_Father: {fileID: 4771060497142086} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4513653759072024 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1299546650925714} - m_LocalRotation: {x: -3.01168e-17, y: -0.17582493, z: -0.70094967, w: 0.69119835} - m_LocalPosition: {x: -0.07789584, y: 0.013691182, z: 0.035054065} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 19 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4515130557893472 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1791933322066870} - m_LocalRotation: {x: -0.009066327, y: 0.05146559, z: -0.051835753, w: 0.99728745} - m_LocalPosition: {x: -0.095646605, y: 0.0025431546, z: -0.0017259055} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4345738514649220} - - {fileID: 4179284116126766} - - {fileID: 4366847818129506} - m_Father: {fileID: 4562126893162318} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4524810560304764 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1696555216213342} - m_LocalRotation: {x: -0.016056, y: 0.027148725, z: 0.07203398, w: 0.99690336} - m_LocalPosition: {x: -0.024303643, y: 3.0531133e-18, z: 4.440892e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4297029131421562} - - {fileID: 4677646783326020} - - {fileID: 4897388692554662} - - {fileID: 4913753453655698} - m_Father: {fileID: 4439640941519472} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4524937456313628 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1473573554971700} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.07580273, y: 0.004132048, z: 0.03734504} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 18 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4542833751384476 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1829571907382640} - m_LocalRotation: {x: 0.08350578, y: -0.065015696, z: 0.058274068, w: 0.9926751} - m_LocalPosition: {x: -0.03379309, y: -1.3322676e-17, z: 3.4416914e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4833922627094908} - - {fileID: 4451947704827988} - - {fileID: 4325499800668186} - - {fileID: 4787701974537636} - m_Father: {fileID: 4511282706868578} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4559078275043850 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1894459976662924} - m_LocalRotation: {x: -0.20703599, y: 0.14034285, z: -0.0183118, w: 0.96804166} - m_LocalPosition: {x: -0.034073558, y: 0.009419835, z: 0.022998573} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4417149081627286} - m_Father: {fileID: 4562126893162318} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4562126893162318 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1420147266551370} - 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_Children: - - {fileID: 4641231825944820} - - {fileID: 4178103343611426} - - {fileID: 4515130557893472} - - {fileID: 4559078275043850} - - {fileID: 4876270575425730} - - {fileID: 4789457035641226} - - {fileID: 4730863053780380} - - {fileID: 4736991955847838} - - {fileID: 4176639798641328} - - {fileID: 4326705712341020} - - {fileID: 4975001866631280} - - {fileID: 4778838571259814} - - {fileID: 4258682669044212} - - {fileID: 4620045435722338} - - {fileID: 4808358397016166} - - {fileID: 4121485431770798} - - {fileID: 4701115029648134} - - {fileID: 4065231626000536} - - {fileID: 4524937456313628} - - {fileID: 4513653759072024} - - {fileID: 4151681478596992} - - {fileID: 4001587400043954} - - {fileID: 4337148572201208} - - {fileID: 4673224142818226} - - {fileID: 4709580368530308} - - {fileID: 4723185206809210} - - {fileID: 4930983035417160} - - {fileID: 4202809639216194} - - {fileID: 4927187610440856} - - {fileID: 4063635372302338} - - {fileID: 4707957086871710} - - {fileID: 4702573677762660} - m_Father: {fileID: 4789458452374276} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4612222730730876 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1313864920060254} - m_LocalRotation: {x: 5.8284866e-18, y: 0.6882537, z: 0.0010032057, w: 0.72546947} - m_LocalPosition: {x: -0.020311384, y: 2.220446e-18, z: 3.330669e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4913291532809462} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4615574990593550 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1853042336644024} - m_LocalRotation: {x: -1.03328696e-16, y: 0.73815125, z: -0.064592175, w: 0.67153597} - m_LocalPosition: {x: -0.027549583, y: 0, z: -8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4345738514649220} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4620045435722338 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1738046394478382} - m_LocalRotation: {x: 4.9666047e-16, y: 0.7409508, z: -0.00991445, w: 0.6714862} - m_LocalPosition: {x: -0.095646605, y: 0.0025431546, z: -0.0017259055} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 13 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4632083467199296 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1165518834024390} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.017108196, y: 0.005134742, z: 0.0009990304} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4204096449325514} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4632502700799338 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1616847770321604} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.02496492, y: -0.0011372991, z: 0.00030865276} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4699508361348608} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4641231825944820 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1651920366775336} - 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_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4647965363832890 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1285661188137574} - m_LocalRotation: {x: 2.0816682e-17, y: -1.3877788e-17, z: -1.7347235e-17, w: 1} - m_LocalPosition: {x: -0.0122034745, y: -6.661338e-18, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4699508361348608} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4673224142818226 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1540177964910918} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.076709814, y: 0.02712936, z: 0.038026694} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 23 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4677646783326020 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1880418305314592} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.015230434, y: 0.0056992564, z: 0.00008346747} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4524810560304764} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4699508361348608 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1430541181625126} - m_LocalRotation: {x: -0.034319542, y: 0.004611837, z: 0.09300701, w: 0.9950631} - m_LocalPosition: {x: -0.027549583, y: 0, z: -4.440892e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4647965363832890} - - {fileID: 4045275670359654} - - {fileID: 4632502700799338} - - {fileID: 4437140624287864} - m_Father: {fileID: 4345738514649220} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4701115029648134 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1973079942686900} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.0987255, y: 0.020649666, z: -0.0006196165} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 16 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4702573677762660 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1142300610397456} - m_LocalRotation: {x: 1.0748633e-17, y: 0.04351636, z: 0.24580926, w: 0.96834093} - m_LocalPosition: {x: -0.020069301, y: 0.011554099, z: -0.0104965195} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 31 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4707957086871710 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1676142497980822} - m_LocalRotation: {x: -9.947095e-17, y: 0.8370959, z: -0.2633566, w: -0.47949323} - m_LocalPosition: {x: -0.03595843, y: 0.019157719, z: -0.028028497} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 30 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4709580368530308 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1754089187962412} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.08772871, y: -0.003426938, z: 0.020637572} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 24 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4723185206809210 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1659225593422874} - m_LocalRotation: {x: 0, y: -0.077165164, z: -0.7174004, w: 0.6923744} - m_LocalPosition: {x: -0.08869379, y: 0.006529307, z: 0.017465241} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 25 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4730863053780380 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1204728968842496} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.09611815, y: -0.005218656, z: -0.021928234} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4736991955847838 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1752495592943620} - m_LocalRotation: {x: 1.5147017e-17, y: 0.04358452, z: -0.72520274, w: 0.68715465} - m_LocalPosition: {x: -0.09599624, y: 0.0073164543, z: -0.02355068} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4771060497142086 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1102361899082002} - m_LocalRotation: {x: 0.26023024, y: -0.024330912, z: -0.12567802, w: 0.95702314} - m_LocalPosition: {x: -0.024852559, y: -8.881784e-18, z: 1.0547119e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4511282706868578} - - {fileID: 4923526880159192} - - {fileID: 4988006361719660} - - {fileID: 4846267599207224} - m_Father: {fileID: 4789457035641226} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4778838571259814 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1861845431115816} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.10016154, y: 0.0238383, z: -0.024254706} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 11 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4787701974537636 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1539667218475886} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.015208288, y: -0.0057479027, z: -0.00019024296} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4542833751384476} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4789457035641226 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1073802471101866} - m_LocalRotation: {x: 0.37538692, y: -0.42458406, z: 0.007778856, w: 0.8238644} - m_LocalPosition: {x: -0.020069301, y: 0.011554099, z: -0.0104965195} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4771060497142086} - m_Father: {fileID: 4562126893162318} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4789458452374276 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1367616435690710} - 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_Children: - - {fileID: 4562126893162318} - - {fileID: 4840507617941916} - m_Father: {fileID: 4927695388962516} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4808358397016166 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1094180951327588} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.032258697, y: -0.01390163, z: -0.00085723423} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 14 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4833922627094908 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1393433834654804} - m_LocalRotation: {x: -1.3877788e-17, y: -1.8388069e-16, z: -2.4980018e-16, w: 1} - m_LocalPosition: {x: -0.014863368, y: 0, z: -8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4542833751384476} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4837604885819856 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1460556292968306} - m_LocalRotation: {x: -0.033632524, y: 0.0027898494, z: -0.005676029, w: 0.99941427} - m_LocalPosition: {x: -0.0389961, y: 7.771561e-18, z: -8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4319936315435910} - - {fileID: 4295512442569564} - m_Father: {fileID: 4876270575425730} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4840507617941916 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1711414737279320} - 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_Children: [] - m_Father: {fileID: 4789458452374276} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4846267599207224 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1768660759588060} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.0028762673, y: 0.023947366, z: -0.014718027} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4771060497142086} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4853722958274216 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1589176743408326} - m_LocalRotation: {x: 1.7943107e-16, y: 0.71756595, z: -0.023630999, w: 0.6960895} - m_LocalPosition: {x: -0.024303643, y: 1.110223e-18, z: 4.440892e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4439640941519472} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4875755424105542 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1965702014429150} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.024326129, y: -0.0016081713, z: 0.0002579043} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4319936315435910} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4876270575425730 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1946567125134520} - m_LocalRotation: {x: -0.053159367, y: 0.12310341, z: -0.049813494, w: 0.9897163} - m_LocalPosition: {x: -0.08869379, y: 0.006529307, z: 0.017465241} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4837604885819856} - - {fileID: 4036246526268684} - m_Father: {fileID: 4562126893162318} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4897388692554662 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1474613188913336} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.022363367, y: -0.0010250708, z: 0.0002956079} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4524810560304764} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4913291532809462 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1121530367872790} - m_LocalRotation: {x: -0.03761665, y: 0.042937692, z: 0.013286047, w: 0.99828094} - m_LocalPosition: {x: -0.030720409, y: -3.330669e-18, z: -8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4204096449325514} - - {fileID: 4612222730730876} - m_Father: {fileID: 4417149081627286} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4913753453655698 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1405685377050602} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.015404448, y: -0.006164825, z: 0.0003091432} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4524810560304764} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4923526880159192 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1851580404326698} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.00929482, y: -0.012075913, z: 0.0015779873} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4771060497142086} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4927187610440856 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1833092045915350} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.025067307, y: 0.02954595, z: 0.010401509} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 28 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4927695388962516 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1732268206786806} - 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_Children: - - {fileID: 4789458452374276} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4930983035417160 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1667761981693730} - m_LocalRotation: {x: 2.815203e-17, y: 0.7838948, z: -0.0762138, w: 0.6161985} - m_LocalPosition: {x: -0.08869379, y: 0.006529307, z: 0.017465241} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 26 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4945672018387430 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1099419752738008} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.018125344, y: 0.005780465, z: 0.0003378707} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4319936315435910} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4975001866631280 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1895920940756908} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.023881743, y: 0.033495843, z: -0.012114872} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4562126893162318} - m_RootOrder: 10 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4988006361719660 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1003592954002200} - m_LocalRotation: {x: 3.7685698e-16, y: 0.7218523, z: -0.12169107, w: 0.6812639} - m_LocalPosition: {x: -0.03251291, y: 5.5511148e-18, z: -1.7763568e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4771060497142086} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!95 &95390787848344758 -Animator: - serializedVersion: 3 - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1367616435690710} - m_Enabled: 1 - m_Avatar: {fileID: 9000000, guid: 442d5b4503ed83c4897ef44659446587, type: 3} - m_Controller: {fileID: 0} - m_CullingMode: 1 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 ---- !u!114 &114320645607636018 -MonoBehaviour: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1732268206786806} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: cb7623a8f0b49cf4dbaa40aea4d4be64, type: 3} - m_Name: - m_EditorClassIdentifier: - HandType: 0 ---- !u!114 &114674612155881938 -MonoBehaviour: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1732268206786806} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 674a40251fe8ad841b18517ac5209957, type: 3} - m_Name: - m_EditorClassIdentifier: - _skeletonType: 0 - _updateRootPose: 0 - _updateRootScale: 0 - _enablePhysicsCapsules: 0 - _customBones: - - {fileID: 4562126893162318} - - {fileID: 4641231825944820} - - {fileID: 4789457035641226} - - {fileID: 4771060497142086} - - {fileID: 4511282706868578} - - {fileID: 4542833751384476} - - {fileID: 4178103343611426} - - {fileID: 4439640941519472} - - {fileID: 4524810560304764} - - {fileID: 4515130557893472} - - {fileID: 4345738514649220} - - {fileID: 4699508361348608} - - {fileID: 4876270575425730} - - {fileID: 4837604885819856} - - {fileID: 4319936315435910} - - {fileID: 4559078275043850} - - {fileID: 4417149081627286} - - {fileID: 4913291532809462} - - {fileID: 4204096449325514} - - {fileID: 4325499800668186} - - {fileID: 4897388692554662} - - {fileID: 4632502700799338} - - {fileID: 4875755424105542} - - {fileID: 4222966581868304} ---- !u!137 &137338082485951984 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1711414737279320} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: 442d5b4503ed83c4897ef44659446587, type: 3} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300000, guid: 442d5b4503ed83c4897ef44659446587, type: 3} - m_Bones: - - {fileID: 4562126893162318} - - {fileID: 4771060497142086} - - {fileID: 4511282706868578} - - {fileID: 4542833751384476} - - {fileID: 4178103343611426} - - {fileID: 4439640941519472} - - {fileID: 4524810560304764} - - {fileID: 4515130557893472} - - {fileID: 4345738514649220} - - {fileID: 4699508361348608} - - {fileID: 4876270575425730} - - {fileID: 4837604885819856} - - {fileID: 4319936315435910} - - {fileID: 4559078275043850} - - {fileID: 4417149081627286} - - {fileID: 4913291532809462} - - {fileID: 4204096449325514} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4562126893162318} - m_AABB: - m_Center: {x: -0.08462602, y: 0.018837288, z: -0.013709355} - m_Extent: {x: 0.1069836, y: 0.05242701, z: 0.07775007} - m_DirtyAABB: 0 diff --git a/Assets/Oculus/VR/Prefabs/OVRCustomHandPrefab_R.prefab b/Assets/Oculus/VR/Prefabs/OVRCustomHandPrefab_R.prefab index 48b1794c..8fbd20f3 100644 --- a/Assets/Oculus/VR/Prefabs/OVRCustomHandPrefab_R.prefab +++ b/Assets/Oculus/VR/Prefabs/OVRCustomHandPrefab_R.prefab @@ -1,22 +1,12 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: ---- !u!1001 &100100000 -Prefab: - m_ObjectHideFlags: 1 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 0} - m_Modifications: [] - m_RemovedComponents: [] - m_ParentPrefab: {fileID: 0} - m_RootGameObject: {fileID: 1581749144712736} - m_IsPrefabParent: 1 --- !u!1 &1008072628147780 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4969639723282940} m_Layer: 0 @@ -26,12 +16,30 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4969639723282940 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1008072628147780} + m_LocalRotation: {x: -0.009066327, y: 0.05146559, z: -0.051835753, w: 0.99728745} + m_LocalPosition: {x: 0.095646605, y: -0.0025431544, z: 0.0017259055} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4430907584103858} + - {fileID: 4790193185377138} + - {fileID: 4753472618401032} + m_Father: {fileID: 4779998117587278} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1012304635541838 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4095757401416052} m_Layer: 0 @@ -41,12 +49,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4095757401416052 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1012304635541838} + m_LocalRotation: {x: -0.02585241, y: 0.0071160593, z: -0.0032929424, w: 0.99963504} + m_LocalPosition: {x: 0.0379273, y: 3.330669e-18, z: 1.3322676e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4975455595100048} + - {fileID: 4850359327892544} + m_Father: {fileID: 4492482335422584} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1054309438318392 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4321069230695488} m_Layer: 0 @@ -56,12 +81,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4321069230695488 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1054309438318392} + m_LocalRotation: {x: -1.3877788e-17, y: -1.8388069e-16, z: -2.4980018e-16, w: 1} + m_LocalPosition: {x: 0.014863368, y: 0, z: 8.881784e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4636070314650120} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1078768791152968 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4288470492801480} m_Layer: 0 @@ -71,12 +111,31 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4288470492801480 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1078768791152968} + m_LocalRotation: {x: 0.0006447509, y: -0.049170654, z: 0.024018826, w: 0.99850136} + m_LocalPosition: {x: 0.020311384, y: -6.661338e-18, z: 1.7763568e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4193288172740230} + - {fileID: 4123421289044806} + - {fileID: 4806080251670844} + - {fileID: 4183902850315956} + m_Father: {fileID: 4147382078780322} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1080060279463866 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4307878652178570} m_Layer: 0 @@ -86,12 +145,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4307878652178570 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1080060279463866} + m_LocalRotation: {x: -1.1565109e-16, y: 0.68458194, z: 0.11390015, w: 0.7199822} + m_LocalPosition: {x: 0.03379309, y: 2.5535128e-17, z: -2.6645352e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4360771558957118} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1085198246029792 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4394718792331072} - component: {fileID: 137292928833085638} @@ -102,12 +176,93 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4394718792331072 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1085198246029792} + 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_Children: [] + m_Father: {fileID: 4314817122003250} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &137292928833085638 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1085198246029792} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 88e2e1bfe11ec6c438b0ade27eaeded1, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 88e2e1bfe11ec6c438b0ade27eaeded1, type: 3} + m_Bones: + - {fileID: 4779998117587278} + - {fileID: 4846004260786940} + - {fileID: 4360771558957118} + - {fileID: 4636070314650120} + - {fileID: 4492482335422584} + - {fileID: 4095757401416052} + - {fileID: 4975455595100048} + - {fileID: 4969639723282940} + - {fileID: 4430907584103858} + - {fileID: 4747889433240038} + - {fileID: 4150668574442040} + - {fileID: 4658771346061256} + - {fileID: 4711711751280016} + - {fileID: 4154509707602826} + - {fileID: 4113251682903106} + - {fileID: 4147382078780322} + - {fileID: 4288470492801480} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 4779998117587278} + m_AABB: + m_Center: {x: 0.08462605, y: -0.018837288, z: 0.013709333} + m_Extent: {x: 0.10698363, y: 0.05242701, z: 0.07775} + m_DirtyAABB: 0 --- !u!1 &1085907579291034 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4618951816831968} m_Layer: 0 @@ -117,12 +272,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4618951816831968 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1085907579291034} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.016140504, y: 0.0065357205, z: 0.0003754784} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4711711751280016} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1109363208795868 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4001605307124674} m_Layer: 0 @@ -132,12 +302,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4001605307124674 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1109363208795868} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.022363367, y: 0.0010250708, z: -0.0002956079} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4975455595100048} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1123039961393932 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4986970543481586} m_Layer: 0 @@ -147,12 +332,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4986970543481586 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1123039961393932} + m_LocalRotation: {x: 0, y: -0.077165164, z: -0.7174004, w: 0.6923744} + m_LocalPosition: {x: 0.08869379, y: -0.006529307, z: -0.017465241} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 25 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1129115348300954 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4532610971967324} m_Layer: 0 @@ -162,12 +362,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4532610971967324 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1129115348300954} + m_LocalRotation: {x: 2.3891104e-16, y: 0.71541184, z: -0.048002377, w: 0.6970521} + m_LocalPosition: {x: 0.0389961, y: -4.440892e-18, z: -1.110223e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4150668574442040} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1171042993906074 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4520904681817784} m_Layer: 0 @@ -177,12 +392,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4520904681817784 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1171042993906074} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.07580273, y: -0.004132048, z: -0.03734504} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 18 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1174650103922790 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4460701652704238} m_Layer: 0 @@ -192,12 +422,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4460701652704238 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1174650103922790} + m_LocalRotation: {x: -5.0163127e-18, y: -0.012751378, z: -0.7221367, w: 0.69163287} + m_LocalPosition: {x: 0.095646605, y: -0.0025431544, z: 0.0017259055} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1176551184115542 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4310649376108260} m_Layer: 0 @@ -207,12 +452,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4310649376108260 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1176551184115542} + m_LocalRotation: {x: -3.01168e-17, y: -0.17582493, z: -0.70094967, w: 0.69119835} + m_LocalPosition: {x: 0.07789584, y: -0.013691182, z: -0.035054065} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 19 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1177028252011222 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4980954572064906} m_Layer: 0 @@ -222,12 +482,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4980954572064906 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1177028252011222} + m_LocalRotation: {x: -4.670291e-17, y: 0.70719343, z: 0.04265578, w: 0.7057322} + m_LocalPosition: {x: 0.09599624, y: -0.0073164543, z: 0.02355068} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1178928620431016 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4777317802294454} m_Layer: 0 @@ -237,12 +512,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4777317802294454 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1178928620431016} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.024590766, y: 0.0010269715, z: -0.0006703722} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4636070314650120} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1182512635893718 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4806080251670844} m_Layer: 0 @@ -252,14 +542,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!1 &1196895545118474 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4044682744325110} +--- !u!4 &4806080251670844 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1182512635893718} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.021922385, y: 0.0012160853, z: 0.00024648113} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4288470492801480} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1196895545118474 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4044682744325110} m_Layer: 0 m_Name: r_ring_mcp_fe_axis_marker m_TagString: Untagged @@ -267,12 +572,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4044682744325110 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1196895545118474} + m_LocalRotation: {x: 2.815203e-17, y: 0.7838948, z: -0.0762138, w: 0.6161985} + m_LocalPosition: {x: 0.08869379, y: -0.006529307, z: -0.017465241} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 26 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1211551167852796 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4514292901198494} m_Layer: 0 @@ -282,12 +602,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4514292901198494 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1211551167852796} + m_LocalRotation: {x: -1.03328696e-16, y: 0.73815125, z: -0.064592175, w: 0.67153597} + m_LocalPosition: {x: 0.027549583, y: 0, z: 8.881784e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4430907584103858} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1245370292024082 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4360771558957118} m_Layer: 0 @@ -297,12 +632,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4360771558957118 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1245370292024082} + m_LocalRotation: {x: -0.08270373, y: 0.0769617, z: 0.08406223, w: 0.99003565} + m_LocalPosition: {x: 0.03251291, y: -4.440892e-18, z: 3.2196467e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4636070314650120} + - {fileID: 4307878652178570} + m_Father: {fileID: 4846004260786940} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1249941712221470 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4779998117587278} m_Layer: 0 @@ -312,12 +664,59 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4779998117587278 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1249941712221470} + 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_Children: + - {fileID: 4867210645376640} + - {fileID: 4492482335422584} + - {fileID: 4969639723282940} + - {fileID: 4154509707602826} + - {fileID: 4150668574442040} + - {fileID: 4764752792678808} + - {fileID: 4236299637383654} + - {fileID: 4504064974465930} + - {fileID: 4980954572064906} + - {fileID: 4553308154072206} + - {fileID: 4418495171037590} + - {fileID: 4600270998090894} + - {fileID: 4460701652704238} + - {fileID: 4390216536904796} + - {fileID: 4510653729337084} + - {fileID: 4596505520688404} + - {fileID: 4511044132531280} + - {fileID: 4472962620341642} + - {fileID: 4520904681817784} + - {fileID: 4310649376108260} + - {fileID: 4819183859718072} + - {fileID: 4267345630254606} + - {fileID: 4299041482640696} + - {fileID: 4693501708522370} + - {fileID: 4488697519138780} + - {fileID: 4986970543481586} + - {fileID: 4044682744325110} + - {fileID: 4884229045548672} + - {fileID: 4054699479513314} + - {fileID: 4796513125351680} + - {fileID: 4734035332587354} + - {fileID: 4498709215502994} + m_Father: {fileID: 4314817122003250} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1251127002094052 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4399338005550382} m_Layer: 0 @@ -327,12 +726,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4399338005550382 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1251127002094052} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.024326129, y: 0.0016081713, z: -0.0002579043} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4711711751280016} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1258109978232788 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4884229045548672} m_Layer: 0 @@ -342,12 +756,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4884229045548672 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1258109978232788} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.031793382, y: 0.012720075, z: -0.009874243} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 27 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1258326031768940 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4236299637383654} m_Layer: 0 @@ -357,12 +786,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4236299637383654 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1258326031768940} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.09611815, y: 0.005218656, z: 0.021928234} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1285600764285784 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4054699479513314} m_Layer: 0 @@ -372,12 +816,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4054699479513314 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1285600764285784} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.025067307, y: -0.029545948, z: -0.010401509} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 28 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1326177545081616 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4232183085066198} m_Layer: 0 @@ -387,12 +846,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4232183085066198 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1326177545081616} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.015208288, y: 0.0057479027, z: 0.00019024296} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4636070314650120} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1327481299704926 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4297899706529962} m_Layer: 0 @@ -402,12 +876,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4297899706529962 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1327481299704926} + m_LocalRotation: {x: 1.3147193e-16, y: 0.7492193, z: -0.0585215, w: 0.6597315} + m_LocalPosition: {x: 0.030720409, y: 3.330669e-18, z: 6.661338e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4113251682903106} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1328341135024852 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4905404684487034} m_Layer: 0 @@ -417,12 +906,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4905404684487034 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1328341135024852} + m_LocalRotation: {x: 1.605726e-15, y: 0.71326023, z: -0.006631614, w: 0.70086795} + m_LocalPosition: {x: 0.026573397, y: 4.440892e-18, z: 8.881784e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4658771346061256} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1340743589949492 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4314817122003250} - component: {fileID: 95278821033363480} @@ -433,12 +937,48 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4314817122003250 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1340743589949492} + 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_Children: + - {fileID: 4779998117587278} + - {fileID: 4394718792331072} + m_Father: {fileID: 4766092344323370} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &95278821033363480 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1340743589949492} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: 88e2e1bfe11ec6c438b0ade27eaeded1, type: 3} + m_Controller: {fileID: 0} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 --- !u!1 &1351407017650494 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4993161326556916} m_Layer: 0 @@ -448,12 +988,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4993161326556916 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1351407017650494} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.02496492, y: 0.0011372991, z: -0.00030865276} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4747889433240038} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1362606604805578 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4553308154072206} m_Layer: 0 @@ -463,12 +1018,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4553308154072206 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1362606604805578} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.031125726, y: 0.0026320298, z: 0.02514459} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1366646663343892 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4832022397104298} m_Layer: 0 @@ -478,12 +1048,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4832022397104298 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1366646663343892} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.015404448, y: 0.006164825, z: -0.0003091432} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4975455595100048} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1373733887458040 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4510653729337084} m_Layer: 0 @@ -493,27 +1078,57 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!1 &1375704177041582 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4867210645376640} - m_Layer: 0 - m_Name: b_r_forearm_stub - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 +--- !u!4 &4510653729337084 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1373733887458040} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.032258697, y: 0.01390163, z: 0.00085723423} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 14 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1375704177041582 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4867210645376640} + m_Layer: 0 + m_Name: b_r_forearm_stub + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4867210645376640 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1375704177041582} + 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_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1377512681251742 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4322125718280628} m_Layer: 0 @@ -523,12 +1138,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4322125718280628 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377512681251742} + m_LocalRotation: {x: 5.2041704e-18, y: 1.3877788e-17, z: -1.7997756e-17, w: 1} + m_LocalPosition: {x: 0.011583036, y: 6.661338e-18, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4975455595100048} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1384511032265764 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4917754071044600} m_Layer: 0 @@ -538,12 +1168,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4917754071044600 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1384511032265764} + m_LocalRotation: {x: 5.8284866e-18, y: 0.6882537, z: 0.0010032057, w: 0.72546947} + m_LocalPosition: {x: 0.020311384, y: -2.220446e-18, z: -3.330669e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4147382078780322} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1401626938795918 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4267345630254606} m_Layer: 0 @@ -553,12 +1198,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4267345630254606 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1401626938795918} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.030887451, y: 0.010569479, z: -0.015313314} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 21 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1404825111203256 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4123421289044806} m_Layer: 0 @@ -568,12 +1228,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4123421289044806 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1404825111203256} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.017108196, y: -0.005134742, z: -0.0009990304} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4288470492801480} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1405404114589612 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4711711751280016} m_Layer: 0 @@ -583,12 +1258,31 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4711711751280016 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1405404114589612} + m_LocalRotation: {x: -0.0034774565, y: -0.029179456, z: 0.025028542, w: 0.99925476} + m_LocalPosition: {x: 0.026573397, y: 4.440892e-18, z: -4.440892e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4547045113707266} + - {fileID: 4382401878872272} + - {fileID: 4399338005550382} + - {fileID: 4618951816831968} + m_Father: {fileID: 4658771346061256} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1417080580442166 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4498709215502994} m_Layer: 0 @@ -598,12 +1292,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4498709215502994 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1417080580442166} + m_LocalRotation: {x: 1.0748633e-17, y: 0.04351636, z: 0.24580926, w: 0.96834093} + m_LocalPosition: {x: 0.020069301, y: -0.011554099, z: 0.0104965195} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 31 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1432165280666810 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4693501708522370} m_Layer: 0 @@ -613,12 +1322,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4693501708522370 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1432165280666810} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.076709814, y: -0.02712936, z: -0.038026694} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 23 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1434146919858320 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4734035332587354} m_Layer: 0 @@ -628,12 +1352,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4734035332587354 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1434146919858320} + m_LocalRotation: {x: -9.947095e-17, y: 0.8370959, z: -0.2633566, w: -0.47949323} + m_LocalPosition: {x: 0.03595843, y: -0.019157719, z: 0.028028497} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 30 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1452136469652424 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4502908521250488} m_Layer: 0 @@ -643,12 +1382,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4502908521250488 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1452136469652424} + m_LocalRotation: {x: 2.0884326e-15, y: 0.7105201, z: -0.03675238, w: 0.70271647} + m_LocalPosition: {x: 0.0379273, y: -2.220446e-18, z: 4.440892e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4492482335422584} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1453016638670230 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4113868101390608} m_Layer: 0 @@ -658,12 +1412,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4113868101390608 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1453016638670230} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.015230434, y: -0.0056992564, z: -0.00008346747} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4975455595100048} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1464508928888944 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4511044132531280} m_Layer: 0 @@ -673,12 +1442,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4511044132531280 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1464508928888944} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0987255, y: -0.020649666, z: 0.0006196165} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 16 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1470434638597424 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4796513125351680} m_Layer: 0 @@ -688,12 +1472,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4796513125351680 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1470434638597424} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.090111874, y: -0.023441624, z: -0.018823301} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 29 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1474643006678520 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4747889433240038} m_Layer: 0 @@ -703,12 +1502,31 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4747889433240038 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1474643006678520} + m_LocalRotation: {x: -0.034319542, y: 0.0046118353, z: 0.09300701, w: 0.9950631} + m_LocalPosition: {x: 0.027549583, y: 1.110223e-18, z: 8.881784e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4345364997708816} + - {fileID: 4810320982390924} + - {fileID: 4993161326556916} + - {fileID: 4151239294080704} + m_Father: {fileID: 4430907584103858} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1497384348248580 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4600270998090894} m_Layer: 0 @@ -718,12 +1536,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4600270998090894 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1497384348248580} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.10016154, y: -0.0238383, z: 0.024254706} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1505919016263886 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4193288172740230} m_Layer: 0 @@ -733,12 +1566,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4193288172740230 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1505919016263886} + m_LocalRotation: {x: -2.7755576e-17, y: 1.3877788e-16, z: 6.938894e-18, w: 1} + m_LocalPosition: {x: 0.011908775, y: -1.6653345e-18, z: -4.440892e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4288470492801480} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1507646196675400 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4345364997708816} m_Layer: 0 @@ -748,12 +1596,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4345364997708816 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1507646196675400} + m_LocalRotation: {x: 2.0816682e-17, y: -1.3877788e-17, z: -1.7347235e-17, w: 1} + m_LocalPosition: {x: 0.0122034745, y: 6.661338e-18, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4747889433240038} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1542614396919174 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4488697519138780} m_Layer: 0 @@ -763,12 +1626,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4488697519138780 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542614396919174} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.08772871, y: 0.0034269383, z: -0.020637572} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 24 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1554850331300088 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4658771346061256} m_Layer: 0 @@ -778,29 +1656,144 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!1 &1581749144712736 -GameObject: +--- !u!4 &4658771346061256 +Transform: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4766092344323370} - - component: {fileID: 114417840974862690} - - component: {fileID: 114460394679914766} - m_Layer: 0 - m_Name: OVRCustomHandPrefab_R + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1554850331300088} + m_LocalRotation: {x: -0.033632524, y: 0.0027898385, z: -0.005676023, w: 0.99941427} + m_LocalPosition: {x: 0.0389961, y: -8.881784e-18, z: 8.881784e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4711711751280016} + - {fileID: 4905404684487034} + m_Father: {fileID: 4150668574442040} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1581749144712736 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4766092344323370} + - component: {fileID: 114417840974862690} + - component: {fileID: 114460394679914766} + m_Layer: 0 + m_Name: OVRCustomHandPrefab_R m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4766092344323370 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1581749144712736} + 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_Children: + - {fileID: 4314817122003250} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &114417840974862690 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1581749144712736} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cb7623a8f0b49cf4dbaa40aea4d4be64, type: 3} + m_Name: + m_EditorClassIdentifier: + HandType: 1 + _pointerPoseRoot: {fileID: 0} +--- !u!114 &114460394679914766 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1581749144712736} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 674a40251fe8ad841b18517ac5209957, type: 3} + m_Name: + m_EditorClassIdentifier: + _skeletonType: 1 + _updateRootPose: 0 + _updateRootScale: 0 + _enablePhysicsCapsules: 0 + _applyBoneTranslations: 0 + _customBones_V2: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} --- !u!1 &1583234602300474 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4299041482640696} m_Layer: 0 @@ -810,12 +1803,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4299041482640696 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1583234602300474} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.024559118, y: -0.028678348, z: -0.018615067} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1594850187563466 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4154509707602826} m_Layer: 0 @@ -825,12 +1833,28 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4154509707602826 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1594850187563466} + m_LocalRotation: {x: -0.20703599, y: 0.14034285, z: -0.0183118, w: 0.96804166} + m_LocalPosition: {x: 0.034073558, y: -0.009419835, z: -0.022998573} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4113251682903106} + m_Father: {fileID: 4779998117587278} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1608851826638778 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4547045113707266} m_Layer: 0 @@ -840,12 +1864,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4547045113707266 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1608851826638778} + m_LocalRotation: {x: 4.1633363e-17, y: -5.551115e-17, z: 3.469447e-17, w: 1} + m_LocalPosition: {x: 0.01193941, y: -1.110223e-18, z: -6.661338e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4711711751280016} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1611209056664934 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4147382078780322} m_Layer: 0 @@ -855,12 +1894,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4147382078780322 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1611209056664934} + m_LocalRotation: {x: -0.037616648, y: 0.042937703, z: 0.013286048, w: 0.99828094} + m_LocalPosition: {x: 0.030720409, y: 1.110223e-18, z: -3.7747583e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4288470492801480} + - {fileID: 4917754071044600} + m_Father: {fileID: 4113251682903106} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1635486641079016 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4472962620341642} m_Layer: 0 @@ -870,12 +1926,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4472962620341642 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1635486641079016} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.08176033, y: -0.020539844, z: 0.004241872} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 17 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1647302707692942 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4418495171037590} m_Layer: 0 @@ -885,12 +1956,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4418495171037590 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1647302707692942} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.023881743, y: -0.033495843, z: 0.012114872} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1662340394936860 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4753472618401032} m_Layer: 0 @@ -900,12 +1986,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4753472618401032 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662340394936860} + m_LocalRotation: {x: -3.699927e-16, y: 0.7107332, z: -0.015982324, w: 0.70328015} + m_LocalPosition: {x: 0.04292699, y: -2.220446e-18, z: -2.220446e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4969639723282940} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1684248326645660 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4850359327892544} m_Layer: 0 @@ -915,12 +2016,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4850359327892544 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1684248326645660} + m_LocalRotation: {x: 1.7943107e-16, y: 0.71756595, z: -0.023630999, w: 0.6960895} + m_LocalPosition: {x: 0.024303643, y: -1.110223e-18, z: -4.440892e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4095757401416052} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1708261109252134 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4846004260786940} m_Layer: 0 @@ -930,12 +2046,31 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4846004260786940 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1708261109252134} + m_LocalRotation: {x: 0.26023024, y: -0.02433092, z: -0.12567802, w: 0.95702314} + m_LocalPosition: {x: 0.024852559, y: 4.440892e-18, z: -1.1657341e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4360771558957118} + - {fileID: 4447820138329358} + - {fileID: 4294638793805472} + - {fileID: 4281546173794670} + m_Father: {fileID: 4764752792678808} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1710029377341686 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4281546173794670} m_Layer: 0 @@ -945,12 +2080,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4281546173794670 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1710029377341686} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0028762673, y: -0.023947366, z: 0.014718027} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4846004260786940} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1713913934975450 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4390216536904796} m_Layer: 0 @@ -960,12 +2110,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4390216536904796 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1713913934975450} + m_LocalRotation: {x: 4.9666047e-16, y: 0.7409508, z: -0.00991445, w: 0.6714862} + m_LocalPosition: {x: 0.095646605, y: -0.0025431544, z: 0.0017259055} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1772003858641230 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4113251682903106} m_Layer: 0 @@ -975,12 +2140,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4113251682903106 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1772003858641230} + m_LocalRotation: {x: 0.09111303, y: -0.004071365, z: -0.028129224, w: 0.9954349} + m_LocalPosition: {x: 0.04565054, y: -0.0000009982332, z: 0.0000021940255} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4147382078780322} + - {fileID: 4297899706529962} + m_Father: {fileID: 4154509707602826} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1772339901577800 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4810320982390924} m_Layer: 0 @@ -990,12 +2172,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4810320982390924 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1772339901577800} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.01761396, y: -0.0062872535, z: -0.000073752104} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4747889433240038} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1773346441333578 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4504064974465930} m_Layer: 0 @@ -1005,12 +2202,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4504064974465930 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1773346441333578} + m_LocalRotation: {x: 1.5147017e-17, y: 0.04358452, z: -0.72520274, w: 0.68715465} + m_LocalPosition: {x: 0.09599624, y: -0.0073164543, z: 0.02355068} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1781384576333456 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4636070314650120} m_Layer: 0 @@ -1020,12 +2232,31 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4636070314650120 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1781384576333456} + m_LocalRotation: {x: 0.083505884, y: -0.06501573, z: 0.058274075, w: 0.9926751} + m_LocalPosition: {x: 0.03379309, y: 1.3322676e-17, z: -1.6653344e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4321069230695488} + - {fileID: 4262779677332342} + - {fileID: 4777317802294454} + - {fileID: 4232183085066198} + m_Father: {fileID: 4360771558957118} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1794973077290990 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4262779677332342} m_Layer: 0 @@ -1035,27 +2266,57 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!1 &1799456133554728 -GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 - m_Component: - - component: {fileID: 4382401878872272} - m_Layer: 0 - m_Name: r_ring_finger_pad_marker - m_TagString: Untagged - m_Icon: {fileID: 0} +--- !u!4 &4262779677332342 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1794973077290990} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.01354, y: -0.00952, z: -0.00024} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4636070314650120} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1799456133554728 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4382401878872272} + m_Layer: 0 + m_Name: r_ring_finger_pad_marker + m_TagString: Untagged + m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4382401878872272 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1799456133554728} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.018125344, y: -0.005780465, z: -0.0003378707} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4711711751280016} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1802728202208788 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4596505520688404} m_Layer: 0 @@ -1065,12 +2326,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4596505520688404 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1802728202208788} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.023881743, y: -0.033495843, z: 0.012114872} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 15 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1863846435128242 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4492482335422584} m_Layer: 0 @@ -1080,12 +2356,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4492482335422584 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1863846435128242} + m_LocalRotation: {x: 0.03068309, y: 0.018855589, z: -0.043281443, w: 0.9984136} + m_LocalPosition: {x: 0.09599624, y: -0.0073164543, z: 0.02355068} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4095757401416052} + - {fileID: 4502908521250488} + m_Father: {fileID: 4779998117587278} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1866100426318756 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4790193185377138} m_Layer: 0 @@ -1095,12 +2388,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4790193185377138 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1866100426318756} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0006809305, y: 0.011009849, z: -0.0030307423} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4969639723282940} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1869929957890706 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4150668574442040} m_Layer: 0 @@ -1110,12 +2418,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4150668574442040 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1869929957890706} + m_LocalRotation: {x: -0.053159367, y: 0.12310341, z: -0.049813494, w: 0.9897163} + m_LocalPosition: {x: 0.08869379, y: -0.006529307, z: -0.017465241} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4658771346061256} + - {fileID: 4532610971967324} + m_Father: {fileID: 4779998117587278} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1916553294325922 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4764752792678808} m_Layer: 0 @@ -1125,12 +2450,28 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4764752792678808 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1916553294325922} + m_LocalRotation: {x: 0.37538692, y: -0.42458406, z: 0.007778856, w: 0.8238644} + m_LocalPosition: {x: 0.020069301, y: -0.011554099, z: 0.0104965195} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4846004260786940} + m_Father: {fileID: 4779998117587278} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1939537241631640 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4294638793805472} m_Layer: 0 @@ -1140,12 +2481,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4294638793805472 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1939537241631640} + m_LocalRotation: {x: 3.7685698e-16, y: 0.7218523, z: -0.12169107, w: 0.6812639} + m_LocalPosition: {x: 0.03251291, y: -5.5511148e-18, z: 1.7763568e-17} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4846004260786940} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1941800430245096 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4183902850315956} m_Layer: 0 @@ -1155,12 +2511,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4183902850315956 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1941800430245096} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.015289234, y: 0.0056285444, z: 0.0005408356} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4288470492801480} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1944669403465274 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4430907584103858} m_Layer: 0 @@ -1170,12 +2541,29 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4430907584103858 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1944669403465274} + m_LocalRotation: {x: -0.011228235, y: 0.0043788743, z: 0.0019782674, w: 0.99992543} + m_LocalPosition: {x: 0.04292699, y: -4.440892e-18, z: 4.440892e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4747889433240038} + - {fileID: 4514292901198494} + m_Father: {fileID: 4969639723282940} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1944833372443854 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4819183859718072} m_Layer: 0 @@ -1185,12 +2573,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4819183859718072 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1944833372443854} + m_LocalRotation: {x: 2.365652e-17, y: 0.78830963, z: -0.18553992, w: 0.5866369} + m_LocalPosition: {x: 0.07789584, y: -0.013691182, z: -0.035054065} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4779998117587278} + m_RootOrder: 20 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1960218415496516 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4447820138329358} m_Layer: 0 @@ -1200,12 +2603,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4447820138329358 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1960218415496516} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.00929482, y: 0.012075913, z: -0.0015779873} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4846004260786940} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1961790733683512 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4151239294080704} m_Layer: 0 @@ -1215,12 +2633,27 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!4 &4151239294080704 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1961790733683512} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.017000813, y: 0.006589214, z: -0.00014421427} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4747889433240038} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1963221411150780 GameObject: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4975455595100048} m_Layer: 0 @@ -1230,1268 +2663,21 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &4001605307124674 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1109363208795868} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.022363367, y: 0.0010250708, z: -0.0002956079} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4975455595100048} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4044682744325110 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1196895545118474} - m_LocalRotation: {x: 2.815203e-17, y: 0.7838948, z: -0.0762138, w: 0.6161985} - m_LocalPosition: {x: 0.08869379, y: -0.006529307, z: -0.017465241} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 26 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4054699479513314 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1285600764285784} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.025067307, y: -0.029545948, z: -0.010401509} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 28 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4095757401416052 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1012304635541838} - m_LocalRotation: {x: -0.02585241, y: 0.0071160593, z: -0.0032929424, w: 0.99963504} - m_LocalPosition: {x: 0.0379273, y: 3.330669e-18, z: 1.3322676e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4975455595100048} - - {fileID: 4850359327892544} - m_Father: {fileID: 4492482335422584} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4113251682903106 +--- !u!4 &4975455595100048 Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1772003858641230} - m_LocalRotation: {x: 0.09111303, y: -0.004071365, z: -0.028129224, w: 0.9954349} - m_LocalPosition: {x: 0.04565054, y: -0.0000009982332, z: 0.0000021940255} + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1963221411150780} + m_LocalRotation: {x: -0.016056001, y: 0.02714872, z: 0.072033994, w: 0.99690336} + m_LocalPosition: {x: 0.024303643, y: -5.2735593e-18, z: -8.881784e-18} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 4147382078780322} - - {fileID: 4297899706529962} - m_Father: {fileID: 4154509707602826} + - {fileID: 4322125718280628} + - {fileID: 4113868101390608} + - {fileID: 4001605307124674} + - {fileID: 4832022397104298} + m_Father: {fileID: 4095757401416052} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4113868101390608 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1453016638670230} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.015230434, y: -0.0056992564, z: -0.00008346747} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4975455595100048} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4123421289044806 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1404825111203256} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.017108196, y: -0.005134742, z: -0.0009990304} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4288470492801480} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4147382078780322 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1611209056664934} - m_LocalRotation: {x: -0.037616648, y: 0.042937703, z: 0.013286048, w: 0.99828094} - m_LocalPosition: {x: 0.030720409, y: 1.110223e-18, z: -3.7747583e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4288470492801480} - - {fileID: 4917754071044600} - m_Father: {fileID: 4113251682903106} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4150668574442040 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1869929957890706} - m_LocalRotation: {x: -0.053159367, y: 0.12310341, z: -0.049813494, w: 0.9897163} - m_LocalPosition: {x: 0.08869379, y: -0.006529307, z: -0.017465241} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4658771346061256} - - {fileID: 4532610971967324} - m_Father: {fileID: 4779998117587278} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4151239294080704 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1961790733683512} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.017000813, y: 0.006589214, z: -0.00014421427} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4747889433240038} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4154509707602826 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1594850187563466} - m_LocalRotation: {x: -0.20703599, y: 0.14034285, z: -0.0183118, w: 0.96804166} - m_LocalPosition: {x: 0.034073558, y: -0.009419835, z: -0.022998573} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4113251682903106} - m_Father: {fileID: 4779998117587278} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4183902850315956 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1941800430245096} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.015289234, y: 0.0056285444, z: 0.0005408356} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4288470492801480} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4193288172740230 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1505919016263886} - m_LocalRotation: {x: -2.7755576e-17, y: 1.3877788e-16, z: 6.938894e-18, w: 1} - m_LocalPosition: {x: 0.011908775, y: -1.6653345e-18, z: -4.440892e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4288470492801480} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4232183085066198 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1326177545081616} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.015208288, y: 0.0057479027, z: 0.00019024296} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4636070314650120} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4236299637383654 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1258326031768940} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.09611815, y: 0.005218656, z: 0.021928234} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4262779677332342 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1794973077290990} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.01354, y: -0.00952, z: -0.00024} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4636070314650120} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4267345630254606 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1401626938795918} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.030887451, y: 0.010569479, z: -0.015313314} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 21 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4281546173794670 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1710029377341686} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.0028762673, y: -0.023947366, z: 0.014718027} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4846004260786940} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4288470492801480 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1078768791152968} - m_LocalRotation: {x: 0.0006447509, y: -0.049170654, z: 0.024018826, w: 0.99850136} - m_LocalPosition: {x: 0.020311384, y: -6.661338e-18, z: 1.7763568e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4193288172740230} - - {fileID: 4123421289044806} - - {fileID: 4806080251670844} - - {fileID: 4183902850315956} - m_Father: {fileID: 4147382078780322} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4294638793805472 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1939537241631640} - m_LocalRotation: {x: 3.7685698e-16, y: 0.7218523, z: -0.12169107, w: 0.6812639} - m_LocalPosition: {x: 0.03251291, y: -5.5511148e-18, z: 1.7763568e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4846004260786940} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4297899706529962 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1327481299704926} - m_LocalRotation: {x: 1.3147193e-16, y: 0.7492193, z: -0.0585215, w: 0.6597315} - m_LocalPosition: {x: 0.030720409, y: 3.330669e-18, z: 6.661338e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4113251682903106} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4299041482640696 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1583234602300474} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.024559118, y: -0.028678348, z: -0.018615067} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 22 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4307878652178570 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1080060279463866} - m_LocalRotation: {x: -1.1565109e-16, y: 0.68458194, z: 0.11390015, w: 0.7199822} - m_LocalPosition: {x: 0.03379309, y: 2.5535128e-17, z: -2.6645352e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4360771558957118} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4310649376108260 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1176551184115542} - m_LocalRotation: {x: -3.01168e-17, y: -0.17582493, z: -0.70094967, w: 0.69119835} - m_LocalPosition: {x: 0.07789584, y: -0.013691182, z: -0.035054065} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 19 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4314817122003250 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1340743589949492} - 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_Children: - - {fileID: 4779998117587278} - - {fileID: 4394718792331072} - m_Father: {fileID: 4766092344323370} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4321069230695488 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1054309438318392} - m_LocalRotation: {x: -1.3877788e-17, y: -1.8388069e-16, z: -2.4980018e-16, w: 1} - m_LocalPosition: {x: 0.014863368, y: 0, z: 8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4636070314650120} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4322125718280628 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1377512681251742} - m_LocalRotation: {x: 5.2041704e-18, y: 1.3877788e-17, z: -1.7997756e-17, w: 1} - m_LocalPosition: {x: 0.011583036, y: 6.661338e-18, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4975455595100048} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4345364997708816 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1507646196675400} - m_LocalRotation: {x: 2.0816682e-17, y: -1.3877788e-17, z: -1.7347235e-17, w: 1} - m_LocalPosition: {x: 0.0122034745, y: 6.661338e-18, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4747889433240038} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4360771558957118 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1245370292024082} - m_LocalRotation: {x: -0.08270373, y: 0.0769617, z: 0.08406223, w: 0.99003565} - m_LocalPosition: {x: 0.03251291, y: -4.440892e-18, z: 3.2196467e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4636070314650120} - - {fileID: 4307878652178570} - m_Father: {fileID: 4846004260786940} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4382401878872272 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1799456133554728} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.018125344, y: -0.005780465, z: -0.0003378707} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4711711751280016} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4390216536904796 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1713913934975450} - m_LocalRotation: {x: 4.9666047e-16, y: 0.7409508, z: -0.00991445, w: 0.6714862} - m_LocalPosition: {x: 0.095646605, y: -0.0025431544, z: 0.0017259055} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 13 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4394718792331072 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1085198246029792} - 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_Children: [] - m_Father: {fileID: 4314817122003250} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4399338005550382 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1251127002094052} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.024326129, y: 0.0016081713, z: -0.0002579043} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4711711751280016} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4418495171037590 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1647302707692942} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.023881743, y: -0.033495843, z: 0.012114872} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 10 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4430907584103858 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1944669403465274} - m_LocalRotation: {x: -0.011228235, y: 0.0043788743, z: 0.0019782674, w: 0.99992543} - m_LocalPosition: {x: 0.04292699, y: -4.440892e-18, z: 4.440892e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4747889433240038} - - {fileID: 4514292901198494} - m_Father: {fileID: 4969639723282940} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4447820138329358 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1960218415496516} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.00929482, y: 0.012075913, z: -0.0015779873} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4846004260786940} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4460701652704238 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1174650103922790} - m_LocalRotation: {x: -5.0163127e-18, y: -0.012751378, z: -0.7221367, w: 0.69163287} - m_LocalPosition: {x: 0.095646605, y: -0.0025431544, z: 0.0017259055} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 12 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4472962620341642 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1635486641079016} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.08176033, y: -0.020539844, z: 0.004241872} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 17 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4488697519138780 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1542614396919174} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.08772871, y: 0.0034269383, z: -0.020637572} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 24 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4492482335422584 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1863846435128242} - m_LocalRotation: {x: 0.03068309, y: 0.018855589, z: -0.043281443, w: 0.9984136} - m_LocalPosition: {x: 0.09599624, y: -0.0073164543, z: 0.02355068} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4095757401416052} - - {fileID: 4502908521250488} - m_Father: {fileID: 4779998117587278} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4498709215502994 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1417080580442166} - m_LocalRotation: {x: 1.0748633e-17, y: 0.04351636, z: 0.24580926, w: 0.96834093} - m_LocalPosition: {x: 0.020069301, y: -0.011554099, z: 0.0104965195} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 31 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4502908521250488 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1452136469652424} - m_LocalRotation: {x: 2.0884326e-15, y: 0.7105201, z: -0.03675238, w: 0.70271647} - m_LocalPosition: {x: 0.0379273, y: -2.220446e-18, z: 4.440892e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4492482335422584} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4504064974465930 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1773346441333578} - m_LocalRotation: {x: 1.5147017e-17, y: 0.04358452, z: -0.72520274, w: 0.68715465} - m_LocalPosition: {x: 0.09599624, y: -0.0073164543, z: 0.02355068} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4510653729337084 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1373733887458040} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.032258697, y: 0.01390163, z: 0.00085723423} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 14 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4511044132531280 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1464508928888944} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.0987255, y: -0.020649666, z: 0.0006196165} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 16 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4514292901198494 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1211551167852796} - m_LocalRotation: {x: -1.03328696e-16, y: 0.73815125, z: -0.064592175, w: 0.67153597} - m_LocalPosition: {x: 0.027549583, y: 0, z: 8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4430907584103858} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4520904681817784 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1171042993906074} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.07580273, y: -0.004132048, z: -0.03734504} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 18 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4532610971967324 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1129115348300954} - m_LocalRotation: {x: 2.3891104e-16, y: 0.71541184, z: -0.048002377, w: 0.6970521} - m_LocalPosition: {x: 0.0389961, y: -4.440892e-18, z: -1.110223e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4150668574442040} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4547045113707266 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1608851826638778} - m_LocalRotation: {x: 4.1633363e-17, y: -5.551115e-17, z: 3.469447e-17, w: 1} - m_LocalPosition: {x: 0.01193941, y: -1.110223e-18, z: -6.661338e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4711711751280016} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4553308154072206 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1362606604805578} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.031125726, y: 0.0026320298, z: 0.02514459} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 9 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4596505520688404 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1802728202208788} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.023881743, y: -0.033495843, z: 0.012114872} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 15 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4600270998090894 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1497384348248580} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.10016154, y: -0.0238383, z: 0.024254706} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 11 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4618951816831968 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1085907579291034} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.016140504, y: 0.0065357205, z: 0.0003754784} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4711711751280016} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4636070314650120 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1781384576333456} - m_LocalRotation: {x: 0.083505884, y: -0.06501573, z: 0.058274075, w: 0.9926751} - m_LocalPosition: {x: 0.03379309, y: 1.3322676e-17, z: -1.6653344e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4321069230695488} - - {fileID: 4262779677332342} - - {fileID: 4777317802294454} - - {fileID: 4232183085066198} - m_Father: {fileID: 4360771558957118} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4658771346061256 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1554850331300088} - m_LocalRotation: {x: -0.033632524, y: 0.0027898385, z: -0.005676023, w: 0.99941427} - m_LocalPosition: {x: 0.0389961, y: -8.881784e-18, z: 8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4711711751280016} - - {fileID: 4905404684487034} - m_Father: {fileID: 4150668574442040} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4693501708522370 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1432165280666810} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.076709814, y: -0.02712936, z: -0.038026694} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 23 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4711711751280016 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1405404114589612} - m_LocalRotation: {x: -0.0034774565, y: -0.029179456, z: 0.025028542, w: 0.99925476} - m_LocalPosition: {x: 0.026573397, y: 4.440892e-18, z: -4.440892e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4547045113707266} - - {fileID: 4382401878872272} - - {fileID: 4399338005550382} - - {fileID: 4618951816831968} - m_Father: {fileID: 4658771346061256} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4734035332587354 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1434146919858320} - m_LocalRotation: {x: -9.947095e-17, y: 0.8370959, z: -0.2633566, w: -0.47949323} - m_LocalPosition: {x: 0.03595843, y: -0.019157719, z: 0.028028497} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 30 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4747889433240038 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1474643006678520} - m_LocalRotation: {x: -0.034319542, y: 0.0046118353, z: 0.09300701, w: 0.9950631} - m_LocalPosition: {x: 0.027549583, y: 1.110223e-18, z: 8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4345364997708816} - - {fileID: 4810320982390924} - - {fileID: 4993161326556916} - - {fileID: 4151239294080704} - m_Father: {fileID: 4430907584103858} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4753472618401032 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1662340394936860} - m_LocalRotation: {x: -3.699927e-16, y: 0.7107332, z: -0.015982324, w: 0.70328015} - m_LocalPosition: {x: 0.04292699, y: -2.220446e-18, z: -2.220446e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4969639723282940} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4764752792678808 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1916553294325922} - m_LocalRotation: {x: 0.37538692, y: -0.42458406, z: 0.007778856, w: 0.8238644} - m_LocalPosition: {x: 0.020069301, y: -0.011554099, z: 0.0104965195} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4846004260786940} - m_Father: {fileID: 4779998117587278} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4766092344323370 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1581749144712736} - 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_Children: - - {fileID: 4314817122003250} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4777317802294454 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1178928620431016} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.024590766, y: 0.0010269715, z: -0.0006703722} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4636070314650120} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4779998117587278 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1249941712221470} - 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_Children: - - {fileID: 4867210645376640} - - {fileID: 4492482335422584} - - {fileID: 4969639723282940} - - {fileID: 4154509707602826} - - {fileID: 4150668574442040} - - {fileID: 4764752792678808} - - {fileID: 4236299637383654} - - {fileID: 4504064974465930} - - {fileID: 4980954572064906} - - {fileID: 4553308154072206} - - {fileID: 4418495171037590} - - {fileID: 4600270998090894} - - {fileID: 4460701652704238} - - {fileID: 4390216536904796} - - {fileID: 4510653729337084} - - {fileID: 4596505520688404} - - {fileID: 4511044132531280} - - {fileID: 4472962620341642} - - {fileID: 4520904681817784} - - {fileID: 4310649376108260} - - {fileID: 4819183859718072} - - {fileID: 4267345630254606} - - {fileID: 4299041482640696} - - {fileID: 4693501708522370} - - {fileID: 4488697519138780} - - {fileID: 4986970543481586} - - {fileID: 4044682744325110} - - {fileID: 4884229045548672} - - {fileID: 4054699479513314} - - {fileID: 4796513125351680} - - {fileID: 4734035332587354} - - {fileID: 4498709215502994} - m_Father: {fileID: 4314817122003250} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4790193185377138 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1866100426318756} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.0006809305, y: 0.011009849, z: -0.0030307423} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4969639723282940} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4796513125351680 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1470434638597424} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.090111874, y: -0.023441624, z: -0.018823301} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 29 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4806080251670844 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1182512635893718} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.021922385, y: 0.0012160853, z: 0.00024648113} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4288470492801480} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4810320982390924 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1772339901577800} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.01761396, y: -0.0062872535, z: -0.000073752104} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4747889433240038} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4819183859718072 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1944833372443854} - m_LocalRotation: {x: 2.365652e-17, y: 0.78830963, z: -0.18553992, w: 0.5866369} - m_LocalPosition: {x: 0.07789584, y: -0.013691182, z: -0.035054065} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 20 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4832022397104298 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1366646663343892} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.015404448, y: 0.006164825, z: -0.0003091432} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4975455595100048} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4846004260786940 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1708261109252134} - m_LocalRotation: {x: 0.26023024, y: -0.02433092, z: -0.12567802, w: 0.95702314} - m_LocalPosition: {x: 0.024852559, y: 4.440892e-18, z: -1.1657341e-17} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4360771558957118} - - {fileID: 4447820138329358} - - {fileID: 4294638793805472} - - {fileID: 4281546173794670} - m_Father: {fileID: 4764752792678808} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4850359327892544 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1684248326645660} - m_LocalRotation: {x: 1.7943107e-16, y: 0.71756595, z: -0.023630999, w: 0.6960895} - m_LocalPosition: {x: 0.024303643, y: -1.110223e-18, z: -4.440892e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4095757401416052} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4867210645376640 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1375704177041582} - 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_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4884229045548672 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1258109978232788} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.031793382, y: 0.012720075, z: -0.009874243} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 27 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4905404684487034 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1328341135024852} - m_LocalRotation: {x: 1.605726e-15, y: 0.71326023, z: -0.006631614, w: 0.70086795} - m_LocalPosition: {x: 0.026573397, y: 4.440892e-18, z: 8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4658771346061256} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4917754071044600 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1384511032265764} - m_LocalRotation: {x: 5.8284866e-18, y: 0.6882537, z: 0.0010032057, w: 0.72546947} - m_LocalPosition: {x: 0.020311384, y: -2.220446e-18, z: -3.330669e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4147382078780322} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4969639723282940 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1008072628147780} - m_LocalRotation: {x: -0.009066327, y: 0.05146559, z: -0.051835753, w: 0.99728745} - m_LocalPosition: {x: 0.095646605, y: -0.0025431544, z: 0.0017259055} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4430907584103858} - - {fileID: 4790193185377138} - - {fileID: 4753472618401032} - m_Father: {fileID: 4779998117587278} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4975455595100048 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1963221411150780} - m_LocalRotation: {x: -0.016056001, y: 0.02714872, z: 0.072033994, w: 0.99690336} - m_LocalPosition: {x: 0.024303643, y: -5.2735593e-18, z: -8.881784e-18} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4322125718280628} - - {fileID: 4113868101390608} - - {fileID: 4001605307124674} - - {fileID: 4832022397104298} - m_Father: {fileID: 4095757401416052} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4980954572064906 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1177028252011222} - m_LocalRotation: {x: -4.670291e-17, y: 0.70719343, z: 0.04265578, w: 0.7057322} - m_LocalPosition: {x: 0.09599624, y: -0.0073164543, z: 0.02355068} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 8 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4986970543481586 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1123039961393932} - m_LocalRotation: {x: 0, y: -0.077165164, z: -0.7174004, w: 0.6923744} - m_LocalPosition: {x: 0.08869379, y: -0.006529307, z: -0.017465241} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4779998117587278} - m_RootOrder: 25 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &4993161326556916 -Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1351407017650494} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0.02496492, y: 0.0011372991, z: -0.00030865276} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4747889433240038} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!95 &95278821033363480 -Animator: - serializedVersion: 3 - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1340743589949492} - m_Enabled: 1 - m_Avatar: {fileID: 9000000, guid: 88e2e1bfe11ec6c438b0ade27eaeded1, type: 3} - m_Controller: {fileID: 0} - m_CullingMode: 1 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 ---- !u!114 &114417840974862690 -MonoBehaviour: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1581749144712736} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: cb7623a8f0b49cf4dbaa40aea4d4be64, type: 3} - m_Name: - m_EditorClassIdentifier: - HandType: 1 ---- !u!114 &114460394679914766 -MonoBehaviour: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1581749144712736} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 674a40251fe8ad841b18517ac5209957, type: 3} - m_Name: - m_EditorClassIdentifier: - _skeletonType: 1 - _updateRootPose: 0 - _updateRootScale: 0 - _enablePhysicsCapsules: 0 - _customBones: - - {fileID: 4779998117587278} - - {fileID: 4867210645376640} - - {fileID: 4764752792678808} - - {fileID: 4846004260786940} - - {fileID: 4360771558957118} - - {fileID: 4636070314650120} - - {fileID: 4492482335422584} - - {fileID: 4095757401416052} - - {fileID: 4975455595100048} - - {fileID: 4969639723282940} - - {fileID: 4430907584103858} - - {fileID: 4747889433240038} - - {fileID: 4150668574442040} - - {fileID: 4658771346061256} - - {fileID: 4711711751280016} - - {fileID: 4154509707602826} - - {fileID: 4113251682903106} - - {fileID: 4147382078780322} - - {fileID: 4288470492801480} - - {fileID: 4777317802294454} - - {fileID: 4001605307124674} - - {fileID: 4993161326556916} - - {fileID: 4399338005550382} - - {fileID: 4806080251670844} ---- !u!137 &137292928833085638 -SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1085198246029792} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_Materials: - - {fileID: 2100000, guid: 88e2e1bfe11ec6c438b0ade27eaeded1, type: 3} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - serializedVersion: 2 - m_Quality: 0 - m_UpdateWhenOffscreen: 0 - m_SkinnedMotionVectors: 1 - m_Mesh: {fileID: 4300000, guid: 88e2e1bfe11ec6c438b0ade27eaeded1, type: 3} - m_Bones: - - {fileID: 4779998117587278} - - {fileID: 4846004260786940} - - {fileID: 4360771558957118} - - {fileID: 4636070314650120} - - {fileID: 4492482335422584} - - {fileID: 4095757401416052} - - {fileID: 4975455595100048} - - {fileID: 4969639723282940} - - {fileID: 4430907584103858} - - {fileID: 4747889433240038} - - {fileID: 4150668574442040} - - {fileID: 4658771346061256} - - {fileID: 4711711751280016} - - {fileID: 4154509707602826} - - {fileID: 4113251682903106} - - {fileID: 4147382078780322} - - {fileID: 4288470492801480} - m_BlendShapeWeights: [] - m_RootBone: {fileID: 4779998117587278} - m_AABB: - m_Center: {x: 0.08462605, y: -0.018837288, z: 0.013709333} - m_Extent: {x: 0.10698363, y: 0.05242701, z: 0.07775} - m_DirtyAABB: 0 diff --git a/Assets/Oculus/VR/Prefabs/OVRHandPrefab.prefab b/Assets/Oculus/VR/Prefabs/OVRHandPrefab.prefab index 75b5806e..895e8e3f 100644 --- a/Assets/Oculus/VR/Prefabs/OVRHandPrefab.prefab +++ b/Assets/Oculus/VR/Prefabs/OVRHandPrefab.prefab @@ -1,22 +1,12 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: ---- !u!1001 &100100000 -Prefab: - m_ObjectHideFlags: 1 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 0} - m_Modifications: [] - m_RemovedComponents: [] - m_ParentPrefab: {fileID: 0} - m_RootGameObject: {fileID: 1870938896605422} - m_IsPrefabParent: 1 --- !u!1 &1870938896605422 GameObject: m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - serializedVersion: 5 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 m_Component: - component: {fileID: 4453513310108136} - component: {fileID: 114428879332287356} @@ -34,9 +24,10 @@ GameObject: m_IsActive: 1 --- !u!4 &4453513310108136 Transform: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1870938896605422} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} @@ -45,36 +36,12 @@ Transform: m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &114252240061623322 -MonoBehaviour: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1870938896605422} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 73eac66b128fc8749a21623225c34541, type: 3} - m_Name: - m_EditorClassIdentifier: - _ovrMesh: {fileID: 0} - _ovrSkeleton: {fileID: 0} ---- !u!114 &114392993255165844 -MonoBehaviour: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 1870938896605422} - m_Enabled: 0 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 54c16b381e28e8d479237771d234dbae, type: 3} - m_Name: - m_EditorClassIdentifier: - _skeletonMaterial: {fileID: 0} --- !u!114 &114428879332287356 MonoBehaviour: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1870938896605422} m_Enabled: 1 m_EditorHideFlags: 0 @@ -82,11 +49,13 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: HandType: 0 + _pointerPoseRoot: {fileID: 0} --- !u!114 &114567484643301796 MonoBehaviour: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1870938896605422} m_Enabled: 1 m_EditorHideFlags: 0 @@ -97,11 +66,30 @@ MonoBehaviour: _updateRootPose: 0 _updateRootScale: 1 _enablePhysicsCapsules: 0 +--- !u!114 &114392993255165844 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1870938896605422} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 54c16b381e28e8d479237771d234dbae, type: 3} + m_Name: + m_EditorClassIdentifier: + _confidenceBehavior: 1 + _systemGestureBehavior: 1 + _renderPhysicsCapsules: 0 + _skeletonMaterial: {fileID: 0} + _capsuleMaterial: {fileID: 0} + _systemGestureMaterial: {fileID: 0} --- !u!114 &114925265787909616 MonoBehaviour: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1870938896605422} m_Enabled: 1 m_EditorHideFlags: 0 @@ -109,11 +97,29 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: _meshType: 0 +--- !u!114 &114252240061623322 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1870938896605422} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 73eac66b128fc8749a21623225c34541, type: 3} + m_Name: + m_EditorClassIdentifier: + _ovrMesh: {fileID: 0} + _ovrSkeleton: {fileID: 0} + _confidenceBehavior: 1 + _systemGestureBehavior: 1 + _systemGestureMaterial: {fileID: 0} --- !u!137 &137619227449585070 SkinnedMeshRenderer: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1870938896605422} m_Enabled: 1 m_CastShadows: 1 @@ -122,6 +128,10 @@ SkinnedMeshRenderer: m_MotionVectors: 1 m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 m_Materials: - {fileID: 2100000, guid: 5ba7d209f622bb44e87b47ce27ee27b7, type: 2} m_StaticBatchInfo: @@ -131,6 +141,7 @@ SkinnedMeshRenderer: m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 + m_ReceiveGI: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 @@ -154,4 +165,4 @@ SkinnedMeshRenderer: m_AABB: m_Center: {x: 0, y: 0, z: 0} m_Extent: {x: 0, y: 0, z: 0} - m_DirtyAABB: 1 + m_DirtyAABB: 0 diff --git a/Assets/Oculus/VR/Prefabs/OculusTouchForQuestAndRiftSLeftModel.prefab b/Assets/Oculus/VR/Prefabs/OculusTouchForQuestAndRiftSLeftModel.prefab new file mode 100644 index 00000000..1c871801 --- /dev/null +++ b/Assets/Oculus/VR/Prefabs/OculusTouchForQuestAndRiftSLeftModel.prefab @@ -0,0 +1,103 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6854586279849217331 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3480680553872763675} + - component: {fileID: 7692512529262565213} + - component: {fileID: 6816367573313325066} + - component: {fileID: 1814895678133151559} + m_Layer: 0 + m_Name: OculusTouchForQuestAndRiftSLeftModel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3480680553872763675 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6854586279849217331} + 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_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7692512529262565213 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6854586279849217331} + m_Mesh: {fileID: 4300000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} +--- !u!23 &6816367573313325066 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6854586279849217331} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!95 &1814895678133151559 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6854586279849217331} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Controller: {fileID: 0} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 diff --git a/Assets/Oculus/VR/Prefabs/OculusTouchForQuestAndRiftSLeftModel.prefab.meta b/Assets/Oculus/VR/Prefabs/OculusTouchForQuestAndRiftSLeftModel.prefab.meta new file mode 100644 index 00000000..0185bbff --- /dev/null +++ b/Assets/Oculus/VR/Prefabs/OculusTouchForQuestAndRiftSLeftModel.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bde12d9de02f1bd47bb65102df89402d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Scripts/Composition/OVRCameraComposition.cs b/Assets/Oculus/VR/Scripts/Composition/OVRCameraComposition.cs index aa5ce02c..289bab7a 100644 --- a/Assets/Oculus/VR/Scripts/Composition/OVRCameraComposition.cs +++ b/Assets/Oculus/VR/Scripts/Composition/OVRCameraComposition.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -24,7 +20,6 @@ public abstract class OVRCameraComposition : OVRComposition { protected float cameraFramePlaneDistance; protected readonly bool hasCameraDeviceOpened = false; - protected readonly bool useDynamicLighting = false; internal readonly OVRPlugin.CameraDevice cameraDevice = OVRPlugin.CameraDevice.WebCamera0; @@ -32,19 +27,19 @@ public abstract class OVRCameraComposition : OVRComposition { private float boundaryMeshTopY = 0.0f; private float boundaryMeshBottomY = 0.0f; private OVRManager.VirtualGreenScreenType boundaryMeshType = OVRManager.VirtualGreenScreenType.Off; + private OVRCameraFrameCompositionManager cameraFrameCompositionManager = null; - protected OVRCameraComposition(GameObject parentObject, Camera mainCamera, OVRManager.CameraDevice inCameraDevice, bool inUseDynamicLighting, OVRManager.DepthQuality depthQuality) - : base(parentObject, mainCamera) + protected OVRCameraComposition(GameObject parentObject, Camera mainCamera, OVRMixedRealityCaptureConfiguration configuration) + : base(parentObject, mainCamera, configuration) { - cameraDevice = OVRCompositionUtil.ConvertCameraDevice(inCameraDevice); + cameraDevice = OVRCompositionUtil.ConvertCameraDevice(configuration.capturingCameraDevice); Debug.Assert(!hasCameraDeviceOpened); Debug.Assert(!OVRPlugin.IsCameraDeviceAvailable(cameraDevice) || !OVRPlugin.HasCameraDeviceOpened(cameraDevice)); hasCameraDeviceOpened = false; - useDynamicLighting = inUseDynamicLighting; bool cameraSupportsDepth = OVRPlugin.DoesCameraDeviceSupportDepth(cameraDevice); - if (useDynamicLighting && !cameraSupportsDepth) + if (configuration.useDynamicLighting && !cameraSupportsDepth) { Debug.LogWarning("The camera device doesn't support depth. The result of dynamic lighting might not be correct"); } @@ -58,19 +53,19 @@ protected OVRCameraComposition(GameObject parentObject, Camera mainCamera, OVRMa OVRPlugin.SetCameraDevicePreferredColorFrameSize(cameraDevice, intrinsics.ImageSensorPixelResolution.w, intrinsics.ImageSensorPixelResolution.h); } - if (useDynamicLighting) + if (configuration.useDynamicLighting) { OVRPlugin.SetCameraDeviceDepthSensingMode(cameraDevice, OVRPlugin.CameraDeviceDepthSensingMode.Fill); OVRPlugin.CameraDeviceDepthQuality quality = OVRPlugin.CameraDeviceDepthQuality.Medium; - if (depthQuality == OVRManager.DepthQuality.Low) + if (configuration.depthQuality == OVRManager.DepthQuality.Low) { quality = OVRPlugin.CameraDeviceDepthQuality.Low; } - else if (depthQuality == OVRManager.DepthQuality.Medium) + else if (configuration.depthQuality == OVRManager.DepthQuality.Medium) { quality = OVRPlugin.CameraDeviceDepthQuality.Medium; } - else if (depthQuality == OVRManager.DepthQuality.High) + else if (configuration.depthQuality == OVRManager.DepthQuality.High) { quality = OVRPlugin.CameraDeviceDepthQuality.High; } @@ -106,7 +101,7 @@ public override void RecenterPose() boundaryMesh = null; } - protected void RefreshCameraFramePlaneObject(GameObject parentObject, Camera mixedRealityCamera, bool useDynamicLighting) + protected void RefreshCameraFramePlaneObject(GameObject parentObject, Camera mixedRealityCamera, OVRMixedRealityCaptureConfiguration configuration) { OVRCompositionUtil.SafeDestroy(ref cameraFramePlaneObject); @@ -116,20 +111,22 @@ protected void RefreshCameraFramePlaneObject(GameObject parentObject, Camera mix cameraFramePlaneObject.transform.parent = cameraInTrackingSpace ? cameraRig.trackingSpace : parentObject.transform; cameraFramePlaneObject.GetComponent().enabled = false; cameraFramePlaneObject.GetComponent().shadowCastingMode = UnityEngine.Rendering.ShadowCastingMode.Off; - Material cameraFrameMaterial = new Material(Shader.Find(useDynamicLighting ? "Oculus/OVRMRCameraFrameLit" : "Oculus/OVRMRCameraFrame")); + Material cameraFrameMaterial = new Material(Shader.Find(configuration.useDynamicLighting ? "Oculus/OVRMRCameraFrameLit" : "Oculus/OVRMRCameraFrame")); cameraFramePlaneObject.GetComponent().material = cameraFrameMaterial; cameraFrameMaterial.SetColor("_Color", Color.white); cameraFrameMaterial.SetFloat("_Visible", 0.0f); cameraFramePlaneObject.transform.localScale = new Vector3(4, 4, 4); cameraFramePlaneObject.SetActive(true); - OVRCameraFrameCompositionManager cameraFrameCompositionManager = mixedRealityCamera.gameObject.AddComponent(); + cameraFrameCompositionManager = mixedRealityCamera.gameObject.AddComponent(); + cameraFrameCompositionManager.configuration = configuration; cameraFrameCompositionManager.cameraFrameGameObj = cameraFramePlaneObject; cameraFrameCompositionManager.composition = this; } private bool nullcameraRigWarningDisplayed = false; - protected void UpdateCameraFramePlaneObject(Camera mainCamera, Camera mixedRealityCamera, RenderTexture boundaryMeshMaskTexture) + protected void UpdateCameraFramePlaneObject(Camera mainCamera, Camera mixedRealityCamera, OVRMixedRealityCaptureConfiguration configuration, RenderTexture boundaryMeshMaskTexture) { + cameraFrameCompositionManager.configuration = configuration; bool hasError = false; Material cameraFrameMaterial = cameraFramePlaneObject.GetComponent().material; Texture2D colorTexture = Texture2D.blackTexture; @@ -144,7 +141,7 @@ protected void UpdateCameraFramePlaneObject(Camera mainCamera, Camera mixedReali hasError = true; } bool cameraSupportsDepth = OVRPlugin.DoesCameraDeviceSupportDepth(cameraDevice); - if (useDynamicLighting && cameraSupportsDepth) + if (configuration.useDynamicLighting && cameraSupportsDepth) { if (OVRPlugin.IsCameraDeviceDepthFrameAvailable(cameraDevice)) { @@ -175,22 +172,22 @@ protected void UpdateCameraFramePlaneObject(Camera mainCamera, Camera mixedReali if (OVRManager.instance.virtualGreenScreenType != OVRManager.VirtualGreenScreenType.Off) { - RefreshBoundaryMesh(mixedRealityCamera, out cullingDistance); + RefreshBoundaryMesh(mixedRealityCamera, configuration, out cullingDistance); } cameraFrameMaterial.mainTexture = colorTexture; cameraFrameMaterial.SetTexture("_DepthTex", depthTexture); - cameraFrameMaterial.SetVector("_FlipParams", new Vector4((OVRManager.instance.flipCameraFrameHorizontally ? 1.0f : 0.0f), (OVRManager.instance.flipCameraFrameVertically ? 1.0f : 0.0f), 0.0f, 0.0f)); - cameraFrameMaterial.SetColor("_ChromaKeyColor", OVRManager.instance.chromaKeyColor); - cameraFrameMaterial.SetFloat("_ChromaKeySimilarity", OVRManager.instance.chromaKeySimilarity); - cameraFrameMaterial.SetFloat("_ChromaKeySmoothRange", OVRManager.instance.chromaKeySmoothRange); - cameraFrameMaterial.SetFloat("_ChromaKeySpillRange", OVRManager.instance.chromaKeySpillRange); + cameraFrameMaterial.SetVector("_FlipParams", new Vector4((configuration.flipCameraFrameHorizontally ? 1.0f : 0.0f), (configuration.flipCameraFrameVertically ? 1.0f : 0.0f), 0.0f, 0.0f)); + cameraFrameMaterial.SetColor("_ChromaKeyColor", configuration.chromaKeyColor); + cameraFrameMaterial.SetFloat("_ChromaKeySimilarity", configuration.chromaKeySimilarity); + cameraFrameMaterial.SetFloat("_ChromaKeySmoothRange", configuration.chromaKeySmoothRange); + cameraFrameMaterial.SetFloat("_ChromaKeySpillRange", configuration.chromaKeySpillRange); cameraFrameMaterial.SetVector("_TextureDimension", new Vector4(colorTexture.width, colorTexture.height, 1.0f / colorTexture.width, 1.0f / colorTexture.height)); cameraFrameMaterial.SetVector("_TextureWorldSize", new Vector4(worldWidth, worldHeight, 0, 0)); - cameraFrameMaterial.SetFloat("_SmoothFactor", OVRManager.instance.dynamicLightingSmoothFactor); - cameraFrameMaterial.SetFloat("_DepthVariationClamp", OVRManager.instance.dynamicLightingDepthVariationClampingValue); + cameraFrameMaterial.SetFloat("_SmoothFactor", configuration.dynamicLightingSmoothFactor); + cameraFrameMaterial.SetFloat("_DepthVariationClamp", configuration.dynamicLightingDepthVariationClampingValue); cameraFrameMaterial.SetFloat("_CullingDistance", cullingDistance); - if (OVRManager.instance.virtualGreenScreenType == OVRManager.VirtualGreenScreenType.Off || boundaryMesh == null || boundaryMeshMaskTexture == null) + if (configuration.virtualGreenScreenType == OVRManager.VirtualGreenScreenType.Off || boundaryMesh == null || boundaryMeshMaskTexture == null) { cameraFrameMaterial.SetTexture("_MaskTex", Texture2D.whiteTexture); } @@ -220,16 +217,16 @@ protected void UpdateCameraFramePlaneObject(Camera mainCamera, Camera mixedReali } } - protected void RefreshBoundaryMesh(Camera camera, out float cullingDistance) + protected void RefreshBoundaryMesh(Camera camera, OVRMixedRealityCaptureConfiguration configuration, out float cullingDistance) { - float depthTolerance = OVRManager.instance.virtualGreenScreenApplyDepthCulling ? OVRManager.instance.virtualGreenScreenDepthTolerance : float.PositiveInfinity; - cullingDistance = OVRCompositionUtil.GetMaximumBoundaryDistance(camera, OVRCompositionUtil.ToBoundaryType(OVRManager.instance.virtualGreenScreenType)) + depthTolerance; - if (boundaryMesh == null || boundaryMeshType != OVRManager.instance.virtualGreenScreenType || boundaryMeshTopY != OVRManager.instance.virtualGreenScreenTopY || boundaryMeshBottomY != OVRManager.instance.virtualGreenScreenBottomY) + float depthTolerance = configuration.virtualGreenScreenApplyDepthCulling ? configuration.virtualGreenScreenDepthTolerance : float.PositiveInfinity; + cullingDistance = OVRCompositionUtil.GetMaximumBoundaryDistance(camera, OVRCompositionUtil.ToBoundaryType(configuration.virtualGreenScreenType)) + depthTolerance; + if (boundaryMesh == null || boundaryMeshType != configuration.virtualGreenScreenType || boundaryMeshTopY != configuration.virtualGreenScreenTopY || boundaryMeshBottomY != configuration.virtualGreenScreenBottomY) { - boundaryMeshTopY = OVRManager.instance.virtualGreenScreenTopY; - boundaryMeshBottomY = OVRManager.instance.virtualGreenScreenBottomY; - boundaryMesh = OVRCompositionUtil.BuildBoundaryMesh(OVRCompositionUtil.ToBoundaryType(OVRManager.instance.virtualGreenScreenType), boundaryMeshTopY, boundaryMeshBottomY); - boundaryMeshType = OVRManager.instance.virtualGreenScreenType; + boundaryMeshTopY = configuration.virtualGreenScreenTopY; + boundaryMeshBottomY = configuration.virtualGreenScreenBottomY; + boundaryMesh = OVRCompositionUtil.BuildBoundaryMesh(OVRCompositionUtil.ToBoundaryType(configuration.virtualGreenScreenType), boundaryMeshTopY, boundaryMeshBottomY); + boundaryMeshType = configuration.virtualGreenScreenType; // Creating GameObject for testing purpose only //GameObject boundaryMeshObject = new GameObject("BoundaryMeshObject"); @@ -238,8 +235,9 @@ protected void RefreshBoundaryMesh(Camera camera, out float cullingDistance) } } - public class OVRCameraFrameCompositionManager : MonoBehaviour - { + public class OVRCameraFrameCompositionManager : MonoBehaviour { + + public OVRMixedRealityCaptureConfiguration configuration; public GameObject cameraFrameGameObj; public OVRCameraComposition composition; public RenderTexture boundaryMeshMaskTexture; @@ -260,7 +258,7 @@ void Start() void OnPreRender() { - if (OVRManager.instance.virtualGreenScreenType != OVRManager.VirtualGreenScreenType.Off && boundaryMeshMaskTexture != null && composition.boundaryMesh != null) + if (configuration != null && configuration.virtualGreenScreenType != OVRManager.VirtualGreenScreenType.Off && boundaryMeshMaskTexture != null && composition.boundaryMesh != null) { RenderTexture oldRT = RenderTexture.active; RenderTexture.active = boundaryMeshMaskTexture; diff --git a/Assets/Oculus/VR/Scripts/Composition/OVRComposition.cs b/Assets/Oculus/VR/Scripts/Composition/OVRComposition.cs index eab5b3c7..f8e61d1e 100644 --- a/Assets/Oculus/VR/Scripts/Composition/OVRComposition.cs +++ b/Assets/Oculus/VR/Scripts/Composition/OVRComposition.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -28,14 +24,14 @@ public abstract class OVRComposition { public bool cameraInTrackingSpace = false; public OVRCameraRig cameraRig = null; - protected OVRComposition(GameObject parentObject, Camera mainCamera) - { + protected OVRComposition(GameObject parentObject, Camera mainCamera, OVRMixedRealityCaptureConfiguration configuration) { + RefreshCameraRig(parentObject, mainCamera); } public abstract OVRManager.CompositionMethod CompositionMethod(); - public abstract void Update(GameObject gameObject, Camera mainCamera); + public abstract void Update(GameObject gameObject, Camera mainCamera, OVRMixedRealityCaptureConfiguration configuration, OVRManager.TrackingOrigin trackingOrigin); public abstract void Cleanup(); public virtual void RecenterPose() { } diff --git a/Assets/Oculus/VR/Scripts/Composition/OVRCompositionUtil.cs b/Assets/Oculus/VR/Scripts/Composition/OVRCompositionUtil.cs index e5ca0579..a75329ef 100644 --- a/Assets/Oculus/VR/Scripts/Composition/OVRCompositionUtil.cs +++ b/Assets/Oculus/VR/Scripts/Composition/OVRCompositionUtil.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Composition/OVRDirectComposition.cs b/Assets/Oculus/VR/Scripts/Composition/OVRDirectComposition.cs index 17dd278e..c5d02f3b 100644 --- a/Assets/Oculus/VR/Scripts/Composition/OVRDirectComposition.cs +++ b/Assets/Oculus/VR/Scripts/Composition/OVRDirectComposition.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -14,8 +10,10 @@ You may obtain a copy of the License at permissions and limitations under the License. ************************************************************************************/ +using System; using UnityEngine; using System.Collections; +using Object = UnityEngine.Object; #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN @@ -28,13 +26,13 @@ public class OVRDirectComposition : OVRCameraComposition public override OVRManager.CompositionMethod CompositionMethod() { return OVRManager.CompositionMethod.Direct; } - public OVRDirectComposition(GameObject parentObject, Camera mainCamera, OVRManager.CameraDevice cameraDevice, bool useDynamicLighting, OVRManager.DepthQuality depthQuality) - : base(parentObject, mainCamera, cameraDevice, useDynamicLighting, depthQuality) + public OVRDirectComposition(GameObject parentObject, Camera mainCamera, OVRMixedRealityCaptureConfiguration configuration) + : base(parentObject, mainCamera, configuration) { - RefreshCameraObjects(parentObject, mainCamera); + RefreshCameraObjects(parentObject, mainCamera, configuration); } - private void RefreshCameraObjects(GameObject parentObject, Camera mainCamera) + private void RefreshCameraObjects(GameObject parentObject, Camera mainCamera, OVRMixedRealityCaptureConfiguration configuration) { if (!hasCameraDeviceOpened) { @@ -52,7 +50,14 @@ private void RefreshCameraObjects(GameObject parentObject, Camera mainCamera) RefreshCameraRig(parentObject, mainCamera); Debug.Assert(directCompositionCameraGameObject == null); - directCompositionCameraGameObject = Object.Instantiate(mainCamera.gameObject); + if (configuration.instantiateMixedRealityCameraGameObject != null) + { + directCompositionCameraGameObject = configuration.instantiateMixedRealityCameraGameObject(mainCamera.gameObject, OVRManager.MrcCameraType.Normal); + } + else + { + directCompositionCameraGameObject = Object.Instantiate(mainCamera.gameObject); + } directCompositionCameraGameObject.name = "OculusMRC_DirectCompositionCamera"; directCompositionCameraGameObject.transform.parent = cameraInTrackingSpace ? cameraRig.trackingSpace : parentObject.transform; if (directCompositionCameraGameObject.GetComponent()) @@ -67,40 +72,45 @@ private void RefreshCameraObjects(GameObject parentObject, Camera mainCamera) directCompositionCamera.stereoTargetEye = StereoTargetEyeMask.None; directCompositionCamera.depth = float.MaxValue; directCompositionCamera.rect = new Rect(0.0f, 0.0f, 1.0f, 1.0f); - directCompositionCamera.cullingMask = mainCamera.cullingMask & (~OVRManager.instance.extraHiddenLayers); + directCompositionCamera.cullingMask = (directCompositionCamera.cullingMask & ~configuration.extraHiddenLayers) | configuration.extraVisibleLayers; + - Debug.Log("DirectComposition activated : useDynamicLighting " + (useDynamicLighting ? "ON" : "OFF")); - RefreshCameraFramePlaneObject(parentObject, directCompositionCamera, useDynamicLighting); + Debug.Log("DirectComposition activated : useDynamicLighting " + (configuration.useDynamicLighting ? "ON" : "OFF")); + RefreshCameraFramePlaneObject(parentObject, directCompositionCamera, configuration); previousMainCameraObject = mainCamera.gameObject; } } - public override void Update(GameObject gameObject, Camera mainCamera) + public override void Update(GameObject gameObject, Camera mainCamera, OVRMixedRealityCaptureConfiguration configuration, OVRManager.TrackingOrigin trackingOrigin) { if (!hasCameraDeviceOpened) { return; } - RefreshCameraObjects(gameObject, mainCamera); + RefreshCameraObjects(gameObject, mainCamera, configuration); - if (!OVRPlugin.SetHandNodePoseStateLatency(OVRManager.instance.handPoseStateLatency)) + if (!OVRPlugin.SetHandNodePoseStateLatency(configuration.handPoseStateLatency)) { - Debug.LogWarning("HandPoseStateLatency is invalid. Expect a value between 0.0 to 0.5, get " + OVRManager.instance.handPoseStateLatency); + Debug.LogWarning("HandPoseStateLatency is invalid. Expect a value between 0.0 to 0.5, get " + configuration.handPoseStateLatency); } directCompositionCamera.clearFlags = mainCamera.clearFlags; directCompositionCamera.backgroundColor = mainCamera.backgroundColor; - directCompositionCamera.cullingMask = mainCamera.cullingMask & (~OVRManager.instance.extraHiddenLayers); + if (configuration.dynamicCullingMask) + { + directCompositionCamera.cullingMask = (mainCamera.cullingMask & ~configuration.extraHiddenLayers) | configuration.extraVisibleLayers; + } + directCompositionCamera.nearClipPlane = mainCamera.nearClipPlane; directCompositionCamera.farClipPlane = mainCamera.farClipPlane; if (OVRMixedReality.useFakeExternalCamera || OVRPlugin.GetExternalCameraCount() == 0) { OVRPose trackingSpacePose = new OVRPose(); - trackingSpacePose.position = OVRManager.instance.trackingOriginType == OVRManager.TrackingOrigin.EyeLevel ? - OVRMixedReality.fakeCameraEyeLevelPosition : + trackingSpacePose.position = trackingOrigin == OVRManager.TrackingOrigin.EyeLevel ? + OVRMixedReality.fakeCameraEyeLevelPosition : OVRMixedReality.fakeCameraFloorLevelPosition; trackingSpacePose.orientation = OVRMixedReality.fakeCameraRotation; directCompositionCamera.fieldOfView = OVRMixedReality.fakeCameraFov; @@ -152,7 +162,7 @@ public override void Update(GameObject gameObject, Camera mainCamera) boundaryMeshMaskTexture = new RenderTexture(Screen.width, Screen.height, 0, RenderTextureFormat.R8); boundaryMeshMaskTexture.Create(); } - UpdateCameraFramePlaneObject(mainCamera, directCompositionCamera, boundaryMeshMaskTexture); + UpdateCameraFramePlaneObject(mainCamera, directCompositionCamera, configuration, boundaryMeshMaskTexture); directCompositionCamera.GetComponent().boundaryMeshMaskTexture = boundaryMeshMaskTexture; } } diff --git a/Assets/Oculus/VR/Scripts/Composition/OVRExternalComposition.cs b/Assets/Oculus/VR/Scripts/Composition/OVRExternalComposition.cs index f37b5776..5b291654 100644 --- a/Assets/Oculus/VR/Scripts/Composition/OVRExternalComposition.cs +++ b/Assets/Oculus/VR/Scripts/Composition/OVRExternalComposition.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -18,14 +14,16 @@ permissions and limitations under the License. #define OVR_ANDROID_MRC #endif +using System; using UnityEngine; using System.Collections.Generic; using System.Threading; using UnityEngine.Rendering; +using Object = UnityEngine.Object; #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || UNITY_ANDROID -public class OVRExternalComposition : OVRComposition +public class OVRExternalComposition : OVRComposition { private GameObject previousMainCameraObject = null; public GameObject foregroundCameraGameObject = null; @@ -33,7 +31,7 @@ public class OVRExternalComposition : OVRComposition public GameObject backgroundCameraGameObject = null; public Camera backgroundCamera = null; #if OVR_ANDROID_MRC - public bool renderCombinedFrame = true; + public bool renderCombinedFrame = false; public AudioListener audioListener; public OVRMRAudioFilter audioFilter; public RenderTexture[] mrcRenderTextureArray = new RenderTexture[2]; @@ -42,20 +40,19 @@ public class OVRExternalComposition : OVRComposition // when rendererSupportsCameraRect is false, mrcRenderTextureArray would only store the background frame (regular width) public RenderTexture[] mrcForegroundRenderTextureArray = new RenderTexture[2]; + + // this is used for moving MRC camera where we would need to be able to synchronize the camera position from the game with that on the client for composition + public double[] cameraPoseTimeArray = new double[2]; #endif public override OVRManager.CompositionMethod CompositionMethod() { return OVRManager.CompositionMethod.External; } - public OVRExternalComposition(GameObject parentObject, Camera mainCamera) - : base(parentObject, mainCamera) + public OVRExternalComposition(GameObject parentObject, Camera mainCamera, OVRMixedRealityCaptureConfiguration configuration) + : base(parentObject, mainCamera, configuration) { + #if OVR_ANDROID_MRC - renderCombinedFrame = true; - if (GraphicsSettings.renderPipelineAsset != null) - { - Debug.Log("[OVRExternalComposition] scriptable rendering pipeline detected, Camera.rect is not supported"); - renderCombinedFrame = false; - } + renderCombinedFrame = false; int frameWidth; int frameHeight; @@ -65,6 +62,7 @@ public OVRExternalComposition(GameObject parentObject, Camera mainCamera) { mrcRenderTextureArray[i] = new RenderTexture(renderCombinedFrame ? frameWidth : frameWidth/2, frameHeight, 24, RenderTextureFormat.ARGB32); mrcRenderTextureArray[i].Create(); + cameraPoseTimeArray[i] = 0.0; } frameIndex = 0; @@ -80,10 +78,10 @@ public OVRExternalComposition(GameObject parentObject, Camera mainCamera) } } #endif - RefreshCameraObjects(parentObject, mainCamera); + RefreshCameraObjects(parentObject, mainCamera, configuration); } - private void RefreshCameraObjects(GameObject parentObject, Camera mainCamera) + private void RefreshCameraObjects(GameObject parentObject, Camera mainCamera, OVRMixedRealityCaptureConfiguration configuration) { if (mainCamera.gameObject != previousMainCameraObject) { @@ -97,15 +95,23 @@ private void RefreshCameraObjects(GameObject parentObject, Camera mainCamera) RefreshCameraRig(parentObject, mainCamera); Debug.Assert(backgroundCameraGameObject == null); - backgroundCameraGameObject = Object.Instantiate(mainCamera.gameObject); - backgroundCameraGameObject.name = "OculusMRC_BackgroundCamera"; - backgroundCameraGameObject.transform.parent = cameraInTrackingSpace ? cameraRig.trackingSpace : parentObject.transform; - if (backgroundCameraGameObject.GetComponent()) + if (configuration.instantiateMixedRealityCameraGameObject != null) { - Object.Destroy(backgroundCameraGameObject.GetComponent()); + backgroundCameraGameObject = configuration.instantiateMixedRealityCameraGameObject(mainCamera.gameObject, OVRManager.MrcCameraType.Background); } - if (backgroundCameraGameObject.GetComponent()) + else { + backgroundCameraGameObject = Object.Instantiate(mainCamera.gameObject); + } + + backgroundCameraGameObject.name = "OculusMRC_BackgroundCamera"; + backgroundCameraGameObject.transform.parent = + cameraInTrackingSpace ? cameraRig.trackingSpace : parentObject.transform; + if (backgroundCameraGameObject.GetComponent()) { + Object.Destroy(backgroundCameraGameObject.GetComponent()); + } + + if (backgroundCameraGameObject.GetComponent()) { Object.Destroy(backgroundCameraGameObject.GetComponent()); } backgroundCamera = backgroundCameraGameObject.GetComponent(); @@ -113,7 +119,7 @@ private void RefreshCameraObjects(GameObject parentObject, Camera mainCamera) backgroundCamera.stereoTargetEye = StereoTargetEyeMask.None; backgroundCamera.depth = 99990.0f; backgroundCamera.rect = new Rect(0.0f, 0.0f, 0.5f, 1.0f); - backgroundCamera.cullingMask = mainCamera.cullingMask & (~OVRManager.instance.extraHiddenLayers); + backgroundCamera.cullingMask = (backgroundCamera.cullingMask & ~configuration.extraHiddenLayers) | configuration.extraVisibleLayers; #if OVR_ANDROID_MRC backgroundCamera.targetTexture = mrcRenderTextureArray[0]; if (!renderCombinedFrame) @@ -123,7 +129,15 @@ private void RefreshCameraObjects(GameObject parentObject, Camera mainCamera) #endif Debug.Assert(foregroundCameraGameObject == null); - foregroundCameraGameObject = Object.Instantiate(mainCamera.gameObject); + if (configuration.instantiateMixedRealityCameraGameObject != null) + { + foregroundCameraGameObject = configuration.instantiateMixedRealityCameraGameObject(mainCamera.gameObject, OVRManager.MrcCameraType.Foreground); + } + else + { + foregroundCameraGameObject = Object.Instantiate(mainCamera.gameObject); + } + foregroundCameraGameObject.name = "OculusMRC_ForgroundCamera"; foregroundCameraGameObject.transform.parent = cameraInTrackingSpace ? cameraRig.trackingSpace : parentObject.transform; if (foregroundCameraGameObject.GetComponent()) @@ -141,11 +155,12 @@ private void RefreshCameraObjects(GameObject parentObject, Camera mainCamera) foregroundCamera.rect = new Rect(0.5f, 0.0f, 0.5f, 1.0f); foregroundCamera.clearFlags = CameraClearFlags.Color; #if OVR_ANDROID_MRC - foregroundCamera.backgroundColor = OVRManager.instance.externalCompositionBackdropColorQuest; + foregroundCamera.backgroundColor = configuration.externalCompositionBackdropColorQuest; #else - foregroundCamera.backgroundColor = OVRManager.instance.externalCompositionBackdropColorRift; + foregroundCamera.backgroundColor = configuration.externalCompositionBackdropColorRift; #endif - foregroundCamera.cullingMask = mainCamera.cullingMask & (~OVRManager.instance.extraHiddenLayers); + foregroundCamera.cullingMask = (foregroundCamera.cullingMask & ~configuration.extraHiddenLayers) | configuration.extraVisibleLayers; + #if OVR_ANDROID_MRC if (renderCombinedFrame) { @@ -201,7 +216,7 @@ private void RefreshAudioFilter() Debug.LogFormat("[OVRExternalComposition] AudioListener found, obj {0}", tmpAudioListener.gameObject.name); } audioListener = tmpAudioListener; - + if(audioListener != null) { audioFilter = audioListener.gameObject.AddComponent(); @@ -226,11 +241,11 @@ private int CastMrcFrame(int castTextureIndex) { ret = OVRPlugin.Media.EncodeMrcFrame(mrcRenderTextureArray[castTextureIndex].GetNativeTexturePtr(), renderCombinedFrame ? System.IntPtr.Zero : mrcForegroundRenderTextureArray[castTextureIndex].GetNativeTexturePtr(), - cachedAudioDataArray, audioFrames, audioChannels, AudioSettings.dspTime, ref syncId); + cachedAudioDataArray, audioFrames, audioChannels, AudioSettings.dspTime, cameraPoseTimeArray[castTextureIndex], ref syncId); } else { - ret = OVRPlugin.Media.EncodeMrcFrame(mrcRenderTextureArray[castTextureIndex], cachedAudioDataArray, audioFrames, audioChannels, AudioSettings.dspTime, ref syncId); + ret = OVRPlugin.Media.EncodeMrcFrame(mrcRenderTextureArray[castTextureIndex], cachedAudioDataArray, audioFrames, audioChannels, AudioSettings.dspTime, cameraPoseTimeArray[castTextureIndex], ref syncId); } if (!ret) @@ -273,12 +288,20 @@ private void SetCameraTargetTexture(int drawTextureIndex) #endif - public override void Update(GameObject gameObject, Camera mainCamera) + public override void Update(GameObject gameObject, Camera mainCamera, OVRMixedRealityCaptureConfiguration configuration, OVRManager.TrackingOrigin trackingOrigin) { - RefreshCameraObjects(gameObject, mainCamera); + RefreshCameraObjects(gameObject, mainCamera, configuration); OVRPlugin.SetHandNodePoseStateLatency(0.0); // the HandNodePoseStateLatency doesn't apply to the external composition. Always enforce it to 0.0 + // For third-person camera to use for calculating camera position with different anchors + OVRPose stageToLocalPose = OVRPlugin.GetTrackingTransformRelativePose(OVRPlugin.TrackingOrigin.Stage).ToOVRPose(); + OVRPose localToStagePose = stageToLocalPose.Inverse(); + OVRPose head = localToStagePose * OVRPlugin.GetNodePose(OVRPlugin.Node.Head, OVRPlugin.Step.Render).ToOVRPose(); + OVRPose leftC = localToStagePose * OVRPlugin.GetNodePose(OVRPlugin.Node.HandLeft, OVRPlugin.Step.Render).ToOVRPose(); + OVRPose rightC = localToStagePose * OVRPlugin.GetNodePose(OVRPlugin.Node.HandRight, OVRPlugin.Step.Render).ToOVRPose(); + OVRPlugin.Media.SetMrcHeadsetControllerPose(head.ToPosef(), leftC.ToPosef(), rightC.ToPosef()); + #if OVR_ANDROID_MRC RefreshAudioFilter(); @@ -304,11 +327,17 @@ public override void Update(GameObject gameObject, Camera mainCamera) backgroundCamera.clearFlags = mainCamera.clearFlags; backgroundCamera.backgroundColor = mainCamera.backgroundColor; - backgroundCamera.cullingMask = mainCamera.cullingMask & (~OVRManager.instance.extraHiddenLayers); + if (configuration.dynamicCullingMask) + { + backgroundCamera.cullingMask = (mainCamera.cullingMask & ~configuration.extraHiddenLayers) | configuration.extraVisibleLayers; + } backgroundCamera.nearClipPlane = mainCamera.nearClipPlane; backgroundCamera.farClipPlane = mainCamera.farClipPlane; - foregroundCamera.cullingMask = mainCamera.cullingMask & (~OVRManager.instance.extraHiddenLayers); + if (configuration.dynamicCullingMask) + { + foregroundCamera.cullingMask = (mainCamera.cullingMask & ~configuration.extraHiddenLayers) | configuration.extraVisibleLayers; + } foregroundCamera.nearClipPlane = mainCamera.nearClipPlane; foregroundCamera.farClipPlane = mainCamera.farClipPlane; @@ -316,7 +345,7 @@ public override void Update(GameObject gameObject, Camera mainCamera) { OVRPose worldSpacePose = new OVRPose(); OVRPose trackingSpacePose = new OVRPose(); - trackingSpacePose.position = OVRManager.instance.trackingOriginType == OVRManager.TrackingOrigin.EyeLevel ? + trackingSpacePose.position = trackingOrigin == OVRManager.TrackingOrigin.EyeLevel ? OVRMixedReality.fakeCameraEyeLevelPosition : OVRMixedReality.fakeCameraFloorLevelPosition; trackingSpacePose.orientation = OVRMixedReality.fakeCameraRotation; @@ -365,6 +394,9 @@ public override void Update(GameObject gameObject, Camera mainCamera) backgroundCamera.transform.FromOVRPose(worldSpacePose); foregroundCamera.transform.FromOVRPose(worldSpacePose); } +#if OVR_ANDROID_MRC + cameraPoseTimeArray[drawTextureIndex] = extrinsics.LastChangedTimeSeconds; +#endif } else { diff --git a/Assets/Oculus/VR/Scripts/Editor/OVRCustomSkeletonEditor.cs b/Assets/Oculus/VR/Scripts/Editor/OVRCustomSkeletonEditor.cs index 3eae4f4f..f1738fc9 100644 --- a/Assets/Oculus/VR/Scripts/Editor/OVRCustomSkeletonEditor.cs +++ b/Assets/Oculus/VR/Scripts/Editor/OVRCustomSkeletonEditor.cs @@ -2,12 +2,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -53,7 +49,7 @@ public override void OnInspectorGUI() { for (int i = (int)start; i < (int)end; ++i) { - string boneName = BoneLabelFromBoneId((BoneId)i); + string boneName = BoneLabelFromBoneId(skeletonType, (BoneId)i); skeleton.CustomBones[i] = (Transform)EditorGUILayout.ObjectField(boneName, skeleton.CustomBones[i], typeof(Transform), true); } } @@ -61,19 +57,67 @@ public override void OnInspectorGUI() } // force aliased enum values to the more appropriate value - private static string BoneLabelFromBoneId(BoneId boneId) + private static string BoneLabelFromBoneId(OVRSkeleton.SkeletonType skeletonType, BoneId boneId) { - if (boneId == BoneId.Hand_Start) - { - return "Hand_WristRoot"; - } - else if (boneId == BoneId.Hand_MaxSkinnable) + if (skeletonType == OVRSkeleton.SkeletonType.HandLeft || skeletonType == OVRSkeleton.SkeletonType.HandRight) { - return "Hand_ThumbTip"; + switch (boneId) + { + case OVRSkeleton.BoneId.Hand_WristRoot: + return "Hand_WristRoot"; + case OVRSkeleton.BoneId.Hand_ForearmStub: + return "Hand_ForearmStub"; + case OVRSkeleton.BoneId.Hand_Thumb0: + return "Hand_Thumb0"; + case OVRSkeleton.BoneId.Hand_Thumb1: + return "Hand_Thumb1"; + case OVRSkeleton.BoneId.Hand_Thumb2: + return "Hand_Thumb2"; + case OVRSkeleton.BoneId.Hand_Thumb3: + return "Hand_Thumb3"; + case OVRSkeleton.BoneId.Hand_Index1: + return "Hand_Index1"; + case OVRSkeleton.BoneId.Hand_Index2: + return "Hand_Index2"; + case OVRSkeleton.BoneId.Hand_Index3: + return "Hand_Index3"; + case OVRSkeleton.BoneId.Hand_Middle1: + return "Hand_Middle1"; + case OVRSkeleton.BoneId.Hand_Middle2: + return "Hand_Middle2"; + case OVRSkeleton.BoneId.Hand_Middle3: + return "Hand_Middle3"; + case OVRSkeleton.BoneId.Hand_Ring1: + return "Hand_Ring1"; + case OVRSkeleton.BoneId.Hand_Ring2: + return "Hand_Ring2"; + case OVRSkeleton.BoneId.Hand_Ring3: + return "Hand_Ring3"; + case OVRSkeleton.BoneId.Hand_Pinky0: + return "Hand_Pinky0"; + case OVRSkeleton.BoneId.Hand_Pinky1: + return "Hand_Pinky1"; + case OVRSkeleton.BoneId.Hand_Pinky2: + return "Hand_Pinky2"; + case OVRSkeleton.BoneId.Hand_Pinky3: + return "Hand_Pinky3"; + case OVRSkeleton.BoneId.Hand_ThumbTip: + return "Hand_ThumbTip"; + case OVRSkeleton.BoneId.Hand_IndexTip: + return "Hand_IndexTip"; + case OVRSkeleton.BoneId.Hand_MiddleTip: + return "Hand_MiddleTip"; + case OVRSkeleton.BoneId.Hand_RingTip: + return "Hand_RingTip"; + case OVRSkeleton.BoneId.Hand_PinkyTip: + return "Hand_PinkyTip"; + default: + return "Hand_Unknown"; + } } else { - return boneId.ToString(); + return "Skeleton_Unknown"; } } } diff --git a/Assets/Oculus/VR/Scripts/Editor/OVREditorUtil.cs b/Assets/Oculus/VR/Scripts/Editor/OVREditorUtil.cs index ea38339c..19855d46 100644 --- a/Assets/Oculus/VR/Scripts/Editor/OVREditorUtil.cs +++ b/Assets/Oculus/VR/Scripts/Editor/OVREditorUtil.cs @@ -137,4 +137,23 @@ public static void SetupEnumField(Object target, GUIContent name, ref T membe modified = true; } } + + [Conditional("UNITY_EDITOR_WIN"), Conditional("UNITY_STANDALONE_WIN"), Conditional("UNITY_ANDROID")] + public static void SetupInputField(Object target, string name, ref string member, ref bool modified) + { + SetupInputField(target, new GUIContent(name), ref member, ref modified); + } + + [Conditional("UNITY_EDITOR_WIN"), Conditional("UNITY_STANDALONE_WIN"), Conditional("UNITY_ANDROID")] + public static void SetupInputField(Object target, GUIContent name, ref string member, ref bool modified) + { + EditorGUI.BeginChangeCheck(); + string value = EditorGUILayout.TextField(name, member); + if (EditorGUI.EndChangeCheck()) + { + Undo.RecordObject(target, "Changed " + name); + member = value; + modified = true; + } + } } diff --git a/Assets/Oculus/VR/Scripts/Editor/OVRManagerEditor.cs b/Assets/Oculus/VR/Scripts/Editor/OVRManagerEditor.cs index 7cb4f332..9e4aad03 100644 --- a/Assets/Oculus/VR/Scripts/Editor/OVRManagerEditor.cs +++ b/Assets/Oculus/VR/Scripts/Editor/OVRManagerEditor.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -33,13 +29,22 @@ override public void OnInspectorGUI() DrawDefaultInspector(); + bool modified = false; + #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || UNITY_ANDROID OVRManager manager = (OVRManager)target; + + EditorGUILayout.Space(); + EditorGUILayout.LabelField("Display", EditorStyles.boldLabel); + + OVRManager.ColorSpace colorGamut = manager.colorGamut; + OVREditorUtil.SetupEnumField(target, new GUIContent("Color Gamut", + "The target color gamut when displayed on the HMD"), ref colorGamut, ref modified); + manager.colorGamut = colorGamut; #endif - bool modified = false; #if UNITY_ANDROID - EditorGUILayout.Space(); + EditorGUILayout.Space(); OVRProjectConfigEditor.DrawProjectConfigInspector(projectConfig); EditorGUILayout.Space(); @@ -71,6 +76,8 @@ override public void OnInspectorGUI() OVREditorUtil.SetupBoolField(target, "enableMixedReality", ref manager.enableMixedReality, ref modified); OVREditorUtil.SetupEnumField(target, "compositionMethod", ref manager.compositionMethod, ref modified); OVREditorUtil.SetupLayerMaskField(target, "extraHiddenLayers", ref manager.extraHiddenLayers, layerMaskOptions, ref modified); + OVREditorUtil.SetupLayerMaskField(target, "extraVisibleLayers", ref manager.extraVisibleLayers, layerMaskOptions, ref modified); + OVREditorUtil.SetupBoolField(target, "dynamicCullingMask", ref manager.dynamicCullingMask, ref modified); if (manager.compositionMethod == OVRManager.CompositionMethod.External) { @@ -125,10 +132,11 @@ override public void OnInspectorGUI() EditorGUI.indentLevel--; } #endif + if (modified) { EditorUtility.SetDirty(target); } } - + } diff --git a/Assets/Oculus/VR/Scripts/Editor/OVROverlayDestRectEditor.shader b/Assets/Oculus/VR/Scripts/Editor/OVROverlayDestRectEditor.shader index 49bf2a17..68fd1c21 100644 --- a/Assets/Oculus/VR/Scripts/Editor/OVROverlayDestRectEditor.shader +++ b/Assets/Oculus/VR/Scripts/Editor/OVROverlayDestRectEditor.shader @@ -110,8 +110,8 @@ Shader "Unlit/OVROverlayDestRectEditor" fixed4 frag (v2f i) : SV_Target { float isLeftEye = i.uv < 0.5; - float2 leftUV = float2(i.uv.x * (256.0 + 32.0) / 128.0, 1 - i.uv.y); - float2 rightUV = float2(1 - ((1 - i.uv.x) * (256.0 + 32.0) / 128.0), 1 - i.uv.y); + float2 leftUV = float2(i.uv.x * (256.0 + 32.0) / 128.0, i.uv.y); + float2 rightUV = float2(1 - ((1 - i.uv.x) * (256.0 + 32.0) / 128.0), i.uv.y); float2 uv = i.uv; float2 textureUV = i.uv; diff --git a/Assets/Oculus/VR/Scripts/Editor/OVROverlayEditor.cs b/Assets/Oculus/VR/Scripts/Editor/OVROverlayEditor.cs index 7be846ff..8a143bd8 100644 --- a/Assets/Oculus/VR/Scripts/Editor/OVROverlayEditor.cs +++ b/Assets/Oculus/VR/Scripts/Editor/OVROverlayEditor.cs @@ -23,7 +23,7 @@ public enum DisplayType { Custom = 0, Full = 1, - Half = 2 + Half = 2, } private bool sourceRectsVisible = false; @@ -163,10 +163,11 @@ public override void OnInspectorGUI() overlay.isDynamic = EditorGUILayout.Toggle(new GUIContent("Dynamic Texture", "This texture will be updated dynamically at runtime (e.g., Video)"), overlay.isDynamic); #if !UNITY_ANDROID - overlay.isProtectedContent = EditorGUILayout.Toggle(new GUIContent("Is Protected Content", "The texture has copy protection, e.g., HDCP"), overlay.isProtectedContent); + overlay.isProtectedContent = EditorGUILayout.Toggle(new GUIContent("Is Protected Content", "The texture has copy protection, e.g., HDCP"), overlay.isProtectedContent); #endif } - if (overlay.currentOverlayShape == OVROverlay.OverlayShape.Cylinder || overlay.currentOverlayShape == OVROverlay.OverlayShape.Equirect || overlay.currentOverlayShape == OVROverlay.OverlayShape.Quad) { + if (overlay.currentOverlayShape == OVROverlay.OverlayShape.Cylinder || overlay.currentOverlayShape == OVROverlay.OverlayShape.Equirect || overlay.currentOverlayShape == OVROverlay.OverlayShape.Quad || overlay.currentOverlayShape == OVROverlay.OverlayShape.Fisheye) + { EditorGUILayout.Separator(); EditorGUILayout.Space(); @@ -186,16 +187,24 @@ public override void OnInspectorGUI() if (mat != null) { Rect drawRect = EditorGUILayout.GetControlRect(GUILayout.Height(128 + 8)); - mat.SetVector("_SrcRectLeft", new Vector4(Mathf.Max(0.0f, overlay.srcRectLeft.x), Mathf.Max(0.0f, overlay.srcRectLeft.y), Mathf.Min(1.0f - overlay.srcRectLeft.x, overlay.srcRectLeft.width), Mathf.Min(1.0f - overlay.srcRectLeft.y, overlay.srcRectLeft.height))); - mat.SetVector("_SrcRectRight", new Vector4(Mathf.Max(0.0f, overlay.srcRectRight.x), Mathf.Max(0.0f, overlay.srcRectRight.y), Mathf.Min(1.0f - overlay.srcRectRight.x, overlay.srcRectRight.width), Mathf.Min(1.0f - overlay.srcRectRight.y, overlay.srcRectRight.height))); + Vector4 srcLeft = new Vector4(Mathf.Max(0.0f, overlay.srcRectLeft.x), Mathf.Max(0.0f, overlay.srcRectLeft.y), Mathf.Min(1.0f - overlay.srcRectLeft.x, overlay.srcRectLeft.width), Mathf.Min(1.0f - overlay.srcRectLeft.y, overlay.srcRectLeft.height)); + Vector4 srcRight = new Vector4(Mathf.Max(0.0f, overlay.srcRectRight.x), Mathf.Max(0.0f, overlay.srcRectRight.y), Mathf.Min(1.0f - overlay.srcRectRight.x, overlay.srcRectRight.width), Mathf.Min(1.0f - overlay.srcRectRight.y, overlay.srcRectRight.height)); + + if (overlay.invertTextureRects) + { + srcLeft.y = 1 - srcLeft.y - srcLeft.w; + srcRight.y = 1 - srcRight.y - srcRight.w; + } + mat.SetVector("_SrcRectLeft", srcLeft); + mat.SetVector("_SrcRectRight", srcRight); // center our draw rect var drawRectCentered = new Rect(drawRect.x + drawRect.width / 2 - 128 - 4, drawRect.y, 256 + 8, drawRect.height); EditorGUI.DrawPreviewTexture(drawRectCentered, overlay.textures[0] ?? Texture2D.blackTexture, mat); var drawRectInset = new Rect(drawRectCentered.x + 4, drawRectCentered.y + 4, drawRectCentered.width - 8, drawRectCentered.height - 8); - UpdateRectDragging(drawRectInset, drawRectInset, TextureRect.SrcLeft, TextureRect.SrcRight, ref overlay.srcRectLeft, ref overlay.srcRectRight); - CreateCursorRects(drawRectInset, overlay.srcRectLeft); - CreateCursorRects(drawRectInset, overlay.srcRectRight); + UpdateRectDragging(drawRectInset, drawRectInset, TextureRect.SrcLeft, TextureRect.SrcRight, overlay.invertTextureRects, ref overlay.srcRectLeft, ref overlay.srcRectRight); + CreateCursorRects(drawRectInset, overlay.srcRectLeft, overlay.invertTextureRects); + CreateCursorRects(drawRectInset, overlay.srcRectRight, overlay.invertTextureRects); } var labelControlRect = EditorGUILayout.GetControlRect(); @@ -243,10 +252,23 @@ public override void OnInspectorGUI() if (mat != null) { Rect drawRect = EditorGUILayout.GetControlRect(GUILayout.Height(128 + 8)); - mat.SetVector("_SrcRectLeft", new Vector4(Mathf.Max(0.0f, overlay.srcRectLeft.x), Mathf.Max(0.0f, overlay.srcRectLeft.y), Mathf.Min(1.0f - overlay.srcRectLeft.x, overlay.srcRectLeft.width), Mathf.Min(1.0f - overlay.srcRectLeft.y, overlay.srcRectLeft.height))); - mat.SetVector("_SrcRectRight", new Vector4(Mathf.Max(0.0f, overlay.srcRectRight.x), Mathf.Max(0.0f, overlay.srcRectRight.y), Mathf.Min(1.0f - overlay.srcRectRight.x, overlay.srcRectRight.width), Mathf.Min(1.0f - overlay.srcRectRight.y, overlay.srcRectRight.height))); - mat.SetVector("_DestRectLeft", new Vector4(Mathf.Max(0.0f, overlay.destRectLeft.x), Mathf.Max(0.0f, overlay.destRectLeft.y), Mathf.Min(1.0f - overlay.destRectLeft.x, overlay.destRectLeft.width), Mathf.Min(1.0f - overlay.destRectLeft.y, overlay.destRectLeft.height))); - mat.SetVector("_DestRectRight", new Vector4(Mathf.Max(0.0f, overlay.destRectRight.x), Mathf.Max(0.0f, overlay.destRectRight.y), Mathf.Min(1.0f - overlay.destRectRight.x, overlay.destRectRight.width), Mathf.Min(1.0f - overlay.destRectRight.y, overlay.destRectRight.height))); + + Vector4 srcLeft = new Vector4(Mathf.Max(0.0f, overlay.srcRectLeft.x), Mathf.Max(0.0f, overlay.srcRectLeft.y), Mathf.Min(1.0f - overlay.srcRectLeft.x, overlay.srcRectLeft.width), Mathf.Min(1.0f - overlay.srcRectLeft.y, overlay.srcRectLeft.height)); + Vector4 srcRight = new Vector4(Mathf.Max(0.0f, overlay.srcRectRight.x), Mathf.Max(0.0f, overlay.srcRectRight.y), Mathf.Min(1.0f - overlay.srcRectRight.x, overlay.srcRectRight.width), Mathf.Min(1.0f - overlay.srcRectRight.y, overlay.srcRectRight.height)); + Vector4 destLeft = new Vector4(Mathf.Max(0.0f, overlay.destRectLeft.x), Mathf.Max(0.0f, overlay.destRectLeft.y), Mathf.Min(1.0f - overlay.destRectLeft.x, overlay.destRectLeft.width), Mathf.Min(1.0f - overlay.destRectLeft.y, overlay.destRectLeft.height)); + Vector4 destRight = new Vector4(Mathf.Max(0.0f, overlay.destRectRight.x), Mathf.Max(0.0f, overlay.destRectRight.y), Mathf.Min(1.0f - overlay.destRectRight.x, overlay.destRectRight.width), Mathf.Min(1.0f - overlay.destRectRight.y, overlay.destRectRight.height)); + + if (overlay.invertTextureRects) + { + srcLeft.y = 1 - srcLeft.y - srcLeft.w; + srcRight.y = 1 - srcRight.y - srcRight.w; + destLeft.y = 1 - destLeft.y - destLeft.w; + destRight.y = 1 - destRight.y - destRight.w; + } + mat.SetVector("_SrcRectLeft", srcLeft); + mat.SetVector("_SrcRectRight", srcRight); + mat.SetVector("_DestRectLeft", destLeft); + mat.SetVector("_DestRectRight", destRight); mat.SetColor("_BackgroundColor", EditorGUIUtility.isProSkin ? (Color)new Color32(56, 56, 56, 255) : (Color)new Color32(194, 194, 194, 255)); var drawRectCentered = new Rect(drawRect.x + drawRect.width / 2 - 128 - 16 - 4, drawRect.y, 256 + 32 + 8, drawRect.height); @@ -255,10 +277,10 @@ public override void OnInspectorGUI() var drawRectInsetLeft = new Rect(drawRectCentered.x + 4, drawRectCentered.y + 4, drawRectCentered.width / 2 - 20, drawRectCentered.height - 8); var drawRectInsetRight = new Rect(drawRectCentered.x + drawRectCentered.width / 2 + 16, drawRectCentered.y + 4, drawRectCentered.width / 2 - 20, drawRectCentered.height - 8); - UpdateRectDragging(drawRectInsetLeft, drawRectInsetRight, TextureRect.DestLeft, TextureRect.DestRight, ref overlay.destRectLeft, ref overlay.destRectRight); + UpdateRectDragging(drawRectInsetLeft, drawRectInsetRight, TextureRect.DestLeft, TextureRect.DestRight, overlay.invertTextureRects, ref overlay.destRectLeft, ref overlay.destRectRight); - CreateCursorRects(drawRectInsetLeft, overlay.destRectLeft); - CreateCursorRects(drawRectInsetRight, overlay.destRectRight); + CreateCursorRects(drawRectInsetLeft, overlay.destRectLeft, overlay.invertTextureRects); + CreateCursorRects(drawRectInsetRight, overlay.destRectRight, overlay.invertTextureRects); } @@ -293,8 +315,12 @@ public override void OnInspectorGUI() } } } + + overlay.invertTextureRects = EditorGUILayout.Toggle(new GUIContent("Invert Rect Coordinates", "Check this box to use the top left corner of the texture as the origin"), overlay.invertTextureRects); } } + + EditorGUILayout.Separator(); EditorGUILayout.LabelField("Color Scale", EditorStyles.boldLabel); EditorGUILayout.Space(); @@ -306,6 +332,10 @@ public override void OnInspectorGUI() overlay.SetPerLayerColorScaleAndOffset(colorScale, colorOffset); } + EditorGUILayout.Separator(); + EditorGUILayout.LabelField("Preview", EditorStyles.boldLabel); + overlay.previewInEditor = EditorGUILayout.Toggle(new GUIContent("Preview in Editor (Experimental)", "Preview the overlay in the editor using a mesh renderer."), overlay.previewInEditor); + EditorUtility.SetDirty(overlay); } @@ -351,7 +381,11 @@ private StereoType GetStereoType(OVROverlay overlay) { return StereoType.StereoLeftRight; } - else if (IsRect(overlay.srcRectLeft, 0, 0, 1f, 0.5f) && IsRect(overlay.srcRectRight, 0f, 0.5f, 1f, 0.5f)) + else if (overlay.invertTextureRects && IsRect(overlay.srcRectLeft, 0, 0.0f, 1f, 0.5f) && IsRect(overlay.srcRectRight, 0f, 0.5f, 1f, 0.5f)) + { + return StereoType.StereoTopBottom; + } + else if (!overlay.invertTextureRects && IsRect(overlay.srcRectLeft, 0, 0.5f, 1f, 0.5f) && IsRect(overlay.srcRectRight, 0f, 0f, 1f, 0.5f)) { return StereoType.StereoTopBottom; } @@ -379,6 +413,7 @@ private void SetRectsByVideoType(OVROverlay overlay, StereoType stereoType, Disp case DisplayType.Half: destRectLeft = destRectRight = new Rect(0.25f, 0, 0.5f, 1); break; + default: destRectLeft = overlay.destRectLeft; destRectRight = overlay.destRectRight; @@ -393,14 +428,23 @@ private void SetRectsByVideoType(OVROverlay overlay, StereoType stereoType, Disp break; case StereoType.StereoTopBottom: - srcRectLeft = new Rect(0, 0, 1, 0.5f); - srcRectRight = new Rect(0, 0.5f, 1, 0.5f); + if (overlay.invertTextureRects) + { + srcRectLeft = new Rect(0, 0.0f, 1, 0.5f); + srcRectRight = new Rect(0, 0.5f, 1, 0.5f); + } + else + { + srcRectLeft = new Rect(0, 0.5f, 1, 0.5f); + srcRectRight = new Rect(0, 0.0f, 1, 0.5f); + } break; case StereoType.StereoLeftRight: srcRectLeft = new Rect(0, 0, 0.5f, 1); srcRectRight = new Rect(0.5f, 0, 0.5f, 1); break; + default: srcRectLeft = overlay.srcRectLeft; srcRectRight = overlay.srcRectRight; @@ -409,18 +453,30 @@ private void SetRectsByVideoType(OVROverlay overlay, StereoType stereoType, Disp overlay.SetSrcDestRects(srcRectLeft, srcRectRight, destRectLeft, destRectRight); } - private void GetCursorPoints(Rect drawRect, Rect selectRect, out Vector2 leftPos, out Vector2 rightPos, out Vector2 topPos, out Vector2 bottomPos) + private void GetCursorPoints(Rect drawRect, Rect selectRect, bool invertY, out Vector2 leftPos, out Vector2 rightPos, out Vector2 topPos, out Vector2 bottomPos) { - leftPos = new Vector2(drawRect.x + selectRect.x * drawRect.width, drawRect.y + (selectRect.y + selectRect.height / 2) * drawRect.height); - rightPos = new Vector2(drawRect.x + (selectRect.x + selectRect.width) * drawRect.width, drawRect.y + (selectRect.y + selectRect.height / 2) * drawRect.height); - topPos = new Vector2(drawRect.x + (selectRect.x + selectRect.width / 2) * drawRect.width, drawRect.y + (selectRect.y) * drawRect.height); - bottomPos = new Vector2(drawRect.x + (selectRect.x + selectRect.width / 2) * drawRect.width, drawRect.y + (selectRect.y + selectRect.height) * drawRect.height); + if (invertY) + { + selectRect.y = 1 - selectRect.y - selectRect.height; + } + leftPos = new Vector2(drawRect.x + selectRect.x * drawRect.width, drawRect.y + (1 - selectRect.y - selectRect.height / 2) * drawRect.height); + rightPos = new Vector2(drawRect.x + (selectRect.x + selectRect.width) * drawRect.width, drawRect.y + (1 - selectRect.y - selectRect.height / 2) * drawRect.height); + topPos = new Vector2(drawRect.x + (selectRect.x + selectRect.width / 2) * drawRect.width, drawRect.y + (1 - selectRect.y - selectRect.height) * drawRect.height); + bottomPos = new Vector2(drawRect.x + (selectRect.x + selectRect.width / 2) * drawRect.width, drawRect.y + (1 - selectRect.y) * drawRect.height); + + if (invertY) + { + // swap top and bottom + var tmp = topPos; + topPos = bottomPos; + bottomPos = tmp; + } } - private void CreateCursorRects(Rect drawRect, Rect selectRect) + private void CreateCursorRects(Rect drawRect, Rect selectRect, bool invertY) { Vector2 leftPos, rightPos, topPos, bottomPos; - GetCursorPoints(drawRect, selectRect, out leftPos, out rightPos, out topPos, out bottomPos); + GetCursorPoints(drawRect, selectRect, invertY, out leftPos, out rightPos, out topPos, out bottomPos); EditorGUIUtility.AddCursorRect(new Rect(leftPos - 5 * Vector2.one, 10 * Vector2.one), MouseCursor.ResizeHorizontal); EditorGUIUtility.AddCursorRect(new Rect(rightPos - 5 * Vector2.one, 10 * Vector2.one), MouseCursor.ResizeHorizontal); @@ -428,10 +484,10 @@ private void CreateCursorRects(Rect drawRect, Rect selectRect) EditorGUIUtility.AddCursorRect(new Rect(bottomPos - 5 * Vector2.one, 10 * Vector2.one), MouseCursor.ResizeVertical); } - private bool IsOverRectControls(Rect drawRect, Vector2 mousePos, Rect selectRect, ref Side side) + private bool IsOverRectControls(Rect drawRect, Vector2 mousePos, Rect selectRect, bool invertY, ref Side side) { Vector2 leftPos, rightPos, topPos, bottomPos; - GetCursorPoints(drawRect, selectRect, out leftPos, out rightPos, out topPos, out bottomPos); + GetCursorPoints(drawRect, selectRect, invertY, out leftPos, out rightPos, out topPos, out bottomPos); if ((leftPos - mousePos).sqrMagnitude <= 25) { @@ -456,7 +512,7 @@ private bool IsOverRectControls(Rect drawRect, Vector2 mousePos, Rect selectRect return false; } - private void UpdateRectDragging(Rect drawingRectLeft, Rect drawingRectRight, TextureRect rectLeftType, TextureRect rectRightType, ref Rect rectLeft, ref Rect rectRight) + private void UpdateRectDragging(Rect drawingRectLeft, Rect drawingRectRight, TextureRect rectLeftType, TextureRect rectRightType, bool invertY, ref Rect rectLeft, ref Rect rectRight) { if (!Event.current.isMouse || Event.current.button != 0) { @@ -472,13 +528,13 @@ private void UpdateRectDragging(Rect drawingRectLeft, Rect drawingRectRight, Tex Vector2 mousePos = Event.current.mousePosition; if (_DraggingRect == TextureRect.None && Event.current.type == EventType.MouseDown) { - if (IsOverRectControls(drawingRectLeft, mousePos, rectLeft, ref _DraggingSide)) + if (IsOverRectControls(drawingRectLeft, mousePos, rectLeft, invertY, ref _DraggingSide)) { _DraggingRect = rectLeftType; } if (_DraggingRect == TextureRect.None || Event.current.shift) { - if (IsOverRectControls(drawingRectRight, mousePos, rectRight, ref _DraggingSide)) + if (IsOverRectControls(drawingRectRight, mousePos, rectRight, invertY, ref _DraggingSide)) { _DraggingRect = rectRightType; } @@ -487,19 +543,23 @@ private void UpdateRectDragging(Rect drawingRectLeft, Rect drawingRectRight, Tex if (_DraggingRect == rectLeftType) { - SetRectSideValue(drawingRectLeft, mousePos, _DraggingSide, ref rectLeft); + SetRectSideValue(drawingRectLeft, mousePos, _DraggingSide, invertY, ref rectLeft); } if (_DraggingRect == rectRightType) { - SetRectSideValue(drawingRectRight, mousePos, _DraggingSide, ref rectRight); + SetRectSideValue(drawingRectRight, mousePos, _DraggingSide, invertY, ref rectRight); } } - private void SetRectSideValue(Rect drawingRect, Vector2 mousePos, Side side, ref Rect rect) + private void SetRectSideValue(Rect drawingRect, Vector2 mousePos, Side side, bool invertY, ref Rect rect) { // quantize to 1/32 float x = Mathf.Clamp01(Mathf.Round(((mousePos.x - drawingRect.x) / drawingRect.width) * 32) / 32.0f); float y = Mathf.Clamp01(Mathf.Round(((mousePos.y - drawingRect.y) / drawingRect.height) * 32) / 32.0f); + if (!invertY) + { + y = 1 - y; + } switch (side) { @@ -511,12 +571,12 @@ private void SetRectSideValue(Rect drawingRect, Vector2 mousePos, Side side, ref case Side.Right: rect.width = Mathf.Max(0, x - rect.x); break; - case Side.Top: + case Side.Bottom: float yMax = rect.yMax; rect.y = Mathf.Min(y, yMax); rect.height = yMax - rect.y; break; - case Side.Bottom: + case Side.Top: rect.height = Mathf.Max(0, y - rect.y); break; } diff --git a/Assets/Oculus/VR/Scripts/Editor/OVROverlaySrcRectEditor.shader b/Assets/Oculus/VR/Scripts/Editor/OVROverlaySrcRectEditor.shader index 96fc293f..f5de80b5 100644 --- a/Assets/Oculus/VR/Scripts/Editor/OVROverlaySrcRectEditor.shader +++ b/Assets/Oculus/VR/Scripts/Editor/OVROverlaySrcRectEditor.shader @@ -115,7 +115,7 @@ Shader "Unlit/OVROverlaySrcRectEditor" col = _BackgroundColor; } - float2 uv = float2(i.uv.x, 1 - i.uv.y); + float2 uv = i.uv.xy; // now draw clipping objects float left = onLine(uv, _SrcRectLeft) || diff --git a/Assets/Oculus/VR/Scripts/Editor/OVRProjectConfigEditor.cs b/Assets/Oculus/VR/Scripts/Editor/OVRProjectConfigEditor.cs index f6f4059c..faa5f018 100644 --- a/Assets/Oculus/VR/Scripts/Editor/OVRProjectConfigEditor.cs +++ b/Assets/Oculus/VR/Scripts/Editor/OVRProjectConfigEditor.cs @@ -6,74 +6,98 @@ [CustomEditor(typeof(OVRProjectConfig))] public class OVRProjectConfigEditor : Editor { - override public void OnInspectorGUI() - { - OVRProjectConfig projectConfig = (OVRProjectConfig)target; - DrawTargetDeviceInspector(projectConfig); - EditorGUILayout.Space(); - DrawProjectConfigInspector(projectConfig); - } - - public static void DrawTargetDeviceInspector(OVRProjectConfig projectConfig) - { - bool hasModified = false; - - // Target Devices - EditorGUILayout.LabelField("Target Devices", EditorStyles.boldLabel); - - foreach (OVRProjectConfig.DeviceType deviceType in System.Enum.GetValues(typeof(OVRProjectConfig.DeviceType))) - { - bool oldSupportsDevice = projectConfig.targetDeviceTypes.Contains(deviceType); - bool newSupportsDevice = oldSupportsDevice; - OVREditorUtil.SetupBoolField(projectConfig, ObjectNames.NicifyVariableName(deviceType.ToString()), ref newSupportsDevice, ref hasModified); - - if (newSupportsDevice && !oldSupportsDevice) - { - projectConfig.targetDeviceTypes.Add(deviceType); - } - else if (oldSupportsDevice && !newSupportsDevice) - { - projectConfig.targetDeviceTypes.Remove(deviceType); - } - } - - if (hasModified) - { - OVRProjectConfig.CommitProjectConfig(projectConfig); - } - } - - public static void DrawProjectConfigInspector(OVRProjectConfig projectConfig) - { - bool hasModified = false; - EditorGUI.BeginDisabledGroup(!projectConfig.targetDeviceTypes.Contains(OVRProjectConfig.DeviceType.Quest)); - EditorGUILayout.LabelField("Quest Features", EditorStyles.boldLabel); - - // Show overlay support option - OVREditorUtil.SetupBoolField(projectConfig, new GUIContent("Focus Aware", - "If checked, the new overlay will be displayed when the user presses the home button. The game will not be paused, but will now receive InputFocusLost and InputFocusAcquired events."), - ref projectConfig.focusAware, ref hasModified); - - // Color Gamut selection - OVREditorUtil.SetupEnumField(projectConfig, new GUIContent( - "Color Gamut", - "The target color gamut when displayed on the Oculus Quest. Quest default is Rec. 2020"), - ref projectConfig.colorGamut, ref hasModified); - - // Hand Tracking Support - OVREditorUtil.SetupEnumField(projectConfig, "Hand Tracking Support", ref projectConfig.handTrackingSupport, ref hasModified); - - EditorGUI.EndDisabledGroup(); - EditorGUILayout.Space(); - - EditorGUILayout.LabelField("Security", EditorStyles.boldLabel); - OVREditorUtil.SetupBoolField(projectConfig, "Disable Backups", ref projectConfig.disableBackups, ref hasModified); - OVREditorUtil.SetupBoolField(projectConfig, "Enable NSC Configuration", ref projectConfig.enableNSCConfig, ref hasModified); - - // apply any pending changes to project config - if (hasModified) - { - OVRProjectConfig.CommitProjectConfig(projectConfig); - } - } + override public void OnInspectorGUI() + { + OVRProjectConfig projectConfig = (OVRProjectConfig)target; + DrawTargetDeviceInspector(projectConfig); + EditorGUILayout.Space(); + DrawProjectConfigInspector(projectConfig); + } + + public static void DrawTargetDeviceInspector(OVRProjectConfig projectConfig) + { + bool hasModified = false; + + // Target Devices + EditorGUILayout.LabelField("Target Devices", EditorStyles.boldLabel); + + foreach (OVRProjectConfig.DeviceType deviceType in System.Enum.GetValues(typeof(OVRProjectConfig.DeviceType))) + { + bool oldSupportsDevice = projectConfig.targetDeviceTypes.Contains(deviceType); + bool newSupportsDevice = oldSupportsDevice; + OVREditorUtil.SetupBoolField(projectConfig, ObjectNames.NicifyVariableName(deviceType.ToString()), ref newSupportsDevice, ref hasModified); + + if (newSupportsDevice && !oldSupportsDevice) + { + projectConfig.targetDeviceTypes.Add(deviceType); + } + else if (oldSupportsDevice && !newSupportsDevice) + { + projectConfig.targetDeviceTypes.Remove(deviceType); + } + } + + if (hasModified) + { + OVRProjectConfig.CommitProjectConfig(projectConfig); + } + } + + public static void DrawProjectConfigInspector(OVRProjectConfig projectConfig) + { + bool hasModified = false; + EditorGUI.BeginDisabledGroup(!projectConfig.targetDeviceTypes.Contains(OVRProjectConfig.DeviceType.Quest)); + EditorGUILayout.LabelField("Quest Features", EditorStyles.boldLabel); + + // Show overlay support option + OVREditorUtil.SetupBoolField(projectConfig, new GUIContent("Focus Aware", + "If checked, the new overlay will be displayed when the user presses the home button. The game will not be paused, but will now receive InputFocusLost and InputFocusAcquired events."), + ref projectConfig.focusAware, ref hasModified); + + if (!projectConfig.focusAware && projectConfig.requiresSystemKeyboard) + { + projectConfig.requiresSystemKeyboard = false; + hasModified = true; + } + + // Hand Tracking Support + OVREditorUtil.SetupEnumField(projectConfig, "Hand Tracking Support", ref projectConfig.handTrackingSupport, ref hasModified); + + + // System Keyboard Support + OVREditorUtil.SetupBoolField(projectConfig, new GUIContent("Requires System Keyboard", + "*Requires Focus Awareness* If checked, the Oculus System keyboard will be enabled for Unity input fields and any calls to open/close the Unity TouchScreenKeyboard."), + ref projectConfig.requiresSystemKeyboard, ref hasModified); + + if (projectConfig.requiresSystemKeyboard && !projectConfig.focusAware) + { + projectConfig.focusAware = true; + hasModified = true; + } + + EditorGUI.EndDisabledGroup(); + EditorGUILayout.Space(); + + EditorGUI.BeginDisabledGroup(false); + EditorGUILayout.LabelField("Android Build Settings", EditorStyles.boldLabel); + + // Show overlay support option + OVREditorUtil.SetupBoolField(projectConfig, new GUIContent("Skip Unneeded Shaders", + "If checked, prevent building shaders that are not used by default to reduce time spent when building."), + ref projectConfig.skipUnneededShaders, ref hasModified); + + EditorGUI.EndDisabledGroup(); + EditorGUILayout.Space(); + + EditorGUILayout.LabelField("Security", EditorStyles.boldLabel); + OVREditorUtil.SetupInputField(projectConfig, "Custom Security XML Path", ref projectConfig.securityXmlPath, ref hasModified); + OVREditorUtil.SetupBoolField(projectConfig, "Disable Backups", ref projectConfig.disableBackups, ref hasModified); + OVREditorUtil.SetupBoolField(projectConfig, "Enable NSC Configuration", ref projectConfig.enableNSCConfig, ref hasModified); + + // apply any pending changes to project config + if (hasModified) + { + OVRProjectConfig.CommitProjectConfig(projectConfig); + } + } } diff --git a/Assets/Oculus/VR/Scripts/OVRBoundary.cs b/Assets/Oculus/VR/Scripts/OVRBoundary.cs index 9c24c287..eee97b17 100644 --- a/Assets/Oculus/VR/Scripts/OVRBoundary.cs +++ b/Assets/Oculus/VR/Scripts/OVRBoundary.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -14,16 +10,20 @@ You may obtain a copy of the License at permissions and limitations under the License. ************************************************************************************/ +#if USING_XR_MANAGEMENT && USING_XR_SDK_OCULUS +#define USING_XR_SDK +#endif + +#if UNITY_2020_1_OR_NEWER +#define REQUIRES_XR_SDK +#endif using System; using System.Collections.Generic; using UnityEngine; -using VR = UnityEngine.VR; using System.Runtime.InteropServices; -#if UNITY_2017_2_OR_NEWER +#if !USING_XR_SDK && !REQUIRES_XR_SDK using Boundary = UnityEngine.Experimental.XR.Boundary; -#elif UNITY_2017_1_OR_NEWER -using Boundary = UnityEngine.Experimental.VR.Boundary; #endif /// @@ -70,7 +70,7 @@ public bool GetConfigured() return OVRPlugin.GetBoundaryConfigured(); else { -#if UNITY_2017_1_OR_NEWER +#if !USING_XR_SDK && !REQUIRES_XR_SDK return Boundary.configured; #else return false; @@ -129,7 +129,7 @@ public Vector3[] GetGeometry(OVRBoundary.BoundaryType boundaryType) { if (OVRManager.loadedXRDevice != OVRManager.XRDevice.Oculus) { -#if UNITY_2017_1_OR_NEWER +#if !USING_XR_SDK && !REQUIRES_XR_SDK if (Boundary.TryGetGeometry(cachedGeometryList, (boundaryType == BoundaryType.PlayArea) ? Boundary.Type.PlayArea : Boundary.Type.TrackedArea)) { Vector3[] arr = cachedGeometryList.ToArray(); @@ -187,7 +187,7 @@ public Vector3 GetDimensions(OVRBoundary.BoundaryType boundaryType) else { -#if UNITY_2017_1_OR_NEWER +#if !USING_XR_SDK && !REQUIRES_XR_SDK Vector3 dimensions; if (Boundary.TryGetDimensions(out dimensions, (boundaryType == BoundaryType.PlayArea) ? Boundary.Type.PlayArea : Boundary.Type.TrackedArea)) return dimensions; @@ -205,7 +205,7 @@ public bool GetVisible() return OVRPlugin.GetBoundaryVisible(); else { -#if UNITY_2017_1_OR_NEWER +#if !USING_XR_SDK && !REQUIRES_XR_SDK return Boundary.visible; #else return false; @@ -223,7 +223,7 @@ public void SetVisible(bool value) OVRPlugin.SetBoundaryVisible(value); else { -#if UNITY_2017_1_OR_NEWER +#if !USING_XR_SDK && !REQUIRES_XR_SDK Boundary.visible = value; #endif } diff --git a/Assets/Oculus/VR/Scripts/OVRCameraRig.cs b/Assets/Oculus/VR/Scripts/OVRCameraRig.cs index ef84a9b9..820c01e3 100644 --- a/Assets/Oculus/VR/Scripts/OVRCameraRig.cs +++ b/Assets/Oculus/VR/Scripts/OVRCameraRig.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -23,13 +19,7 @@ permissions and limitations under the License. using System.Collections.Generic; using UnityEngine; -#if UNITY_2017_2_OR_NEWER -using InputTracking = UnityEngine.XR.InputTracking; using Node = UnityEngine.XR.XRNode; -#else -using InputTracking = UnityEngine.VR.InputTracking; -using Node = UnityEngine.VR.VRNode; -#endif /// /// A head-tracked stereoscopic virtual reality camera rig. @@ -91,7 +81,8 @@ public class OVRCameraRig : MonoBehaviour public bool usePerEyeCameras = false; /// /// If true, all tracked anchors are updated in FixedUpdate instead of Update to favor physics fidelity. - /// \note: If the fixed update rate doesn't match the rendering framerate (OVRManager.display.appFramerate), the anchors will visibly judder. + /// \note: This will cause visible judder unless you tick exactly once per frame using a custom physics + /// update, because you'll be sampling the position at different times into each frame. /// public bool useFixedUpdateForTracking = false; /// diff --git a/Assets/Oculus/VR/Scripts/OVRCommon.cs b/Assets/Oculus/VR/Scripts/OVRCommon.cs index 84128e00..cd95defa 100644 --- a/Assets/Oculus/VR/Scripts/OVRCommon.cs +++ b/Assets/Oculus/VR/Scripts/OVRCommon.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -18,6 +14,10 @@ permissions and limitations under the License. #define USING_XR_SDK #endif +#if UNITY_2020_1_OR_NEWER +#define REQUIRES_XR_SDK +#endif + using UnityEngine; using System; using System.Collections.Generic; @@ -28,21 +28,10 @@ permissions and limitations under the License. using UnityEngine.Experimental.XR; #endif -#if UNITY_2017_2_OR_NEWER using InputTracking = UnityEngine.XR.InputTracking; using Node = UnityEngine.XR.XRNode; using NodeState = UnityEngine.XR.XRNodeState; using Device = UnityEngine.XR.XRDevice; -#elif UNITY_2017_1_OR_NEWER -using InputTracking = UnityEngine.VR.InputTracking; -using Node = UnityEngine.VR.VRNode; -using NodeState = UnityEngine.VR.VRNodeState; -using Device = UnityEngine.VR.VRDevice; -#else -using InputTracking = UnityEngine.VR.InputTracking; -using Node = UnityEngine.VR.VRNode; -using Device = UnityEngine.VR.VRDevice; -#endif /// /// Miscellaneous extension methods that any script can use. @@ -187,6 +176,16 @@ public static OVRPlugin.Vector3f ToFlippedZVector3f(this Vector3 v) return new OVRPlugin.Vector3f() { x = v.x, y = v.y, z = -v.z }; } + public static Vector4 FromVector4f(this OVRPlugin.Vector4f v) + { + return new Vector4() { x = v.x, y = v.y, z = v.z, w = v.w }; + } + + public static OVRPlugin.Vector4f ToVector4f(this Vector4 v) + { + return new OVRPlugin.Vector4f() { x = v.x, y = v.y, z = v.z, w = v.w }; + } + public static Quaternion FromQuatf(this OVRPlugin.Quatf q) { return new Quaternion() { x = q.x, y = q.y, z = q.z, w = q.w }; @@ -267,9 +266,7 @@ public enum NodeStatePropertyType public static class OVRNodeStateProperties { -#if UNITY_2017_1_OR_NEWER private static List nodeStateList = new List(); -#endif public static bool IsHmdPresent() { @@ -280,6 +277,8 @@ public static bool IsHmdPresent() if (currentDisplaySubsystem != null) return currentDisplaySubsystem.running; //In 2019.3, this should be changed to currentDisplaySubsystem.isConnected, but this is a fine placeholder for now. return false; +#elif REQUIRES_XR_SDK + return false; #else return Device.isPresent; #endif @@ -296,10 +295,8 @@ public static bool GetNodeStatePropertyVector3(Node nodeType, NodeStatePropertyT retVec = OVRPlugin.GetNodeAcceleration(ovrpNodeType, stepType).FromFlippedZVector3f(); return true; } -#if UNITY_2017_1_OR_NEWER if (GetUnityXRNodeStateVector3(nodeType, NodeStatePropertyType.Acceleration, out retVec)) return true; -#endif break; case NodeStatePropertyType.AngularAcceleration: @@ -308,10 +305,8 @@ public static bool GetNodeStatePropertyVector3(Node nodeType, NodeStatePropertyT retVec = OVRPlugin.GetNodeAngularAcceleration(ovrpNodeType, stepType).FromFlippedZVector3f(); return true; } -#if UNITY_2017_2_OR_NEWER if (GetUnityXRNodeStateVector3(nodeType, NodeStatePropertyType.AngularAcceleration, out retVec)) return true; -#endif break; case NodeStatePropertyType.Velocity: @@ -320,10 +315,8 @@ public static bool GetNodeStatePropertyVector3(Node nodeType, NodeStatePropertyT retVec = OVRPlugin.GetNodeVelocity(ovrpNodeType, stepType).FromFlippedZVector3f(); return true; } -#if UNITY_2017_1_OR_NEWER if (GetUnityXRNodeStateVector3(nodeType, NodeStatePropertyType.Velocity, out retVec)) return true; -#endif break; case NodeStatePropertyType.AngularVelocity: @@ -332,10 +325,8 @@ public static bool GetNodeStatePropertyVector3(Node nodeType, NodeStatePropertyT retVec = OVRPlugin.GetNodeAngularVelocity(ovrpNodeType, stepType).FromFlippedZVector3f(); return true; } -#if UNITY_2017_2_OR_NEWER if (GetUnityXRNodeStateVector3(nodeType, NodeStatePropertyType.AngularVelocity, out retVec)) return true; -#endif break; case NodeStatePropertyType.Position: @@ -344,10 +335,8 @@ public static bool GetNodeStatePropertyVector3(Node nodeType, NodeStatePropertyT retVec = OVRPlugin.GetNodePose(ovrpNodeType, stepType).ToOVRPose().position; return true; } -#if UNITY_2017_1_OR_NEWER if (GetUnityXRNodeStateVector3(nodeType, NodeStatePropertyType.Position, out retVec)) return true; -#endif break; } @@ -365,16 +354,13 @@ public static bool GetNodeStatePropertyQuaternion(Node nodeType, NodeStateProper retQuat = OVRPlugin.GetNodePose(ovrpNodeType, stepType).ToOVRPose().orientation; return true; } -#if UNITY_2017_1_OR_NEWER if (GetUnityXRNodeStateQuaternion(nodeType, NodeStatePropertyType.Orientation, out retQuat)) return true; -#endif break; } return false; } -#if UNITY_2017_1_OR_NEWER private static bool ValidateProperty(Node nodeType, ref NodeState requestedNodeState) { InputTracking.GetNodeStates(nodeStateList); @@ -397,9 +383,7 @@ private static bool ValidateProperty(Node nodeType, ref NodeState requestedNodeS return nodeStateFound; } -#endif -#if UNITY_2017_1_OR_NEWER private static bool GetUnityXRNodeStateVector3(Node nodeType, NodeStatePropertyType propertyType, out Vector3 retVec) { retVec = Vector3.zero; @@ -418,12 +402,10 @@ private static bool GetUnityXRNodeStateVector3(Node nodeType, NodeStatePropertyT } else if (propertyType == NodeStatePropertyType.AngularAcceleration) { -#if UNITY_2017_2_OR_NEWER if (requestedNodeState.TryGetAngularAcceleration(out retVec)) { return true; } -#endif } else if (propertyType == NodeStatePropertyType.Velocity) { @@ -434,12 +416,10 @@ private static bool GetUnityXRNodeStateVector3(Node nodeType, NodeStatePropertyT } else if (propertyType == NodeStatePropertyType.AngularVelocity) { -#if UNITY_2017_2_OR_NEWER if (requestedNodeState.TryGetAngularVelocity(out retVec)) { return true; } -#endif } else if (propertyType == NodeStatePropertyType.Position) { @@ -451,9 +431,7 @@ private static bool GetUnityXRNodeStateVector3(Node nodeType, NodeStatePropertyT return false; } -#endif -#if UNITY_2017_1_OR_NEWER private static bool GetUnityXRNodeStateQuaternion(Node nodeType, NodeStatePropertyType propertyType, out Quaternion retQuat) { retQuat = Quaternion.identity; @@ -473,7 +451,6 @@ private static bool GetUnityXRNodeStateQuaternion(Node nodeType, NodeStateProper return false; } -#endif } diff --git a/Assets/Oculus/VR/Scripts/OVRDebugHeadController.cs b/Assets/Oculus/VR/Scripts/OVRDebugHeadController.cs index 0b39f238..1e091ec7 100644 --- a/Assets/Oculus/VR/Scripts/OVRDebugHeadController.cs +++ b/Assets/Oculus/VR/Scripts/OVRDebugHeadController.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -14,9 +10,22 @@ You may obtain a copy of the License at permissions and limitations under the License. ************************************************************************************/ +#if USING_XR_MANAGEMENT && USING_XR_SDK_OCULUS +#define USING_XR_SDK +#endif + +#if UNITY_2020_1_OR_NEWER +#define REQUIRES_XR_SDK +#endif + using UnityEngine; using System.Collections; +#if USING_XR_SDK +using UnityEngine.XR; +using UnityEngine.Experimental.XR; +#endif + /// /// This is a simple behavior that can be attached to a parent of the CameraRig in order /// to provide movement via the gamepad. This is useful when testing an application in @@ -84,11 +93,18 @@ void Update () transform.position += fwdMove + strafeMove; } -#if UNITY_2017_2_OR_NEWER - if ( !UnityEngine.XR.XRDevice.isPresent && ( AllowYawLook || AllowPitchLook ) ) + bool hasDevice = false; +#if USING_XR_SDK + XRDisplaySubsystem currentDisplaySubsystem = OVRManager.GetCurrentDisplaySubsystem(); + if (currentDisplaySubsystem != null) + hasDevice = currentDisplaySubsystem.running; +#elif REQUIRES_XR_SDK + hasDevice = false; #else - if ( !UnityEngine.VR.VRDevice.isPresent && ( AllowYawLook || AllowPitchLook ) ) + hasDevice = UnityEngine.XR.XRDevice.isPresent; #endif + + if ( !hasDevice && ( AllowYawLook || AllowPitchLook ) ) { Quaternion r = transform.rotation; if ( AllowYawLook ) diff --git a/Assets/Oculus/VR/Scripts/OVRDisplay.cs b/Assets/Oculus/VR/Scripts/OVRDisplay.cs index 1481f447..457da506 100644 --- a/Assets/Oculus/VR/Scripts/OVRDisplay.cs +++ b/Assets/Oculus/VR/Scripts/OVRDisplay.cs @@ -1,18 +1,21 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ************************************************************************************/ +#if USING_XR_MANAGEMENT && USING_XR_SDK_OCULUS +#define USING_XR_SDK +#endif + +#if UNITY_2020_1_OR_NEWER +#define REQUIRES_XR_SDK +#endif using System; using System.Runtime.InteropServices; @@ -20,20 +23,14 @@ permissions and limitations under the License. using UnityEngine; using System.Collections.Generic; -#if UNITY_2017_2_OR_NEWER +#if USING_XR_SDK +using UnityEngine.XR; +using UnityEngine.Experimental.XR; +#endif + using InputTracking = UnityEngine.XR.InputTracking; using Node = UnityEngine.XR.XRNode; -using NodeState = UnityEngine.XR.XRNodeState; using Settings = UnityEngine.XR.XRSettings; -#elif UNITY_2017_1_OR_NEWER -using InputTracking = UnityEngine.VR.InputTracking; -using Node = UnityEngine.VR.VRNode; -using NodeState = UnityEngine.VR.VRNodeState; -using Settings = UnityEngine.VR.VRSettings; -#else -using Node = UnityEngine.VR.VRNode; -using Settings = UnityEngine.VR.VRSettings; -#endif /// /// Manages an Oculus Rift head-mounted display (HMD). @@ -103,8 +100,7 @@ public struct LatencyData private EyeRenderDesc[] eyeDescs = new EyeRenderDesc[2]; private bool recenterRequested = false; private int recenterRequestedFrameCount = int.MaxValue; - private OVRPose previousRelativeTrackingSpacePose; - private OVRManager.TrackingOrigin previousTrackingOrigin; + private int localTrackingSpaceRecenterCount = 0; /// /// Creates an instance of OVRDisplay. Called by OVRManager. @@ -112,12 +108,6 @@ public struct LatencyData public OVRDisplay() { UpdateTextures(); - if (OVRPlugin.GetSystemHeadsetType() == OVRPlugin.SystemHeadset.Oculus_Quest) - { - previousTrackingOrigin = OVRManager.instance.trackingOriginType; - OVRManager.TrackingOrigin relativeOrigin = (previousTrackingOrigin != OVRManager.TrackingOrigin.Stage) ? OVRManager.TrackingOrigin.Stage : OVRManager.TrackingOrigin.EyeLevel; - previousRelativeTrackingSpacePose = OVRPlugin.GetTrackingTransformRelativePose((OVRPlugin.TrackingOrigin)relativeOrigin).ToOVRPose(); - } } /// @@ -129,6 +119,7 @@ public void Update() if (recenterRequested && Time.frameCount > recenterRequestedFrameCount) { + Debug.Log("Recenter event detected"); if (RecenteredPose != null) { RecenteredPose(); @@ -136,17 +127,20 @@ public void Update() recenterRequested = false; recenterRequestedFrameCount = int.MaxValue; } - if (OVRPlugin.GetSystemHeadsetType() == OVRPlugin.SystemHeadset.Oculus_Quest) + + if (OVRPlugin.GetSystemHeadsetType() >= OVRPlugin.SystemHeadset.Oculus_Quest && + OVRPlugin.GetSystemHeadsetType() < OVRPlugin.SystemHeadset.Rift_DK1) // all Oculus Standalone headsets { - OVRManager.TrackingOrigin relativeOrigin = (OVRManager.instance.trackingOriginType != OVRManager.TrackingOrigin.Stage) ? OVRManager.TrackingOrigin.Stage : OVRManager.TrackingOrigin.EyeLevel; - OVRPose relativeTrackingSpacePose = OVRPlugin.GetTrackingTransformRelativePose((OVRPlugin.TrackingOrigin)relativeOrigin).ToOVRPose(); - //If the tracking origin type hasn't switched and the relative pose changes, a recenter occurred. - if (previousTrackingOrigin == OVRManager.instance.trackingOriginType && previousRelativeTrackingSpacePose != relativeTrackingSpacePose && RecenteredPose != null) + int recenterCount = OVRPlugin.GetLocalTrackingSpaceRecenterCount(); + if (localTrackingSpaceRecenterCount != recenterCount) { - RecenteredPose(); + Debug.Log("Recenter event detected"); + if (RecenteredPose != null) + { + RecenteredPose(); + } + localTrackingSpaceRecenterCount = recenterCount; } - previousRelativeTrackingSpacePose = relativeTrackingSpacePose; - previousTrackingOrigin = OVRManager.instance.trackingOriginType; } } @@ -160,10 +154,16 @@ public void Update() /// public void RecenterPose() { -#if UNITY_2017_2_OR_NEWER - UnityEngine.XR.InputTracking.Recenter(); -#else - UnityEngine.VR.InputTracking.Recenter(); +#if USING_XR_SDK + XRInputSubsystem currentInputSubsystem = OVRManager.GetCurrentInputSubsystem(); + if (currentInputSubsystem != null) + { + currentInputSubsystem.TryRecenter(); + } +#elif !REQUIRES_XR_SDK +#pragma warning disable 618 + InputTracking.Recenter(); +#pragma warning restore 618 #endif // The current poses are cached for the current frame and won't be updated immediately @@ -248,11 +248,7 @@ public Vector3 angularVelocity /// /// Gets the resolution and field of view for the given eye. /// -#if UNITY_2017_2_OR_NEWER public EyeRenderDesc GetEyeRenderDesc(UnityEngine.XR.XRNode eye) -#else - public EyeRenderDesc GetEyeRenderDesc(UnityEngine.VR.VRNode eye) -#endif { return eyeDescs[(int)eye]; } @@ -339,20 +335,11 @@ public float displayFrequency private void UpdateTextures() { -#if UNITY_2017_2_OR_NEWER - ConfigureEyeDesc(UnityEngine.XR.XRNode.LeftEye); - ConfigureEyeDesc(UnityEngine.XR.XRNode.RightEye); -#else - ConfigureEyeDesc(UnityEngine.VR.VRNode.LeftEye); - ConfigureEyeDesc(UnityEngine.VR.VRNode.RightEye); -#endif + ConfigureEyeDesc(Node.LeftEye); + ConfigureEyeDesc(Node.RightEye); } -#if UNITY_2017_2_OR_NEWER - private void ConfigureEyeDesc(UnityEngine.XR.XRNode eye) -#else - private void ConfigureEyeDesc(UnityEngine.VR.VRNode eye) -#endif + private void ConfigureEyeDesc(Node eye) { if (!OVRManager.isHmdPresent) return; @@ -394,7 +381,5 @@ private void ConfigureEyeDesc(UnityEngine.VR.VRNode eye) eyeDescs[(int)eye].fullFov.UpFov = maxFovY; eyeDescs[(int)eye].fullFov.DownFov = maxFovY; } - - } } diff --git a/Assets/Oculus/VR/Scripts/OVRHaptics.cs b/Assets/Oculus/VR/Scripts/OVRHaptics.cs index f7305daf..2f6368e8 100644 --- a/Assets/Oculus/VR/Scripts/OVRHaptics.cs +++ b/Assets/Oculus/VR/Scripts/OVRHaptics.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/OVRHapticsClip.cs b/Assets/Oculus/VR/Scripts/OVRHapticsClip.cs index 16854d5b..822634e8 100644 --- a/Assets/Oculus/VR/Scripts/OVRHapticsClip.cs +++ b/Assets/Oculus/VR/Scripts/OVRHapticsClip.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/OVRHeadsetEmulator.cs b/Assets/Oculus/VR/Scripts/OVRHeadsetEmulator.cs index 8b87dace..8c450509 100644 --- a/Assets/Oculus/VR/Scripts/OVRHeadsetEmulator.cs +++ b/Assets/Oculus/VR/Scripts/OVRHeadsetEmulator.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -50,6 +46,8 @@ public enum OpMode private bool hasSentEvent = false; private bool emulatorHasInitialized = false; + private CursorLockMode previousCursorLockMode = CursorLockMode.None; + // Use this for initialization void Start () { } @@ -60,11 +58,12 @@ void Update () { { if (OVRManager.OVRManagerinitialized) { - Cursor.lockState = CursorLockMode.None; + previousCursorLockMode = Cursor.lockState; manager = OVRManager.instance; recordedHeadPoseRelativeOffsetTranslation = manager.headPoseRelativeOffsetTranslation; recordedHeadPoseRelativeOffsetRotation = manager.headPoseRelativeOffsetRotation; emulatorHasInitialized = true; + lastFrameEmulationActivated = false; } else return; @@ -72,7 +71,11 @@ void Update () { bool emulationActivated = IsEmulationActivated(); if (emulationActivated) { - Cursor.lockState = CursorLockMode.Locked; + if (!lastFrameEmulationActivated) + { + previousCursorLockMode = Cursor.lockState; + Cursor.lockState = CursorLockMode.Locked; + } if (!lastFrameEmulationActivated && resetHmdPoseOnRelease) { @@ -121,9 +124,10 @@ void Update () { } else { - Cursor.lockState = CursorLockMode.None; if (lastFrameEmulationActivated) { + Cursor.lockState = previousCursorLockMode; + recordedHeadPoseRelativeOffsetTranslation = manager.headPoseRelativeOffsetTranslation; recordedHeadPoseRelativeOffsetRotation = manager.headPoseRelativeOffsetRotation; diff --git a/Assets/Oculus/VR/Scripts/OVRInput.cs b/Assets/Oculus/VR/Scripts/OVRInput.cs index e18f7855..816e5d04 100644 --- a/Assets/Oculus/VR/Scripts/OVRInput.cs +++ b/Assets/Oculus/VR/Scripts/OVRInput.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -20,15 +16,7 @@ permissions and limitations under the License. using System.Runtime.InteropServices; using UnityEngine; -#if UNITY_2017_2_OR_NEWER -using InputTracking = UnityEngine.XR.InputTracking; using Node = UnityEngine.XR.XRNode; -using Settings = UnityEngine.XR.XRSettings; -#else -using InputTracking = UnityEngine.VR.InputTracking; -using Node = UnityEngine.VR.VRNode; -using Settings = UnityEngine.VR.VRSettings; -#endif /// /// Provides a unified input system for Oculus controllers and gamepads. @@ -39,39 +27,39 @@ public static class OVRInput /// Virtual button mappings that allow the same input bindings to work across different controllers. public enum Button { - None = 0, ///< Maps to RawButton: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - One = 0x00000001, ///< Maps to RawButton: [Gamepad, Touch, RTouch: A], [LTouch: X], [LTrackedRemote: LTouchpad], [RTrackedRemote: RTouchpad], [Touchpad, Remote: Start] - Two = 0x00000002, ///< Maps to RawButton: [Gamepad, Touch, RTouch: B], [LTouch: Y], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: Back] - Three = 0x00000004, ///< Maps to RawButton: [Gamepad, Touch: X], [LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Four = 0x00000008, ///< Maps to RawButton: [Gamepad, Touch: Y], [LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Start = 0x00000100, ///< Maps to RawButton: [Gamepad: Start], [Touch, LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: Start], [RTouch: None] - Back = 0x00000200, ///< Maps to RawButton: [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: Back], [Touch, LTouch, RTouch: None] - PrimaryShoulder = 0x00001000, ///< Maps to RawButton: [Gamepad: LShoulder], [Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryIndexTrigger = 0x00002000, ///< Maps to RawButton: [Gamepad, Touch, LTouch, LTrackedRemote: LIndexTrigger], [RTouch, RTrackedRemote: RIndexTrigger], [Touchpad, Remote: None] - PrimaryHandTrigger = 0x00004000, ///< Maps to RawButton: [Touch, LTouch: LHandTrigger], [RTouch: RHandTrigger], [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryThumbstick = 0x00008000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstick], [RTouch: RThumbstick], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryThumbstickUp = 0x00010000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickUp], [RTouch: RThumbstickUp], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryThumbstickDown = 0x00020000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickDown], [RTouch: RThumbstickDown], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryThumbstickLeft = 0x00040000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickLeft], [RTouch: RThumbstickLeft], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryThumbstickRight = 0x00080000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickRight], [RTouch: RThumbstickRight], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryTouchpad = 0x00000400, ///< Maps to RawButton: [LTrackedRemote, Touchpad: LTouchpad], [RTrackedRemote: RTouchpad], [Gamepad, Touch, LTouch, RTouch, Remote: None] - SecondaryShoulder = 0x00100000, ///< Maps to RawButton: [Gamepad: RShoulder], [Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryIndexTrigger = 0x00200000, ///< Maps to RawButton: [Gamepad, Touch: RIndexTrigger], [LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryHandTrigger = 0x00400000, ///< Maps to RawButton: [Touch: RHandTrigger], [Gamepad, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryThumbstick = 0x00800000, ///< Maps to RawButton: [Gamepad, Touch: RThumbstick], [LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryThumbstickUp = 0x01000000, ///< Maps to RawButton: [Gamepad, Touch: RThumbstickUp], [LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryThumbstickDown = 0x02000000, ///< Maps to RawButton: [Gamepad, Touch: RThumbstickDown], [LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryThumbstickLeft = 0x04000000, ///< Maps to RawButton: [Gamepad, Touch: RThumbstickLeft], [LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryThumbstickRight = 0x08000000, ///< Maps to RawButton: [Gamepad, Touch: RThumbstickRight], [LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryTouchpad = 0x00000800, ///< Maps to RawButton: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - DpadUp = 0x00000010, ///< Maps to RawButton: [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: DpadUp], [Touch, LTouch, RTouch: None] - DpadDown = 0x00000020, ///< Maps to RawButton: [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: DpadDown], [Touch, LTouch, RTouch: None] - DpadLeft = 0x00000040, ///< Maps to RawButton: [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: DpadLeft], [Touch, LTouch, RTouch: None] - DpadRight = 0x00000080, ///< Maps to RawButton: [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: DpadRight], [Touch, LTouch, RTouch: None] - Up = 0x10000000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickUp], [RTouch: RThumbstickUp], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: DpadUp] - Down = 0x20000000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickDown], [RTouch: RThumbstickDown], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: DpadDown] - Left = 0x40000000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickLeft], [RTouch: RThumbstickLeft], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: DpadLeft] - Right = unchecked((int)0x80000000),///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickRight], [RTouch: RThumbstickRight], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: DpadRight] + None = 0, ///< Maps to RawButton: [Gamepad, Touch, LTouch, RTouch, Remote: None] + One = 0x00000001, ///< Maps to RawButton: [Gamepad, Touch, RTouch: A], [LTouch: X], [Remote: Start] + Two = 0x00000002, ///< Maps to RawButton: [Gamepad, Touch, RTouch: B], [LTouch: Y], [Remote: Back] + Three = 0x00000004, ///< Maps to RawButton: [Gamepad, Touch: X], [LTouch, RTouch, Remote: None] + Four = 0x00000008, ///< Maps to RawButton: [Gamepad, Touch: Y], [LTouch, RTouch, Remote: None] + Start = 0x00000100, ///< Maps to RawButton: [Gamepad: Start], [Touch, LTouch, Remote: Start], [RTouch: None] + Back = 0x00000200, ///< Maps to RawButton: [Gamepad, Remote: Back], [Touch, LTouch, RTouch: None] + PrimaryShoulder = 0x00001000, ///< Maps to RawButton: [Gamepad: LShoulder], [Touch, LTouch, RTouch, Remote: None] + PrimaryIndexTrigger = 0x00002000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LIndexTrigger], [RTouch: RIndexTrigger], [Remote: None] + PrimaryHandTrigger = 0x00004000, ///< Maps to RawButton: [Touch, LTouch: LHandTrigger], [RTouch: RHandTrigger], [Gamepad, Remote: None] + PrimaryThumbstick = 0x00008000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstick], [RTouch: RThumbstick], [Remote: None] + PrimaryThumbstickUp = 0x00010000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickUp], [RTouch: RThumbstickUp], [Remote: None] + PrimaryThumbstickDown = 0x00020000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickDown], [RTouch: RThumbstickDown], [Remote: None] + PrimaryThumbstickLeft = 0x00040000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickLeft], [RTouch: RThumbstickLeft], [Remote: None] + PrimaryThumbstickRight = 0x00080000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickRight], [RTouch: RThumbstickRight], [Remote: None] + PrimaryTouchpad = 0x00000400, ///< Maps to RawButton: [Gamepad, Touch, LTouch, RTouch, Remote: None] + SecondaryShoulder = 0x00100000, ///< Maps to RawButton: [Gamepad: RShoulder], [Touch, LTouch, RTouch, Remote: None] + SecondaryIndexTrigger = 0x00200000, ///< Maps to RawButton: [Gamepad, Touch: RIndexTrigger], [LTouch, RTouch, Remote: None] + SecondaryHandTrigger = 0x00400000, ///< Maps to RawButton: [Touch: RHandTrigger], [Gamepad, LTouch, RTouch, Remote: None] + SecondaryThumbstick = 0x00800000, ///< Maps to RawButton: [Gamepad, Touch: RThumbstick], [LTouch, RTouch, Remote: None] + SecondaryThumbstickUp = 0x01000000, ///< Maps to RawButton: [Gamepad, Touch: RThumbstickUp], [LTouch, RTouch, Remote: None] + SecondaryThumbstickDown = 0x02000000, ///< Maps to RawButton: [Gamepad, Touch: RThumbstickDown], [LTouch, RTouch, Remote: None] + SecondaryThumbstickLeft = 0x04000000, ///< Maps to RawButton: [Gamepad, Touch: RThumbstickLeft], [LTouch, RTouch, Remote: None] + SecondaryThumbstickRight = 0x08000000, ///< Maps to RawButton: [Gamepad, Touch: RThumbstickRight], [LTouch, RTouch, Remote: None] + SecondaryTouchpad = 0x00000800, ///< Maps to RawButton: [Gamepad, Touch, LTouch, RTouch, Remote: None] + DpadUp = 0x00000010, ///< Maps to RawButton: [Gamepad, Remote: DpadUp], [Touch, LTouch, RTouch: None] + DpadDown = 0x00000020, ///< Maps to RawButton: [Gamepad, Remote: DpadDown], [Touch, LTouch, RTouch: None] + DpadLeft = 0x00000040, ///< Maps to RawButton: [Gamepad, Remote: DpadLeft], [Touch, LTouch, RTouch: None] + DpadRight = 0x00000080, ///< Maps to RawButton: [Gamepad, Remote: DpadRight], [Touch, LTouch, RTouch: None] + Up = 0x10000000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickUp], [RTouch: RThumbstickUp], [Remote: DpadUp] + Down = 0x20000000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickDown], [RTouch: RThumbstickDown], [Remote: DpadDown] + Left = 0x40000000, ///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickLeft], [RTouch: RThumbstickLeft], [Remote: DpadLeft] + Right = unchecked((int)0x80000000),///< Maps to RawButton: [Gamepad, Touch, LTouch: LThumbstickRight], [RTouch: RThumbstickRight], [Remote: DpadRight] Any = ~None, ///< Maps to RawButton: [Gamepad, Touch, LTouch, RTouch: Any] } @@ -79,76 +67,76 @@ public enum Button /// Raw button mappings that can be used to directly query the state of a controller. public enum RawButton { - None = 0, ///< Maps to Physical Button: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - A = 0x00000001, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: A], [LTrackedRemote: LIndexTrigger], [RTrackedRemote: RIndexTrigger], [LTouch, Touchpad, Remote: None] - B = 0x00000002, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: B], [LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - X = 0x00000100, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: X], [RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Y = 0x00000200, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: Y], [RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Start = 0x00100000, ///< Maps to Physical Button: [Gamepad, Touch, LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: Start], [RTouch: None] - Back = 0x00200000, ///< Maps to Physical Button: [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: Back], [Touch, LTouch, RTouch: None] - LShoulder = 0x00000800, ///< Maps to Physical Button: [Gamepad: LShoulder], [Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LIndexTrigger = 0x10000000, ///< Maps to Physical Button: [Gamepad, Touch, LTouch, LTrackedRemote: LIndexTrigger], [RTouch, RTrackedRemote, Touchpad, Remote: None] - LHandTrigger = 0x20000000, ///< Maps to Physical Button: [Touch, LTouch: LHandTrigger], [Gamepad, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LThumbstick = 0x00000400, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: LThumbstick], [RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LThumbstickUp = 0x00000010, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: LThumbstickUp], [RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LThumbstickDown = 0x00000020, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: LThumbstickDown], [RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LThumbstickLeft = 0x00000040, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: LThumbstickLeft], [RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LThumbstickRight = 0x00000080, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: LThumbstickRight], [RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LTouchpad = 0x40000000, ///< Maps to Physical Button: [LTrackedRemote: LTouchpad], [Gamepad, Touch, LTouch, RTouch, RTrackedRemote, Touchpad, Remote: None] - RShoulder = 0x00000008, ///< Maps to Physical Button: [Gamepad: RShoulder], [Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RIndexTrigger = 0x04000000, ///< Maps to Physical Button: [Gamepad, Touch, RTouch, RTrackedRemote: RIndexTrigger], [LTouch, LTrackedRemote, Touchpad, Remote: None] - RHandTrigger = 0x08000000, ///< Maps to Physical Button: [Touch, RTouch: RHandTrigger], [Gamepad, LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RThumbstick = 0x00000004, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: RThumbstick], [LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RThumbstickUp = 0x00001000, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: RThumbstickUp], [LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RThumbstickDown = 0x00002000, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: RThumbstickDown], [LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RThumbstickLeft = 0x00004000, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: RThumbstickLeft], [LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RThumbstickRight = 0x00008000, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: RThumbstickRight], [LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RTouchpad = unchecked((int)0x80000000),///< Maps to Physical Button: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - DpadUp = 0x00010000, ///< Maps to Physical Button: [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: DpadUp], [Touch, LTouch, RTouch: None] - DpadDown = 0x00020000, ///< Maps to Physical Button: [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: DpadDown], [Touch, LTouch, RTouch: None] - DpadLeft = 0x00040000, ///< Maps to Physical Button: [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: DpadLeft], [Touch, LTouch, RTouch: None] - DpadRight = 0x00080000, ///< Maps to Physical Button: [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: DpadRight], [Touch, LTouch, RTouch: None] - Any = ~None, ///< Maps to Physical Button: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: Any] + None = 0, ///< Maps to Physical Button: [Gamepad, Touch, LTouch, RTouch, Remote: None] + A = 0x00000001, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: A], [LTouch, Remote: None] + B = 0x00000002, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: B], [LTouch, Remote: None] + X = 0x00000100, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: X], [RTouch, Remote: None] + Y = 0x00000200, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: Y], [RTouch, Remote: None] + Start = 0x00100000, ///< Maps to Physical Button: [Gamepad, Touch, LTouch, Remote: Start], [RTouch: None] + Back = 0x00200000, ///< Maps to Physical Button: [Gamepad, Remote: Back], [Touch, LTouch, RTouch: None] + LShoulder = 0x00000800, ///< Maps to Physical Button: [Gamepad: LShoulder], [Touch, LTouch, RTouch, Remote: None] + LIndexTrigger = 0x10000000, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: LIndexTrigger], [RTouch, Remote: None] + LHandTrigger = 0x20000000, ///< Maps to Physical Button: [Touch, LTouch: LHandTrigger], [Gamepad, RTouch, Remote: None] + LThumbstick = 0x00000400, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: LThumbstick], [RTouch, Remote: None] + LThumbstickUp = 0x00000010, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: LThumbstickUp], [RTouch, Remote: None] + LThumbstickDown = 0x00000020, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: LThumbstickDown], [RTouch, Remote: None] + LThumbstickLeft = 0x00000040, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: LThumbstickLeft], [RTouch, Remote: None] + LThumbstickRight = 0x00000080, ///< Maps to Physical Button: [Gamepad, Touch, LTouch: LThumbstickRight], [RTouch, Remote: None] + LTouchpad = 0x40000000, ///< Maps to Physical Button: [Gamepad, Touch, LTouch, RTouch, Remote: None] + RShoulder = 0x00000008, ///< Maps to Physical Button: [Gamepad: RShoulder], [Touch, LTouch, RTouch, Remote: None] + RIndexTrigger = 0x04000000, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: RIndexTrigger], [LTouch, Remote: None] + RHandTrigger = 0x08000000, ///< Maps to Physical Button: [Touch, RTouch: RHandTrigger], [Gamepad, LTouch, Remote: None] + RThumbstick = 0x00000004, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: RThumbstick], [LTouch, Remote: None] + RThumbstickUp = 0x00001000, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: RThumbstickUp], [LTouch, Remote: None] + RThumbstickDown = 0x00002000, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: RThumbstickDown], [LTouch, Remote: None] + RThumbstickLeft = 0x00004000, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: RThumbstickLeft], [LTouch, Remote: None] + RThumbstickRight = 0x00008000, ///< Maps to Physical Button: [Gamepad, Touch, RTouch: RThumbstickRight], [LTouch, Remote: None] + RTouchpad = unchecked((int)0x80000000),///< Maps to Physical Button: [Gamepad, Touch, LTouch, RTouch, Remote: None] + DpadUp = 0x00010000, ///< Maps to Physical Button: [Gamepad, Remote: DpadUp], [Touch, LTouch, RTouch: None] + DpadDown = 0x00020000, ///< Maps to Physical Button: [Gamepad, Remote: DpadDown], [Touch, LTouch, RTouch: None] + DpadLeft = 0x00040000, ///< Maps to Physical Button: [Gamepad, Remote: DpadLeft], [Touch, LTouch, RTouch: None] + DpadRight = 0x00080000, ///< Maps to Physical Button: [Gamepad, Remote: DpadRight], [Touch, LTouch, RTouch: None] + Any = ~None, ///< Maps to Physical Button: [Gamepad, Touch, LTouch, RTouch, Remote: Any] } [Flags] /// Virtual capacitive touch mappings that allow the same input bindings to work across different controllers with capacitive touch support. public enum Touch { - None = 0, ///< Maps to RawTouch: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - One = Button.One, ///< Maps to RawTouch: [Touch, RTouch: A], [LTouch: X], [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Two = Button.Two, ///< Maps to RawTouch: [Touch, RTouch: B], [LTouch: Y], [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Three = Button.Three, ///< Maps to RawTouch: [Touch: X], [Gamepad, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Four = Button.Four, ///< Maps to RawTouch: [Touch: Y], [Gamepad, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryIndexTrigger = Button.PrimaryIndexTrigger, ///< Maps to RawTouch: [Touch, LTouch: LIndexTrigger], [RTouch: RIndexTrigger], [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryThumbstick = Button.PrimaryThumbstick, ///< Maps to RawTouch: [Touch, LTouch: LThumbstick], [RTouch: RThumbstick], [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryThumbRest = 0x00001000, ///< Maps to RawTouch: [Touch, LTouch: LThumbRest], [RTouch: RThumbRest], [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryTouchpad = Button.PrimaryTouchpad, ///< Maps to RawTouch: [LTrackedRemote, Touchpad: LTouchpad], [RTrackedRemote: RTouchpad], [Gamepad, Touch, LTouch, RTouch, Remote: None] - SecondaryIndexTrigger = Button.SecondaryIndexTrigger, ///< Maps to RawTouch: [Touch: RIndexTrigger], [Gamepad, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryThumbstick = Button.SecondaryThumbstick, ///< Maps to RawTouch: [Touch: RThumbstick], [Gamepad, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryThumbRest = 0x00100000, ///< Maps to RawTouch: [Touch: RThumbRest], [Gamepad, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryTouchpad = Button.SecondaryTouchpad, ///< Maps to RawTouch: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Any = ~None, ///< Maps to RawTouch: [Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad: Any], [Gamepad, Remote: None] + None = 0, ///< Maps to RawTouch: [Gamepad, Touch, LTouch, RTouch, Remote: None] + One = Button.One, ///< Maps to RawTouch: [Touch, RTouch: A], [LTouch: X], [Gamepad, Remote: None] + Two = Button.Two, ///< Maps to RawTouch: [Touch, RTouch: B], [LTouch: Y], [Gamepad, Remote: None] + Three = Button.Three, ///< Maps to RawTouch: [Touch: X], [Gamepad, LTouch, RTouch, Remote: None] + Four = Button.Four, ///< Maps to RawTouch: [Touch: Y], [Gamepad, LTouch, RTouch, Remote: None] + PrimaryIndexTrigger = Button.PrimaryIndexTrigger, ///< Maps to RawTouch: [Touch, LTouch: LIndexTrigger], [RTouch: RIndexTrigger], [Gamepad, Remote: None] + PrimaryThumbstick = Button.PrimaryThumbstick, ///< Maps to RawTouch: [Touch, LTouch: LThumbstick], [RTouch: RThumbstick], [Gamepad, Remote: None] + PrimaryThumbRest = 0x00001000, ///< Maps to RawTouch: [Touch, LTouch: LThumbRest], [RTouch: RThumbRest], [Gamepad, Remote: None] + PrimaryTouchpad = Button.PrimaryTouchpad, ///< Maps to RawTouch: [Gamepad, Touch, LTouch, RTouch, Remote: None] + SecondaryIndexTrigger = Button.SecondaryIndexTrigger, ///< Maps to RawTouch: [Touch: RIndexTrigger], [Gamepad, LTouch, RTouch, Remote: None] + SecondaryThumbstick = Button.SecondaryThumbstick, ///< Maps to RawTouch: [Touch: RThumbstick], [Gamepad, LTouch, RTouch, Remote: None] + SecondaryThumbRest = 0x00100000, ///< Maps to RawTouch: [Touch: RThumbRest], [Gamepad, LTouch, RTouch, Remote: None] + SecondaryTouchpad = Button.SecondaryTouchpad, ///< Maps to RawTouch: [Gamepad, Touch, LTouch, RTouch, Remote: None] + Any = ~None, ///< Maps to RawTouch: [Touch, LTouch, RTouch: Any], [Gamepad, Remote: None] } [Flags] /// Raw capacitive touch mappings that can be used to directly query the state of a controller. public enum RawTouch { - None = 0, ///< Maps to Physical Touch: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - A = RawButton.A, ///< Maps to Physical Touch: [Touch, RTouch: A], [Gamepad, LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - B = RawButton.B, ///< Maps to Physical Touch: [Touch, RTouch: B], [Gamepad, LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - X = RawButton.X, ///< Maps to Physical Touch: [Touch, LTouch: X], [Gamepad, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Y = RawButton.Y, ///< Maps to Physical Touch: [Touch, LTouch: Y], [Gamepad, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LIndexTrigger = 0x00001000, ///< Maps to Physical Touch: [Touch, LTouch: LIndexTrigger], [Gamepad, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LThumbstick = RawButton.LThumbstick, ///< Maps to Physical Touch: [Touch, LTouch: LThumbstick], [Gamepad, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LThumbRest = 0x00000800, ///< Maps to Physical Touch: [Touch, LTouch: LThumbRest], [Gamepad, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LTouchpad = RawButton.LTouchpad, ///< Maps to Physical Touch: [LTrackedRemote, Touchpad: LTouchpad], [Gamepad, Touch, LTouch, RTouch, RTrackedRemote, Remote: None] - RIndexTrigger = 0x00000010, ///< Maps to Physical Touch: [Touch, RTouch: RIndexTrigger], [Gamepad, LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RThumbstick = RawButton.RThumbstick, ///< Maps to Physical Touch: [Touch, RTouch: RThumbstick], [Gamepad, LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RThumbRest = 0x00000008, ///< Maps to Physical Touch: [Touch, RTouch: RThumbRest], [Gamepad, LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RTouchpad = RawButton.RTouchpad, ///< Maps to Physical Touch: [RTrackedRemote: RTouchpad], [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, Touchpad, Remote: None] - Any = ~None, ///< Maps to Physical Touch: [Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad: Any], [Gamepad, Remote: None] + None = 0, ///< Maps to Physical Touch: [Gamepad, Touch, LTouch, RTouch, Remote: None] + A = RawButton.A, ///< Maps to Physical Touch: [Touch, RTouch: A], [Gamepad, LTouch, Remote: None] + B = RawButton.B, ///< Maps to Physical Touch: [Touch, RTouch: B], [Gamepad, LTouch, Remote: None] + X = RawButton.X, ///< Maps to Physical Touch: [Touch, LTouch: X], [Gamepad, RTouch, Remote: None] + Y = RawButton.Y, ///< Maps to Physical Touch: [Touch, LTouch: Y], [Gamepad, RTouch, Remote: None] + LIndexTrigger = 0x00001000, ///< Maps to Physical Touch: [Touch, LTouch: LIndexTrigger], [Gamepad, RTouch, Remote: None] + LThumbstick = RawButton.LThumbstick, ///< Maps to Physical Touch: [Touch, LTouch: LThumbstick], [Gamepad, RTouch, Remote: None] + LThumbRest = 0x00000800, ///< Maps to Physical Touch: [Touch, LTouch: LThumbRest], [Gamepad, RTouch, Remote: None] + LTouchpad = RawButton.LTouchpad, ///< Maps to Physical Touch: [Gamepad, Touch, LTouch, RTouch, Remote: None] + RIndexTrigger = 0x00000010, ///< Maps to Physical Touch: [Touch, RTouch: RIndexTrigger], [Gamepad, LTouch, Remote: None] + RThumbstick = RawButton.RThumbstick, ///< Maps to Physical Touch: [Touch, RTouch: RThumbstick], [Gamepad, LTouch, Remote: None] + RThumbRest = 0x00000008, ///< Maps to Physical Touch: [Touch, RTouch: RThumbRest], [Gamepad, LTouch, Remote: None] + RTouchpad = RawButton.RTouchpad, ///< Maps to Physical Touch: [Gamepad, Touch, LTouch, RTouch, Remote: None] + Any = ~None, ///< Maps to Physical Touch: [Touch, LTouch, RTouch: Any], [Gamepad, Remote: None] } [Flags] @@ -156,72 +144,72 @@ public enum RawTouch /// A near touch uses the capacitive touch sensors of a controller to detect approximate finger proximity prior to a full touch being reported. public enum NearTouch { - None = 0, ///< Maps to RawNearTouch: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryIndexTrigger = 0x00000001, ///< Maps to RawNearTouch: [Touch, LTouch: LIndexTrigger], [RTouch: RIndexTrigger], [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryThumbButtons = 0x00000002, ///< Maps to RawNearTouch: [Touch, LTouch: LThumbButtons], [RTouch: RThumbButtons], [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryIndexTrigger = 0x00000004, ///< Maps to RawNearTouch: [Touch: RIndexTrigger], [Gamepad, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryThumbButtons = 0x00000008, ///< Maps to RawNearTouch: [Touch: RThumbButtons], [Gamepad, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Any = ~None, ///< Maps to RawNearTouch: [Touch, LTouch, RTouch: Any], [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] + None = 0, ///< Maps to RawNearTouch: [Gamepad, Touch, LTouch, RTouch, Remote: None] + PrimaryIndexTrigger = 0x00000001, ///< Maps to RawNearTouch: [Touch, LTouch: LIndexTrigger], [RTouch: RIndexTrigger], [Gamepad, Remote: None] + PrimaryThumbButtons = 0x00000002, ///< Maps to RawNearTouch: [Touch, LTouch: LThumbButtons], [RTouch: RThumbButtons], [Gamepad, Remote: None] + SecondaryIndexTrigger = 0x00000004, ///< Maps to RawNearTouch: [Touch: RIndexTrigger], [Gamepad, LTouch, RTouch, Remote: None] + SecondaryThumbButtons = 0x00000008, ///< Maps to RawNearTouch: [Touch: RThumbButtons], [Gamepad, LTouch, RTouch, Remote: None] + Any = ~None, ///< Maps to RawNearTouch: [Touch, LTouch, RTouch: Any], [Gamepad, Remote: None] } [Flags] /// Raw near touch mappings that can be used to directly query the state of a controller. public enum RawNearTouch { - None = 0, ///< Maps to Physical NearTouch: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LIndexTrigger = 0x00000001, ///< Maps to Physical NearTouch: [Touch, LTouch: Implies finger is in close proximity to LIndexTrigger.], [Gamepad, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LThumbButtons = 0x00000002, ///< Maps to Physical NearTouch: [Touch, LTouch: Implies thumb is in close proximity to LThumbstick OR X/Y buttons.], [Gamepad, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RIndexTrigger = 0x00000004, ///< Maps to Physical NearTouch: [Touch, RTouch: Implies finger is in close proximity to RIndexTrigger.], [Gamepad, LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RThumbButtons = 0x00000008, ///< Maps to Physical NearTouch: [Touch, RTouch: Implies thumb is in close proximity to RThumbstick OR A/B buttons.], [Gamepad, LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Any = ~None, ///< Maps to Physical NearTouch: [Touch, LTouch, RTouch: Any], [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] + None = 0, ///< Maps to Physical NearTouch: [Gamepad, Touch, LTouch, RTouch, Remote: None] + LIndexTrigger = 0x00000001, ///< Maps to Physical NearTouch: [Touch, LTouch: Implies finger is in close proximity to LIndexTrigger.], [Gamepad, RTouch, Remote: None] + LThumbButtons = 0x00000002, ///< Maps to Physical NearTouch: [Touch, LTouch: Implies thumb is in close proximity to LThumbstick OR X/Y buttons.], [Gamepad, RTouch, Remote: None] + RIndexTrigger = 0x00000004, ///< Maps to Physical NearTouch: [Touch, RTouch: Implies finger is in close proximity to RIndexTrigger.], [Gamepad, LTouch, Remote: None] + RThumbButtons = 0x00000008, ///< Maps to Physical NearTouch: [Touch, RTouch: Implies thumb is in close proximity to RThumbstick OR A/B buttons.], [Gamepad, LTouch, Remote: None] + Any = ~None, ///< Maps to Physical NearTouch: [Touch, LTouch, RTouch: Any], [Gamepad, Remote: None] } [Flags] /// Virtual 1-dimensional axis (float) mappings that allow the same input bindings to work across different controllers. public enum Axis1D { - None = 0, ///< Maps to RawAxis1D: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryIndexTrigger = 0x01, ///< Maps to RawAxis1D: [Gamepad, Touch, LTouch: LIndexTrigger], [RTouch: RIndexTrigger], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryHandTrigger = 0x04, ///< Maps to RawAxis1D: [Touch, LTouch: LHandTrigger], [RTouch: RHandTrigger], [Gamepad, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryIndexTrigger = 0x02, ///< Maps to RawAxis1D: [Gamepad, Touch: RIndexTrigger], [LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryHandTrigger = 0x08, ///< Maps to RawAxis1D: [Touch: RHandTrigger], [Gamepad, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Any = ~None, ///< Maps to RawAxis1D: [Gamepad, Touch, LTouch, RTouch: Any], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] + None = 0, ///< Maps to RawAxis1D: [Gamepad, Touch, LTouch, RTouch, Remote: None] + PrimaryIndexTrigger = 0x01, ///< Maps to RawAxis1D: [Gamepad, Touch, LTouch: LIndexTrigger], [RTouch: RIndexTrigger], [Remote: None] + PrimaryHandTrigger = 0x04, ///< Maps to RawAxis1D: [Touch, LTouch: LHandTrigger], [RTouch: RHandTrigger], [Gamepad, Remote: None] + SecondaryIndexTrigger = 0x02, ///< Maps to RawAxis1D: [Gamepad, Touch: RIndexTrigger], [LTouch, RTouch, Remote: None] + SecondaryHandTrigger = 0x08, ///< Maps to RawAxis1D: [Touch: RHandTrigger], [Gamepad, LTouch, RTouch, Remote: None] + Any = ~None, ///< Maps to RawAxis1D: [Gamepad, Touch, LTouch, RTouch: Any], [Remote: None] } [Flags] /// Raw 1-dimensional axis (float) mappings that can be used to directly query the state of a controller. public enum RawAxis1D { - None = 0, ///< Maps to Physical Axis1D: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LIndexTrigger = 0x01, ///< Maps to Physical Axis1D: [Gamepad, Touch, LTouch: LIndexTrigger], [RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LHandTrigger = 0x04, ///< Maps to Physical Axis1D: [Touch, LTouch: LHandTrigger], [Gamepad, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RIndexTrigger = 0x02, ///< Maps to Physical Axis1D: [Gamepad, Touch, RTouch: RIndexTrigger], [LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RHandTrigger = 0x08, ///< Maps to Physical Axis1D: [Touch, RTouch: RHandTrigger], [Gamepad, LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Any = ~None, ///< Maps to Physical Axis1D: [Gamepad, Touch, LTouch, RTouch: Any], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] + None = 0, ///< Maps to Physical Axis1D: [Gamepad, Touch, LTouch, RTouch, Remote: None] + LIndexTrigger = 0x01, ///< Maps to Physical Axis1D: [Gamepad, Touch, LTouch: LIndexTrigger], [RTouch, Remote: None] + LHandTrigger = 0x04, ///< Maps to Physical Axis1D: [Touch, LTouch: LHandTrigger], [Gamepad, RTouch, Remote: None] + RIndexTrigger = 0x02, ///< Maps to Physical Axis1D: [Gamepad, Touch, RTouch: RIndexTrigger], [LTouch, Remote: None] + RHandTrigger = 0x08, ///< Maps to Physical Axis1D: [Touch, RTouch: RHandTrigger], [Gamepad, LTouch, Remote: None] + Any = ~None, ///< Maps to Physical Axis1D: [Gamepad, Touch, LTouch, RTouch: Any], [Remote: None] } [Flags] /// Virtual 2-dimensional axis (Vector2) mappings that allow the same input bindings to work across different controllers. public enum Axis2D { - None = 0, ///< Maps to RawAxis2D: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryThumbstick = 0x01, ///< Maps to RawAxis2D: [Gamepad, Touch, LTouch: LThumbstick], [RTouch: RThumbstick], [LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - PrimaryTouchpad = 0x04, ///< Maps to RawAxis2D: [LTrackedRemote, Touchpad: LTouchpad], RTrackedRemote: RTouchpad], [Gamepad, Touch, LTouch, RTouch, Remote: None] - SecondaryThumbstick = 0x02, ///< Maps to RawAxis2D: [Gamepad, Touch: RThumbstick], [LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - SecondaryTouchpad = 0x08, ///< Maps to RawAxis2D: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - Any = ~None, ///< Maps to RawAxis2D: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad: Any], [Remote: None] + None = 0, ///< Maps to RawAxis2D: [Gamepad, Touch, LTouch, RTouch, Remote: None] + PrimaryThumbstick = 0x01, ///< Maps to RawAxis2D: [Gamepad, Touch, LTouch: LThumbstick], [RTouch: RThumbstick], [Remote: None] + PrimaryTouchpad = 0x04, ///< Maps to RawAxis2D: [Gamepad, Touch, LTouch, RTouch, Remote: None] + SecondaryThumbstick = 0x02, ///< Maps to RawAxis2D: [Gamepad, Touch: RThumbstick], [LTouch, RTouch, Remote: None] + SecondaryTouchpad = 0x08, ///< Maps to RawAxis2D: [Gamepad, Touch, LTouch, RTouch, Remote: None] + Any = ~None, ///< Maps to RawAxis2D: [Gamepad, Touch, LTouch, RTouch: Any], [Remote: None] } [Flags] /// Raw 2-dimensional axis (Vector2) mappings that can be used to directly query the state of a controller. public enum RawAxis2D { - None = 0, ///< Maps to Physical Axis2D: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LThumbstick = 0x01, ///< Maps to Physical Axis2D: [Gamepad, Touch, LTouch: LThumbstick], [RTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - LTouchpad = 0x04, ///< Maps to Physical Axis2D: [LTrackedRemote, Touchpad: LTouchpad], [Gamepad, Touch, LTouch, RTouch, RTrackedRemote, Remote: None] - RThumbstick = 0x02, ///< Maps to Physical Axis2D: [Gamepad, Touch, RTouch: RThumbstick], [LTouch, LTrackedRemote, RTrackedRemote, Touchpad, Remote: None] - RTouchpad = 0x08, ///< Maps to Physical Axis2D: [RTrackedRemote: RTouchpad], [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, Touchpad, Remote: None] - Any = ~None, ///< Maps to Physical Axis2D: [Gamepad, Touch, LTouch, RTouch, LTrackedRemote, RTrackedRemote: Any], [Touchpad, Remote: None] + None = 0, ///< Maps to Physical Axis2D: [Gamepad, Touch, LTouch, RTouch, Remote: None] + LThumbstick = 0x01, ///< Maps to Physical Axis2D: [Gamepad, Touch, LTouch: LThumbstick], [RTouch, Remote: None] + LTouchpad = 0x04, ///< Maps to Physical Axis2D: [Gamepad, Touch, LTouch, RTouch, Remote: None] + RThumbstick = 0x02, ///< Maps to Physical Axis2D: [Gamepad, Touch, RTouch: RThumbstick], [LTouch, Remote: None] + RTouchpad = 0x08, ///< Maps to Physical Axis2D: [Gamepad, Touch, LTouch, RTouch, Remote: None] + Any = ~None, ///< Maps to Physical Axis2D: [Gamepad, Touch, LTouch, RTouch: Any], [Remote: None] } [Flags] @@ -247,9 +235,6 @@ public enum Controller Hands = OVRPlugin.Controller.Hands, ///< Left Hand provided by hand-tracking. LHand = OVRPlugin.Controller.LHand, ///< Left Hand provided by hand-tracking. RHand = OVRPlugin.Controller.RHand, ///< Right Hand provided by hand-tracking. - Touchpad = OVRPlugin.Controller.Touchpad, ///< GearVR touchpad on Android. - LTrackedRemote = OVRPlugin.Controller.LTrackedRemote, ///< Left GearVR tracked remote on Android. - RTrackedRemote = OVRPlugin.Controller.RTrackedRemote, ///< Right GearVR tracked remote on Android. Active = OVRPlugin.Controller.Active, ///< Default controller. Represents the controller that most recently registered a button press from the user. All = OVRPlugin.Controller.All, ///< Represents the logical OR of all controllers. } @@ -300,9 +285,6 @@ static OVRInput() { #if UNITY_ANDROID && !UNITY_EDITOR new OVRControllerGamepadAndroid(), - new OVRControllerTouchpad(), - new OVRControllerLTrackedRemote(), - new OVRControllerRTrackedRemote(), new OVRControllerTouch(), new OVRControllerLTouch(), new OVRControllerRTouch(), @@ -383,19 +365,6 @@ public static void Update() activeControllerType = Controller.None; } - // Promote TrackedRemote to Active if one is connected and no other controller is active - if (activeControllerType == Controller.None) - { - if ((connectedControllerTypes & Controller.RTrackedRemote) != 0) - { - activeControllerType = Controller.RTrackedRemote; - } - else if ((connectedControllerTypes & Controller.LTrackedRemote) != 0) - { - activeControllerType = Controller.LTrackedRemote; - } - } - if ( OVRManager.loadedXRDevice == OVRManager.XRDevice.Oculus && pluginSupportsActiveController) { Controller localActiveController = activeControllerType; @@ -421,12 +390,15 @@ public static void Update() /// public static void FixedUpdate() { - stepType = OVRPlugin.Step.Physics; + if (OVRPlugin.nativeXrApi != OVRPlugin.XrApi.OpenXR) + { + stepType = OVRPlugin.Step.Physics; - double predictionSeconds = (double)fixedUpdateCount * Time.fixedDeltaTime / Mathf.Max(Time.timeScale, 1e-6f); - fixedUpdateCount++; + double predictionSeconds = (double)fixedUpdateCount * Time.fixedDeltaTime / Mathf.Max(Time.timeScale, 1e-6f); + fixedUpdateCount++; - OVRPlugin.UpdateNodePhysicsPoses(0, predictionSeconds); + OVRPlugin.UpdateNodePhysicsPoses(0, predictionSeconds); + } } /// @@ -438,11 +410,9 @@ public static bool GetControllerOrientationTracked(OVRInput.Controller controlle switch (controllerType) { case Controller.LTouch: - case Controller.LTrackedRemote: case Controller.LHand: return OVRPlugin.GetNodeOrientationTracked(OVRPlugin.Node.HandLeft); case Controller.RTouch: - case Controller.RTrackedRemote: case Controller.RHand: return OVRPlugin.GetNodeOrientationTracked(OVRPlugin.Node.HandRight); default: @@ -459,11 +429,9 @@ public static bool GetControllerOrientationValid(OVRInput.Controller controllerT switch (controllerType) { case Controller.LTouch: - case Controller.LTrackedRemote: case Controller.LHand: return OVRPlugin.GetNodeOrientationValid(OVRPlugin.Node.HandLeft); case Controller.RTouch: - case Controller.RTrackedRemote: case Controller.RHand: return OVRPlugin.GetNodeOrientationValid(OVRPlugin.Node.HandRight); default: @@ -481,11 +449,9 @@ public static bool GetControllerPositionTracked(OVRInput.Controller controllerTy switch (controllerType) { case Controller.LTouch: - case Controller.LTrackedRemote: case Controller.LHand: return OVRPlugin.GetNodePositionTracked(OVRPlugin.Node.HandLeft); case Controller.RTouch: - case Controller.RTrackedRemote: case Controller.RHand: return OVRPlugin.GetNodePositionTracked(OVRPlugin.Node.HandRight); default: @@ -502,11 +468,9 @@ public static bool GetControllerPositionValid(OVRInput.Controller controllerType switch (controllerType) { case Controller.LTouch: - case Controller.LTrackedRemote: case Controller.LHand: return OVRPlugin.GetNodePositionValid(OVRPlugin.Node.HandLeft); case Controller.RTouch: - case Controller.RTrackedRemote: case Controller.RHand: return OVRPlugin.GetNodePositionValid(OVRPlugin.Node.HandRight); default: @@ -523,7 +487,6 @@ public static Vector3 GetLocalControllerPosition(OVRInput.Controller controllerT switch (controllerType) { case Controller.LTouch: - case Controller.LTrackedRemote: case Controller.LHand: if (OVRManager.loadedXRDevice == OVRManager.XRDevice.Oculus) return OVRPlugin.GetNodePose(OVRPlugin.Node.HandLeft, stepType).ToOVRPose().position; @@ -537,7 +500,6 @@ public static Vector3 GetLocalControllerPosition(OVRInput.Controller controllerT return Vector3.zero; //Will never be hit, but is a final fallback. } case Controller.RTouch: - case Controller.RTrackedRemote: case Controller.RHand: if (OVRManager.loadedXRDevice == OVRManager.XRDevice.Oculus) return OVRPlugin.GetNodePose(OVRPlugin.Node.HandRight, stepType).ToOVRPose().position; @@ -566,7 +528,6 @@ public static Vector3 GetLocalControllerVelocity(OVRInput.Controller controllerT switch (controllerType) { case Controller.LTouch: - case Controller.LTrackedRemote: case Controller.LHand: if (OVRNodeStateProperties.GetNodeStatePropertyVector3(Node.LeftHand, NodeStatePropertyType.Velocity, OVRPlugin.Node.HandLeft, stepType, out velocity)) { @@ -577,7 +538,6 @@ public static Vector3 GetLocalControllerVelocity(OVRInput.Controller controllerT return Vector3.zero; } case Controller.RTouch: - case Controller.RTrackedRemote: case Controller.RHand: if (OVRNodeStateProperties.GetNodeStatePropertyVector3(Node.RightHand, NodeStatePropertyType.Velocity, OVRPlugin.Node.HandRight, stepType, out velocity)) { @@ -603,7 +563,6 @@ public static Vector3 GetLocalControllerAcceleration(OVRInput.Controller control switch (controllerType) { case Controller.LTouch: - case Controller.LTrackedRemote: case Controller.LHand: if (OVRNodeStateProperties.GetNodeStatePropertyVector3(Node.LeftHand, NodeStatePropertyType.Acceleration, OVRPlugin.Node.HandLeft, stepType, out accel)) { @@ -614,7 +573,6 @@ public static Vector3 GetLocalControllerAcceleration(OVRInput.Controller control return Vector3.zero; } case Controller.RTouch: - case Controller.RTrackedRemote: case Controller.RHand: if (OVRNodeStateProperties.GetNodeStatePropertyVector3(Node.RightHand, NodeStatePropertyType.Acceleration, OVRPlugin.Node.HandRight, stepType, out accel)) { @@ -638,7 +596,6 @@ public static Quaternion GetLocalControllerRotation(OVRInput.Controller controll switch (controllerType) { case Controller.LTouch: - case Controller.LTrackedRemote: case Controller.LHand: if (OVRManager.loadedXRDevice == OVRManager.XRDevice.Oculus) return OVRPlugin.GetNodePose(OVRPlugin.Node.HandLeft, stepType).ToOVRPose().orientation; @@ -652,7 +609,6 @@ public static Quaternion GetLocalControllerRotation(OVRInput.Controller controll return Quaternion.identity; } case Controller.RTouch: - case Controller.RTrackedRemote: case Controller.RHand: if (OVRManager.loadedXRDevice == OVRManager.XRDevice.Oculus) return OVRPlugin.GetNodePose(OVRPlugin.Node.HandRight, stepType).ToOVRPose().orientation; @@ -681,7 +637,6 @@ public static Vector3 GetLocalControllerAngularVelocity(OVRInput.Controller cont switch (controllerType) { case Controller.LTouch: - case Controller.LTrackedRemote: case Controller.LHand: if (OVRNodeStateProperties.GetNodeStatePropertyVector3(Node.LeftHand, NodeStatePropertyType.AngularVelocity, OVRPlugin.Node.HandLeft, stepType, out velocity)) { @@ -692,7 +647,6 @@ public static Vector3 GetLocalControllerAngularVelocity(OVRInput.Controller cont return Vector3.zero; } case Controller.RTouch: - case Controller.RTrackedRemote: case Controller.RHand: if (OVRNodeStateProperties.GetNodeStatePropertyVector3(Node.RightHand, NodeStatePropertyType.AngularVelocity, OVRPlugin.Node.HandRight, stepType, out velocity)) { @@ -718,7 +672,6 @@ public static Vector3 GetLocalControllerAngularAcceleration(OVRInput.Controller switch (controllerType) { case Controller.LTouch: - case Controller.LTrackedRemote: case Controller.LHand: if (OVRNodeStateProperties.GetNodeStatePropertyVector3(Node.LeftHand, NodeStatePropertyType.AngularAcceleration, OVRPlugin.Node.HandLeft, stepType, out accel)) { @@ -729,7 +682,6 @@ public static Vector3 GetLocalControllerAngularAcceleration(OVRInput.Controller return Vector3.zero; } case Controller.RTouch: - case Controller.RTrackedRemote: case Controller.RHand: if (OVRNodeStateProperties.GetNodeStatePropertyVector3(Node.RightHand, NodeStatePropertyType.AngularAcceleration, OVRPlugin.Node.HandRight, stepType, out accel)) { @@ -1577,83 +1529,9 @@ public static void SetControllerVibration(float frequency, float amplitude, Cont } } - /// - /// Triggers a recenter to realign the specified controller's virtual pose with the user's real-world pose. - /// Only applicable to controllers that require recentering, such as the GearVR Controller. - /// Ignored for controllers that do not require recentering. - /// - public static void RecenterController(Controller controllerMask = Controller.Active) - { - if ((controllerMask & Controller.Active) != 0) - controllerMask |= activeControllerType; - - for (int i = 0; i < controllers.Count; i++) - { - OVRControllerBase controller = controllers[i]; - - if (ShouldResolveController(controller.controllerType, controllerMask)) - { - controller.RecenterController(); - } - } - } - - /// - /// Returns true if the specified controller was recentered this frame. - /// Only applicable to controllers that require recentering, such as the GearVR Controller. - /// Returns false for controllers that do not require recentering. - /// - public static bool GetControllerWasRecentered(Controller controllerMask = Controller.Active) - { - if ((controllerMask & Controller.Active) != 0) - controllerMask |= activeControllerType; - - bool wasRecentered = false; - - for (int i = 0; i < controllers.Count; i++) - { - OVRControllerBase controller = controllers[i]; - - if (ShouldResolveController(controller.controllerType, controllerMask)) - { - wasRecentered |= controller.WasRecentered(); - } - } - - return wasRecentered; - } - - /// - /// Returns the number of times the controller has been recentered this session. - /// Useful for detecting recenter events and resetting state such as arm model simulations, etc. - /// Wraps around to 0 after 255. - /// Only applicable to controllers that require recentering, such as the GearVR Controller. - /// Returns 0 for controllers that do not require recentering. - /// - public static byte GetControllerRecenterCount(Controller controllerMask = Controller.Active) - { - if ((controllerMask & Controller.Active) != 0) - controllerMask |= activeControllerType; - - byte recenterCount = 0; - - for (int i = 0; i < controllers.Count; i++) - { - OVRControllerBase controller = controllers[i]; - - if (ShouldResolveController(controller.controllerType, controllerMask)) - { - recenterCount = controller.GetRecenterCount(); - break; - } - } - - return recenterCount; - } - /// /// Returns the battery percentage remaining for the specified controller. Values range from 0 to 100. - /// Only applicable to controllers that report battery level, such as the GearVR Controller. + /// Only applicable to controllers that report battery level. /// Returns 0 for controllers that do not report battery level. /// public static byte GetControllerBatteryPercentRemaining(Controller controllerMask = Controller.Active) @@ -2129,21 +2007,6 @@ public virtual void SetControllerVibration(float frequency, float amplitude) OVRPlugin.SetControllerVibration((uint)controllerType, frequency, amplitude); } - public virtual void RecenterController() - { - OVRPlugin.RecenterTrackingOrigin(OVRPlugin.RecenterFlags.Controllers); - } - - public virtual bool WasRecentered() - { - return false; - } - - public virtual byte GetRecenterCount() - { - return 0; - } - public virtual byte GetBatteryPercentRemaining() { return 0; @@ -2269,16 +2132,6 @@ public override void ConfigureAxis2DMap() axis2DMap.SecondaryTouchpad = RawAxis2D.None; } - public override bool WasRecentered() - { - return ((currentState.LRecenterCount + currentState.RRecenterCount) != (previousState.LRecenterCount + previousState.RRecenterCount)); - } - - public override byte GetRecenterCount() - { - return (byte)(currentState.LRecenterCount + currentState.RRecenterCount); - } - public override byte GetBatteryPercentRemaining() { byte leftBattery = currentState.LBatteryPercentRemaining; @@ -2377,16 +2230,6 @@ public override void ConfigureAxis2DMap() axis2DMap.SecondaryTouchpad = RawAxis2D.None; } - public override bool WasRecentered() - { - return (currentState.LRecenterCount != previousState.LRecenterCount); - } - - public override byte GetRecenterCount() - { - return currentState.LRecenterCount; - } - public override byte GetBatteryPercentRemaining() { return currentState.LBatteryPercentRemaining; @@ -2481,16 +2324,6 @@ public override void ConfigureAxis2DMap() axis2DMap.SecondaryTouchpad = RawAxis2D.None; } - public override bool WasRecentered() - { - return (currentState.RRecenterCount != previousState.RRecenterCount); - } - - public override byte GetRecenterCount() - { - return currentState.RRecenterCount; - } - public override byte GetBatteryPercentRemaining() { return currentState.RBatteryPercentRemaining; @@ -2511,7 +2344,7 @@ public override void ConfigureButtonMap() buttonMap.Two = RawButton.None; buttonMap.Three = RawButton.X; buttonMap.Four = RawButton.None; - buttonMap.Start = RawButton.None; + buttonMap.Start = RawButton.Start; buttonMap.Back = RawButton.None; buttonMap.PrimaryShoulder = RawButton.None; buttonMap.PrimaryIndexTrigger = RawButton.None; @@ -2585,16 +2418,6 @@ public override void ConfigureAxis2DMap() axis2DMap.SecondaryTouchpad = RawAxis2D.None; } - public override bool WasRecentered() - { - return ((currentState.LRecenterCount + currentState.RRecenterCount) != (previousState.LRecenterCount + previousState.RRecenterCount)); - } - - public override byte GetRecenterCount() - { - return (byte)(currentState.LRecenterCount + currentState.RRecenterCount); - } - public override byte GetBatteryPercentRemaining() { byte leftBattery = currentState.LBatteryPercentRemaining; @@ -2619,7 +2442,7 @@ public override void ConfigureButtonMap() buttonMap.Two = RawButton.None; buttonMap.Three = RawButton.None; buttonMap.Four = RawButton.None; - buttonMap.Start = RawButton.None; + buttonMap.Start = RawButton.Start; buttonMap.Back = RawButton.None; buttonMap.PrimaryShoulder = RawButton.None; buttonMap.PrimaryIndexTrigger = RawButton.None; @@ -2693,16 +2516,6 @@ public override void ConfigureAxis2DMap() axis2DMap.SecondaryTouchpad = RawAxis2D.None; } - public override bool WasRecentered() - { - return (currentState.LRecenterCount != previousState.LRecenterCount); - } - - public override byte GetRecenterCount() - { - return currentState.LRecenterCount; - } - public override byte GetBatteryPercentRemaining() { return currentState.LBatteryPercentRemaining; @@ -2723,7 +2536,7 @@ public override void ConfigureButtonMap() buttonMap.Two = RawButton.None; buttonMap.Three = RawButton.None; buttonMap.Four = RawButton.None; - buttonMap.Start = RawButton.None; + buttonMap.Start = RawButton.Start; buttonMap.Back = RawButton.None; buttonMap.PrimaryShoulder = RawButton.None; buttonMap.PrimaryIndexTrigger = RawButton.None; @@ -2797,16 +2610,6 @@ public override void ConfigureAxis2DMap() axis2DMap.SecondaryTouchpad = RawAxis2D.None; } - public override bool WasRecentered() - { - return (currentState.RRecenterCount != previousState.RRecenterCount); - } - - public override byte GetRecenterCount() - { - return currentState.RRecenterCount; - } - public override byte GetBatteryPercentRemaining() { return currentState.RBatteryPercentRemaining; @@ -3322,486 +3125,4 @@ public override void ConfigureAxis2DMap() axis2DMap.SecondaryTouchpad = RawAxis2D.None; } } - - private class OVRControllerTouchpad : OVRControllerBase - { - private OVRPlugin.Vector2f moveAmount; - private float maxTapMagnitude = 0.1f; - private float minMoveMagnitude = 0.15f; - - public OVRControllerTouchpad() - { - controllerType = Controller.Touchpad; - } - - public override Controller Update() - { - Controller res = base.Update(); - - if (GetDown(RawTouch.LTouchpad, OVRInput.Controller.Touchpad)) - { - moveAmount = currentState.LTouchpad; - } - - if (GetUp(RawTouch.LTouchpad, OVRInput.Controller.Touchpad)) - { - moveAmount.x = previousState.LTouchpad.x - moveAmount.x; - moveAmount.y = previousState.LTouchpad.y - moveAmount.y; - - Vector2 move = new Vector2(moveAmount.x, moveAmount.y); - float moveMag = move.magnitude; - - if (moveMag < maxTapMagnitude) - { - // Emit Touchpad Tap - currentState.Buttons |= (uint)RawButton.Start; - currentState.Buttons |= (uint)RawButton.LTouchpad; - } - else if (moveMag >= minMoveMagnitude) - { - move.Normalize(); - - // Left/Right - if (Mathf.Abs(move.x) > Mathf.Abs(move.y)) - { - if (move.x < 0.0f) - { - currentState.Buttons |= (uint)RawButton.DpadLeft; - } - else - { - currentState.Buttons |= (uint)RawButton.DpadRight; - } - } - // Up/Down - else - { - if (move.y < 0.0f) - { - currentState.Buttons |= (uint)RawButton.DpadDown; - } - else - { - currentState.Buttons |= (uint)RawButton.DpadUp; - } - } - } - } - - return res; - } - - public override void ConfigureButtonMap() - { - buttonMap.None = RawButton.None; - buttonMap.One = RawButton.LTouchpad; - buttonMap.Two = RawButton.Back; - buttonMap.Three = RawButton.None; - buttonMap.Four = RawButton.None; - buttonMap.Start = RawButton.Start; - buttonMap.Back = RawButton.Back; - buttonMap.PrimaryShoulder = RawButton.None; - buttonMap.PrimaryIndexTrigger = RawButton.None; - buttonMap.PrimaryHandTrigger = RawButton.None; - buttonMap.PrimaryThumbstick = RawButton.None; - buttonMap.PrimaryThumbstickUp = RawButton.None; - buttonMap.PrimaryThumbstickDown = RawButton.None; - buttonMap.PrimaryThumbstickLeft = RawButton.None; - buttonMap.PrimaryThumbstickRight = RawButton.None; - buttonMap.PrimaryTouchpad = RawButton.LTouchpad; - buttonMap.SecondaryShoulder = RawButton.None; - buttonMap.SecondaryIndexTrigger = RawButton.None; - buttonMap.SecondaryHandTrigger = RawButton.None; - buttonMap.SecondaryThumbstick = RawButton.None; - buttonMap.SecondaryThumbstickUp = RawButton.None; - buttonMap.SecondaryThumbstickDown = RawButton.None; - buttonMap.SecondaryThumbstickLeft = RawButton.None; - buttonMap.SecondaryThumbstickRight = RawButton.None; - buttonMap.SecondaryTouchpad = RawButton.None; - buttonMap.DpadUp = RawButton.DpadUp; - buttonMap.DpadDown = RawButton.DpadDown; - buttonMap.DpadLeft = RawButton.DpadLeft; - buttonMap.DpadRight = RawButton.DpadRight; - buttonMap.Up = RawButton.DpadUp; - buttonMap.Down = RawButton.DpadDown; - buttonMap.Left = RawButton.DpadLeft; - buttonMap.Right = RawButton.DpadRight; - } - - public override void ConfigureTouchMap() - { - touchMap.None = RawTouch.None; - touchMap.One = RawTouch.LTouchpad; - touchMap.Two = RawTouch.None; - touchMap.Three = RawTouch.None; - touchMap.Four = RawTouch.None; - touchMap.PrimaryIndexTrigger = RawTouch.None; - touchMap.PrimaryThumbstick = RawTouch.None; - touchMap.PrimaryThumbRest = RawTouch.None; - touchMap.PrimaryTouchpad = RawTouch.LTouchpad; - touchMap.SecondaryIndexTrigger = RawTouch.None; - touchMap.SecondaryThumbstick = RawTouch.None; - touchMap.SecondaryThumbRest = RawTouch.None; - touchMap.SecondaryTouchpad = RawTouch.None; - } - - public override void ConfigureNearTouchMap() - { - nearTouchMap.None = RawNearTouch.None; - nearTouchMap.PrimaryIndexTrigger = RawNearTouch.None; - nearTouchMap.PrimaryThumbButtons = RawNearTouch.None; - nearTouchMap.SecondaryIndexTrigger = RawNearTouch.None; - nearTouchMap.SecondaryThumbButtons = RawNearTouch.None; - } - - public override void ConfigureAxis1DMap() - { - axis1DMap.None = RawAxis1D.None; - axis1DMap.PrimaryIndexTrigger = RawAxis1D.None; - axis1DMap.PrimaryHandTrigger = RawAxis1D.None; - axis1DMap.SecondaryIndexTrigger = RawAxis1D.None; - axis1DMap.SecondaryHandTrigger = RawAxis1D.None; - } - - public override void ConfigureAxis2DMap() - { - axis2DMap.None = RawAxis2D.None; - axis2DMap.PrimaryThumbstick = RawAxis2D.None; - axis2DMap.PrimaryTouchpad = RawAxis2D.LTouchpad; - axis2DMap.SecondaryThumbstick = RawAxis2D.None; - axis2DMap.SecondaryTouchpad = RawAxis2D.None; - } - } - - private class OVRControllerLTrackedRemote : OVRControllerBase - { - private bool emitSwipe; - private OVRPlugin.Vector2f moveAmount; - private float minMoveMagnitude = 0.3f; - - public OVRControllerLTrackedRemote() - { - controllerType = Controller.LTrackedRemote; - } - - public override void ConfigureButtonMap() - { - buttonMap.None = RawButton.None; - buttonMap.One = RawButton.LTouchpad; - buttonMap.Two = RawButton.Back; - buttonMap.Three = RawButton.None; - buttonMap.Four = RawButton.None; - buttonMap.Start = RawButton.Start; - buttonMap.Back = RawButton.Back; - buttonMap.PrimaryShoulder = RawButton.None; - buttonMap.PrimaryIndexTrigger = RawButton.LIndexTrigger; - buttonMap.PrimaryHandTrigger = RawButton.LHandTrigger; - buttonMap.PrimaryThumbstick = RawButton.None; - buttonMap.PrimaryThumbstickUp = RawButton.None; - buttonMap.PrimaryThumbstickDown = RawButton.None; - buttonMap.PrimaryThumbstickLeft = RawButton.None; - buttonMap.PrimaryThumbstickRight = RawButton.None; - buttonMap.PrimaryTouchpad = RawButton.LTouchpad; - buttonMap.SecondaryShoulder = RawButton.None; - buttonMap.SecondaryIndexTrigger = RawButton.None; - buttonMap.SecondaryHandTrigger = RawButton.None; - buttonMap.SecondaryThumbstick = RawButton.None; - buttonMap.SecondaryThumbstickUp = RawButton.None; - buttonMap.SecondaryThumbstickDown = RawButton.None; - buttonMap.SecondaryThumbstickLeft = RawButton.None; - buttonMap.SecondaryThumbstickRight = RawButton.None; - buttonMap.SecondaryTouchpad = RawButton.None; - buttonMap.DpadUp = RawButton.DpadUp; - buttonMap.DpadDown = RawButton.DpadDown; - buttonMap.DpadLeft = RawButton.DpadLeft; - buttonMap.DpadRight = RawButton.DpadRight; - buttonMap.Up = RawButton.DpadUp; - buttonMap.Down = RawButton.DpadDown; - buttonMap.Left = RawButton.DpadLeft; - buttonMap.Right = RawButton.DpadRight; - } - - public override void ConfigureTouchMap() - { - touchMap.None = RawTouch.None; - touchMap.One = RawTouch.LTouchpad; - touchMap.Two = RawTouch.None; - touchMap.Three = RawTouch.None; - touchMap.Four = RawTouch.None; - touchMap.PrimaryIndexTrigger = RawTouch.LIndexTrigger; - touchMap.PrimaryThumbstick = RawTouch.None; - touchMap.PrimaryThumbRest = RawTouch.None; - touchMap.PrimaryTouchpad = RawTouch.LTouchpad; - touchMap.SecondaryIndexTrigger = RawTouch.None; - touchMap.SecondaryThumbstick = RawTouch.None; - touchMap.SecondaryThumbRest = RawTouch.None; - touchMap.SecondaryTouchpad = RawTouch.None; - } - - public override void ConfigureNearTouchMap() - { - nearTouchMap.None = RawNearTouch.None; - nearTouchMap.PrimaryIndexTrigger = RawNearTouch.None; - nearTouchMap.PrimaryThumbButtons = RawNearTouch.None; - nearTouchMap.SecondaryIndexTrigger = RawNearTouch.None; - nearTouchMap.SecondaryThumbButtons = RawNearTouch.None; - } - - public override void ConfigureAxis1DMap() - { - axis1DMap.None = RawAxis1D.None; - axis1DMap.PrimaryIndexTrigger = RawAxis1D.LIndexTrigger; - axis1DMap.PrimaryHandTrigger = RawAxis1D.LHandTrigger; - axis1DMap.SecondaryIndexTrigger = RawAxis1D.None; - axis1DMap.SecondaryHandTrigger = RawAxis1D.None; - } - - public override void ConfigureAxis2DMap() - { - axis2DMap.None = RawAxis2D.None; - axis2DMap.PrimaryThumbstick = RawAxis2D.None; - axis2DMap.PrimaryTouchpad = RawAxis2D.LTouchpad; - axis2DMap.SecondaryThumbstick = RawAxis2D.None; - axis2DMap.SecondaryTouchpad = RawAxis2D.None; - } - - public override Controller Update() - { - Controller res = base.Update(); - - if (GetDown(RawTouch.LTouchpad, OVRInput.Controller.LTrackedRemote)) - { - emitSwipe = true; - moveAmount = currentState.LTouchpad; - } - - if (GetDown(RawButton.LTouchpad, OVRInput.Controller.LTrackedRemote)) - { - emitSwipe = false; - } - - if (GetUp(RawTouch.LTouchpad, OVRInput.Controller.LTrackedRemote) && emitSwipe) - { - emitSwipe = false; - - moveAmount.x = previousState.LTouchpad.x - moveAmount.x; - moveAmount.y = previousState.LTouchpad.y - moveAmount.y; - - Vector2 move = new Vector2(moveAmount.x, moveAmount.y); - - if (move.magnitude >= minMoveMagnitude) - { - move.Normalize(); - - // Left/Right - if (Mathf.Abs(move.x) > Mathf.Abs(move.y)) - { - if (move.x < 0.0f) - { - currentState.Buttons |= (uint)RawButton.DpadLeft; - } - else - { - currentState.Buttons |= (uint)RawButton.DpadRight; - } - } - // Up/Down - else - { - if (move.y < 0.0f) - { - currentState.Buttons |= (uint)RawButton.DpadDown; - } - else - { - currentState.Buttons |= (uint)RawButton.DpadUp; - } - } - } - } - - return res; - } - - public override bool WasRecentered() - { - return (currentState.LRecenterCount != previousState.LRecenterCount); - } - - public override byte GetRecenterCount() - { - return currentState.LRecenterCount; - } - - public override byte GetBatteryPercentRemaining() - { - return currentState.LBatteryPercentRemaining; - } - } - - private class OVRControllerRTrackedRemote : OVRControllerBase - { - private bool emitSwipe; - private OVRPlugin.Vector2f moveAmount; - private float minMoveMagnitude = 0.3f; - - public OVRControllerRTrackedRemote() - { - controllerType = Controller.RTrackedRemote; - } - - public override void ConfigureButtonMap() - { - buttonMap.None = RawButton.None; - buttonMap.One = RawButton.RTouchpad; - buttonMap.Two = RawButton.Back; - buttonMap.Three = RawButton.None; - buttonMap.Four = RawButton.None; - buttonMap.Start = RawButton.Start; - buttonMap.Back = RawButton.Back; - buttonMap.PrimaryShoulder = RawButton.None; - buttonMap.PrimaryIndexTrigger = RawButton.RIndexTrigger; - buttonMap.PrimaryHandTrigger = RawButton.RHandTrigger; - buttonMap.PrimaryThumbstick = RawButton.None; - buttonMap.PrimaryThumbstickUp = RawButton.None; - buttonMap.PrimaryThumbstickDown = RawButton.None; - buttonMap.PrimaryThumbstickLeft = RawButton.None; - buttonMap.PrimaryThumbstickRight = RawButton.None; - buttonMap.PrimaryTouchpad = RawButton.RTouchpad; - buttonMap.SecondaryShoulder = RawButton.None; - buttonMap.SecondaryIndexTrigger = RawButton.None; - buttonMap.SecondaryHandTrigger = RawButton.None; - buttonMap.SecondaryThumbstick = RawButton.None; - buttonMap.SecondaryThumbstickUp = RawButton.None; - buttonMap.SecondaryThumbstickDown = RawButton.None; - buttonMap.SecondaryThumbstickLeft = RawButton.None; - buttonMap.SecondaryThumbstickRight = RawButton.None; - buttonMap.SecondaryTouchpad = RawButton.None; - buttonMap.DpadUp = RawButton.DpadUp; - buttonMap.DpadDown = RawButton.DpadDown; - buttonMap.DpadLeft = RawButton.DpadLeft; - buttonMap.DpadRight = RawButton.DpadRight; - buttonMap.Up = RawButton.DpadUp; - buttonMap.Down = RawButton.DpadDown; - buttonMap.Left = RawButton.DpadLeft; - buttonMap.Right = RawButton.DpadRight; - } - - public override void ConfigureTouchMap() - { - touchMap.None = RawTouch.None; - touchMap.One = RawTouch.RTouchpad; - touchMap.Two = RawTouch.None; - touchMap.Three = RawTouch.None; - touchMap.Four = RawTouch.None; - touchMap.PrimaryIndexTrigger = RawTouch.RIndexTrigger; - touchMap.PrimaryThumbstick = RawTouch.None; - touchMap.PrimaryThumbRest = RawTouch.None; - touchMap.PrimaryTouchpad = RawTouch.RTouchpad; - touchMap.SecondaryIndexTrigger = RawTouch.None; - touchMap.SecondaryThumbstick = RawTouch.None; - touchMap.SecondaryThumbRest = RawTouch.None; - touchMap.SecondaryTouchpad = RawTouch.None; - } - - public override void ConfigureNearTouchMap() - { - nearTouchMap.None = RawNearTouch.None; - nearTouchMap.PrimaryIndexTrigger = RawNearTouch.None; - nearTouchMap.PrimaryThumbButtons = RawNearTouch.None; - nearTouchMap.SecondaryIndexTrigger = RawNearTouch.None; - nearTouchMap.SecondaryThumbButtons = RawNearTouch.None; - } - - public override void ConfigureAxis1DMap() - { - axis1DMap.None = RawAxis1D.None; - axis1DMap.PrimaryIndexTrigger = RawAxis1D.RIndexTrigger; - axis1DMap.PrimaryHandTrigger = RawAxis1D.RHandTrigger; - axis1DMap.SecondaryIndexTrigger = RawAxis1D.None; - axis1DMap.SecondaryHandTrigger = RawAxis1D.None; - } - - public override void ConfigureAxis2DMap() - { - axis2DMap.None = RawAxis2D.None; - axis2DMap.PrimaryThumbstick = RawAxis2D.None; - axis2DMap.PrimaryTouchpad = RawAxis2D.RTouchpad; - axis2DMap.SecondaryThumbstick = RawAxis2D.None; - axis2DMap.SecondaryTouchpad = RawAxis2D.None; - } - - public override Controller Update() - { - Controller res = base.Update(); - - if (GetDown(RawTouch.RTouchpad, OVRInput.Controller.RTrackedRemote)) - { - emitSwipe = true; - moveAmount = currentState.RTouchpad; - } - - if (GetDown(RawButton.RTouchpad, OVRInput.Controller.RTrackedRemote)) - { - emitSwipe = false; - } - - if (GetUp(RawTouch.RTouchpad, OVRInput.Controller.RTrackedRemote) && emitSwipe) - { - emitSwipe = false; - - moveAmount.x = previousState.RTouchpad.x - moveAmount.x; - moveAmount.y = previousState.RTouchpad.y - moveAmount.y; - - Vector2 move = new Vector2(moveAmount.x, moveAmount.y); - - if (move.magnitude >= minMoveMagnitude) - { - move.Normalize(); - - // Left/Right - if (Mathf.Abs(move.x) > Mathf.Abs(move.y)) - { - if (move.x < 0.0f) - { - currentState.Buttons |= (uint)RawButton.DpadLeft; - } - else - { - currentState.Buttons |= (uint)RawButton.DpadRight; - } - } - // Up/Down - else - { - if (move.y < 0.0f) - { - currentState.Buttons |= (uint)RawButton.DpadDown; - } - else - { - currentState.Buttons |= (uint)RawButton.DpadUp; - } - } - } - } - - return res; - } - - public override bool WasRecentered() - { - return (currentState.RRecenterCount != previousState.RRecenterCount); - } - - public override byte GetRecenterCount() - { - return currentState.RRecenterCount; - } - - public override byte GetBatteryPercentRemaining() - { - return currentState.RBatteryPercentRemaining; - } - } } diff --git a/Assets/Oculus/VR/Scripts/OVRLayerAttribute.cs b/Assets/Oculus/VR/Scripts/OVRLayerAttribute.cs index f20b1496..c4e228ce 100644 --- a/Assets/Oculus/VR/Scripts/OVRLayerAttribute.cs +++ b/Assets/Oculus/VR/Scripts/OVRLayerAttribute.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/OVRManager.cs b/Assets/Oculus/VR/Scripts/OVRManager.cs index 0653a62f..4e8f02e4 100644 --- a/Assets/Oculus/VR/Scripts/OVRManager.cs +++ b/Assets/Oculus/VR/Scripts/OVRManager.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -18,16 +14,21 @@ permissions and limitations under the License. #define USING_XR_SDK #endif +#if UNITY_2020_1_OR_NEWER +#define REQUIRES_XR_SDK +#endif + #if UNITY_ANDROID && !UNITY_EDITOR #define OVR_ANDROID_MRC #endif -#if !UNITY_5_6_OR_NEWER -#error Oculus Utilities require Unity 5.6 or higher. +#if !UNITY_2018_3_OR_NEWER +#error Oculus Utilities require Unity 2018.3 or higher. #endif using System; using System.Collections.Generic; +using System.Linq; using UnityEngine; #if UNITY_EDITOR using UnityEditor; @@ -40,22 +41,25 @@ permissions and limitations under the License. using UnityEngine.Experimental.XR; #endif -#if UNITY_2017_2_OR_NEWER using Settings = UnityEngine.XR.XRSettings; using Node = UnityEngine.XR.XRNode; -#else -using Settings = UnityEngine.VR.VRSettings; -using Node = UnityEngine.VR.VRNode; -#endif /// /// Configuration data for Oculus virtual reality. /// -public class OVRManager : MonoBehaviour +public class OVRManager : MonoBehaviour, OVRMixedRealityCaptureConfiguration { + public enum XrApi + { + Unknown = OVRPlugin.XrApi.Unknown, + CAPI = OVRPlugin.XrApi.CAPI, + VRAPI = OVRPlugin.XrApi.VRAPI, + OpenXR = OVRPlugin.XrApi.OpenXR, + } + public enum TrackingOrigin { - EyeLevel = OVRPlugin.TrackingOrigin.EyeLevel, + EyeLevel = OVRPlugin.TrackingOrigin.EyeLevel, FloorLevel = OVRPlugin.TrackingOrigin.FloorLevel, Stage = OVRPlugin.TrackingOrigin.Stage, } @@ -86,11 +90,52 @@ public enum TiledMultiResLevel LMSHighTop = OVRPlugin.TiledMultiResLevel.LMSHighTop, } + public enum SystemHeadsetType + { + None = OVRPlugin.SystemHeadset.None, + + // Standalone headsets + Oculus_Quest = OVRPlugin.SystemHeadset.Oculus_Quest, + Oculus_Quest_2 = OVRPlugin.SystemHeadset.Oculus_Quest_2, + Placeholder_10 = OVRPlugin.SystemHeadset.Placeholder_10, + Placeholder_11 = OVRPlugin.SystemHeadset.Placeholder_11, + Placeholder_12 = OVRPlugin.SystemHeadset.Placeholder_12, + Placeholder_13 = OVRPlugin.SystemHeadset.Placeholder_13, + Placeholder_14 = OVRPlugin.SystemHeadset.Placeholder_14, + + // PC headsets + Rift_DK1 = OVRPlugin.SystemHeadset.Rift_DK1, + Rift_DK2 = OVRPlugin.SystemHeadset.Rift_DK2, + Rift_CV1 = OVRPlugin.SystemHeadset.Rift_CV1, + Rift_CB = OVRPlugin.SystemHeadset.Rift_CB, + Rift_S = OVRPlugin.SystemHeadset.Rift_S, + Oculus_Link_Quest = OVRPlugin.SystemHeadset.Oculus_Link_Quest, + Oculus_Link_Quest_2 = OVRPlugin.SystemHeadset.Oculus_Link_Quest_2, + PC_Placeholder_4103 = OVRPlugin.SystemHeadset.PC_Placeholder_4103, + PC_Placeholder_4104 = OVRPlugin.SystemHeadset.PC_Placeholder_4104, + PC_Placeholder_4105 = OVRPlugin.SystemHeadset.PC_Placeholder_4105, + PC_Placeholder_4106 = OVRPlugin.SystemHeadset.PC_Placeholder_4106, + PC_Placeholder_4107 = OVRPlugin.SystemHeadset.PC_Placeholder_4107 + } + public enum XRDevice { - Unknown = 0, - Oculus = 1, - OpenVR = 2, + Unknown = 0, + Oculus = 1, + OpenVR = 2, + } + + public enum ColorSpace + { + Unknown = OVRPlugin.ColorSpace.Unknown, + Unmanaged = OVRPlugin.ColorSpace.Unmanaged, + Rec_2020 = OVRPlugin.ColorSpace.Rec_2020, + Rec_709 = OVRPlugin.ColorSpace.Rec_709, + Rift_CV1 = OVRPlugin.ColorSpace.Rift_CV1, + Rift_S = OVRPlugin.ColorSpace.Rift_S, + Quest = OVRPlugin.ColorSpace.Quest, + P3 = OVRPlugin.ColorSpace.P3, + Adobe_RGB = OVRPlugin.ColorSpace.Adobe_RGB, } /// @@ -190,14 +235,20 @@ public static OVRProfile profile /// public static event Action TrackingLost; + /// + /// Occurs when the display refresh rate changes + /// @params (float fromRefreshRate, float toRefreshRate) + /// + public static event Action DisplayRefreshRateChanged; + /// /// Occurs when Health & Safety Warning is dismissed. /// //Disable the warning about it being unused. It's deprecated. - #pragma warning disable 0067 +#pragma warning disable 0067 [Obsolete] public static event Action HSWDismissed; - #pragma warning restore +#pragma warning restore private static bool _isHmdPresentCached = false; private static bool _isHmdPresent = false; @@ -302,12 +353,6 @@ public bool chromatic } [Header("Performance/Quality")] - /// - /// If true, distortion rendering work is submitted a quarter-frame early to avoid pipeline stalls and increase CPU-GPU parallelism. - /// - [Tooltip("If true, distortion rendering work is submitted a quarter-frame early to avoid pipeline stalls and increase CPU-GPU parallelism.")] - public bool queueAhead = true; - /// /// If true, Unity will use the optimal antialiasing level for quality/performance on the current hardware. /// @@ -347,17 +392,43 @@ public bool monoscopic [Tooltip("If true, dynamic resolution will be enabled On PC")] public bool enableAdaptiveResolution = false; + [SerializeField, HideInInspector] + private OVRManager.ColorSpace _colorGamut = OVRManager.ColorSpace.Rift_CV1; + + /// + /// The target color gamut the HMD will perform a color space transformation to + /// + public OVRManager.ColorSpace colorGamut + { + get + { + return _colorGamut; + } + set + { + _colorGamut = value; + OVRPlugin.SetClientColorDesc((OVRPlugin.ColorSpace)_colorGamut); + } + } + + /// + /// The native color gamut of the target HMD + /// + public OVRManager.ColorSpace nativeColorGamut + { + get + { + return (OVRManager.ColorSpace)OVRPlugin.GetHmdColorDesc(); + } + } + /// /// Adaptive Resolution is based on Unity engine's renderViewportScale/eyeTextureResolutionScale feature /// But renderViewportScale was broken in an array of Unity engines, this function help to filter out those broken engines /// public static bool IsAdaptiveResSupportedByEngine() { -#if UNITY_2017_1_OR_NEWER - return Application.unityVersion != "2017.1.0f1"; -#else - return false; -#endif + return true; } /// @@ -466,6 +537,35 @@ public enum CompositionMethod [HideInInspector, Tooltip("Extra hidden layers")] public LayerMask extraHiddenLayers; + /// + /// Extra visible layers + /// + [HideInInspector, Tooltip("Extra visible layers")] + public LayerMask extraVisibleLayers; + + /// + /// If premultipled alpha blending is used for the eye fov layer. + /// Useful for changing how the eye fov layer blends with underlays. + /// + [HideInInspector] + public static bool eyeFovPremultipliedAlphaModeEnabled + { + get + { + return OVRPlugin.eyeFovPremultipliedAlphaModeEnabled; + } + set + { + OVRPlugin.eyeFovPremultipliedAlphaModeEnabled = value; + } + } + + /// + /// Whether MRC should dynamically update the culling mask using the Main Camera's culling mask, extraHiddenLayers, and extraVisibleLayers + /// + [HideInInspector, Tooltip("Dynamic Culling Mask")] + public bool dynamicCullingMask = true; + /// /// The backdrop color will be used when rendering the foreground frames (on Rift). It only applies to External Composition. /// @@ -617,6 +717,7 @@ public enum VirtualGreenScreenType [HideInInspector, Tooltip("The tolerance value (in meter) when using the virtual green screen with a depth camera. Make it bigger if the foreground objects got culled incorrectly.")] public float virtualGreenScreenDepthTolerance = 0.2f; + public enum MrcActivationMode { Automatic, @@ -628,8 +729,87 @@ public enum MrcActivationMode /// [HideInInspector, Tooltip("(Quest-only) control if the mixed reality capture mode can be activated automatically through remote network connection.")] public MrcActivationMode mrcActivationMode; + + public enum MrcCameraType + { + Normal, + Foreground, + Background + } + + public delegate GameObject InstantiateMrcCameraDelegate(GameObject mainCameraGameObject, MrcCameraType cameraType); + + /// + /// Allows overriding the internal mrc camera creation + /// + public InstantiateMrcCameraDelegate instantiateMixedRealityCameraGameObject = null; + + // OVRMixedRealityCaptureConfiguration Interface implementation + bool OVRMixedRealityCaptureConfiguration.enableMixedReality { get { return enableMixedReality; } set { enableMixedReality = value; } } + LayerMask OVRMixedRealityCaptureConfiguration.extraHiddenLayers { get { return extraHiddenLayers; } set { extraHiddenLayers = value; } } + LayerMask OVRMixedRealityCaptureConfiguration.extraVisibleLayers { get { return extraVisibleLayers; } set { extraVisibleLayers = value; } } + bool OVRMixedRealityCaptureConfiguration.dynamicCullingMask { get { return dynamicCullingMask; } set { dynamicCullingMask = value; } } + CompositionMethod OVRMixedRealityCaptureConfiguration.compositionMethod { get { return compositionMethod; } set { compositionMethod = value; } } + Color OVRMixedRealityCaptureConfiguration.externalCompositionBackdropColorRift { get { return externalCompositionBackdropColorRift; } set { externalCompositionBackdropColorRift = value; } } + Color OVRMixedRealityCaptureConfiguration.externalCompositionBackdropColorQuest { get { return externalCompositionBackdropColorQuest; } set { externalCompositionBackdropColorQuest = value; } } + CameraDevice OVRMixedRealityCaptureConfiguration.capturingCameraDevice { get { return capturingCameraDevice; } set { capturingCameraDevice = value; } } + bool OVRMixedRealityCaptureConfiguration.flipCameraFrameHorizontally { get { return flipCameraFrameHorizontally; } set { flipCameraFrameHorizontally = value; } } + bool OVRMixedRealityCaptureConfiguration.flipCameraFrameVertically { get { return flipCameraFrameVertically; } set { flipCameraFrameVertically = value; } } + float OVRMixedRealityCaptureConfiguration.handPoseStateLatency { get { return handPoseStateLatency; } set { handPoseStateLatency = value; } } + float OVRMixedRealityCaptureConfiguration.sandwichCompositionRenderLatency { get { return sandwichCompositionRenderLatency; } set { sandwichCompositionRenderLatency = value; } } + int OVRMixedRealityCaptureConfiguration.sandwichCompositionBufferedFrames { get { return sandwichCompositionBufferedFrames; } set { sandwichCompositionBufferedFrames = value; } } + Color OVRMixedRealityCaptureConfiguration.chromaKeyColor { get { return chromaKeyColor; } set { chromaKeyColor = value; } } + float OVRMixedRealityCaptureConfiguration.chromaKeySimilarity { get { return chromaKeySimilarity; } set { chromaKeySimilarity = value; } } + float OVRMixedRealityCaptureConfiguration.chromaKeySmoothRange { get { return chromaKeySmoothRange; } set { chromaKeySmoothRange = value; } } + float OVRMixedRealityCaptureConfiguration.chromaKeySpillRange { get { return chromaKeySpillRange; } set { chromaKeySpillRange = value; } } + bool OVRMixedRealityCaptureConfiguration.useDynamicLighting { get { return useDynamicLighting; } set { useDynamicLighting = value; } } + DepthQuality OVRMixedRealityCaptureConfiguration.depthQuality { get { return depthQuality; } set { depthQuality = value; } } + float OVRMixedRealityCaptureConfiguration.dynamicLightingSmoothFactor { get { return dynamicLightingSmoothFactor; } set { dynamicLightingSmoothFactor = value; } } + float OVRMixedRealityCaptureConfiguration.dynamicLightingDepthVariationClampingValue { get { return dynamicLightingDepthVariationClampingValue; } set { dynamicLightingDepthVariationClampingValue = value; } } + VirtualGreenScreenType OVRMixedRealityCaptureConfiguration.virtualGreenScreenType { get { return virtualGreenScreenType; } set { virtualGreenScreenType = value; } } + float OVRMixedRealityCaptureConfiguration.virtualGreenScreenTopY { get { return virtualGreenScreenTopY; } set { virtualGreenScreenTopY = value; } } + float OVRMixedRealityCaptureConfiguration.virtualGreenScreenBottomY { get { return virtualGreenScreenBottomY; } set { virtualGreenScreenBottomY = value; } } + bool OVRMixedRealityCaptureConfiguration.virtualGreenScreenApplyDepthCulling { get { return virtualGreenScreenApplyDepthCulling; } set { virtualGreenScreenApplyDepthCulling = value; } } + float OVRMixedRealityCaptureConfiguration.virtualGreenScreenDepthTolerance { get { return virtualGreenScreenDepthTolerance; } set { virtualGreenScreenDepthTolerance = value; } } + MrcActivationMode OVRMixedRealityCaptureConfiguration.mrcActivationMode { get { return mrcActivationMode; } set { mrcActivationMode = value; } } + InstantiateMrcCameraDelegate OVRMixedRealityCaptureConfiguration.instantiateMixedRealityCameraGameObject { get { return instantiateMixedRealityCameraGameObject; } set { instantiateMixedRealityCameraGameObject = value; } } + #endif + + /// + /// The native XR API being used + /// + public XrApi xrApi + { + get + { + return (XrApi)OVRPlugin.nativeXrApi; + } + } + + /// + /// The value of current XrInstance when using OpenXR + /// + public UInt64 xrInstance + { + get + { + return OVRPlugin.GetNativeOpenXRInstance(); + } + } + + /// + /// The value of current XrSession when using OpenXR + /// + public UInt64 xrSession + { + get + { + return OVRPlugin.GetNativeOpenXRSession(); + } + } + /// /// The number of expected display frames per rendered frame. /// @@ -901,11 +1081,22 @@ public static float gpuUtilLevel } } + /// + /// Get the system headset type + /// + public static SystemHeadsetType systemHeadsetType + { + get + { + return (SystemHeadsetType)OVRPlugin.GetSystemHeadsetType(); + } + } + /// /// Sets the Color Scale and Offset which is commonly used for effects like fade-to-black. /// In our compositor, once a given frame is rendered, warped, and ready to be displayed, we then multiply /// each pixel by colorScale and add it to colorOffset, whereby newPixel = oldPixel * colorScale + colorOffset. - /// Note that for mobile devices (Quest, Go, etc.), colorOffset is not supported, so colorScale is all that can + /// Note that for mobile devices (Quest, etc.), colorOffset is only supported with OpenXR, so colorScale is all that can /// be used. A colorScale of (1, 1, 1, 1) and colorOffset of (0, 0, 0, 0) will lead to an identity multiplication /// and have no effect. /// @@ -1012,32 +1203,6 @@ public OVRManager.TrackingOrigin trackingOriginType [Tooltip("If true, the Reset View in the universal menu will cause the pose to be reset. This should generally be enabled for applications with a stationary position in the virtual world and will allow the View Reset command to place the person back to a predefined location (such as a cockpit seat). Set this to false if you have a locomotion system because resetting the view would effectively teleport the player to potentially invalid locations.")] public bool AllowRecenter = true; - [SerializeField] - [Tooltip("Specifies HMD recentering behavior when controller recenter is performed. True recenters the HMD as well, false does not.")] - private bool _reorientHMDOnControllerRecenter = true; - /// - /// Defines the recentering mode specified in the tooltip above. - /// - public bool reorientHMDOnControllerRecenter - { - get - { - if (!isHmdPresent) - return false; - - return OVRPlugin.GetReorientHMDOnControllerRecenter(); - } - - set - { - if (!isHmdPresent) - return; - - OVRPlugin.SetReorientHMDOnControllerRecenter(value); - - } - } - /// /// If true, a lower-latency update will occur right before rendering. If false, the only controller pose update will occur at the start of simulation for a given frame. /// Selecting this option lowers rendered latency for controllers and is often a net positive; however, it also creates a slight disconnect between rendered and simulated controller poses. @@ -1081,6 +1246,8 @@ private set { private static string prevAudioInId = string.Empty; private static bool wasPositionTracked = false; + private static OVRPlugin.EventDataBuffer eventDataBuffer = new OVRPlugin.EventDataBuffer(); + public static System.Version utilitiesVersion { get { return OVRPlugin.wrapperVersion; } @@ -1194,7 +1361,12 @@ private void InitOVRManager() "OVRPlugin v" + OVRPlugin.version + ", " + "SDK v" + OVRPlugin.nativeSDKVersion + "."); - Debug.Log("SystemHeadset " + OVRPlugin.GetSystemHeadsetType().ToString()); + Debug.LogFormat("SystemHeadset {0}, API {1}", systemHeadsetType.ToString(), xrApi.ToString()); + + if (xrApi == XrApi.OpenXR) + { + Debug.LogFormat("OpenXR instance 0x{0:X} session 0x{1:X}", xrInstance, xrSession); + } #if !UNITY_EDITOR if (IsUnityAlphaOrBetaVersion()) @@ -1299,6 +1471,9 @@ private void InitOVRManager() Initialize(); + Debug.LogFormat("Current display frequency {0}, available frequencies [{1}]", + display.displayFrequency, string.Join(", ", display.displayFrequenciesAvailable.Select(f => f.ToString()).ToArray())); + if (resetTrackerOnLoad) display.RecenterPose(); @@ -1318,11 +1493,16 @@ private void InitOVRManager() OVRPlugin.SetDeveloperMode(OVRPlugin.Bool.True); } + // Refresh the client color space + OVRManager.ColorSpace clientColorSpace = colorGamut; + colorGamut = clientColorSpace; + #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN // Force OcculusionMesh on all the time, you can change the value to false if you really need it be off for some reasons, // be aware there are performance drops if you don't use occlusionMesh. OVRPlugin.occlusionMesh = true; #endif + OVRManagerinitialized = true; } @@ -1382,30 +1562,39 @@ void SetCurrentXRDevice() } #if USING_XR_SDK - + static List s_displaySubsystems; public static XRDisplaySubsystem GetCurrentDisplaySubsystem() { - List displaySubsystems = new List(); - SubsystemManager.GetInstances(displaySubsystems); - //Note: Here we are making the assumption that there will always be one valid display subsystem. If there is not, then submitFrame isn't being called, - //so for now this is a fine assumption to make. - if (displaySubsystems.Count > 0) - return displaySubsystems[0]; + if (s_displaySubsystems == null) + s_displaySubsystems = new List(); + SubsystemManager.GetInstances(s_displaySubsystems); + if (s_displaySubsystems.Count > 0) + return s_displaySubsystems[0]; return null; } + static List s_displaySubsystemDescriptors; public static XRDisplaySubsystemDescriptor GetCurrentDisplaySubsystemDescriptor() { - List displaySubsystemDescriptors = new List(); - SubsystemManager.GetSubsystemDescriptors(displaySubsystemDescriptors); - if (displaySubsystemDescriptors.Count > 0) - return displaySubsystemDescriptors[0]; + if (s_displaySubsystemDescriptors == null) + s_displaySubsystemDescriptors = new List(); + SubsystemManager.GetSubsystemDescriptors(s_displaySubsystemDescriptors); + if (s_displaySubsystemDescriptors.Count > 0) + return s_displaySubsystemDescriptors[0]; return null; } -#endif - - + static List s_inputSubsystems; + public static XRInputSubsystem GetCurrentInputSubsystem() + { + if (s_inputSubsystems == null) + s_inputSubsystems = new List(); + SubsystemManager.GetInstances(s_inputSubsystems); + if (s_inputSubsystems.Count > 0) + return s_inputSubsystems[0]; + return null; + } +#endif void Initialize() { @@ -1416,15 +1605,9 @@ void Initialize() if (boundary == null) boundary = new OVRBoundary(); - reorientHMDOnControllerRecenter = _reorientHMDOnControllerRecenter; SetCurrentXRDevice(); - } -#if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || OVR_ANDROID_MRC - private bool suppressDisableMixedRealityBecauseOfNoMainCameraWarning = false; -#endif - private void Update() { //Only if we're using the XR SDK do we have to check if OVRManager isn't yet initialized, and init it. @@ -1640,7 +1823,6 @@ private void Update() if (enableAdaptiveResolution) { -#if UNITY_2017_2_OR_NEWER if (Settings.eyeTextureResolutionScale < maxRenderScale) { // Allocate renderScale to max to avoid re-allocation @@ -1657,23 +1839,6 @@ private void Update() recommendedViewportScale /= Settings.eyeTextureResolutionScale; recommendedViewportScale = Mathf.Clamp(recommendedViewportScale, minViewportScale, 1.0f); Settings.renderViewportScale = recommendedViewportScale; -#else - if (UnityEngine.VR.VRSettings.renderScale < maxRenderScale) - { - // Allocate renderScale to max to avoid re-allocation - UnityEngine.VR.VRSettings.renderScale = maxRenderScale; - } - else - { - // Adjusting maxRenderScale in case app started with a larger renderScale value - maxRenderScale = Mathf.Max(maxRenderScale, UnityEngine.VR.VRSettings.renderScale); - } - minRenderScale = Mathf.Min(minRenderScale, maxRenderScale); - float minViewportScale = minRenderScale / UnityEngine.VR.VRSettings.renderScale; - float recommendedViewportScale = OVRPlugin.GetEyeRecommendedResolutionScale() / UnityEngine.VR.VRSettings.renderScale; - recommendedViewportScale = Mathf.Clamp(recommendedViewportScale, minViewportScale, 1.0f); - UnityEngine.VR.VRSettings.renderViewportScale = recommendedViewportScale; -#endif } #endif @@ -1758,18 +1923,44 @@ private void Update() display.Update(); OVRInput.Update(); + UpdateHMDEvents(); + #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || OVR_ANDROID_MRC - StaticUpdateMixedRealityCapture(this); + StaticUpdateMixedRealityCapture(this, gameObject, trackingOriginType); #endif } - private bool multipleMainCameraWarningPresented = false; - private Camera lastFoundMainCamera = null; - private Camera FindMainCamera() + private void UpdateHMDEvents() { - if (lastFoundMainCamera != null && lastFoundMainCamera.CompareTag("MainCamera")) + while(OVRPlugin.PollEvent(ref eventDataBuffer)) { - return lastFoundMainCamera; + switch(eventDataBuffer.EventType) + { + case OVRPlugin.EventType.DisplayRefreshRateChanged: + if(DisplayRefreshRateChanged != null) + { + float FromRefreshRate = BitConverter.ToSingle(eventDataBuffer.EventData, 0); + float ToRefreshRate = BitConverter.ToSingle(eventDataBuffer.EventData, 4); + DisplayRefreshRateChanged(FromRefreshRate, ToRefreshRate); + } + break; + default: + break; + } + } + } + + private static bool multipleMainCameraWarningPresented = false; + private static WeakReference lastFoundMainCamera = null; + private static Camera FindMainCamera() { + + Camera lastCamera; + if (lastFoundMainCamera != null && + lastFoundMainCamera.TryGetTarget(out lastCamera) && + lastCamera != null && + lastCamera.CompareTag("MainCamera")) + { + return lastCamera; } Camera result = null; @@ -1816,7 +2007,7 @@ private Camera FindMainCamera() { Debug.Log("[OVRManager] unable to find a vaild camera"); } - lastFoundMainCamera = result; + lastFoundMainCamera = new WeakReference(result); return result; } @@ -1898,13 +2089,14 @@ public static void PlatformUIConfirmQuit() public static bool staticMixedRealityCaptureInitialized = false; public static bool staticPrevEnableMixedRealityCapture = false; public static OVRMixedRealityCaptureSettings staticMrcSettings = null; + private static bool suppressDisableMixedRealityBecauseOfNoMainCameraWarning = false; - public static void StaticInitializeMixedRealityCapture(OVRManager instance) + public static void StaticInitializeMixedRealityCapture(OVRMixedRealityCaptureConfiguration configuration) { if (!staticMixedRealityCaptureInitialized) { staticMrcSettings = ScriptableObject.CreateInstance(); - staticMrcSettings.ReadFrom(OVRManager.instance); + staticMrcSettings.ReadFrom(configuration); #if OVR_ANDROID_MRC bool mediaInitialized = OVRPlugin.Media.Initialize(); @@ -1920,12 +2112,12 @@ public static void StaticInitializeMixedRealityCapture(OVRManager instance) OVRPlugin.Media.SetMrcInputVideoBufferType(OVRPlugin.Media.InputVideoBufferType.TextureHandle); Debug.LogFormat("[MRC] Active InputVideoBufferType:{0}", OVRPlugin.Media.GetMrcInputVideoBufferType()); - if (instance.mrcActivationMode == MrcActivationMode.Automatic) + if (configuration.mrcActivationMode == MrcActivationMode.Automatic) { OVRPlugin.Media.SetMrcActivationMode(OVRPlugin.Media.MrcActivationMode.Automatic); Debug.LogFormat("[MRC] ActivateMode: Automatic"); } - else if (instance.mrcActivationMode == MrcActivationMode.Disabled) + else if (configuration.mrcActivationMode == MrcActivationMode.Disabled) { OVRPlugin.Media.SetMrcActivationMode(OVRPlugin.Media.MrcActivationMode.Disabled); Debug.LogFormat("[MRC] ActivateMode: Disabled"); @@ -1943,11 +2135,11 @@ public static void StaticInitializeMixedRealityCapture(OVRManager instance) } else { - staticMrcSettings.ApplyTo(instance); + staticMrcSettings.ApplyTo(configuration); } } - public static void StaticUpdateMixedRealityCapture(OVRManager instance) + public static void StaticUpdateMixedRealityCapture(OVRMixedRealityCaptureConfiguration configuration, GameObject gameObject, TrackingOrigin trackingOrigin) { if (!staticMixedRealityCaptureInitialized) { @@ -1955,8 +2147,8 @@ public static void StaticUpdateMixedRealityCapture(OVRManager instance) } #if OVR_ANDROID_MRC - instance.enableMixedReality = OVRPlugin.Media.GetInitialized() && OVRPlugin.Media.IsMrcActivated(); - instance.compositionMethod = CompositionMethod.External; // force external composition on Android MRC + configuration.enableMixedReality = OVRPlugin.Media.GetInitialized() && OVRPlugin.Media.IsMrcActivated(); + configuration.compositionMethod = CompositionMethod.External; // force external composition on Android MRC if (OVRPlugin.Media.GetInitialized()) { @@ -1964,50 +2156,50 @@ public static void StaticUpdateMixedRealityCapture(OVRManager instance) } #endif - if (instance.enableMixedReality && !staticPrevEnableMixedRealityCapture) + if (configuration.enableMixedReality && !staticPrevEnableMixedRealityCapture) { OVRPlugin.SendEvent("mixed_reality_capture", "activated"); Debug.Log("MixedRealityCapture: activate"); } - if (!instance.enableMixedReality && staticPrevEnableMixedRealityCapture) + if (!configuration.enableMixedReality && staticPrevEnableMixedRealityCapture) { Debug.Log("MixedRealityCapture: deactivate"); } - if (instance.enableMixedReality || staticPrevEnableMixedRealityCapture) + if (configuration.enableMixedReality || staticPrevEnableMixedRealityCapture) { - Camera mainCamera = instance.FindMainCamera(); - if (Camera.main != null) + Camera mainCamera = FindMainCamera(); + if (mainCamera != null) { - instance.suppressDisableMixedRealityBecauseOfNoMainCameraWarning = false; + suppressDisableMixedRealityBecauseOfNoMainCameraWarning = false; - if (instance.enableMixedReality) + if (configuration.enableMixedReality) { - OVRMixedReality.Update(instance.gameObject, mainCamera, instance.compositionMethod, instance.useDynamicLighting, instance.capturingCameraDevice, instance.depthQuality); + OVRMixedReality.Update(gameObject, mainCamera, configuration, trackingOrigin); } - if (staticPrevEnableMixedRealityCapture && !instance.enableMixedReality) + if (staticPrevEnableMixedRealityCapture && !configuration.enableMixedReality) { OVRMixedReality.Cleanup(); } - staticPrevEnableMixedRealityCapture = instance.enableMixedReality; + staticPrevEnableMixedRealityCapture = configuration.enableMixedReality; } else { - if (!instance.suppressDisableMixedRealityBecauseOfNoMainCameraWarning) + if (!suppressDisableMixedRealityBecauseOfNoMainCameraWarning) { Debug.LogWarning("Main Camera is not set, Mixed Reality disabled"); - instance.suppressDisableMixedRealityBecauseOfNoMainCameraWarning = true; + suppressDisableMixedRealityBecauseOfNoMainCameraWarning = true; } } } - staticMrcSettings.ReadFrom(OVRManager.instance); + staticMrcSettings.ReadFrom(configuration); } - public static void StaticShutdownMixedRealityCapture(OVRManager instance) + public static void StaticShutdownMixedRealityCapture(OVRMixedRealityCaptureConfiguration configuration) { if (staticMixedRealityCaptureInitialized) { @@ -2027,4 +2219,6 @@ public static void StaticShutdownMixedRealityCapture(OVRManager instance) } #endif + + } diff --git a/Assets/Oculus/VR/Scripts/OVRMixedReality.cs b/Assets/Oculus/VR/Scripts/OVRMixedReality.cs index 8567aaef..154e8f7b 100644 --- a/Assets/Oculus/VR/Scripts/OVRMixedReality.cs +++ b/Assets/Oculus/VR/Scripts/OVRMixedReality.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -50,7 +46,7 @@ internal static class OVRMixedReality /// Updates the internal state of the Mixed Reality Camera. Called by OVRManager. /// - public static void Update(GameObject parentObject, Camera mainCamera, OVRManager.CompositionMethod compositionMethod, bool useDynamicLighting, OVRManager.CameraDevice cameraDevice, OVRManager.DepthQuality depthQuality) + public static void Update(GameObject parentObject, Camera mainCamera, OVRMixedRealityCaptureConfiguration configuration, OVRManager.TrackingOrigin trackingOrigin) { if (!OVRPlugin.initialized) { @@ -86,34 +82,34 @@ public static void Update(GameObject parentObject, Camera mainCamera, OVRManager useFakeExternalCamera = OVRPlugin.Media.UseMrcDebugCamera(); #endif - if (currentComposition != null && currentComposition.CompositionMethod() != compositionMethod) + if (currentComposition != null && (currentComposition.CompositionMethod() != configuration.compositionMethod)) { currentComposition.Cleanup(); currentComposition = null; } - if (compositionMethod == OVRManager.CompositionMethod.External) + if (configuration.compositionMethod == OVRManager.CompositionMethod.External) { if (currentComposition == null) { - currentComposition = new OVRExternalComposition(parentObject, mainCamera); + currentComposition = new OVRExternalComposition(parentObject, mainCamera, configuration); } } #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN - else if (compositionMethod == OVRManager.CompositionMethod.Direct) + else if (configuration.compositionMethod == OVRManager.CompositionMethod.Direct) { if (currentComposition == null) { - currentComposition = new OVRDirectComposition(parentObject, mainCamera, cameraDevice, useDynamicLighting, depthQuality); + currentComposition = new OVRDirectComposition(parentObject, mainCamera, configuration); } } #endif else { - Debug.LogError("Unknown CompositionMethod : " + compositionMethod); + Debug.LogError("Unknown CompositionMethod : " + configuration.compositionMethod); return; } - currentComposition.Update(parentObject, mainCamera); + currentComposition.Update(parentObject, mainCamera, configuration, trackingOrigin); } public static void Cleanup() diff --git a/Assets/Oculus/VR/Scripts/OVROnCompleteListener.cs b/Assets/Oculus/VR/Scripts/OVROnCompleteListener.cs index 8f6c6d2a..bb220b94 100644 --- a/Assets/Oculus/VR/Scripts/OVROnCompleteListener.cs +++ b/Assets/Oculus/VR/Scripts/OVROnCompleteListener.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/OVROverlay.cs b/Assets/Oculus/VR/Scripts/OVROverlay.cs index 745d6a83..0ece02e1 100644 --- a/Assets/Oculus/VR/Scripts/OVROverlay.cs +++ b/Assets/Oculus/VR/Scripts/OVROverlay.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -18,12 +14,7 @@ permissions and limitations under the License. using System; using System.Collections; using System.Runtime.InteropServices; - -#if UNITY_2017_2_OR_NEWER -using Settings = UnityEngine.XR.XRSettings; -#else -using Settings = UnityEngine.VR.VRSettings; -#endif +using System.Collections.Generic; /// /// Add OVROverlay script to an object with an optional mesh primitive @@ -51,6 +42,7 @@ permissions and limitations under the License. /// Which is usually not what people wanted, we don't kill the ability for developer to do so here, but will warn out. /// 5. Equirect: Display overlay as a 360-degree equirectangular skybox. /// +[ExecuteInEditMode] public class OVROverlay : MonoBehaviour { #region Interface @@ -65,6 +57,7 @@ public enum OverlayShape Cubemap = OVRPlugin.OverlayShape.Cubemap, OffcenterCubemap = OVRPlugin.OverlayShape.OffcenterCubemap, Equirect = OVRPlugin.OverlayShape.Equirect, + Fisheye = OVRPlugin.OverlayShape.Fisheye, } /// @@ -101,6 +94,9 @@ public enum OverlayType public Rect destRectLeft = new Rect(); public Rect destRectRight = new Rect(); + // Used to support legacy behavior where the top left was considered the origin + public bool invertTextureRects = false; + private OVRPlugin.TextureRectMatrixf textureRectMatrix = OVRPlugin.TextureRectMatrixf.zero; public bool overrideTextureRectMatrix = false; @@ -167,6 +163,27 @@ public enum OverlayType [Tooltip("When checked, the texture is treated as if the alpha was already premultiplied")] public bool isAlphaPremultiplied = false; + /// + /// Preview the overlay in the editor using a mesh renderer. + /// + public bool previewInEditor { + get { + return _previewInEditor; + } + set { + if (_previewInEditor != value) { + _previewInEditor = value; + SetupEditorPreview(); + } + } + } + + [SerializeField] + private bool _previewInEditor = false; + +#if UNITY_EDITOR + private GameObject previewObject; +#endif protected IntPtr[] texturePtrs = new IntPtr[] { IntPtr.Zero, IntPtr.Zero }; @@ -185,17 +202,9 @@ public enum OverlayType /// Use this function to set texture and texNativePtr when app is running /// GetNativeTexturePtr is a slow behavior, the value should be pre-cached /// -#if UNITY_2017_2_OR_NEWER public void OverrideOverlayTextureInfo(Texture srcTexture, IntPtr nativePtr, UnityEngine.XR.XRNode node) -#else - public void OverrideOverlayTextureInfo(Texture srcTexture, IntPtr nativePtr, UnityEngine.VR.VRNode node) -#endif { -#if UNITY_2017_2_OR_NEWER int index = (node == UnityEngine.XR.XRNode.RightEye) ? 1 : 0; -#else - int index = (node == UnityEngine.VR.VRNode.RightEye) ? 1 : 0; -#endif if (textures.Length <= index) return; @@ -250,6 +259,11 @@ private struct LayerTexture { private int texturesPerStage { get { return (layout == OVRPlugin.LayerLayout.Stereo) ? 2 : 1; } } + private static bool NeedsTexturesForShape(OverlayShape shape) + { + return true; + } + private bool CreateLayer(int mipLevels, int sampleCount, OVRPlugin.EyeTextureFormat etFormat, int flags, OVRPlugin.Sizei size, OVRPlugin.OverlayShape shape) { if (!layerIdHandle.IsAllocated || layerIdPtr == IntPtr.Zero) @@ -361,10 +375,8 @@ private bool CreateLayerTextures(bool useMipmaps, OVRPlugin.Sizei size, bool isH if (currentOverlayShape != OverlayShape.Cubemap && currentOverlayShape != OverlayShape.OffcenterCubemap) sc = Texture2D.CreateExternalTexture(size.w, size.h, txFormat, useMipmaps, true, scPtr); -#if UNITY_2017_1_OR_NEWER else sc = Cubemap.CreateExternalTexture(size.w, txFormat, useMipmaps, scPtr); -#endif layerTextures[eyeId].swapChain[stage] = sc; layerTextures[eyeId].swapChainPtr[stage] = scPtr; @@ -433,16 +445,29 @@ public void SetSrcDestRects(Rect srcLeft, Rect srcRight, Rect destLeft, Rect des public void UpdateTextureRectMatrix() { - Rect srcRectLeftConverted = new Rect(srcRectLeft.x, 1 - srcRectLeft.y - srcRectLeft.height, srcRectLeft.width, srcRectLeft.height); - Rect srcRectRightConverted = new Rect(srcRectRight.x, 1 - srcRectRight.y - srcRectRight.height, srcRectRight.width, srcRectRight.height); + // External surfaces are encoded with reversed UV's, so our texture rects are also inverted + Rect srcRectLeftConverted = new Rect(srcRectLeft.x, isExternalSurface ^ invertTextureRects ? 1 - srcRectLeft.y - srcRectLeft.height : srcRectLeft.y, srcRectLeft.width, srcRectLeft.height); + Rect srcRectRightConverted = new Rect(srcRectRight.x, isExternalSurface ^ invertTextureRects ? 1 - srcRectRight.y - srcRectRight.height : srcRectRight.y, srcRectRight.width, srcRectRight.height); + Rect destRectLeftConverted = new Rect(destRectLeft.x, isExternalSurface ^ invertTextureRects ? 1 - destRectLeft.y - destRectLeft.height : destRectLeft.y, destRectLeft.width, destRectLeft.height); + Rect destRectRightConverted = new Rect(destRectRight.x, isExternalSurface ^ invertTextureRects ? 1 - destRectRight.y - destRectRight.height : destRectRight.y, destRectRight.width, destRectRight.height); textureRectMatrix.leftRect = srcRectLeftConverted; textureRectMatrix.rightRect = srcRectRightConverted; - float leftWidthFactor = srcRectLeftConverted.width / destRectLeft.width; - float leftHeightFactor = srcRectLeftConverted.height / destRectLeft.height; - textureRectMatrix.leftScaleBias = new Vector4(leftWidthFactor, leftHeightFactor, srcRectLeftConverted.x - destRectLeft.x * leftWidthFactor, srcRectLeftConverted.y - destRectLeft.y * leftHeightFactor); - float rightWidthFactor = srcRectRightConverted.width / destRectRight.width; - float rightHeightFactor = srcRectRightConverted.height / destRectRight.height; - textureRectMatrix.rightScaleBias = new Vector4(rightWidthFactor, rightHeightFactor, srcRectRightConverted.x - destRectRight.x * rightWidthFactor, srcRectRightConverted.y - destRectRight.y * rightHeightFactor); + + // Fisheye layer requires a 0.5f offset for texture to be centered on the fisheye projection + if (currentOverlayShape == OverlayShape.Fisheye) + { + destRectLeftConverted.x -= 0.5f; + destRectLeftConverted.y -= 0.5f; + destRectRightConverted.x -= 0.5f; + destRectRightConverted.y -= 0.5f; + } + + float leftWidthFactor = srcRectLeft.width / destRectLeft.width; + float leftHeightFactor = srcRectLeft.height / destRectLeft.height; + textureRectMatrix.leftScaleBias = new Vector4(leftWidthFactor, leftHeightFactor, srcRectLeftConverted.x - destRectLeftConverted.x * leftWidthFactor, srcRectLeftConverted.y - destRectLeftConverted.y * leftHeightFactor); + float rightWidthFactor = srcRectRight.width / destRectRight.width; + float rightHeightFactor = srcRectRight.height / destRectRight.height; + textureRectMatrix.rightScaleBias = new Vector4(rightWidthFactor, rightHeightFactor, srcRectRightConverted.x - destRectRightConverted.x * rightWidthFactor, srcRectRightConverted.y - destRectRightConverted.y * rightHeightFactor); } public void SetPerLayerColorScaleAndOffset(Vector4 scale, Vector4 offset) @@ -517,7 +542,7 @@ private OVRPlugin.LayerDesc GetCurrentLayerDesc() textureSize.w = externalSurfaceWidth; textureSize.h = externalSurfaceHeight; } - else + else if (NeedsTexturesForShape(currentOverlayShape)) { if (textures[0] == null) { @@ -584,7 +609,7 @@ private Rect GetBlitRect(int eyeId) return eyeId == 0 ? srcRectLeft : srcRectRight; } else - { + { // Get intersection of both rects if we use the same texture for both eyes float minX = Mathf.Min(srcRectLeft.x, srcRectRight.x); float minY = Mathf.Min(srcRectLeft.y, srcRectRight.y); @@ -647,15 +672,12 @@ private bool PopulateLayer(int mipLevels, bool isHdr, OVRPlugin.Sizei size, int bool dataIsLinear = isHdr || (QualitySettings.activeColorSpace == ColorSpace.Linear); var rt = textures[eyeId] as RenderTexture; -#if !UNITY_2017_1_OR_NEWER - dataIsLinear |= rt != null && rt.sRGB; //HACK: Unity 5.6 and earlier convert to linear on read from sRGB RenderTexture. -#endif #if UNITY_ANDROID && !UNITY_EDITOR dataIsLinear = true; //HACK: Graphics.CopyTexture causes linear->srgb conversion on target write with D3D but not GLES. #endif // PC requries premultiplied Alpha bool requiresPremultipliedAlpha = !Application.isMobilePlatform; - + bool linearToSRGB = !isHdr && dataIsLinear; // if the texture needs to be premultiplied, premultiply it unless its already premultiplied bool premultiplyAlpha = requiresPremultipliedAlpha && !isAlphaPremultiplied; @@ -670,7 +692,6 @@ private bool PopulateLayer(int mipLevels, bool isHdr, OVRPlugin.Sizei size, int if (width < 1) width = 1; int height = size.h >> mip; if (height < 1) height = 1; -#if UNITY_2017_1_1 || UNITY_2017_2_OR_NEWER RenderTextureDescriptor descriptor = new RenderTextureDescriptor(width, height, rtFormat, 0); descriptor.msaaSamples = sampleCount; descriptor.useMipMap = true; @@ -678,9 +699,6 @@ private bool PopulateLayer(int mipLevels, bool isHdr, OVRPlugin.Sizei size, int descriptor.sRGB = false; tempRTDst = RenderTexture.GetTemporary(descriptor); -#else - tempRTDst = RenderTexture.GetTemporary(width, height, 0, rtFormat, RenderTextureReadWrite.Linear, sampleCount); -#endif if (!tempRTDst.IsCreated()) { @@ -723,7 +741,6 @@ private bool PopulateLayer(int mipLevels, bool isHdr, OVRPlugin.Sizei size, int Graphics.CopyTexture(tempRTDst, 0, 0, et, 0, mip); } } -#if UNITY_2017_1_OR_NEWER else // Cubemap { for (int face = 0; face < 6; ++face) @@ -741,7 +758,6 @@ private bool PopulateLayer(int mipLevels, bool isHdr, OVRPlugin.Sizei size, int } } } -#endif if (tempRTDst != null) { RenderTexture.ReleaseTemporary(tempRTDst); @@ -761,9 +777,10 @@ private bool SubmitLayer(bool overlay, bool headLocked, bool noDepthBufferTestin { UpdateTextureRectMatrix(); } + bool noTextures = isExternalSurface || !NeedsTexturesForShape(currentOverlayShape); bool isOverlayVisible = OVRPlugin.EnqueueSubmitLayer(overlay, headLocked, noDepthBufferTesting, - isExternalSurface ? System.IntPtr.Zero : layerTextures[0].appTexturePtr, - isExternalSurface ? System.IntPtr.Zero : layerTextures[rightEyeIndex].appTexturePtr, + noTextures ? System.IntPtr.Zero : layerTextures[0].appTexturePtr, + noTextures ? System.IntPtr.Zero : layerTextures[rightEyeIndex].appTexturePtr, layerId, frameIndex, pose.flipZ().ToPosef_Legacy(), scale.ToVector3f(), layerIndex, (OVRPlugin.OverlayShape)currentOverlayShape, overrideTextureRectMatrix, textureRectMatrix, overridePerLayerColorScaleAndOffset, colorScale, colorOffset, useExpensiveSuperSample, hidden); @@ -773,17 +790,41 @@ private bool SubmitLayer(bool overlay, bool headLocked, bool noDepthBufferTestin return isOverlayVisible; } -#region Unity Messages + private void SetupEditorPreview() + { + #if UNITY_EDITOR + if (previewInEditor && previewObject == null) + { + previewObject = new GameObject(); + previewObject.hideFlags = HideFlags.HideAndDontSave; + previewObject.transform.SetParent(this.transform, false); + OVROverlayMeshGenerator generator = previewObject.AddComponent(); + generator.SetOverlay(this); + + } + else if (!previewInEditor && previewObject != null) + { + UnityEngine.Object.DestroyImmediate(previewObject); + previewObject = null; + } + #endif + } + + + #region Unity Messages void Awake() { Debug.Log("Overlay Awake"); - if (tex2DMaterial == null) - tex2DMaterial = new Material(Shader.Find("Oculus/Texture2D Blit")); + if (Application.isPlaying) + { + if (tex2DMaterial == null) + tex2DMaterial = new Material(Shader.Find("Oculus/Texture2D Blit")); - if (cubeMaterial == null) - cubeMaterial = new Material(Shader.Find("Oculus/Cubemap Blit")); + if (cubeMaterial == null) + cubeMaterial = new Material(Shader.Find("Oculus/Cubemap Blit")); + } rend = GetComponent(); @@ -793,6 +834,8 @@ void Awake() // Backward compatibility if (rend != null && textures[0] == null) textures[0] = rend.material.mainTexture; + + SetupEditorPreview(); } static public string OpenVROverlayKey { get { return "unity:" + Application.companyName + "." + Application.productName; } } @@ -802,6 +845,12 @@ void OnEnable() { if (OVRManager.OVRManagerinitialized) InitOVROverlay(); + + #if UNITY_EDITOR + if (previewObject != null) { + previewObject.SetActive(true); + } + #endif } void InitOVROverlay() @@ -838,6 +887,13 @@ void InitOVROverlay() void OnDisable() { + + #if UNITY_EDITOR + if (previewObject != null) { + previewObject.SetActive(false); + } + #endif + if ((gameObject.hideFlags & HideFlags.DontSaveInBuild) != 0) return; @@ -872,6 +928,12 @@ void OnDestroy() { DestroyLayerTextures(); DestroyLayer(); + + #if UNITY_EDITOR + if (previewObject != null) { + GameObject.DestroyImmediate(previewObject); + } + #endif } bool ComputeSubmit(ref OVRPose pose, ref Vector3 scale, ref bool overlay, ref bool headLocked) @@ -891,8 +953,11 @@ bool ComputeSubmit(ref OVRPose pose, ref Vector3 scale, ref bool overlay, ref bo if (currentOverlayShape == OverlayShape.Cubemap) { #if UNITY_ANDROID && !UNITY_EDITOR - //HACK: VRAPI cubemaps assume are yawed 180 degrees relative to LibOVR. - pose.orientation = pose.orientation * Quaternion.AngleAxis(180, Vector3.up); + if (OVRPlugin.nativeXrApi != OVRPlugin.XrApi.OpenXR) + { + //HACK: VRAPI cubemaps assume are yawed 180 degrees relative to LibOVR. + pose.orientation = pose.orientation * Quaternion.AngleAxis(180, Vector3.up); + } #endif pose.position = headCamera.transform.position; } @@ -908,8 +973,8 @@ bool ComputeSubmit(ref OVRPose pose, ref Vector3 scale, ref bool overlay, ref bo } } - // Cylinder overlay sanity checking - if (currentOverlayShape == OverlayShape.Cylinder) + // Cylinder overlay sanity checking when not using OpenXR + if (OVRPlugin.nativeXrApi != OVRPlugin.XrApi.OpenXR && currentOverlayShape == OverlayShape.Cylinder) { float arcAngle = scale.x / scale.z / (float)Math.PI * 180.0f; if (arcAngle > 180.0f) @@ -991,8 +1056,12 @@ void LateUpdate() // The overlay must be specified every eye frame, because it is positioned relative to the // current head location. If frames are dropped, it will be time warped appropriately, // just like the eye buffers. - if (currentOverlayType == OverlayType.None || ((textures.Length < texturesPerStage || textures[0] == null) && !isExternalSurface)) + bool requiresTextures = !isExternalSurface && NeedsTexturesForShape(currentOverlayShape); + if (currentOverlayType == OverlayType.None || + (requiresTextures && (textures.Length < texturesPerStage || textures[0] == null))) + { return; + } OVRPose pose = OVRPose.identity; Vector3 scale = Vector3.one; @@ -1012,8 +1081,12 @@ void LateUpdate() OVRPlugin.LayerDesc newDesc = GetCurrentLayerDesc(); bool isHdr = (newDesc.Format == OVRPlugin.EyeTextureFormat.R16G16B16A16_FP); - // If the layer and textures are created but sizes differ, force re-creating them - if (!layerDesc.TextureSize.Equals(newDesc.TextureSize) && layerId > 0) + // If the layer and textures are created but sizes differ, force re-creating them. + // If the layer needed textures but does not anymore (or vice versa), re-create as well. + bool textureSizesDiffer = !layerDesc.TextureSize.Equals(newDesc.TextureSize) && layerId > 0; + bool needsTextures = NeedsTexturesForShape(currentOverlayShape); + bool needsTextureChanged = NeedsTexturesForShape(prevOverlayShape) != needsTextures; + if (textureSizesDiffer || needsTextureChanged) { DestroyLayerTextures(); DestroyLayer(); @@ -1021,27 +1094,39 @@ void LateUpdate() bool createdLayer = CreateLayer(newDesc.MipLevels, newDesc.SampleCount, newDesc.Format, newDesc.LayerFlags, newDesc.TextureSize, newDesc.Shape); + if (layerIndex == -1 || layerId <= 0) + { + if (createdLayer) + { + // Propagate the current shape and avoid the permanent state of "needs texture changed" + prevOverlayShape = currentOverlayShape; + } return; + } - bool useMipmaps = (newDesc.MipLevels > 1); - - createdLayer |= CreateLayerTextures(useMipmaps, newDesc.TextureSize, isHdr); + if (needsTextures) + { + bool useMipmaps = (newDesc.MipLevels > 1); - if (!isExternalSurface && (layerTextures[0].appTexture as RenderTexture != null)) - isDynamic = true; + createdLayer |= CreateLayerTextures(useMipmaps, newDesc.TextureSize, isHdr); - if (!LatchLayerTextures()) - return; + if (!isExternalSurface && (layerTextures[0].appTexture as RenderTexture != null)) + isDynamic = true; - // Don't populate the same frame image twice. - if (frameIndex > prevFrameIndex) - { - int stage = frameIndex % stageCount; - if (!PopulateLayer (newDesc.MipLevels, isHdr, newDesc.TextureSize, newDesc.SampleCount, stage)) + if (!LatchLayerTextures()) return; + + // Don't populate the same frame image twice. + if (frameIndex > prevFrameIndex) + { + int stage = frameIndex % stageCount; + if (!PopulateLayer(newDesc.MipLevels, isHdr, newDesc.TextureSize, newDesc.SampleCount, stage)) + return; + } } + bool isOverlayVisible = SubmitLayer(overlay, headLocked, noDepthBufferTesting, pose, scale, frameIndex); prevFrameIndex = frameIndex; diff --git a/Assets/Oculus/VR/Scripts/OVROverlayMeshGenerator.cs b/Assets/Oculus/VR/Scripts/OVROverlayMeshGenerator.cs new file mode 100644 index 00000000..0ea5b611 --- /dev/null +++ b/Assets/Oculus/VR/Scripts/OVROverlayMeshGenerator.cs @@ -0,0 +1,434 @@ +/************************************************************************************ +Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. + +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ + +Unless required by applicable law or agreed to in writing, the Utilities SDK distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF +ANY KIND, either express or implied. See the License for the specific language governing +permissions and limitations under the License. +************************************************************************************/ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +/// +/// When attached to a GameObject with an OVROverlay component, OVROverlayMeshGenerator will use a mesh renderer +/// to preview the appearance of the OVROverlay as it would appear as a TimeWarp overlay on a headset. +/// +[RequireComponent(typeof(MeshFilter))] +[RequireComponent(typeof(MeshRenderer))] +[ExecuteInEditMode] +public class OVROverlayMeshGenerator : MonoBehaviour { + + private Mesh _Mesh; + private List _Verts = new List(); + private List _UV = new List(); + private List _Tris = new List(); + private OVROverlay _Overlay; + private MeshFilter _MeshFilter; + private MeshCollider _MeshCollider; + private MeshRenderer _MeshRenderer; + private Transform _CameraRoot; + private Transform _Transform; + + private OVROverlay.OverlayShape _LastShape; + private Vector3 _LastPosition; + private Quaternion _LastRotation; + private Vector3 _LastScale; + private Rect _LastDestRectLeft; + private Rect _LastDestRectRight; + private Rect _LastSrcRectLeft; + private Texture _LastTexture; + + private bool _Awake = false; + + protected void Awake() + { + _MeshFilter = GetComponent(); + _MeshCollider = GetComponent(); + _MeshRenderer = GetComponent(); + + _Transform = transform; + if (Camera.main && Camera.main.transform.parent) + { + _CameraRoot = Camera.main.transform.parent; + } + + _Awake = true; + } + + public void SetOverlay(OVROverlay overlay) { + _Overlay = overlay; + } + + private Rect GetBoundingRect(Rect a, Rect b) + { + float xMin = Mathf.Min(a.x, b.x); + float xMax = Mathf.Max(a.x + a.width, b.x + b.width); + float yMin = Mathf.Min(a.y, b.y); + float yMax = Mathf.Max(a.y + a.height, b.y + b.height); + + return new Rect(xMin, yMin, xMax - xMin, yMax - yMin); + } + + protected void OnEnable() { + #if UNITY_EDITOR + UnityEditor.EditorApplication.update += Update; + #endif + } + + protected void OnDisable() { + #if UNITY_EDITOR + UnityEditor.EditorApplication.update -= Update; + #endif + } + + private void Update() + { + if (!Application.isEditor) + { + return; + } + + if (!_Awake) + { + Awake(); + } + + if (_Overlay) + { + OVROverlay.OverlayShape shape = _Overlay.currentOverlayShape; + Vector3 position = _CameraRoot ? (_Transform.position - _CameraRoot.position) : _Transform.position; + Quaternion rotation = _Transform.rotation; + Vector3 scale = _Transform.lossyScale; + Rect destRectLeft = _Overlay.overrideTextureRectMatrix ? _Overlay.destRectLeft : new Rect(0, 0, 1, 1); + Rect destRectRight = _Overlay.overrideTextureRectMatrix ? _Overlay.destRectRight : new Rect(0, 0, 1, 1); + Rect srcRectLeft = _Overlay.overrideTextureRectMatrix ? _Overlay.srcRectLeft : new Rect(0, 0, 1, 1); + Texture texture = _Overlay.textures[0]; + + // Re-generate the mesh if necessary + if (_Mesh == null || + _LastShape != shape || + _LastPosition != position || + _LastRotation != rotation || + _LastScale != scale || + _LastDestRectLeft != destRectLeft || + _LastDestRectRight != destRectRight) + { + UpdateMesh(shape, position, rotation, scale, GetBoundingRect(destRectLeft, destRectRight)); + _LastShape = shape; + _LastPosition = position; + _LastRotation = rotation; + _LastScale = scale; + _LastDestRectLeft = destRectLeft; + _LastDestRectRight = destRectRight; + } + + // Generate the material and update textures if necessary + if (_MeshRenderer.sharedMaterial == null) + { + Material previewMat = new Material(Shader.Find("Unlit/Transparent")); + _MeshRenderer.sharedMaterial = previewMat; + } + + if (_MeshRenderer.sharedMaterial.mainTexture != texture && !_Overlay.isExternalSurface) + { + _MeshRenderer.sharedMaterial.mainTexture = texture; + } + + if (_LastSrcRectLeft != srcRectLeft) + { + _MeshRenderer.sharedMaterial.mainTextureOffset = srcRectLeft.position; + _MeshRenderer.sharedMaterial.mainTextureScale = srcRectLeft.size; + _LastSrcRectLeft = srcRectLeft; + } + } + } + + private void UpdateMesh(OVROverlay.OverlayShape shape, Vector3 position, Quaternion rotation, Vector3 scale, Rect rect) + { + if (_MeshFilter) + { + if (_Mesh == null) + { + _Mesh = new Mesh() { name = "Overlay" }; + _Mesh.hideFlags = HideFlags.DontSaveInBuild | HideFlags.DontSaveInEditor; + } + _Mesh.Clear(); + _Verts.Clear(); + _UV.Clear(); + _Tris.Clear(); + + GenerateMesh(_Verts, _UV, _Tris, shape, position, rotation, scale, rect); + + _Mesh.SetVertices(_Verts); + _Mesh.SetUVs(0, _UV); + _Mesh.SetTriangles(_Tris, 0); + _Mesh.UploadMeshData(false); + + _MeshFilter.sharedMesh = _Mesh; + + if (_MeshCollider) + { + _MeshCollider.sharedMesh = _Mesh; + } + } + } + + + public static void GenerateMesh(List verts, List uvs, List tris, OVROverlay.OverlayShape shape, Vector3 position, Quaternion rotation, Vector3 scale, Rect rect) + { + switch (shape) + { + case OVROverlay.OverlayShape.Equirect: + BuildSphere(verts, uvs, tris, position, rotation, scale, rect); + break; + case OVROverlay.OverlayShape.Cubemap: + case OVROverlay.OverlayShape.OffcenterCubemap: + BuildCube(verts, uvs, tris, position, rotation, scale); + break; + case OVROverlay.OverlayShape.Quad: + BuildQuad(verts, uvs, tris, rect); + break; + case OVROverlay.OverlayShape.Cylinder: + BuildHemicylinder(verts, uvs, tris, scale, rect); + break; + } + } + + private static Vector2 GetSphereUV(float theta, float phi, float expand_coef) + { + float thetaU = ((theta / (2 * Mathf.PI) - 0.5f) / expand_coef) + 0.5f; + float phiV = ((phi / Mathf.PI) / expand_coef) + 0.5f; + return new Vector2(thetaU, phiV); + } + + 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 expand_coef = 1.0f) + { + position = Quaternion.Inverse(rotation) * position; + + latitudes = Mathf.CeilToInt(latitudes * rect.height); + longitudes = Mathf.CeilToInt(longitudes * rect.width); + + float minTheta = Mathf.PI * 2 * ( rect.x); + float minPhi = Mathf.PI * (0.5f - rect.y - rect.height); + + float thetaScale = Mathf.PI * 2 * rect.width / longitudes; + float phiScale = Mathf.PI * rect.height / latitudes; + + 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, expand_coef); + uv.Add(new Vector2((suv.x - rect.x) / rect.width, (suv.y - rect.y) / rect.height)); + Vector3 vert = GetSphereVert(theta, phi); + vert.x = (worldScale * vert.x - position.x) / scale.x; + vert.y = (worldScale * vert.y - position.y) / scale.y; + vert.z = (worldScale * vert.z - position.z) / scale.z; + verts.Add(vert); + } + } + + 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); + } + } + } + + private enum CubeFace + { + Right, + Left, + Top, + Bottom, + Front, + Back, + COUNT + } + + private static readonly Vector3[] BottomLeft = new Vector3[] + { + new Vector3(-0.5f, -0.5f, -0.5f), + new Vector3(0.5f, -0.5f, 0.5f), + new Vector3(0.5f, 0.5f, -0.5f), + new Vector3(0.5f, -0.5f, 0.5f), + new Vector3(0.5f, -0.5f, -0.5f), + new Vector3(-0.5f, -0.5f, 0.5f) + }; + + private static readonly Vector3[] RightVector = new Vector3[] + { + Vector3.forward, + Vector3.back, + Vector3.left, + Vector3.left, + Vector3.left, + Vector3.right + }; + + private static readonly Vector3[] UpVector = new Vector3[] + { + Vector3.up, + Vector3.up, + Vector3.forward, + Vector3.back, + Vector3.up, + Vector3.up + }; + + private static Vector2 GetCubeUV(CubeFace face, Vector2 sideUV, float expand_coef) + { + sideUV = (sideUV - 0.5f * Vector2.one) / expand_coef + 0.5f * Vector2.one; + switch (face) + { + case CubeFace.Bottom: + return new Vector2(sideUV.x / 3, sideUV.y / 2); + case CubeFace.Front: + return new Vector2((1 + sideUV.x) / 3, sideUV.y / 2); + case CubeFace.Back: + return new Vector2((2 + sideUV.x) / 3, sideUV.y / 2); + case CubeFace.Right: + return new Vector2(sideUV.x / 3, (1 + sideUV.y) / 2); + case CubeFace.Left: + return new Vector2((1 + sideUV.x) / 3, (1 + sideUV.y) / 2); + case CubeFace.Top: + return new Vector2((2 + sideUV.x) / 3, (1 + sideUV.y) / 2); + default: + return Vector2.zero; + } + } + + private static Vector3 GetCubeVert(CubeFace face, Vector2 sideUV, float expand_coef) + { + return BottomLeft[(int)face] + sideUV.x * RightVector[(int)face] + sideUV.y * UpVector[(int)face]; + } + + public static void BuildCube(List verts, List uv, List triangles, Vector3 position, Quaternion rotation, Vector3 scale, float worldScale = 800, int subQuads = 1, float expand_coef = 1.01f) + { + position = Quaternion.Inverse(rotation) * position; + + int vertsPerSide = (subQuads + 1) * (subQuads + 1); + + for (int i = 0; i < (int)CubeFace.COUNT; i++) + { + for(int j = 0; j < subQuads + 1; j++) + { + for(int k = 0; k < subQuads + 1; k++) + { + float u = j / (float)subQuads; + float v = k / (float)subQuads; + + uv.Add(GetCubeUV((CubeFace)i, new Vector2(u, v), expand_coef)); + Vector3 vert = GetCubeVert((CubeFace)i, new Vector2(u, v), expand_coef); + vert.x = (worldScale * vert.x - position.x) / scale.x; + vert.y = (worldScale * vert.y - position.y) / scale.y; + vert.z = (worldScale * vert.z - position.z) / scale.z; + verts.Add(vert); + } + } + + for(int j = 0; j < subQuads; j++) + { + for(int k = 0; k < subQuads; k++) + { + triangles.Add(vertsPerSide * i + ((j + 1) * (subQuads + 1)) + k); + triangles.Add(vertsPerSide * i + (j * (subQuads + 1)) + k); + triangles.Add(vertsPerSide * i + ((j + 1) * (subQuads + 1)) + k + 1); + triangles.Add(vertsPerSide * i + ((j + 1) * (subQuads + 1)) + k + 1); + triangles.Add(vertsPerSide * i + (j * (subQuads + 1)) + k); + triangles.Add(vertsPerSide * i + (j * (subQuads + 1)) + k + 1); + } + } + } + } + + + public static void BuildQuad(List verts, List uv, List triangles, Rect rect) + { + verts.Add(new Vector3(rect.x - 0.5f, (1 - rect.y - rect.height) - 0.5f, 0)); + verts.Add(new Vector3(rect.x - 0.5f, (1 - rect.y) - 0.5f, 0)); + verts.Add(new Vector3(rect.x + rect.width - 0.5f, (1 - rect.y) - 0.5f, 0)); + verts.Add(new Vector3(rect.x + rect.width - 0.5f, (1 - rect.y - rect.height) - 0.5f, 0)); + + uv.Add(new Vector2(0, 0)); + uv.Add(new Vector2(0, 1)); + uv.Add(new Vector2(1, 1)); + uv.Add(new Vector2(1, 0)); + + triangles.Add(0); + triangles.Add(1); + triangles.Add(2); + triangles.Add(2); + triangles.Add(3); + triangles.Add(0); + } + + public static void BuildHemicylinder(List verts, List uv, List triangles, Vector3 scale, Rect rect, int longitudes = 128) + { + float height = Mathf.Abs(scale.y) * rect.height; + float radius = scale.z; + float arcLength = scale.x * rect.width; + + float arcAngle = arcLength / radius; + float minAngle = scale.x * (-0.5f + rect.x) / radius; + + int columns = Mathf.CeilToInt(longitudes * arcAngle / (2 * Mathf.PI)); + + // we don't want super tall skinny triangles because that can lead to artifacting. + // make triangles no more than 2x taller than wide + + float triangleWidth = arcLength / columns; + float ratio = height / triangleWidth; + + int rows = Mathf.CeilToInt(ratio / 2); + + for (int j = 0; j < rows + 1; j += 1) + { + for (int k = 0; k < columns + 1; k++) + { + uv.Add(new Vector2((k / (float)columns), 1 - (j / (float)rows))); + + Vector3 vert = Vector3.zero; + // because the scale is used to control the parameters, we need + // to reverse multiply by scale to appear correctly + vert.x = (Mathf.Sin(minAngle + (k * arcAngle / columns)) * radius) / scale.x; + + vert.y = (0.5f - rect.y - rect.height + rect.height * (1 - j / (float)rows)); + vert.z = (Mathf.Cos(minAngle + (k * arcAngle / columns)) * radius) / scale.z; + verts.Add(vert); + } + } + + for (int j = 0; j < rows; j++) + { + for (int k = 0; k < columns; k++) + { + triangles.Add((j * (columns + 1)) + k); + triangles.Add(((j + 1) * (columns + 1)) + k + 1); + triangles.Add(((j + 1) * (columns + 1)) + k); + triangles.Add(((j + 1) * (columns + 1)) + k + 1); + triangles.Add((j * (columns + 1)) + k); + triangles.Add((j * (columns + 1)) + k + 1); + } + } + } +} diff --git a/Assets/Oculus/VR/Scripts/OVROverlayMeshGenerator.cs.meta b/Assets/Oculus/VR/Scripts/OVROverlayMeshGenerator.cs.meta new file mode 100644 index 00000000..23d89396 --- /dev/null +++ b/Assets/Oculus/VR/Scripts/OVROverlayMeshGenerator.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 302cd5de63ddc99458f67a786f625bad +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Scripts/OVRPlatformMenu.cs b/Assets/Oculus/VR/Scripts/OVRPlatformMenu.cs index a6efd19f..6218d970 100644 --- a/Assets/Oculus/VR/Scripts/OVRPlatformMenu.cs +++ b/Assets/Oculus/VR/Scripts/OVRPlatformMenu.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -15,7 +11,6 @@ permissions and limitations under the License. ************************************************************************************/ using UnityEngine; -using VR = UnityEngine.VR; using System.Collections; using System.Collections.Generic; diff --git a/Assets/Oculus/VR/Scripts/OVRPlugin.cs b/Assets/Oculus/VR/Scripts/OVRPlugin.cs index fa68dbb1..45805594 100644 --- a/Assets/Oculus/VR/Scripts/OVRPlugin.cs +++ b/Assets/Oculus/VR/Scripts/OVRPlugin.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -18,6 +14,10 @@ permissions and limitations under the License. #define USING_XR_SDK #endif +#if UNITY_2020_1_OR_NEWER +#define REQUIRES_XR_SDK +#endif + #if !(UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || (UNITY_ANDROID && !UNITY_EDITOR)) #define OVRPLUGIN_UNSUPPORTED_PLATFORM #endif @@ -43,7 +43,7 @@ public static class OVRPlugin #if OVRPLUGIN_UNSUPPORTED_PLATFORM public static readonly System.Version wrapperVersion = _versionZero; #else - public static readonly System.Version wrapperVersion = OVRP_1_48_0.version; + public static readonly System.Version wrapperVersion = OVRP_1_57_0.version; #endif #if !OVRPLUGIN_UNSUPPORTED_PLATFORM @@ -133,18 +133,6 @@ public static System.Version nativeSDKVersion } } - public static bool supportsGearVR - { - get - { -#if OVRPLUGIN_UNSUPPORTED_PLATFORM - return false; -#else - return wrapperVersion > _versionZero && wrapperVersion <= OVRP_1_41_0.version; -#endif - } - } - [StructLayout(LayoutKind.Sequential)] private class GUID { @@ -181,6 +169,8 @@ public enum Result Failure_NotYetImplemented = -1005, Failure_OperationFailed = -1006, Failure_InsufficientSize = -1007, + Failure_DataIsInvalid = -1008, + Failure_DeprecatedOperation = -1009 } public enum CameraStatus @@ -190,9 +180,27 @@ public enum CameraStatus CameraStatus_Calibrating, CameraStatus_CalibrationFailed, CameraStatus_Calibrated, + CameraStatus_ThirdPerson, CameraStatus_EnumSize = 0x7fffffff } + public enum CameraAnchorType + { + CameraAnchorType_PreDefined = 0, + CameraAnchorType_Custom = 1, + CameraAnchorType_Count, + CameraAnchorType_EnumSize = 0x7fffffff + } + + public enum XrApi + { + Unknown = 0, + CAPI = 1, + VRAPI = 2, + OpenXR = 3, + EnumSize = 0x7fffffff + } + public enum Eye { None = -1, @@ -239,9 +247,6 @@ public enum Controller LHand = 0x00000020, RHand = 0x00000040, Hands = LHand | RHand, - Touchpad = 0x08000000, - LTrackedRemote = 0x01000000, - RTrackedRemote = 0x02000000, Active = unchecked((int)0x80000000), All = ~None, } @@ -264,7 +269,6 @@ public enum TrackingOrigin public enum RecenterFlags { Default = 0, - Controllers = 0x40000000, IgnoreAll = unchecked((int)0x80000000), Count, } @@ -309,15 +313,14 @@ public enum SystemHeadset { None = 0, - // Mobile & Standalone headsets - GearVR_R320, // Note4 Innovator - GearVR_R321, // S6 Innovator - GearVR_R322, // Commercial 1 - GearVR_R323, // Commercial 2 (USB Type C) - GearVR_R324, // Commercial 3 (USB Type C) - GearVR_R325, // Commercial 4 (USB Type C) - Oculus_Go, - Oculus_Quest, + // Standalone headsets + Oculus_Quest = 8, + Oculus_Quest_2 = 9, + Placeholder_10, + Placeholder_11, + Placeholder_12, + Placeholder_13, + Placeholder_14, // PC headsets Rift_DK1 = 0x1000, @@ -326,6 +329,12 @@ public enum SystemHeadset Rift_CB, Rift_S, Oculus_Link_Quest, + Oculus_Link_Quest_2, + PC_Placeholder_4103, + PC_Placeholder_4104, + PC_Placeholder_4105, + PC_Placeholder_4106, + PC_Placeholder_4107 } public enum OverlayShape @@ -335,12 +344,13 @@ public enum OverlayShape Cubemap = 2, OffcenterCubemap = 4, Equirect = 5, + Fisheye = 9, } public enum Step { Render = -1, - Physics = 0, + Physics = 0, // will be deprecated when using OpenXR } public enum CameraDevice @@ -464,7 +474,7 @@ public struct Vector3f public static readonly Vector3f zero = new Vector3f { x = 0.0f, y = 0.0f, z = 0.0f }; public override string ToString() { - return string.Format("{0}, {1}, {2}", x, y, z); + return string.Format(System.Globalization.CultureInfo.InvariantCulture, "{0}, {1}, {2}", x, y, z); } } @@ -478,7 +488,7 @@ public struct Vector4f public static readonly Vector4f zero = new Vector4f { x = 0.0f, y = 0.0f, z = 0.0f, w = 0.0f }; public override string ToString() { - return string.Format("{0}, {1}, {2}, {3}", x, y, z, w); + return string.Format(System.Globalization.CultureInfo.InvariantCulture, "{0}, {1}, {2}, {3}", x, y, z, w); } } @@ -492,7 +502,7 @@ public struct Vector4s public static readonly Vector4s zero = new Vector4s { x = 0, y = 0, z = 0, w = 0 }; public override string ToString() { - return string.Format("{0}, {1}, {2}, {3}", x, y, z, w); + return string.Format(System.Globalization.CultureInfo.InvariantCulture, "{0}, {1}, {2}, {3}", x, y, z, w); } } @@ -506,7 +516,7 @@ public struct Quatf public static readonly Quatf identity = new Quatf { x = 0.0f, y = 0.0f, z = 0.0f, w = 1.0f }; public override string ToString() { - return string.Format("{0}, {1}, {2}, {3}", x, y, z, w); + return string.Format(System.Globalization.CultureInfo.InvariantCulture, "{0}, {1}, {2}, {3}", x, y, z, w); } } @@ -518,7 +528,7 @@ public struct Posef public static readonly Posef identity = new Posef { Orientation = Quatf.identity, Position = Vector3f.zero }; public override string ToString() { - return string.Format("Position ({0}), Orientation({1})", Position, Orientation); + return string.Format(System.Globalization.CultureInfo.InvariantCulture, "Position ({0}), Orientation({1})", Position, Orientation); } } @@ -533,7 +543,7 @@ public struct TextureRectMatrixf public override string ToString() { - return string.Format("Rect Left ({0}), Rect Right({1}), Scale Bias Left ({2}), Scale Bias Right({3})", leftRect, rightRect, leftScaleBias, rightScaleBias); + return string.Format(System.Globalization.CultureInfo.InvariantCulture, "Rect Left ({0}), Rect Right({1}), Scale Bias Left ({2}), Scale Bias Right({3})", leftRect, rightRect, leftScaleBias, rightScaleBias); } } @@ -958,12 +968,15 @@ public enum HandStatus HandTracked = (1 << 0), // if this is set the hand pose and bone rotations data is usable InputStateValid = (1 << 1), // if this is set the pointer pose and pinch data is usable SystemGestureInProgress = (1 << 6), // if this is set the hand is currently processing a system gesture + DominantHand = (1 << 7), // if this is set the hand is currently the dominant hand + MenuPressed = (1 << 8) // if this is set the hand performed a menu press } public enum BoneId { Invalid = -1, + // hand bones Hand_Start = 0, Hand_WristRoot = Hand_Start + 0, // root frame of the hand, where the wrist is located Hand_ForearmStub = Hand_Start + 1, // frame for user's forearm @@ -987,16 +1000,17 @@ public enum BoneId Hand_MaxSkinnable = Hand_Start + 19, // Bone tips are position only. They are not used for skinning but are useful for hit-testing. // NOTE: Hand_ThumbTip == Hand_MaxSkinnable since the extended tips need to be contiguous - Hand_ThumbTip = Hand_Start + Hand_MaxSkinnable + 0, // tip of the thumb - Hand_IndexTip = Hand_Start + Hand_MaxSkinnable + 1, // tip of the index finger - Hand_MiddleTip = Hand_Start + Hand_MaxSkinnable + 2, // tip of the middle finger - Hand_RingTip = Hand_Start + Hand_MaxSkinnable + 3, // tip of the ring finger - Hand_PinkyTip = Hand_Start + Hand_MaxSkinnable + 4, // tip of the pinky - Hand_End = Hand_Start + Hand_MaxSkinnable + 5, + Hand_ThumbTip = Hand_MaxSkinnable + 0, // tip of the thumb + Hand_IndexTip = Hand_MaxSkinnable + 1, // tip of the index finger + Hand_MiddleTip = Hand_MaxSkinnable + 2, // tip of the middle finger + Hand_RingTip = Hand_MaxSkinnable + 3, // tip of the ring finger + Hand_PinkyTip = Hand_MaxSkinnable + 4, // tip of the pinky + Hand_End = Hand_MaxSkinnable + 5, + // add new bones here - Max = Hand_End + 0, + Max = ((int)Hand_End > 50) ? (int)Hand_End : 50, } public enum HandFinger @@ -1086,8 +1100,8 @@ private struct HandStateInternal public struct BoneCapsule { public short BoneIndex; - [MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)] - public Vector3f[] Points; + public Vector3f StartPoint; + public Vector3f EndPoint; public float Radius; } @@ -1101,6 +1115,7 @@ public struct Bone public enum SkeletonConstants { + MaxHandBones = BoneId.Hand_End, MaxBones = BoneId.Max, MaxBoneCapsules = 19, } @@ -1118,12 +1133,99 @@ public struct Skeleton public SkeletonType Type; public uint NumBones; public uint NumBoneCapsules; - [MarshalAs(UnmanagedType.ByValArray, SizeConst = (int)SkeletonConstants.MaxBones)] + [MarshalAs(UnmanagedType.ByValArray, SizeConst = (int)SkeletonConstants.MaxHandBones)] public Bone[] Bones; [MarshalAs(UnmanagedType.ByValArray, SizeConst = (int)SkeletonConstants.MaxBoneCapsules)] public BoneCapsule[] BoneCapsules; } + [StructLayout(LayoutKind.Sequential)] + public struct Skeleton2 + { + public SkeletonType Type; + public uint NumBones; + public uint NumBoneCapsules; + public Bone[] Bones; + public BoneCapsule[] BoneCapsules; + } + + [StructLayout(LayoutKind.Sequential)] + private struct Skeleton2Internal + { + public SkeletonType Type; + public uint NumBones; + public uint NumBoneCapsules; + public Bone Bones_0; + public Bone Bones_1; + public Bone Bones_2; + public Bone Bones_3; + public Bone Bones_4; + public Bone Bones_5; + public Bone Bones_6; + public Bone Bones_7; + public Bone Bones_8; + public Bone Bones_9; + public Bone Bones_10; + public Bone Bones_11; + public Bone Bones_12; + public Bone Bones_13; + public Bone Bones_14; + public Bone Bones_15; + public Bone Bones_16; + public Bone Bones_17; + public Bone Bones_18; + public Bone Bones_19; + public Bone Bones_20; + public Bone Bones_21; + public Bone Bones_22; + public Bone Bones_23; + public Bone Bones_24; + public Bone Bones_25; + public Bone Bones_26; + public Bone Bones_27; + public Bone Bones_28; + public Bone Bones_29; + public Bone Bones_30; + public Bone Bones_31; + public Bone Bones_32; + public Bone Bones_33; + public Bone Bones_34; + public Bone Bones_35; + public Bone Bones_36; + public Bone Bones_37; + public Bone Bones_38; + public Bone Bones_39; + public Bone Bones_40; + public Bone Bones_41; + public Bone Bones_42; + public Bone Bones_43; + public Bone Bones_44; + public Bone Bones_45; + public Bone Bones_46; + public Bone Bones_47; + public Bone Bones_48; + public Bone Bones_49; + public BoneCapsule BoneCapsules_0; + public BoneCapsule BoneCapsules_1; + public BoneCapsule BoneCapsules_2; + public BoneCapsule BoneCapsules_3; + public BoneCapsule BoneCapsules_4; + public BoneCapsule BoneCapsules_5; + public BoneCapsule BoneCapsules_6; + public BoneCapsule BoneCapsules_7; + public BoneCapsule BoneCapsules_8; + public BoneCapsule BoneCapsules_9; + public BoneCapsule BoneCapsules_10; + public BoneCapsule BoneCapsules_11; + public BoneCapsule BoneCapsules_12; + public BoneCapsule BoneCapsules_13; + public BoneCapsule BoneCapsules_14; + public BoneCapsule BoneCapsules_15; + public BoneCapsule BoneCapsules_16; + public BoneCapsule BoneCapsules_17; + public BoneCapsule BoneCapsules_18; + } + public enum MeshConstants { MaxVertices = 3000, @@ -1158,6 +1260,46 @@ public class Mesh public Vector4f[] BlendWeights; } + + public enum ColorSpace + { + /// The default value from GetHmdColorSpace until SetClientColorDesc is called. Only valid on PC, and will be remapped to Quest on Mobile + Unknown = 0, + /// No color correction, not recommended for production use. See documentation for more info + Unmanaged = 1, + /// Preferred color space for standardized color across all Oculus HMDs with D65 white point + Rec_2020 = 2, + /// Rec. 709 is used on Oculus Go and shares the same primary color coordinates as sRGB + Rec_709 = 3, + /// Oculus Rift CV1 uses a unique color space, see documentation for more info + Rift_CV1 = 4, + /// Oculus Rift S uses a unique color space, see documentation for more info + Rift_S = 5, + /// Oculus Quest's native color space is slightly different than Rift CV1 + Quest = 6, + /// Similar to DCI-P3. See documentation for more details on P3 + P3 = 7, + /// Similar to sRGB but with deeper greens using D65 white point + Adobe_RGB = 8, + } + + public enum EventType + { + Unknown = 0, + DisplayRefreshRateChanged = 1, + } + + private const int EventDataBufferSize = 4000; + + [StructLayout(LayoutKind.Sequential)] + public struct EventDataBuffer + { + public EventType EventType; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = EventDataBufferSize)] + public byte[] EventData; + } + + public static bool initialized { get { @@ -1169,6 +1311,34 @@ public static bool initialized } } +#if !OVRPLUGIN_UNSUPPORTED_PLATFORM + private static XrApi? _nativeXrApi = null; +#endif + + public static XrApi nativeXrApi + { + get + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return XrApi.Unknown; +#else + if (!_nativeXrApi.HasValue) + { + _nativeXrApi = XrApi.Unknown; + if (version >= OVRP_1_55_0.version) + { + XrApi xrApi; + if (OVRP_1_55_0.ovrp_GetNativeXrApiType(out xrApi) == Result.Success) + { + _nativeXrApi = xrApi; + } + } + } + return _nativeXrApi.Value; +#endif + } + } + public static bool chromatic { get { @@ -1840,6 +2010,16 @@ public static bool EnqueueSubmitLayer(bool onTop, bool headLocked, bool noDepthB return false; } + if (shape == OverlayShape.Fisheye) + { +#if UNITY_ANDROID + if(version >= OVRP_1_55_0.version) + flags |= (uint)(shape) << OverlayShapeFlagShift; + else +#endif + return false; + } + if (version >= OVRP_1_34_0.version && layerId != -1) return OVRP_1_34_0.ovrp_EnqueueSubmitLayer2(flags, leftTexture, rightTexture, layerId, frameIndex, ref pose, ref scale, layerIndex, overrideTextureRectMatrix ? Bool.True : Bool.False, ref textureRectMatrix, overridePerLayerColorScaleAndOffset ? Bool.True : Bool.False, ref colorScale, ref colorOffset) == Result.Success; @@ -1979,6 +2159,12 @@ public static Posef GetNodePose(Node nodeId, Step stepId) #if OVRPLUGIN_UNSUPPORTED_PLATFORM return Posef.identity; #else + if (nativeXrApi == XrApi.OpenXR && stepId == Step.Physics) + { + Debug.LogWarning("Step.Physics is deprecated when using OpenXR"); + stepId = Step.Render; + } + if (version >= OVRP_1_12_0.version) return OVRP_1_12_0.ovrp_GetNodePoseState(stepId, nodeId).Pose; @@ -1994,6 +2180,12 @@ public static Vector3f GetNodeVelocity(Node nodeId, Step stepId) #if OVRPLUGIN_UNSUPPORTED_PLATFORM return new Vector3f(); #else + if (nativeXrApi == XrApi.OpenXR && stepId == Step.Physics) + { + Debug.LogWarning("Step.Physics is deprecated when using OpenXR"); + stepId = Step.Render; + } + if (version >= OVRP_1_12_0.version) return OVRP_1_12_0.ovrp_GetNodePoseState(stepId, nodeId).Velocity; @@ -2009,6 +2201,12 @@ public static Vector3f GetNodeAngularVelocity(Node nodeId, Step stepId) #if OVRPLUGIN_UNSUPPORTED_PLATFORM return new Vector3f(); #else + if (nativeXrApi == XrApi.OpenXR && stepId == Step.Physics) + { + Debug.LogWarning("Step.Physics is deprecated when using OpenXR"); + stepId = Step.Render; + } + if (version >= OVRP_1_12_0.version) return OVRP_1_12_0.ovrp_GetNodePoseState(stepId, nodeId).AngularVelocity; @@ -2021,6 +2219,12 @@ public static Vector3f GetNodeAcceleration(Node nodeId, Step stepId) #if OVRPLUGIN_UNSUPPORTED_PLATFORM return new Vector3f(); #else + if (nativeXrApi == XrApi.OpenXR && stepId == Step.Physics) + { + Debug.LogWarning("Step.Physics is deprecated when using OpenXR"); + stepId = Step.Render; + } + if (version >= OVRP_1_12_0.version) return OVRP_1_12_0.ovrp_GetNodePoseState(stepId, nodeId).Acceleration; @@ -2036,6 +2240,12 @@ public static Vector3f GetNodeAngularAcceleration(Node nodeId, Step stepId) #if OVRPLUGIN_UNSUPPORTED_PLATFORM return new Vector3f(); #else + if (nativeXrApi == XrApi.OpenXR && stepId == Step.Physics) + { + Debug.LogWarning("Step.Physics is deprecated when using OpenXR"); + stepId = Step.Render; + } + if (version >= OVRP_1_12_0.version) return OVRP_1_12_0.ovrp_GetNodePoseState(stepId, nodeId).AngularAcceleration; @@ -2112,6 +2322,12 @@ public static PoseStatef GetNodePoseStateRaw(Node nodeId, Step stepId) #if OVRPLUGIN_UNSUPPORTED_PLATFORM return PoseStatef.identity; #else + if (nativeXrApi == XrApi.OpenXR && stepId == Step.Physics) + { + Debug.LogWarning("Step.Physics is deprecated when using OpenXR"); + stepId = Step.Render; + } + if (version >= OVRP_1_29_0.version) { PoseStatef nodePoseState; @@ -2132,6 +2348,7 @@ public static PoseStatef GetNodePoseStateRaw(Node nodeId, Step stepId) #endif } + public static Posef GetCurrentTrackingTransformPose() { #if OVRPLUGIN_UNSUPPORTED_PLATFORM @@ -2157,6 +2374,31 @@ public static Posef GetCurrentTrackingTransformPose() #endif } + public static Posef GetTrackingTransformRawPose() + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return Posef.identity; +#else + if (version >= OVRP_1_30_0.version) + { + Posef trackingTransforRawPose; + Result result = OVRP_1_30_0.ovrp_GetTrackingTransformRawPose(out trackingTransforRawPose); + if (result == Result.Success) + { + return trackingTransforRawPose; + } + else + { + return Posef.identity; + } + } + else + { + return Posef.identity; + } +#endif + } + public static Posef GetTrackingTransformRelativePose(TrackingOrigin trackingOrigin) { #if OVRPLUGIN_UNSUPPORTED_PLATFORM @@ -2861,6 +3103,7 @@ public static bool SetExternalCameraProperties(string cameraName, ref CameraIntr #endif } + public static Vector3f GetBoundaryDimensions(BoundaryType boundaryType) { #if OVRPLUGIN_UNSUPPORTED_PLATFORM @@ -3617,6 +3860,34 @@ public static float systemDisplayFrequency } } + public static bool eyeFovPremultipliedAlphaModeEnabled + { + get + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return true; +#else + Bool isEnabled = Bool.True; + if (version >= OVRP_1_57_0.version) + { + OVRP_1_57_0.ovrp_GetEyeFovPremultipliedAlphaMode(ref isEnabled); + } + return isEnabled == Bool.True ? true : false; +#endif + } + set + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return; +#else + if (version >= OVRP_1_57_0.version) + { + OVRP_1_57_0.ovrp_SetEyeFovPremultipliedAlphaMode(ToBool(value)); + } +#endif + } + } + public static bool GetNodeFrustum2(Node nodeId, out Frustumf2 frustum) { frustum = default(Frustumf2); @@ -3643,6 +3914,7 @@ public static bool GetNodeFrustum2(Node nodeId, out Frustumf2 frustum) #endif } + public static bool AsymmetricFovEnabled { get @@ -3710,32 +3982,6 @@ public static Handedness GetDominantHand() #endif } - public static bool GetReorientHMDOnControllerRecenter() - { -#if OVRPLUGIN_UNSUPPORTED_PLATFORM - return false; -#else - Bool recenterMode; - if (version < OVRP_1_28_0.version || OVRP_1_28_0.ovrp_GetReorientHMDOnControllerRecenter(out recenterMode) != Result.Success) - return false; - - return (recenterMode == Bool.True); -#endif - } - - public static bool SetReorientHMDOnControllerRecenter(bool recenterSetting) - { -#if OVRPLUGIN_UNSUPPORTED_PLATFORM - return false; -#else - Bool ovrpBoolRecenterSetting = recenterSetting ? Bool.True : Bool.False; - if (version < OVRP_1_28_0.version || OVRP_1_28_0.ovrp_SetReorientHMDOnControllerRecenter(ovrpBoolRecenterSetting) != Result.Success) - return false; - - return true; -#endif - } - public static bool SendEvent(string name, string param = "", string source = "") { #if OVRPLUGIN_UNSUPPORTED_PLATFORM @@ -3901,6 +4147,8 @@ public static bool SetColorScaleAndOffset(Vector4 colorScale, Vector4 colorOffse OculusXRPlugin.SetColorScale(colorScale.x, colorScale.y, colorScale.z, colorScale.w); OculusXRPlugin.SetColorOffset(colorOffset.x, colorOffset.y, colorOffset.z, colorOffset.w); return true; +#elif REQUIRES_XR_SDK + return false; #else if (version >= OVRP_1_31_0.version) { @@ -3940,6 +4188,18 @@ public enum MrcActivationMode EnumSize = 0x7fffffff } + public enum PlatformCameraMode + { + Disabled = -1, + Initialized = 0, + UserControlled = 1, + SmartNavigated = 2, + StabilizedPoV = 3, + RemoteDroneControlled = 4, + RemoteSpatialMapped = 5, + EnumSize = 0x7fffffff + } + public enum InputVideoBufferType { Memory = 0, @@ -4060,6 +4320,62 @@ public static bool SetMrcActivationMode(MrcActivationMode mode) #endif } + public static bool SetPlatformInitialized() + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return false; +#else + if (version >= OVRP_1_54_0.version) + { + return OVRP_1_54_0.ovrp_Media_SetPlatformInitialized() == Result.Success; + } + else + { + return false; + } +#endif + } + + public static PlatformCameraMode GetPlatformCameraMode() + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return PlatformCameraMode.Disabled; +#else + if (version >= OVRP_1_57_0.version) + { + PlatformCameraMode mode; + if (OVRP_1_57_0.ovrp_Media_GetPlatformCameraMode(out mode) == Result.Success) + { + return mode; + } + else + { + return default(PlatformCameraMode); + } + } + else + { + return default(PlatformCameraMode); + } +#endif + } + + public static bool SetPlatformCameraMode(PlatformCameraMode mode) + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return false; +#else + if (version >= OVRP_1_57_0.version) + { + return OVRP_1_57_0.ovrp_Media_SetPlatformCameraMode(mode) == Result.Success; + } + else + { + return false; + } +#endif + } + public static bool IsMrcEnabled() { #if OVRPLUGIN_UNSUPPORTED_PLATFORM @@ -4285,7 +4601,7 @@ public static bool GetMrcFrameImageFlipped() #endif } - public static bool EncodeMrcFrame(System.IntPtr textureHandle, System.IntPtr fgTextureHandle, float[] audioData, int audioFrames, int audioChannels, double timestamp, ref int outSyncId) + public static bool EncodeMrcFrame(System.IntPtr textureHandle, System.IntPtr fgTextureHandle, float[] audioData, int audioFrames, int audioChannels, double timestamp, double poseTime, ref int outSyncId) { #if OVRPLUGIN_UNSUPPORTED_PLATFORM return false; @@ -4316,11 +4632,25 @@ public static bool EncodeMrcFrame(System.IntPtr textureHandle, System.IntPtr fgT Result result; if (fgTextureHandle == System.IntPtr.Zero) { - result = OVRP_1_38_0.ovrp_Media_EncodeMrcFrame(textureHandle, audioDataPtr, audioDataLen, audioChannels, timestamp, ref outSyncId); + if (version >= OVRP_1_49_0.version) + { + result = OVRP_1_49_0.ovrp_Media_EncodeMrcFrameWithPoseTime(textureHandle, audioDataPtr, audioDataLen, audioChannels, timestamp, poseTime, ref outSyncId); + } + else + { + result = OVRP_1_38_0.ovrp_Media_EncodeMrcFrame(textureHandle, audioDataPtr, audioDataLen, audioChannels, timestamp, ref outSyncId); + } } else { - result = OVRP_1_38_0.ovrp_Media_EncodeMrcFrameWithDualTextures(textureHandle, fgTextureHandle, audioDataPtr, audioDataLen, audioChannels, timestamp, ref outSyncId); + if (version >= OVRP_1_49_0.version) + { + result = OVRP_1_49_0.ovrp_Media_EncodeMrcFrameDualTexturesWithPoseTime(textureHandle, fgTextureHandle, audioDataPtr, audioDataLen, audioChannels, timestamp, poseTime, ref outSyncId); + } + else + { + result = OVRP_1_38_0.ovrp_Media_EncodeMrcFrameWithDualTextures(textureHandle, fgTextureHandle, audioDataPtr, audioDataLen, audioChannels, timestamp, ref outSyncId); + } } if (audioData != null) @@ -4339,7 +4669,7 @@ public static bool EncodeMrcFrame(System.IntPtr textureHandle, System.IntPtr fgT #if !OVRPLUGIN_UNSUPPORTED_PLATFORM static Texture2D cachedTexture = null; #endif - public static bool EncodeMrcFrame(RenderTexture frame, float[] audioData, int audioFrames, int audioChannels, double timestamp, ref int outSyncId) + public static bool EncodeMrcFrame(RenderTexture frame, float[] audioData, int audioFrames, int audioChannels, double timestamp, double poseTime, ref int outSyncId) { #if OVRPLUGIN_UNSUPPORTED_PLATFORM return false; @@ -4381,8 +4711,15 @@ public static bool EncodeMrcFrame(RenderTexture frame, float[] audioData, int au audioDataPtr = pinnedAudioData.AddrOfPinnedObject(); audioDataLen = audioFrames * 4; } - Result result = OVRP_1_38_0.ovrp_Media_EncodeMrcFrame(pointer, audioDataPtr, audioDataLen, audioChannels, timestamp, ref outSyncId); - + Result result; + if (version >= OVRP_1_49_0.version) + { + result = OVRP_1_49_0.ovrp_Media_EncodeMrcFrameWithPoseTime(pointer, audioDataPtr, audioDataLen, audioChannels, timestamp, poseTime, ref outSyncId); + } + else + { + result = OVRP_1_38_0.ovrp_Media_EncodeMrcFrame(pointer, audioDataPtr, audioDataLen, audioChannels, timestamp, ref outSyncId); + } pinnedArray.Free(); if (audioData != null) { @@ -4429,6 +4766,23 @@ public static bool SetAvailableQueueIndexVulkan(uint queueIndexVk) #endif } + public static bool SetMrcHeadsetControllerPose(Posef headsetPose, Posef leftControllerPose, Posef rightControllerPose) + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return false; +#else + if (version >= OVRP_1_49_0.version) + { + Result res = OVRP_1_49_0.ovrp_Media_SetHeadsetControllerPose(headsetPose, leftControllerPose, rightControllerPose); + return res == Result.Success; + } + else + { + return false; + } +#endif + } + } public static bool SetDeveloperMode(Bool active) @@ -4497,15 +4851,21 @@ public static bool GetHandState(Step stepId, Hand hand, ref HandState handState) #if OVRPLUGIN_UNSUPPORTED_PLATFORM return false; #else + if (nativeXrApi == XrApi.OpenXR && stepId == Step.Physics) + { + Debug.LogWarning("Step.Physics is deprecated when using OpenXR"); + stepId = Step.Render; + } + if (version >= OVRP_1_44_0.version) { Result res = OVRP_1_44_0.ovrp_GetHandState(stepId, hand, out cachedHandState); if (res == Result.Success) { // attempt to avoid allocations if client provides appropriately pre-initialized HandState - if (handState.BoneRotations == null || handState.BoneRotations.Length != ((int)BoneId.Hand_End - (int)BoneId.Hand_Start)) + if (handState.BoneRotations == null || handState.BoneRotations.Length != (int)SkeletonConstants.MaxHandBones) { - handState.BoneRotations = new Quatf[(int)BoneId.Hand_End - (int)BoneId.Hand_Start]; + handState.BoneRotations = new Quatf[(int)SkeletonConstants.MaxHandBones]; } if (handState.PinchStrength == null || handState.PinchStrength.Length != (int)HandFinger.Max) { @@ -4592,6 +4952,143 @@ public static bool GetSkeleton(SkeletonType skeletonType, out Skeleton skeleton) #endif } + private static Skeleton cachedSkeleton = new Skeleton(); + private static Skeleton2Internal cachedSkeleton2 = new Skeleton2Internal(); + public static bool GetSkeleton2(SkeletonType skeletonType, ref Skeleton2 skeleton) + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return false; +#else + if (version >= OVRP_1_55_0.version) + { + Result res = OVRP_1_55_0.ovrp_GetSkeleton2(skeletonType, out cachedSkeleton2); + if (res == Result.Success) + { + if (skeleton.Bones == null || skeleton.Bones.Length != (int)SkeletonConstants.MaxBones) + { + skeleton.Bones = new Bone[(int)SkeletonConstants.MaxBones]; + } + if (skeleton.BoneCapsules == null || skeleton.BoneCapsules.Length != (int)SkeletonConstants.MaxBoneCapsules) + { + skeleton.BoneCapsules = new BoneCapsule[(int)SkeletonConstants.MaxBoneCapsules]; + } + + skeleton.Type = cachedSkeleton2.Type; + skeleton.NumBones = cachedSkeleton2.NumBones; + skeleton.NumBoneCapsules = cachedSkeleton2.NumBoneCapsules; + skeleton.Bones[0] = cachedSkeleton2.Bones_0; + skeleton.Bones[1] = cachedSkeleton2.Bones_1; + skeleton.Bones[2] = cachedSkeleton2.Bones_2; + skeleton.Bones[3] = cachedSkeleton2.Bones_3; + skeleton.Bones[4] = cachedSkeleton2.Bones_4; + skeleton.Bones[5] = cachedSkeleton2.Bones_5; + skeleton.Bones[6] = cachedSkeleton2.Bones_6; + skeleton.Bones[7] = cachedSkeleton2.Bones_7; + skeleton.Bones[8] = cachedSkeleton2.Bones_8; + skeleton.Bones[9] = cachedSkeleton2.Bones_9; + skeleton.Bones[10] = cachedSkeleton2.Bones_10; + skeleton.Bones[11] = cachedSkeleton2.Bones_11; + skeleton.Bones[12] = cachedSkeleton2.Bones_12; + skeleton.Bones[13] = cachedSkeleton2.Bones_13; + skeleton.Bones[14] = cachedSkeleton2.Bones_14; + skeleton.Bones[15] = cachedSkeleton2.Bones_15; + skeleton.Bones[16] = cachedSkeleton2.Bones_16; + skeleton.Bones[17] = cachedSkeleton2.Bones_17; + skeleton.Bones[18] = cachedSkeleton2.Bones_18; + skeleton.Bones[19] = cachedSkeleton2.Bones_19; + skeleton.Bones[20] = cachedSkeleton2.Bones_20; + skeleton.Bones[21] = cachedSkeleton2.Bones_21; + skeleton.Bones[22] = cachedSkeleton2.Bones_22; + skeleton.Bones[23] = cachedSkeleton2.Bones_23; + skeleton.Bones[24] = cachedSkeleton2.Bones_24; + skeleton.Bones[25] = cachedSkeleton2.Bones_25; + skeleton.Bones[26] = cachedSkeleton2.Bones_26; + skeleton.Bones[27] = cachedSkeleton2.Bones_27; + skeleton.Bones[28] = cachedSkeleton2.Bones_28; + skeleton.Bones[29] = cachedSkeleton2.Bones_29; + skeleton.Bones[30] = cachedSkeleton2.Bones_30; + skeleton.Bones[31] = cachedSkeleton2.Bones_31; + skeleton.Bones[32] = cachedSkeleton2.Bones_32; + skeleton.Bones[33] = cachedSkeleton2.Bones_33; + skeleton.Bones[34] = cachedSkeleton2.Bones_34; + skeleton.Bones[35] = cachedSkeleton2.Bones_35; + skeleton.Bones[36] = cachedSkeleton2.Bones_36; + skeleton.Bones[37] = cachedSkeleton2.Bones_37; + skeleton.Bones[38] = cachedSkeleton2.Bones_38; + skeleton.Bones[39] = cachedSkeleton2.Bones_39; + skeleton.Bones[40] = cachedSkeleton2.Bones_40; + skeleton.Bones[41] = cachedSkeleton2.Bones_41; + skeleton.Bones[42] = cachedSkeleton2.Bones_42; + skeleton.Bones[43] = cachedSkeleton2.Bones_43; + skeleton.Bones[44] = cachedSkeleton2.Bones_44; + skeleton.Bones[45] = cachedSkeleton2.Bones_45; + skeleton.Bones[46] = cachedSkeleton2.Bones_46; + skeleton.Bones[47] = cachedSkeleton2.Bones_47; + skeleton.Bones[48] = cachedSkeleton2.Bones_48; + skeleton.Bones[49] = cachedSkeleton2.Bones_49; + skeleton.BoneCapsules[0] = cachedSkeleton2.BoneCapsules_0; + skeleton.BoneCapsules[1] = cachedSkeleton2.BoneCapsules_1; + skeleton.BoneCapsules[2] = cachedSkeleton2.BoneCapsules_2; + skeleton.BoneCapsules[3] = cachedSkeleton2.BoneCapsules_3; + skeleton.BoneCapsules[4] = cachedSkeleton2.BoneCapsules_4; + skeleton.BoneCapsules[5] = cachedSkeleton2.BoneCapsules_5; + skeleton.BoneCapsules[6] = cachedSkeleton2.BoneCapsules_6; + skeleton.BoneCapsules[7] = cachedSkeleton2.BoneCapsules_7; + skeleton.BoneCapsules[8] = cachedSkeleton2.BoneCapsules_8; + skeleton.BoneCapsules[9] = cachedSkeleton2.BoneCapsules_9; + skeleton.BoneCapsules[10] = cachedSkeleton2.BoneCapsules_10; + skeleton.BoneCapsules[11] = cachedSkeleton2.BoneCapsules_11; + skeleton.BoneCapsules[12] = cachedSkeleton2.BoneCapsules_12; + skeleton.BoneCapsules[13] = cachedSkeleton2.BoneCapsules_13; + skeleton.BoneCapsules[14] = cachedSkeleton2.BoneCapsules_14; + skeleton.BoneCapsules[15] = cachedSkeleton2.BoneCapsules_15; + skeleton.BoneCapsules[16] = cachedSkeleton2.BoneCapsules_16; + skeleton.BoneCapsules[17] = cachedSkeleton2.BoneCapsules_17; + skeleton.BoneCapsules[18] = cachedSkeleton2.BoneCapsules_18; + + return true; + } + else + { + return false; + } + } + else + { + if (GetSkeleton(skeletonType, out cachedSkeleton)) + { + if (skeleton.Bones == null || skeleton.Bones.Length != (int)SkeletonConstants.MaxBones) + { + skeleton.Bones = new Bone[(int)SkeletonConstants.MaxBones]; + } + if (skeleton.BoneCapsules == null || skeleton.BoneCapsules.Length != (int)SkeletonConstants.MaxBoneCapsules) + { + skeleton.BoneCapsules = new BoneCapsule[(int)SkeletonConstants.MaxBoneCapsules]; + } + + skeleton.Type = cachedSkeleton.Type; + skeleton.NumBones = cachedSkeleton.NumBones; + skeleton.NumBoneCapsules = cachedSkeleton.NumBoneCapsules; + + for (int i = 0; i < skeleton.NumBones; i++) + { + skeleton.Bones[i] = cachedSkeleton.Bones[i]; + } + + for (int i = 0; i < skeleton.NumBoneCapsules; i++) + { + skeleton.BoneCapsules[i] = cachedSkeleton.BoneCapsules[i]; + } + + return true; + } + + return false; + } +#endif + } + + public static bool GetMesh(MeshType meshType, out Mesh mesh) { #if OVRPLUGIN_UNSUPPORTED_PLATFORM @@ -4620,6 +5117,30 @@ public static bool GetMesh(MeshType meshType, out Mesh mesh) #endif } + + public static int GetLocalTrackingSpaceRecenterCount() + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return 0; +#else + if (version >= OVRP_1_44_0.version) + { + int recenterCount = 0; + Result res = OVRP_1_44_0.ovrp_GetLocalTrackingSpaceRecenterCount(ref recenterCount); + if (res == Result.Success) + { + return recenterCount; + } + + return 0; + } + else + { + return 0; + } +#endif + } + public static bool GetSystemHmd3DofModeEnabled() { #if OVRPLUGIN_UNSUPPORTED_PLATFORM @@ -4643,6 +5164,135 @@ public static bool GetSystemHmd3DofModeEnabled() #endif } + public static bool SetClientColorDesc(ColorSpace colorSpace) + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return false; +#else + if (version >= OVRP_1_49_0.version) + { + if (colorSpace == ColorSpace.Unknown) + { + Debug.LogWarning("A color gamut of Unknown is not supported. Defaulting to Rift CV1 color space instead."); + colorSpace = ColorSpace.Rift_CV1; + } + return OVRP_1_49_0.ovrp_SetClientColorDesc(colorSpace) == Result.Success; + } + else + { + return false; + } +#endif + } + + public static ColorSpace GetHmdColorDesc() + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return ColorSpace.Unknown; +#else + ColorSpace colorSpace = ColorSpace.Unknown; + if (version >= OVRP_1_49_0.version) + { + Result res = OVRP_1_49_0.ovrp_GetHmdColorDesc(ref colorSpace); + if(res != Result.Success) + { + Debug.LogError("GetHmdColorDesc: Failed to get Hmd color description"); + } + return colorSpace; + } + else + { + Debug.LogError("GetHmdColorDesc: Not supported on this version of OVRPlugin"); + return colorSpace; + } +#endif + } + + public static bool PollEvent(ref EventDataBuffer eventDataBuffer) + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + eventDataBuffer = default(EventDataBuffer); + return false; +#else + if (version >= OVRP_1_55_1.version) + { + IntPtr DataPtr = IntPtr.Zero; + if(eventDataBuffer.EventData == null) + { + eventDataBuffer.EventData = new byte[EventDataBufferSize]; + } + Result result = OVRP_1_55_1.ovrp_PollEvent2(ref eventDataBuffer.EventType, ref DataPtr); + + if (result != Result.Success || DataPtr == IntPtr.Zero) + return false; + + Marshal.Copy(DataPtr, eventDataBuffer.EventData, 0, EventDataBufferSize); + return true; + } + else if (version >= OVRP_1_55_0.version) + { + return OVRP_1_55_0.ovrp_PollEvent(ref eventDataBuffer) == Result.Success; + } + else + { + eventDataBuffer = default(EventDataBuffer); + return false; + } +#endif + } + + + public static UInt64 GetNativeOpenXRInstance() + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return 0; +#else + if (version >= OVRP_1_55_0.version) + { + UInt64 instance, session; + if (OVRP_1_55_0.ovrp_GetNativeOpenXRHandles(out instance, out session) == Result.Success) + { + return instance; + } + } + return 0; +#endif + } + + public static UInt64 GetNativeOpenXRSession() + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return 0; +#else + if (version >= OVRP_1_55_0.version) + { + UInt64 instance, session; + if (OVRP_1_55_0.ovrp_GetNativeOpenXRHandles(out instance, out session) == Result.Success) + { + return session; + } + } + return 0; +#endif + } + + public static bool SetKeyboardOverlayUV(Vector2f uv) + { +#if OVRPLUGIN_UNSUPPORTED_PLATFORM + return false; +#else + if (version >= OVRP_1_57_0.version) + { + Result result = OVRP_1_57_0.ovrp_SetKeyboardOverlayUV(uv); + return (result == Result.Success); + } + else + { + return false; + } +#endif + } + private const string pluginName = "OVRPlugin"; private static System.Version _versionZero = new System.Version(0, 0, 0); @@ -5209,12 +5859,6 @@ private static class OVRP_1_28_0 [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] public static extern Result ovrp_GetDominantHand(out Handedness dominantHand); - [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] - public static extern Result ovrp_GetReorientHMDOnControllerRecenter(out Bool recenter); - - [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] - public static extern Result ovrp_SetReorientHMDOnControllerRecenter(Bool recenter); - [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] public static extern Result ovrp_SendEvent(string name, string param); @@ -5246,8 +5890,8 @@ private static class OVRP_1_30_0 [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] public static extern Result ovrp_GetCurrentTrackingTransformPose(out Posef trackingTransformPose); - //[DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] - //public static extern Result ovrp_GetTrackingTransformRawPose(out Posef trackingTransformRawPose); + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_GetTrackingTransformRawPose(out Posef trackingTransformRawPose); [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] public static extern Result ovrp_SendEvent2(string name, string param, string source); @@ -5271,6 +5915,7 @@ private static class OVRP_1_31_0 [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] public static extern Result ovrp_SetColorScaleAndOffset(Vector4 colorScale, Vector4 colorOffset, Bool applyToAllLayers); + } private static class OVRP_1_32_0 @@ -5451,6 +6096,8 @@ private static class OVRP_1_44_0 [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] public static extern Result ovrp_SetDefaultExternalCamera(string cameraName, ref CameraIntrinsics cameraIntrinsics, ref CameraExtrinsics cameraExtrinsics); + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_GetLocalTrackingSpaceRecenterCount(ref int recenterCount); } private static class OVRP_1_45_0 @@ -5487,8 +6134,144 @@ private static class OVRP_1_48_0 [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] public static extern Result ovrp_SetExternalCameraProperties(string cameraName, ref CameraIntrinsics cameraIntrinsics, ref CameraExtrinsics cameraExtrinsics); + } -#endif // !OVRPLUGIN_UNSUPPORTED_PLATFORM + private static class OVRP_1_49_0 + { + public static readonly System.Version version = new System.Version(1, 49, 0); + + public const int OVRP_ANCHOR_NAME_SIZE = 32; + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_SetClientColorDesc(ColorSpace colorSpace); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_GetHmdColorDesc(ref ColorSpace colorSpace); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_EncodeMrcFrameWithPoseTime(IntPtr rawBuffer, IntPtr audioDataPtr, int audioDataLen, int audioChannels, double timestamp, double poseTime, ref int outSyncId); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_EncodeMrcFrameDualTexturesWithPoseTime(IntPtr backgroundTextureHandle, IntPtr foregroundTextureHandle, IntPtr audioData, int audioDataLen, int audioChannels, double timestamp, double poseTime, ref int outSyncId); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_SetHeadsetControllerPose(Posef headsetPose, Posef leftControllerPose, Posef rightControllerPose); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_EnumerateCameraAnchorHandles(ref int anchorCount, ref IntPtr CameraAnchorHandle); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_GetCurrentCameraAnchorHandle(ref IntPtr anchorHandle); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_GetCameraAnchorName(IntPtr anchorHandle, [MarshalAs(UnmanagedType.LPArray, SizeConst = OVRP_ANCHOR_NAME_SIZE)] char[] cameraName); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_GetCameraAnchorHandle(IntPtr anchorName, ref IntPtr anchorHandle); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_GetCameraAnchorType(IntPtr anchorHandle, ref CameraAnchorType anchorType); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_CreateCustomCameraAnchor(IntPtr anchorName, ref IntPtr anchorHandle); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_DestroyCustomCameraAnchor(IntPtr anchorHandle); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_GetCustomCameraAnchorPose(IntPtr anchorHandle, ref Posef pose); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_SetCustomCameraAnchorPose(IntPtr anchorHandle, Posef pose); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_GetCameraMinMaxDistance(IntPtr anchorHandle, ref double minDistance, ref double maxDistance); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_SetCameraMinMaxDistance(IntPtr anchorHandle, double minDistance, double maxDistance); + } + private static class OVRP_1_50_0 + { + public static readonly System.Version version = new System.Version(1, 50, 0); + } + + private static class OVRP_1_51_0 + { + public static readonly System.Version version = new System.Version(1, 51, 0); + } + + private static class OVRP_1_52_0 + { + public static readonly System.Version version = new System.Version(1, 52, 0); + } + + private static class OVRP_1_53_0 + { + public static readonly System.Version version = new System.Version(1, 53, 0); + } + + private static class OVRP_1_54_0 + { + public static readonly System.Version version = new System.Version(1, 54, 0); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_SetPlatformInitialized(); + } + + private static class OVRP_1_55_0 + { + public static readonly System.Version version = new System.Version(1, 55, 0); + + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_GetSkeleton2(SkeletonType skeletonType, out Skeleton2Internal skeleton); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_PollEvent(ref EventDataBuffer eventDataBuffer); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_GetNativeXrApiType(out XrApi xrApi); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_GetNativeOpenXRHandles(out UInt64 xrInstance, out UInt64 xrSession); + + } + + private static class OVRP_1_55_1 + { + public static readonly System.Version version = new System.Version(1, 55, 1); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_PollEvent2(ref EventType eventType, ref IntPtr eventData); + } + + private static class OVRP_1_56_0 + { + public static readonly System.Version version = new System.Version(1, 56, 0); + + } + + private static class OVRP_1_57_0 + { + public static readonly System.Version version = new System.Version(1, 57, 0); + + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_GetPlatformCameraMode(out Media.PlatformCameraMode platformCameraMode); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_Media_SetPlatformCameraMode(Media.PlatformCameraMode platformCameraMode); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_SetEyeFovPremultipliedAlphaMode(Bool enabled); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_GetEyeFovPremultipliedAlphaMode(ref Bool enabled); + + [DllImport(pluginName, CallingConvention = CallingConvention.Cdecl)] + public static extern Result ovrp_SetKeyboardOverlayUV(Vector2f uv); + } +#endif // !OVRPLUGIN_UNSUPPORTED_PLATFORM } diff --git a/Assets/Oculus/VR/Scripts/OVRProfile.cs b/Assets/Oculus/VR/Scripts/OVRProfile.cs index 33121331..e4107ac3 100644 --- a/Assets/Oculus/VR/Scripts/OVRProfile.cs +++ b/Assets/Oculus/VR/Scripts/OVRProfile.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -17,7 +13,6 @@ permissions and limitations under the License. using UnityEngine; using System.Collections; using System.Threading; -using VR = UnityEngine.VR; /// /// (Deprecated) Contains information about the user's preferences and body dimensions. diff --git a/Assets/Oculus/VR/Scripts/OVRTracker.cs b/Assets/Oculus/VR/Scripts/OVRTracker.cs index 38f66430..54a6a43f 100644 --- a/Assets/Oculus/VR/Scripts/OVRTracker.cs +++ b/Assets/Oculus/VR/Scripts/OVRTracker.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -17,7 +13,6 @@ permissions and limitations under the License. using System; using System.Runtime.InteropServices; using UnityEngine; -using VR = UnityEngine.VR; /// /// An infrared camera that tracks the position of a head-mounted display. diff --git a/Assets/Oculus/VR/Scripts/OVRXRSDKNative.cs b/Assets/Oculus/VR/Scripts/OVRXRSDKNative.cs index d6cff936..750af1a0 100644 --- a/Assets/Oculus/VR/Scripts/OVRXRSDKNative.cs +++ b/Assets/Oculus/VR/Scripts/OVRXRSDKNative.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRChromaticAberration.cs b/Assets/Oculus/VR/Scripts/Util/OVRChromaticAberration.cs index c4e1e634..8ff121f4 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRChromaticAberration.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRChromaticAberration.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRControllerHelper.cs b/Assets/Oculus/VR/Scripts/Util/OVRControllerHelper.cs index b5fe5b0b..2bfac114 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRControllerHelper.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRControllerHelper.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -15,23 +11,12 @@ permissions and limitations under the License. ************************************************************************************/ using UnityEngine; -using System.Collections; /// /// Simple helper script that conditionally enables rendering of a controller if it is connected. /// public class OVRControllerHelper : MonoBehaviour { - /// - /// The root GameObject that represents the GearVr Controller model. - /// - public GameObject m_modelGearVrController; - - /// - /// The root GameObject that represents the Oculus Go Controller model. - /// - public GameObject m_modelOculusGoController; - /// /// The root GameObject that represents the Oculus Touch for Quest And RiftS Controller model (Left). /// @@ -52,14 +37,31 @@ public class OVRControllerHelper : MonoBehaviour /// public GameObject m_modelOculusTouchRiftRightController; + /// + /// The root GameObject that represents the Oculus Touch for Quest 2 Controller model (Left). + /// + public GameObject m_modelOculusTouchQuest2LeftController; + + /// + /// The root GameObject that represents the Oculus Touch for Quest 2 Controller model (Right). + /// + public GameObject m_modelOculusTouchQuest2RightController; + /// /// The controller that determines whether or not to enable rendering of the controller model. /// public OVRInput.Controller m_controller; + /// + /// The animator component that contains the controller animation controller for animating buttons and triggers. + /// + private Animator m_animator; + private enum ControllerType { - GearVR, Go, QuestAndRiftS, Rift + QuestAndRiftS = 1, + Rift = 2, + Quest2 = 3, } private ControllerType activeControllerType = ControllerType.Rift; @@ -72,59 +74,26 @@ void Start() OVRPlugin.SystemHeadset headset = OVRPlugin.GetSystemHeadsetType(); switch (headset) { - case OVRPlugin.SystemHeadset.Oculus_Go: - activeControllerType = ControllerType.Go; - break; - case OVRPlugin.SystemHeadset.Oculus_Quest: - activeControllerType = ControllerType.QuestAndRiftS; - break; case OVRPlugin.SystemHeadset.Rift_CV1: activeControllerType = ControllerType.Rift; break; - case OVRPlugin.SystemHeadset.Rift_S: - case OVRPlugin.SystemHeadset.Oculus_Link_Quest: - activeControllerType = ControllerType.QuestAndRiftS; - break; - case OVRPlugin.SystemHeadset.GearVR_R320: - case OVRPlugin.SystemHeadset.GearVR_R321: - case OVRPlugin.SystemHeadset.GearVR_R322: - case OVRPlugin.SystemHeadset.GearVR_R323: - case OVRPlugin.SystemHeadset.GearVR_R324: - case OVRPlugin.SystemHeadset.GearVR_R325: - activeControllerType = ControllerType.GearVR; + case OVRPlugin.SystemHeadset.Oculus_Quest_2: + activeControllerType = ControllerType.Quest2; break; default: -#if UNITY_EDITOR || !UNITY_ANDROID - activeControllerType = ControllerType.Rift; -#else - activeControllerType = ControllerType.GearVR; -#endif + activeControllerType = ControllerType.QuestAndRiftS; break; } Debug.LogFormat("OVRControllerHelp: Active controller type: {0} for product {1}", activeControllerType, OVRPlugin.productName); - if ((activeControllerType != ControllerType.GearVR) && (activeControllerType != ControllerType.Go)) - { - if (m_controller == OVRInput.Controller.LTrackedRemote) - { - m_controller = OVRInput.Controller.LTouch; - } - else if (m_controller == OVRInput.Controller.RTrackedRemote) - { - m_controller = OVRInput.Controller.RTouch; - } - } - else - { - if (m_controller == OVRInput.Controller.LTouch) - { - m_controller = OVRInput.Controller.LTrackedRemote; - } - else if (m_controller == OVRInput.Controller.RTouch) - { - m_controller = OVRInput.Controller.RTrackedRemote; - } - } + + // Hide all controller models until controller get connected + m_modelOculusTouchQuestAndRiftSLeftController.SetActive(false); + m_modelOculusTouchQuestAndRiftSRightController.SetActive(false); + m_modelOculusTouchRiftLeftController.SetActive(false); + m_modelOculusTouchRiftRightController.SetActive(false); + m_modelOculusTouchQuest2LeftController.SetActive(false); + m_modelOculusTouchQuest2RightController.SetActive(false); } void Update() @@ -133,41 +102,58 @@ void Update() if ((controllerConnected != m_prevControllerConnected) || !m_prevControllerConnectedCached) { - if (activeControllerType == ControllerType.GearVR || activeControllerType == ControllerType.Go) + if (activeControllerType == ControllerType.Rift) + { + m_modelOculusTouchQuestAndRiftSLeftController.SetActive(false); + m_modelOculusTouchQuestAndRiftSRightController.SetActive(false); + m_modelOculusTouchRiftLeftController.SetActive(controllerConnected && (m_controller == OVRInput.Controller.LTouch)); + m_modelOculusTouchRiftRightController.SetActive(controllerConnected && (m_controller == OVRInput.Controller.RTouch)); + m_modelOculusTouchQuest2LeftController.SetActive(false); + m_modelOculusTouchQuest2RightController.SetActive(false); + + m_animator = m_controller == OVRInput.Controller.LTouch ? m_modelOculusTouchRiftLeftController.GetComponent() : + m_modelOculusTouchRiftRightController.GetComponent(); + } + else if (activeControllerType == ControllerType.Quest2) { - m_modelOculusGoController.SetActive(controllerConnected && (activeControllerType == ControllerType.Go)); - m_modelGearVrController.SetActive(controllerConnected && (activeControllerType != ControllerType.Go)); m_modelOculusTouchQuestAndRiftSLeftController.SetActive(false); m_modelOculusTouchQuestAndRiftSRightController.SetActive(false); m_modelOculusTouchRiftLeftController.SetActive(false); m_modelOculusTouchRiftRightController.SetActive(false); + m_modelOculusTouchQuest2LeftController.SetActive(controllerConnected && (m_controller == OVRInput.Controller.LTouch)); + m_modelOculusTouchQuest2RightController.SetActive(controllerConnected && (m_controller == OVRInput.Controller.RTouch)); + + m_animator = m_controller == OVRInput.Controller.LTouch ? m_modelOculusTouchQuest2LeftController.GetComponent() : + m_modelOculusTouchQuest2RightController.GetComponent(); } - else if (activeControllerType == ControllerType.QuestAndRiftS) + else /*if (activeControllerType == ControllerType.QuestAndRiftS)*/ { - m_modelOculusGoController.SetActive(false); - m_modelGearVrController.SetActive(false); m_modelOculusTouchQuestAndRiftSLeftController.SetActive(controllerConnected && (m_controller == OVRInput.Controller.LTouch)); m_modelOculusTouchQuestAndRiftSRightController.SetActive(controllerConnected && (m_controller == OVRInput.Controller.RTouch)); m_modelOculusTouchRiftLeftController.SetActive(false); m_modelOculusTouchRiftRightController.SetActive(false); - } - else // if (activeControllerType == ControllerType.Rift) - { - m_modelOculusGoController.SetActive(false); - m_modelGearVrController.SetActive(false); - m_modelOculusTouchQuestAndRiftSLeftController.SetActive(false); - m_modelOculusTouchQuestAndRiftSRightController.SetActive(false); - m_modelOculusTouchRiftLeftController.SetActive(controllerConnected && (m_controller == OVRInput.Controller.LTouch)); - m_modelOculusTouchRiftRightController.SetActive(controllerConnected && (m_controller == OVRInput.Controller.RTouch)); + m_modelOculusTouchQuest2LeftController.SetActive(false); + m_modelOculusTouchQuest2RightController.SetActive(false); + + m_animator = m_controller == OVRInput.Controller.LTouch ? m_modelOculusTouchQuestAndRiftSLeftController.GetComponent() : + m_modelOculusTouchQuestAndRiftSRightController.GetComponent(); } m_prevControllerConnected = controllerConnected; m_prevControllerConnectedCached = true; } - if (!controllerConnected) + if (m_animator != null) { - return; + m_animator.SetFloat("Button 1", OVRInput.Get(OVRInput.Button.One, m_controller) ? 1.0f : 0.0f); + m_animator.SetFloat("Button 2", OVRInput.Get(OVRInput.Button.Two, m_controller) ? 1.0f : 0.0f); + m_animator.SetFloat("Button 3", OVRInput.Get(OVRInput.Button.Start, m_controller) ? 1.0f : 0.0f); + + m_animator.SetFloat("Joy X", OVRInput.Get(OVRInput.Axis2D.PrimaryThumbstick, m_controller).x); + m_animator.SetFloat("Joy Y", OVRInput.Get(OVRInput.Axis2D.PrimaryThumbstick, m_controller).y); + + m_animator.SetFloat("Trigger", OVRInput.Get(OVRInput.Axis1D.PrimaryIndexTrigger, m_controller)); + m_animator.SetFloat("Grip", OVRInput.Get(OVRInput.Axis1D.PrimaryHandTrigger, m_controller)); } } } diff --git a/Assets/Oculus/VR/Scripts/Util/OVRControllerTest.cs b/Assets/Oculus/VR/Scripts/Util/OVRControllerTest.cs new file mode 100644 index 00000000..cb3e1afd --- /dev/null +++ b/Assets/Oculus/VR/Scripts/Util/OVRControllerTest.cs @@ -0,0 +1,191 @@ +/************************************************************************************ +Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. + +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ + +Unless required by applicable law or agreed to in writing, the Utilities SDK distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF +ANY KIND, either express or implied. See the License for the specific language governing +permissions and limitations under the License. +************************************************************************************/ + +using UnityEngine; +using UnityEngine.UI; +using System.Collections; +using System.Collections.Generic; +using System.Text; + +public class OVRControllerTest : MonoBehaviour +{ + public class BoolMonitor + { + public delegate bool BoolGenerator(); + + private string m_name = ""; + private BoolGenerator m_generator; + private bool m_prevValue = false; + private bool m_currentValue = false; + private bool m_currentValueRecentlyChanged = false; + private float m_displayTimeout = 0.0f; + private float m_displayTimer = 0.0f; + + public BoolMonitor(string name, BoolGenerator generator, float displayTimeout = 0.5f) + { + m_name = name; + m_generator = generator; + m_displayTimeout = displayTimeout; + } + + public void Update() + { + m_prevValue = m_currentValue; + m_currentValue = m_generator(); + + if (m_currentValue != m_prevValue) + { + m_currentValueRecentlyChanged = true; + m_displayTimer = m_displayTimeout; + } + + if (m_displayTimer > 0.0f) + { + m_displayTimer -= Time.deltaTime; + + if (m_displayTimer <= 0.0f) + { + m_currentValueRecentlyChanged = false; + m_displayTimer = 0.0f; + } + } + } + + public void AppendToStringBuilder(ref StringBuilder sb) + { + sb.Append(m_name); + + if (m_currentValue && m_currentValueRecentlyChanged) + sb.Append(": *True*\n"); + else if (m_currentValue) + sb.Append(": True \n"); + else if (!m_currentValue && m_currentValueRecentlyChanged) + sb.Append(": *False*\n"); + else if (!m_currentValue) + sb.Append(": False \n"); + } + } + + public Text uiText; + private List monitors; + private StringBuilder data; + + void Start() + { + if (uiText != null) + { + uiText.supportRichText = false; + } + + data = new StringBuilder(2048); + + monitors = new List() + { + // virtual + new BoolMonitor("One", () => OVRInput.Get(OVRInput.Button.One)), + new BoolMonitor("OneDown", () => OVRInput.GetDown(OVRInput.Button.One)), + new BoolMonitor("OneUp", () => OVRInput.GetUp(OVRInput.Button.One)), + new BoolMonitor("One (Touch)", () => OVRInput.Get(OVRInput.Touch.One)), + new BoolMonitor("OneDown (Touch)", () => OVRInput.GetDown(OVRInput.Touch.One)), + new BoolMonitor("OneUp (Touch)", () => OVRInput.GetUp(OVRInput.Touch.One)), + new BoolMonitor("Two", () => OVRInput.Get(OVRInput.Button.Two)), + new BoolMonitor("TwoDown", () => OVRInput.GetDown(OVRInput.Button.Two)), + new BoolMonitor("TwoUp", () => OVRInput.GetUp(OVRInput.Button.Two)), + new BoolMonitor("PrimaryIndexTrigger", () => OVRInput.Get(OVRInput.Button.PrimaryIndexTrigger)), + new BoolMonitor("PrimaryIndexTriggerDown", () => OVRInput.GetDown(OVRInput.Button.PrimaryIndexTrigger)), + new BoolMonitor("PrimaryIndexTriggerUp", () => OVRInput.GetUp(OVRInput.Button.PrimaryIndexTrigger)), + new BoolMonitor("PrimaryIndexTrigger (Touch)", () => OVRInput.Get(OVRInput.Touch.PrimaryIndexTrigger)), + new BoolMonitor("PrimaryIndexTriggerDown (Touch)", () => OVRInput.GetDown(OVRInput.Touch.PrimaryIndexTrigger)), + new BoolMonitor("PrimaryIndexTriggerUp (Touch)", () => OVRInput.GetUp(OVRInput.Touch.PrimaryIndexTrigger)), + new BoolMonitor("PrimaryHandTrigger", () => OVRInput.Get(OVRInput.Button.PrimaryHandTrigger)), + new BoolMonitor("PrimaryHandTriggerDown", () => OVRInput.GetDown(OVRInput.Button.PrimaryHandTrigger)), + new BoolMonitor("PrimaryHandTriggerUp", () => OVRInput.GetUp(OVRInput.Button.PrimaryHandTrigger)), + new BoolMonitor("Up", () => OVRInput.Get(OVRInput.Button.Up)), + new BoolMonitor("Down", () => OVRInput.Get(OVRInput.Button.Down)), + new BoolMonitor("Left", () => OVRInput.Get(OVRInput.Button.Left)), + new BoolMonitor("Right", () => OVRInput.Get(OVRInput.Button.Right)), + + // raw + new BoolMonitor("Start", () => OVRInput.Get(OVRInput.RawButton.Start)), + new BoolMonitor("StartDown", () => OVRInput.GetDown(OVRInput.RawButton.Start)), + new BoolMonitor("StartUp", () => OVRInput.GetUp(OVRInput.RawButton.Start)), + new BoolMonitor("Back", () => OVRInput.Get(OVRInput.RawButton.Back)), + new BoolMonitor("BackDown", () => OVRInput.GetDown(OVRInput.RawButton.Back)), + new BoolMonitor("BackUp", () => OVRInput.GetUp(OVRInput.RawButton.Back)), + new BoolMonitor("A", () => OVRInput.Get(OVRInput.RawButton.A)), + new BoolMonitor("ADown", () => OVRInput.GetDown(OVRInput.RawButton.A)), + new BoolMonitor("AUp", () => OVRInput.GetUp(OVRInput.RawButton.A)), + }; + } + static string prevConnected = ""; + static BoolMonitor controllers = new BoolMonitor("Controllers Changed", () => { return OVRInput.GetConnectedControllers().ToString() != prevConnected; }); + + void Update() + { + OVRInput.Controller activeController = OVRInput.GetActiveController(); + + data.Length = 0; + byte battery = OVRInput.GetControllerBatteryPercentRemaining(); + data.AppendFormat("Battery: {0}\n", battery); + + float framerate = OVRPlugin.GetAppFramerate(); + data.AppendFormat("Framerate: {0:F2}\n", framerate); + + string activeControllerName = activeController.ToString(); + data.AppendFormat("Active: {0}\n", activeControllerName); + + string connectedControllerNames = OVRInput.GetConnectedControllers().ToString(); + data.AppendFormat("Connected: {0}\n", connectedControllerNames); + + data.AppendFormat("PrevConnected: {0}\n", prevConnected); + + controllers.Update(); + controllers.AppendToStringBuilder(ref data); + + prevConnected = connectedControllerNames; + + Quaternion rot = OVRInput.GetLocalControllerRotation(activeController); + data.AppendFormat("Orientation: ({0:F2}, {1:F2}, {2:F2}, {3:F2})\n", rot.x, rot.y, rot.z, rot.w); + + Vector3 angVel = OVRInput.GetLocalControllerAngularVelocity(activeController); + data.AppendFormat("AngVel: ({0:F2}, {1:F2}, {2:F2})\n", angVel.x, angVel.y, angVel.z); + + Vector3 angAcc = OVRInput.GetLocalControllerAngularAcceleration(activeController); + data.AppendFormat("AngAcc: ({0:F2}, {1:F2}, {2:F2})\n", angAcc.x, angAcc.y, angAcc.z); + + Vector3 pos = OVRInput.GetLocalControllerPosition(activeController); + data.AppendFormat("Position: ({0:F2}, {1:F2}, {2:F2})\n", pos.x, pos.y, pos.z); + + Vector3 vel = OVRInput.GetLocalControllerVelocity(activeController); + data.AppendFormat("Vel: ({0:F2}, {1:F2}, {2:F2})\n", vel.x, vel.y, vel.z); + + Vector3 acc = OVRInput.GetLocalControllerAcceleration(activeController); + data.AppendFormat("Acc: ({0:F2}, {1:F2}, {2:F2})\n", acc.x, acc.y, acc.z); + + float indexTrigger = OVRInput.Get(OVRInput.Axis1D.PrimaryIndexTrigger); + data.AppendFormat("PrimaryIndexTriggerAxis1D: ({0:F2})\n", indexTrigger); + + float handTrigger = OVRInput.Get(OVRInput.Axis1D.PrimaryHandTrigger); + data.AppendFormat("PrimaryHandTriggerAxis1D: ({0:F2})\n", handTrigger); + + for (int i = 0; i < monitors.Count; i++) + { + monitors[i].Update(); + monitors[i].AppendToStringBuilder(ref data); + } + + if (uiText != null) + { + uiText.text = data.ToString(); + } + } +} diff --git a/Assets/Oculus/VR/Scripts/Util/OVRControllerTest.cs.meta b/Assets/Oculus/VR/Scripts/Util/OVRControllerTest.cs.meta new file mode 100644 index 00000000..8ae76ebb --- /dev/null +++ b/Assets/Oculus/VR/Scripts/Util/OVRControllerTest.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e0a6abd1cb88e9245bd78dac49d7fd6e +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Scripts/Util/OVRCubemapCapture.cs b/Assets/Oculus/VR/Scripts/Util/OVRCubemapCapture.cs index 8cdce3e0..46a1f367 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRCubemapCapture.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRCubemapCapture.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRCursor.cs b/Assets/Oculus/VR/Scripts/Util/OVRCursor.cs index b93c601a..2ddecf9d 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRCursor.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRCursor.cs @@ -1,13 +1,8 @@ /************************************************************************************ - Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRCustomSkeleton.cs b/Assets/Oculus/VR/Scripts/Util/OVRCustomSkeleton.cs index fd90042d..d23590be 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRCustomSkeleton.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRCustomSkeleton.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -23,10 +19,18 @@ permissions and limitations under the License. public class OVRCustomSkeleton : OVRSkeleton { [SerializeField] - private List _customBones = new List(new Transform[(int)BoneId.Max]); + private bool _applyBoneTranslations = true; + + [HideInInspector] + [SerializeField] + private List _customBones_V2 = new List(new Transform[(int)BoneId.Max]); #if UNITY_EDITOR - private static readonly string[] _fbxBoneNames = + + private static readonly string[] _fbxHandSidePrefix = { "l_", "r_" }; + private static readonly string _fbxHandBonePrefix = "b_"; + + private static readonly string[] _fbxHandBoneNames = { "wrist", "forearm_stub", @@ -49,7 +53,7 @@ public class OVRCustomSkeleton : OVRSkeleton "pinky3" }; - private static readonly string[] _fbxFingerNames = + private static readonly string[] _fbxHandFingerNames = { "thumb", "index", @@ -57,10 +61,9 @@ public class OVRCustomSkeleton : OVRSkeleton "ring", "pinky" }; - private static readonly string[] _handPrefix = { "l_", "r_" }; #endif - public List CustomBones { get { return _customBones; } } + public List CustomBones { get { return _customBones_V2; } } #if UNITY_EDITOR public void TryAutoMapBonesByName() @@ -77,7 +80,7 @@ public void TryAutoMapBonesByName() if (t != null) { - _customBones[(int)bi] = t; + _customBones_V2[(int)bi] = t; } } } @@ -85,30 +88,42 @@ public void TryAutoMapBonesByName() private static string FbxBoneNameFromBoneId(SkeletonType skeletonType, BoneId bi) { - if (bi >= BoneId.Hand_ThumbTip && bi <= BoneId.Hand_PinkyTip) { - return _handPrefix[(int)skeletonType] + _fbxFingerNames[(int)bi - (int)BoneId.Hand_ThumbTip] + "_finger_tip_marker"; - } - else - { - return "b_" + _handPrefix[(int)skeletonType] + _fbxBoneNames[(int)bi]; + if (bi >= BoneId.Hand_ThumbTip && bi <= BoneId.Hand_PinkyTip) + { + return _fbxHandSidePrefix[(int)skeletonType] + _fbxHandFingerNames[(int)bi - (int)BoneId.Hand_ThumbTip] + "_finger_tip_marker"; + } + else + { + return _fbxHandBonePrefix + _fbxHandSidePrefix[(int)skeletonType] + _fbxHandBoneNames[(int)bi]; + } } } - - #endif - - protected override void InitializeBones(OVRPlugin.Skeleton skeleton) + + protected override void InitializeBones() { - _bones = new List(new OVRBone[skeleton.NumBones]); - Bones = _bones.AsReadOnly(); + bool flipX = (_skeletonType == SkeletonType.HandLeft || _skeletonType == SkeletonType.HandRight); + + if (_bones == null || _bones.Count != _skeleton.NumBones) + { + _bones = new List(new OVRBone[_skeleton.NumBones]); + Bones = _bones.AsReadOnly(); + } - for (int i = 0; i < skeleton.NumBones; ++i) + for (int i = 0; i < _bones.Count; ++i) { - BoneId id = (BoneId)skeleton.Bones[i].Id; - short parentIdx = skeleton.Bones[i].ParentBoneIndex; - Transform t = _customBones[(int)id]; - _bones[i] = new OVRBone(id, parentIdx, t); + OVRBone bone = _bones[i] ?? (_bones[i] = new OVRBone()); + bone.Id = (OVRSkeleton.BoneId)_skeleton.Bones[i].Id; + bone.ParentBoneIndex = _skeleton.Bones[i].ParentBoneIndex; + bone.Transform = _customBones_V2[(int)bone.Id]; + + if (_applyBoneTranslations) + { + bone.Transform.localPosition = flipX ? _skeleton.Bones[i].Pose.Position.FromFlippedXVector3f() : _skeleton.Bones[i].Pose.Position.FromFlippedZVector3f(); + } + + bone.Transform.localRotation = flipX ? _skeleton.Bones[i].Pose.Orientation.FromFlippedXQuatf() : _skeleton.Bones[i].Pose.Orientation.FromFlippedZQuatf(); } } } diff --git a/Assets/Oculus/VR/Scripts/Util/OVRDebugInfo.cs b/Assets/Oculus/VR/Scripts/Util/OVRDebugInfo.cs index ca86ba23..abacb518 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRDebugInfo.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRDebugInfo.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -358,11 +354,7 @@ void UpdateEyeDepthOffset() /// void UpdateFOV() { -#if UNITY_2017_2_OR_NEWER OVRDisplay.EyeRenderDesc eyeDesc = OVRManager.display.GetEyeRenderDesc(UnityEngine.XR.XRNode.LeftEye); -#else - OVRDisplay.EyeRenderDesc eyeDesc = OVRManager.display.GetEyeRenderDesc(UnityEngine.VR.VRNode.LeftEye); -#endif strFOV = System.String.Format("FOV (deg): {0:F3}", eyeDesc.fov.y); } @@ -371,17 +363,10 @@ void UpdateFOV() /// void UpdateResolutionEyeTexture() { -#if UNITY_2017_2_OR_NEWER OVRDisplay.EyeRenderDesc leftEyeDesc = OVRManager.display.GetEyeRenderDesc(UnityEngine.XR.XRNode.LeftEye); OVRDisplay.EyeRenderDesc rightEyeDesc = OVRManager.display.GetEyeRenderDesc(UnityEngine.XR.XRNode.RightEye); float scale = UnityEngine.XR.XRSettings.renderViewportScale; -#else - OVRDisplay.EyeRenderDesc leftEyeDesc = OVRManager.display.GetEyeRenderDesc(UnityEngine.VR.VRNode.LeftEye); - OVRDisplay.EyeRenderDesc rightEyeDesc = OVRManager.display.GetEyeRenderDesc(UnityEngine.VR.VRNode.RightEye); - - float scale = UnityEngine.VR.VRSettings.renderViewportScale; -#endif float w = (int)(scale * (float)(leftEyeDesc.resolution.x + rightEyeDesc.resolution.x)); float h = (int)(scale * (float)Mathf.Max(leftEyeDesc.resolution.y, rightEyeDesc.resolution.y)); diff --git a/Assets/Oculus/VR/Scripts/Util/OVRGazePointer.cs b/Assets/Oculus/VR/Scripts/Util/OVRGazePointer.cs index f35f8c3f..b4fd78bf 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRGazePointer.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRGazePointer.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -80,8 +76,8 @@ public class OVRGazePointer : OVRCursor { private OVRProgressIndicator progressIndicator; private static OVRGazePointer _instance; - public static OVRGazePointer instance - { + public static OVRGazePointer instance + { // If there's no GazePointer already in the scene, instanciate one now. get { @@ -92,20 +88,20 @@ public static OVRGazePointer instance } return _instance; } - + } /// /// Used to determine alpha level of gaze cursor. Could also be used to determine cursor size, for example, as the cursor fades out. /// - public float visibilityStrength - { - get + public float visibilityStrength + { + get { - // It's possible there are reasons to show the cursor - such as it hovering over some UI - and reasons to hide + // It's possible there are reasons to show the cursor - such as it hovering over some UI - and reasons to hide // the cursor - such as another input method (e.g. mouse) being used. We take both of these in to account. - + float strengthFromShowRequest; if (hideByDefault) @@ -121,13 +117,13 @@ public float visibilityStrength // Now consider factors requesting pointer to be hidden float strengthFromHideRequest; - + strengthFromHideRequest = (lastHideRequestTime + hideTimeoutPeriod > Time.time) ? (dimOnHideRequest ? 0.1f : 0) : 1; - + // Hide requests take priority return Mathf.Min(strengthFromShowRequest, strengthFromHideRequest); - } + } } public float SelectionProgress @@ -159,12 +155,12 @@ public void Awake() gazeIcon = transform.Find("GazeIcon"); progressIndicator = transform.GetComponent(); } - - void Update () + + void Update () { if (rayTransform == null && Camera.main != null) rayTransform = Camera.main.transform; - + // Move the gaze cursor to keep it in the middle of the view transform.position = rayTransform.position + rayTransform.forward * depth; @@ -189,7 +185,7 @@ public override void SetCursorStartDest(Vector3 _, Vector3 pos, Vector3 normal) transform.position = pos; if (!matchNormalOnPhysicsColliders) normal = rayTransform.forward; - + // Set the rotation to match the normal of the surface it's on. Quaternion newRot = transform.rotation; newRot.SetLookRotation(normal, rayTransform.up); diff --git a/Assets/Oculus/VR/Scripts/Util/OVRGearVrControllerTest.cs b/Assets/Oculus/VR/Scripts/Util/OVRGearVrControllerTest.cs index 7e74c7be..51043566 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRGearVrControllerTest.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRGearVrControllerTest.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -15,197 +11,8 @@ permissions and limitations under the License. ************************************************************************************/ using UnityEngine; -using UnityEngine.UI; -using System.Collections; -using System.Collections.Generic; -using System.Text; public class OVRGearVrControllerTest : MonoBehaviour { - public class BoolMonitor - { - public delegate bool BoolGenerator(); - - private string m_name = ""; - private BoolGenerator m_generator; - private bool m_prevValue = false; - private bool m_currentValue = false; - private bool m_currentValueRecentlyChanged = false; - private float m_displayTimeout = 0.0f; - private float m_displayTimer = 0.0f; - - public BoolMonitor(string name, BoolGenerator generator, float displayTimeout = 0.5f) - { - m_name = name; - m_generator = generator; - m_displayTimeout = displayTimeout; - } - - public void Update() - { - m_prevValue = m_currentValue; - m_currentValue = m_generator(); - - if (m_currentValue != m_prevValue) - { - m_currentValueRecentlyChanged = true; - m_displayTimer = m_displayTimeout; - } - - if (m_displayTimer > 0.0f) - { - m_displayTimer -= Time.deltaTime; - - if (m_displayTimer <= 0.0f) - { - m_currentValueRecentlyChanged = false; - m_displayTimer = 0.0f; - } - } - } - - public void AppendToStringBuilder(ref StringBuilder sb) - { - sb.Append(m_name); - - if (m_currentValue && m_currentValueRecentlyChanged) - sb.Append(": *True*\n"); - else if (m_currentValue) - sb.Append(": True \n"); - else if (!m_currentValue && m_currentValueRecentlyChanged) - sb.Append(": *False*\n"); - else if (!m_currentValue) - sb.Append(": False \n"); - } - } - - public Text uiText; - private List monitors; - private StringBuilder data; - - void Start() - { - if (uiText != null) - { - uiText.supportRichText = false; - } - - data = new StringBuilder(2048); - - monitors = new List() - { - // virtual - new BoolMonitor("WasRecentered", () => OVRInput.GetControllerWasRecentered()), - new BoolMonitor("One", () => OVRInput.Get(OVRInput.Button.One)), - new BoolMonitor("OneDown", () => OVRInput.GetDown(OVRInput.Button.One)), - new BoolMonitor("OneUp", () => OVRInput.GetUp(OVRInput.Button.One)), - new BoolMonitor("One (Touch)", () => OVRInput.Get(OVRInput.Touch.One)), - new BoolMonitor("OneDown (Touch)", () => OVRInput.GetDown(OVRInput.Touch.One)), - new BoolMonitor("OneUp (Touch)", () => OVRInput.GetUp(OVRInput.Touch.One)), - new BoolMonitor("Two", () => OVRInput.Get(OVRInput.Button.Two)), - new BoolMonitor("TwoDown", () => OVRInput.GetDown(OVRInput.Button.Two)), - new BoolMonitor("TwoUp", () => OVRInput.GetUp(OVRInput.Button.Two)), - new BoolMonitor("PrimaryIndexTrigger", () => OVRInput.Get(OVRInput.Button.PrimaryIndexTrigger)), - new BoolMonitor("PrimaryIndexTriggerDown", () => OVRInput.GetDown(OVRInput.Button.PrimaryIndexTrigger)), - new BoolMonitor("PrimaryIndexTriggerUp", () => OVRInput.GetUp(OVRInput.Button.PrimaryIndexTrigger)), - new BoolMonitor("PrimaryIndexTrigger (Touch)", () => OVRInput.Get(OVRInput.Touch.PrimaryIndexTrigger)), - new BoolMonitor("PrimaryIndexTriggerDown (Touch)", () => OVRInput.GetDown(OVRInput.Touch.PrimaryIndexTrigger)), - new BoolMonitor("PrimaryIndexTriggerUp (Touch)", () => OVRInput.GetUp(OVRInput.Touch.PrimaryIndexTrigger)), - new BoolMonitor("PrimaryHandTrigger", () => OVRInput.Get(OVRInput.Button.PrimaryHandTrigger)), - new BoolMonitor("PrimaryHandTriggerDown", () => OVRInput.GetDown(OVRInput.Button.PrimaryHandTrigger)), - new BoolMonitor("PrimaryHandTriggerUp", () => OVRInput.GetUp(OVRInput.Button.PrimaryHandTrigger)), - new BoolMonitor("Up", () => OVRInput.Get(OVRInput.Button.Up)), - new BoolMonitor("Down", () => OVRInput.Get(OVRInput.Button.Down)), - new BoolMonitor("Left", () => OVRInput.Get(OVRInput.Button.Left)), - new BoolMonitor("Right", () => OVRInput.Get(OVRInput.Button.Right)), - new BoolMonitor("Touchpad (Click)", () => OVRInput.Get(OVRInput.Button.PrimaryTouchpad)), - new BoolMonitor("TouchpadDown (Click)", () => OVRInput.GetDown(OVRInput.Button.PrimaryTouchpad)), - new BoolMonitor("TouchpadUp (Click)", () => OVRInput.GetUp(OVRInput.Button.PrimaryTouchpad)), - new BoolMonitor("Touchpad (Touch)", () => OVRInput.Get(OVRInput.Touch.PrimaryTouchpad)), - new BoolMonitor("TouchpadDown (Touch)", () => OVRInput.GetDown(OVRInput.Touch.PrimaryTouchpad)), - new BoolMonitor("TouchpadUp (Touch)", () => OVRInput.GetUp(OVRInput.Touch.PrimaryTouchpad)), - - // raw - new BoolMonitor("Start", () => OVRInput.Get(OVRInput.RawButton.Start)), - new BoolMonitor("StartDown", () => OVRInput.GetDown(OVRInput.RawButton.Start)), - new BoolMonitor("StartUp", () => OVRInput.GetUp(OVRInput.RawButton.Start)), - new BoolMonitor("Back", () => OVRInput.Get(OVRInput.RawButton.Back)), - new BoolMonitor("BackDown", () => OVRInput.GetDown(OVRInput.RawButton.Back)), - new BoolMonitor("BackUp", () => OVRInput.GetUp(OVRInput.RawButton.Back)), - new BoolMonitor("A", () => OVRInput.Get(OVRInput.RawButton.A)), - new BoolMonitor("ADown", () => OVRInput.GetDown(OVRInput.RawButton.A)), - new BoolMonitor("AUp", () => OVRInput.GetUp(OVRInput.RawButton.A)), - }; - } - static string prevConnected = ""; - static BoolMonitor controllers = new BoolMonitor("Controllers Changed", () => { return OVRInput.GetConnectedControllers().ToString() != prevConnected; }); - - void Update() - { - OVRInput.Controller activeController = OVRInput.GetActiveController(); - - data.Length = 0; - byte recenterCount = OVRInput.GetControllerRecenterCount(); - data.AppendFormat("RecenterCount: {0}\n", recenterCount); - - byte battery = OVRInput.GetControllerBatteryPercentRemaining(); - data.AppendFormat("Battery: {0}\n", battery); - - float framerate = OVRPlugin.GetAppFramerate(); - data.AppendFormat("Framerate: {0:F2}\n", framerate); - - string activeControllerName = activeController.ToString(); - data.AppendFormat("Active: {0}\n", activeControllerName); - - string connectedControllerNames = OVRInput.GetConnectedControllers().ToString(); - data.AppendFormat("Connected: {0}\n", connectedControllerNames); - - data.AppendFormat("PrevConnected: {0}\n", prevConnected); - - controllers.Update(); - controllers.AppendToStringBuilder(ref data); - - prevConnected = connectedControllerNames; - - Quaternion rot = OVRInput.GetLocalControllerRotation(activeController); - data.AppendFormat("Orientation: ({0:F2}, {1:F2}, {2:F2}, {3:F2})\n", rot.x, rot.y, rot.z, rot.w); - - Vector3 angVel = OVRInput.GetLocalControllerAngularVelocity(activeController); - data.AppendFormat("AngVel: ({0:F2}, {1:F2}, {2:F2})\n", angVel.x, angVel.y, angVel.z); - - Vector3 angAcc = OVRInput.GetLocalControllerAngularAcceleration(activeController); - data.AppendFormat("AngAcc: ({0:F2}, {1:F2}, {2:F2})\n", angAcc.x, angAcc.y, angAcc.z); - - Vector3 pos = OVRInput.GetLocalControllerPosition(activeController); - data.AppendFormat("Position: ({0:F2}, {1:F2}, {2:F2})\n", pos.x, pos.y, pos.z); - - Vector3 vel = OVRInput.GetLocalControllerVelocity(activeController); - data.AppendFormat("Vel: ({0:F2}, {1:F2}, {2:F2})\n", vel.x, vel.y, vel.z); - - Vector3 acc = OVRInput.GetLocalControllerAcceleration(activeController); - data.AppendFormat("Acc: ({0:F2}, {1:F2}, {2:F2})\n", acc.x, acc.y, acc.z); - - Vector2 primaryTouchpad = OVRInput.Get(OVRInput.Axis2D.PrimaryTouchpad); - data.AppendFormat("PrimaryTouchpad: ({0:F2}, {1:F2})\n", primaryTouchpad.x, primaryTouchpad.y); - - Vector2 secondaryTouchpad = OVRInput.Get(OVRInput.Axis2D.SecondaryTouchpad); - data.AppendFormat("SecondaryTouchpad: ({0:F2}, {1:F2})\n", secondaryTouchpad.x, secondaryTouchpad.y); - - float indexTrigger = OVRInput.Get(OVRInput.Axis1D.PrimaryIndexTrigger); - data.AppendFormat("PrimaryIndexTriggerAxis1D: ({0:F2})\n", indexTrigger); - - float handTrigger = OVRInput.Get(OVRInput.Axis1D.PrimaryHandTrigger); - data.AppendFormat("PrimaryHandTriggerAxis1D: ({0:F2})\n", handTrigger); - - for (int i = 0; i < monitors.Count; i++) - { - monitors[i].Update(); - monitors[i].AppendToStringBuilder(ref data); - } - - if (uiText != null) - { - uiText.text = data.ToString(); - } - } + // Deprecated since SDK 1.51 } diff --git a/Assets/Oculus/VR/Scripts/Util/OVRGrabbable.cs b/Assets/Oculus/VR/Scripts/Util/OVRGrabbable.cs index 687a9138..eed05365 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRGrabbable.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRGrabbable.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRGrabber.cs b/Assets/Oculus/VR/Scripts/Util/OVRGrabber.cs index fd1eef08..6c1f0ea1 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRGrabber.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRGrabber.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -27,8 +23,6 @@ public class OVRGrabber : MonoBehaviour public float grabBegin = 0.55f; public float grabEnd = 0.35f; - bool alreadyUpdated = false; - // Demonstrates parenting the held object to the hand's transform when grabbed. // When false, the grabbed object is moved every FixedUpdate using MovePosition. // Note that MovePosition is required for proper physics simulation. If you set this to true, you can @@ -38,7 +32,7 @@ public class OVRGrabber : MonoBehaviour protected bool m_parentHeldObject = false; // If true, this script will move the hand to the transform specified by m_parentTransform, using MovePosition in - // FixedUpdate. This allows correct physics behavior, at the cost of some latency. In this usage scenario, you + // Update. This allows correct physics behavior, at the cost of some latency. In this usage scenario, you // should NOT parent the hand to the hand anchor. // (If m_moveHandPosition is false, this script will NOT update the game object's position. // The hand gameObject can simply be attached to the hand anchor, which updates position in LateUpdate, @@ -128,13 +122,17 @@ protected virtual void Start() SetPlayerIgnoreCollision(gameObject, true); } + // Using Update instead of FixedUpdate. Doing this in FixedUpdate causes visible judder even with + // somewhat high tick rates, because variable numbers of ticks per frame will give hand poses of + // varying recency. We want a single hand pose sampled at the same time each frame. + // Note that this can lead to its own side effects. For example, if m_parentHeldObject is false, the + // grabbed objects will be moved with MovePosition. If this is called in Update while the physics + // tick rate is dramatically different from the application frame rate, other objects touched by + // the held object will see an incorrect velocity (because the move will occur over the time of the + // physics tick, not the render tick), and will respond to the incorrect velocity with potentially + // visible artifacts. virtual public void Update() { - alreadyUpdated = false; - } - - virtual public void FixedUpdate() - { if (m_operatingWithoutOVRCameraRig) { OnUpdatedAnchors(); @@ -146,11 +144,6 @@ virtual public void FixedUpdate() // your hands or held objects, you may wish to switch to parenting. void OnUpdatedAnchors() { - // Don't want to MovePosition multiple times in a frame, as it causes high judder in conjunction - // with the hand position prediction in the runtime. - if (alreadyUpdated) return; - alreadyUpdated = true; - Vector3 destPos = m_parentTransform.TransformPoint(m_anchorOffsetPosition); Quaternion destRot = m_parentTransform.rotation * m_anchorOffsetRotation; @@ -308,11 +301,15 @@ protected virtual void GrabBegin() m_grabbedObjectRotOff = relOri; } - // Note: force teleport on grab, to avoid high-speed travel to dest which hits a lot of other objects at high + // NOTE: force teleport on grab, to avoid high-speed travel to dest which hits a lot of other objects at high // speed and sends them flying. The grabbed object may still teleport inside of other objects, but fixing that // is beyond the scope of this demo. MoveGrabbedObject(m_lastPos, m_lastRot, true); + + // NOTE: This is to get around having to setup collision layers, but in your own project you might + // choose to remove this line in favor of your own collision layer setup. SetPlayerIgnoreCollision(m_grabbedObj.gameObject, true); + if (m_parentHeldObject) { m_grabbedObj.transform.parent = transform; @@ -366,7 +363,6 @@ protected void GrabbableRelease(Vector3 linearVelocity, Vector3 angularVelocity) { m_grabbedObj.GrabEnd(linearVelocity, angularVelocity); if(m_parentHeldObject) m_grabbedObj.transform.parent = null; - SetPlayerIgnoreCollision(m_grabbedObj.gameObject, false); m_grabbedObj = null; } @@ -408,7 +404,8 @@ protected void SetPlayerIgnoreCollision(GameObject grabbable, bool ignore) Collider[] colliders = grabbable.GetComponentsInChildren(); foreach (Collider c in colliders) { - Physics.IgnoreCollision(c, pc, ignore); + if(!c.isTrigger && !pc.isTrigger) + Physics.IgnoreCollision(c, pc, ignore); } } } diff --git a/Assets/Oculus/VR/Scripts/Util/OVRGrabber.cs.meta b/Assets/Oculus/VR/Scripts/Util/OVRGrabber.cs.meta index 3701fc88..0f9a3b73 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRGrabber.cs.meta +++ b/Assets/Oculus/VR/Scripts/Util/OVRGrabber.cs.meta @@ -1,11 +1,10 @@ fileFormatVersion: 2 guid: fd425c2d06f39bf4899d07c05d0f10eb -timeCreated: 1481832436 -licenseType: Store MonoImporter: + externalObjects: {} serializedVersion: 2 defaultReferences: [] - executionOrder: 0 + executionOrder: 200 icon: {instanceID: 0} userData: assetBundleName: diff --git a/Assets/Oculus/VR/Scripts/Util/OVRGridCube.cs b/Assets/Oculus/VR/Scripts/Util/OVRGridCube.cs index 734b6400..31fb07bd 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRGridCube.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRGridCube.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRHand.cs b/Assets/Oculus/VR/Scripts/Util/OVRHand.cs index 7ac05fda..43fa39aa 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRHand.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRHand.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -63,6 +59,7 @@ public enum TrackingConfidence public Transform PointerPose { get; private set; } public float HandScale { get; private set; } public TrackingConfidence HandConfidence { get; private set; } + public bool IsDominantHand { get; private set; } private void Awake() { @@ -83,7 +80,10 @@ private void Update() private void FixedUpdate() { - GetHandState(OVRPlugin.Step.Physics); + if (OVRPlugin.nativeXrApi != OVRPlugin.XrApi.OpenXR) + { + GetHandState(OVRPlugin.Step.Physics); + } } private void GetHandState(OVRPlugin.Step step) @@ -93,6 +93,7 @@ private void GetHandState(OVRPlugin.Step step) IsTracked = (_handState.Status & OVRPlugin.HandStatus.HandTracked) != 0; IsSystemGestureInProgress = (_handState.Status & OVRPlugin.HandStatus.SystemGestureInProgress) != 0; IsPointerPoseValid = (_handState.Status & OVRPlugin.HandStatus.InputStateValid) != 0; + IsDominantHand = (_handState.Status & OVRPlugin.HandStatus.DominantHand) != 0; PointerPose.localPosition = _handState.PointerPose.Position.FromFlippedZVector3f(); PointerPose.localRotation = _handState.PointerPose.Orientation.FromFlippedZQuatf(); HandScale = _handState.HandScale; diff --git a/Assets/Oculus/VR/Scripts/Util/OVRHandTest.cs b/Assets/Oculus/VR/Scripts/Util/OVRHandTest.cs index 979768c0..1add21eb 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRHandTest.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRHandTest.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -109,7 +105,6 @@ void Start() monitors = new List() { - new BoolMonitor("WasRecentered", () => OVRInput.GetControllerWasRecentered()), new BoolMonitor("One", () => OVRInput.Get(OVRInput.Button.One)), }; diff --git a/Assets/Oculus/VR/Scripts/Util/OVRInputModule.cs b/Assets/Oculus/VR/Scripts/Util/OVRInputModule.cs index 15675a07..12522645 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRInputModule.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRInputModule.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -47,14 +43,12 @@ public class OVRInputModule : PointerInputModule public float rightStickDeadZone = 0.15f; [Header("Touchpad Swipe Scroll")] - [Tooltip("Enable scrolling by swiping the GearVR touchpad")] + [Tooltip("Enable scrolling by swiping the touchpad")] public bool useSwipeScroll = true; [Tooltip("Minimum trackpad movement in pixels to start swiping")] public float swipeDragThreshold = 2; [Tooltip("Distance scrolled when swipe scroll occurs")] public float swipeDragScale = 1f; - /* It's debatable which way left and right are on the Gear VR touchpad since it's facing away from you - * the following bool allows this to be swapped*/ [Tooltip("Invert X axis on touchpad")] public bool InvertSwipeXAxis = false; @@ -67,7 +61,7 @@ public class OVRInputModule : PointerInputModule public float angleDragThreshold = 1; [SerializeField] - private float m_SpherecastRadius = 1.0f; + private float m_SpherecastRadius = 1.0f; @@ -799,7 +793,6 @@ protected Vector2 SwipeAdjustedPosition(Vector2 originalPosition, PointerEventDa return originalPosition + delta * swipeDragScale; } #endif - // If not Gear VR or swipe scroll isn't enabled just return original position return originalPosition; } @@ -822,7 +815,7 @@ protected override void ProcessDrag(PointerEventData pointerEvent) if (pointerEvent.IsVRPointer()) { //adjust the position used based on swiping action. Allowing the user to - //drag items by swiping on the GearVR touchpad + //drag items by swiping on the touchpad pointerEvent.position = SwipeAdjustedPosition (originalPosition, pointerEvent); } ExecuteEvents.Execute(pointerEvent.pointerDrag, pointerEvent, ExecuteEvents.beginDragHandler); @@ -860,8 +853,6 @@ virtual protected PointerEventData.FramePressState GetGazeButtonState() var released = Input.GetKeyUp(gazeClickKey) || OVRInput.GetUp(joyPadClickButton); #if UNITY_ANDROID && !UNITY_EDITOR - // On Gear VR the mouse button events correspond to touch pad events. We only use these as gaze pointer clicks - // on Gear VR because on PC the mouse clicks are used for actual mouse pointer interactions. pressed |= Input.GetMouseButtonDown(0); released |= Input.GetMouseButtonUp(0); #endif diff --git a/Assets/Oculus/VR/Scripts/Util/OVRMesh.cs b/Assets/Oculus/VR/Scripts/Util/OVRMesh.cs index 2ae83bd7..5db4da18 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRMesh.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRMesh.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -58,19 +54,41 @@ private void Awake() _meshType = _dataProvider.GetMeshType(); } - if (_meshType != MeshType.None) + if (ShouldInitialize()) { Initialize(_meshType); } } - private void Initialize(MeshType meshType) + private bool ShouldInitialize() { - if (null == _mesh) + if (IsInitialized) { - _mesh = new Mesh(); + return false; } + if (_meshType == MeshType.None) + { + return false; + } + else if (_meshType == MeshType.HandLeft || _meshType == MeshType.HandRight) + { +#if UNITY_EDITOR + return OVRInput.IsControllerConnected(OVRInput.Controller.Hands); +#else + return true; +#endif + } + else + { + return true; + } + } + + private void Initialize(MeshType meshType) + { + _mesh = new Mesh(); + var ovrpMesh = new OVRPlugin.Mesh(); if (OVRPlugin.GetMesh((OVRPlugin.MeshType)_meshType, out ovrpMesh)) { @@ -125,12 +143,10 @@ private void Initialize(MeshType meshType) private void Update() { - if (!IsInitialized && OVRInput.IsControllerConnected(OVRInput.Controller.Hands)) + if (ShouldInitialize()) { - if (_meshType != MeshType.None) - { - Initialize(_meshType); - } + Initialize(_meshType); } } + } diff --git a/Assets/Oculus/VR/Scripts/Util/OVRMeshRenderer.cs b/Assets/Oculus/VR/Scripts/Util/OVRMeshRenderer.cs index 7c8ad55d..7ba7d431 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRMeshRenderer.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRMeshRenderer.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -87,11 +83,31 @@ private void Start() { if (_ovrMesh == null) { + // disable if no mesh configured this.enabled = false; return; } - Initialize(); + if (ShouldInitialize()) + { + Initialize(); + } + } + + private bool ShouldInitialize() + { + if (IsInitialized) + { + return false; + } + + if ((_ovrMesh == null) || ((_ovrMesh != null) && !_ovrMesh.IsInitialized) || ((_ovrSkeleton != null) && !_ovrSkeleton.IsInitialized)) + { + // do not initialize if mesh or optional skeleton are not initialized + return false; + } + + return true; } private void Initialize() @@ -102,33 +118,35 @@ private void Initialize() _skinnedMeshRenderer = gameObject.AddComponent(); } - if (_ovrMesh.IsInitialized && _ovrSkeleton.IsInitialized) - { - _skinnedMeshRenderer.sharedMesh = _ovrMesh.Mesh; - _originalMaterial = _skinnedMeshRenderer.sharedMaterial; + _skinnedMeshRenderer.sharedMesh = _ovrMesh.Mesh; + _originalMaterial = _skinnedMeshRenderer.sharedMaterial; - if (_ovrSkeleton != null) + if ((_ovrSkeleton != null)) + { + int numSkinnableBones = _ovrSkeleton.GetCurrentNumSkinnableBones(); + var bindPoses = new Matrix4x4[numSkinnableBones]; + var bones = new Transform[numSkinnableBones]; + var localToWorldMatrix = transform.localToWorldMatrix; + for (int i = 0; i < numSkinnableBones && i < _ovrSkeleton.Bones.Count; ++i) { - int numSkinnableBones = _ovrSkeleton.GetCurrentNumSkinnableBones(); - var bindPoses = new Matrix4x4[numSkinnableBones]; - var bones = new Transform[numSkinnableBones]; - var localToWorldMatrix = transform.localToWorldMatrix; - for (int i = 0; i < numSkinnableBones && i < _ovrSkeleton.Bones.Count; ++i) - { - bones[i] = _ovrSkeleton.Bones[i].Transform; - bindPoses[i] = _ovrSkeleton.BindPoses[i].Transform.worldToLocalMatrix * localToWorldMatrix; - } - _ovrMesh.Mesh.bindposes = bindPoses; - _skinnedMeshRenderer.bones = bones; - _skinnedMeshRenderer.updateWhenOffscreen = true; - - IsInitialized = true; + bones[i] = _ovrSkeleton.Bones[i].Transform; + bindPoses[i] = _ovrSkeleton.BindPoses[i].Transform.worldToLocalMatrix * localToWorldMatrix; } + _ovrMesh.Mesh.bindposes = bindPoses; + _skinnedMeshRenderer.bones = bones; + _skinnedMeshRenderer.updateWhenOffscreen = true; } + + IsInitialized = true; } private void Update() { + if (ShouldInitialize()) + { + Initialize(); + } + IsDataValid = false; IsDataHighConfidence = false; ShouldUseSystemGestureMaterial = false; @@ -171,9 +189,5 @@ private void Update() } } } - else if (OVRInput.IsControllerConnected(OVRInput.Controller.Hands)) - { - Initialize(); - } } } diff --git a/Assets/Oculus/VR/Scripts/Util/OVRMixedRealityCaptureConfiguration.cs b/Assets/Oculus/VR/Scripts/Util/OVRMixedRealityCaptureConfiguration.cs new file mode 100644 index 00000000..15daf1f7 --- /dev/null +++ b/Assets/Oculus/VR/Scripts/Util/OVRMixedRealityCaptureConfiguration.cs @@ -0,0 +1,93 @@ +/************************************************************************************ +Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. + +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ + +Unless required by applicable law or agreed to in writing, the Utilities SDK distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF +ANY KIND, either express or implied. See the License for the specific language governing +permissions and limitations under the License. +************************************************************************************/ + +#if UNITY_ANDROID && !UNITY_EDITOR +#define OVR_ANDROID_MRC +#endif + +using System; +using UnityEngine; + +public interface OVRMixedRealityCaptureConfiguration +{ +#if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || UNITY_ANDROID + bool enableMixedReality { get; set; } + LayerMask extraHiddenLayers { get; set; } + LayerMask extraVisibleLayers { get; set; } + bool dynamicCullingMask { get; set; } + OVRManager.CompositionMethod compositionMethod { get; set; } + Color externalCompositionBackdropColorRift { get; set; } + Color externalCompositionBackdropColorQuest { get; set; } + OVRManager.CameraDevice capturingCameraDevice { get; set; } + bool flipCameraFrameHorizontally { get; set; } + bool flipCameraFrameVertically { get; set; } + float handPoseStateLatency { get; set; } + float sandwichCompositionRenderLatency { get; set; } + int sandwichCompositionBufferedFrames { get; set; } + Color chromaKeyColor { get; set; } + float chromaKeySimilarity { get; set; } + float chromaKeySmoothRange { get; set; } + float chromaKeySpillRange { get; set; } + bool useDynamicLighting { get; set; } + OVRManager.DepthQuality depthQuality { get; set; } + float dynamicLightingSmoothFactor { get; set; } + float dynamicLightingDepthVariationClampingValue { get; set; } + OVRManager.VirtualGreenScreenType virtualGreenScreenType { get; set; } + float virtualGreenScreenTopY { get; set; } + float virtualGreenScreenBottomY { get; set; } + bool virtualGreenScreenApplyDepthCulling { get; set; } + float virtualGreenScreenDepthTolerance { get; set; } + OVRManager.MrcActivationMode mrcActivationMode { get; set; } + OVRManager.InstantiateMrcCameraDelegate instantiateMixedRealityCameraGameObject { get; set; } +#endif +} + +#if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || UNITY_ANDROID +public static class OVRMixedRealityCaptureConfigurationExtensions +{ + public static void ApplyTo(this OVRMixedRealityCaptureConfiguration dest, OVRMixedRealityCaptureConfiguration source) + { + dest.ReadFrom(source); + } + + public static void ReadFrom(this OVRMixedRealityCaptureConfiguration dest, OVRMixedRealityCaptureConfiguration source) + { + dest.enableMixedReality = source.enableMixedReality; + dest.compositionMethod = source.compositionMethod; + dest.extraHiddenLayers = source.extraHiddenLayers; + dest.externalCompositionBackdropColorRift = source.externalCompositionBackdropColorRift; + dest.externalCompositionBackdropColorQuest = source.externalCompositionBackdropColorQuest; + dest.capturingCameraDevice = source.capturingCameraDevice; + dest.flipCameraFrameHorizontally = source.flipCameraFrameHorizontally; + dest.flipCameraFrameVertically = source.flipCameraFrameVertically; + dest.handPoseStateLatency = source.handPoseStateLatency; + dest.sandwichCompositionRenderLatency = source.sandwichCompositionRenderLatency; + dest.sandwichCompositionBufferedFrames = source.sandwichCompositionBufferedFrames; + dest.chromaKeyColor = source.chromaKeyColor; + dest.chromaKeySimilarity = source.chromaKeySimilarity; + dest.chromaKeySmoothRange = source.chromaKeySmoothRange; + dest.chromaKeySpillRange = source.chromaKeySpillRange; + dest.useDynamicLighting = source.useDynamicLighting; + dest.depthQuality = source.depthQuality; + dest.dynamicLightingSmoothFactor = source.dynamicLightingSmoothFactor; + dest.dynamicLightingDepthVariationClampingValue = source.dynamicLightingDepthVariationClampingValue; + dest.virtualGreenScreenType = source.virtualGreenScreenType; + dest.virtualGreenScreenTopY = source.virtualGreenScreenTopY; + dest.virtualGreenScreenBottomY = source.virtualGreenScreenBottomY; + dest.virtualGreenScreenApplyDepthCulling = source.virtualGreenScreenApplyDepthCulling; + dest.virtualGreenScreenDepthTolerance = source.virtualGreenScreenDepthTolerance; + dest.mrcActivationMode = source.mrcActivationMode; + dest.instantiateMixedRealityCameraGameObject = source.instantiateMixedRealityCameraGameObject; + } + +} +#endif diff --git a/Assets/Oculus/VR/Scripts/Util/OVRMixedRealityCaptureConfiguration.cs.meta b/Assets/Oculus/VR/Scripts/Util/OVRMixedRealityCaptureConfiguration.cs.meta new file mode 100644 index 00000000..2355bc24 --- /dev/null +++ b/Assets/Oculus/VR/Scripts/Util/OVRMixedRealityCaptureConfiguration.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 3daa35105ec74ccb94bc0756d34b2d55 +timeCreated: 1605293235 \ No newline at end of file diff --git a/Assets/Oculus/VR/Scripts/Util/OVRMixedRealityCaptureSettings.cs b/Assets/Oculus/VR/Scripts/Util/OVRMixedRealityCaptureSettings.cs index df7e0481..719b5a3c 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRMixedRealityCaptureSettings.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRMixedRealityCaptureSettings.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -22,11 +18,13 @@ permissions and limitations under the License. using System; using System.IO; -#if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || OVR_ANDROID_MRC -public class OVRMixedRealityCaptureSettings : ScriptableObject +#if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || UNITY_ANDROID +public class OVRMixedRealityCaptureSettings : ScriptableObject, OVRMixedRealityCaptureConfiguration { public bool enableMixedReality = false; public LayerMask extraHiddenLayers; + public LayerMask extraVisibleLayers; + public bool dynamicCullingMask = true; public OVRManager.CompositionMethod compositionMethod = OVRManager.CompositionMethod.External; public Color externalCompositionBackdropColorRift = Color.green; public Color externalCompositionBackdropColorQuest = Color.clear; @@ -49,61 +47,38 @@ public class OVRMixedRealityCaptureSettings : ScriptableObject public float virtualGreenScreenBottomY; public bool virtualGreenScreenApplyDepthCulling = false; public float virtualGreenScreenDepthTolerance = 0.2f; + public OVRManager.MrcActivationMode mrcActivationMode; + + // OVRMixedRealityCaptureConfiguration Interface implementation + bool OVRMixedRealityCaptureConfiguration.enableMixedReality { get { return enableMixedReality; } set { enableMixedReality = value; } } + LayerMask OVRMixedRealityCaptureConfiguration.extraHiddenLayers { get { return extraHiddenLayers; } set { extraHiddenLayers = value; } } + LayerMask OVRMixedRealityCaptureConfiguration.extraVisibleLayers { get { return extraVisibleLayers; } set { extraVisibleLayers = value; } } + bool OVRMixedRealityCaptureConfiguration.dynamicCullingMask { get { return dynamicCullingMask; } set { dynamicCullingMask = value; } } + OVRManager.CompositionMethod OVRMixedRealityCaptureConfiguration.compositionMethod { get { return compositionMethod; } set { compositionMethod = value; } } + Color OVRMixedRealityCaptureConfiguration.externalCompositionBackdropColorRift { get { return externalCompositionBackdropColorRift; } set { externalCompositionBackdropColorRift = value; } } + Color OVRMixedRealityCaptureConfiguration.externalCompositionBackdropColorQuest { get { return externalCompositionBackdropColorQuest; } set { externalCompositionBackdropColorQuest = value; } } + OVRManager.CameraDevice OVRMixedRealityCaptureConfiguration.capturingCameraDevice { get { return capturingCameraDevice; } set { capturingCameraDevice = value; } } + bool OVRMixedRealityCaptureConfiguration.flipCameraFrameHorizontally { get { return flipCameraFrameHorizontally; } set { flipCameraFrameHorizontally = value; } } + bool OVRMixedRealityCaptureConfiguration.flipCameraFrameVertically { get { return flipCameraFrameVertically; } set { flipCameraFrameVertically = value; } } + float OVRMixedRealityCaptureConfiguration.handPoseStateLatency { get { return handPoseStateLatency; } set { handPoseStateLatency = value; } } + float OVRMixedRealityCaptureConfiguration.sandwichCompositionRenderLatency { get { return sandwichCompositionRenderLatency; } set { sandwichCompositionRenderLatency = value; } } + int OVRMixedRealityCaptureConfiguration.sandwichCompositionBufferedFrames { get { return sandwichCompositionBufferedFrames; } set { sandwichCompositionBufferedFrames = value; } } + Color OVRMixedRealityCaptureConfiguration.chromaKeyColor { get { return chromaKeyColor; } set { chromaKeyColor = value; } } + float OVRMixedRealityCaptureConfiguration.chromaKeySimilarity { get { return chromaKeySimilarity; } set { chromaKeySimilarity = value; } } + float OVRMixedRealityCaptureConfiguration.chromaKeySmoothRange { get { return chromaKeySmoothRange; } set { chromaKeySmoothRange = value; } } + float OVRMixedRealityCaptureConfiguration.chromaKeySpillRange { get { return chromaKeySpillRange; } set { chromaKeySpillRange = value; } } + bool OVRMixedRealityCaptureConfiguration.useDynamicLighting { get { return useDynamicLighting; } set { useDynamicLighting = value; } } + OVRManager.DepthQuality OVRMixedRealityCaptureConfiguration.depthQuality { get { return depthQuality; } set { depthQuality = value; } } + float OVRMixedRealityCaptureConfiguration.dynamicLightingSmoothFactor { get { return dynamicLightingSmoothFactor; } set { dynamicLightingSmoothFactor = value; } } + float OVRMixedRealityCaptureConfiguration.dynamicLightingDepthVariationClampingValue { get { return dynamicLightingDepthVariationClampingValue; } set { dynamicLightingDepthVariationClampingValue = value; } } + OVRManager.VirtualGreenScreenType OVRMixedRealityCaptureConfiguration.virtualGreenScreenType { get { return virtualGreenScreenType; } set { virtualGreenScreenType = value; } } + float OVRMixedRealityCaptureConfiguration.virtualGreenScreenTopY { get { return virtualGreenScreenTopY; } set { virtualGreenScreenTopY = value; } } + float OVRMixedRealityCaptureConfiguration.virtualGreenScreenBottomY { get { return virtualGreenScreenBottomY; } set { virtualGreenScreenBottomY = value; } } + bool OVRMixedRealityCaptureConfiguration.virtualGreenScreenApplyDepthCulling { get { return virtualGreenScreenApplyDepthCulling; } set { virtualGreenScreenApplyDepthCulling = value; } } + float OVRMixedRealityCaptureConfiguration.virtualGreenScreenDepthTolerance { get { return virtualGreenScreenDepthTolerance; } set { virtualGreenScreenDepthTolerance = value; } } + OVRManager.MrcActivationMode OVRMixedRealityCaptureConfiguration.mrcActivationMode { get { return mrcActivationMode; } set { mrcActivationMode = value; } } + OVRManager.InstantiateMrcCameraDelegate OVRMixedRealityCaptureConfiguration.instantiateMixedRealityCameraGameObject { get; set; } - public void ReadFrom(OVRManager manager) - { - enableMixedReality = manager.enableMixedReality; - compositionMethod = manager.compositionMethod; - extraHiddenLayers = manager.extraHiddenLayers; - externalCompositionBackdropColorRift = manager.externalCompositionBackdropColorRift; - externalCompositionBackdropColorQuest = manager.externalCompositionBackdropColorQuest; - capturingCameraDevice = manager.capturingCameraDevice; - flipCameraFrameHorizontally = manager.flipCameraFrameHorizontally; - flipCameraFrameVertically = manager.flipCameraFrameVertically; - handPoseStateLatency = manager.handPoseStateLatency; - sandwichCompositionRenderLatency = manager.sandwichCompositionRenderLatency; - sandwichCompositionBufferedFrames = manager.sandwichCompositionBufferedFrames; - chromaKeyColor = manager.chromaKeyColor; - chromaKeySimilarity = manager.chromaKeySimilarity; - chromaKeySmoothRange = manager.chromaKeySmoothRange; - chromaKeySpillRange = manager.chromaKeySpillRange; - useDynamicLighting = manager.useDynamicLighting; - depthQuality = manager.depthQuality; - dynamicLightingSmoothFactor = manager.dynamicLightingSmoothFactor; - dynamicLightingDepthVariationClampingValue = manager.dynamicLightingDepthVariationClampingValue; - virtualGreenScreenType = manager.virtualGreenScreenType; - virtualGreenScreenTopY = manager.virtualGreenScreenTopY; - virtualGreenScreenBottomY = manager.virtualGreenScreenBottomY; - virtualGreenScreenApplyDepthCulling = manager.virtualGreenScreenApplyDepthCulling; - virtualGreenScreenDepthTolerance = manager.virtualGreenScreenDepthTolerance; - } - public void ApplyTo(OVRManager manager) - { - manager.enableMixedReality = enableMixedReality; - manager.compositionMethod = compositionMethod; - manager.extraHiddenLayers = extraHiddenLayers; - manager.externalCompositionBackdropColorRift = externalCompositionBackdropColorRift; - manager.externalCompositionBackdropColorQuest = externalCompositionBackdropColorQuest; - manager.capturingCameraDevice = capturingCameraDevice; - manager.flipCameraFrameHorizontally = flipCameraFrameHorizontally; - manager.flipCameraFrameVertically = flipCameraFrameVertically; - manager.handPoseStateLatency = handPoseStateLatency; - manager.sandwichCompositionRenderLatency = sandwichCompositionRenderLatency; - manager.sandwichCompositionBufferedFrames = sandwichCompositionBufferedFrames; - manager.chromaKeyColor = chromaKeyColor; - manager.chromaKeySimilarity = chromaKeySimilarity; - manager.chromaKeySmoothRange = chromaKeySmoothRange; - manager.chromaKeySpillRange = chromaKeySpillRange; - manager.useDynamicLighting = useDynamicLighting; - manager.depthQuality = depthQuality; - manager.dynamicLightingSmoothFactor = dynamicLightingSmoothFactor; - manager.dynamicLightingDepthVariationClampingValue = dynamicLightingDepthVariationClampingValue; - manager.virtualGreenScreenType = virtualGreenScreenType; - manager.virtualGreenScreenTopY = virtualGreenScreenTopY; - manager.virtualGreenScreenBottomY = virtualGreenScreenBottomY; - manager.virtualGreenScreenApplyDepthCulling = virtualGreenScreenApplyDepthCulling; - manager.virtualGreenScreenDepthTolerance = virtualGreenScreenDepthTolerance; - } #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN // Rift MRC only const string configFileName = "mrc.config"; diff --git a/Assets/Oculus/VR/Scripts/Util/OVRModeParms.cs b/Assets/Oculus/VR/Scripts/Util/OVRModeParms.cs index f286c34c..0996b20a 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRModeParms.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRModeParms.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRMonoscopic.cs b/Assets/Oculus/VR/Scripts/Util/OVRMonoscopic.cs index 6f3d0a01..26eab345 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRMonoscopic.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRMonoscopic.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRNetwork.cs b/Assets/Oculus/VR/Scripts/Util/OVRNetwork.cs index 594c56bb..de252ce5 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRNetwork.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRNetwork.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRPhysicsRaycaster.cs b/Assets/Oculus/VR/Scripts/Util/OVRPhysicsRaycaster.cs index e15cb28f..ed63167f 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRPhysicsRaycaster.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRPhysicsRaycaster.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRPlayerController.cs b/Assets/Oculus/VR/Scripts/Util/OVRPlayerController.cs index 93eb5614..956da7e8 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRPlayerController.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRPlayerController.cs @@ -1,10 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. -You may obtain a copy of the License at https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRPointerEventData.cs b/Assets/Oculus/VR/Scripts/Util/OVRPointerEventData.cs index 7d3bf1e4..a3241bca 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRPointerEventData.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRPointerEventData.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRProfiler.cs b/Assets/Oculus/VR/Scripts/Util/OVRProfiler.cs index bfe8a706..da2bbff8 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRProfiler.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRProfiler.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -25,9 +21,7 @@ public class OVRProfiler : EditorWindow { enum TargetPlatform { - OculusGo, - GearVR, - Quest, + OculusQuest, OculusRift }; @@ -41,7 +35,7 @@ static void Init() // Get existing open window or if none, make a new one: EditorWindow.GetWindow(typeof(OVRProfiler)); #if UNITY_ANDROID - mTargetPlatform = TargetPlatform.OculusGo; + mTargetPlatform = TargetPlatform.OculusQuest; #else mTargetPlatform = TargetPlatform.OculusRift; #endif @@ -52,7 +46,7 @@ void OnGUI() GUILayout.Label("OVR Profiler", EditorStyles.boldLabel); string[] options = new string[] { - "Oculus Go", "Gear VR", "Oculus Quest", "Oculus Rift", + "Oculus Quest", "Oculus Rift", }; mTargetPlatform = (TargetPlatform)EditorGUILayout.Popup("Target Oculus Platform", (int)mTargetPlatform, options); diff --git a/Assets/Oculus/VR/Scripts/Util/OVRProgressIndicator.cs b/Assets/Oculus/VR/Scripts/Util/OVRProgressIndicator.cs index 7c0ac581..7674d197 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRProgressIndicator.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRProgressIndicator.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRRaycaster.cs b/Assets/Oculus/VR/Scripts/Util/OVRRaycaster.cs index cf9e4406..ef0078f0 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRRaycaster.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRRaycaster.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRRecord.cs b/Assets/Oculus/VR/Scripts/Util/OVRRecord.cs index 1771e368..96ab1646 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRRecord.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRRecord.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRResetOrientation.cs b/Assets/Oculus/VR/Scripts/Util/OVRResetOrientation.cs index 4724c26f..b23b5bed 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRResetOrientation.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRResetOrientation.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRSceneSampleController.cs b/Assets/Oculus/VR/Scripts/Util/OVRSceneSampleController.cs index c1d7b9ea..9b8ea109 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRSceneSampleController.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRSceneSampleController.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -142,11 +138,7 @@ void Update() Screen.fullScreen = !Screen.fullScreen; if (Input.GetKeyDown(KeyCode.M)) -#if UNITY_2017_2_OR_NEWER UnityEngine.XR.XRSettings.showDeviceView = !UnityEngine.XR.XRSettings.showDeviceView; -#else - UnityEngine.VR.VRSettings.showDeviceView = !UnityEngine.VR.VRSettings.showDeviceView; -#endif #if !UNITY_ANDROID || UNITY_EDITOR // Escape Application diff --git a/Assets/Oculus/VR/Scripts/Util/OVRScreenFade.cs b/Assets/Oculus/VR/Scripts/Util/OVRScreenFade.cs index 3a18749b..ce9b7458 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRScreenFade.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRScreenFade.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -22,27 +18,34 @@ permissions and limitations under the License. /// public class OVRScreenFade : MonoBehaviour { - [Tooltip("Fade duration")] + public static OVRScreenFade instance { get; private set; } + + [Tooltip("Fade duration")] public float fadeTime = 2.0f; - [Tooltip("Screen color at maximum fade")] + [Tooltip("Screen color at maximum fade")] public Color fadeColor = new Color(0.01f, 0.01f, 0.01f, 1.0f); - public bool fadeOnStart = true; + public bool fadeOnStart = true; /// /// The render queue used by the fade mesh. Reduce this if you need to render on top of it. /// public int renderQueue = 5000; - private float uiFadeAlpha = 0; + /// + /// Renders the current alpha value being used to fade the screen. + /// + public float currentAlpha { get { return Mathf.Max(explicitFadeAlpha, animatedFadeAlpha, uiFadeAlpha); } } + + private float explicitFadeAlpha = 0.0f; + private float animatedFadeAlpha = 0.0f; + private float uiFadeAlpha = 0.0f; private MeshRenderer fadeRenderer; private MeshFilter fadeMesh; private Material fadeMaterial = null; - private bool isFading = false; - - public float currentAlpha { get; private set; } + private bool isFading = false; /// /// Automatically starts a fade in @@ -106,36 +109,49 @@ void Start() mesh.uv = uv; - SetFadeLevel(0); + explicitFadeAlpha = 0.0f; + animatedFadeAlpha = 0.0f; + uiFadeAlpha = 0.0f; if (fadeOnStart) { - StartCoroutine(Fade(1, 0)); + FadeIn(); } + + instance = this; + } + + /// + /// Start a fade in + /// + public void FadeIn() + { + StartCoroutine(Fade(1.0f, 0.0f)); } /// /// Start a fade out /// public void FadeOut() - { - StartCoroutine(Fade(0,1)); - } - + { + StartCoroutine(Fade(0,1)); + } /// /// Starts a fade in when a new level is loaded /// void OnLevelFinishedLoading(int level) { - StartCoroutine(Fade(1,0)); + FadeIn(); } void OnEnable() { if (!fadeOnStart) { - SetFadeLevel(0); + explicitFadeAlpha = 0.0f; + animatedFadeAlpha = 0.0f; + uiFadeAlpha = 0.0f; } } @@ -144,6 +160,8 @@ void OnEnable() /// void OnDestroy() { + instance = null; + if (fadeRenderer != null) Destroy(fadeRenderer); @@ -154,23 +172,24 @@ void OnDestroy() Destroy(fadeMesh); } - /// + /// /// Set the UI fade level - fade due to UI in foreground /// - public void SetUIFade(float level) - { - uiFadeAlpha = Mathf.Clamp01(level); - SetMaterialAlpha(); - } - /// - /// Override current fade level - /// - /// - public void SetFadeLevel(float level) - { - currentAlpha = level; - SetMaterialAlpha(); - } + public void SetUIFade(float level) + { + uiFadeAlpha = Mathf.Clamp01(level); + SetMaterialAlpha(); + } + + /// + /// Override current fade level + /// + /// + public void SetExplicitFade(float level) + { + explicitFadeAlpha = level; + SetMaterialAlpha(); + } /// /// Fades alpha from 1.0 to 0.0 @@ -181,27 +200,29 @@ IEnumerator Fade(float startAlpha, float endAlpha) while (elapsedTime < fadeTime) { elapsedTime += Time.deltaTime; - currentAlpha = Mathf.Lerp(startAlpha, endAlpha, Mathf.Clamp01(elapsedTime / fadeTime)); - SetMaterialAlpha(); + animatedFadeAlpha = Mathf.Lerp(startAlpha, endAlpha, Mathf.Clamp01(elapsedTime / fadeTime)); + SetMaterialAlpha(); yield return new WaitForEndOfFrame(); } + animatedFadeAlpha = endAlpha; + SetMaterialAlpha(); } - /// - /// Update material alpha. UI fade and the current fade due to fade in/out animations (or explicit control) - /// both affect the fade. (The max is taken) - /// - private void SetMaterialAlpha() - { + /// + /// Update material alpha. UI fade and the current fade due to fade in/out animations (or explicit control) + /// both affect the fade. (The max is taken) + /// + private void SetMaterialAlpha() + { Color color = fadeColor; - color.a = Mathf.Max(currentAlpha, uiFadeAlpha); + color.a = currentAlpha; isFading = color.a > 0; - if (fadeMaterial != null) - { - fadeMaterial.color = color; + if (fadeMaterial != null) + { + fadeMaterial.color = color; fadeMaterial.renderQueue = renderQueue; fadeRenderer.material = fadeMaterial; fadeRenderer.enabled = isFading; - } - } + } + } } diff --git a/Assets/Oculus/VR/Scripts/Util/OVRSkeleton.cs b/Assets/Oculus/VR/Scripts/Util/OVRSkeleton.cs index b392bb0d..b245f7c5 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRSkeleton.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRSkeleton.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -34,6 +30,7 @@ public struct SkeletonPoseData public OVRPlugin.Quatf[] BoneRotations { get; set; } public bool IsDataValid { get; set; } public bool IsDataHighConfidence { get; set; } + public int SkeletonChangedCount { get; set; } } public enum SkeletonType @@ -47,6 +44,7 @@ public enum BoneId { Invalid = OVRPlugin.BoneId.Invalid, + // hand bones Hand_Start = OVRPlugin.BoneId.Hand_Start, Hand_WristRoot = OVRPlugin.BoneId.Hand_WristRoot, // root frame of the hand, where the wrist is located Hand_ForearmStub = OVRPlugin.BoneId.Hand_ForearmStub, // frame for user's forearm @@ -77,13 +75,14 @@ public enum BoneId Hand_PinkyTip = OVRPlugin.BoneId.Hand_PinkyTip, // tip of the pinky Hand_End = OVRPlugin.BoneId.Hand_End, + // add new bones here Max = OVRPlugin.BoneId.Max } [SerializeField] - private SkeletonType _skeletonType = SkeletonType.None; + protected SkeletonType _skeletonType = SkeletonType.None; [SerializeField] private IOVRSkeletonDataProvider _dataProvider; @@ -102,7 +101,9 @@ public enum BoneId private List _bindPoses; private List _capsules; + protected OVRPlugin.Skeleton2 _skeleton = new OVRPlugin.Skeleton2(); private readonly Quaternion wristFixupRotation = new Quaternion(0.0f, 1.0f, 0.0f, 0.0f); + public bool IsInitialized { get; private set; } public bool IsDataValid { get; private set; } public bool IsDataHighConfidence { get; private set; } @@ -110,6 +111,7 @@ public enum BoneId public IList BindPoses { get; private set; } public IList Capsules { get; private set; } public SkeletonType GetSkeletonType() { return _skeletonType; } + public int SkeletonChangedCount { get; private set; } private void Awake() { @@ -117,7 +119,7 @@ private void Awake() { _dataProvider = GetComponent(); } - + _bones = new List(); Bones = _bones.AsReadOnly(); @@ -130,29 +132,52 @@ private void Awake() private void Start() { - if (_skeletonType != SkeletonType.None) + if (ShouldInitialize()) { Initialize(); } } - + + private bool ShouldInitialize() + { + if (IsInitialized) + { + return false; + } + + if (_skeletonType == SkeletonType.None) + { + return false; + } + else if (_skeletonType == SkeletonType.HandLeft || _skeletonType == SkeletonType.HandRight) + { +#if UNITY_EDITOR + return OVRInput.IsControllerConnected(OVRInput.Controller.Hands); +#else + return true; +#endif + } + else + { + return true; + } + } + private void Initialize() { - var skeleton = new OVRPlugin.Skeleton(); - if (OVRPlugin.GetSkeleton((OVRPlugin.SkeletonType)_skeletonType, out skeleton)) + if (OVRPlugin.GetSkeleton2((OVRPlugin.SkeletonType)_skeletonType, ref _skeleton)) { - InitializeBones(skeleton); - InitializeBindPose(skeleton); - InitializeCapsules(skeleton); - + InitializeBones(); + InitializeBindPose(); + InitializeCapsules(); + IsInitialized = true; } } - virtual protected void InitializeBones(OVRPlugin.Skeleton skeleton) + protected virtual void InitializeBones() { - _bones = new List(new OVRBone[skeleton.NumBones]); - Bones = _bones.AsReadOnly(); + bool flipX = (_skeletonType == SkeletonType.HandLeft || _skeletonType == SkeletonType.HandRight); if (!_bonesGO) { @@ -162,23 +187,27 @@ virtual protected void InitializeBones(OVRPlugin.Skeleton skeleton) _bonesGO.transform.localRotation = Quaternion.identity; } + if (_bones == null || _bones.Count != _skeleton.NumBones) + { + _bones = new List(new OVRBone[_skeleton.NumBones]); + Bones = _bones.AsReadOnly(); + } + // pre-populate bones list before attempting to apply bone hierarchy - for (int i = 0; i < skeleton.NumBones; ++i) + for (int i = 0; i < _bones.Count; ++i) { - BoneId id = (OVRSkeleton.BoneId)skeleton.Bones[i].Id; - short parentIdx = skeleton.Bones[i].ParentBoneIndex; - Vector3 pos = skeleton.Bones[i].Pose.Position.FromFlippedXVector3f(); - Quaternion rot = skeleton.Bones[i].Pose.Orientation.FromFlippedXQuatf(); - - var boneGO = new GameObject(id.ToString()); - boneGO.transform.localPosition = pos; - boneGO.transform.localRotation = rot; - _bones[i] = new OVRBone(id, parentIdx, boneGO.transform); + OVRBone bone = _bones[i] ?? (_bones[i] = new OVRBone()); + bone.Id = (OVRSkeleton.BoneId)_skeleton.Bones[i].Id; + bone.ParentBoneIndex = _skeleton.Bones[i].ParentBoneIndex; + + Transform trans = bone.Transform ?? (bone.Transform = new GameObject(bone.Id.ToString()).transform); + trans.localPosition = flipX ? _skeleton.Bones[i].Pose.Position.FromFlippedXVector3f() : _skeleton.Bones[i].Pose.Position.FromFlippedZVector3f(); + trans.localRotation = flipX ? _skeleton.Bones[i].Pose.Orientation.FromFlippedXQuatf() : _skeleton.Bones[i].Pose.Orientation.FromFlippedZQuatf(); } - for (int i = 0; i < skeleton.NumBones; ++i) + for (int i = 0; i < _bones.Count; ++i) { - if (((OVRPlugin.BoneId)skeleton.Bones[i].ParentBoneIndex) == OVRPlugin.BoneId.Invalid) + if ((BoneId)_bones[i].ParentBoneIndex == BoneId.Invalid) { _bones[i].Transform.SetParent(_bonesGO.transform, false); } @@ -189,11 +218,8 @@ virtual protected void InitializeBones(OVRPlugin.Skeleton skeleton) } } - private void InitializeBindPose(OVRPlugin.Skeleton skeleton) + private void InitializeBindPose() { - _bindPoses = new List(new OVRBone[skeleton.NumBones]); - BindPoses = _bindPoses.AsReadOnly(); - if (!_bindPosesGO) { _bindPosesGO = new GameObject("BindPoses"); @@ -202,42 +228,44 @@ private void InitializeBindPose(OVRPlugin.Skeleton skeleton) _bindPosesGO.transform.localRotation = Quaternion.identity; } - for (int i = 0; i < skeleton.NumBones; ++i) + if (_bindPoses == null || _bindPoses.Count != _bones.Count) { - BoneId id = (OVRSkeleton.BoneId)skeleton.Bones[i].Id; - short parentIdx = skeleton.Bones[i].ParentBoneIndex; - var bindPoseGO = new GameObject(id.ToString()); - OVRBone bone = _bones[i]; + _bindPoses = new List(new OVRBone[_bones.Count]); + BindPoses = _bindPoses.AsReadOnly(); + } - if (bone.Transform != null) - { - bindPoseGO.transform.localPosition = bone.Transform.localPosition; - bindPoseGO.transform.localRotation = bone.Transform.localRotation; - } + // pre-populate bones list before attempting to apply bone hierarchy + for (int i = 0; i < _bindPoses.Count; ++i) + { + OVRBone bone = _bones[i]; + OVRBone bindPoseBone = _bindPoses[i] ?? (_bindPoses[i] = new OVRBone()); + bindPoseBone.Id = bone.Id; + bindPoseBone.ParentBoneIndex = bone.ParentBoneIndex; - _bindPoses[i] = new OVRBone(id, parentIdx, bindPoseGO.transform); + Transform trans = bindPoseBone.Transform ?? (bindPoseBone.Transform = new GameObject(bindPoseBone.Id.ToString()).transform); + trans.localPosition = bone.Transform.localPosition; + trans.localRotation = bone.Transform.localRotation; } - for (int i = 0; i < skeleton.NumBones; ++i) + for (int i = 0; i < _bindPoses.Count; ++i) { - if (((OVRPlugin.BoneId)skeleton.Bones[i].ParentBoneIndex) == OVRPlugin.BoneId.Invalid) + if ((BoneId)_bindPoses[i].ParentBoneIndex == BoneId.Invalid) { _bindPoses[i].Transform.SetParent(_bindPosesGO.transform, false); } else { - _bindPoses[i].Transform.SetParent(_bindPoses[_bones[i].ParentBoneIndex].Transform, false); + _bindPoses[i].Transform.SetParent(_bindPoses[_bindPoses[i].ParentBoneIndex].Transform, false); } } } - private void InitializeCapsules(OVRPlugin.Skeleton skeleton) + private void InitializeCapsules() { + bool flipX = (_skeletonType == SkeletonType.HandLeft || _skeletonType == SkeletonType.HandRight); + if (_enablePhysicsCapsules) { - _capsules = new List(new OVRBoneCapsule[skeleton.NumBoneCapsules]); - Capsules = _capsules.AsReadOnly(); - if (!_capsulesGO) { _capsulesGO = new GameObject("Capsules"); @@ -246,58 +274,61 @@ private void InitializeCapsules(OVRPlugin.Skeleton skeleton) _capsulesGO.transform.localRotation = Quaternion.identity; } - _capsules = new List(new OVRBoneCapsule[skeleton.NumBoneCapsules]); - Capsules = _capsules.AsReadOnly(); + if (_capsules == null || _capsules.Count != _skeleton.NumBoneCapsules) + { + _capsules = new List(new OVRBoneCapsule[_skeleton.NumBoneCapsules]); + Capsules = _capsules.AsReadOnly(); + } - for (int i = 0; i < skeleton.NumBoneCapsules; ++i) + for (int i = 0; i < _capsules.Count; ++i) { - var capsule = skeleton.BoneCapsules[i]; - Transform bone = Bones[capsule.BoneIndex].Transform; - - var capsuleRigidBodyGO = new GameObject((_bones[capsule.BoneIndex].Id).ToString() + "_CapsuleRigidBody"); - capsuleRigidBodyGO.transform.SetParent(_capsulesGO.transform, false); - capsuleRigidBodyGO.transform.position = bone.position; - capsuleRigidBodyGO.transform.rotation = bone.rotation; - - var capsuleRigidBody = capsuleRigidBodyGO.AddComponent(); - capsuleRigidBody.mass = 1.0f; - capsuleRigidBody.isKinematic = true; - capsuleRigidBody.useGravity = false; -#if UNITY_2018_3_OR_NEWER - capsuleRigidBody.collisionDetectionMode = CollisionDetectionMode.ContinuousSpeculative; -#else - capsuleRigidBody.collisionDetectionMode = CollisionDetectionMode.Continuous; -#endif + OVRBone bone = _bones[_skeleton.BoneCapsules[i].BoneIndex]; + OVRBoneCapsule capsule = _capsules[i] ?? (_capsules[i] = new OVRBoneCapsule()); + capsule.BoneIndex = _skeleton.BoneCapsules[i].BoneIndex; + + if (capsule.CapsuleRigidbody == null) + { + capsule.CapsuleRigidbody = new GameObject((bone.Id).ToString() + "_CapsuleRigidbody").AddComponent(); + capsule.CapsuleRigidbody.mass = 1.0f; + capsule.CapsuleRigidbody.isKinematic = true; + capsule.CapsuleRigidbody.useGravity = false; + capsule.CapsuleRigidbody.collisionDetectionMode = CollisionDetectionMode.ContinuousSpeculative; + } + + GameObject rbGO = capsule.CapsuleRigidbody.gameObject; + rbGO.transform.SetParent(_capsulesGO.transform, false); + rbGO.transform.position = bone.Transform.position; + rbGO.transform.rotation = bone.Transform.rotation; - var capsuleColliderGO = new GameObject((_bones[capsule.BoneIndex].Id).ToString() + "_CapsuleCollider"); - capsuleColliderGO.transform.SetParent(capsuleRigidBodyGO.transform, false); - var capsuleCollider = capsuleColliderGO.AddComponent(); - var p0 = capsule.Points[0].FromFlippedXVector3f(); - var p1 = capsule.Points[1].FromFlippedXVector3f(); + if (capsule.CapsuleCollider == null) + { + capsule.CapsuleCollider = new GameObject((bone.Id).ToString() + "_CapsuleCollider").AddComponent(); + capsule.CapsuleCollider.isTrigger = false; + } + + var p0 = flipX ? _skeleton.BoneCapsules[i].StartPoint.FromFlippedXVector3f() : _skeleton.BoneCapsules[i].StartPoint.FromFlippedZVector3f(); + var p1 = flipX ? _skeleton.BoneCapsules[i].EndPoint.FromFlippedXVector3f() : _skeleton.BoneCapsules[i].EndPoint.FromFlippedZVector3f(); var delta = p1 - p0; var mag = delta.magnitude; var rot = Quaternion.FromToRotation(Vector3.right, delta); - capsuleCollider.radius = capsule.Radius; - capsuleCollider.height = mag + capsule.Radius * 2.0f; - capsuleCollider.isTrigger = false; - capsuleCollider.direction = 0; - capsuleColliderGO.transform.localPosition = p0; - capsuleColliderGO.transform.localRotation = rot; - capsuleCollider.center = Vector3.right * mag * 0.5f; - - _capsules[i] = new OVRBoneCapsule(capsule.BoneIndex, capsuleRigidBody, capsuleCollider); + capsule.CapsuleCollider.radius = _skeleton.BoneCapsules[i].Radius; + capsule.CapsuleCollider.height = mag + _skeleton.BoneCapsules[i].Radius * 2.0f; + capsule.CapsuleCollider.direction = 0; + capsule.CapsuleCollider.center = Vector3.right * mag * 0.5f; + + GameObject ccGO = capsule.CapsuleCollider.gameObject; + ccGO.transform.SetParent(rbGO.transform, false); + ccGO.transform.localPosition = p0; + ccGO.transform.localRotation = rot; } } } private void Update() { - if (!IsInitialized && OVRInput.IsControllerConnected(OVRInput.Controller.Hands)) + if (ShouldInitialize()) { - if (_skeletonType != SkeletonType.None) - { - Initialize(); - } + Initialize(); } if (!IsInitialized || _dataProvider == null) @@ -313,6 +344,13 @@ private void Update() IsDataValid = data.IsDataValid; if (data.IsDataValid) { + if (SkeletonChangedCount != data.SkeletonChangedCount) + { + SkeletonChangedCount = data.SkeletonChangedCount; + IsInitialized = false; + Initialize(); + } + IsDataHighConfidence = data.IsDataHighConfidence; if (_updateRootPose) @@ -330,10 +368,18 @@ private void Update() { if (_bones[i].Transform != null) { - _bones[i].Transform.localRotation = data.BoneRotations[i].FromFlippedXQuatf(); - if (_bones[i].Id == BoneId.Hand_WristRoot) + if (_skeletonType == SkeletonType.HandLeft || _skeletonType == SkeletonType.HandRight) { - _bones[i].Transform.localRotation *= wristFixupRotation; + _bones[i].Transform.localRotation = data.BoneRotations[i].FromFlippedXQuatf(); + + if (_bones[i].Id == BoneId.Hand_WristRoot) + { + _bones[i].Transform.localRotation *= wristFixupRotation; + } + } + else + { + _bones[i].Transform.localRotation = data.BoneRotations[i].FromFlippedZQuatf(); } } } @@ -459,9 +505,11 @@ public int GetCurrentNumSkinnableBones() public class OVRBone { - public OVRSkeleton.BoneId Id { get; private set; } - public short ParentBoneIndex { get; private set; } - public Transform Transform { get; private set; } + public OVRSkeleton.BoneId Id { get; set; } + public short ParentBoneIndex { get; set; } + public Transform Transform { get; set; } + + public OVRBone() { } public OVRBone(OVRSkeleton.BoneId id, short parentBoneIndex, Transform trans) { @@ -473,9 +521,11 @@ public OVRBone(OVRSkeleton.BoneId id, short parentBoneIndex, Transform trans) public class OVRBoneCapsule { - public short BoneIndex { get; private set; } - public Rigidbody CapsuleRigidbody { get; private set; } - public CapsuleCollider CapsuleCollider { get; private set; } + public short BoneIndex { get; set; } + public Rigidbody CapsuleRigidbody { get; set; } + public CapsuleCollider CapsuleCollider { get; set; } + + public OVRBoneCapsule() { } public OVRBoneCapsule(short boneIndex, Rigidbody capsuleRigidBody, CapsuleCollider capsuleCollider) { diff --git a/Assets/Oculus/VR/Scripts/Util/OVRSkeletonRenderer.cs b/Assets/Oculus/VR/Scripts/Util/OVRSkeletonRenderer.cs index 0e5d82f2..627f8d30 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRSkeletonRenderer.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRSkeletonRenderer.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -164,7 +160,7 @@ public CapsuleVisualization(GameObject rootGO, SystemGestureMaterial = systemGestureMat; BoneCapsule = boneCapsule; - + CapsuleGO = GameObject.CreatePrimitive(PrimitiveType.Capsule); CapsuleCollider collider = CapsuleGO.GetComponent(); Destroy(collider); @@ -191,7 +187,7 @@ public void Update(float scale, CapsuleGO.SetActive(shouldRender); } } - + CapsuleGO.transform.rotation = BoneCapsule.CapsuleCollider.transform.rotation * _capsuleRotationOffset; CapsuleGO.transform.position = BoneCapsule.CapsuleCollider.transform.TransformPoint(BoneCapsule.CapsuleCollider.center); CapsuleGO.transform.localScale = capsuleScale * scale; @@ -231,31 +227,29 @@ private void Start() return; } - Initialize(); - } - - private void Initialize() - { - if (null == _boneVisualizations) + if (ShouldInitialize()) { - _boneVisualizations = new List(); + Initialize(); } + } - if (null == _capsuleVisualizations) + private bool ShouldInitialize() + { + if (IsInitialized) { - _capsuleVisualizations = new List(); + return false; } - if (null == _ovrSkeleton) - { - _ovrSkeleton = GetComponent(); - } + return _ovrSkeleton.IsInitialized; + } - if (null == _skeletonGO) - { - _skeletonGO = new GameObject("SkeletonRenderer"); - _skeletonGO.transform.SetParent(transform, false); - } + private void Initialize() + { + _boneVisualizations = new List(); + _capsuleVisualizations = new List(); + _ovrSkeleton = GetComponent(); + _skeletonGO = new GameObject("SkeletonRenderer"); + _skeletonGO.transform.SetParent(transform, false); if (_skeletonMaterial == null) { @@ -312,6 +306,11 @@ private void Initialize() public void Update() { + if (ShouldInitialize()) + { + Initialize(); + } + IsDataValid = false; IsDataHighConfidence = false; ShouldUseSystemGestureMaterial = false; @@ -346,10 +345,6 @@ public void Update() _capsuleVisualizations[i].Update(_scale, shouldRender, ShouldUseSystemGestureMaterial, _confidenceBehavior, _systemGestureBehavior); } } - else if (OVRInput.IsControllerConnected(OVRInput.Controller.Hands)) - { - Initialize(); - } } private void OnDestroy() diff --git a/Assets/Oculus/VR/Scripts/Util/OVRSystemPerfMetrics.cs b/Assets/Oculus/VR/Scripts/Util/OVRSystemPerfMetrics.cs index 3ef4a24f..028a519f 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRSystemPerfMetrics.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRSystemPerfMetrics.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Scripts/Util/OVRVignette.cs b/Assets/Oculus/VR/Scripts/Util/OVRVignette.cs index 6996c668..d7369b63 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRVignette.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRVignette.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF @@ -53,7 +49,7 @@ public enum FalloffType [HideInInspector] private Shader VignetteShader; - // These are only used at startup. + // These are only used at startup. [SerializeField] [Tooltip("Controls the number of triangles used for the vignette mesh." + " Normal is best for most purposes.")] @@ -61,7 +57,7 @@ public enum FalloffType [SerializeField] [Tooltip("Controls how the falloff looks.")] private FalloffType Falloff = FalloffType.Linear; - + // These can be controlled dynamically at runtime [Tooltip("The Vertical FOV of the vignette")] public float VignetteFieldOfView = 60; @@ -373,7 +369,7 @@ private void Update() } else { - GetTanFovAndOffsetForMonoEye(out tanFovX, out tanFovY, out offsetX, out offsetY); + GetTanFovAndOffsetForMonoEye(out tanFovX, out tanFovY, out offsetX, out offsetY); } float borderScale = new Vector2((1 + Mathf.Abs(offsetX)) / VignetteAspectRatio, 1 + Mathf.Abs(offsetY)).magnitude * 1.01f; diff --git a/Assets/Oculus/VR/Scripts/Util/OVRWaitCursor.cs b/Assets/Oculus/VR/Scripts/Util/OVRWaitCursor.cs index 28ba0439..9bbdad18 100644 --- a/Assets/Oculus/VR/Scripts/Util/OVRWaitCursor.cs +++ b/Assets/Oculus/VR/Scripts/Util/OVRWaitCursor.cs @@ -1,12 +1,8 @@ /************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. -Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use -the Utilities SDK except in compliance with the License, which is provided at the time of installation -or download, or which otherwise accompanies this software in either electronic or hard copy form. - -You may obtain a copy of the License at -https://developer.oculus.com/licenses/utilities-1.31 +Your use of this SDK or tool is subject to the Oculus SDK License Agreement, available at +https://developer.oculus.com/licenses/oculussdk/ Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF diff --git a/Assets/Oculus/VR/Textures/OculusTouchForQuest2.meta b/Assets/Oculus/VR/Textures/OculusTouchForQuest2.meta new file mode 100644 index 00000000..48e509f3 --- /dev/null +++ b/Assets/Oculus/VR/Textures/OculusTouchForQuest2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f40ac98546a82ba409f9632c1468d6e0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_AlbedoRoughness.tga b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_AlbedoRoughness.tga new file mode 100644 index 00000000..53164826 Binary files /dev/null and b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_AlbedoRoughness.tga differ diff --git a/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_AlbedoRoughness.tga.meta b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_AlbedoRoughness.tga.meta new file mode 100644 index 00000000..a8ac467a --- /dev/null +++ b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_AlbedoRoughness.tga.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: b1f40c50ae24356469c6c6d4bfb2a2d6 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Left.TGA b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Left.TGA new file mode 100644 index 00000000..abfa9c8b Binary files /dev/null and b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Left.TGA differ diff --git a/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Left.TGA.meta b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Left.TGA.meta new file mode 100644 index 00000000..7ba6970c --- /dev/null +++ b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Left.TGA.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 0368149f02b42c14095151aaff644f46 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Right.TGA b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Right.TGA new file mode 100644 index 00000000..7af7a0c2 Binary files /dev/null and b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Right.TGA differ diff --git a/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Right.TGA.meta b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Right.TGA.meta new file mode 100644 index 00000000..710e533c --- /dev/null +++ b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Right.TGA.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: e441be63d6e5c294aae032fe28daf965 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Roughness.tga b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Roughness.tga new file mode 100644 index 00000000..23d11b30 Binary files /dev/null and b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Roughness.tga differ diff --git a/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Roughness.tga.meta b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Roughness.tga.meta new file mode 100644 index 00000000..647f72eb --- /dev/null +++ b/Assets/Oculus/VR/Textures/OculusTouchForQuest2/OculusTouchForQuest2_Roughness.tga.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 561aabc57cbcf9046873810d9988f99e +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Prefabs/EnvironmentEntry.prefab b/Assets/Prefabs/EnvironmentEntry.prefab new file mode 100644 index 00000000..cec6a854 --- /dev/null +++ b/Assets/Prefabs/EnvironmentEntry.prefab @@ -0,0 +1,286 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2718414468714522334 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3876971168137039905} + - component: {fileID: 7606802177034282429} + - component: {fileID: 6771208205116626490} + m_Layer: 0 + m_Name: Name + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3876971168137039905 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2718414468714522334} + 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_Children: [] + m_Father: {fileID: 2187993270055489575} + 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!222 &7606802177034282429 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2718414468714522334} + m_CullTransparentMesh: 0 +--- !u!114 &6771208205116626490 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2718414468714522334} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, 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_text: + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 96 + m_fontStyle: 1 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!1 &4824380111246446992 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2187993270055489575} + - component: {fileID: 4582160310205455797} + - component: {fileID: 5153811987148017347} + - component: {fileID: 2586754842435594840} + m_Layer: 0 + m_Name: EnvironmentEntry + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2187993270055489575 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4824380111246446992} + 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_Children: + - {fileID: 3876971168137039905} + - {fileID: 3061537210812862376} + m_Father: {fileID: 0} + 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!222 &4582160310205455797 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4824380111246446992} + m_CullTransparentMesh: 0 +--- !u!65 &5153811987148017347 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4824380111246446992} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 780, y: 60, z: 0.06} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2586754842435594840 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4824380111246446992} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b713b2fc275f57d4c9160233b62610cc, type: 3} + m_Name: + m_EditorClassIdentifier: + text: {fileID: 6771208205116626490} + path: +--- !u!1 &5252017818009209086 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3061537210812862376} + - component: {fileID: 165040609097649856} + - component: {fileID: 8280379170912847942} + m_Layer: 0 + m_Name: Border + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &3061537210812862376 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5252017818009209086} + 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_Children: [] + m_Father: {fileID: 2187993270055489575} + m_RootOrder: 1 + 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!222 &165040609097649856 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5252017818009209086} + m_CullTransparentMesh: 0 +--- !u!114 &8280379170912847942 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5252017818009209086} + 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.14097543, g: 0.8301887, b: 0.22752704, a: 0.8117647} + 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: 21300000, guid: b6bb78fcd6b3a574191fd2967990903b, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 0 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 diff --git a/Assets/Prefabs/EnvironmentEntry.prefab.meta b/Assets/Prefabs/EnvironmentEntry.prefab.meta new file mode 100644 index 00000000..94216806 --- /dev/null +++ b/Assets/Prefabs/EnvironmentEntry.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2e6db34b3491b394dbbe1d7fab2b0362 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/OVRBuildConfig.asset b/Assets/Resources/OVRBuildConfig.asset index cf5cd6c5..ac3f1c7b 100644 --- a/Assets/Resources/OVRBuildConfig.asset +++ b/Assets/Resources/OVRBuildConfig.asset @@ -12,6 +12,6 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 20553fac56ec59645857c0732b787431, type: 3} m_Name: OVRBuildConfig m_EditorClassIdentifier: - androidSDKPath: + androidSDKPath: C:\Program Files\Unity\Hub\Editor\2020.2.5f1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK gradlePath: jdkPath: diff --git a/Assets/Resources/OVRBuildConfig.asset.meta b/Assets/Resources/OVRBuildConfig.asset.meta index 888fa569..9355e67f 100644 --- a/Assets/Resources/OVRBuildConfig.asset.meta +++ b/Assets/Resources/OVRBuildConfig.asset.meta @@ -2,7 +2,7 @@ fileFormatVersion: 2 guid: 4bb0d2b5593116849b1f3a99bc7d2446 NativeFormatImporter: externalObjects: {} - mainObjectFileID: 0 + mainObjectFileID: 11400000 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Scenes/QuestAppLauncher.unity b/Assets/Scenes/QuestAppLauncher.unity index bf7697b8..58910ecf 100644 --- a/Assets/Scenes/QuestAppLauncher.unity +++ b/Assets/Scenes/QuestAppLauncher.unity @@ -43,7 +43,7 @@ RenderSettings: --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 11 + serializedVersion: 12 m_GIWorkflowMode: 0 m_GISettings: serializedVersion: 2 @@ -98,7 +98,7 @@ LightmapSettings: m_TrainingDataDestination: TrainingData m_LightProbeSampleCountMultiplier: 4 m_LightingDataAsset: {fileID: 0} - m_UseShadowmask: 1 + m_LightingSettings: {fileID: 1837017858} --- !u!196 &4 NavMeshSettings: serializedVersion: 2 @@ -118,6 +118,8 @@ NavMeshSettings: manualTileSize: 0 tileSize: 256 accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 debug: m_Flags: 0 m_NavMeshData: {fileID: 0} @@ -165,6 +167,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &4342931 BoxCollider: m_ObjectHideFlags: 0 @@ -192,6 +195,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -246,6 +250,150 @@ RectTransform: m_AnchoredPosition: {x: 400, y: -75} m_SizeDelta: {x: 800, y: 150} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &5356383 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5356384} + m_Layer: 0 + m_Name: rctrl:b_trigger + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5356384 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5356383} + m_LocalRotation: {x: 0.056604527, y: 0.05795374, z: 0.004675739, w: 0.9967023} + m_LocalPosition: {x: 0.001420367, y: 0.021865888, z: -0.005495974} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1795596850} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6223930 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6223931} + m_Layer: 0 + m_Name: rctrl:b_button02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6223931 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6223930} + m_LocalRotation: {x: 0.07876507, y: 0.01894126, z: 0.5343878, w: 0.8413483} + m_LocalPosition: {x: 0.009152712, y: 0.0054823146, z: 0.000030916483} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1795596850} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &25428593 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 25428594} + - component: {fileID: 25428595} + m_Layer: 0 + m_Name: rctrl:b_button_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &25428594 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 25428593} + 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_Children: [] + m_Father: {fileID: 1530016825} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &25428595 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 25428593} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300016, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 1613633147} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1613633147} + m_AABB: + m_Center: {x: 0.000000345055, y: -0.0000009192154, z: 0.0003571303} + m_Extent: {x: 0.0050524976, y: 0.0050528734, z: 0.0025179689} + m_DirtyAABB: 0 --- !u!1 &25607901 GameObject: m_ObjectHideFlags: 0 @@ -311,6 +459,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &25607904 BoxCollider: m_ObjectHideFlags: 0 @@ -338,6 +487,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -425,6 +575,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.011764706, g: 0.101960786, b: 0.21960784, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -535,6 +686,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 49821816} + m_TargetAssemblyTypeName: m_MethodName: OnHoverEnter m_Mode: 0 m_Arguments: @@ -549,6 +701,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 49821816} + m_TargetAssemblyTypeName: m_MethodName: OnHoverExit m_Mode: 0 m_Arguments: @@ -566,6 +719,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 49821816} + m_TargetAssemblyTypeName: m_MethodName: OnSelected m_Mode: 0 m_Arguments: @@ -641,6 +795,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.010234957, g: 0.09975823, b: 0.21698111, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -688,6 +843,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &61603938 GameObject: m_ObjectHideFlags: 0 @@ -778,8 +934,93 @@ Light: 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!1 &63760810 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 63760811} + - component: {fileID: 63760812} + m_Layer: 0 + m_Name: lctrl:ring_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &63760811 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 63760810} + 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_Children: [] + m_Father: {fileID: 107155893} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &63760812 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 63760810} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300008, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 2067178101} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2067178101} + m_AABB: + m_Center: {x: 0.016699282, y: 0.010818447, z: -0.036364146} + m_Extent: {x: 0.054633915, y: 0.02167825, z: 0.050220706} + m_DirtyAABB: 0 --- !u!1 &79656235 GameObject: m_ObjectHideFlags: 0 @@ -832,6 +1073,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -906,6 +1148,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -931,13 +1174,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -945,7 +1187,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -955,10 +1199,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -966,40 +1208,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 84052785} - characterCount: 3 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &84052786 @@ -1062,6 +1282,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1087,13 +1308,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -1101,7 +1321,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -1111,10 +1333,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -1122,40 +1342,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 87081340} - characterCount: 7 - spriteCount: 0 - spaceCount: 1 - wordCount: 2 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &87081341 @@ -1166,6 +1364,90 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 87081338} m_CullTransparentMesh: 0 +--- !u!1 &95353018 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 95353019} + - component: {fileID: 95353020} + m_Layer: 0 + m_Name: lctrl:surface_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &95353019 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 95353018} + 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_Children: [] + m_Father: {fileID: 462020185} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &95353020 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 95353018} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300002, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1539841352} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1539841352} + m_AABB: + m_Center: {x: 0.00016466714, y: 0.00024955533, z: -0.0010734661} + m_Extent: {x: 0.02819586, y: 0.02827545, z: 0.005969927} + m_DirtyAABB: 0 --- !u!1 &103848539 GameObject: m_ObjectHideFlags: 0 @@ -1231,6 +1513,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &103848542 BoxCollider: m_ObjectHideFlags: 0 @@ -1258,6 +1541,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -1291,7 +1575,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: [] m_IsOn: 0 ---- !u!1 &127404527 +--- !u!1 &105311565 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1299,62 +1583,83 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 127404528} - - component: {fileID: 127404529} - m_Layer: 5 - m_Name: VerticalLayout + - component: {fileID: 105311566} + - component: {fileID: 105311567} + m_Layer: 0 + m_Name: lctrl:controller_body_PLY m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &127404528 -RectTransform: +--- !u!4 &105311566 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 127404527} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 105311565} + 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_Children: - - {fileID: 703634711} - - {fileID: 504416153} - m_Father: {fileID: 34138276} - m_RootOrder: 1 + m_Children: [] + m_Father: {fileID: 107155893} + 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: 0} - m_SizeDelta: {x: 800, y: 300} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &127404529 -MonoBehaviour: +--- !u!137 &105311567 +SkinnedMeshRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 127404527} + m_GameObject: {fileID: 105311565} m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 - m_ChildAlignment: 4 - m_Spacing: 0 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 0 - m_ChildControlHeight: 0 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 ---- !u!1 &129491541 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300010, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 2067178101} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2067178101} + m_AABB: + m_Center: {x: 0.0012377053, y: -0.01906057, z: -0.031179678} + m_Extent: {x: 0.030484851, y: 0.051344883, z: 0.03589144} + m_DirtyAABB: 0 +--- !u!1 &107155892 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1362,42 +1667,82 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 129491542} - - component: {fileID: 129491544} - - component: {fileID: 129491543} + - component: {fileID: 107155893} + m_Layer: 0 + m_Name: lctrl:geometry_null + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &107155893 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 107155892} + m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 105311566} + - {fileID: 1274632255} + - {fileID: 856851805} + - {fileID: 1343475344} + - {fileID: 63760811} + - {fileID: 1993677818} + - {fileID: 2083120669} + - {fileID: 1803442137} + - {fileID: 1579017868} + - {fileID: 1045218782} + m_Father: {fileID: 1533612654} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &110464150 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 110464151} + - component: {fileID: 110464153} + - component: {fileID: 110464152} m_Layer: 5 - m_Name: Hide_Apps_Text + m_Name: Label m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &129491542 +--- !u!224 &110464151 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 129491541} + m_GameObject: {fileID: 110464150} 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_Children: [] - m_Father: {fileID: 572537055} - m_RootOrder: 1 + m_Father: {fileID: 316078878} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -175} - m_SizeDelta: {x: 0, y: 50} + m_AnchoredPosition: {x: 500, y: -30.833332} + m_SizeDelta: {x: 980, y: 45} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &129491543 +--- !u!114 &110464152 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 129491541} + m_GameObject: {fileID: 110464150} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -1406,11 +1751,12 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, 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_text: Hide apps by selecting app and pressing B / Y or pinching your ring finger + m_text: Choose Environment m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} @@ -1431,34 +1777,33 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 - m_fontSize: 40 - m_fontSizeBase: 40 + m_fontSize: 36 + m_fontSizeBase: 36 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 257 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 514 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 m_lineSpacingMax: 0 m_paragraphSpacing: 0 m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 + m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -1466,51 +1811,29 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 - m_margin: {x: 3.513392, y: 0, z: -900, w: 0} - m_textInfo: - textComponent: {fileID: 129491543} - characterCount: 46 - spriteCount: 0 - spaceCount: 9 - wordCount: 10 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &129491544 +--- !u!222 &110464153 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 129491541} + m_GameObject: {fileID: 110464150} m_CullTransparentMesh: 0 ---- !u!1 &140645560 +--- !u!1 &127404527 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1518,42 +1841,158 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 140645561} - - component: {fileID: 140645563} - - component: {fileID: 140645562} + - component: {fileID: 127404528} + - component: {fileID: 127404529} m_Layer: 5 - m_Name: Label + m_Name: VerticalLayout m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &140645561 +--- !u!224 &127404528 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 140645560} + m_GameObject: {fileID: 127404527} + 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_Children: + - {fileID: 703634711} + - {fileID: 504416153} + m_Father: {fileID: 34138276} + 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: 0} + m_SizeDelta: {x: 800, y: 300} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &127404529 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 127404527} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &127731051 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 127731052} + - component: {fileID: 127731053} + m_Layer: 0 + m_Name: OculusTouchForRiftLeftModel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &127731052 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 127731051} + 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_Children: + - {fileID: 462020185} + - {fileID: 1539841352} + m_Father: {fileID: 1844715059} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &127731053 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 127731051} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Controller: {fileID: 0} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 +--- !u!1 &129491541 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 129491542} + - component: {fileID: 129491544} + - component: {fileID: 129491543} + m_Layer: 5 + m_Name: Hide_Apps_Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &129491542 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 129491541} 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_Children: [] - m_Father: {fileID: 25607902} + m_Father: {fileID: 572537055} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -75} - m_SizeDelta: {x: 300, y: 150} + m_AnchoredPosition: {x: 0, y: -175} + m_SizeDelta: {x: 0, y: 50} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &140645562 +--- !u!114 &129491543 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 140645560} + m_GameObject: {fileID: 129491541} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -1562,11 +2001,12 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, 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_text: Off + m_text: Hide apps by selecting app and pressing B / Y or pinching your ring finger m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} @@ -1587,34 +2027,33 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 - m_fontSize: 86 - m_fontSizeBase: 86 + m_fontSize: 40 + m_fontSizeBase: 40 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 m_lineSpacingMax: 0 m_paragraphSpacing: 0 m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 + m_enableWordWrapping: 1 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -1622,51 +2061,29 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 140645562} - characterCount: 3 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 + m_margin: {x: 3.513392, y: 0, z: -900, w: 0} m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &140645563 +--- !u!222 &129491544 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 140645560} + m_GameObject: {fileID: 129491541} m_CullTransparentMesh: 0 ---- !u!1 &147802644 +--- !u!1 &132513679 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1674,150 +2091,50 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 147802645} - - component: {fileID: 147802647} - - component: {fileID: 147802646} + - component: {fileID: 132513680} + - component: {fileID: 132513681} m_Layer: 5 - m_Name: Checkmark + m_Name: Environment_List_Container m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &147802645 + m_IsActive: 0 +--- !u!224 &132513680 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 147802644} + m_GameObject: {fileID: 132513679} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalPosition: {x: 0, y: 0, z: -4} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1148345055} - m_RootOrder: 0 + m_Children: + - {fileID: 407227652} + - {fileID: 316078878} + m_Father: {fileID: 1213035640} + m_RootOrder: 4 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_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 150, y: 150} + m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &147802646 -MonoBehaviour: +--- !u!65 &132513681 +BoxCollider: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 147802644} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: + m_GameObject: {fileID: 132513679} m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 01674f533e98ba544a7bb592e2f52669, type: 3} - m_Type: 0 - 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 &147802647 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 147802644} - m_CullTransparentMesh: 0 ---- !u!1001 &174121771 -PrefabInstance: - m_ObjectHideFlags: 0 + m_IsTrigger: 0 + m_Enabled: 1 serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 1192133537} - m_Modifications: - - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} - propertyPath: m_RootOrder - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, - type: 3} - propertyPath: m_modelOculusTouchQuestAndRiftSLeftController - value: - objectReference: {fileID: 647218110} - - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, - type: 3} - propertyPath: m_modelOculusTouchQuestAndRiftSRightController - value: - objectReference: {fileID: 2025011530} - - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, - type: 3} - propertyPath: m_modelOculusTouchRiftLeftController - value: - objectReference: {fileID: 407379521} - - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, - type: 3} - propertyPath: m_modelOculusTouchRiftRightController - value: - objectReference: {fileID: 407379521} - - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, - type: 3} - propertyPath: m_modelGearVrController - value: - objectReference: {fileID: 407379521} - - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, - type: 3} - propertyPath: m_modelOculusGoController - value: - objectReference: {fileID: 407379521} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} ---- !u!4 &174121772 stripped -Transform: - m_CorrespondingSourceObject: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, - type: 3} - m_PrefabInstance: {fileID: 174121771} - m_PrefabAsset: {fileID: 0} ---- !u!1 &177729748 + m_Size: {x: 2802, y: 2000, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!1 &140645560 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1825,9 +2142,9 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 177729749} - - component: {fileID: 177729751} - - component: {fileID: 177729750} + - component: {fileID: 140645561} + - component: {fileID: 140645563} + - component: {fileID: 140645562} m_Layer: 5 m_Name: Label m_TagString: Untagged @@ -1835,32 +2152,32 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &177729749 +--- !u!224 &140645561 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 177729748} + m_GameObject: {fileID: 140645560} 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_Children: [] - m_Father: {fileID: 240885095} - m_RootOrder: 0 + m_Father: {fileID: 25607902} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 300, y: -75} - m_SizeDelta: {x: 600, y: 150} + m_AnchoredPosition: {x: 400, y: -75} + m_SizeDelta: {x: 300, y: 150} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &177729750 +--- !u!114 &140645562 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 177729748} + m_GameObject: {fileID: 140645560} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -1869,11 +2186,12 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, 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_text: Sort By + m_text: Off m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} @@ -1894,13 +2212,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -1908,7 +2225,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -1918,10 +2237,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -1929,51 +2246,29 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 177729750} - characterCount: 7 - spriteCount: 0 - spaceCount: 1 - wordCount: 2 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &177729751 +--- !u!222 &140645563 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 177729748} + m_GameObject: {fileID: 140645560} m_CullTransparentMesh: 0 ---- !u!1 &210908719 +--- !u!1 &147802644 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1981,35 +2276,74 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 210908720} + - component: {fileID: 147802645} + - component: {fileID: 147802647} + - component: {fileID: 147802646} m_Layer: 5 - m_Name: Sliding Area + m_Name: Checkmark m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &210908720 +--- !u!224 &147802645 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 210908719} + m_GameObject: {fileID: 147802644} 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_Children: - - {fileID: 1377309006} - m_Father: {fileID: 1215736346} + m_Children: [] + m_Father: {fileID: 1148345055} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &240885094 +--- !u!114 &147802646 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 147802644} + 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: 1, g: 1, b: 1, 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: 21300000, guid: 01674f533e98ba544a7bb592e2f52669, type: 3} + m_Type: 0 + 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 &147802647 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 147802644} + m_CullTransparentMesh: 0 +--- !u!1 &156050147 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2017,77 +2351,1256 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 240885095} - - component: {fileID: 240885096} - - component: {fileID: 240885097} - m_Layer: 5 - m_Name: Sort_Setting + - component: {fileID: 156050148} + - component: {fileID: 156050149} + m_Layer: 0 + m_Name: rctrl:o_button_PLY m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &240885095 -RectTransform: +--- !u!4 &156050148 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 240885094} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 156050147} + 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_Children: - - {fileID: 177729749} - - {fileID: 1092056641} - - {fileID: 1829862260} - m_Father: {fileID: 883330324} - m_RootOrder: 2 + m_Children: [] + m_Father: {fileID: 1530016825} + m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 150, y: -650} +--- !u!137 &156050149 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 156050147} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300010, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 1643371061} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1643371061} + m_AABB: + m_Center: {x: -0.00000026635826, y: -0.00000013131648, z: 0.0005419669} + m_Extent: {x: 0.004489839, y: 0.0044893455, z: 0.0007474746} + m_DirtyAABB: 0 +--- !u!1001 &174121771 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1192133537} + m_Modifications: + - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, + type: 3} + propertyPath: m_controller + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, + type: 3} + propertyPath: m_modelGearVrController + value: + objectReference: {fileID: 0} + - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, + type: 3} + propertyPath: m_modelOculusGoController + value: + objectReference: {fileID: 0} + - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, + type: 3} + propertyPath: m_modelOculusTouchRiftLeftController + value: + objectReference: {fileID: 1533612653} + - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, + type: 3} + propertyPath: m_modelOculusTouchRiftRightController + value: + objectReference: {fileID: 1043425434} + - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, + type: 3} + propertyPath: m_modelOculusTouchQuest2LeftController + value: + objectReference: {fileID: 1370218264} + - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, + type: 3} + propertyPath: m_modelOculusTouchQuest2RightController + value: + objectReference: {fileID: 290656239} + - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, + type: 3} + propertyPath: m_modelOculusTouchQuestAndRiftSLeftController + value: + objectReference: {fileID: 2027819626} + - target: {fileID: 114228874124863804, guid: 5c706126fee98a74ea509233e2a32a7f, + type: 3} + propertyPath: m_modelOculusTouchQuestAndRiftSRightController + value: + objectReference: {fileID: 797117062} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5c706126fee98a74ea509233e2a32a7f, type: 3} +--- !u!1 &177729748 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 177729749} + - component: {fileID: 177729751} + - component: {fileID: 177729750} + m_Layer: 5 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &177729749 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 177729748} + 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_Children: [] + m_Father: {fileID: 240885095} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 300, y: -75} + m_SizeDelta: {x: 600, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &177729750 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 177729748} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, 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_text: Sort By + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 86 + m_fontSizeBase: 86 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &177729751 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 177729748} + m_CullTransparentMesh: 0 +--- !u!1 &180632319 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 180632320} + - component: {fileID: 180632322} + - component: {fileID: 180632321} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &180632320 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 180632319} + 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_Children: [] + m_Father: {fileID: 1248823744} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 490, y: -22.5} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &180632321 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 180632319} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, 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_text: Cancel + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 514 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &180632322 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 180632319} + m_CullTransparentMesh: 0 +--- !u!1 &205155607 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 205155608} + - component: {fileID: 205155609} + m_Layer: 0 + m_Name: rctrl:o_button_decal_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &205155608 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 205155607} + 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_Children: [] + m_Father: {fileID: 489477568} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &205155609 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 205155607} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 399898303} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 399898303} + m_AABB: + m_Center: {x: 0.00004066783, y: 0.00002745376, z: 0.0012303367} + m_Extent: {x: 0.0015236214, y: 0.0021297487, z: 0.00001941109} + m_DirtyAABB: 0 +--- !u!1 &210908719 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 210908720} + m_Layer: 5 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &210908720 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 210908719} + 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_Children: + - {fileID: 1377309006} + m_Father: {fileID: 1215736346} + 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!1 &218939787 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 218939788} + m_Layer: 0 + m_Name: lctrl:b_button02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &218939788 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 218939787} + m_LocalRotation: {x: 0.017080953, y: -0.07918932, z: 0.52647054, w: 0.84632504} + m_LocalPosition: {x: -0.0091353385, y: 0.005499125, z: -0.00011681918} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1539841352} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &218985651 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 218985652} + m_Layer: 0 + m_Name: rctrl:right_touch_controller_world + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &218985652 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 218985651} + m_LocalRotation: {x: 0, y: 0.7071068, z: 0.7071068, w: -8.659561e-17} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 310443943} + - {fileID: 1613633147} + - {fileID: 1643371061} + - {fileID: 2073944834} + - {fileID: 1503651960} + - {fileID: 2070872556} + m_Father: {fileID: 1043425435} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &235481851 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 235481852} + - component: {fileID: 235481857} + - component: {fileID: 235481856} + - component: {fileID: 235481855} + - component: {fileID: 235481854} + - component: {fileID: 235481853} + m_Layer: 5 + m_Name: Environment_Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &235481852 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 235481851} + 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_Children: + - {fileID: 1930813481} + m_Father: {fileID: 1127998902} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 947.5, y: -75} + m_SizeDelta: {x: 800, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &235481853 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 235481851} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 10 + m_Right: 10 + m_Top: 10 + m_Bottom: 10 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!65 &235481854 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 235481851} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 800, y: 150, z: 0.05} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &235481855 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 235481851} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 0.25490198, g: 0.44313726, b: 0.6901961, a: 1} + m_HighlightedColor: {r: 0.38875046, g: 0.66205376, b: 0.8584906, a: 1} + m_PressedColor: {r: 0.22352941, g: 0.5568628, b: 0.8392157, a: 1} + m_SelectedColor: {r: 0.29307583, g: 0.58710396, b: 0.8396226, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 235481856} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 883330328} + m_TargetAssemblyTypeName: QuestAppLauncher.SettingsHandler, Assembly-CSharp + m_MethodName: ShowEnvironmentList + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &235481856 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 235481851} + 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: 1, g: 1, b: 1, 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: 10905, 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 &235481857 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 235481851} + m_CullTransparentMesh: 0 +--- !u!1 &240885094 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 240885095} + - component: {fileID: 240885096} + - component: {fileID: 240885097} + m_Layer: 5 + m_Name: Sort_Setting + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &240885095 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 240885094} + 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_Children: + - {fileID: 177729749} + - {fileID: 1092056641} + - {fileID: 1829862260} + m_Father: {fileID: 883330324} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 150, y: -650} m_SizeDelta: {x: 100, y: 150} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &240885096 +--- !u!114 &240885096 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 240885094} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &240885097 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 240885094} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2fafe2cfe61f6974895a912c3755e8f1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_AllowSwitchOff: 0 +--- !u!1 &247836998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 247836999} + - component: {fileID: 247837002} + - component: {fileID: 247837001} + - component: {fileID: 247837000} + m_Layer: 5 + m_Name: Top + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &247836999 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 247836998} + 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_Children: + - {fileID: 1964751872} + - {fileID: 1402303215} + m_Father: {fileID: 2027300713} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 1350, y: -75} + m_SizeDelta: {x: 500, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &247837000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 247836998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 50 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!65 &247837001 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 247836998} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 500, y: 150, z: 0.05} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &247837002 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 247836998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1964751873} + toggleTransition: 1 + graphic: {fileID: 1352329658} + m_Group: {fileID: 2027300714} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 0 +--- !u!1 &249785785 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 249785786} + - component: {fileID: 249785788} + - component: {fileID: 249785787} + m_Layer: 5 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &249785786 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 249785785} + 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_Children: [] + m_Father: {fileID: 1569708396} + m_RootOrder: 1 + 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 &249785787 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 240885094} + m_GameObject: {fileID: 249785785} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} m_Name: m_EditorClassIdentifier: - m_Padding: - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 - m_ChildAlignment: 0 - m_Spacing: 0 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 0 - m_ChildControlHeight: 0 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 ---- !u!114 &240885097 + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, 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_text: Rename + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 64 + m_fontSizeBase: 64 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 86 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 514 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &249785788 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 249785785} + m_CullTransparentMesh: 0 +--- !u!1 &259498116 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 259498117} + - component: {fileID: 259498119} + - component: {fileID: 259498118} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &259498117 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 259498116} + 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_Children: [] + m_Father: {fileID: 1792480199} + 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: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &259498118 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 240885094} + m_GameObject: {fileID: 259498116} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2fafe2cfe61f6974895a912c3755e8f1, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: - m_AllowSwitchOff: 0 ---- !u!1 &247836998 + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, 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: 10905, 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 &259498119 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 259498116} + m_CullTransparentMesh: 0 +--- !u!1 &276135897 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 276135898} + - component: {fileID: 276135900} + m_Layer: 5 + m_Name: TMP SubMeshUI [LiberationSans SDF Material + LiberationSans SDF Atlas] + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &276135898 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 276135897} + 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_Children: [] + m_Father: {fileID: 1456625394} + 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!222 &276135900 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 276135897} + m_CullTransparentMesh: 0 +--- !u!1 &280006549 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2095,124 +3608,84 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 247836999} - - component: {fileID: 247837002} - - component: {fileID: 247837001} - - component: {fileID: 247837000} - m_Layer: 5 - m_Name: Top + - component: {fileID: 280006550} + - component: {fileID: 280006551} + m_Layer: 0 + m_Name: rctrl:thumbstick_ball_PLY m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &247836999 -RectTransform: +--- !u!4 &280006550 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 247836998} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 280006549} + 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_Children: - - {fileID: 1964751872} - - {fileID: 1402303215} - m_Father: {fileID: 2027300713} - m_RootOrder: 2 + m_Children: [] + m_Father: {fileID: 489477568} + m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 1350, y: -75} - m_SizeDelta: {x: 500, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &247837000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 247836998} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 - m_ChildAlignment: 0 - m_Spacing: 50 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 0 - m_ChildControlHeight: 0 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 ---- !u!65 &247837001 -BoxCollider: +--- !u!137 &280006551 +SkinnedMeshRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 247836998} - m_Material: {fileID: 0} - m_IsTrigger: 0 + m_GameObject: {fileID: 280006549} m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 serializedVersion: 2 - m_Size: {x: 500, y: 150, z: 0.05} - m_Center: {x: 0, y: 0, z: 0} ---- !u!114 &247837002 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 247836998} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1964751873} - toggleTransition: 1 - graphic: {fileID: 1352329658} - m_Group: {fileID: 2027300714} - onValueChanged: - m_PersistentCalls: - m_Calls: [] - m_IsOn: 0 ---- !u!1 &249785785 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300012, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 1795596850} + - {fileID: 754484175} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1795596850} + m_AABB: + m_Center: {x: -0.01054777, y: 0.004984765, z: 0.00224772} + m_Extent: {x: 0.010899382, y: 0.010843774, z: 0.007860384} + m_DirtyAABB: 0 +--- !u!1 &281343927 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2220,42 +3693,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 249785786} - - component: {fileID: 249785788} - - component: {fileID: 249785787} + - component: {fileID: 281343928} + - component: {fileID: 281343930} + - component: {fileID: 281343929} m_Layer: 5 - m_Name: Label + m_Name: Text (TMP) m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &249785786 +--- !u!224 &281343928 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 249785785} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 281343927} + 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_Children: [] - m_Father: {fileID: 1569708396} - m_RootOrder: 1 + m_Father: {fileID: 2130504546} + 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_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 490, y: -22.5} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &249785787 +--- !u!114 &281343929 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 249785785} + m_GameObject: {fileID: 281343927} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -2264,11 +3737,12 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, 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_text: Rename + m_text: Cancel m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} @@ -2289,20 +3763,21 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 - m_fontSize: 64 - m_fontSizeBase: 64 + m_fontSize: 36 + m_fontSizeBase: 36 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 18 - m_fontSizeMax: 86 + m_fontSizeMax: 72 m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 m_textAlignment: 514 m_characterSpacing: 0 m_wordSpacing: 0 @@ -2310,13 +3785,11 @@ MonoBehaviour: m_lineSpacingMax: 0 m_paragraphSpacing: 0 m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 + m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -2324,51 +3797,226 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 249785787} - characterCount: 6 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &249785788 +--- !u!222 &281343930 CanvasRenderer: m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 281343927} + m_CullTransparentMesh: 0 +--- !u!1 &284714161 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 284714162} + m_Layer: 5 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &284714162 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 284714161} + 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_Children: + - {fileID: 1350156236} + m_Father: {fileID: 1157126548} + 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!1 &287691577 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 287691578} + - component: {fileID: 287691579} + m_Layer: 0 + m_Name: rctrl:a_button_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &287691578 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 287691577} + 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_Children: [] + m_Father: {fileID: 489477568} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &287691579 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 287691577} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300018, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 413048518} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 413048518} + m_AABB: + m_Center: {x: 0.0000007292256, y: 0.000013417564, z: 0.00051031867} + m_Extent: {x: 0.0050891023, y: 0.005111115, z: 0.0025862483} + m_DirtyAABB: 0 +--- !u!1001 &290656237 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1257996012} + m_Modifications: + - target: {fileID: 100018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_Name + value: OculusTouchForQuest2RightModel + objectReference: {fileID: 0} + - target: {fileID: 100018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_RootOrder + value: 22 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9500000, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 62a9d09916ac8bf4ba30ba4803d3503a, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} +--- !u!4 &290656238 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, + type: 3} + m_PrefabInstance: {fileID: 290656237} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 249785785} - m_CullTransparentMesh: 0 ---- !u!1 &259498116 +--- !u!1 &290656239 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 100018, guid: 25b5eb0761edb6346b0b3444af76b55e, + type: 3} + m_PrefabInstance: {fileID: 290656237} + m_PrefabAsset: {fileID: 0} +--- !u!1 &302656572 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2376,73 +4024,126 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 259498117} - - component: {fileID: 259498119} - - component: {fileID: 259498118} + - component: {fileID: 302656573} + - component: {fileID: 302656576} + - component: {fileID: 302656575} + - component: {fileID: 302656574} m_Layer: 5 - m_Name: Handle + m_Name: Show_2D m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &259498117 +--- !u!224 &302656573 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 259498116} + m_GameObject: {fileID: 302656572} 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_Children: [] - m_Father: {fileID: 1792480199} - m_RootOrder: 0 + m_Children: + - {fileID: 987583755} + - {fileID: 87081339} + m_Father: {fileID: 949458750} + m_RootOrder: 4 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: 20, y: 20} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 2300, y: -75} + m_SizeDelta: {x: 800, y: 150} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &259498118 +--- !u!114 &302656574 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 259498116} + m_GameObject: {fileID: 302656572} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} m_Name: m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!65 &302656575 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 302656572} m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 10905, 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 &259498119 -CanvasRenderer: + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 800, y: 150, z: 0.05} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &302656576 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 259498116} - m_CullTransparentMesh: 0 ---- !u!1 &276135897 + m_GameObject: {fileID: 302656572} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 987583756} + toggleTransition: 1 + graphic: {fileID: 2047630437} + m_Group: {fileID: 0} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 1 +--- !u!1 &310443942 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2450,72 +4151,29 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 276135898} - - component: {fileID: 276135900} - - component: {fileID: 276135899} - m_Layer: 5 - m_Name: TMP SubMeshUI [LiberationSans SDF Material + LiberationSans SDF Atlas] + - component: {fileID: 310443943} + m_Layer: 0 + m_Name: rctrl:b_button01 m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &276135898 -RectTransform: +--- !u!4 &310443943 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 276135897} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 310443942} + m_LocalRotation: {x: 0.056604527, y: 0.05795374, z: 0.004675739, w: 0.9967023} + m_LocalPosition: {x: 0.0019170768, y: -0.0073837424, z: -0.00091214647} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1456625394} + m_Father: {fileID: 218985652} 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 &276135899 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 276135897} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 058cba836c1846c3aa1c5fd2e28aea77, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_fontAsset: {fileID: 11400000, guid: 2e498d1c8094910479dc3e1b768306a4, type: 2} - m_spriteAsset: {fileID: 0} - m_material: {fileID: 0} - m_sharedMaterial: {fileID: 0} - m_isDefaultMaterial: 0 - m_padding: 1.25 - m_canvasRenderer: {fileID: 276135900} - m_TextComponent: {fileID: 1456625395} - m_materialReferenceIndex: 1 ---- !u!222 &276135900 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 276135897} - m_CullTransparentMesh: 0 ---- !u!1 &281343927 +--- !u!1 &314582732 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2523,9 +4181,9 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 281343928} - - component: {fileID: 281343930} - - component: {fileID: 281343929} + - component: {fileID: 314582733} + - component: {fileID: 314582735} + - component: {fileID: 314582734} m_Layer: 5 m_Name: Text (TMP) m_TagString: Untagged @@ -2533,32 +4191,33 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &281343928 +--- !u!224 &314582733 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 281343927} + m_GameObject: {fileID: 314582732} 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_Children: [] - m_Father: {fileID: 2130504546} + m_Children: + - {fileID: 1665855484} + m_Father: {fileID: 514308059} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 490, y: -22.5} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &281343929 +--- !u!114 &314582734 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 281343927} + m_GameObject: {fileID: 314582732} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -2567,11 +4226,12 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, 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_text: Cancel + m_text: '>' m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} @@ -2592,21 +4252,22 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 - m_fontSize: 36 - m_fontSizeBase: 36 + m_fontSize: 86 + m_fontSizeBase: 86 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 514 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -2616,10 +4277,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -2627,51 +4286,29 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 281343929} - characterCount: 6 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &281343930 +--- !u!222 &314582735 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 281343927} + m_GameObject: {fileID: 314582732} m_CullTransparentMesh: 0 ---- !u!1 &284714161 +--- !u!1 &316078877 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2679,84 +4316,53 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 284714162} + - component: {fileID: 316078878} + - component: {fileID: 316078885} + - component: {fileID: 316078884} + - component: {fileID: 316078883} + - component: {fileID: 316078882} + - component: {fileID: 316078881} + - component: {fileID: 316078880} + - component: {fileID: 316078879} m_Layer: 5 - m_Name: Sliding Area + m_Name: Environment_List m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &284714162 +--- !u!224 &316078878 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 284714161} + m_GameObject: {fileID: 316078877} 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_Children: - - {fileID: 1350156236} - m_Father: {fileID: 1157126548} - m_RootOrder: 0 + - {fileID: 110464151} + - {fileID: 1805106462} + - {fileID: 1248823744} + m_Father: {fileID: 132513680} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &302656572 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 302656573} - - component: {fileID: 302656576} - - component: {fileID: 302656575} - - component: {fileID: 302656574} - m_Layer: 5 - m_Name: Show_2D - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &302656573 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 302656572} - 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_Children: - - {fileID: 987583755} - - {fileID: 87081339} - m_Father: {fileID: 949458750} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2300, y: -75} - m_SizeDelta: {x: 800, y: 150} + m_SizeDelta: {x: 1000, y: 600} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &302656574 +--- !u!114 &316078879 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 302656572} + m_GameObject: {fileID: 316078877} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} m_Name: m_EditorClassIdentifier: m_Padding: @@ -2764,7 +4370,7 @@ MonoBehaviour: m_Right: 0 m_Top: 0 m_Bottom: 0 - m_ChildAlignment: 0 + m_ChildAlignment: 4 m_Spacing: 0 m_ChildForceExpandWidth: 1 m_ChildForceExpandHeight: 1 @@ -2772,222 +4378,182 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 ---- !u!65 &302656575 -BoxCollider: + m_ReverseArrangement: 0 +--- !u!114 &316078880 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 302656572} - m_Material: {fileID: 0} - m_IsTrigger: 0 + m_GameObject: {fileID: 316078877} m_Enabled: 1 - serializedVersion: 2 - m_Size: {x: 800, y: 150, z: 0.05} - m_Center: {x: 0, y: 0, z: 0} ---- !u!114 &302656576 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3b73c0f025259b647af56e0caed51194, type: 3} + m_Name: + m_EditorClassIdentifier: + envParentContainer: {fileID: 1582271510} + envListContainer: {fileID: 132513679} + prefabEnvironmentEntry: {fileID: 4824380111246446992, guid: 2e6db34b3491b394dbbe1d7fab2b0362, + type: 3} + contentTransform: {fileID: 1977594613} +--- !u!114 &316078881 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 302656572} + m_GameObject: {fileID: 316078877} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Script: {fileID: 11500000, guid: 472cd28b041d447a4b0f2b5c603034aa, type: 3} m_Name: m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 987583756} - toggleTransition: 1 - graphic: {fileID: 2047630437} - m_Group: {fileID: 0} - onValueChanged: + trackingSpace: {fileID: 1811954865} + primaryButton: 8192 + secondaryButton: 0 + tertiaryButton: 0 + primaryPinchFinger: 1 + secondaryPinchFinger: 2 + tertiaryPinchFinger: 3 + excludeLayers: + serializedVersion: 2 + m_Bits: 0 + raycastDistance: 500 + onHoverEnter: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 316078880} + m_TargetAssemblyTypeName: QuestAppLauncher.EnvironmentHandler, Assembly-CSharp + m_MethodName: OnHoverEnter + m_Mode: 0 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + onHoverExit: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 316078880} + m_TargetAssemblyTypeName: QuestAppLauncher.EnvironmentHandler, Assembly-CSharp + m_MethodName: OnHoverExit + m_Mode: 0 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + onHover: m_PersistentCalls: m_Calls: [] - m_IsOn: 1 ---- !u!1 &314582732 -GameObject: + onPrimarySelect: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 316078880} + m_TargetAssemblyTypeName: QuestAppLauncher.EnvironmentHandler, Assembly-CSharp + m_MethodName: OnSelected + m_Mode: 0 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + onSecondarySelect: + m_PersistentCalls: + m_Calls: [] + onTertiarySelect: + m_PersistentCalls: + m_Calls: [] +--- !u!65 &316078882 +BoxCollider: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 314582733} - - component: {fileID: 314582735} - - component: {fileID: 314582734} - m_Layer: 5 - m_Name: Text (TMP) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &314582733 -RectTransform: + m_GameObject: {fileID: 316078877} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1000, y: 600, z: 0} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &316078883 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 314582732} - 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_Children: - - {fileID: 1665855484} - m_Father: {fileID: 514308059} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &314582734 + m_GameObject: {fileID: 316078877} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6c51693ac45aa2d4480f322a70ef9a67, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 1977594613} + m_Horizontal: 0 + m_Vertical: 1 + m_MovementType: 1 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 1805106462} + m_HorizontalScrollbar: {fileID: 0} + m_VerticalScrollbar: {fileID: 0} + m_HorizontalScrollbarVisibility: 0 + m_VerticalScrollbarVisibility: 0 + m_HorizontalScrollbarSpacing: 0 + m_VerticalScrollbarSpacing: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + trackingSpace: {fileID: 0} +--- !u!114 &316078884 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 314582732} + m_GameObject: {fileID: 316078877} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.010234957, g: 0.09975823, b: 0.21698111, 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_text: '>' - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 - m_fontSize: 86 - m_fontSizeBase: 86 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_textAlignment: 514 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 - m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 314582734} - characterCount: 1 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} - m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 1665855485} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &314582735 + 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 &316078885 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 314582732} + m_GameObject: {fileID: 316078877} m_CullTransparentMesh: 0 --- !u!1 &336007693 GameObject: @@ -3041,6 +4607,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -3066,13 +4633,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 36 m_fontSizeBase: 36 m_fontWeight: 400 @@ -3080,6 +4646,8 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 m_textAlignment: 514 m_characterSpacing: 0 m_wordSpacing: 0 @@ -3090,10 +4658,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -3101,40 +4667,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 336007695} - characterCount: 17 - spriteCount: 0 - spaceCount: 1 - wordCount: 2 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &336007696 @@ -3145,105 +4689,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 336007693} m_CullTransparentMesh: 0 ---- !u!1 &340813588 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 340813589} - - component: {fileID: 340813592} - - component: {fileID: 340813591} - - component: {fileID: 340813590} - m_Layer: 0 - m_Name: OculusTouchForQuestAndRiftSRightModel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &340813589 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 340813588} - 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_Children: [] - m_Father: {fileID: 1457050908} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!95 &340813590 -Animator: - serializedVersion: 3 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 340813588} - m_Enabled: 1 - m_Avatar: {fileID: 9000000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} - m_Controller: {fileID: 0} - m_CullingMode: 0 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorControllerStateOnDisable: 0 ---- !u!23 &340813591 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 340813588} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!33 &340813592 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 340813588} - m_Mesh: {fileID: 4300000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} --- !u!1 &373717173 GameObject: m_ObjectHideFlags: 0 @@ -3307,6 +4752,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &378294574 GameObject: m_ObjectHideFlags: 0 @@ -3342,6 +4788,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -3386,6 +4833,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -3425,6 +4873,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &378294578 BoxCollider: m_ObjectHideFlags: 0 @@ -3466,6 +4915,87 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 200, y: 150} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &379472520 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 379472521} + - component: {fileID: 379472523} + - component: {fileID: 379472522} + m_Layer: 0 + m_Name: OculusGoControllerModel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &379472521 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 379472520} + m_LocalRotation: {x: 6.123234e-17, y: -0.0000000754979, z: 6.1232336e-17, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1257996012} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &379472522 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 379472520} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &379472523 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 379472520} + m_Mesh: {fileID: 4300000, guid: e0f1914fdbfd3764faeff5474c0cbe1e, type: 3} --- !u!1 &380981304 GameObject: m_ObjectHideFlags: 0 @@ -3502,6 +5032,90 @@ RectTransform: m_AnchoredPosition: {x: -5, y: 0} m_SizeDelta: {x: -20, y: 0} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &392735421 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 392735422} + - component: {fileID: 392735423} + m_Layer: 0 + m_Name: lctrl:main_trigger_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &392735422 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 392735421} + 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_Children: [] + m_Father: {fileID: 462020185} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &392735423 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 392735421} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300012, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1505149566} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1505149566} + m_AABB: + m_Center: {x: -0.0006609438, y: 0.0013324535, z: -0.013972079} + m_Extent: {x: 0.0145619055, y: 0.009363498, z: 0.0133649465} + m_DirtyAABB: 0 --- !u!1 &397261750 GameObject: m_ObjectHideFlags: 0 @@ -3548,6 +5162,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -3573,13 +5188,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -3587,7 +5201,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 257 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -3597,10 +5213,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -3608,40 +5222,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 397261752} - characterCount: 0 - spriteCount: 0 - spaceCount: 0 - wordCount: 0 - linkCount: 0 - lineCount: 0 - pageCount: 0 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &397261753 @@ -3671,7 +5263,7 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 75} m_SizeDelta: {x: 0, y: 150} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &407379521 +--- !u!1 &399898302 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3679,29 +5271,216 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 407379522} + - component: {fileID: 399898303} m_Layer: 0 - m_Name: OculusGoController + m_Name: rctrl:b_button03 m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &407379522 +--- !u!4 &399898303 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 407379521} + m_GameObject: {fileID: 399898302} + m_LocalRotation: {x: 0.07876507, y: 0.01894126, z: 0.5343878, w: 0.8413483} + m_LocalPosition: {x: -0.012083728, y: -0.01402681, z: -0.0007126567} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1795596850} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &407227651 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 407227652} + - component: {fileID: 407227654} + - component: {fileID: 407227653} + m_Layer: 5 + m_Name: Border + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &407227652 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 407227651} 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_Children: - - {fileID: 1225119221} - - {fileID: 696398113} - - {fileID: 1226067460} - m_Father: {fileID: 174121772} + m_Children: [] + m_Father: {fileID: 132513680} + 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: 0} + m_SizeDelta: {x: 1010, y: 610} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &407227653 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 407227651} + 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.68235296, b: 0.9372549, 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: 21300000, guid: eb604cc485e242f47964afd8b57c3352, type: 3} + 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 &407227654 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 407227651} + m_CullTransparentMesh: 0 +--- !u!1 &409627578 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 409627579} + - component: {fileID: 409627580} + m_Layer: 0 + m_Name: rctrl:thumbstick_ball_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &409627579 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 409627578} + 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_Children: [] + m_Father: {fileID: 1530016825} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &409627580 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 409627578} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300012, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 218985652} + - {fileID: 1503651960} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 218985652} + m_AABB: + m_Center: {x: -0.01054777, y: 0.004984765, z: 0.00224772} + m_Extent: {x: 0.010899382, y: 0.010843774, z: 0.007860384} + m_DirtyAABB: 0 +--- !u!1 &413048517 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 413048518} + m_Layer: 0 + m_Name: rctrl:b_button01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &413048518 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 413048517} + m_LocalRotation: {x: 0.056604527, y: 0.05795374, z: 0.004675739, w: 0.9967023} + m_LocalPosition: {x: 0.0019170768, y: -0.0073837424, z: -0.00091214647} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1795596850} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &424758894 @@ -3769,6 +5548,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &424758897 BoxCollider: m_ObjectHideFlags: 0 @@ -3796,6 +5576,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -3897,6 +5678,90 @@ Transform: m_Father: {fileID: 0} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &435171674 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 435171675} + - component: {fileID: 435171676} + m_Layer: 0 + m_Name: rctrl:main_trigger_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &435171675 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 435171674} + 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_Children: [] + m_Father: {fileID: 489477568} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &435171676 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 435171674} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300008, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 5356384} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 5356384} + m_AABB: + m_Center: {x: -0.0006609438, y: -0.0013324562, z: -0.013972085} + m_Extent: {x: 0.014561905, y: 0.009363498, z: 0.013364948} + m_DirtyAABB: 0 --- !u!1 &455413003 GameObject: m_ObjectHideFlags: 0 @@ -3950,6 +5815,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4037,6 +5903,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &455930357 BoxCollider: m_ObjectHideFlags: 0 @@ -4064,6 +5931,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -4149,6 +6017,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4171,6 +6040,46 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 456960731} m_CullTransparentMesh: 0 +--- !u!1 &462020184 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 462020185} + m_Layer: 0 + m_Name: lctrl:geometry_null + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &462020185 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462020184} + m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1333469950} + - {fileID: 392735422} + - {fileID: 1566937402} + - {fileID: 1699028849} + - {fileID: 1876729274} + - {fileID: 907592179} + - {fileID: 95353019} + - {fileID: 1454950767} + - {fileID: 1557847380} + - {fileID: 1811833978} + m_Father: {fileID: 127731052} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &470013055 GameObject: m_ObjectHideFlags: 0 @@ -4224,6 +6133,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4246,6 +6156,36 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 470013055} m_CullTransparentMesh: 0 +--- !u!1 &471337470 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 471337471} + m_Layer: 0 + m_Name: rctrl:b_stick_IGNORE + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &471337471 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 471337470} + m_LocalRotation: {x: -4.5059287e-17, y: -0.70108956, z: -6.5911624e-17, w: 0.71307325} + m_LocalPosition: {x: -0.019321036, y: 0, z: 9.992007e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1503651960} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &471654429 GameObject: m_ObjectHideFlags: 0 @@ -4309,6 +6249,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &483929307 GameObject: m_ObjectHideFlags: 0 @@ -4361,6 +6302,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4386,13 +6328,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 36 m_fontSizeBase: 36 m_fontWeight: 400 @@ -4400,6 +6341,8 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 m_textAlignment: 514 m_characterSpacing: 0 m_wordSpacing: 0 @@ -4410,10 +6353,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -4421,40 +6362,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 483929309} - characterCount: 6 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &483929310 @@ -4465,6 +6384,46 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 483929307} m_CullTransparentMesh: 0 +--- !u!1 &489477567 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 489477568} + m_Layer: 0 + m_Name: rctrl:geometry_null + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &489477568 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 489477567} + m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 287691578} + - {fileID: 572699262} + - {fileID: 1489491087} + - {fileID: 435171675} + - {fileID: 205155608} + - {fileID: 753897816} + - {fileID: 2143638615} + - {fileID: 1754262288} + - {fileID: 575570625} + - {fileID: 280006550} + m_Father: {fileID: 1437575593} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &504416152 GameObject: m_ObjectHideFlags: 0 @@ -4528,6 +6487,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &514308058 GameObject: m_ObjectHideFlags: 0 @@ -4594,6 +6554,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &514308061 BoxCollider: m_ObjectHideFlags: 0 @@ -4621,6 +6582,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -4665,6 +6627,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4768,6 +6731,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0, g: 0, b: 0, a: 0} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4790,6 +6754,36 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 519013807} m_CullTransparentMesh: 0 +--- !u!1 &562162851 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 562162852} + m_Layer: 0 + m_Name: lctrl:b_stick_IGNORE + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &562162852 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 562162851} + m_LocalRotation: {x: 0, y: -0.70108956, z: -0, w: 0.71307325} + m_LocalPosition: {x: -0.019321036, y: 0, z: 9.992007e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 608672829} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &572537054 GameObject: m_ObjectHideFlags: 0 @@ -4853,6 +6847,91 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &572699261 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 572699262} + - component: {fileID: 572699263} + m_Layer: 0 + m_Name: rctrl:b_button_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &572699262 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 572699261} + 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_Children: [] + m_Father: {fileID: 489477568} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &572699263 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 572699261} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300016, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 6223931} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 6223931} + m_AABB: + m_Center: {x: 0.000000345055, y: -0.0000009192154, z: 0.0003571303} + m_Extent: {x: 0.0050524976, y: 0.0050528734, z: 0.0025179689} + m_DirtyAABB: 0 --- !u!1 &575267383 GameObject: m_ObjectHideFlags: 0 @@ -4889,6 +6968,90 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: -20, y: 0} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &575570624 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 575570625} + - component: {fileID: 575570626} + m_Layer: 0 + m_Name: rctrl:surface_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &575570625 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 575570624} + 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_Children: [] + m_Father: {fileID: 489477568} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &575570626 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 575570624} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300002, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 1795596850} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1795596850} + m_AABB: + m_Center: {x: -0.00016466714, y: 0.00024955347, z: -0.0010734657} + m_Extent: {x: 0.02819586, y: 0.02827545, z: 0.0059699244} + m_DirtyAABB: 0 --- !u!1 &582880631 GameObject: m_ObjectHideFlags: 0 @@ -4942,6 +7105,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -4967,13 +7131,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -4981,7 +7144,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 514 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -4991,10 +7156,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -5002,40 +7165,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 582880633} - characterCount: 1 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 2078487179} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &582880634 @@ -5109,6 +7250,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &604462431 GameObject: m_ObjectHideFlags: 0 @@ -5161,6 +7303,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -5186,13 +7329,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -5200,7 +7342,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -5210,10 +7354,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -5221,40 +7363,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 604462433} - characterCount: 4 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &604462434 @@ -5263,8 +7383,39 @@ CanvasRenderer: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 604462431} - m_CullTransparentMesh: 0 + m_GameObject: {fileID: 604462431} + m_CullTransparentMesh: 0 +--- !u!1 &608672828 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 608672829} + m_Layer: 0 + m_Name: lctrl:b_stick + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &608672829 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608672828} + m_LocalRotation: {x: 0.0027868259, y: 0.70437866, z: -0.0031505642, w: 0.7098119} + m_LocalPosition: {x: 0.010637393, y: 0.00497835, z: -0.009418557} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 562162852} + m_Father: {fileID: 1539841352} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &627993404 GameObject: m_ObjectHideFlags: 0 @@ -5327,6 +7478,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!114 &627993408 MonoBehaviour: m_ObjectHideFlags: 0 @@ -5341,7 +7493,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_HorizontalFit: 0 m_VerticalFit: 2 ---- !u!1 &647218110 +--- !u!1 &638043233 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -5349,69 +7501,49 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 647218111} - - component: {fileID: 647218114} - - component: {fileID: 647218113} - - component: {fileID: 647218112} + - component: {fileID: 638043234} + - component: {fileID: 638043235} m_Layer: 0 - m_Name: OculusTouchForQuestAndRiftSLeftModel + m_Name: rctrl:ring_PLY m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &647218111 +--- !u!4 &638043234 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 647218110} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 638043233} + 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_Children: [] - m_Father: {fileID: 174121772} - m_RootOrder: 1 + m_Father: {fileID: 1530016825} + m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!95 &647218112 -Animator: - serializedVersion: 3 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 647218110} - m_Enabled: 1 - m_Avatar: {fileID: 9000000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} - m_Controller: {fileID: 0} - m_CullingMode: 0 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorControllerStateOnDisable: 0 ---- !u!23 &647218113 -MeshRenderer: +--- !u!137 &638043235 +SkinnedMeshRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 647218110} + m_GameObject: {fileID: 638043233} m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 + m_CastShadows: 1 + m_ReceiveShadows: 1 m_DynamicOccludee: 1 m_MotionVectors: 1 m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -5432,14 +7564,19 @@ MeshRenderer: m_SortingLayerID: 0 m_SortingLayer: 0 m_SortingOrder: 0 ---- !u!33 &647218114 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 647218110} - m_Mesh: {fileID: 4300000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300004, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 218985652} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 218985652} + m_AABB: + m_Center: {x: -0.016699282, y: 0.010818443, z: -0.036364153} + m_Extent: {x: 0.054633915, y: 0.021678247, z: 0.050220713} + m_DirtyAABB: 0 --- !u!1 &673732997 GameObject: m_ObjectHideFlags: 0 @@ -5541,6 +7678,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -5571,6 +7709,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 883330328} + m_TargetAssemblyTypeName: m_MethodName: CloseSettings m_Mode: 1 m_Arguments: @@ -5596,6 +7735,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.22116412, g: 0.3850043, b: 0.6698113, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -5718,6 +7858,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 686608804} + m_TargetAssemblyTypeName: m_MethodName: OnHoverEnter m_Mode: 0 m_Arguments: @@ -5732,6 +7873,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 686608804} + m_TargetAssemblyTypeName: m_MethodName: OnHoverExit m_Mode: 0 m_Arguments: @@ -5749,6 +7891,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 686608804} + m_TargetAssemblyTypeName: m_MethodName: OnSelected m_Mode: 0 m_Arguments: @@ -5830,128 +7973,6 @@ BoxCollider: serializedVersion: 2 m_Size: {x: 2802, y: 2000, z: 0} m_Center: {x: 0, y: 0, z: 0} ---- !u!1 &696398112 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 696398113} - - component: {fileID: 696398114} - m_Layer: 0 - m_Name: Directional Light - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &696398113 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 696398112} - m_LocalRotation: {x: 0.46193978, y: 0.33141357, z: -0.19134171, w: 0.8001032} - m_LocalPosition: {x: 2, y: 2, z: 4} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 407379522} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 60, y: 45, z: 0} ---- !u!108 &696398114 -Light: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 696398112} - m_Enabled: 1 - serializedVersion: 10 - m_Type: 1 - m_Shape: 0 - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_Intensity: 1 - m_Range: 10 - m_SpotAngle: 30 - m_InnerSpotAngle: 21.80208 - m_CookieSize: 10 - m_Shadows: - m_Type: 0 - 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_ShadowRadius: 0 - m_ShadowAngle: 0 ---- !u!1 &696687901 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 696687902} - m_Layer: 0 - m_Name: Camera - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &696687902 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 696687901} - m_LocalRotation: {x: -0.030843573, y: -0.7064338, z: 0.030843573, w: 0.7064338} - m_LocalPosition: {x: 0, y: 0.75, z: 4} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1644749161} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: -90.00001, z: 5} --- !u!1 &703634710 GameObject: m_ObjectHideFlags: 0 @@ -6004,6 +8025,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -6029,13 +8051,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 36 m_fontSizeBase: 36 m_fontWeight: 400 @@ -6043,6 +8064,8 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 m_textAlignment: 514 m_characterSpacing: 0 m_wordSpacing: 0 @@ -6053,10 +8076,8 @@ MonoBehaviour: m_enableWordWrapping: 1 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -6064,40 +8085,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 703634712} - characterCount: 9 - spriteCount: 0 - spaceCount: 1 - wordCount: 2 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &703634713 @@ -6175,6 +8174,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -6212,6 +8212,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 883330328} + m_TargetAssemblyTypeName: QuestAppLauncher.SettingsHandler, Assembly-CSharp m_MethodName: UpdateGridColText m_Mode: 1 m_Arguments: @@ -6246,19 +8247,19 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 726467102} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + 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_Children: - {fileID: 1764737581} - {fileID: 2120155537} - m_Father: {fileID: 883330324} - m_RootOrder: 5 + m_Father: {fileID: 1526064807} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 150, y: -1400} - m_SizeDelta: {x: 100, y: 150} + m_AnchoredPosition: {x: 650, y: -75} + m_SizeDelta: {x: 1300, y: 150} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &726467104 MonoBehaviour: @@ -6285,6 +8286,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &730856369 GameObject: m_ObjectHideFlags: 0 @@ -6337,6 +8339,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -6357,8 +8360,153 @@ CanvasRenderer: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 730856369} - m_CullTransparentMesh: 0 + m_GameObject: {fileID: 730856369} + m_CullTransparentMesh: 0 +--- !u!1 &738811811 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 738811812} + m_Layer: 0 + m_Name: rctrl:b_hold + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &738811812 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 738811811} + m_LocalRotation: {x: -0.17913595, y: 0.14914332, z: 0.022661837, w: 0.97218984} + m_LocalPosition: {x: -0.013074442, y: -0.025639696, z: -0.027427113} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1795596850} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &753897815 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 753897816} + - component: {fileID: 753897817} + m_Layer: 0 + m_Name: rctrl:o_button_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &753897816 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 753897815} + 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_Children: [] + m_Father: {fileID: 489477568} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &753897817 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 753897815} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300010, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 399898303} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 399898303} + m_AABB: + m_Center: {x: -0.00000026635826, y: -0.00000013131648, z: 0.0005419669} + m_Extent: {x: 0.004489839, y: 0.0044893455, z: 0.0007474746} + m_DirtyAABB: 0 +--- !u!1 &754484174 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 754484175} + m_Layer: 0 + m_Name: rctrl:b_stick + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &754484175 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 754484174} + m_LocalRotation: {x: -0.003149668, y: 0.7098123, z: 0.002783398, w: 0.7043784} + m_LocalPosition: {x: -0.010637393, y: 0.00497835, z: -0.009418557} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2037417492} + m_Father: {fileID: 1795596850} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &766539584 GameObject: m_ObjectHideFlags: 0 @@ -6411,6 +8559,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0, g: 0.68235296, b: 0.9372549, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -6433,6 +8582,87 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 766539584} m_CullTransparentMesh: 0 +--- !u!1 &778943965 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 778943966} + - component: {fileID: 778943968} + - component: {fileID: 778943967} + m_Layer: 0 + m_Name: OculusGoControllerModel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &778943966 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 778943965} + m_LocalRotation: {x: 6.123234e-17, y: -0.0000000754979, z: 6.1232336e-17, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1844715059} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &778943967 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 778943965} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &778943968 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 778943965} + m_Mesh: {fileID: 4300000, guid: e0f1914fdbfd3764faeff5474c0cbe1e, type: 3} --- !u!1 &780346999 GameObject: m_ObjectHideFlags: 0 @@ -6485,6 +8715,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0, g: 0.68235296, b: 0.9372549, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -6507,6 +8738,12 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 780346999} m_CullTransparentMesh: 0 +--- !u!4 &782950777 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4761956870075864, guid: 5c706126fee98a74ea509233e2a32a7f, + type: 3} + m_PrefabInstance: {fileID: 174121771} + m_PrefabAsset: {fileID: 0} --- !u!1 &788846825 GameObject: m_ObjectHideFlags: 0 @@ -6560,6 +8797,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -6585,13 +8823,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -6599,7 +8836,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 257 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -6609,10 +8848,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -6620,40 +8857,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 788846827} - characterCount: 0 - spriteCount: 0 - spaceCount: 0 - wordCount: 0 - linkCount: 0 - lineCount: 0 - pageCount: 0 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &788846828 @@ -6670,12 +8885,274 @@ MonoBehaviour: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 788846825} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 91f098ea5c7fe084c8f890ad453a103c, type: 3} - m_Name: - m_EditorClassIdentifier: + m_GameObject: {fileID: 788846825} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 91f098ea5c7fe084c8f890ad453a103c, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &789610624 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 789610625} + - component: {fileID: 789610626} + m_Layer: 0 + m_Name: rctrl:a_button_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &789610625 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 789610624} + 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_Children: [] + m_Father: {fileID: 1530016825} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &789610626 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 789610624} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300018, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 310443943} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 310443943} + m_AABB: + m_Center: {x: 0.0000007292256, y: 0.000013417564, z: 0.00051031867} + m_Extent: {x: 0.0050891023, y: 0.005111115, z: 0.0025862483} + m_DirtyAABB: 0 +--- !u!1001 &795583436 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1844715059} + m_Modifications: + - target: {fileID: 100016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_Name + value: OculusTouchForQuest2LeftModel + objectReference: {fileID: 0} + - target: {fileID: 100016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_RootOrder + value: 21 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9500000, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 4a8e946ed663e4a4db0f537e2965635d, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} +--- !u!4 &795583437 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, + type: 3} + m_PrefabInstance: {fileID: 795583436} + m_PrefabAsset: {fileID: 0} +--- !u!1 &795583438 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 100016, guid: 8b83018900d13bb4f8e0ad895cb004e5, + type: 3} + m_PrefabInstance: {fileID: 795583436} + m_PrefabAsset: {fileID: 0} +--- !u!1 &797117062 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 797117063} + - component: {fileID: 797117066} + - component: {fileID: 797117065} + - component: {fileID: 797117064} + m_Layer: 0 + m_Name: OculusTouchForQuestAndRiftSRightModel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &797117063 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 797117062} + 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_Children: [] + m_Father: {fileID: 1257996012} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &797117064 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 797117062} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Controller: {fileID: 0} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 +--- !u!23 &797117065 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 797117062} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &797117066 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 797117062} + m_Mesh: {fileID: 4300000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} --- !u!1 &798664536 stripped GameObject: m_CorrespondingSourceObject: {fileID: 1870938896605422, guid: 835e735ca71bf78459fb2cababd74112, @@ -6749,6 +9226,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -6818,6 +9296,7 @@ MeshRenderer: m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 m_RayTracingMode: 2 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: @@ -6842,6 +9321,7 @@ MeshRenderer: m_SortingLayerID: 0 m_SortingLayer: 0 m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} --- !u!33 &831075833 MeshFilter: m_ObjectHideFlags: 0 @@ -6850,12 +9330,264 @@ MeshFilter: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 831075830} m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &849771376 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 849771377} + - component: {fileID: 849771378} + m_Layer: 0 + m_Name: rctrl:controller_body_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &849771377 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 849771376} + 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_Children: [] + m_Father: {fileID: 1530016825} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &849771378 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 849771376} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300006, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 218985652} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 218985652} + m_AABB: + m_Center: {x: -0.0012377053, y: -0.019060574, z: -0.031160347} + m_Extent: {x: 0.030484851, y: 0.051344886, z: 0.035910763} + m_DirtyAABB: 0 --- !u!4 &850048949 stripped Transform: m_CorrespondingSourceObject: {fileID: 482130, guid: 126d619cf4daa52469682f85c1378b4a, type: 3} m_PrefabInstance: {fileID: 1811954864} m_PrefabAsset: {fileID: 0} +--- !u!1 &855315416 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 855315417} + - component: {fileID: 855315418} + m_Layer: 0 + m_Name: rctrl:side_trigger_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &855315417 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 855315416} + 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_Children: [] + m_Father: {fileID: 1530016825} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &855315418 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 855315416} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300014, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 2073944834} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2073944834} + m_AABB: + m_Center: {x: 0.015085926, y: 0.00079575554, z: 0.0022845895} + m_Extent: {x: 0.0075142607, y: 0.014562387, z: 0.0074783238} + m_DirtyAABB: 0 +--- !u!1 &856851804 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 856851805} + - component: {fileID: 856851806} + m_Layer: 0 + m_Name: lctrl:o_button_decal_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &856851805 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 856851804} + 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_Children: [] + m_Father: {fileID: 107155893} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &856851806 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 856851804} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1485590838} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1485590838} + m_AABB: + m_Center: {x: 0.000017451588, y: -0.00010048866, z: 0.0012767098} + m_Extent: {x: 0.00211959, y: 0.001628002, z: 0.000015275553} + m_DirtyAABB: 0 --- !u!1 &858538434 GameObject: m_ObjectHideFlags: 0 @@ -6932,6 +9664,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &870628887 GameObject: m_ObjectHideFlags: 0 @@ -7066,6 +9799,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0, g: 0, b: 0, a: 0} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -7122,7 +9856,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 100, y: -1900} + m_AnchoredPosition: {x: 100, y: -1850} m_SizeDelta: {x: 0, y: 50} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &871782947 @@ -7140,6 +9874,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -7165,13 +9900,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 40 m_fontSizeBase: 40 m_fontWeight: 400 @@ -7179,7 +9913,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 257 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -7189,10 +9925,8 @@ MonoBehaviour: m_enableWordWrapping: 1 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -7200,40 +9934,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 3.513392, y: 0, z: -946.4956, w: 0} - m_textInfo: - textComponent: {fileID: 871782947} - characterCount: 0 - spriteCount: 0 - spaceCount: 0 - wordCount: 0 - linkCount: 0 - lineCount: 0 - pageCount: 0 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &871782948 @@ -7296,6 +10008,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -7370,6 +10083,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -7429,7 +10143,7 @@ RectTransform: - {fileID: 240885095} - {fileID: 949458750} - {fileID: 585330016} - - {fileID: 726467103} + - {fileID: 1526064807} - {fileID: 1993578281} - {fileID: 871782946} m_Father: {fileID: 1213035640} @@ -7465,6 +10179,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!114 &883330326 MonoBehaviour: m_ObjectHideFlags: 0 @@ -7480,6 +10195,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.011764706, g: 0.101960786, b: 0.21960784, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -7526,8 +10242,10 @@ MonoBehaviour: show2DToggle: {fileID: 302656572} autoUpdateToggle: {fileID: 4342929} skyBoxButton: {fileID: 2120155536} + environmentButton: {fileID: 235481851} downloadStatusIndicator: {fileID: 397261751} skyboxHandler: {fileID: 49821816} + environmentHandler: {fileID: 316078880} versionText: {fileID: 871782947} tabsAutoOff: {fileID: 455930358} tabsAutoTop: {fileID: 103848543} @@ -7605,6 +10323,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -7630,13 +10349,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -7644,7 +10362,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -7654,10 +10374,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -7665,40 +10383,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 907338449} - characterCount: 9 - spriteCount: 0 - spaceCount: 1 - wordCount: 2 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &907338450 @@ -7709,6 +10405,90 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 907338447} m_CullTransparentMesh: 0 +--- !u!1 &907592178 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 907592179} + - component: {fileID: 907592180} + m_Layer: 0 + m_Name: lctrl:side_trigger_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &907592179 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 907592178} + 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_Children: [] + m_Father: {fileID: 462020185} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &907592180 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 907592178} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300018, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1218201754} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1218201754} + m_AABB: + m_Center: {x: -0.015075568, y: -0.000016345643, z: 0.0018507424} + m_Extent: {x: 0.0069265533, y: 0.014548335, z: 0.007307569} + m_DirtyAABB: 0 --- !u!1 &907885703 GameObject: m_ObjectHideFlags: 0 @@ -7761,6 +10541,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -7786,13 +10567,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 40 m_fontSizeBase: 40 m_fontWeight: 400 @@ -7800,7 +10580,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 257 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -7810,10 +10592,8 @@ MonoBehaviour: m_enableWordWrapping: 1 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -7821,40 +10601,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 3.513392, y: 0, z: -1298.6443, w: 0} - m_textInfo: - textComponent: {fileID: 907885705} - characterCount: 47 - spriteCount: 0 - spaceCount: 5 - wordCount: 6 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &907885706 @@ -7931,6 +10689,84 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1001 &983154924 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1844715059} + m_Modifications: + - target: {fileID: 100018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_Name + value: OculusTouchForQuest2RightModel + objectReference: {fileID: 0} + - target: {fileID: 100018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_RootOrder + value: 22 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9500000, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 62a9d09916ac8bf4ba30ba4803d3503a, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 25b5eb0761edb6346b0b3444af76b55e, type: 3} +--- !u!4 &983154925 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400018, guid: 25b5eb0761edb6346b0b3444af76b55e, + type: 3} + m_PrefabInstance: {fileID: 983154924} + m_PrefabAsset: {fileID: 0} +--- !u!1 &983154926 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 100018, guid: 25b5eb0761edb6346b0b3444af76b55e, + type: 3} + m_PrefabInstance: {fileID: 983154924} + m_PrefabAsset: {fileID: 0} --- !u!1 &985952871 GameObject: m_ObjectHideFlags: 0 @@ -8062,6 +10898,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -8136,6 +10973,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -8161,13 +10999,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -8175,7 +11012,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -8185,10 +11024,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -8196,40 +11033,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1004538041} - characterCount: 5 - spriteCount: 0 - spaceCount: 2 - wordCount: 3 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1004538042 @@ -8251,6 +11066,10 @@ PrefabInstance: propertyPath: m_Name value: OVRHandPrefab objectReference: {fileID: 0} + - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} propertyPath: m_LocalPosition.x value: 0 @@ -8263,6 +11082,10 @@ PrefabInstance: propertyPath: m_LocalPosition.z value: 0 objectReference: {fileID: 0} + - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} propertyPath: m_LocalRotation.x value: 0 @@ -8275,14 +11098,6 @@ PrefabInstance: propertyPath: m_LocalRotation.z value: 0 objectReference: {fileID: 0} - - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} - propertyPath: m_RootOrder - value: 2 - objectReference: {fileID: 0} - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} propertyPath: m_LocalEulerAnglesHint.x value: 0 @@ -8379,6 +11194,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -8404,13 +11220,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -8418,7 +11233,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -8428,10 +11245,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -8439,40 +11254,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1026875227} - characterCount: 11 - spriteCount: 0 - spaceCount: 1 - wordCount: 2 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1026875228 @@ -8483,6 +11276,142 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1026875225} m_CullTransparentMesh: 0 +--- !u!1 &1043425434 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1043425435} + - component: {fileID: 1043425436} + m_Layer: 0 + m_Name: OculusTouchForRiftRightModel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1043425435 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1043425434} + 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_Children: + - {fileID: 1530016825} + - {fileID: 218985652} + m_Father: {fileID: 1257996012} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &1043425436 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1043425434} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Controller: {fileID: 0} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 +--- !u!1 &1045218781 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1045218782} + - component: {fileID: 1045218783} + m_Layer: 0 + m_Name: lctrl:y_button_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1045218782 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1045218781} + 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_Children: [] + m_Father: {fileID: 107155893} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1045218783 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1045218781} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300006, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 2003819885} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2003819885} + m_AABB: + m_Center: {x: 0.0000023958273, y: -0.000002474524, z: 0.0004961197} + m_Extent: {x: 0.005060065, y: 0.0050237104, z: 0.0025072566} + m_DirtyAABB: 0 --- !u!1 &1045416981 GameObject: m_ObjectHideFlags: 0 @@ -8570,6 +11499,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -8597,13 +11527,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -8611,7 +11540,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -8621,10 +11552,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -8632,40 +11561,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1051081552} - characterCount: 6 - spriteCount: 0 - spaceCount: 1 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1051081553 @@ -8676,6 +11583,12 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1051081550} m_CullTransparentMesh: 0 +--- !u!4 &1079679056 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4965781047894976, guid: 411c0b99f954d1d4884fa0d6256933cf, + type: 3} + m_PrefabInstance: {fileID: 2047659140} + m_PrefabAsset: {fileID: 0} --- !u!1 &1084913389 GameObject: m_ObjectHideFlags: 0 @@ -8728,6 +11641,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -8783,6 +11697,7 @@ LineRenderer: m_LightProbeUsage: 0 m_ReflectionProbeUsage: 0 m_RayTracingMode: 0 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: @@ -9001,6 +11916,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &1092056643 BoxCollider: m_ObjectHideFlags: 0 @@ -9028,6 +11944,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -9114,6 +12031,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -9202,6 +12120,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!114 &1106898773 MonoBehaviour: m_ObjectHideFlags: 0 @@ -9216,6 +12135,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -9246,6 +12166,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 883330328} + m_TargetAssemblyTypeName: m_MethodName: DeleteExcludedApksFile m_Mode: 1 m_Arguments: @@ -9271,6 +12192,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -9358,6 +12280,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -9383,13 +12306,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -9397,7 +12319,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -9407,10 +12331,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -9418,40 +12340,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1107460993} - characterCount: 3 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1107460994 @@ -9599,6 +12499,7 @@ MonoBehaviour: m_FallbackScreenDPI: 96 m_DefaultSpriteDPI: 96 m_DynamicPixelsPerUnit: 100 + m_PresetInfoIsWorld: 1 --- !u!223 &1113839882 Canvas: m_ObjectHideFlags: 0 @@ -9672,6 +12573,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.25490198, g: 0.44313726, b: 0.6901961, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -9692,8 +12594,72 @@ CanvasRenderer: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1119529390} - m_CullTransparentMesh: 0 + m_GameObject: {fileID: 1119529390} + m_CullTransparentMesh: 0 +--- !u!1 &1127998901 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1127998902} + - component: {fileID: 1127998903} + m_Layer: 5 + m_Name: Environment_Settings + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1127998902 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1127998901} + 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_Children: + - {fileID: 1735982324} + - {fileID: 235481852} + m_Father: {fileID: 1526064807} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 2000, y: -75} + m_SizeDelta: {x: 1400, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1127998903 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1127998901} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 20 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &1133097217 GameObject: m_ObjectHideFlags: 0 @@ -9774,6 +12740,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &1148345054 GameObject: m_ObjectHideFlags: 0 @@ -9827,6 +12794,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -9860,6 +12828,10 @@ PrefabInstance: propertyPath: m_Name value: OVRHandPrefab objectReference: {fileID: 0} + - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} propertyPath: m_LocalPosition.x value: 0 @@ -9872,6 +12844,10 @@ PrefabInstance: propertyPath: m_LocalPosition.z value: 0 objectReference: {fileID: 0} + - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} propertyPath: m_LocalRotation.x value: -0 @@ -9884,14 +12860,6 @@ PrefabInstance: propertyPath: m_LocalRotation.z value: -0 objectReference: {fileID: 0} - - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} - propertyPath: m_RootOrder - value: 2 - objectReference: {fileID: 0} - target: {fileID: 4453513310108136, guid: 835e735ca71bf78459fb2cababd74112, type: 3} propertyPath: m_LocalEulerAnglesHint.x value: 0 @@ -9931,13 +12899,13 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 114567484643301796, guid: 835e735ca71bf78459fb2cababd74112, type: 3} - propertyPath: _enablePhysicsCapsules - value: 0 + propertyPath: _skeletonType + value: 1 objectReference: {fileID: 0} - target: {fileID: 114567484643301796, guid: 835e735ca71bf78459fb2cababd74112, type: 3} - propertyPath: _skeletonType - value: 1 + propertyPath: _enablePhysicsCapsules + value: 0 objectReference: {fileID: 0} - target: {fileID: 114925265787909616, guid: 835e735ca71bf78459fb2cababd74112, type: 3} @@ -10010,6 +12978,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -10059,6 +13028,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -10146,6 +13116,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &1158989062 BoxCollider: m_ObjectHideFlags: 0 @@ -10173,6 +13144,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -10259,6 +13231,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -10308,6 +13281,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -10382,6 +13356,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -10407,13 +13382,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -10421,7 +13395,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -10431,10 +13407,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -10442,40 +13416,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1170891612} - characterCount: 4 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1170891613 @@ -10538,6 +13490,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -10613,6 +13566,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -10651,7 +13605,6 @@ GameObject: m_Component: - component: {fileID: 1198656412} - component: {fileID: 1198656414} - - component: {fileID: 1198656413} m_Layer: 5 m_Name: TMP SubMeshUI [LiberationSans SDF Material + LiberationSans SDF Atlas] m_TagString: Untagged @@ -10678,34 +13631,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1198656413 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1198656411} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 058cba836c1846c3aa1c5fd2e28aea77, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_fontAsset: {fileID: 11400000, guid: 2e498d1c8094910479dc3e1b768306a4, type: 2} - m_spriteAsset: {fileID: 0} - m_material: {fileID: 0} - m_sharedMaterial: {fileID: 0} - m_isDefaultMaterial: 0 - m_padding: 1.25 - m_canvasRenderer: {fileID: 1198656414} - m_TextComponent: {fileID: 1300410670} - m_materialReferenceIndex: 1 --- !u!222 &1198656414 CanvasRenderer: m_ObjectHideFlags: 0 @@ -10767,6 +13692,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -10820,6 +13746,7 @@ RectTransform: - {fileID: 397261754} - {fileID: 883330324} - {fileID: 691642881} + - {fileID: 132513680} m_Father: {fileID: 1113839879} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -10881,6 +13808,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -10930,6 +13858,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -10952,37 +13881,7 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1215736345} m_CullTransparentMesh: 0 ---- !u!1 &1225119220 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1225119221} - m_Layer: 0 - m_Name: Camera - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1225119221 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1225119220} - m_LocalRotation: {x: -0.030843573, y: -0.7064338, z: 0.030843573, w: 0.7064338} - m_LocalPosition: {x: 0, y: 0.75, z: 4} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 407379522} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: -90.00001, z: 5} ---- !u!1 &1226067459 +--- !u!1 &1218201753 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -10990,77 +13889,28 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1226067460} - - component: {fileID: 1226067462} - - component: {fileID: 1226067461} + - component: {fileID: 1218201754} m_Layer: 0 - m_Name: Mesh + m_Name: lctrl:b_hold m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &1226067460 +--- !u!4 &1218201754 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1226067459} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 1218201753} + m_LocalRotation: {x: -0.18065539, y: -0.13555649, z: -0.067166515, w: 0.97184193} + m_LocalPosition: {x: 0.013074442, y: -0.025639696, z: -0.027427113} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 407379522} - m_RootOrder: 2 + m_Father: {fileID: 1539841352} + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!23 &1226067461 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1226067459} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 0 - m_ReflectionProbeUsage: 0 - m_RayTracingMode: 2 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 4b64c74a165ab944995c86640c16457e, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!33 &1226067462 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1226067459} - m_Mesh: {fileID: 4300000, guid: 2f2ef4c81a28b3d49a5b57f888743989, type: 3} --- !u!1 &1239530774 GameObject: m_ObjectHideFlags: 0 @@ -11113,6 +13963,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -11138,13 +13989,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: 0 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 36 m_fontSizeBase: 36 m_fontWeight: 400 @@ -11152,6 +14002,8 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 m_textAlignment: 514 m_characterSpacing: 0 m_wordSpacing: 0 @@ -11162,10 +14014,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -11173,40 +14023,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1239530776} - characterCount: 2 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1239530777 @@ -11215,8 +14043,212 @@ CanvasRenderer: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1239530774} + m_GameObject: {fileID: 1239530774} + m_CullTransparentMesh: 0 +--- !u!1 &1248823743 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1248823744} + - component: {fileID: 1248823749} + - component: {fileID: 1248823748} + - component: {fileID: 1248823747} + - component: {fileID: 1248823746} + - component: {fileID: 1248823745} + m_Layer: 5 + m_Name: Button_Cancel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1248823744 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1248823743} + 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_Children: + - {fileID: 180632320} + m_Father: {fileID: 316078878} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 500, y: -569.1666} + m_SizeDelta: {x: 980, y: 45} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1248823745 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1248823743} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 10 + m_Right: 10 + m_Top: 10 + m_Bottom: 10 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!65 &1248823746 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1248823743} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 980, y: 45, z: 0.07} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1248823747 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1248823743} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 0.25490198, g: 0.44313726, b: 0.6901961, a: 1} + m_HighlightedColor: {r: 0.38875046, g: 0.66205376, b: 0.8584906, a: 1} + m_PressedColor: {r: 0.22352941, g: 0.5568628, b: 0.8392157, a: 1} + m_SelectedColor: {r: 0.29307583, g: 0.58710396, b: 0.8396226, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1248823748} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 316078880} + m_TargetAssemblyTypeName: QuestAppLauncher.EnvironmentHandler, Assembly-CSharp + m_MethodName: OnCancel + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1248823748 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1248823743} + 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: 1, g: 1, b: 1, 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: 10905, 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 &1248823749 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1248823743} m_CullTransparentMesh: 0 +--- !u!1 &1250617901 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1250617902} + m_Layer: 0 + m_Name: lctrl:b_stick_IGNORE + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1250617902 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1250617901} + m_LocalRotation: {x: 0, y: -0.70108956, z: -0, w: 0.71307325} + m_LocalPosition: {x: -0.019321036, y: 0, z: 9.992007e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2063139097} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1251844110 GameObject: m_ObjectHideFlags: 0 @@ -11269,6 +14301,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -11291,6 +14324,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1251844110} m_CullTransparentMesh: 0 +--- !u!1 &1257996011 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1257996012} + m_Layer: 0 + m_Name: ControllerModels + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1257996012 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1257996011} + 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_Children: + - {fileID: 379472521} + - {fileID: 1533612654} + - {fileID: 2027819627} + - {fileID: 797117063} + - {fileID: 1043425435} + - {fileID: 1370218263} + - {fileID: 290656238} + m_Father: {fileID: 782950777} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1272568044 GameObject: m_ObjectHideFlags: 0 @@ -11343,6 +14413,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -11368,13 +14439,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -11382,7 +14452,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -11392,10 +14464,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -11403,40 +14473,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1272568046} - characterCount: 11 - spriteCount: 0 - spaceCount: 1 - wordCount: 2 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1272568047 @@ -11447,6 +14495,90 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1272568044} m_CullTransparentMesh: 0 +--- !u!1 &1274632254 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1274632255} + - component: {fileID: 1274632256} + m_Layer: 0 + m_Name: lctrl:main_trigger_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1274632255 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1274632254} + 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_Children: [] + m_Father: {fileID: 107155893} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1274632256 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1274632254} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300012, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 2036159891} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2036159891} + m_AABB: + m_Center: {x: -0.0006609438, y: 0.0013324535, z: -0.013972079} + m_Extent: {x: 0.0145619055, y: 0.009363498, z: 0.0133649465} + m_DirtyAABB: 0 --- !u!1 &1276924362 GameObject: m_ObjectHideFlags: 0 @@ -11483,6 +14615,90 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1298318733 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1298318734} + - component: {fileID: 1298318735} + m_Layer: 0 + m_Name: rctrl:main_trigger_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1298318734 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1298318733} + 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_Children: [] + m_Father: {fileID: 1530016825} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1298318735 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1298318733} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300008, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 2070872556} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2070872556} + m_AABB: + m_Center: {x: -0.0006609438, y: -0.0013324562, z: -0.013972085} + m_Extent: {x: 0.014561905, y: 0.009363498, z: 0.013364948} + m_DirtyAABB: 0 --- !u!1 &1300364092 GameObject: m_ObjectHideFlags: 0 @@ -11516,6 +14732,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -11610,6 +14827,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -11635,13 +14853,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -11649,7 +14866,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 514 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -11659,10 +14878,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -11670,40 +14887,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1300410670} - characterCount: 1 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 1198656413} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1300410671 @@ -11790,6 +14985,7 @@ Light: 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 &1307261495 @@ -11804,7 +15000,7 @@ Transform: m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 0 + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} --- !u!1 &1309964874 GameObject: @@ -11858,6 +15054,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -11885,13 +15082,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -11899,7 +15095,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -11909,10 +15107,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -11920,40 +15116,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1309964876} - characterCount: 6 - spriteCount: 0 - spaceCount: 1 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1309964877 @@ -11962,8 +15136,176 @@ CanvasRenderer: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1309964874} - m_CullTransparentMesh: 0 + m_GameObject: {fileID: 1309964874} + m_CullTransparentMesh: 0 +--- !u!1 &1333469949 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1333469950} + - component: {fileID: 1333469951} + m_Layer: 0 + m_Name: lctrl:controller_body_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1333469950 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1333469949} + 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_Children: [] + m_Father: {fileID: 462020185} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1333469951 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1333469949} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300010, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1539841352} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1539841352} + m_AABB: + m_Center: {x: 0.0012377053, y: -0.01906057, z: -0.031179678} + m_Extent: {x: 0.030484851, y: 0.051344883, z: 0.03589144} + m_DirtyAABB: 0 +--- !u!1 &1343475343 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1343475344} + - component: {fileID: 1343475345} + m_Layer: 0 + m_Name: lctrl:o_button_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1343475344 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1343475343} + 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_Children: [] + m_Father: {fileID: 107155893} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1343475345 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1343475343} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300014, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1485590838} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1485590838} + m_AABB: + m_Center: {x: 0.00000037020072, y: 0.00000087032095, z: 0.00057196105} + m_Extent: {x: 0.004508083, y: 0.004509521, z: 0.0007474739} + m_DirtyAABB: 0 --- !u!1 &1349177899 GameObject: m_ObjectHideFlags: 0 @@ -12029,6 +15371,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &1349177902 BoxCollider: m_ObjectHideFlags: 0 @@ -12056,6 +15399,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -12141,6 +15485,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -12229,6 +15574,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &1350515686 BoxCollider: m_ObjectHideFlags: 0 @@ -12256,6 +15602,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -12286,6 +15633,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 519013809} + m_TargetAssemblyTypeName: m_MethodName: OnCancel m_Mode: 1 m_Arguments: @@ -12311,6 +15659,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -12385,6 +15734,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -12459,6 +15809,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0, g: 0.68235296, b: 0.9372549, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -12481,6 +15832,83 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1360386789} m_CullTransparentMesh: 0 +--- !u!1001 &1370218262 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1257996012} + m_Modifications: + - target: {fileID: 100016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_Name + value: OculusTouchForQuest2LeftModel + objectReference: {fileID: 0} + - target: {fileID: 100016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_RootOrder + value: 21 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9500000, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: 4a8e946ed663e4a4db0f537e2965635d, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 8b83018900d13bb4f8e0ad895cb004e5, type: 3} +--- !u!4 &1370218263 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400016, guid: 8b83018900d13bb4f8e0ad895cb004e5, + type: 3} + m_PrefabInstance: {fileID: 1370218262} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1370218264 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 100016, guid: 8b83018900d13bb4f8e0ad895cb004e5, + type: 3} + m_PrefabInstance: {fileID: 1370218262} + m_PrefabAsset: {fileID: 0} --- !u!1 &1377309005 GameObject: m_ObjectHideFlags: 0 @@ -12533,6 +15961,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -12565,7 +15994,6 @@ GameObject: m_Component: - component: {fileID: 1392557315} - component: {fileID: 1392557317} - - component: {fileID: 1392557316} m_Layer: 5 m_Name: TMP SubMeshUI [LiberationSans SDF Material + LiberationSans SDF Atlas] m_TagString: Untagged @@ -12592,34 +16020,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1392557316 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1392557314} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 058cba836c1846c3aa1c5fd2e28aea77, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_fontAsset: {fileID: 11400000, guid: 2e498d1c8094910479dc3e1b768306a4, type: 2} - m_spriteAsset: {fileID: 0} - m_material: {fileID: 0} - m_sharedMaterial: {fileID: 0} - m_isDefaultMaterial: 0 - m_padding: 1.25 - m_canvasRenderer: {fileID: 1392557317} - m_TextComponent: {fileID: 1802709559} - m_materialReferenceIndex: 1 --- !u!222 &1392557317 CanvasRenderer: m_ObjectHideFlags: 0 @@ -12695,6 +16095,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -12732,6 +16133,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 883330328} + m_TargetAssemblyTypeName: QuestAppLauncher.SettingsHandler, Assembly-CSharp m_MethodName: UpdateGridRowText m_Mode: 1 m_Arguments: @@ -12794,6 +16196,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -12819,13 +16222,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -12833,7 +16235,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -12843,10 +16247,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -12854,40 +16256,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1402303216} - characterCount: 3 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1402303217 @@ -12896,8 +16276,161 @@ CanvasRenderer: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1402303214} - m_CullTransparentMesh: 0 + m_GameObject: {fileID: 1402303214} + m_CullTransparentMesh: 0 +--- !u!1 &1437575592 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1437575593} + - component: {fileID: 1437575594} + m_Layer: 0 + m_Name: OculusTouchForRiftRightModel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1437575593 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1437575592} + 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_Children: + - {fileID: 489477568} + - {fileID: 1795596850} + m_Father: {fileID: 1844715059} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &1437575594 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1437575592} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Controller: {fileID: 0} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 +--- !u!1 &1440394581 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1440394582} + - component: {fileID: 1440394585} + - component: {fileID: 1440394584} + - component: {fileID: 1440394583} + m_Layer: 0 + m_Name: OculusTouchForQuestAndRiftSRightModel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1440394582 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1440394581} + 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_Children: [] + m_Father: {fileID: 1844715059} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &1440394583 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1440394581} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_Controller: {fileID: 0} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 +--- !u!23 &1440394584 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1440394581} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &1440394585 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1440394581} + m_Mesh: {fileID: 4300000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} --- !u!1 &1447605802 GameObject: m_ObjectHideFlags: 0 @@ -12950,6 +16483,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -12972,6 +16506,91 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1447605802} m_CullTransparentMesh: 0 +--- !u!1 &1454950766 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1454950767} + - component: {fileID: 1454950768} + m_Layer: 0 + m_Name: lctrl:thumbstick_ball_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1454950767 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1454950766} + 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_Children: [] + m_Father: {fileID: 462020185} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1454950768 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1454950766} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300016, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1539841352} + - {fileID: 608672829} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1539841352} + m_AABB: + m_Center: {x: 0.010604477, y: 0.0049807085, z: 0.0022465447} + m_Extent: {x: 0.010754766, y: 0.010751986, z: 0.007853852} + m_DirtyAABB: 0 --- !u!1 &1456625393 GameObject: m_ObjectHideFlags: 0 @@ -13025,6 +16644,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -13050,13 +16670,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -13064,7 +16683,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 514 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -13074,10 +16695,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -13085,40 +16704,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1456625395} - characterCount: 1 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 276135899} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1456625396 @@ -13129,12 +16726,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1456625393} m_CullTransparentMesh: 0 ---- !u!4 &1457050908 stripped -Transform: - m_CorrespondingSourceObject: {fileID: 4965781047894976, guid: 411c0b99f954d1d4884fa0d6256933cf, - type: 3} - m_PrefabInstance: {fileID: 2047659140} - m_PrefabAsset: {fileID: 0} --- !u!1 &1462980085 GameObject: m_ObjectHideFlags: 0 @@ -13200,6 +16791,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &1462980088 BoxCollider: m_ObjectHideFlags: 0 @@ -13227,6 +16819,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -13312,6 +16905,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -13337,13 +16931,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -13351,7 +16944,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -13361,10 +16956,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -13372,40 +16965,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1471555293} - characterCount: 4 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1471555294 @@ -13481,6 +17052,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &1480305971 BoxCollider: m_ObjectHideFlags: 0 @@ -13508,6 +17080,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -13541,6 +17114,181 @@ MonoBehaviour: m_PersistentCalls: m_Calls: [] m_IsOn: 0 +--- !u!1 &1485590837 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1485590838} + m_Layer: 0 + m_Name: lctrl:b_button03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1485590838 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1485590837} + m_LocalRotation: {x: 0.05660452, y: -0.05795374, z: -0.0046757394, w: 0.9967023} + m_LocalPosition: {x: 0.012083728, y: -0.01402681, z: -0.0007126567} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2067178101} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1489491086 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1489491087} + - component: {fileID: 1489491088} + m_Layer: 0 + m_Name: rctrl:controller_body_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1489491087 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1489491086} + 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_Children: [] + m_Father: {fileID: 489477568} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1489491088 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1489491086} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300006, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 1795596850} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1795596850} + m_AABB: + m_Center: {x: -0.0012377053, y: -0.019060574, z: -0.031160347} + m_Extent: {x: 0.030484851, y: 0.051344886, z: 0.035910763} + m_DirtyAABB: 0 +--- !u!1 &1503651959 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1503651960} + m_Layer: 0 + m_Name: rctrl:b_stick + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1503651960 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1503651959} + m_LocalRotation: {x: -0.003149668, y: 0.7098123, z: 0.002783398, w: 0.7043784} + m_LocalPosition: {x: -0.010637393, y: 0.00497835, z: -0.009418557} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 471337471} + m_Father: {fileID: 218985652} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1505149565 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1505149566} + m_Layer: 0 + m_Name: lctrl:b_trigger + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1505149566 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1505149565} + m_LocalRotation: {x: -0.05795374, y: -0.05660452, z: 0.9967023, w: 0.0046757394} + m_LocalPosition: {x: -0.001420367, y: 0.021865888, z: -0.005495974} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1539841352} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1507746427 GameObject: m_ObjectHideFlags: 0 @@ -13583,7 +17331,6 @@ GameObject: m_Component: - component: {fileID: 1508111133} - component: {fileID: 1508111135} - - component: {fileID: 1508111134} m_Layer: 5 m_Name: TMP SubMeshUI [LiberationSans SDF Material + LiberationSans SDF Atlas] m_TagString: Untagged @@ -13610,34 +17357,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1508111134 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1508111132} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 058cba836c1846c3aa1c5fd2e28aea77, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_fontAsset: {fileID: 11400000, guid: 2e498d1c8094910479dc3e1b768306a4, type: 2} - m_spriteAsset: {fileID: 0} - m_material: {fileID: 0} - m_sharedMaterial: {fileID: 0} - m_isDefaultMaterial: 0 - m_padding: 1.25 - m_canvasRenderer: {fileID: 1508111135} - m_TextComponent: {fileID: 2071262473} - m_materialReferenceIndex: 1 --- !u!222 &1508111135 CanvasRenderer: m_ObjectHideFlags: 0 @@ -13712,6 +17431,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &1508987253 BoxCollider: m_ObjectHideFlags: 0 @@ -13739,6 +17459,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -13769,6 +17490,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 519013809} + m_TargetAssemblyTypeName: m_MethodName: OnOk m_Mode: 1 m_Arguments: @@ -13794,6 +17516,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -13816,7 +17539,7 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1508987250} m_CullTransparentMesh: 0 ---- !u!1 &1524814165 +--- !u!1 &1512650146 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -13824,90 +17547,334 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1524814166} - - component: {fileID: 1524814167} + - component: {fileID: 1512650147} + - component: {fileID: 1512650148} m_Layer: 0 - m_Name: Directional Light + m_Name: rctrl:o_button_decal_PLY m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &1524814166 +--- !u!4 &1512650147 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1524814165} - m_LocalRotation: {x: 0.46193978, y: 0.33141357, z: -0.19134171, w: 0.8001032} - m_LocalPosition: {x: 2, y: 2, z: 4} + m_GameObject: {fileID: 1512650146} + 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_Children: [] - m_Father: {fileID: 1644749161} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 60, y: 45, z: 0} ---- !u!108 &1524814167 -Light: + m_Father: {fileID: 1530016825} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1512650148 +SkinnedMeshRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1524814165} + m_GameObject: {fileID: 1512650146} m_Enabled: 1 - serializedVersion: 10 - m_Type: 1 - m_Shape: 0 - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_Intensity: 1 - m_Range: 10 - m_SpotAngle: 30 - m_InnerSpotAngle: 21.80208 - m_CookieSize: 10 - m_Shadows: - m_Type: 0 - 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_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 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_ShadowRadius: 0 - m_ShadowAngle: 0 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 1643371061} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1643371061} + m_AABB: + m_Center: {x: 0.00004066783, y: 0.00002745376, z: 0.0012303367} + m_Extent: {x: 0.0015236214, y: 0.0021297487, z: 0.00001941109} + m_DirtyAABB: 0 +--- !u!1 &1520957269 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1520957270} + m_Layer: 0 + m_Name: lctrl:b_hold + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1520957270 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1520957269} + m_LocalRotation: {x: -0.18065539, y: -0.13555649, z: -0.067166515, w: 0.97184193} + m_LocalPosition: {x: 0.013074442, y: -0.025639696, z: -0.027427113} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2067178101} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1526064806 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1526064807} + - component: {fileID: 1526064808} + m_Layer: 5 + m_Name: Background_Environment + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1526064807 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1526064806} + 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_Children: + - {fileID: 726467103} + - {fileID: 1127998902} + m_Father: {fileID: 883330324} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 1100, y: -1375} + m_SizeDelta: {x: 2000, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1526064808 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1526064806} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1530016824 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1530016825} + m_Layer: 0 + m_Name: rctrl:geometry_null + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1530016825 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1530016824} + m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 789610625} + - {fileID: 25428594} + - {fileID: 849771377} + - {fileID: 1298318734} + - {fileID: 1512650147} + - {fileID: 156050148} + - {fileID: 638043234} + - {fileID: 855315417} + - {fileID: 1650269586} + - {fileID: 409627579} + m_Father: {fileID: 1043425435} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1533612653 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1533612654} + - component: {fileID: 1533612655} + m_Layer: 0 + m_Name: OculusTouchForRiftLeftModel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1533612654 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1533612653} + 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_Children: + - {fileID: 107155893} + - {fileID: 2067178101} + m_Father: {fileID: 1257996012} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &1533612655 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1533612653} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Controller: {fileID: 0} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 +--- !u!1 &1539841351 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1539841352} + m_Layer: 0 + m_Name: lctrl:left_touch_controller_world + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1539841352 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1539841351} + m_LocalRotation: {x: 0, y: 0.7071068, z: 0.7071068, w: -8.659561e-17} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1676017190} + - {fileID: 218939788} + - {fileID: 1935409511} + - {fileID: 1218201754} + - {fileID: 608672829} + - {fileID: 1505149566} + m_Father: {fileID: 127731052} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1550536038 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1550536039} + m_Layer: 0 + m_Name: lctrl:b_button01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1550536039 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1550536038} + m_LocalRotation: {x: 0.05660452, y: -0.05795374, z: -0.0046757394, w: 0.9967023} + m_LocalPosition: {x: -0.0019170768, y: -0.0073837424, z: -0.00091214647} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2067178101} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1550751410 GameObject: m_ObjectHideFlags: 0 @@ -13974,6 +17941,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &1550751413 BoxCollider: m_ObjectHideFlags: 0 @@ -14001,6 +17969,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -14045,6 +18014,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -14067,6 +18037,174 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1550751410} m_CullTransparentMesh: 0 +--- !u!1 &1557847379 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1557847380} + - component: {fileID: 1557847381} + m_Layer: 0 + m_Name: lctrl:x_button_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1557847380 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1557847379} + 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_Children: [] + m_Father: {fileID: 462020185} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1557847381 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1557847379} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300004, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1676017190} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1676017190} + m_AABB: + m_Center: {x: -0.00000072829425, y: 0.000013418496, z: 0.0004995642} + m_Extent: {x: 0.0050891023, y: 0.005111114, z: 0.0025754946} + m_DirtyAABB: 0 +--- !u!1 &1566937401 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1566937402} + - component: {fileID: 1566937403} + m_Layer: 0 + m_Name: lctrl:o_button_decal_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1566937402 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1566937401} + 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_Children: [] + m_Father: {fileID: 462020185} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1566937403 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1566937401} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300000, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1935409511} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1935409511} + m_AABB: + m_Center: {x: 0.000017451588, y: -0.00010048866, z: 0.0012767098} + m_Extent: {x: 0.00211959, y: 0.001628002, z: 0.000015275553} + m_DirtyAABB: 0 --- !u!1 &1569708395 GameObject: m_ObjectHideFlags: 0 @@ -14104,6 +18242,120 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 150} m_SizeDelta: {x: 0, y: 150} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1579017867 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1579017868} + - component: {fileID: 1579017869} + m_Layer: 0 + m_Name: lctrl:x_button_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1579017868 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1579017867} + 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_Children: [] + m_Father: {fileID: 107155893} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1579017869 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1579017867} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300004, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1550536039} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1550536039} + m_AABB: + m_Center: {x: -0.00000072829425, y: 0.000013418496, z: 0.0004995642} + m_Extent: {x: 0.0050891023, y: 0.005111114, z: 0.0025754946} + m_DirtyAABB: 0 +--- !u!1 &1582271510 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1582271511} + m_Layer: 0 + m_Name: CustomEnvironment + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1582271511 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1582271510} + 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_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1582988659 GameObject: m_ObjectHideFlags: 0 @@ -14170,6 +18422,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &1582988662 BoxCollider: m_ObjectHideFlags: 0 @@ -14197,6 +18450,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -14227,6 +18481,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 883330328} + m_TargetAssemblyTypeName: m_MethodName: DeleteRenameFiles m_Mode: 1 m_Arguments: @@ -14252,6 +18507,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -14408,6 +18664,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0, g: 0, b: 0, a: 0} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -14493,6 +18750,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &1604053987 GameObject: m_ObjectHideFlags: 0 @@ -14528,6 +18786,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -14572,6 +18831,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -14611,6 +18871,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &1604053991 BoxCollider: m_ObjectHideFlags: 0 @@ -14741,6 +19002,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0, g: 0, b: 0, a: 0} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -14808,6 +19070,36 @@ MonoBehaviour: m_EditorClassIdentifier: content: {fileID: 858538435} trackingSpace: {fileID: 1811954865} +--- !u!1 &1613633146 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1613633147} + m_Layer: 0 + m_Name: rctrl:b_button02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1613633147 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1613633146} + m_LocalRotation: {x: 0.07876507, y: 0.01894126, z: 0.5343878, w: 0.8413483} + m_LocalPosition: {x: 0.009152712, y: 0.0054823146, z: 0.000030916483} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 218985652} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1623456991 GameObject: m_ObjectHideFlags: 0 @@ -14874,6 +19166,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -14904,6 +19197,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 686608802} + m_TargetAssemblyTypeName: m_MethodName: CloseRenamePanel m_Mode: 1 m_Arguments: @@ -14929,6 +19223,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.22116412, g: 0.3850043, b: 0.6698113, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -15003,6 +19298,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -15023,8 +19319,38 @@ CanvasRenderer: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1629901999} - m_CullTransparentMesh: 0 + m_GameObject: {fileID: 1629901999} + m_CullTransparentMesh: 0 +--- !u!1 &1643371060 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1643371061} + m_Layer: 0 + m_Name: rctrl:b_button03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1643371061 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643371060} + m_LocalRotation: {x: 0.07876507, y: 0.01894126, z: 0.5343878, w: 0.8413483} + m_LocalPosition: {x: -0.012083728, y: -0.01402681, z: -0.0007126567} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 218985652} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1644097589 GameObject: m_ObjectHideFlags: 0 @@ -15077,6 +19403,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -15102,13 +19429,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -15116,7 +19442,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -15126,10 +19454,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -15137,40 +19463,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1644097591} - characterCount: 11 - spriteCount: 0 - spaceCount: 1 - wordCount: 2 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1644097592 @@ -15181,7 +19485,7 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1644097589} m_CullTransparentMesh: 0 ---- !u!1 &1644749160 +--- !u!1 &1650269585 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -15189,31 +19493,82 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1644749161} + - component: {fileID: 1650269586} + - component: {fileID: 1650269587} m_Layer: 0 - m_Name: OculusGoController + m_Name: rctrl:surface_PLY m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &1644749161 +--- !u!4 &1650269586 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1644749160} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 1650269585} + 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_Children: - - {fileID: 696687902} - - {fileID: 1524814166} - - {fileID: 1803191904} - m_Father: {fileID: 1457050908} - m_RootOrder: 0 + m_Children: [] + m_Father: {fileID: 1530016825} + m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1650269587 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1650269585} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300002, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 218985652} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 218985652} + m_AABB: + m_Center: {x: -0.00016466714, y: 0.00024955347, z: -0.0010734657} + m_Extent: {x: 0.02819586, y: 0.02827545, z: 0.0059699244} + m_DirtyAABB: 0 --- !u!1 &1659874981 GameObject: m_ObjectHideFlags: 0 @@ -15278,6 +19633,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &1665855483 GameObject: m_ObjectHideFlags: 0 @@ -15288,7 +19644,6 @@ GameObject: m_Component: - component: {fileID: 1665855484} - component: {fileID: 1665855486} - - component: {fileID: 1665855485} m_Layer: 5 m_Name: TMP SubMeshUI [LiberationSans SDF Material + LiberationSans SDF Atlas] m_TagString: Untagged @@ -15315,42 +19670,44 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1665855485 -MonoBehaviour: +--- !u!222 &1665855486 +CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1665855483} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 058cba836c1846c3aa1c5fd2e28aea77, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_fontAsset: {fileID: 11400000, guid: 2e498d1c8094910479dc3e1b768306a4, type: 2} - m_spriteAsset: {fileID: 0} - m_material: {fileID: 0} - m_sharedMaterial: {fileID: 0} - m_isDefaultMaterial: 0 - m_padding: 1.25 - m_canvasRenderer: {fileID: 1665855486} - m_TextComponent: {fileID: 314582734} - m_materialReferenceIndex: 1 ---- !u!222 &1665855486 -CanvasRenderer: + m_CullTransparentMesh: 0 +--- !u!1 &1676017189 +GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1665855483} - m_CullTransparentMesh: 0 + serializedVersion: 6 + m_Component: + - component: {fileID: 1676017190} + m_Layer: 0 + m_Name: lctrl:b_button01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1676017190 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676017189} + m_LocalRotation: {x: 0.05660452, y: -0.05795374, z: -0.0046757394, w: 0.9967023} + m_LocalPosition: {x: -0.0019170768, y: -0.0073837424, z: -0.00091214647} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1539841352} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1678268764 GameObject: m_ObjectHideFlags: 0 @@ -15404,6 +19761,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -15424,7 +19782,225 @@ CanvasRenderer: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1678268764} + m_GameObject: {fileID: 1678268764} + m_CullTransparentMesh: 0 +--- !u!1 &1699028848 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1699028849} + - component: {fileID: 1699028850} + m_Layer: 0 + m_Name: lctrl:o_button_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1699028849 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1699028848} + 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_Children: [] + m_Father: {fileID: 462020185} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1699028850 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1699028848} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300014, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1935409511} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1935409511} + m_AABB: + m_Center: {x: 0.00000037020072, y: 0.00000087032095, z: 0.00057196105} + m_Extent: {x: 0.004508083, y: 0.004509521, z: 0.0007474739} + m_DirtyAABB: 0 +--- !u!1 &1735982323 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1735982324} + - component: {fileID: 1735982326} + - component: {fileID: 1735982325} + m_Layer: 5 + m_Name: Environment_Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1735982324 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1735982323} + 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_Children: [] + m_Father: {fileID: 1127998902} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 257.5, y: -75} + m_SizeDelta: {x: 475, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1735982325 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1735982323} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, 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_text: Environment + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 86 + m_fontSizeBase: 86 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1735982326 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1735982323} m_CullTransparentMesh: 0 --- !u!1 &1748840623 GameObject: @@ -15478,6 +20054,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -15503,13 +20080,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -15517,7 +20093,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 514 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -15527,10 +20105,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -15538,40 +20114,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1748840625} - characterCount: 18 - spriteCount: 0 - spaceCount: 2 - wordCount: 3 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1748840626 @@ -15582,6 +20136,90 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1748840623} m_CullTransparentMesh: 0 +--- !u!1 &1754262287 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1754262288} + - component: {fileID: 1754262289} + m_Layer: 0 + m_Name: rctrl:side_trigger_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1754262288 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1754262287} + 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_Children: [] + m_Father: {fileID: 489477568} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1754262289 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1754262287} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300014, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 738811812} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 738811812} + m_AABB: + m_Center: {x: 0.015085926, y: 0.00079575554, z: 0.0022845895} + m_Extent: {x: 0.0075142607, y: 0.014562387, z: 0.0074783238} + m_DirtyAABB: 0 --- !u!1 &1759377394 GameObject: m_ObjectHideFlags: 0 @@ -15630,6 +20268,7 @@ LineRenderer: m_LightProbeUsage: 0 m_ReflectionProbeUsage: 0 m_RayTracingMode: 0 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: @@ -15766,8 +20405,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 275, y: -75} - m_SizeDelta: {x: 550, y: 150} + m_AnchoredPosition: {x: 237.5, y: -75} + m_SizeDelta: {x: 475, y: 150} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1764737582 MonoBehaviour: @@ -15784,6 +20423,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -15809,13 +20449,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -15823,7 +20462,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -15833,10 +20474,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -15844,40 +20483,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1764737582} - characterCount: 10 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1764737583 @@ -15941,6 +20558,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -15990,6 +20608,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -16064,6 +20683,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -16090,13 +20710,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 40 m_fontSizeBase: 40 m_fontWeight: 400 @@ -16104,7 +20723,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 257 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -16114,10 +20735,8 @@ MonoBehaviour: m_enableWordWrapping: 1 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -16125,40 +20744,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 3.513392, y: 0, z: -946.4956, w: 0} - m_textInfo: - textComponent: {fileID: 1779527566} - characterCount: 48 - spriteCount: 0 - spaceCount: 9 - wordCount: 10 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1779527567 @@ -16205,6 +20802,42 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: -20, y: -20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1795596849 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1795596850} + m_Layer: 0 + m_Name: rctrl:right_touch_controller_world + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1795596850 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1795596849} + m_LocalRotation: {x: 0, y: 0.7071068, z: 0.7071068, w: -8.659561e-17} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 413048518} + - {fileID: 6223931} + - {fileID: 399898303} + - {fileID: 738811812} + - {fileID: 754484175} + - {fileID: 5356384} + m_Father: {fileID: 1437575593} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1802350634 GameObject: m_ObjectHideFlags: 0 @@ -16258,6 +20891,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -16333,6 +20967,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -16358,13 +20993,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -16372,7 +21006,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 514 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -16382,10 +21018,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -16393,40 +21027,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 1802709559} - characterCount: 1 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 1392557316} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &1802709560 @@ -16437,7 +21049,7 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1802709557} m_CullTransparentMesh: 0 ---- !u!1 &1803191903 +--- !u!1 &1803442136 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -16445,49 +21057,49 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1803191904} - - component: {fileID: 1803191906} - - component: {fileID: 1803191905} + - component: {fileID: 1803442137} + - component: {fileID: 1803442138} m_Layer: 0 - m_Name: Mesh + m_Name: lctrl:thumbstick_ball_PLY m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &1803191904 +--- !u!4 &1803442137 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1803191903} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 1803442136} + 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_Children: [] - m_Father: {fileID: 1644749161} - m_RootOrder: 2 + m_Father: {fileID: 107155893} + m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!23 &1803191905 -MeshRenderer: +--- !u!137 &1803442138 +SkinnedMeshRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1803191903} + m_GameObject: {fileID: 1803442136} m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 + m_CastShadows: 1 + m_ReceiveShadows: 1 m_DynamicOccludee: 1 m_MotionVectors: 1 - m_LightProbeUsage: 0 - m_ReflectionProbeUsage: 0 - m_RayTracingMode: 2 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 2100000, guid: 4b64c74a165ab944995c86640c16457e, type: 2} + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -16499,7 +21111,7 @@ MeshRenderer: m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_StitchLightmapSeams: 1 + m_StitchLightmapSeams: 0 m_SelectedEditorRenderState: 3 m_MinimumChartSize: 4 m_AutoUVMaxDistance: 0.5 @@ -16508,14 +21120,20 @@ MeshRenderer: m_SortingLayerID: 0 m_SortingLayer: 0 m_SortingOrder: 0 ---- !u!33 &1803191906 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1803191903} - m_Mesh: {fileID: 4300000, guid: 2f2ef4c81a28b3d49a5b57f888743989, type: 3} + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300016, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 2067178101} + - {fileID: 2063139097} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2067178101} + m_AABB: + m_Center: {x: 0.010604477, y: 0.0049807085, z: 0.0022465447} + m_Extent: {x: 0.010754766, y: 0.010751986, z: 0.007853852} + m_DirtyAABB: 0 --- !u!1 &1804537873 GameObject: m_ObjectHideFlags: 0 @@ -16569,6 +21187,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -16618,6 +21237,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -16640,27 +21260,201 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1804537873} m_CullTransparentMesh: 0 +--- !u!1 &1805106461 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1805106462} + - component: {fileID: 1805106465} + - component: {fileID: 1805106464} + - component: {fileID: 1805106463} + m_Layer: 5 + m_Name: Viewport + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1805106462 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1805106461} + 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_Children: + - {fileID: 1977594613} + m_Father: {fileID: 316078878} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -69.99999} + m_SizeDelta: {x: 1000, y: 460} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1805106463 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1805106461} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 0 +--- !u!114 &1805106464 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1805106461} + 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: 1, g: 1, b: 1, 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: 10917, 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 &1805106465 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1805106461} + m_CullTransparentMesh: 0 --- !u!1 &1810226044 stripped GameObject: m_CorrespondingSourceObject: {fileID: 100004, guid: 126d619cf4daa52469682f85c1378b4a, type: 3} m_PrefabInstance: {fileID: 1811954864} m_PrefabAsset: {fileID: 0} ---- !u!114 &1810226049 -MonoBehaviour: +--- !u!114 &1810226049 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1810226044} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8a8570f210d5cef498074d4fe90d403f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_EventMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!1 &1811833977 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1811833978} + - component: {fileID: 1811833979} + m_Layer: 0 + m_Name: lctrl:y_button_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1811833978 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1811833977} + 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_Children: [] + m_Father: {fileID: 462020185} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1811833979 +SkinnedMeshRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1810226044} + m_GameObject: {fileID: 1811833977} m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8a8570f210d5cef498074d4fe90d403f, type: 3} - m_Name: - m_EditorClassIdentifier: - m_EventMask: - serializedVersion: 2 - m_Bits: 4294967295 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300006, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 218939788} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 218939788} + m_AABB: + m_Center: {x: 0.0000023958273, y: -0.000002474524, z: 0.0004961197} + m_Extent: {x: 0.005060065, y: 0.0050237104, z: 0.0025072566} + m_DirtyAABB: 0 --- !u!1001 &1811954864 PrefabInstance: m_ObjectHideFlags: 0 @@ -16672,6 +21466,10 @@ PrefabInstance: propertyPath: m_Name value: OVRCameraRig objectReference: {fileID: 0} + - target: {fileID: 400004, guid: 126d619cf4daa52469682f85c1378b4a, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} - target: {fileID: 400004, guid: 126d619cf4daa52469682f85c1378b4a, type: 3} propertyPath: m_LocalPosition.x value: 0 @@ -16684,6 +21482,10 @@ PrefabInstance: propertyPath: m_LocalPosition.z value: 0 objectReference: {fileID: 0} + - target: {fileID: 400004, guid: 126d619cf4daa52469682f85c1378b4a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} - target: {fileID: 400004, guid: 126d619cf4daa52469682f85c1378b4a, type: 3} propertyPath: m_LocalRotation.x value: 0 @@ -16696,14 +21498,6 @@ PrefabInstance: propertyPath: m_LocalRotation.z value: 0 objectReference: {fileID: 0} - - target: {fileID: 400004, guid: 126d619cf4daa52469682f85c1378b4a, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 400004, guid: 126d619cf4daa52469682f85c1378b4a, type: 3} - propertyPath: m_RootOrder - value: 3 - objectReference: {fileID: 0} - target: {fileID: 2037080, guid: 126d619cf4daa52469682f85c1378b4a, type: 3} propertyPath: m_CullingMask.m_Bits value: 4294966783 @@ -16829,6 +21623,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -16909,6 +21704,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &1823234012 BoxCollider: m_ObjectHideFlags: 0 @@ -16936,6 +21732,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -16966,6 +21763,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 883330328} + m_TargetAssemblyTypeName: m_MethodName: UpdateAssetsNow m_Mode: 1 m_Arguments: @@ -16991,6 +21789,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -17050,6 +21849,67 @@ RectTransform: m_AnchoredPosition: {x: 1400, y: -75} m_SizeDelta: {x: 600, y: 150} m_Pivot: {x: 0.5, y: 0.5} +--- !u!850595691 &1837017858 +LightingSettings: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Settings.lighting + serializedVersion: 3 + m_GIWorkflowMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 1 + m_RealtimeEnvironmentLighting: 1 + m_BounceScale: 1 + m_AlbedoBoost: 1 + m_IndirectOutputScale: 1 + m_UsingShadowmask: 1 + m_BakeBackend: 0 + m_LightmapMaxSize: 1024 + m_BakeResolution: 40 + m_Padding: 2 + m_TextureCompression: 1 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAO: 0 + m_MixedBakeMode: 2 + m_LightmapsBakeMode: 1 + m_FilterMode: 1 + m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0} + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_RealtimeResolution: 2 + m_ForceWhiteAlbedo: 0 + m_ForceUpdates: 0 + m_FinalGather: 0 + m_FinalGatherRayCount: 256 + m_FinalGatherFiltering: 1 + m_PVRCulling: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_LightProbeSampleCountMultiplier: 4 + m_PVRBounces: 2 + m_PVRMinBounces: 2 + m_PVREnvironmentMIS: 0 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 --- !u!1 &1839702706 GameObject: m_ObjectHideFlags: 0 @@ -17085,6 +21945,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -17129,6 +21990,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -17168,6 +22030,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &1839702710 BoxCollider: m_ObjectHideFlags: 0 @@ -17209,6 +22072,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 200, y: 150} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1844715058 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1844715059} + m_Layer: 0 + m_Name: ControllerModels + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1844715059 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1844715058} + 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_Children: + - {fileID: 778943966} + - {fileID: 127731052} + - {fileID: 2007527160} + - {fileID: 1440394582} + - {fileID: 1437575593} + - {fileID: 795583437} + - {fileID: 983154925} + m_Father: {fileID: 1079679056} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1860838374 GameObject: m_ObjectHideFlags: 0 @@ -17241,6 +22141,7 @@ MonoBehaviour: panelContainer: {fileID: 1950750521} scrollContainer: {fileID: 673732997} skyboxHandler: {fileID: 49821816} + environmentHandler: {fileID: 316078880} topTabContainer: {fileID: 1608941300} leftTabContainer: {fileID: 1585122602} rightTabContainer: {fileID: 870628887} @@ -17269,7 +22170,7 @@ Transform: m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 2 + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1874455545 GameObject: @@ -17323,6 +22224,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.25490198, g: 0.44313726, b: 0.6901961, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -17345,7 +22247,7 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1874455545} m_CullTransparentMesh: 0 ---- !u!1 &1875820932 +--- !u!1 &1876729273 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -17353,69 +22255,49 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1875820933} - - component: {fileID: 1875820936} - - component: {fileID: 1875820935} - - component: {fileID: 1875820934} + - component: {fileID: 1876729274} + - component: {fileID: 1876729275} m_Layer: 0 - m_Name: OculusTouchForQuestAndRiftSLeftModel + m_Name: lctrl:ring_PLY m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &1875820933 +--- !u!4 &1876729274 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1875820932} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 1876729273} + 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_Children: [] - m_Father: {fileID: 1457050908} - m_RootOrder: 1 + m_Father: {fileID: 462020185} + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!95 &1875820934 -Animator: - serializedVersion: 3 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1875820932} - m_Enabled: 1 - m_Avatar: {fileID: 9000000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} - m_Controller: {fileID: 0} - m_CullingMode: 0 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorControllerStateOnDisable: 0 ---- !u!23 &1875820935 -MeshRenderer: +--- !u!137 &1876729275 +SkinnedMeshRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1875820932} + m_GameObject: {fileID: 1876729273} m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 + m_CastShadows: 1 + m_ReceiveShadows: 1 m_DynamicOccludee: 1 m_MotionVectors: 1 m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -17436,14 +22318,19 @@ MeshRenderer: m_SortingLayerID: 0 m_SortingLayer: 0 m_SortingOrder: 0 ---- !u!33 &1875820936 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1875820932} - m_Mesh: {fileID: 4300000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300008, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1539841352} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1539841352} + m_AABB: + m_Center: {x: 0.016699282, y: 0.010818447, z: -0.036364146} + m_Extent: {x: 0.054633915, y: 0.02167825, z: 0.050220706} + m_DirtyAABB: 0 --- !u!1 &1876783794 GameObject: m_ObjectHideFlags: 0 @@ -17524,6 +22411,7 @@ MeshRenderer: m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 m_RayTracingMode: 2 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: @@ -17548,6 +22436,7 @@ MeshRenderer: m_SortingLayerID: 0 m_SortingLayer: 0 m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} --- !u!65 &1890535733 BoxCollider: m_ObjectHideFlags: 0 @@ -17625,7 +22514,7 @@ Transform: m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 1 + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1902345828 GameObject: @@ -17679,6 +22568,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -17753,6 +22643,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -17802,6 +22693,7 @@ LineRenderer: m_LightProbeUsage: 0 m_ReflectionProbeUsage: 0 m_RayTracingMode: 0 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: [] @@ -17883,6 +22775,170 @@ LineRenderer: generateLightingData: 0 m_UseWorldSpace: 1 m_Loop: 0 +--- !u!1 &1930813480 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1930813481} + - component: {fileID: 1930813483} + - component: {fileID: 1930813482} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1930813481 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1930813480} + 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_Children: [] + m_Father: {fileID: 235481852} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 410, y: -75} + m_SizeDelta: {x: 800, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1930813482 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1930813480} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, 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_text: None + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 86 + m_fontSizeBase: 86 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 1 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1930813483 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1930813480} + m_CullTransparentMesh: 0 +--- !u!1 &1935409510 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1935409511} + m_Layer: 0 + m_Name: lctrl:b_button03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1935409511 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1935409510} + m_LocalRotation: {x: 0.05660452, y: -0.05795374, z: -0.0046757394, w: 0.9967023} + m_LocalPosition: {x: 0.012083728, y: -0.01402681, z: -0.0007126567} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1539841352} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1948944861 GameObject: m_ObjectHideFlags: 0 @@ -17936,6 +22992,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -18043,6 +23100,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 1950750525} + m_TargetAssemblyTypeName: m_MethodName: OnHoverEnter m_Mode: 0 m_Arguments: @@ -18057,6 +23115,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 1950750525} + m_TargetAssemblyTypeName: m_MethodName: OnHoverExit m_Mode: 0 m_Arguments: @@ -18074,6 +23133,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 1950750525} + m_TargetAssemblyTypeName: m_MethodName: OnSelected m_Mode: 0 m_Arguments: @@ -18088,6 +23148,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 1950750525} + m_TargetAssemblyTypeName: m_MethodName: OnSelectedPressedBorY m_Mode: 0 m_Arguments: @@ -18102,6 +23163,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 1950750525} + m_TargetAssemblyTypeName: m_MethodName: OnSelectedPressedAorX m_Mode: 0 m_Arguments: @@ -18189,6 +23251,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &1964751871 GameObject: m_ObjectHideFlags: 0 @@ -18242,6 +23305,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -18272,62 +23336,316 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1969052621} - - component: {fileID: 1969052622} - m_Layer: 5 - m_Name: NavButtons + - component: {fileID: 1969052621} + - component: {fileID: 1969052622} + m_Layer: 5 + m_Name: NavButtons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1969052621 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1969052620} + 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_Children: + - {fileID: 1604053993} + - {fileID: 2036959100} + m_Father: {fileID: 471654430} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 400, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1969052622 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1969052620} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1977594612 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1977594613} + - component: {fileID: 1977594615} + - component: {fileID: 1977594614} + m_Layer: 5 + m_Name: Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1977594613 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1977594612} + 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_Children: [] + m_Father: {fileID: 1805106462} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1977594614 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1977594612} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 0 + m_VerticalFit: 2 +--- !u!114 &1977594615 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1977594612} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8a8695521f0d02e499659fee002a26c2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 10 + m_Right: 10 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_StartCorner: 0 + m_StartAxis: 0 + m_CellSize: {x: 980, y: 50} + m_Spacing: {x: 0, y: 10} + m_Constraint: 1 + m_ConstraintCount: 1 +--- !u!1 &1993578280 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1993578281} + - component: {fileID: 1993578282} + m_Layer: 5 + m_Name: Horizontal_Buttons + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1993578281 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1993578280} + 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_Children: + - {fileID: 572537055} + - {fileID: 1962314896} + m_Father: {fileID: 883330324} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 100, y: -1625} + m_SizeDelta: {x: 0, y: 200} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1993578282 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1993578280} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 75 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &1993677817 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1993677818} + - component: {fileID: 1993677819} + m_Layer: 0 + m_Name: lctrl:side_trigger_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1993677818 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1993677817} + 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_Children: [] + m_Father: {fileID: 107155893} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1993677819 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1993677817} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300018, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 1520957270} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1520957270} + m_AABB: + m_Center: {x: -0.015075568, y: -0.000016345643, z: 0.0018507424} + m_Extent: {x: 0.0069265533, y: 0.014548335, z: 0.007307569} + m_DirtyAABB: 0 +--- !u!1 &2003819884 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2003819885} + m_Layer: 0 + m_Name: lctrl:b_button02 m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1969052621 -RectTransform: +--- !u!4 &2003819885 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1969052620} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 2003819884} + m_LocalRotation: {x: 0.017080953, y: -0.07918932, z: 0.52647054, w: 0.84632504} + m_LocalPosition: {x: -0.0091353385, y: 0.005499125, z: -0.00011681918} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1604053993} - - {fileID: 2036959100} - m_Father: {fileID: 471654430} - m_RootOrder: 0 + m_Children: [] + m_Father: {fileID: 2067178101} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 400, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1969052622 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1969052620} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 - m_ChildAlignment: 0 - m_Spacing: 0 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 0 - m_ChildControlHeight: 0 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 ---- !u!1 &1993578280 +--- !u!1 &2007527159 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -18335,61 +23653,99 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1993578281} - - component: {fileID: 1993578282} - m_Layer: 5 - m_Name: Horizontal_Buttons + - component: {fileID: 2007527160} + - component: {fileID: 2007527163} + - component: {fileID: 2007527162} + - component: {fileID: 2007527161} + m_Layer: 0 + m_Name: OculusTouchForQuestAndRiftSLeftModel m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1993578281 -RectTransform: + m_IsActive: 0 +--- !u!4 &2007527160 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1993578280} + m_GameObject: {fileID: 2007527159} 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_Children: - - {fileID: 572537055} - - {fileID: 1962314896} - m_Father: {fileID: 883330324} - m_RootOrder: 6 + m_Children: [] + m_Father: {fileID: 1844715059} + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 100, y: -1675} - m_SizeDelta: {x: 0, y: 200} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1993578282 -MonoBehaviour: +--- !u!95 &2007527161 +Animator: + serializedVersion: 3 m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1993578280} + m_GameObject: {fileID: 2007527159} m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 - m_ChildAlignment: 0 - m_Spacing: 75 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 0 - m_ChildControlHeight: 0 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 + m_Avatar: {fileID: 9000000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Controller: {fileID: 0} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 +--- !u!23 &2007527162 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2007527159} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &2007527163 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2007527159} + m_Mesh: {fileID: 4300000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} --- !u!1 &2009369171 GameObject: m_ObjectHideFlags: 0 @@ -18442,6 +23798,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -18467,13 +23824,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -18481,7 +23837,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 514 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -18491,10 +23849,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -18502,40 +23858,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 2009369173} - characterCount: 17 - spriteCount: 0 - spaceCount: 2 - wordCount: 3 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &2009369174 @@ -18570,155 +23904,57 @@ RectTransform: m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2017584414} - 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_Children: [] - m_Father: {fileID: 1181631556} - 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: 0} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &2017584416 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2017584414} - 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: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 01674f533e98ba544a7bb592e2f52669, type: 3} - m_Type: 0 - 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 &2017584417 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2017584414} - m_CullTransparentMesh: 0 ---- !u!1 &2025011530 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2025011531} - - component: {fileID: 2025011534} - - component: {fileID: 2025011533} - - component: {fileID: 2025011532} - m_Layer: 0 - m_Name: OculusTouchForQuestAndRiftSRightModel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2025011531 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2025011530} - 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_Children: [] - m_Father: {fileID: 174121772} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!95 &2025011532 -Animator: - serializedVersion: 3 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2025011530} - m_Enabled: 1 - m_Avatar: {fileID: 9000000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} - m_Controller: {fileID: 0} - m_CullingMode: 0 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorControllerStateOnDisable: 0 ---- !u!23 &2025011533 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2025011530} + m_GameObject: {fileID: 2017584414} + 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_Children: [] + m_Father: {fileID: 1181631556} + 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: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2017584416 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2017584414} m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!33 &2025011534 -MeshFilter: + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, 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: 21300000, guid: 01674f533e98ba544a7bb592e2f52669, type: 3} + m_Type: 0 + 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 &2017584417 +CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2025011530} - m_Mesh: {fileID: 4300000, guid: 37ba10a26a648144fa2390c8adfb2c8a, type: 3} + m_GameObject: {fileID: 2017584414} + m_CullTransparentMesh: 0 --- !u!1 &2026974423 GameObject: m_ObjectHideFlags: 0 @@ -18781,6 +24017,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!114 &2026974427 MonoBehaviour: m_ObjectHideFlags: 0 @@ -18875,6 +24112,108 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &2027819626 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2027819627} + - component: {fileID: 2027819630} + - component: {fileID: 2027819629} + - component: {fileID: 2027819628} + m_Layer: 0 + m_Name: OculusTouchForQuestAndRiftSLeftModel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &2027819627 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2027819626} + 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_Children: [] + m_Father: {fileID: 1257996012} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &2027819628 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2027819626} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} + m_Controller: {fileID: 0} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 +--- !u!23 &2027819629 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2027819626} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 01ac879f6ce09924e9c26663f798beaf, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &2027819630 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2027819626} + m_Mesh: {fileID: 4300000, guid: 32fbc8bcebb64584da5868aeeb086cda, type: 3} --- !u!1 &2035967047 GameObject: m_ObjectHideFlags: 0 @@ -18942,6 +24281,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -18964,6 +24304,36 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2035967047} m_CullTransparentMesh: 0 +--- !u!1 &2036159890 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2036159891} + m_Layer: 0 + m_Name: lctrl:b_trigger + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2036159891 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2036159890} + m_LocalRotation: {x: -0.05795374, y: -0.05660452, z: 0.9967023, w: 0.0046757394} + m_LocalPosition: {x: -0.001420367, y: 0.021865888, z: -0.005495974} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2067178101} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &2036959094 GameObject: m_ObjectHideFlags: 0 @@ -18999,6 +24369,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -19043,6 +24414,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -19082,6 +24454,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &2036959098 BoxCollider: m_ObjectHideFlags: 0 @@ -19123,6 +24496,36 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 200, y: 150} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2037417491 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2037417492} + m_Layer: 0 + m_Name: rctrl:b_stick_IGNORE + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2037417492 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2037417491} + m_LocalRotation: {x: -4.5059287e-17, y: -0.70108956, z: -6.5911624e-17, w: 0.71307325} + m_LocalPosition: {x: -0.019321036, y: 0, z: 9.992007e-18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 754484175} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &2047630435 GameObject: m_ObjectHideFlags: 0 @@ -19175,6 +24578,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -19204,6 +24608,10 @@ PrefabInstance: m_Modification: m_TransformParent: {fileID: 850048949} m_Modifications: + - target: {fileID: 4965781047894976, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} - target: {fileID: 4965781047894976, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} propertyPath: m_LocalPosition.x value: 0 @@ -19216,6 +24624,10 @@ PrefabInstance: propertyPath: m_LocalPosition.z value: 0 objectReference: {fileID: 0} + - target: {fileID: 4965781047894976, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} - target: {fileID: 4965781047894976, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} propertyPath: m_LocalRotation.x value: -0 @@ -19228,44 +24640,51 @@ PrefabInstance: propertyPath: m_LocalRotation.z value: -0 objectReference: {fileID: 0} - - target: {fileID: 4965781047894976, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4965781047894976, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} - propertyPath: m_RootOrder + - target: {fileID: 114318095738077550, guid: 411c0b99f954d1d4884fa0d6256933cf, + type: 3} + propertyPath: m_controller value: 1 objectReference: {fileID: 0} - target: {fileID: 114318095738077550, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} - propertyPath: m_modelOculusTouchQuestAndRiftSLeftController + propertyPath: m_modelGearVrController value: - objectReference: {fileID: 1875820932} + objectReference: {fileID: 0} - target: {fileID: 114318095738077550, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} - propertyPath: m_modelOculusTouchQuestAndRiftSRightController + propertyPath: m_modelOculusGoController value: - objectReference: {fileID: 340813588} + objectReference: {fileID: 0} - target: {fileID: 114318095738077550, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} propertyPath: m_modelOculusTouchRiftLeftController value: - objectReference: {fileID: 1644749160} + objectReference: {fileID: 127731051} - target: {fileID: 114318095738077550, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} propertyPath: m_modelOculusTouchRiftRightController value: - objectReference: {fileID: 1644749160} + objectReference: {fileID: 1437575592} - target: {fileID: 114318095738077550, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} - propertyPath: m_modelOculusGoController + propertyPath: m_modelOculusTouchQuest2LeftController value: - objectReference: {fileID: 1644749160} + objectReference: {fileID: 795583438} - target: {fileID: 114318095738077550, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} - propertyPath: m_modelGearVrController + propertyPath: m_modelOculusTouchQuest2RightController + value: + objectReference: {fileID: 983154926} + - target: {fileID: 114318095738077550, guid: 411c0b99f954d1d4884fa0d6256933cf, + type: 3} + propertyPath: m_modelOculusTouchQuestAndRiftSLeftController + value: + objectReference: {fileID: 2007527159} + - target: {fileID: 114318095738077550, guid: 411c0b99f954d1d4884fa0d6256933cf, + type: 3} + propertyPath: m_modelOculusTouchQuestAndRiftSRightController value: - objectReference: {fileID: 1644749160} + objectReference: {fileID: 1440394581} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 411c0b99f954d1d4884fa0d6256933cf, type: 3} --- !u!1 &2050228443 @@ -19335,6 +24754,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -19409,6 +24829,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -19465,8 +24886,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 1010, y: -75} - m_SizeDelta: {x: 2000, y: 150} + m_AnchoredPosition: {x: 410, y: -75} + m_SizeDelta: {x: 800, y: 150} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2062144643 MonoBehaviour: @@ -19483,6 +24904,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -19508,13 +24930,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -19522,7 +24943,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 514 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -19532,10 +24955,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 1 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -19543,40 +24964,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 2062144643} - characterCount: 7 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} - m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &2062144644 @@ -19587,6 +24986,37 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2062144641} m_CullTransparentMesh: 0 +--- !u!1 &2063139096 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2063139097} + m_Layer: 0 + m_Name: lctrl:b_stick + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2063139097 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2063139096} + m_LocalRotation: {x: 0.0027868259, y: 0.70437866, z: -0.0031505642, w: 0.7098119} + m_LocalPosition: {x: 0.010637393, y: 0.00497835, z: -0.009418557} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1250617902} + m_Father: {fileID: 2067178101} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &2063273158 GameObject: m_ObjectHideFlags: 0 @@ -19649,6 +25079,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &2066198669 GameObject: m_ObjectHideFlags: 0 @@ -19702,6 +25133,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -19751,6 +25183,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -19773,6 +25206,72 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2066198669} m_CullTransparentMesh: 0 +--- !u!1 &2067178100 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2067178101} + m_Layer: 0 + m_Name: lctrl:left_touch_controller_world + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2067178101 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2067178100} + m_LocalRotation: {x: 0, y: 0.7071068, z: 0.7071068, w: -8.659561e-17} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1550536039} + - {fileID: 2003819885} + - {fileID: 1485590838} + - {fileID: 1520957270} + - {fileID: 2063139097} + - {fileID: 2036159891} + m_Father: {fileID: 1533612654} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2070872555 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2070872556} + m_Layer: 0 + m_Name: rctrl:b_trigger + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2070872556 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2070872555} + m_LocalRotation: {x: 0.056604527, y: 0.05795374, z: 0.004675739, w: 0.9967023} + m_LocalPosition: {x: 0.001420367, y: 0.021865888, z: -0.005495974} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 218985652} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &2071262471 GameObject: m_ObjectHideFlags: 0 @@ -19826,6 +25325,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -19851,13 +25351,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -19865,7 +25364,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 514 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -19875,10 +25376,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -19886,40 +25385,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 2071262473} - characterCount: 1 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 1508111134} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &2071262474 @@ -19930,6 +25407,36 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2071262471} m_CullTransparentMesh: 0 +--- !u!1 &2073944833 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2073944834} + m_Layer: 0 + m_Name: rctrl:b_hold + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2073944834 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2073944833} + m_LocalRotation: {x: -0.17913595, y: 0.14914332, z: 0.022661837, w: 0.97218984} + m_LocalPosition: {x: -0.013074442, y: -0.025639696, z: -0.027427113} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 218985652} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &2078487177 GameObject: m_ObjectHideFlags: 0 @@ -19940,7 +25447,6 @@ GameObject: m_Component: - component: {fileID: 2078487178} - component: {fileID: 2078487180} - - component: {fileID: 2078487179} m_Layer: 5 m_Name: TMP SubMeshUI [LiberationSans SDF Material + LiberationSans SDF Atlas] m_TagString: Untagged @@ -19967,34 +25473,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &2078487179 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2078487177} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 058cba836c1846c3aa1c5fd2e28aea77, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_fontAsset: {fileID: 11400000, guid: 2e498d1c8094910479dc3e1b768306a4, type: 2} - m_spriteAsset: {fileID: 0} - m_material: {fileID: 0} - m_sharedMaterial: {fileID: 0} - m_isDefaultMaterial: 0 - m_padding: 1.25 - m_canvasRenderer: {fileID: 2078487180} - m_TextComponent: {fileID: 582880633} - m_materialReferenceIndex: 1 --- !u!222 &2078487180 CanvasRenderer: m_ObjectHideFlags: 0 @@ -20056,6 +25534,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 0.24313727, g: 0.427451, b: 0.6627451, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -20130,6 +25609,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -20152,6 +25632,90 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2081835835} m_CullTransparentMesh: 0 +--- !u!1 &2083120668 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2083120669} + - component: {fileID: 2083120670} + m_Layer: 0 + m_Name: lctrl:surface_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2083120669 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2083120668} + 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_Children: [] + m_Father: {fileID: 107155893} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2083120670 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2083120668} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300002, guid: 45137ecb2b0f9ba45b80adefb16de509, type: 3} + m_Bones: + - {fileID: 2067178101} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 2067178101} + m_AABB: + m_Center: {x: 0.00016466714, y: 0.00024955533, z: -0.0010734661} + m_Extent: {x: 0.02819586, y: 0.02827545, z: 0.005969927} + m_DirtyAABB: 0 --- !u!1 &2092328268 GameObject: m_ObjectHideFlags: 0 @@ -20204,6 +25768,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -20229,13 +25794,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -20243,7 +25807,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 514 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -20253,10 +25819,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: 0 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -20264,40 +25828,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 2092328270} - characterCount: 10 - spriteCount: 0 - spaceCount: 1 - wordCount: 2 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &2092328271 @@ -20360,6 +25902,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -20385,13 +25928,12 @@ MonoBehaviour: m_fontColorGradientPreset: {fileID: 0} m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 m_overrideHtmlColors: 0 m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_outlineColor: - serializedVersion: 2 - rgba: 4278190080 m_fontSize: 86 m_fontSizeBase: 86 m_fontWeight: 400 @@ -20399,7 +25941,9 @@ MonoBehaviour: m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_textAlignment: 513 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 m_lineSpacing: 0 @@ -20409,10 +25953,8 @@ MonoBehaviour: m_enableWordWrapping: 0 m_wordWrappingRatios: 0.4 m_overflowMode: 0 - m_firstOverflowCharacterIndex: -1 m_linkedTextComponent: {fileID: 0} - m_isLinkedTextComponent: 0 - m_isTextTruncated: 0 + parentLinkedComponent: {fileID: 0} m_enableKerning: 1 m_enableExtraPadding: 0 checkPaddingRequired: 0 @@ -20420,40 +25962,18 @@ MonoBehaviour: m_parseCtrlCharacters: 1 m_isOrthographic: 1 m_isCullingEnabled: 0 - m_ignoreRectMaskCulling: 0 - m_ignoreCulling: 1 m_horizontalMapping: 0 m_verticalMapping: 0 m_uvLineOffset: 0 m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 - m_firstVisibleCharacter: 0 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 m_margin: {x: 0, y: 0, z: 0, w: 0} - m_textInfo: - textComponent: {fileID: 2096913252} - characterCount: 4 - spriteCount: 0 - spaceCount: 0 - wordCount: 1 - linkCount: 0 - lineCount: 1 - pageCount: 1 - materialCount: 1 m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_spriteAnimator: {fileID: 0} m_hasFontAssetChanged: 0 - m_subTextObjects: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &2096913253 @@ -20531,6 +26051,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -20600,6 +26121,7 @@ MeshRenderer: m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 m_RayTracingMode: 2 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: @@ -20624,6 +26146,7 @@ MeshRenderer: m_SortingLayerID: 0 m_SortingLayer: 0 m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} --- !u!33 &2108958133 MeshFilter: m_ObjectHideFlags: 0 @@ -20706,8 +26229,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 1550, y: -75} - m_SizeDelta: {x: 2000, y: 150} + m_AnchoredPosition: {x: 887.5, y: -75} + m_SizeDelta: {x: 800, y: 150} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2120155538 MonoBehaviour: @@ -20734,6 +26257,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &2120155539 BoxCollider: m_ObjectHideFlags: 0 @@ -20745,7 +26269,7 @@ BoxCollider: m_IsTrigger: 0 m_Enabled: 1 serializedVersion: 2 - m_Size: {x: 2000, y: 150, z: 0.05} + m_Size: {x: 800, y: 150, z: 0.05} m_Center: {x: 0, y: 0, z: 0} --- !u!114 &2120155540 MonoBehaviour: @@ -20761,6 +26285,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -20791,6 +26316,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 883330328} + m_TargetAssemblyTypeName: m_MethodName: ShowSkyboxList m_Mode: 1 m_Arguments: @@ -20816,6 +26342,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -20904,6 +26431,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -20934,6 +26462,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 883330328} + m_TargetAssemblyTypeName: m_MethodName: OpenSettings m_Mode: 1 m_Arguments: @@ -20959,6 +26488,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -21047,6 +26577,7 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!65 &2130504548 BoxCollider: m_ObjectHideFlags: 0 @@ -21074,6 +26605,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Navigation: m_Mode: 3 + m_WrapAround: 0 m_SelectOnUp: {fileID: 0} m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} @@ -21104,6 +26636,7 @@ MonoBehaviour: m_PersistentCalls: m_Calls: - m_Target: {fileID: 49821816} + m_TargetAssemblyTypeName: m_MethodName: OnCancel m_Mode: 1 m_Arguments: @@ -21129,6 +26662,7 @@ MonoBehaviour: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -21151,3 +26685,87 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2130504545} m_CullTransparentMesh: 0 +--- !u!1 &2143638614 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2143638615} + - component: {fileID: 2143638616} + m_Layer: 0 + m_Name: rctrl:ring_PLY + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2143638615 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2143638614} + 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_Children: [] + m_Father: {fileID: 489477568} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2143638616 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2143638614} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: eacafe280fdfa6a44845c135057ae6a5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4300004, guid: eb8e07cd3e0ce494f81482c6835d2b10, type: 3} + m_Bones: + - {fileID: 1795596850} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 1795596850} + m_AABB: + m_Center: {x: -0.016699282, y: 0.010818443, z: -0.036364153} + m_Extent: {x: 0.054633915, y: 0.021678247, z: 0.050220713} + m_DirtyAABB: 0 diff --git a/Assets/Scripts/AppConfig.cs b/Assets/Scripts/AppConfig.cs new file mode 100644 index 00000000..b015bdd6 --- /dev/null +++ b/Assets/Scripts/AppConfig.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.IO; +using UnityEngine; +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; + +namespace QuestAppLauncher +{ + /// + /// App config object + /// + public class AppConfig + { + private static bool isInitialized = false; + public static string persistentDataPath; + + public static void Initialize() + { + if (isInitialized) + { + return; + } + + persistentDataPath = UnityEngine.Application.persistentDataPath; + + isInitialized = true; + } + } +} \ No newline at end of file diff --git a/Assets/Scripts/AppConfig.cs.meta b/Assets/Scripts/AppConfig.cs.meta new file mode 100644 index 00000000..b3cf53e2 --- /dev/null +++ b/Assets/Scripts/AppConfig.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 971da06433428e64a882b8e07294d6ac +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/AppProcessor.cs b/Assets/Scripts/AppProcessor.cs index ec6a71e0..af3d4b1c 100644 --- a/Assets/Scripts/AppProcessor.cs +++ b/Assets/Scripts/AppProcessor.cs @@ -79,7 +79,7 @@ public class JsonAppNamesEntry /// Dictionary of processed apps public static Dictionary ProcessApps(Config config, bool isRenameMode = false) { - var persistentDataPath = UnityEngine.Application.persistentDataPath; + var persistentDataPath = AppConfig.persistentDataPath; Debug.Log("Persistent data path: " + persistentDataPath); // Dictionary to hold package name -> app index, app name @@ -206,7 +206,7 @@ private static void ProcessAppNameOverrideFiles(bool isRenameMode, Dictionary apps, string appNameOverrideFilePath) { - if (isRenameMode && appNameOverrideFilePath.Equals(Path.Combine(UnityEngine.Application.persistentDataPath, RenameJsonFileName), + if (isRenameMode && appNameOverrideFilePath.Equals(Path.Combine(AppConfig.persistentDataPath, RenameJsonFileName), StringComparison.InvariantCultureIgnoreCase)) { // In rename mode, so skip the rename json file itself @@ -453,7 +453,7 @@ private static void ProcessExtractedIcons(bool isRenameMode, Dictionary f); foreach (var dir in dirs) { - if (isRenameMode && dir.StartsWith(Path.Combine(UnityEngine.Application.persistentDataPath, RenameIconPackFileName), + if (isRenameMode && dir.StartsWith(Path.Combine(AppConfig.persistentDataPath, RenameIconPackFileName), StringComparison.InvariantCultureIgnoreCase)) { // In rename mode, so skip the extracted rename icon pack itself @@ -633,7 +633,7 @@ await Task.Run(() => /// static public void AddAppToExcludedFile(string packageName) { - var persistentDataPath = UnityEngine.Application.persistentDataPath; + var persistentDataPath = AppConfig.persistentDataPath; var excludedPackageNamesFilePath = Path.Combine(persistentDataPath, ExcludedPackagesFile); using (StreamWriter writer = File.AppendText(excludedPackageNamesFilePath)) @@ -649,7 +649,7 @@ static public void AddAppToExcludedFile(string packageName) /// true if file exists static public bool DeleteExcludedAppsFile() { - var persistentDataPath = UnityEngine.Application.persistentDataPath; + var persistentDataPath = AppConfig.persistentDataPath; var excludedPackageNamesFilePath = Path.Combine(persistentDataPath, ExcludedPackagesFile); if (File.Exists(excludedPackageNamesFilePath)) @@ -668,14 +668,14 @@ static public bool DeleteExcludedAppsFile() static public bool DeleteRenameFiles() { var ret = false; - var renameJsonFilePath = Path.Combine(UnityEngine.Application.persistentDataPath, RenameJsonFileName); + var renameJsonFilePath = Path.Combine(AppConfig.persistentDataPath, RenameJsonFileName); if (File.Exists(renameJsonFilePath)) { File.Delete(renameJsonFilePath); ret = true; } - var renameIconPackFilePath = Path.Combine(UnityEngine.Application.persistentDataPath, RenameIconPackFileName); + var renameIconPackFilePath = Path.Combine(AppConfig.persistentDataPath, RenameIconPackFileName); if (File.Exists(renameIconPackFilePath)) { File.Delete(renameIconPackFilePath); diff --git a/Assets/Scripts/AssetsDownloader.cs b/Assets/Scripts/AssetsDownloader.cs index 10130f33..571c32a1 100644 --- a/Assets/Scripts/AssetsDownloader.cs +++ b/Assets/Scripts/AssetsDownloader.cs @@ -2,12 +2,12 @@ using System.Collections; using System.Collections.Generic; using System.IO; +using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; using UnityEngine; -using UnityEngine.Networking; using UnityEngine.SceneManagement; using Newtonsoft.Json; using Newtonsoft.Json.Linq; @@ -107,7 +107,7 @@ public static async Task DownloadAssetsAsync(Config config, IDownloadProgress do Debug.Log("Downloaded new assets. Re-populating panel"); SceneManager.LoadSceneAsync(SceneManager.GetActiveScene().name); } - }); + }, TaskScheduler.FromCurrentSynchronizationContext()); } /// @@ -300,18 +300,20 @@ private async Task GetAssetsInfoFromGithubRepoAsync(string repoUri, try { // Request asset url - using (var req = new UnityWebRequest(requestUrl)) + + // System.Net.WebClient(); + using (var req = new WebRequest(requestUrl)) { - req.downloadHandler = new DownloadHandlerBuffer(); + req.downloadHandler = new DownloadHandlerText(); await req.SendWebRequest(); if (req.isNetworkError || req.isHttpError) { // Error reading asset metadata, so return. - Debug.LogFormat("Error reading asset info: {0}", req.error); + Debug.LogFormat($"Error reading asset info: {req.error}. isNetworkError: {req.isNetworkError}. isHttpError: {req.isHttpError}"); var responseHeaders = req.GetResponseHeaders(); - if (null != responseHeaders && responseHeaders.ContainsKey("X-RateLimit-Remaining") && - responseHeaders["X-RateLimit-Remaining"] == "0") + if (null != responseHeaders && responseHeaders.Contains("X-RateLimit-Remaining") && + responseHeaders.GetValues("X-RateLimit-Remaining").First() == "0") { // Github request limit reached. Display a friendly error message. Debug.LogFormat("Request limit reached"); @@ -334,7 +336,7 @@ private async Task GetAssetsInfoFromGithubRepoAsync(string repoUri, } // Parse the returned asset metadata - var jObject = JObject.Parse(req.downloadHandler.text); + var jObject = JObject.Parse((req.downloadHandler as DownloadHandlerText).text); var tagName = jObject["tag_name"].Value(); foreach (var property in jObject["assets"]) @@ -355,7 +357,7 @@ private async Task GetAssetsInfoFromGithubRepoAsync(string repoUri, } catch (Exception e) { - Debug.LogFormat("Exception reading asset info: {0} ", e.Message); + Debug.LogErrorFormat("Exception reading asset info: {0} ", e.Message); if (null != downloadProgress) { downloadProgress.OnError(string.Format("Error updating: {0} ({1})", @@ -385,7 +387,7 @@ private async Task DownloadAssetFromGitHubRepoAsync(string name, AssetInfo try { // Request asset url - using (var req = new UnityWebRequest(assetInfo.Url)) + using (var req = new WebRequest(assetInfo.Url)) { req.SetRequestHeader("Accept", "application/octet-stream"); if (null != downloadProgress) @@ -429,6 +431,7 @@ private async Task DownloadAssetFromGitHubRepoAsync(string name, AssetInfo downloadProgress.OnDownloadFinish(); } + Debug.LogFormat($"Successfully downloaded {name}"); return true; } } @@ -494,7 +497,7 @@ static private void SaveManifest(AssetsManifest manifest) static public string GetOrCreateDownloadPath() { - string path = Path.Combine(UnityEngine.Application.persistentDataPath, DownloadCacheFolder); + string path = Path.Combine(AppConfig.persistentDataPath, DownloadCacheFolder); Directory.CreateDirectory(path); return path; } diff --git a/Assets/Scripts/Config.cs b/Assets/Scripts/Config.cs index 30ad1447..f83e2bde 100644 --- a/Assets/Scripts/Config.cs +++ b/Assets/Scripts/Config.cs @@ -31,6 +31,9 @@ public class Config // Background public const string Background_Default = "default"; + // Environment + public const string Environment_None = "none"; + /// /// Grid size /// @@ -72,6 +75,9 @@ public class DownloadRepo // Background image path public string background = Background_Default; + // Environment path + public string environment = Environment_None; + // Github download repos public List downloadRepos = new List(); @@ -102,7 +108,7 @@ public class ConfigPersistence /// Config object static public Config LoadConfig() { - var configFilePath = Path.Combine(UnityEngine.Application.persistentDataPath, ConfigFileName); + var configFilePath = Path.Combine(AppConfig.persistentDataPath, ConfigFileName); if (File.Exists(configFilePath)) { Debug.Log("Found config file: " + configFilePath); @@ -132,7 +138,7 @@ static public Config LoadConfig() /// static public void SaveConfig(Config config) { - var configFilePath = Path.Combine(UnityEngine.Application.persistentDataPath, ConfigFileName); + var configFilePath = Path.Combine(AppConfig.persistentDataPath, ConfigFileName); Debug.Log("Saving config file: " + configFilePath); try diff --git a/Assets/Scripts/DownloadHandler.cs b/Assets/Scripts/DownloadHandler.cs new file mode 100644 index 00000000..e9552b94 --- /dev/null +++ b/Assets/Scripts/DownloadHandler.cs @@ -0,0 +1,37 @@ +using System; +using System.Threading.Tasks; + +namespace QuestAppLauncher +{ + /// + /// File download handler class with callback for progress. + /// This is a download hanlder that can be assocaited with a UnityWebRequest. + /// Based on: DownloadHandlerFile.cs by Luke Holland + /// (https://gist.github.com/luke161/a251b01c00f58d65a252812be8dce670) + /// + public abstract class DownloadHandler : IDisposable + { + public byte[] buffer + { + private set; + get; + } + + public DownloadHandler(byte[] buffer) + { + this.buffer = buffer; + } + + protected abstract float GetProgress(); + + public abstract void ReceiveContentLength(int contentLength); + + public abstract Task ReceiveData(byte[] data, int dataLength); + + public abstract void CompleteContent(); + + public void Dispose() + { + } + } +} diff --git a/Assets/Scripts/DownloadHandler.cs.meta b/Assets/Scripts/DownloadHandler.cs.meta new file mode 100644 index 00000000..4a8297e5 --- /dev/null +++ b/Assets/Scripts/DownloadHandler.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1d7fe18fcc06cd74a8703c3e7f0f65cf +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/DownloadHandlerFileWithProgress.cs b/Assets/Scripts/DownloadHandlerFileWithProgress.cs index 6cc1d7a8..6b170d42 100644 --- a/Assets/Scripts/DownloadHandlerFileWithProgress.cs +++ b/Assets/Scripts/DownloadHandlerFileWithProgress.cs @@ -1,5 +1,6 @@ using System; using System.IO; +using System.Threading.Tasks; using UnityEngine; using UnityEngine.Networking; @@ -11,7 +12,7 @@ namespace QuestAppLauncher /// Based on: DownloadHandlerFile.cs by Luke Holland /// (https://gist.github.com/luke161/a251b01c00f58d65a252812be8dce670) /// - public class DownloadHandlerFileWithProgress : DownloadHandlerScript + public class DownloadHandlerFileWithProgress : DownloadHandler { // Whether to remove file on error public bool removeFileOnAbort = false; @@ -58,13 +59,12 @@ protected override float GetProgress() return contentLength <= 0 ? 0 : Mathf.Clamp01((float)this.received / (float)contentLength); } - [Obsolete] - protected override void ReceiveContentLength(int contentLength) + public override void ReceiveContentLength(int contentLength) { this.contentLength = contentLength; } - protected override bool ReceiveData(byte[] data, int dataLength) + public override async Task ReceiveData(byte[] data, int dataLength) { if (data == null || data.Length == 0) { @@ -72,7 +72,7 @@ protected override bool ReceiveData(byte[] data, int dataLength) } this.received += dataLength; - this.stream.Write(data, 0, dataLength); + await this.stream.WriteAsync(data, 0, dataLength); if (null != this.downloadProgress) { @@ -82,7 +82,7 @@ protected override bool ReceiveData(byte[] data, int dataLength) return true; } - protected override void CompleteContent() + public override void CompleteContent() { this.receivedAllData = true; CloseStream(); diff --git a/Assets/Scripts/DownloadHandlerText.cs b/Assets/Scripts/DownloadHandlerText.cs new file mode 100644 index 00000000..363fba7c --- /dev/null +++ b/Assets/Scripts/DownloadHandlerText.cs @@ -0,0 +1,55 @@ +using System; +using System.IO; +using System.Text; +using System.Threading.Tasks; + +namespace QuestAppLauncher +{ + /// + /// Text download handler + /// + public class DownloadHandlerText : DownloadHandler + { + private MemoryStream memoryStream = new MemoryStream(); + + public String text + { + get + { + using (var reader = new StreamReader(this.memoryStream, Encoding.UTF8)) + { + this.memoryStream.Seek(0, SeekOrigin.Begin); + return reader.ReadToEnd(); + } + } + } + + + public DownloadHandlerText(int bufferSize = 32768) : base(new byte[bufferSize]) + { + } + + protected override float GetProgress() + { + return 0; + } + + public override void ReceiveContentLength(int contentLength) + { + } + + public override async Task ReceiveData(byte[] data, int dataLength) + { + await this.memoryStream.WriteAsync(data, 0, dataLength); + return true; + } + + public override void CompleteContent() + { + } + + public void Dispose() + { + } + } +} diff --git a/Assets/Scripts/DownloadHandlerText.cs.meta b/Assets/Scripts/DownloadHandlerText.cs.meta new file mode 100644 index 00000000..4d0b32dd --- /dev/null +++ b/Assets/Scripts/DownloadHandlerText.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3586d999cd130ce4c8e9add1cfa2ae75 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/EnvironmentEntry.cs b/Assets/Scripts/EnvironmentEntry.cs new file mode 100644 index 00000000..bcdd9b0d --- /dev/null +++ b/Assets/Scripts/EnvironmentEntry.cs @@ -0,0 +1,13 @@ +using System.Collections; +using System.Collections.Generic; +using TMPro; +using UnityEngine; + +public class EnvironmentEntry : MonoBehaviour +{ + // TMP text + public TextMeshProUGUI text; + + // Relative path to environment + public string path; +} diff --git a/Assets/Scripts/EnvironmentEntry.cs.meta b/Assets/Scripts/EnvironmentEntry.cs.meta new file mode 100644 index 00000000..eee1c3f9 --- /dev/null +++ b/Assets/Scripts/EnvironmentEntry.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b713b2fc275f57d4c9160233b62610cc +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/EnvironmentHandler.cs b/Assets/Scripts/EnvironmentHandler.cs new file mode 100644 index 00000000..14846703 --- /dev/null +++ b/Assets/Scripts/EnvironmentHandler.cs @@ -0,0 +1,290 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Threading.Tasks; +using TMPro; +using UnityEngine; + +namespace QuestAppLauncher +{ + public class EnvironmentHandler : MonoBehaviour + { + // Environment selected callback + public Action OnEnvironmentSelected; + + // Environment parent container + public GameObject envParentContainer; + + // Environment List Container + public GameObject envListContainer; + + // Environment list entry prefab + public GameObject prefabEnvironmentEntry; + + // Content transform + public Transform contentTransform; + + // Environment folder + private const string EnvironmentFolder = "environments"; + + // Extension search + const string PrefabExtSearch = "*.prefab"; + + /// + /// Show the environment list dialog + /// + public async void ShowList() + { + // Show the dialog + this.envListContainer.SetActive(true); + + // Populate the list + await PopulateAsync(); + } + + public void OnCancel() + { + // Hide the dialog + this.envListContainer.SetActive(false); + } + + public void OnHoverEnter(Transform t) + { + var appEntry = t.gameObject.GetComponent("EnvironmentEntry") as EnvironmentEntry; + if (null != appEntry) + { + // Enable border + EnableBorder(t, true); + } + } + + public void OnHoverExit(Transform t) + { + var appEntry = t.gameObject.GetComponent("EnvironmentEntry") as EnvironmentEntry; + if (null != appEntry) + { + // Disable border + EnableBorder(t, false); + } + } + + public async void OnSelected(Transform t) + { + var entry = t.gameObject.GetComponent("EnvironmentEntry") as EnvironmentEntry; + if (null != entry) + { + // Set the environment + await SetEnvironment(entry.path); + this.envListContainer.SetActive(false); + + // Callback if registered + if (null != OnEnvironmentSelected) + { + OnEnvironmentSelected(entry.path); + } + } + } + + /// + /// Return environment name given its path (i.e. filename w/o extension) + /// + /// Path to environments + /// + public static string GetEnvironmentName(string path) + { + try + { + return Path.GetFileNameWithoutExtension(path); + } + catch (Exception e) + { + Debug.LogFormat("Error trying to get filename of environment: {0} ({1})", path, e.Message); + } + + // Fall back to default + return Config.Environment_None; + } + + /// + /// Sets the environment. + /// + /// Path to environment + /// + public IEnumerator SetEnvironment(string relativePath) + { + ClearEnvironment(); + + if (!IsNoneEnvironment(relativePath)) + { + var path = MakeAbsolutePath(relativePath); + Debug.LogFormat("Setting environment to '{0}'", path); + + var bundleLoadRequest = AssetBundle.LoadFromFileAsync(path); + yield return bundleLoadRequest; + + var assetBundle = bundleLoadRequest.assetBundle; + + if (assetBundle == null) + { + Debug.LogError($"assetBundle is null, path: {path}"); + yield break; + } + + if (assetBundle.GetAllAssetNames().Length == 0) + { + Debug.Log($"No asset names found for {path}"); + yield break; + } + + try + { + var assetName = assetBundle.GetAllAssetNames()[0]; + var assetLoadRequest = assetBundle.LoadAssetAsync(assetName); + yield return assetLoadRequest; + + Debug.Log($"Loaded asset name {assetName}"); + + try + { + GameObject prefab = assetLoadRequest.asset as GameObject; + Instantiate(prefab, this.envParentContainer.transform); + } + catch (Exception e) + { + Debug.LogException(e); + throw; + } + } + finally + { + if (null != assetBundle) + { + assetBundle.Unload(false); + } + } + } + } + + /// + /// Clears existing environment + /// + /// + public void ClearEnvironment() + { + // Clear existing environment + foreach (Transform child in this.envParentContainer.transform) + { + GameObject.Destroy(child.gameObject); + } + } + + /// + /// Populates the list of environments available for pick from + /// + /// + private async Task PopulateAsync() + { + // Get list of environments in background + var environments = await Task.Run(() => + { + return EnumerateEnvironmentFiles(); + }); + + // Clear existing list + foreach (Transform child in this.contentTransform) + { + GameObject.Destroy(child.gameObject); + } + + // Create none entry first + CreateEntry(Config.Environment_None, Config.Environment_None); + + // Populate list of environments + foreach (var env in environments.OrderBy(key => key.Key)) + { + CreateEntry(env.Key, env.Value); + } + } + + /// + /// Instantiate EnvironmentEntry + /// + /// + /// + private void CreateEntry(string name, string path) + { + var newObj = (GameObject)Instantiate(this.prefabEnvironmentEntry, this.contentTransform); + var entry = newObj.GetComponent(); + entry.text.text = name; + entry.path = path; + } + + /// + /// Construct map of environment name -> path + /// + /// Returned map + private Dictionary EnumerateEnvironmentFiles() + { + var environments = new Dictionary(); + + // Enumerate prefab files + foreach (var filePath in Directory.GetFiles( + GetOrCreateEnvironmentPath(), PrefabExtSearch)) + { + environments[Path.GetFileNameWithoutExtension(filePath)] = MakeRelativePath(filePath); + } + + return environments; + } + + private void EnableBorder(Transform t, bool enable) + { + var border = t.Find("Border"); + border?.gameObject.SetActive(enable); + } + + static private string GetOrCreateEnvironmentPath() + { + string path = Path.Combine(AppConfig.persistentDataPath, EnvironmentFolder); + Directory.CreateDirectory(path); + return path; + } + + static private string MakeRelativePath(string path) + { + return path.Substring(AppConfig.persistentDataPath.Length + 1); + } + + static private string MakeAbsolutePath(string path) + { + return Path.Combine(AppConfig.persistentDataPath, path); + } + + static public bool IsNoneEnvironment(string path) + { + return Config.Environment_None.Equals(path, StringComparison.OrdinalIgnoreCase); + } + + static public string GetEnvironmentNameFromPath(string path) + { + if (IsNoneEnvironment(path)) + { + return Config.Environment_None; + } + + try + { + return Path.GetFileNameWithoutExtension(path); + } + catch (Exception e) + { + // Fall back to default + Debug.LogFormat("Error trying to get filename of path: {0} ({1})", path, e.Message); + } + + return Config.Environment_None; + } + } +} \ No newline at end of file diff --git a/Assets/Scripts/EnvironmentHandler.cs.meta b/Assets/Scripts/EnvironmentHandler.cs.meta new file mode 100644 index 00000000..8b812ad1 --- /dev/null +++ b/Assets/Scripts/EnvironmentHandler.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3b73c0f025259b647af56e0caed51194 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/GridPopulation.cs b/Assets/Scripts/GridPopulation.cs index 30d1cad0..426141ae 100644 --- a/Assets/Scripts/GridPopulation.cs +++ b/Assets/Scripts/GridPopulation.cs @@ -42,6 +42,9 @@ public int Compare(ProcessedApp x, ProcessedApp y) // SKybox handler public SkyboxHandler skyboxHandler; + // Environment handler + public EnvironmentHandler environmentHandler; + // Tab containers public GameObject topTabContainer; public GameObject leftTabContainer; @@ -81,6 +84,9 @@ async void Start() // Initialize the core platform Core.AsyncInitialize(); + // Initialize app config on main thread + AppConfig.Initialize(); + // Populate the grid await PopulateAsync(); } @@ -109,10 +115,17 @@ private async Task PopulateAsync(bool isRenameMode = false) // Load configuration var config = ConfigPersistence.LoadConfig(); - // Set skybox if (!isRenameMode) { - this.skyboxHandler.SetSkybox(config.background); + // Set environment if selected; otherwise, set the skybox + if (!EnvironmentHandler.IsNoneEnvironment(config.environment)) + { + await this.environmentHandler.SetEnvironment(config.environment); + } + else + { + this.skyboxHandler.SetSkybox(config.background); + } } // Process apps in background diff --git a/Assets/Scripts/IEnumeratorAwaitExtensions.cs b/Assets/Scripts/IEnumeratorAwaitExtensions.cs index 0790f7e1..c6fb2d05 100644 --- a/Assets/Scripts/IEnumeratorAwaitExtensions.cs +++ b/Assets/Scripts/IEnumeratorAwaitExtensions.cs @@ -45,6 +45,22 @@ public static SimpleCoroutineAwaiter GetAwaiter(this AsyncOperat return GetAwaiterReturnSelf(instruction); } + public static SimpleCoroutineAwaiter GetAwaiter(this IEnumerator coroutine) + { + var awaiter = new SimpleCoroutineAwaiter(); + RunOnUnityScheduler(() => AsyncCoroutineRunner.Instance.StartCoroutine( + new CoroutineWrapper(coroutine, awaiter).Run())); + return awaiter; + } + + public static SimpleCoroutineAwaiter GetAwaiter(this IEnumerator coroutine) + { + var awaiter = new SimpleCoroutineAwaiter(); + RunOnUnityScheduler(() => AsyncCoroutineRunner.Instance.StartCoroutine( + new CoroutineWrapper(coroutine, awaiter).Run())); + return awaiter; + } + static SimpleCoroutineAwaiter GetAwaiterReturnSelf(T instruction) { var awaiter = new SimpleCoroutineAwaiter(); @@ -114,33 +130,140 @@ void INotifyCompletion.OnCompleted(Action continuation) } } - static class InstructionWrappers + class CoroutineWrapper { - public static IEnumerator ReturnSelf( - SimpleCoroutineAwaiter awaiter, T instruction) + readonly SimpleCoroutineAwaiter _awaiter; + readonly Stack _processStack; + + public CoroutineWrapper( + IEnumerator coroutine, SimpleCoroutineAwaiter awaiter) { - yield return instruction; - awaiter.Complete(instruction, null); + _processStack = new Stack(); + _processStack.Push(coroutine); + _awaiter = awaiter; } - } - public static class SyncContextUtil - { - [RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)] - static void Install() + public IEnumerator Run() + { + while (true) + { + var topWorker = _processStack.Peek(); + + bool isDone; + + try + { + isDone = !topWorker.MoveNext(); + } + catch (Exception e) + { + // The IEnumerators we have in the process stack do not tell us the + // actual names of the coroutine methods but it does tell us the objects + // that the IEnumerators are associated with, so we can at least try + // adding that to the exception output + var objectTrace = GenerateObjectTrace(_processStack); + + if (objectTrace.Any()) + { + _awaiter.Complete( + default(T), new Exception( + GenerateObjectTraceMessage(objectTrace), e)); + } + else + { + _awaiter.Complete(default(T), e); + } + + yield break; + } + + if (isDone) + { + _processStack.Pop(); + + if (_processStack.Count == 0) + { + _awaiter.Complete((T)topWorker.Current, null); + yield break; + } + } + + // We could just yield return nested IEnumerator's here but we choose to do + // our own handling here so that we can catch exceptions in nested coroutines + // instead of just top level coroutine + if (topWorker.Current is IEnumerator) + { + _processStack.Push((IEnumerator)topWorker.Current); + } + else + { + // Return the current value to the unity engine so it can handle things like + // WaitForSeconds, WaitToEndOfFrame, etc. + yield return topWorker.Current; + } + } + } + + string GenerateObjectTraceMessage(List objTrace) { - UnitySynchronizationContext = SynchronizationContext.Current; - UnityThreadId = Thread.CurrentThread.ManagedThreadId; + var result = new StringBuilder(); + + foreach (var objType in objTrace) + { + if (result.Length != 0) + { + result.Append(" -> "); + } + + result.Append(objType.ToString()); + } + + result.AppendLine(); + return "Unity Coroutine Object Trace: " + result.ToString(); } - public static int UnityThreadId + static List GenerateObjectTrace(IEnumerable enumerators) { - get; private set; + var objTrace = new List(); + + foreach (var enumerator in enumerators) + { + // NOTE: This only works with scripting engine 4.6 + // And could easily stop working with unity updates + var field = enumerator.GetType().GetField("$this", BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance); + + if (field == null) + { + continue; + } + + var obj = field.GetValue(enumerator); + + if (obj == null) + { + continue; + } + + var objType = obj.GetType(); + + if (!objTrace.Any() || objType != objTrace.Last()) + { + objTrace.Add(objType); + } + } + + objTrace.Reverse(); + return objTrace; } + } - public static SynchronizationContext UnitySynchronizationContext + static class InstructionWrappers + { + public static IEnumerator ReturnSelf( + SimpleCoroutineAwaiter awaiter, T instruction) { - get; private set; + yield return instruction; + awaiter.Complete(instruction, null); } } } diff --git a/Assets/Scripts/RenameHandler.cs b/Assets/Scripts/RenameHandler.cs index a66b9b23..39108027 100644 --- a/Assets/Scripts/RenameHandler.cs +++ b/Assets/Scripts/RenameHandler.cs @@ -90,7 +90,7 @@ await Task.Run(() => using (AndroidJavaClass unity = new AndroidJavaClass("com.unity3d.player.UnityPlayer")) using (AndroidJavaObject currentActivity = unity.GetStatic("currentActivity")) { - var renameIconPackFilePath = Path.Combine(UnityEngine.Application.persistentDataPath, AppProcessor.RenameIconPackFileName); + var renameIconPackFilePath = Path.Combine(AppConfig.persistentDataPath, AppProcessor.RenameIconPackFileName); currentActivity.CallStatic("addFileToZip", renameIconPackFilePath, filePath, this.appToRename.packageId + ".jpg"); } } @@ -127,7 +127,7 @@ public void CloseRenamePanel() /// App name private void AddToRenameJsonFile(string packageId, string appName) { - var renameJsonFilePath = Path.Combine(UnityEngine.Application.persistentDataPath, AppProcessor.RenameJsonFileName); + var renameJsonFilePath = Path.Combine(AppConfig.persistentDataPath, AppProcessor.RenameJsonFileName); Dictionary jsonAppNames = null; if (File.Exists(renameJsonFilePath)) diff --git a/Assets/Scripts/SettingsHandler.cs b/Assets/Scripts/SettingsHandler.cs index fe4ae728..e6624ce7 100644 --- a/Assets/Scripts/SettingsHandler.cs +++ b/Assets/Scripts/SettingsHandler.cs @@ -23,8 +23,10 @@ public class SettingsHandler : MonoBehaviour public GameObject show2DToggle; public GameObject autoUpdateToggle; public GameObject skyBoxButton; + public GameObject environmentButton; public DownloadStatusIndicator downloadStatusIndicator; public SkyboxHandler skyboxHandler; + public EnvironmentHandler environmentHandler; public TextMeshProUGUI versionText; public Toggle tabsAutoOff; @@ -64,6 +66,9 @@ public void OpenSettings() // Skybox callback this.skyboxHandler.OnSkyboxSelected = OnSkyboxSelected; + // Environment callback + this.environmentHandler.OnEnvironmentSelected = OnEnvironmentSelected; + // Set version text this.versionText.text = string.Format("Version: {0}", Application.version); @@ -88,6 +93,9 @@ public void OpenSettings() // Set skybox button text this.skyBoxButton.GetComponentInChildren().text = SkyboxHandler.GetSkyboxNameFromPath(this.config.background); + // Set environment button text + this.environmentButton.GetComponentInChildren().text = EnvironmentHandler.GetEnvironmentNameFromPath(this.config.environment); + // Set auto-update toggle this.autoUpdateToggle.GetComponent().SetIsOnWithoutNotify(this.config.autoUpdate); @@ -156,6 +164,18 @@ public void DeleteExcludedApksFile() } public void OnSkyboxSelected(string skyboxPath) + { + if (!EnvironmentHandler.IsNoneEnvironment(this.config.environment)) + { + // Clear environment if selected + this.environmentHandler.ClearEnvironment(); + SaveEnvironmentSelection(Config.Environment_None); + } + + SaveSkyboxSelection(skyboxPath); + } + + private void SaveSkyboxSelection(string skyboxPath) { // Update text this.skyBoxButton.GetComponentInChildren().text = SkyboxHandler.GetSkyboxNameFromPath(skyboxPath); @@ -168,6 +188,36 @@ public void OnSkyboxSelected(string skyboxPath) } } + public void OnEnvironmentSelected(string environmentPath) + { + // If no environment selected, load up the skybox. Otherwise, clear the skybox + if (EnvironmentHandler.IsNoneEnvironment(environmentPath)) + { + this.skyboxHandler.SetSkybox(this.config.background); + } + else + { + // Reset skybox selection to default + this.skyboxHandler.ClearSkybox(); + SaveSkyboxSelection(Config.Background_Default); + } + + SaveEnvironmentSelection(environmentPath); + } + + private void SaveEnvironmentSelection(string environmentPath) + { + // Update text + this.environmentButton.GetComponentInChildren().text = EnvironmentHandler.GetEnvironmentNameFromPath(environmentPath); + + // Save config with new skybox selection + if (!this.config.environment.Equals(environmentPath, StringComparison.OrdinalIgnoreCase)) + { + this.config.environment = environmentPath; + ConfigPersistence.SaveConfig(this.config); + } + } + public void DeleteRenameFiles() { Debug.Log("Delete Rename files"); @@ -197,6 +247,11 @@ public void ShowSkyboxList() this.skyboxHandler.ShowList(); } + public void ShowEnvironmentList() + { + this.environmentHandler.ShowList(); + } + private bool HasUsageStatsPermissions() { // Check if we have UsageStats permission diff --git a/Assets/Scripts/SkyboxHandler.cs b/Assets/Scripts/SkyboxHandler.cs index 31cab484..4a188f50 100644 --- a/Assets/Scripts/SkyboxHandler.cs +++ b/Assets/Scripts/SkyboxHandler.cs @@ -229,6 +229,37 @@ public async Task SetSkybox(string skyboxPath) } } + /// + /// Clears the skybox. + /// + /// + public void ClearSkybox() + { + Debug.Log("Clearing skybox"); + + if (null == this.defaultSkybox) + { + // Save off the default skybox + this.defaultSkybox = RenderSettings.skybox; + } + + // Destroy existing skybox + if (null != RenderSettings.skybox && RenderSettings.skybox != this.defaultSkybox) + { + // Destroy texture + var oldTexture = RenderSettings.skybox.GetTexture("_Tex"); + if (null != oldTexture) + { + DestroyImmediate(oldTexture); + } + + // Destroy material + DestroyImmediate(RenderSettings.skybox); + } + + RenderSettings.skybox = null; + } + /// /// Gets cubemap from a 2D texture that represents 6-sided cube as a horizontal cross: /// [ ] [ +y ] [ ] @@ -298,16 +329,29 @@ private async Task PopulateAsync() GameObject.Destroy(child.gameObject); } + // Add default entry first + CreateEntry(Config.Background_Default, Config.Background_Default); + // Populate list of skyboxes - foreach(var skybox in skyboxes.OrderBy(key => key.Key)) + foreach (var skybox in skyboxes.OrderBy(key => key.Key)) { - var newObj = (GameObject)Instantiate(this.prefabSkyboxEntry, this.contentTransform); - var entry = newObj.GetComponent(); - entry.text.text = skybox.Key; - entry.path = skybox.Value; + CreateEntry(skybox.Key, skybox.Value); } } + /// + /// Instantiate SkyboxEntry + /// + /// + /// + private void CreateEntry(string name, string path) + { + var newObj = (GameObject)Instantiate(this.prefabSkyboxEntry, this.contentTransform); + var entry = newObj.GetComponent(); + entry.text.text = name; + entry.path = path; + } + /// /// Construct map of backgrond name -> path /// @@ -316,9 +360,6 @@ private Dictionary EnumerateSkyboxFiles() { var skyboxes = new Dictionary(); - // Add default - skyboxes[Config.Background_Default] = Config.Background_Default; - // Enumerate jpg files foreach (var filePath in Directory.GetFiles( GetOrCreateSkymapPath(), JpgExtSearch)) @@ -344,19 +385,19 @@ private void EnableBorder(Transform t, bool enable) static private string GetOrCreateSkymapPath() { - string path = Path.Combine(UnityEngine.Application.persistentDataPath, SkyboxFolder); + string path = Path.Combine(AppConfig.persistentDataPath, SkyboxFolder); Directory.CreateDirectory(path); return path; } static private string MakeRelativeSkymapPath(string path) { - return path.Substring(UnityEngine.Application.persistentDataPath.Length + 1); + return path.Substring(AppConfig.persistentDataPath.Length + 1); } static private string MakeAbsoluteSkymapPath(string path) { - return Path.Combine(UnityEngine.Application.persistentDataPath, path); + return Path.Combine(AppConfig.persistentDataPath, path); } static public bool IsDefaultSkybox(string path) diff --git a/Assets/Scripts/SyncContextUtil.cs b/Assets/Scripts/SyncContextUtil.cs new file mode 100644 index 00000000..92e92c71 --- /dev/null +++ b/Assets/Scripts/SyncContextUtil.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Runtime.CompilerServices; +using System.Threading; +using System.Threading.Tasks; +using UnityEngine; + +namespace QuestAppLauncher +{ + public static class SyncContextUtil + { + [RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)] + static void Install() + { + UnitySynchronizationContext = SynchronizationContext.Current; + UnityThreadId = Thread.CurrentThread.ManagedThreadId; + } + + public static int UnityThreadId + { + get; private set; + } + + public static SynchronizationContext UnitySynchronizationContext + { + get; private set; + } + } +} + diff --git a/Assets/Scripts/SyncContextUtil.cs.meta b/Assets/Scripts/SyncContextUtil.cs.meta new file mode 100644 index 00000000..37544eb4 --- /dev/null +++ b/Assets/Scripts/SyncContextUtil.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7b83209a117755844a1ec75d19be594d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/WebRequest.cs b/Assets/Scripts/WebRequest.cs new file mode 100644 index 00000000..67f788f9 --- /dev/null +++ b/Assets/Scripts/WebRequest.cs @@ -0,0 +1,110 @@ +using System; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Threading.Tasks; + +namespace QuestAppLauncher +{ + /// + /// WebRequest helper + /// + public class WebRequest : IDisposable + { + private HttpClient client; + private HttpResponseMessage response; + private string url; + + public DownloadHandler downloadHandler + { + get; + set; + } + + public bool isNetworkError + { + get; + private set; + } + + public bool isHttpError + { + get; + private set; + } + + public string error + { + get; + private set; + } + + public WebRequest(string url) + { + this.url = url; + this.client = new HttpClient(); + this.client.DefaultRequestHeaders.TryAddWithoutValidation("User-Agent", "WebRequest"); + } + + public void Dispose() + { + response?.Dispose(); + response = null; + } + + public void SetRequestHeader(string header, string value) + { + this.client.DefaultRequestHeaders.Add(header, value); + } + + public HttpResponseHeaders GetResponseHeaders() + { + return this.response?.Headers; + } + + public async Task SendWebRequest() { + if (this.downloadHandler == null) + { + throw new System.Exception("Null download handler"); + } + + try + { + using (this.response = client.GetAsync(this.url, HttpCompletionOption.ResponseHeadersRead).Result) + { + this.isHttpError = !this.response.IsSuccessStatusCode; + if (this.isHttpError) + { + this.error = $"Http status error: {this.response.StatusCode}"; + return; + } + + this.downloadHandler.ReceiveContentLength((int?)this.response.Content.Headers.ContentLength ?? -1); + using (var contentStream = await this.response.Content.ReadAsStreamAsync()) + { + do + { + var read = await contentStream.ReadAsync(this.downloadHandler.buffer, 0, this.downloadHandler.buffer.Length); + if (0 == read) + { + break; + } + var ret = await this.downloadHandler.ReceiveData(this.downloadHandler.buffer, read); + if (!ret) + { + break; + } + } + while (true); + } + + this.downloadHandler.CompleteContent(); + } + } + catch (HttpRequestException httpException) + { + this.isNetworkError = true; + this.error = httpException.Message; + } + } + } +} \ No newline at end of file diff --git a/Assets/Scripts/WebRequest.cs.meta b/Assets/Scripts/WebRequest.cs.meta new file mode 100644 index 00000000..f71a0d25 --- /dev/null +++ b/Assets/Scripts/WebRequest.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c27c8d75a0159a746a2f062ffa8d6371 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/MonoBleedingEdge/EmbedRuntime/MonoPosixHelper.dll b/MonoBleedingEdge/EmbedRuntime/MonoPosixHelper.dll new file mode 100644 index 00000000..6f4a3266 Binary files /dev/null and b/MonoBleedingEdge/EmbedRuntime/MonoPosixHelper.dll differ diff --git a/MonoBleedingEdge/EmbedRuntime/mono-2.0-bdwgc.dll b/MonoBleedingEdge/EmbedRuntime/mono-2.0-bdwgc.dll new file mode 100644 index 00000000..56f7b810 Binary files /dev/null and b/MonoBleedingEdge/EmbedRuntime/mono-2.0-bdwgc.dll differ diff --git a/MonoBleedingEdge/etc/mono/2.0/Browsers/Compat.browser b/MonoBleedingEdge/etc/mono/2.0/Browsers/Compat.browser new file mode 100644 index 00000000..dcedf7f7 --- /dev/null +++ b/MonoBleedingEdge/etc/mono/2.0/Browsers/Compat.browser @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MonoBleedingEdge/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx b/MonoBleedingEdge/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx new file mode 100644 index 00000000..f4d74bff --- /dev/null +++ b/MonoBleedingEdge/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx @@ -0,0 +1,1901 @@ +<%-- +// +// DefaultWsdlHelpGenerator.aspx: +// +// Author: +// Lluis Sanchez Gual (lluis@ximian.com) +// +// (C) 2003 Ximian, Inc. http://www.ximian.com +// +--%> + +<%@ Import Namespace="System.Collections" %> +<%@ Import Namespace="System.Collections.Generic" %> +<%@ Import Namespace="System.IO" %> +<%@ Import Namespace="System.Xml.Serialization" %> +<%@ Import Namespace="System.Xml" %> +<%@ Import Namespace="System.Xml.Schema" %> +<%@ Import Namespace="System.Web.Services" %> +<%@ Import Namespace="System.Web.Services.Description" %> +<%@ Import Namespace="System.Web.Services.Configuration" %> +<%@ Import Namespace="System.Web.Configuration" %> +<%@ Import Namespace="System" %> +<%@ Import Namespace="System.Net" %> +<%@ Import Namespace="System.Globalization" %> +<%@ Import Namespace="System.Resources" %> +<%@ Import Namespace="System.Diagnostics" %> +<%@ Import Namespace="System.CodeDom" %> +<%@ Import Namespace="System.CodeDom.Compiler" %> +<%@ Import Namespace="Microsoft.CSharp" %> +<%@ Import Namespace="Microsoft.VisualBasic" %> +<%@ Import Namespace="System.Text" %> +<%@ Import Namespace="System.Text.RegularExpressions" %> +<%@ Import Namespace="System.Security.Cryptography.X509Certificates" %> +<%@ Assembly name="System.Web.Services" %> +<%@ Page debug="true" %> + + + + + + <% + Response.Write (""); + %> + <%=WebServiceName%> Web Service + + + + + + + +
+Web Service
+<%=WebServiceName%> +
+ + + + + + + + +
+
+Overview
+
+Service Description +
+Client proxy +

+ + + <%#FormatBindingName(DataBinder.Eval(Container.DataItem, "Name").ToString())%> + + + op=<%#GetOpName(Container.DataItem)%>&bnd=<%#DataBinder.Eval(Container.DataItem, "Binding.Name")%>"><%#GetOpName(Container.DataItem)%> +
+
+
+
+
+
+ +
+ +<% if (CurrentPage == "main") {%> + + + +

Web Service Overview

+ <%=WebServiceDescription%> +

+ <% if (ProfileViolations != null && ProfileViolations.Count > 0) { %> +

Basic Profile Conformance

+ This web service does not conform to WS-I Basic Profile v1.1 + <% + Response.Write ("
    "); + foreach (BasicProfileViolation vio in ProfileViolations) { + Response.Write ("
  • " + vio.NormativeStatement + ": " + vio.Details); + Response.Write ("
      "); + foreach (string ele in vio.Elements) + Response.Write ("
    • " + ele + "
    • "); + Response.Write ("
    "); + Response.Write ("
  • "); + } + Response.Write ("
"); + }%> + +<%} if (DefaultBinding == null) {%> +This service does not contain any public web method. +<%} else if (CurrentPage == "op") {%> + + + + <%=CurrentOperationName%> +

+ <% WriteTabs (); %> +


+ + <% if (CurrentTab == "main") { %> + Input Parameters +
+ <% if (InParams.Count == 0) { %> + No input parameters
+ <% } else { %> + + + + + + + + + +
<%#DataBinder.Eval(Container.DataItem, "Name")%><%#DataBinder.Eval(Container.DataItem, "Type")%>
+ <% } %> +
+ + <% if (OutParams.Count > 0) { %> + Output Parameters +
+ + + + + + + + + +
<%#DataBinder.Eval(Container.DataItem, "Name")%><%#DataBinder.Eval(Container.DataItem, "Type")%>
+
+ <% } %> + + Remarks +
+ <%=OperationDocumentation%> +

+ Technical information +
+ Format: <%=CurrentOperationFormat%> +
Supported protocols: <%=CurrentOperationProtocols%> + <% } %> + + + + <% if (CurrentTab == "test") { + if (CurrentOperationSupportsTest) {%> + Enter values for the parameters and click the 'Invoke' button to test this method:

+
+ + + + + + + + + + + + + + + +
<%#DataBinder.Eval(Container.DataItem, "Name")%>: ">
 
+
+
"> + The web service returned the following result:

+
+
+ +
+ <% } else {%> + The test form is not available for this operation because it has parameters with a complex structure. + <% } %> + <% } %> + + + + <% if (CurrentTab == "msg") { %> + + The following are sample SOAP requests and responses for each protocol supported by this method: +

+ + <% if (IsOperationSupported ("Soap")) { %> + Soap +

+
<%=GenerateOperationMessages ("Soap", true)%>
+
+
<%=GenerateOperationMessages ("Soap", false)%>
+
+ <% } %> + <% if (IsOperationSupported ("HttpGet")) { %> + HTTP Get +

+
<%=GenerateOperationMessages ("HttpGet", true)%>
+
+
<%=GenerateOperationMessages ("HttpGet", false)%>
+
+ <% } %> + <% if (IsOperationSupported ("HttpPost")) { %> + HTTP Post +

+
<%=GenerateOperationMessages ("HttpPost", true)%>
+
+
<%=GenerateOperationMessages ("HttpPost", false)%>
+
+ <% } %> + + <% } %> +<%} else if (CurrentPage == "proxy") {%> + +
+ Select the language for which you want to generate a proxy +   + +    +
+
+ <%=CurrentProxytName%>    + Download +

+
+
<%=GetProxyCode ()%>
+
+<%} else if (CurrentPage == "wsdl") {%> + + <% if (descriptions.Count > 1 || schemas.Count > 1) {%> + The description of this web service is composed by several documents. Click on the document you want to see: + + + + <%} else {%> + <%}%> +
+ <%=CurrentDocumentName%>    + Download +

+
+
<%=GenerateDocument ()%>
+
+ +<%}%> + +














+
+ + diff --git a/MonoBleedingEdge/etc/mono/2.0/machine.config b/MonoBleedingEdge/etc/mono/2.0/machine.config new file mode 100644 index 00000000..9da7be98 --- /dev/null +++ b/MonoBleedingEdge/etc/mono/2.0/machine.config @@ -0,0 +1,283 @@ + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+ + +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MonoBleedingEdge/etc/mono/2.0/settings.map b/MonoBleedingEdge/etc/mono/2.0/settings.map new file mode 100644 index 00000000..9a52ccc0 --- /dev/null +++ b/MonoBleedingEdge/etc/mono/2.0/settings.map @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/MonoBleedingEdge/etc/mono/2.0/web.config b/MonoBleedingEdge/etc/mono/2.0/web.config new file mode 100644 index 00000000..e1428f8c --- /dev/null +++ b/MonoBleedingEdge/etc/mono/2.0/web.config @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MonoBleedingEdge/etc/mono/4.0/Browsers/Compat.browser b/MonoBleedingEdge/etc/mono/4.0/Browsers/Compat.browser new file mode 100644 index 00000000..dcedf7f7 --- /dev/null +++ b/MonoBleedingEdge/etc/mono/4.0/Browsers/Compat.browser @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MonoBleedingEdge/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx b/MonoBleedingEdge/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx new file mode 100644 index 00000000..f4d74bff --- /dev/null +++ b/MonoBleedingEdge/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx @@ -0,0 +1,1901 @@ +<%-- +// +// DefaultWsdlHelpGenerator.aspx: +// +// Author: +// Lluis Sanchez Gual (lluis@ximian.com) +// +// (C) 2003 Ximian, Inc. http://www.ximian.com +// +--%> + +<%@ Import Namespace="System.Collections" %> +<%@ Import Namespace="System.Collections.Generic" %> +<%@ Import Namespace="System.IO" %> +<%@ Import Namespace="System.Xml.Serialization" %> +<%@ Import Namespace="System.Xml" %> +<%@ Import Namespace="System.Xml.Schema" %> +<%@ Import Namespace="System.Web.Services" %> +<%@ Import Namespace="System.Web.Services.Description" %> +<%@ Import Namespace="System.Web.Services.Configuration" %> +<%@ Import Namespace="System.Web.Configuration" %> +<%@ Import Namespace="System" %> +<%@ Import Namespace="System.Net" %> +<%@ Import Namespace="System.Globalization" %> +<%@ Import Namespace="System.Resources" %> +<%@ Import Namespace="System.Diagnostics" %> +<%@ Import Namespace="System.CodeDom" %> +<%@ Import Namespace="System.CodeDom.Compiler" %> +<%@ Import Namespace="Microsoft.CSharp" %> +<%@ Import Namespace="Microsoft.VisualBasic" %> +<%@ Import Namespace="System.Text" %> +<%@ Import Namespace="System.Text.RegularExpressions" %> +<%@ Import Namespace="System.Security.Cryptography.X509Certificates" %> +<%@ Assembly name="System.Web.Services" %> +<%@ Page debug="true" %> + + + + + + <% + Response.Write (""); + %> + <%=WebServiceName%> Web Service + + + + + + + +
+Web Service
+<%=WebServiceName%> +
+ + + + + + + + +
+
+Overview
+
+Service Description +
+Client proxy +

+ + + <%#FormatBindingName(DataBinder.Eval(Container.DataItem, "Name").ToString())%> + + + op=<%#GetOpName(Container.DataItem)%>&bnd=<%#DataBinder.Eval(Container.DataItem, "Binding.Name")%>"><%#GetOpName(Container.DataItem)%> +
+
+
+
+
+
+ +
+ +<% if (CurrentPage == "main") {%> + + + +

Web Service Overview

+ <%=WebServiceDescription%> +

+ <% if (ProfileViolations != null && ProfileViolations.Count > 0) { %> +

Basic Profile Conformance

+ This web service does not conform to WS-I Basic Profile v1.1 + <% + Response.Write ("
    "); + foreach (BasicProfileViolation vio in ProfileViolations) { + Response.Write ("
  • " + vio.NormativeStatement + ": " + vio.Details); + Response.Write ("
      "); + foreach (string ele in vio.Elements) + Response.Write ("
    • " + ele + "
    • "); + Response.Write ("
    "); + Response.Write ("
  • "); + } + Response.Write ("
"); + }%> + +<%} if (DefaultBinding == null) {%> +This service does not contain any public web method. +<%} else if (CurrentPage == "op") {%> + + + + <%=CurrentOperationName%> +

+ <% WriteTabs (); %> +


+ + <% if (CurrentTab == "main") { %> + Input Parameters +
+ <% if (InParams.Count == 0) { %> + No input parameters
+ <% } else { %> + + + + + + + + + +
<%#DataBinder.Eval(Container.DataItem, "Name")%><%#DataBinder.Eval(Container.DataItem, "Type")%>
+ <% } %> +
+ + <% if (OutParams.Count > 0) { %> + Output Parameters +
+ + + + + + + + + +
<%#DataBinder.Eval(Container.DataItem, "Name")%><%#DataBinder.Eval(Container.DataItem, "Type")%>
+
+ <% } %> + + Remarks +
+ <%=OperationDocumentation%> +

+ Technical information +
+ Format: <%=CurrentOperationFormat%> +
Supported protocols: <%=CurrentOperationProtocols%> + <% } %> + + + + <% if (CurrentTab == "test") { + if (CurrentOperationSupportsTest) {%> + Enter values for the parameters and click the 'Invoke' button to test this method:

+
+ + + + + + + + + + + + + + + +
<%#DataBinder.Eval(Container.DataItem, "Name")%>: ">
 
+
+
"> + The web service returned the following result:

+
+
+ +
+ <% } else {%> + The test form is not available for this operation because it has parameters with a complex structure. + <% } %> + <% } %> + + + + <% if (CurrentTab == "msg") { %> + + The following are sample SOAP requests and responses for each protocol supported by this method: +

+ + <% if (IsOperationSupported ("Soap")) { %> + Soap +

+
<%=GenerateOperationMessages ("Soap", true)%>
+
+
<%=GenerateOperationMessages ("Soap", false)%>
+
+ <% } %> + <% if (IsOperationSupported ("HttpGet")) { %> + HTTP Get +

+
<%=GenerateOperationMessages ("HttpGet", true)%>
+
+
<%=GenerateOperationMessages ("HttpGet", false)%>
+
+ <% } %> + <% if (IsOperationSupported ("HttpPost")) { %> + HTTP Post +

+
<%=GenerateOperationMessages ("HttpPost", true)%>
+
+
<%=GenerateOperationMessages ("HttpPost", false)%>
+
+ <% } %> + + <% } %> +<%} else if (CurrentPage == "proxy") {%> + +
+ Select the language for which you want to generate a proxy +   + +    +
+
+ <%=CurrentProxytName%>    + Download +

+
+
<%=GetProxyCode ()%>
+
+<%} else if (CurrentPage == "wsdl") {%> + + <% if (descriptions.Count > 1 || schemas.Count > 1) {%> + The description of this web service is composed by several documents. Click on the document you want to see: + + + + <%} else {%> + <%}%> +
+ <%=CurrentDocumentName%>    + Download +

+
+
<%=GenerateDocument ()%>
+
+ +<%}%> + +














+
+ + diff --git a/MonoBleedingEdge/etc/mono/4.0/machine.config b/MonoBleedingEdge/etc/mono/4.0/machine.config new file mode 100644 index 00000000..12839c1f --- /dev/null +++ b/MonoBleedingEdge/etc/mono/4.0/machine.config @@ -0,0 +1,310 @@ + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ + + +
+ +
+
+
+
+ + + + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MonoBleedingEdge/etc/mono/4.0/settings.map b/MonoBleedingEdge/etc/mono/4.0/settings.map new file mode 100644 index 00000000..4c53aca6 --- /dev/null +++ b/MonoBleedingEdge/etc/mono/4.0/settings.map @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/MonoBleedingEdge/etc/mono/4.0/web.config b/MonoBleedingEdge/etc/mono/4.0/web.config new file mode 100644 index 00000000..2a7dfd2e --- /dev/null +++ b/MonoBleedingEdge/etc/mono/4.0/web.config @@ -0,0 +1,253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MonoBleedingEdge/etc/mono/4.5/Browsers/Compat.browser b/MonoBleedingEdge/etc/mono/4.5/Browsers/Compat.browser new file mode 100644 index 00000000..dcedf7f7 --- /dev/null +++ b/MonoBleedingEdge/etc/mono/4.5/Browsers/Compat.browser @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MonoBleedingEdge/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx b/MonoBleedingEdge/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx new file mode 100644 index 00000000..f4d74bff --- /dev/null +++ b/MonoBleedingEdge/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx @@ -0,0 +1,1901 @@ +<%-- +// +// DefaultWsdlHelpGenerator.aspx: +// +// Author: +// Lluis Sanchez Gual (lluis@ximian.com) +// +// (C) 2003 Ximian, Inc. http://www.ximian.com +// +--%> + +<%@ Import Namespace="System.Collections" %> +<%@ Import Namespace="System.Collections.Generic" %> +<%@ Import Namespace="System.IO" %> +<%@ Import Namespace="System.Xml.Serialization" %> +<%@ Import Namespace="System.Xml" %> +<%@ Import Namespace="System.Xml.Schema" %> +<%@ Import Namespace="System.Web.Services" %> +<%@ Import Namespace="System.Web.Services.Description" %> +<%@ Import Namespace="System.Web.Services.Configuration" %> +<%@ Import Namespace="System.Web.Configuration" %> +<%@ Import Namespace="System" %> +<%@ Import Namespace="System.Net" %> +<%@ Import Namespace="System.Globalization" %> +<%@ Import Namespace="System.Resources" %> +<%@ Import Namespace="System.Diagnostics" %> +<%@ Import Namespace="System.CodeDom" %> +<%@ Import Namespace="System.CodeDom.Compiler" %> +<%@ Import Namespace="Microsoft.CSharp" %> +<%@ Import Namespace="Microsoft.VisualBasic" %> +<%@ Import Namespace="System.Text" %> +<%@ Import Namespace="System.Text.RegularExpressions" %> +<%@ Import Namespace="System.Security.Cryptography.X509Certificates" %> +<%@ Assembly name="System.Web.Services" %> +<%@ Page debug="true" %> + + + + + + <% + Response.Write (""); + %> + <%=WebServiceName%> Web Service + + + + + + + +
+Web Service
+<%=WebServiceName%> +
+ + + + + + + + +
+
+Overview
+
+Service Description +
+Client proxy +

+ + + <%#FormatBindingName(DataBinder.Eval(Container.DataItem, "Name").ToString())%> + + + op=<%#GetOpName(Container.DataItem)%>&bnd=<%#DataBinder.Eval(Container.DataItem, "Binding.Name")%>"><%#GetOpName(Container.DataItem)%> +
+
+
+
+
+
+ +
+ +<% if (CurrentPage == "main") {%> + + + +

Web Service Overview

+ <%=WebServiceDescription%> +

+ <% if (ProfileViolations != null && ProfileViolations.Count > 0) { %> +

Basic Profile Conformance

+ This web service does not conform to WS-I Basic Profile v1.1 + <% + Response.Write ("
    "); + foreach (BasicProfileViolation vio in ProfileViolations) { + Response.Write ("
  • " + vio.NormativeStatement + ": " + vio.Details); + Response.Write ("
      "); + foreach (string ele in vio.Elements) + Response.Write ("
    • " + ele + "
    • "); + Response.Write ("
    "); + Response.Write ("
  • "); + } + Response.Write ("
"); + }%> + +<%} if (DefaultBinding == null) {%> +This service does not contain any public web method. +<%} else if (CurrentPage == "op") {%> + + + + <%=CurrentOperationName%> +

+ <% WriteTabs (); %> +


+ + <% if (CurrentTab == "main") { %> + Input Parameters +
+ <% if (InParams.Count == 0) { %> + No input parameters
+ <% } else { %> + + + + + + + + + +
<%#DataBinder.Eval(Container.DataItem, "Name")%><%#DataBinder.Eval(Container.DataItem, "Type")%>
+ <% } %> +
+ + <% if (OutParams.Count > 0) { %> + Output Parameters +
+ + + + + + + + + +
<%#DataBinder.Eval(Container.DataItem, "Name")%><%#DataBinder.Eval(Container.DataItem, "Type")%>
+
+ <% } %> + + Remarks +
+ <%=OperationDocumentation%> +

+ Technical information +
+ Format: <%=CurrentOperationFormat%> +
Supported protocols: <%=CurrentOperationProtocols%> + <% } %> + + + + <% if (CurrentTab == "test") { + if (CurrentOperationSupportsTest) {%> + Enter values for the parameters and click the 'Invoke' button to test this method:

+
+ + + + + + + + + + + + + + + +
<%#DataBinder.Eval(Container.DataItem, "Name")%>: ">
 
+
+
"> + The web service returned the following result:

+
+
+ +
+ <% } else {%> + The test form is not available for this operation because it has parameters with a complex structure. + <% } %> + <% } %> + + + + <% if (CurrentTab == "msg") { %> + + The following are sample SOAP requests and responses for each protocol supported by this method: +

+ + <% if (IsOperationSupported ("Soap")) { %> + Soap +

+
<%=GenerateOperationMessages ("Soap", true)%>
+
+
<%=GenerateOperationMessages ("Soap", false)%>
+
+ <% } %> + <% if (IsOperationSupported ("HttpGet")) { %> + HTTP Get +

+
<%=GenerateOperationMessages ("HttpGet", true)%>
+
+
<%=GenerateOperationMessages ("HttpGet", false)%>
+
+ <% } %> + <% if (IsOperationSupported ("HttpPost")) { %> + HTTP Post +

+
<%=GenerateOperationMessages ("HttpPost", true)%>
+
+
<%=GenerateOperationMessages ("HttpPost", false)%>
+
+ <% } %> + + <% } %> +<%} else if (CurrentPage == "proxy") {%> + +
+ Select the language for which you want to generate a proxy +   + +    +
+
+ <%=CurrentProxytName%>    + Download +

+
+
<%=GetProxyCode ()%>
+
+<%} else if (CurrentPage == "wsdl") {%> + + <% if (descriptions.Count > 1 || schemas.Count > 1) {%> + The description of this web service is composed by several documents. Click on the document you want to see: + + + + <%} else {%> + <%}%> +
+ <%=CurrentDocumentName%>    + Download +

+
+
<%=GenerateDocument ()%>
+
+ +<%}%> + +














+
+ + diff --git a/MonoBleedingEdge/etc/mono/4.5/machine.config b/MonoBleedingEdge/etc/mono/4.5/machine.config new file mode 100644 index 00000000..61f78898 --- /dev/null +++ b/MonoBleedingEdge/etc/mono/4.5/machine.config @@ -0,0 +1,313 @@ + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ + + +
+ +
+
+
+
+ + + + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MonoBleedingEdge/etc/mono/4.5/settings.map b/MonoBleedingEdge/etc/mono/4.5/settings.map new file mode 100644 index 00000000..4c53aca6 --- /dev/null +++ b/MonoBleedingEdge/etc/mono/4.5/settings.map @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/MonoBleedingEdge/etc/mono/4.5/web.config b/MonoBleedingEdge/etc/mono/4.5/web.config new file mode 100644 index 00000000..324c529f --- /dev/null +++ b/MonoBleedingEdge/etc/mono/4.5/web.config @@ -0,0 +1,253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MonoBleedingEdge/etc/mono/browscap.ini b/MonoBleedingEdge/etc/mono/browscap.ini new file mode 100644 index 00000000..1267e1de --- /dev/null +++ b/MonoBleedingEdge/etc/mono/browscap.ini @@ -0,0 +1,16979 @@ +;;; Provided courtesy of http://browsers.garykeith.com +;;; Created on Wednesday, June 17, 2009 at 6:30 AM GMT + +[GJK_Browscap_Version] +Version=4476 +Released=Wed, 17 Jun 2009 06:30:21 -0000 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DefaultProperties + +[DefaultProperties] +Browser=DefaultProperties +Version=0 +MajorVer=0 +MinorVer=0 +Platform=unknown +Alpha=false +Beta=false +Win16=false +Win32=false +Win64=false +Frames=false +IFrames=false +Tables=false +Cookies=false +BackgroundSounds=false +CDF=false +VBScript=false +JavaApplets=false +JavaScript=false +ActiveXControls=false +isBanned=false +isMobileDevice=false +isSyndicationReader=false +Crawler=false +CssVersion=0 +supportsCSS=false +AOL=false +aolVersion=0 +ECMAScriptVersion=0.0 +W3CDOMVersion=0.0 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ask + +[Ask] +Parent=DefaultProperties +Browser=Ask +Frames=true +Tables=true +Crawler=true + +[Mozilla/?.0 (compatible; Ask Jeeves/Teoma*)] +Parent=Ask +Browser=Teoma + +[Mozilla/2.0 (compatible; Ask Jeeves)] +Parent=Ask +Browser=AskJeeves + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Baidu + +[Baidu] +Parent=DefaultProperties +Browser=Baidu +Frames=true +Tables=true +Crawler=true + +[BaiduImageSpider*] +Parent=Baidu +Browser=BaiduImageSpider + +[Baiduspider*] +Parent=Baidu +Browser=BaiDu + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google + +[Google] +Parent=DefaultProperties +Browser=Google +Frames=true +IFrames=true +Tables=true +JavaScript=true +Crawler=true + +[* (compatible; Googlebot-Mobile/2.1; *http://www.google.com/bot.html)] +Parent=Google +Browser=Googlebot-Mobile +Frames=false +IFrames=false +Tables=false + +[*Google Wireless Transcoder*] +Parent=Google +Browser=Google Wireless Transcoder + +[AdsBot-Google (?http://www.google.com/adsbot.html)] +Parent=Google +Browser=AdsBot-Google + +[Feedfetcher-Google-iGoogleGadgets;*] +Parent=Google +Browser=iGoogleGadgets +isBanned=true +isSyndicationReader=true + +[Feedfetcher-Google;*] +Parent=Google +Browser=Feedfetcher-Google +isBanned=true +isSyndicationReader=true + +[Google OpenSocial agent (http://www.google.com/feedfetcher.html)] +Parent=Google +Browser=Google OpenSocial + +[Google-Site-Verification/1.0] +Parent=Google +Browser=Google-Site-Verification + +[Google-Sitemaps/*] +Parent=Google +Browser=Google-Sitemaps + +[Googlebot-Image/*] +Parent=Google +Browser=Googlebot-Image +CDF=true + +[googlebot-urlconsole] +Parent=Google +Browser=googlebot-urlconsole + +[Googlebot-Video/1.0] +Parent=Google +Browser=Google-Video + +[Googlebot/2.1 (?http://www.google.com/bot.html)] +Parent=Google +Browser=Googlebot + +[Googlebot/2.1 (?http://www.googlebot.com/bot.html)] +Parent=Google +Browser=Googlebot + +[Googlebot/Test*] +Parent=Google +Browser=Googlebot/Test + +[gsa-crawler*] +Parent=Google +Browser=Google Search Appliance +isBanned=true + +[Mediapartners-Google*] +Parent=Google +Browser=Mediapartners-Google + +[Mozilla/4.0 (compatible; Google Desktop)] +Parent=Google +Browser=Google Desktop + +[Mozilla/4.0 (compatible; GoogleToolbar*)] +Parent=Google +Browser=Google Toolbar +isBanned=true + +[Mozilla/5.0 (compatible; Google Keyword Tool;*)] +Parent=Google +Browser=Google Keyword Tool + +[Mozilla/5.0 (compatible; Googlebot/2.1; ?http://www.google.com/bot.html)] +Parent=Google +Browser=Google Webmaster Tools + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Inktomi + +[Inktomi] +Parent=DefaultProperties +Browser=Inktomi +Frames=true +Tables=true +Crawler=true + +[* (compatible;YahooSeeker/M1A1-R2D2; *)] +Parent=Inktomi +Browser=YahooSeeker-Mobile +Frames=false +Tables=false + +[Mozilla/4.0] +Parent=Inktomi + +[Mozilla/4.0 (compatible; MSIE 5.0; Windows NT)] +Parent=Inktomi +Win32=true + +[Mozilla/4.0 (compatible; Yahoo Japan; for robot study; kasugiya)] +Parent=Inktomi +Browser=Yahoo! RobotStudy +isBanned=true + +[Mozilla/5.0 (compatible; BMC/1.0 (Y!J-AGENT))] +Parent=Inktomi +Browser=Y!J-AGENT/BMC + +[Mozilla/5.0 (compatible; BMF/1.0 (Y!J-AGENT))] +Parent=Inktomi +Browser=Y!J-AGENT/BMF + +[Mozilla/5.0 (compatible; BMI/1.0 (Y!J-AGENT; 1.0))] +Parent=Inktomi +Browser=Y!J-AGENT/BMI + +[Mozilla/5.0 (compatible; Yahoo! DE Slurp; http://help.yahoo.com/help/us/ysearch/slurp)] +Parent=Inktomi +Browser=Yahoo! Directory Engine + +[Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)] +Parent=Inktomi +Browser=Yahoo! Slurp China + +[Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)] +Parent=Inktomi +Browser=Yahoo! Slurp +Version=3.0 +MajorVer=3 +MinorVer=0 + +[Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)] +Parent=Inktomi +Browser=Yahoo! Slurp + +[Mozilla/5.0 (compatible; Yahoo! Verifier/1.1)] +Parent=Inktomi +Browser=Yahoo! Verifier +Version=1.1 +MajorVer=1 +MinorVer=1 + +[Mozilla/5.0 (Slurp/cat; slurp@inktomi.com; http://www.inktomi.com/slurp.html)] +Parent=Inktomi +Browser=Slurp/cat + +[Mozilla/5.0 (Slurp/si; slurp@inktomi.com; http://www.inktomi.com/slurp.html)] +Parent=Inktomi + +[Mozilla/5.0 (Yahoo-MMCrawler/4.0; mailto:vertical-crawl-support@yahoo-inc.com)] +Parent=Inktomi +Browser=Yahoo-MMCrawler +Version=4.0 +MajorVer=4 +MinorVer=0 + +[Scooter/*] +Parent=Inktomi +Browser=Scooter + +[Scooter/3.3Y!CrawlX] +Parent=Inktomi +Browser=Scooter/3.3Y!CrawlX +Version=3.3 +MajorVer=3 +MinorVer=3 + +[slurp] +Parent=Inktomi +Browser=slurp + +[Y!J-BSC/1.0*] +Parent=Inktomi +Browser=Y!J-BSC +Version=1.0 +MajorVer=1 +MinorVer=0 +isBanned=true + +[Y!J-SRD/1.0] +Parent=Inktomi +Browser=Y!J-SRD +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Yahoo Mindset] +Parent=Inktomi +Browser=Yahoo Mindset + +[Yahoo Pipes*] +Parent=Inktomi +Browser=Yahoo Pipes + +[Yahoo! Mindset] +Parent=Inktomi +Browser=Yahoo! Mindset + +[Yahoo! Slurp/Site Explorer] +Parent=Inktomi +Browser=Yahoo! Site Explorer + +[Yahoo-Blogs/*] +Parent=Inktomi +Browser=Yahoo-Blogs + +[Yahoo-MMAudVid*] +Parent=Inktomi +Browser=Yahoo-MMAudVid + +[Yahoo-MMCrawler*] +Parent=Inktomi +Browser=Yahoo-MMCrawler +isBanned=true + +[YahooFeedSeeker*] +Parent=Inktomi +Browser=YahooFeedSeeker +isSyndicationReader=true +Crawler=false + +[YahooSeeker/*] +Parent=Inktomi +Browser=YahooSeeker +isMobileDevice=true + +[YahooSeeker/CafeKelsa (compatible; Konqueror/3.2; FreeBSD*) (KHTML, like Gecko)] +Parent=Inktomi +Browser=YahooSeeker/CafeKelsa + +[YahooSeeker/CafeKelsa-dev (compatible; Konqueror/3.2; FreeBSD*) (KHTML, like Gecko)] +Parent=Inktomi + +[YahooVideoSearch*] +Parent=Inktomi +Browser=YahooVideoSearch + +[YahooYSMcm*] +Parent=Inktomi +Browser=YahooYSMcm + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN + +[MSN] +Parent=DefaultProperties +Browser=MSN +Frames=true +Tables=true +Crawler=true + +[adidxbot/1.1 (?http://search.msn.com/msnbot.htm)] +Parent=MSN +Browser=adidxbot + +[librabot/1.0 (*)] +Parent=MSN +Browser=librabot + +[llssbot/1.0] +Parent=MSN +Browser=llssbot +Version=1.0 +MajorVer=1 +MinorVer=0 + +[MSMOBOT/1.1*] +Parent=MSN +Browser=msnbot-mobile +Version=1.1 +MajorVer=1 +MinorVer=1 + +[MSNBot-Academic/1.0*] +Parent=MSN +Browser=MSNBot-Academic +Version=1.0 +MajorVer=1 +MinorVer=0 + +[msnbot-media/1.0*] +Parent=MSN +Browser=msnbot-media +Version=1.0 +MajorVer=1 +MinorVer=0 + +[msnbot-media/1.1*] +Parent=MSN +Browser=msnbot-media +Version=1.1 +MajorVer=1 +MinorVer=1 + +[MSNBot-News/1.0*] +Parent=MSN +Browser=MSNBot-News +Version=1.0 +MajorVer=1 +MinorVer=0 + +[MSNBot-NewsBlogs/1.0*] +Parent=MSN +Browser=MSNBot-NewsBlogs +Version=1 +MajorVer=1 +MinorVer=0 + +[msnbot-products] +Parent=MSN +Browser=msnbot-products + +[msnbot-webmaster/1.0 (*http://search.msn.com/msnbot.htm)] +Parent=MSN +Browser=msnbot-webmaster tools + +[msnbot/1.0*] +Parent=MSN +Browser=msnbot +Version=1.0 +MajorVer=1 +MinorVer=0 + +[msnbot/1.1*] +Parent=MSN +Browser=msnbot +Version=1.1 +MajorVer=1 +MinorVer=1 + +[msnbot/2.0b*] +Parent=MSN +Version=2.0 +MajorVer=2 +MinorVer=0 +Beta=true + +[MSR-ISRCCrawler] +Parent=MSN +Browser=MSR-ISRCCrawler + +[renlifangbot/1.0 (?http://search.msn.com/msnbot.htm)] +Parent=MSN +Browser=renlifangbot + +[T-Mobile Dash Mozilla/4.0 (*) MSNBOT-MOBILE/1.1 (*)] +Parent=MSN +Browser=msnbot-mobile + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo + +[Yahoo] +Parent=DefaultProperties +Browser=Yahoo +Frames=true +Tables=true +Crawler=true + +[Mozilla/4.0 (compatible; Y!J; for robot study*)] +Parent=Yahoo +Browser=Y!J + +[Mozilla/5.0 (Yahoo-Test/4.0*)] +Parent=Yahoo +Browser=Yahoo-Test +Version=4.0 +MajorVer=4 +MinorVer=0 + +[mp3Spider cn-search-devel at yahoo-inc dot com] +Parent=Yahoo +Browser=Yahoo! Media +isBanned=true + +[My Browser] +Parent=Yahoo +Browser=Yahoo! My Browser + +[Y!OASIS/*] +Parent=Yahoo +Browser=Y!OASIS +isBanned=true + +[YahooYSMcm/2.0.0] +Parent=Yahoo +Browser=YahooYSMcm +Version=2.0 +MajorVer=2 +MinorVer=0 +isBanned=true + +[YRL_ODP_CRAWLER] +Parent=Yahoo +Browser=YRL_ODP_CRAWLER +isBanned=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yandex + +[Yandex] +Parent=DefaultProperties +Browser=Yandex +Frames=true +IFrames=true +Tables=true +Cookies=true +Crawler=true + +[Mozilla/4.0 (compatible; MSIE 5.0; YANDEX)] +Parent=Yandex + +[Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9) Gecko VisualParser/3.0] +Parent=Yandex +Browser=VisualParser +isBanned=true + +[YaDirectBot/*] +Parent=Yandex +Browser=YaDirectBot + +[Yandex/*] +Parent=Yandex + +[YandexBlog/*] +Parent=Yandex +Browser=YandexBlog +isSyndicationReader=true + +[YandexSomething/*] +Parent=Yandex +Browser=YandexSomething +isSyndicationReader=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Best of the Web + +[Best of the Web] +Parent=DefaultProperties +Browser=Best of the Web +Frames=true +Tables=true + +[Mozilla/4.0 (compatible; BOTW Feed Grabber; *http://botw.org)] +Parent=Best of the Web +Browser=BOTW Feed Grabber +isSyndicationReader=true +Crawler=false + +[Mozilla/4.0 (compatible; BOTW Spider; *http://botw.org)] +Parent=Best of the Web +Browser=BOTW Spider +isBanned=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Boitho + +[Boitho] +Parent=DefaultProperties +Browser=Boitho +Frames=true +Tables=true +Crawler=true + +[boitho.com-dc/*] +Parent=Boitho +Browser=boitho.com-dc + +[boitho.com-robot/*] +Parent=Boitho +Browser=boitho.com-robot + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Convera + +[Convera] +Parent=DefaultProperties +Browser=Convera +Frames=true +Tables=true +Crawler=true + +[ConveraCrawler/*] +Parent=Convera +Browser=ConveraCrawler + +[ConveraMultiMediaCrawler/0.1*] +Parent=Convera +Browser=ConveraMultiMediaCrawler +Version=0.1 +MajorVer=0 +MinorVer=1 + +[CrawlConvera*] +Parent=Convera +Browser=CrawlConvera + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DotBot + +[DotBot] +Parent=DefaultProperties +Browser=DotBot +Frames=true +Tables=true +isBanned=true +Crawler=true + +[DotBot/* (http://www.dotnetdotcom.org/*)] +Parent=DotBot + +[Mozilla/5.0 (compatible; DotBot/*; http://www.dotnetdotcom.org/*)] +Parent=DotBot + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Entireweb + +[Entireweb] +Parent=DefaultProperties +Browser=Entireweb +Frames=true +IFrames=true +Tables=true +isBanned=true +Crawler=true + +[Mozilla/4.0 (compatible; SpeedySpider; www.entireweb.com)] +Parent=Entireweb + +[Speedy Spider (*Beta/*)] +Parent=Entireweb + +[Speedy?Spider?(http://www.entireweb.com*)] +Parent=Entireweb + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Envolk + +[Envolk] +Parent=DefaultProperties +Browser=Envolk +Frames=true +IFrames=true +Tables=true +isBanned=true +Crawler=true + +[envolk/* (?http://www.envolk.com/envolk*)] +Parent=Envolk + +[envolk?ITS?spider/* (?http://www.envolk.com/envolk*)] +Parent=Envolk + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Exalead + +[Exalead] +Parent=DefaultProperties +Browser=Exalead +Frames=true +Tables=true +isBanned=true +Crawler=true + +[Exabot-Images/1.0] +Parent=Exalead +Browser=Exabot-Images +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Exabot-Test/*] +Parent=Exalead +Browser=Exabot-Test + +[Exabot/2.0] +Parent=Exalead +Browser=Exabot + +[Exabot/3.0] +Parent=Exalead +Browser=Exabot +Version=3.0 +MajorVer=3 +MinorVer=0 +Platform=Liberate + +[Exalead NG/*] +Parent=Exalead +Browser=Exalead NG +isBanned=true + +[Mozilla/5.0 (compatible; Exabot-Images/3.0;*)] +Parent=Exalead +Browser=Exabot-Images + +[Mozilla/5.0 (compatible; Exabot/3.0 (BiggerBetter/tests);*)] +Parent=Exalead +Browser=Exabot/BiggerBetter/tests + +[Mozilla/5.0 (compatible; Exabot/3.0;*)] +Parent=Exalead +Browser=Exabot +isBanned=false + +[Mozilla/5.0 (compatible; NGBot/*)] +Parent=Exalead + +[ng/*] +Parent=Exalead +Browser=Exalead Previewer +Version=1.0 +MajorVer=1 +MinorVer=0 +isBanned=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fast/AllTheWeb + +[Fast/AllTheWeb] +Parent=DefaultProperties +Browser=Fast/AllTheWeb +Alpha=true +Beta=true +Win16=true +Win32=true +Win64=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +isBanned=true +isMobileDevice=true +isSyndicationReader=true +Crawler=true + +[*FAST Enterprise Crawler*] +Parent=Fast/AllTheWeb +Browser=FAST Enterprise Crawler + +[FAST Data Search Document Retriever/4.0*] +Parent=Fast/AllTheWeb +Browser=FAST Data Search Document Retriever + +[FAST MetaWeb Crawler (helpdesk at fastsearch dot com)] +Parent=Fast/AllTheWeb +Browser=FAST MetaWeb Crawler + +[Fast PartnerSite Crawler*] +Parent=Fast/AllTheWeb +Browser=FAST PartnerSite + +[FAST-WebCrawler/*] +Parent=Fast/AllTheWeb +Browser=FAST-WebCrawler + +[FAST-WebCrawler/*/FirstPage*] +Parent=Fast/AllTheWeb +Browser=FAST-WebCrawler/FirstPage + +[FAST-WebCrawler/*/Fresh*] +Parent=Fast/AllTheWeb +Browser=FAST-WebCrawler/Fresh + +[FAST-WebCrawler/*/PartnerSite*] +Parent=Fast/AllTheWeb +Browser=FAST PartnerSite + +[FAST-WebCrawler/*?Multimedia*] +Parent=Fast/AllTheWeb +Browser=FAST-WebCrawler/Multimedia + +[FastSearch Web Crawler for*] +Parent=Fast/AllTheWeb +Browser=FastSearch Web Crawler + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Gigabot + +[Gigabot] +Parent=DefaultProperties +Browser=Gigabot +Frames=true +IFrames=true +Tables=true +Crawler=true + +[Gigabot*] +Parent=Gigabot + +[GigabotSiteSearch/*] +Parent=Gigabot +Browser=GigabotSiteSearch + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ilse + +[Ilse] +Parent=DefaultProperties +Browser=Ilse +Frames=true +Tables=true +Crawler=true + +[IlseBot/*] +Parent=Ilse + +[INGRID/?.0*] +Parent=Ilse +Browser=Ilse + +[Mozilla/3.0 (INGRID/*] +Parent=Ilse +Browser=Ilse + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iVia Project + +[iVia Project] +Parent=DefaultProperties +Browser=iVia Project +Frames=true +IFrames=true +Tables=true +Crawler=true + +[DataFountains/DMOZ Downloader*] +Parent=iVia Project +Browser=DataFountains/DMOZ Downloader +isBanned=true + +[DataFountains/DMOZ Feature Vector Corpus Creator*] +Parent=iVia Project +Browser=DataFountains/DMOZ Feature Vector Corpus + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Jayde Online + +[Jayde Online] +Parent=DefaultProperties +Browser=Jayde Online +Frames=true +Tables=true +Crawler=true + +[ExactSeek Crawler/*] +Parent=Jayde Online +Browser=ExactSeek Crawler + +[exactseek-pagereaper-* (crawler@exactseek.com)] +Parent=Jayde Online +Browser=exactseek-pagereaper +isBanned=true + +[exactseek.com] +Parent=Jayde Online +Browser=exactseek.com + +[Jayde Crawler*] +Parent=Jayde Online +Browser=Jayde Crawler + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycos + +[Lycos] +Parent=DefaultProperties +Browser=Lycos +Frames=true +Tables=true +Crawler=true + +[Lycos*] +Parent=Lycos +Browser=Lycos + +[Lycos-Proxy] +Parent=Lycos +Browser=Lycos-Proxy + +[Lycos-Spider_(modspider)] +Parent=Lycos +Browser=Lycos-Spider_(modspider) + +[Lycos-Spider_(T-Rex)] +Parent=Lycos +Browser=Lycos-Spider_(T-Rex) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Naver + +[Naver] +Parent=DefaultProperties +Browser=Naver +isBanned=true +Crawler=true + +[Cowbot-* (NHN Corp*naver.com)] +Parent=Naver +Browser=Naver Cowbot + +[Mozilla/4.0 (compatible; NaverBot/*; *)] +Parent=Naver + +[Mozilla/4.0 (compatible; NaverBot/*; nhnbot@naver.com)] +Parent=Naver +Browser=Naver NaverBot + +[NaverBot-* (NHN Corp*naver.com)] +Parent=Naver +Browser=Naver NHN Corp + +[Yeti/*] +Parent=Naver +Browser=Yeti + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Snap + +[Snap] +Parent=DefaultProperties +Browser=Snap +isBanned=true +Crawler=true + +[Mozilla/5.0 (SnapPreviewBot) Gecko/* Firefox/*] +Parent=Snap + +[Snapbot/*] +Parent=Snap + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sogou + +[Sogou] +Parent=DefaultProperties +Browser=Sogou +Frames=true +Tables=true +isBanned=true +Crawler=true + +[shaboyi spider] +Parent=Sogou +Browser=Sogou/Shaboyi Spider + +[Sogou develop spider/*] +Parent=Sogou +Browser=Sogou Develop Spider + +[Sogou head spider*] +Parent=Sogou +Browser=Sogou/HEAD Spider + +[sogou js robot(*)] +Parent=Sogou + +[Sogou Orion spider/*] +Parent=Sogou +Browser=Sogou Orion spider + +[Sogou Pic Agent] +Parent=Sogou +Browser=Sogou/Image Crawler + +[Sogou Pic Spider] +Parent=Sogou +Browser=Sogou Pic Spider + +[Sogou Push Spider/*] +Parent=Sogou +Browser=Sogou Push Spider + +[sogou spider] +Parent=Sogou +Browser=Sogou/Spider + +[sogou web spider*] +Parent=Sogou +Browser=sogou web spider + +[Sogou-Test-Spider/*] +Parent=Sogou +Browser=Sogou-Test-Spider + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YodaoBot + +[YodaoBot] +Parent=DefaultProperties +Browser=YodaoBot +Frames=true +IFrames=true +Tables=true +isBanned=true +Crawler=true + +[Mozilla/5.0 (compatible; YodaoBot/1.*)] +Parent=YodaoBot + +[Mozilla/5.0 (compatible;YodaoBot-Image/1.*)] +Parent=YodaoBot +Browser=YodaoBot-Image + +[WAP_Browser/5.0 (compatible; YodaoBot/1.*)] +Parent=YodaoBot + +[YodaoBot/1.* (*)] +Parent=YodaoBot + +[Best Whois (http://www.bestwhois.net/)] +Parent=DNS Tools +Browser=Best Whois + +[DNSGroup/*] +Parent=DNS Tools +Browser=DNS Group Crawler + +[NG-Search/*] +Parent=Exalead +Browser=NG-SearchBot + +[TouchStone] +Parent=Feeds Syndicators +Browser=TouchStone +isSyndicationReader=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; General Crawlers + +[General Crawlers] +Parent=DefaultProperties +Browser=General Crawlers +Crawler=true + +[A .NET Web Crawler] +Parent=General Crawlers +isBanned=true + +[BabalooSpider/1.*] +Parent=General Crawlers +Browser=BabalooSpider + +[BilgiBot/*] +Parent=General Crawlers +Browser=BilgiBot +isBanned=true + +[bot/* (bot; *bot@bot.bot)] +Parent=General Crawlers +Browser=bot +isBanned=true + +[CyberPatrol*] +Parent=General Crawlers +Browser=CyberPatrol +isBanned=true + +[Cynthia 1.0] +Parent=General Crawlers +Browser=Cynthia +Version=1.0 +MajorVer=1 +MinorVer=0 + +[ddetailsbot (http://www.displaydetails.com)] +Parent=General Crawlers +Browser=ddetailsbot + +[DomainCrawler/1.0 (info@domaincrawler.com; http://www.domaincrawler.com/domains/view/*)] +Parent=General Crawlers +Browser=DomainCrawler + +[DomainsBotBot/1.*] +Parent=General Crawlers +Browser=DomainsBotBot +isBanned=true + +[DomainsDB.net MetaCrawler*] +Parent=General Crawlers +Browser=DomainsDB + +[Drupal (*)] +Parent=General Crawlers +Browser=Drupal + +[Dumbot (version *)*] +Parent=General Crawlers +Browser=Dumbfind + +[EuripBot/*] +Parent=General Crawlers +Browser=Europe Internet Portal + +[eventax/*] +Parent=General Crawlers +Browser=eventax + +[FANGCrawl/*] +Parent=General Crawlers +Browser=Safe-t.net Web Filtering Service +isBanned=true + +[favorstarbot/*] +Parent=General Crawlers +Browser=favorstarbot +isBanned=true + +[FollowSite.com (*)] +Parent=General Crawlers +Browser=FollowSite +isBanned=true + +[Gaisbot*] +Parent=General Crawlers +Browser=Gaisbot + +[Healthbot/Health_and_Longevity_Project_(HealthHaven.com) ] +Parent=General Crawlers +Browser=Healthbot +isBanned=true + +[hitcrawler_0.*] +Parent=General Crawlers +Browser=hitcrawler +isBanned=true + +[htdig/*] +Parent=General Crawlers +Browser=ht://Dig + +[http://hilfe.acont.de/bot.html ACONTBOT] +Parent=General Crawlers +Browser=ACONTBOT +isBanned=true + +[JetBrains*] +Parent=General Crawlers +Browser=Omea Pro + +[KakleBot - www.kakle.com/0.1] +Parent=General Crawlers +Browser=KakleBot + +[KBeeBot/0.*] +Parent=General Crawlers +Browser=KBeeBot +isBanned=true + +[Keyword Density/*] +Parent=General Crawlers +Browser=Keyword Density + +[LetsCrawl.com/1.0*] +Parent=General Crawlers +Browser=LetsCrawl.com +isBanned=true + +[Lincoln State Web Browser] +Parent=General Crawlers +Browser=Lincoln State Web Browser +isBanned=true + +[Links4US-Crawler,*] +Parent=General Crawlers +Browser=Links4US-Crawler +isBanned=true + +[Lorkyll *.* -- lorkyll@444.net] +Parent=General Crawlers +Browser=Lorkyll +isBanned=true + +[Lsearch/sondeur] +Parent=General Crawlers +Browser=Lsearch/sondeur +isBanned=true + +[LucidMedia ClickSense/4.?] +Parent=General Crawlers +Browser=LucidMedia-ClickSense +isBanned=true + +[MapoftheInternet.com?(?http://MapoftheInternet.com)] +Parent=General Crawlers +Browser=MapoftheInternet +isBanned=true + +[Marvin v0.3] +Parent=General Crawlers +Browser=MedHunt +Version=0.3 +MajorVer=0 +MinorVer=3 + +[masidani_bot_v0.6*] +Parent=General Crawlers +Browser=masidani_bot + +[Metaspinner/0.01 (Metaspinner; http://www.meta-spinner.de/; support@meta-spinner.de/)] +Parent=General Crawlers +Browser=Metaspinner/0.01 +Version=0.01 +MajorVer=0 +MinorVer=01 + +[metatagsdir/*] +Parent=General Crawlers +Browser=metatagsdir +isBanned=true + +[Microsoft Windows Network Diagnostics] +Parent=General Crawlers +Browser=Microsoft Windows Network Diagnostics +isBanned=true + +[Miva (AlgoFeedback@miva.com)] +Parent=General Crawlers +Browser=Miva + +[moget/*] +Parent=General Crawlers +Browser=Goo + +[Mozdex/0.7.2*] +Parent=General Crawlers +Browser=Mozdex + +[Mozilla Compatible (MS IE 3.01 WinNT)] +Parent=General Crawlers +isBanned=true + +[Mozilla/* (compatible; WebCapture*)] +Parent=General Crawlers +Browser=WebCapture + +[Mozilla/4.0 (compatible; DepSpid/*)] +Parent=General Crawlers +Browser=DepSpid + +[Mozilla/4.0 (compatible; MSIE *; Windows NT *; SV1)] +Parent=General Crawlers +Browser=AVG + +[Mozilla/4.0 (compatible; MSIE 4.01; Vonna.com b o t)] +Parent=General Crawlers +Browser=Vonna.com +isBanned=true + +[Mozilla/4.0 (compatible; MSIE 4.01; Windows95)] +Parent=General Crawlers +Win32=true + +[Mozilla/4.0 (compatible; MSIE 4.5; Windows 98; )] +Parent=General Crawlers +Win32=true + +[Mozilla/4.0 (compatible; MyFamilyBot/*)] +Parent=General Crawlers +Browser=MyFamilyBot + +[Mozilla/4.0 (compatible; N-Stealth)] +Parent=General Crawlers +Browser=N-Stealth + +[Mozilla/4.0 (compatible; Scumbot/*; Linux/*)] +Parent=General Crawlers +isBanned=true + +[Mozilla/4.0 (compatible; Spider; Linux)] +Parent=General Crawlers +isBanned=true + +[Mozilla/4.0 (compatible; Win32)] +Parent=General Crawlers +Browser=Unknown Crawler +isBanned=true + +[Mozilla/4.1] +Parent=General Crawlers +isBanned=true + +[Mozilla/4.5] +Parent=General Crawlers +isBanned=true + +[Mozilla/5.0 (*http://gnomit.com/) Gecko/* Gnomit/1.0] +Parent=General Crawlers +Browser=Gnomit +isBanned=true + +[Mozilla/5.0 (compatible; AboutUsBot/*)] +Parent=General Crawlers +Browser=AboutUsBot +isBanned=true + +[Mozilla/5.0 (compatible; BuzzRankingBot/*)] +Parent=General Crawlers +Browser=BuzzRankingBot +isBanned=true + +[Mozilla/5.0 (compatible; Diffbot/0.1; http://www.diffbot.com)] +Parent=General Crawlers +Browser=Diffbot + +[Mozilla/5.0 (compatible; FirstSearchBot/1.0; *)] +Parent=General Crawlers +Browser=FirstSearchBot + +[mozilla/5.0 (compatible; genevabot http://www.healthdash.com)] +Parent=General Crawlers +Browser=Healthdash + +[Mozilla/5.0 (compatible; JadynAveBot; *http://www.jadynave.com/robot*] +Parent=General Crawlers +Browser=JadynAveBot +isBanned=true + +[Mozilla/5.0 (compatible; Kyluka crawl; http://www.kyluka.com/crawl.html; crawl@kyluka.com)] +Parent=General Crawlers +Browser=Kyluka + +[Mozilla/5.0 (compatible; MJ12bot/v1.2.*; http://www.majestic12.co.uk/bot.php*)] +Parent=General Crawlers +Browser=MJ12bot +Version=1.2 +MajorVer=1 +MinorVer=2 + +[Mozilla/5.0 (compatible; MSIE 7.0 ?http://www.europarchive.org)] +Parent=General Crawlers +Browser=Europe Web Archive + +[Mozilla/5.0 (compatible; Seznam screenshot-generator 2.0;*)] +Parent=General Crawlers +Browser=Seznam screenshot-generator +isBanned=true + +[Mozilla/5.0 (compatible; Twingly Recon; http://www.twingly.com/)] +Parent=General Crawlers +Browser=Twingly Recon + +[Mozilla/5.0 (compatible; unwrapbot/2.*; http://www.unwrap.jp*)] +Parent=General Crawlers +Browser=UnWrap + +[Mozilla/5.0 (compatible; Vermut*)] +Parent=General Crawlers +Browser=Vermut + +[Mozilla/5.0 (compatible; Webbot/*)] +Parent=General Crawlers +Browser=Webbot.ru +isBanned=true + +[n4p_bot*] +Parent=General Crawlers +Browser=n4p_bot + +[nabot*] +Parent=General Crawlers +Browser=Nabot + +[NetCarta_WebMapper/*] +Parent=General Crawlers +Browser=NetCarta_WebMapper +isBanned=true + +[NetID.com Bot*] +Parent=General Crawlers +Browser=NetID.com Bot +isBanned=true + +[neTVision AG andreas.heidoetting@thomson-webcast.net] +Parent=General Crawlers +Browser=neTVision + +[NextopiaBOT*] +Parent=General Crawlers +Browser=NextopiaBOT + +[nicebot] +Parent=General Crawlers +Browser=nicebot +isBanned=true + +[niXXieBot?Foster*] +Parent=General Crawlers +Browser=niXXiebot-Foster + +[Nozilla/P.N (Just for IDS woring)] +Parent=General Crawlers +Browser=Nozilla/P.N +isBanned=true + +[Nudelsalat/*] +Parent=General Crawlers +Browser=Nudelsalat +isBanned=true + +[NV32ts] +Parent=General Crawlers +Browser=NV32ts +isBanned=true + +[Ocelli/*] +Parent=General Crawlers +Browser=Ocelli + +[OpenTaggerBot (http://www.opentagger.com/opentaggerbot.htm)] +Parent=General Crawlers +Browser=OpenTaggerBot + +[Oracle Enterprise Search] +Parent=General Crawlers +Browser=Oracle Enterprise Search +isBanned=true + +[Oracle Ultra Search] +Parent=General Crawlers +Browser=Oracle Ultra Search + +[Pajaczek/*] +Parent=General Crawlers +Browser=Pajaczek +isBanned=true + +[panscient.com] +Parent=General Crawlers +Browser=panscient.com +isBanned=true + +[Patwebbot (http://www.herz-power.de/technik.html)] +Parent=General Crawlers +Browser=Patwebbot + +[PDFBot (crawler@pdfind.com)] +Parent=General Crawlers +Browser=PDFBot + +[Pete-Spider/1.*] +Parent=General Crawlers +Browser=Pete-Spider +isBanned=true + +[PhpDig/*] +Parent=General Crawlers +Browser=PhpDig + +[PlantyNet_WebRobot*] +Parent=General Crawlers +Browser=PlantyNet +isBanned=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PluckIt + +[PluckItCrawler/1.0 (*)] +Parent=General Crawlers +isMobileDevice=true + +[PMAFind] +Parent=General Crawlers +Browser=PMAFind +isBanned=true + +[Poodle_predictor_1.0] +Parent=General Crawlers +Browser=Poodle Predictor + +[QuickFinder Crawler] +Parent=General Crawlers +Browser=QuickFinder +isBanned=true + +[Radiation Retriever*] +Parent=General Crawlers +Browser=Radiation Retriever +isBanned=true + +[RedCarpet/*] +Parent=General Crawlers +Browser=RedCarpet +isBanned=true + +[RixBot (http://babelserver.org/rix)] +Parent=General Crawlers +Browser=RixBot + +[Rome Client (http://tinyurl.com/64t5n) Ver: 0.*] +Parent=General Crawlers +Browser=TinyURL + +[SBIder/*] +Parent=General Crawlers +Browser=SiteSell + +[ScollSpider/2.*] +Parent=General Crawlers +Browser=ScollSpider +isBanned=true + +[Search Fst] +Parent=General Crawlers +Browser=Search Fst + +[searchbot admin@google.com] +Parent=General Crawlers +Browser=searchbot +isBanned=true + +[Seeker.lookseek.com] +Parent=General Crawlers +Browser=LookSeek +isBanned=true + +[semanticdiscovery/*] +Parent=General Crawlers +Browser=Semantic Discovery + +[SeznamBot/*] +Parent=General Crawlers +Browser=SeznamBot +isBanned=true + +[Shelob (shelob@gmx.net)] +Parent=General Crawlers +Browser=Shelob +isBanned=true + +[shelob v1.*] +Parent=General Crawlers +Browser=shelob +isBanned=true + +[ShopWiki/1.0*] +Parent=General Crawlers +Browser=ShopWiki +Version=1.0 +MajorVer=1 +MinorVer=0 + +[ShowXML/1.0 libwww/5.4.0] +Parent=General Crawlers +Browser=ShowXML +isBanned=true + +[sitecheck.internetseer.com*] +Parent=General Crawlers +Browser=Internetseer + +[SMBot/*] +Parent=General Crawlers +Browser=SMBot + +[sohu*] +Parent=General Crawlers +Browser=sohu-search +isBanned=true + +[SpankBot*] +Parent=General Crawlers +Browser=SpankBot +isBanned=true + +[spider (tspyyp@tom.com)] +Parent=General Crawlers +Browser=spider (tspyyp@tom.com) +isBanned=true + +[Sunrise/0.*] +Parent=General Crawlers +Browser=Sunrise +isBanned=true + +[Superpages URL Verification Engine] +Parent=General Crawlers +Browser=Superpages + +[Surf Knight] +Parent=General Crawlers +Browser=Surf Knight +isBanned=true + +[SurveyBot/*] +Parent=General Crawlers +Browser=SurveyBot +isBanned=true + +[SynapticSearch/AI Crawler 1.?] +Parent=General Crawlers +Browser=SynapticSearch +isBanned=true + +[SyncMgr] +Parent=General Crawlers +Browser=SyncMgr + +[Tagyu Agent/1.0] +Parent=General Crawlers +Browser=Tagyu + +[Talkro Web-Shot/*] +Parent=General Crawlers +Browser=Talkro Web-Shot +isBanned=true + +[Tecomi Bot (http://www.tecomi.com/bot.htm)] +Parent=General Crawlers +Browser=Tecomi + +[TheInformant*] +Parent=General Crawlers +Browser=TheInformant +isBanned=true + +[Toata dragostea*] +Parent=General Crawlers +Browser=Toata dragostea +isBanned=true + +[Tutorial Crawler*] +Parent=General Crawlers +isBanned=true + +[UbiCrawler/*] +Parent=General Crawlers +Browser=UbiCrawler + +[UCmore] +Parent=General Crawlers +Browser=UCmore + +[User*Agent:*] +Parent=General Crawlers +isBanned=true + +[USER_AGENT] +Parent=General Crawlers +Browser=USER_AGENT +isBanned=true + +[VadixBot] +Parent=General Crawlers +Browser=VadixBot + +[VengaBot/*] +Parent=General Crawlers +Browser=VengaBot +isBanned=true + +[Visicom Toolbar] +Parent=General Crawlers +Browser=Visicom Toolbar + +[W3C-WebCon/*] +Parent=General Crawlers +Browser=W3C-WebCon + +[Webclipping.com] +Parent=General Crawlers +Browser=Webclipping.com +isBanned=true + +[webcollage/*] +Parent=General Crawlers +Browser=WebCollage +isBanned=true + +[WebCrawler_1.*] +Parent=General Crawlers +Browser=WebCrawler + +[WebFilter Robot*] +Parent=General Crawlers +Browser=WebFilter Robot + +[WeBoX/*] +Parent=General Crawlers +Browser=WeBoX + +[WebTrends/*] +Parent=General Crawlers +Browser=WebTrends + +[West Wind Internet Protocols*] +Parent=General Crawlers +Browser=Versatel +isBanned=true + +[WhizBang] +Parent=General Crawlers +Browser=WhizBang + +[Willow Internet Crawler by Twotrees V*] +Parent=General Crawlers +Browser=Willow Internet Crawler + +[WIRE/* (Linux; i686; Bot,Robot,Spider,Crawler)] +Parent=General Crawlers +Browser=WIRE +isBanned=true + +[www.fi crawler, contact crawler@www.fi] +Parent=General Crawlers +Browser=www.fi crawler + +[Xerka WebBot v1.*] +Parent=General Crawlers +Browser=Xerka +isBanned=true + +[XML Sitemaps Generator*] +Parent=General Crawlers +Browser=XML Sitemaps Generator + +[XSpider*] +Parent=General Crawlers +Browser=XSpider +isBanned=true + +[YooW!/* (?http://www.yoow.eu)] +Parent=General Crawlers +Browser=YooW! +isBanned=true + +[HiddenMarket-*] +Parent=General RSS +Browser=HiddenMarket +isBanned=true + +[FOTOCHECKER] +Parent=Image Crawlers +Browser=FOTOCHECKER +isBanned=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Search Engines + +[Search Engines] +Parent=DefaultProperties +Browser=Search Engines +Crawler=true + +[*FDSE robot*] +Parent=Search Engines +Browser=FDSE Robot + +[*Fluffy the spider*] +Parent=Search Engines +Browser=SearchHippo + +[Abacho*] +Parent=Search Engines +Browser=Abacho + +[ah-ha.com crawler (crawler@ah-ha.com)] +Parent=Search Engines +Browser=Ah-Ha + +[AIBOT/*] +Parent=Search Engines +Browser=21Seek.Com + +[ALeadSoftbot/*] +Parent=Search Engines +Browser=ALeadSoftbot + +[Amfibibot/*] +Parent=Search Engines +Browser=Amfibi + +[AnswerBus (http://www.answerbus.com/)] +Parent=Search Engines + +[antibot-V*] +Parent=Search Engines +Browser=antibot + +[appie*(www.walhello.com)] +Parent=Search Engines +Browser=Walhello + +[ASPSeek/*] +Parent=Search Engines +Browser=ASPSeek + +[BigCliqueBOT/*] +Parent=Search Engines +Browser=BigClique.com/BigClic.com + +[Blaiz-Bee/*] +Parent=Search Engines +Browser=RawGrunt + +[btbot/*] +Parent=Search Engines +Browser=Bit Torrent Search Engine + +[Busiversebot/v1.0 (http://www.busiverse.com/bot.php)] +Parent=Search Engines +Browser=Busiversebot +isBanned=true + +[CatchBot/*; http://www.catchbot.com] +Parent=Search Engines +Browser=CatchBot +Version=1.0 +MajorVer=1 +MinorVer=0 + +[CipinetBot (http://www.cipinet.com/bot.html)] +Parent=Search Engines +Browser=CipinetBot + +[Cogentbot/1.?*] +Parent=Search Engines +Browser=Cogentbot + +[compatible; Mozilla 4.0; MSIE 5.5; (SqwidgeBot v1.01 - http://www.sqwidge.com/bot/)] +Parent=Search Engines +Browser=SqwidgeBot + +[cosmos*] +Parent=Search Engines +Browser=Xyleme + +[Deepindex] +Parent=Search Engines +Browser=Deepindex + +[DiamondBot] +Parent=Search Engines +Browser=DiamondBot + +[Dumbot*] +Parent=Search Engines +Browser=Dumbot +Version=0.2 +MajorVer=0 +MinorVer=2 +Beta=true + +[Eule?Robot*] +Parent=Search Engines +Browser=Eule-Robot + +[Faxobot/*] +Parent=Search Engines +Browser=Faxo + +[Filangy/*] +Parent=Search Engines +Browser=Filangy + +[flatlandbot/*] +Parent=Search Engines +Browser=Flatland + +[Fooky.com/ScorpionBot/ScoutOut;*] +Parent=Search Engines +Browser=ScorpionBot +isBanned=true + +[FyberSpider*] +Parent=Search Engines +Browser=FyberSpider +isBanned=true + +[Gaisbot/*] +Parent=Search Engines +Browser=Gaisbot + +[gazz/*(gazz@nttr.co.jp)] +Parent=Search Engines +Browser=gazz + +[geniebot*] +Parent=Search Engines +Browser=GenieKnows + +[GOFORITBOT (?http://www.goforit.com/about/?)] +Parent=Search Engines +Browser=GoForIt + +[GoGuidesBot/*] +Parent=Search Engines +Browser=GoGuidesBot + +[GroschoBot/*] +Parent=Search Engines +Browser=GroschoBot + +[GurujiBot/1.*] +Parent=Search Engines +Browser=GurujiBot +isBanned=true + +[HenryTheMiragoRobot*] +Parent=Search Engines +Browser=Mirago + +[HolmesBot (http://holmes.ge)] +Parent=Search Engines +Browser=HolmesBot + +[Hotzonu/*] +Parent=Search Engines +Browser=Hotzonu + +[HyperEstraier/*] +Parent=Search Engines +Browser=HyperEstraier +isBanned=true + +[i1searchbot/*] +Parent=Search Engines +Browser=i1searchbot + +[IIITBOT/1.*] +Parent=Search Engines +Browser=Indian Language Web Search Engine + +[Iltrovatore-?etaccio/*] +Parent=Search Engines +Browser=Iltrovatore-Setaccio + +[InfociousBot (?http://corp.infocious.com/tech_crawler.php)] +Parent=Search Engines +Browser=InfociousBot +isBanned=true + +[Infoseek SideWinder/*] +Parent=Search Engines +Browser=Infoseek + +[iSEEKbot/*] +Parent=Search Engines +Browser=iSEEKbot + +[Knight/0.? (Zook Knight; http://knight.zook.in/; knight@zook.in)] +Parent=Search Engines +Browser=Knight + +[Kolinka Forum Search (www.kolinka.com)] +Parent=Search Engines +Browser=Kolinka Forum Search +isBanned=true + +[KRetrieve/] +Parent=Search Engines +Browser=KRetrieve +isBanned=true + +[LapozzBot/*] +Parent=Search Engines +Browser=LapozzBot + +[Linknzbot*] +Parent=Search Engines +Browser=Linknzbot + +[LocalcomBot/*] +Parent=Search Engines +Browser=LocalcomBot + +[Mail.Ru/1.0] +Parent=Search Engines +Browser=Mail.Ru + +[MaSagool/*] +Parent=Search Engines +Browser=Sagoo +Version=1.0 +MajorVer=1 +MinorVer=0 + +[miniRank/*] +Parent=Search Engines +Browser=miniRank + +[Mnogosearch*] +Parent=Search Engines +Browser=Mnogosearch + +[Mozilla/0.9* no dos :) (Linux)] +Parent=Search Engines +Browser=goliat +isBanned=true + +[Mozilla/4.0 (compatible; Arachmo)] +Parent=Search Engines +Browser=Arachmo + +[Mozilla/4.0 (compatible; http://search.thunderstone.com/texis/websearch/about.html)] +Parent=Search Engines +Browser=ThunderStone +isBanned=true + +[Mozilla/4.0 (compatible; MSIE *; Windows NT; Girafabot; girafabot at girafa dot com; http://www.girafa.com)] +Parent=Search Engines +Browser=Girafabot +Win32=true + +[Mozilla/4.0 (compatible; Vagabondo/*; webcrawler at wise-guys dot nl; *)] +Parent=Search Engines +Browser=Vagabondo + +[Mozilla/4.0(?compatible; MSIE 6.0; Qihoo *)] +Parent=Search Engines +Browser=Qihoo + +[Mozilla/4.7 (compatible; WhizBang; http://www.whizbang.com/crawler)] +Parent=Search Engines +Browser=Inxight Software + +[Mozilla/5.0 (*) VoilaBot*] +Parent=Search Engines +Browser=VoilaBot +isBanned=true + +[Mozilla/5.0 (compatible; ActiveTouristBot*; http://www.activetourist.com)] +Parent=Search Engines +Browser=ActiveTouristBot + +[Mozilla/5.0 (compatible; Butterfly/1.0; *)*] +Parent=Search Engines +Browser=Butterfly + +[Mozilla/5.0 (compatible; Charlotte/*; *)] +Parent=Search Engines +Browser=Charlotte +Beta=true +isBanned=true + +[Mozilla/5.0 (compatible; CXL-FatAssANT*)] +Parent=Search Engines +Browser=FatAssANT + +[Mozilla/5.0 (compatible; DBLBot/1.0; ?http://www.dontbuylists.com/)] +Parent=Search Engines +Browser=DBLBot +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Mozilla/5.0 (compatible; EARTHCOM.info/*)] +Parent=Search Engines +Browser=EARTHCOM + +[Mozilla/5.0 (compatible; Lipperhey Spider; http://www.lipperhey.com/)] +Parent=Search Engines +Browser=Lipperhey Spider + +[Mozilla/5.0 (compatible; MojeekBot/*; http://www.mojeek.com/bot.html)] +Parent=Search Engines +Browser=MojeekBot + +[Mozilla/5.0 (compatible; NLCrawler/*] +Parent=Search Engines +Browser=Northern Light Web Search + +[Mozilla/5.0 (compatible; OsO;*] +Parent=Search Engines +Browser=Octopodus +isBanned=true + +[Mozilla/5.0 (compatible; Pogodak.*)] +Parent=Search Engines +Browser=Pogodak + +[Mozilla/5.0 (compatible; Quantcastbot/1.*)] +Parent=Search Engines +Browser=Quantcastbot + +[Mozilla/5.0 (compatible; ScoutJet; *http://www.scoutjet.com/)] +Parent=Search Engines +Browser=ScoutJet + +[Mozilla/5.0 (compatible; Scrubby/*; http://www.scrubtheweb.com/abs/meta-check.html)] +Parent=Search Engines +Browser=Scrubby +isBanned=true + +[Mozilla/5.0 (compatible; YoudaoBot/1.*; http://www.youdao.com/help/webmaster/spider/*)] +Parent=Search Engines +Browser=YoudaoBot +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Mozilla/5.0 (Twiceler*)] +Parent=Search Engines +Browser=Twiceler +isBanned=true + +[Mozilla/5.0 CostaCider Search*] +Parent=Search Engines +Browser=CostaCider Search + +[Mozilla/5.0 GurujiBot/1.0 (*)] +Parent=Search Engines +Browser=GurujiBot + +[NavissoBot] +Parent=Search Engines +Browser=NavissoBot + +[NextGenSearchBot*(for information visit *)] +Parent=Search Engines +Browser=ZoomInfo +isBanned=true + +[Norbert the Spider(Burf.com)] +Parent=Search Engines +Browser=Norbert the Spider + +[NuSearch Spider*] +Parent=Search Engines +Browser=nuSearch + +[ObjectsSearch/*] +Parent=Search Engines +Browser=ObjectsSearch + +[OpenISearch/1.*] +Parent=Search Engines +Browser=OpenISearch (Amazon) + +[Pagebull http://www.pagebull.com/] +Parent=Search Engines +Browser=Pagebull + +[PEERbot*] +Parent=Search Engines +Browser=PEERbot + +[Pompos/*] +Parent=Search Engines +Browser=Pompos + +[Popdexter/*] +Parent=Search Engines +Browser=Popdex + +[Qweery*] +Parent=Search Engines +Browser=QweeryBot + +[RedCell/* (*)] +Parent=Search Engines +Browser=RedCell + +[Scrubby/*] +Parent=Search Engines +Browser=Scrub The Web + +[Search-10/*] +Parent=Search Engines +Browser=Search-10 + +[search.ch*] +Parent=Search Engines +Browser=Swiss Search Engine + +[Searchmee! Spider*] +Parent=Search Engines +Browser=Searchmee! + +[Seekbot/*] +Parent=Search Engines +Browser=Seekbot + +[SiteSpider (http://www.SiteSpider.com/)] +Parent=Search Engines +Browser=SiteSpider + +[Spinne/*] +Parent=Search Engines +Browser=Spinne + +[sproose/*] +Parent=Search Engines +Browser=Sproose + +[Sqeobot/0.*] +Parent=Search Engines +Browser=Branzel +isBanned=true + +[SquigglebotBot/*] +Parent=Search Engines +Browser=SquigglebotBot +isBanned=true + +[StackRambler/*] +Parent=Search Engines +Browser=StackRambler + +[SygolBot*] +Parent=Search Engines +Browser=SygolBot + +[SynoBot] +Parent=Search Engines +Browser=SynoBot + +[Szukacz/*] +Parent=Search Engines +Browser=Szukacz + +[Tarantula/*] +Parent=Search Engines +Browser=Tarantula +isBanned=true + +[TerrawizBot/*] +Parent=Search Engines +Browser=TerrawizBot +isBanned=true + +[Tkensaku/*] +Parent=Search Engines +Browser=Tkensaku + +[TMCrawler] +Parent=Search Engines +Browser=TMCrawler +isBanned=true + +[Twingly Recon] +Parent=Search Engines +Browser=Twingly Recon +isBanned=true + +[updated/*] +Parent=Search Engines +Browser=Updated! + +[URL Spider Pro/*] +Parent=Search Engines +Browser=URL Spider Pro + +[URL Spider SQL*] +Parent=Search Engines +Browser=Innerprise Enterprise Search + +[VMBot/*] +Parent=Search Engines +Browser=VMBot + +[voyager/2.0 (http://www.kosmix.com/html/crawler.html)] +Parent=Search Engines +Browser=Voyager + +[wadaino.jp-crawler*] +Parent=Search Engines +Browser=wadaino.jp +isBanned=true + +[WebAlta Crawler/*] +Parent=Search Engines +Browser=WebAlta Crawler +isBanned=true + +[WebCorp/*] +Parent=Search Engines +Browser=WebCorp +isBanned=true + +[webcrawl.net] +Parent=Search Engines +Browser=webcrawl.net + +[WISEbot/*] +Parent=Search Engines +Browser=WISEbot +isBanned=true + +[Wotbox/*] +Parent=Search Engines +Browser=Wotbox + +[www.zatka.com] +Parent=Search Engines +Browser=Zatka + +[WWWeasel Robot v*] +Parent=Search Engines +Browser=World Wide Weasel + +[YadowsCrawler*] +Parent=Search Engines +Browser=YadowsCrawler + +[YodaoBot/*] +Parent=Search Engines +Browser=YodaoBot +isBanned=true + +[ZeBot_www.ze.bz*] +Parent=Search Engines +Browser=ZE.bz + +[zibber-v*] +Parent=Search Engines +Browser=Zibb + +[ZipppBot/*] +Parent=Search Engines +Browser=ZipppBot + +[ATA-Translation-Service] +Parent=Translators +Browser=ATA-Translation-Service + +[GJK_Browser_Check] +Parent=Version Checkers +Browser=GJK_Browser_Check + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Hatena + +[Hatena] +Parent=DefaultProperties +Browser=Hatena +isBanned=true +Crawler=true + +[Feed::Find/*] +Parent=Hatena +Browser=Feed Find +isSyndicationReader=true + +[Hatena Antenna/*] +Parent=Hatena +Browser=Hatena Antenna + +[Hatena Bookmark/*] +Parent=Hatena +Browser=Hatena Bookmark + +[Hatena RSS/*] +Parent=Hatena +Browser=Hatena RSS +isSyndicationReader=true + +[Hatena::Crawler/*] +Parent=Hatena +Browser=Hatena Crawler + +[HatenaScreenshot*] +Parent=Hatena +Browser=HatenaScreenshot + +[URI::Fetch/*] +Parent=Hatena +Browser=URI::Fetch + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Internet Archive + +[Internet Archive] +Parent=DefaultProperties +Browser=Internet Archive +Frames=true +IFrames=true +Tables=true +isBanned=true +Crawler=true + +[*heritrix*] +Parent=Internet Archive +Browser=Heritrix +isBanned=true + +[ia_archiver*] +Parent=Internet Archive +Browser=Internet Archive + +[InternetArchive/*] +Parent=Internet Archive +Browser=InternetArchive + +[Mozilla/5.0 (compatible; archive.org_bot/1.*)] +Parent=Internet Archive + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nutch + +[Nutch] +Parent=DefaultProperties +Browser=Nutch +isBanned=true +Crawler=true + +[*Nutch*] +Parent=Nutch +isBanned=true + +[CazoodleBot/*] +Parent=Nutch +Browser=CazoodleBot + +[LOOQ/0.1*] +Parent=Nutch +Browser=LOOQ + +[Nutch/0.? (OpenX Spider)] +Parent=Nutch + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Webaroo + +[Webaroo] +Parent=DefaultProperties +Browser=Webaroo + +[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Webaroo/*)] +Parent=Webaroo +Browser=Webaroo + +[Mozilla/5.0 (Windows; U; Windows *; *; rv:*) Gecko/* Firefox/* webaroo/*] +Parent=Webaroo +Browser=Webaroo + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Word Press + +[Word Press] +Parent=DefaultProperties +Browser=Word Press +Alpha=true +Beta=true +Win16=true +Win32=true +Win64=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +isBanned=true +isMobileDevice=true +isSyndicationReader=true +Crawler=true + +[WordPress-B-/2.*] +Parent=Word Press +Browser=WordPress-B + +[WordPress-Do-P-/2.*] +Parent=Word Press +Browser=WordPress-Do-P + +[BlueCoat ProxySG] +Parent=Blue Coat Systems +Browser=BlueCoat ProxySG + +[CerberianDrtrs/*] +Parent=Blue Coat Systems +Browser=Cerberian + +[Inne: Mozilla/4.0 (compatible; Cerberian Drtrs*)] +Parent=Blue Coat Systems +Browser=Cerberian + +[Mozilla/4.0 (compatible; Cerberian Drtrs*)] +Parent=Blue Coat Systems +Browser=Cerberian + +[Mozilla/4.0 (compatible; MSIE 6.0; Bluecoat DRTR)] +Parent=Blue Coat Systems +Browser=Bluecoat + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Copyright/Plagiarism + +[Copyright/Plagiarism] +Parent=DefaultProperties +Browser=Copyright/Plagiarism +isBanned=true +Crawler=true + +[BDFetch] +Parent=Copyright/Plagiarism +Browser=BDFetch + +[copyright sheriff (*)] +Parent=Copyright/Plagiarism +Browser=copyright sheriff + +[CopyRightCheck*] +Parent=Copyright/Plagiarism +Browser=CopyRightCheck + +[FairAd Client*] +Parent=Copyright/Plagiarism +Browser=FairAd Client + +[iCopyright Conductor*] +Parent=Copyright/Plagiarism +Browser=iCopyright Conductor + +[IPiumBot laurion(dot)com] +Parent=Copyright/Plagiarism +Browser=IPiumBot + +[IWAgent/*] +Parent=Copyright/Plagiarism +Browser=Brand Protect + +[Mozilla/5.0 (compatible; DKIMRepBot/*)] +Parent=Copyright/Plagiarism +Browser=DKIMRepBot + +[oBot] +Parent=Copyright/Plagiarism +Browser=oBot + +[SlySearch/*] +Parent=Copyright/Plagiarism +Browser=SlySearch + +[TurnitinBot/*] +Parent=Copyright/Plagiarism +Browser=TurnitinBot + +[TutorGigBot/*] +Parent=Copyright/Plagiarism +Browser=TutorGig + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DNS Tools + +[DNS Tools] +Parent=DefaultProperties +Browser=DNS Tools +Crawler=true + +[Domain Dossier utility*] +Parent=DNS Tools +Browser=Domain Dossier + +[Mozilla/5.0 (compatible; DNS-Digger/*)] +Parent=DNS Tools +Browser=DNS-Digger + +[OpenDNS Domain Crawler noc@opendns.com] +Parent=DNS Tools +Browser=OpenDNS Domain Crawler + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Download Managers + +[Download Managers] +Parent=DefaultProperties +Browser=Download Managers +Frames=true +IFrames=true +Tables=true +isBanned=true +Crawler=true + +[AndroidDownloadManager] +Parent=Download Managers +Browser=Android Download Manager + +[AutoMate5] +Parent=Download Managers +Browser=AutoMate5 + +[Beamer*] +Parent=Download Managers +Browser=Beamer + +[BitBeamer/*] +Parent=Download Managers +Browser=BitBeamer + +[BitTorrent/*] +Parent=Download Managers +Browser=BitTorrent + +[DA *] +Parent=Download Managers +Browser=Download Accelerator + +[Download Demon*] +Parent=Download Managers +Browser=Download Demon + +[Download Express*] +Parent=Download Managers +Browser=Download Express + +[Download Master*] +Parent=Download Managers +Browser=Download Master + +[Download Ninja*] +Parent=Download Managers +Browser=Download Ninja + +[Download Wonder*] +Parent=Download Managers +Browser=Download Wonder + +[DownloadSession*] +Parent=Download Managers +Browser=DownloadSession + +[EasyDL/*] +Parent=Download Managers +Browser=EasyDL + +[FDM 1.x] +Parent=Download Managers +Browser=Free Download Manager + +[FlashGet] +Parent=Download Managers +Browser=FlashGet + +[FreshDownload/*] +Parent=Download Managers +Browser=FreshDownload + +[GetRight/*] +Parent=Download Managers +Browser=GetRight + +[GetRightPro/*] +Parent=Download Managers +Browser=GetRightPro + +[GetSmart/*] +Parent=Download Managers +Browser=GetSmart + +[Go!Zilla*] +Parent=Download Managers +Browser=GoZilla + +[Gozilla/*] +Parent=Download Managers +Browser=Gozilla + +[Internet Ninja*] +Parent=Download Managers +Browser=Internet Ninja + +[Kontiki Client*] +Parent=Download Managers +Browser=Kontiki Client + +[lftp/3.2.1] +Parent=Download Managers +Browser=lftp + +[LightningDownload/*] +Parent=Download Managers +Browser=LightningDownload + +[LMQueueBot/*] +Parent=Download Managers +Browser=LMQueueBot + +[MetaProducts Download Express/*] +Parent=Download Managers +Browser=Download Express + +[Mozilla/4.0 (compatible; Getleft*)] +Parent=Download Managers +Browser=Getleft + +[Myzilla] +Parent=Download Managers +Browser=Myzilla + +[Net Vampire/*] +Parent=Download Managers +Browser=Net Vampire + +[Net_Vampire*] +Parent=Download Managers +Browser=Net_Vampire + +[NetAnts*] +Parent=Download Managers +Browser=NetAnts + +[NetPumper*] +Parent=Download Managers +Browser=NetPumper + +[NetSucker*] +Parent=Download Managers +Browser=NetSucker + +[NetZip Downloader*] +Parent=Download Managers +Browser=NetZip Downloader + +[NexTools WebAgent*] +Parent=Download Managers +Browser=NexTools WebAgent + +[Offline Downloader*] +Parent=Download Managers +Browser=Offline Downloader + +[P3P Client] +Parent=Download Managers +Browser=P3P Client + +[PageDown*] +Parent=Download Managers +Browser=PageDown + +[PicaLoader*] +Parent=Download Managers +Browser=PicaLoader + +[Prozilla*] +Parent=Download Managers +Browser=Prozilla + +[RealDownload/*] +Parent=Download Managers +Browser=RealDownload + +[sEasyDL/*] +Parent=Download Managers +Browser=EasyDL + +[shareaza*] +Parent=Download Managers +Browser=shareaza + +[SmartDownload/*] +Parent=Download Managers +Browser=SmartDownload + +[SpeedDownload/*] +Parent=Download Managers +Browser=Speed Download + +[Star*Downloader/*] +Parent=Download Managers +Browser=StarDownloader + +[STEROID Download] +Parent=Download Managers +Browser=STEROID Download + +[SuperBot/*] +Parent=Download Managers +Browser=SuperBot + +[Vegas95/*] +Parent=Download Managers +Browser=Vegas95 + +[WebZIP*] +Parent=Download Managers +Browser=WebZIP + +[Wget*] +Parent=Download Managers +Browser=Wget + +[WinTools] +Parent=Download Managers +Browser=WinTools + +[Xaldon WebSpider*] +Parent=Download Managers +Browser=Xaldon WebSpider + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; E-Mail Harvesters + +[E-Mail Harvesters] +Parent=DefaultProperties +Browser=E-Mail Harvesters +Frames=true +IFrames=true +Tables=true +isBanned=true +Crawler=true + +[*E-Mail Address Extractor*] +Parent=E-Mail Harvesters +Browser=E-Mail Address Extractor + +[*Larbin*] +Parent=E-Mail Harvesters +Browser=Larbin + +[*www4mail/*] +Parent=E-Mail Harvesters +Browser=www4mail + +[8484 Boston Project*] +Parent=E-Mail Harvesters +Browser=8484 Boston Project + +[CherryPicker*/*] +Parent=E-Mail Harvesters +Browser=CherryPickerElite + +[Chilkat/*] +Parent=E-Mail Harvesters +Browser=Chilkat + +[ContactBot/*] +Parent=E-Mail Harvesters +Browser=ContactBot + +[eCatch*] +Parent=E-Mail Harvesters +Browser=eCatch + +[EmailCollector*] +Parent=E-Mail Harvesters +Browser=E-Mail Collector + +[EMAILsearcher] +Parent=E-Mail Harvesters +Browser=EMAILsearcher + +[EmailSiphon*] +Parent=E-Mail Harvesters +Browser=E-Mail Siphon + +[EmailWolf*] +Parent=E-Mail Harvesters +Browser=EMailWolf + +[Epsilon SoftWorks' MailMunky] +Parent=E-Mail Harvesters +Browser=MailMunky + +[ExtractorPro*] +Parent=E-Mail Harvesters +Browser=ExtractorPro + +[Franklin Locator*] +Parent=E-Mail Harvesters +Browser=Franklin Locator + +[Missigua Locator*] +Parent=E-Mail Harvesters +Browser=Missigua Locator + +[Mozilla/4.0 (compatible; Advanced Email Extractor*)] +Parent=E-Mail Harvesters +Browser=Advanced Email Extractor + +[Netprospector*] +Parent=E-Mail Harvesters +Browser=Netprospector + +[ProWebWalker*] +Parent=E-Mail Harvesters +Browser=ProWebWalker + +[sna-0.0.*] +Parent=E-Mail Harvesters +Browser=Mike Elliott's E-Mail Harvester + +[WebEnhancer*] +Parent=E-Mail Harvesters +Browser=WebEnhancer + +[WebMiner*] +Parent=E-Mail Harvesters +Browser=WebMiner + +[ZIBB Crawler (email address / WWW address)] +Parent=E-Mail Harvesters +Browser=ZIBB Crawler + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Feeds Blogs + +[Feeds Blogs] +Parent=DefaultProperties +Browser=Feeds Blogs +isSyndicationReader=true +Crawler=true + +[Bloglines Title Fetch/*] +Parent=Feeds Blogs +Browser=Bloglines Title Fetch + +[Bloglines/* (http://www.bloglines.com*)] +Parent=Feeds Blogs +Browser=BlogLines Web + +[BlogPulseLive (support@blogpulse.com)] +Parent=Feeds Blogs +Browser=BlogPulseLive + +[blogsearchbot-pumpkin-2] +Parent=Feeds Blogs +Browser=blogsearchbot-pumpkin +isSyndicationReader=false + +[Irish Blogs Aggregator/*1.0*] +Parent=Feeds Blogs +Browser=Irish Blogs Aggregator +Version=1.0 +MajorVer=1 +MinorVer=0 + +[kinjabot (http://www.kinja.com; *)] +Parent=Feeds Blogs +Browser=kinjabot + +[Net::Trackback/*] +Parent=Feeds Blogs +Browser=Net::Trackback + +[Reblog*] +Parent=Feeds Blogs +Browser=Reblog + +[WordPress/*] +Parent=Feeds Blogs +Browser=WordPress + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Feeds Syndicators + +[Feeds Syndicators] +Parent=DefaultProperties +Browser=Feeds Syndicators +isSyndicationReader=true + +[*LinkLint*] +Parent=Feeds Syndicators +Browser=LinkLint + +[*NetNewsWire/*] +Parent=Feeds Syndicators + +[*NetVisualize*] +Parent=Feeds Syndicators +Browser=NetVisualize + +[AideRSS 2.* (postrank.com)] +Parent=Feeds Syndicators +Browser=AideRSS + +[AideRSS/2.0 (aiderss.com)] +Parent=Feeds Syndicators +Browser=AideRSS +isBanned=true + +[Akregator/*] +Parent=Feeds Syndicators +Browser=Akregator + +[AppleSyndication/*] +Parent=Feeds Syndicators +Browser=Safari RSS +Platform=MacOSX + +[Cocoal.icio.us/* (*)*] +Parent=Feeds Syndicators +Browser=Cocoal.icio.us +isBanned=true + +[Feed43 Proxy/* (*)] +Parent=Feeds Syndicators +Browser=Feed For Free + +[FeedBurner/*] +Parent=Feeds Syndicators +Browser=FeedBurner + +[FeedDemon/* (*)] +Parent=Feeds Syndicators +Browser=FeedDemon +Platform=Win32 + +[FeedDigest/* (*)] +Parent=Feeds Syndicators +Browser=FeedDigest + +[FeedGhost/1.*] +Parent=Feeds Syndicators +Browser=FeedGhost +Version=1.0 +MajorVer=1 +MinorVer=0 + +[FeedOnFeeds/0.1.* ( http://minutillo.com/steve/feedonfeeds/)] +Parent=Feeds Syndicators +Browser=FeedOnFeeds +Version=0.1 +MajorVer=0 +MinorVer=1 + +[Feedreader * (Powered by Newsbrain)] +Parent=Feeds Syndicators +Browser=Newsbrain + +[Feedshow/* (*)] +Parent=Feeds Syndicators +Browser=Feedshow + +[Feedster Crawler/?.0; Feedster, Inc.] +Parent=Feeds Syndicators +Browser=Feedster + +[GreatNews/1.0] +Parent=Feeds Syndicators +Browser=GreatNews +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Gregarius/*] +Parent=Feeds Syndicators +Browser=Gregarius + +[intraVnews/*] +Parent=Feeds Syndicators +Browser=intraVnews + +[JetBrains Omea Reader*] +Parent=Feeds Syndicators +Browser=Omea Reader +isBanned=true + +[Liferea/1.5* (Linux; *; http://liferea.sf.net/)] +Parent=Feeds Syndicators +Browser=Liferea +isBanned=true + +[livedoor FeedFetcher/0.0* (http://reader.livedoor.com/;*)] +Parent=Feeds Syndicators +Browser=FeedFetcher +Version=0.0 +MajorVer=0 +MinorVer=0 + +[MagpieRSS/* (*)] +Parent=Feeds Syndicators +Browser=MagpieRSS + +[Mobitype * (compatible; Mozilla/*; MSIE *.*; Windows *)] +Parent=Feeds Syndicators +Browser=Mobitype +Platform=Win32 + +[Mozilla/5.0 (*; Rojo *; http://www.rojo.com/corporate/help/agg; *)*] +Parent=Feeds Syndicators +Browser=Rojo + +[Mozilla/5.0 (*aggregator:TailRank; http://tailrank.com/robot)*] +Parent=Feeds Syndicators +Browser=TailRank + +[Mozilla/5.0 (compatible; MSIE 6.0; Podtech Network; crawler_admin@podtech.net)] +Parent=Feeds Syndicators +Browser=Podtech Network + +[Mozilla/5.0 (compatible; Newz Crawler *; http://www.newzcrawler.com/?)] +Parent=Feeds Syndicators +Browser=Newz Crawler + +[Mozilla/5.0 (compatible; RSSMicro.com RSS/Atom Feed Robot)] +Parent=Feeds Syndicators +Browser=RSSMicro + +[Mozilla/5.0 (compatible;*newstin.com;*)] +Parent=Feeds Syndicators +Browser=NewsTin + +[Mozilla/5.0 (RSS Reader Panel)] +Parent=Feeds Syndicators +Browser=RSS Reader Panel + +[Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:FeedParser; *) Gecko/*] +Parent=Feeds Syndicators +Browser=FeedParser + +[Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:NewsMonster; *) Gecko/*] +Parent=Feeds Syndicators +Browser=NewsMonster + +[Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:Rojo; *) Gecko/*] +Parent=Feeds Syndicators +Browser=Rojo + +[Netvibes (*)] +Parent=Feeds Syndicators +Browser=Netvibes + +[NewsAlloy/* (*)] +Parent=Feeds Syndicators +Browser=NewsAlloy + +[Omnipelagos*] +Parent=Feeds Syndicators +Browser=Omnipelagos + +[Particls] +Parent=Feeds Syndicators +Browser=Particls + +[Protopage/* (*)] +Parent=Feeds Syndicators +Browser=Protopage + +[PubSub-RSS-Reader/* (*)] +Parent=Feeds Syndicators +Browser=PubSub-RSS-Reader + +[RSS Menu/*] +Parent=Feeds Syndicators +Browser=RSS Menu + +[RssBandit/*] +Parent=Feeds Syndicators +Browser=RssBandit + +[RssBar/1.2*] +Parent=Feeds Syndicators +Browser=RssBar +Version=1.2 +MajorVer=1 +MinorVer=2 + +[SharpReader/*] +Parent=Feeds Syndicators +Browser=SharpReader + +[SimplePie/*] +Parent=Feeds Syndicators +Browser=SimplePie + +[Strategic Board Bot (?http://www.strategicboard.com)] +Parent=Feeds Syndicators +Browser=Strategic Board Bot +isBanned=true + +[TargetYourNews.com bot] +Parent=Feeds Syndicators +Browser=TargetYourNews + +[Technoratibot/*] +Parent=Feeds Syndicators +Browser=Technoratibot + +[Tumblr/* RSS syndication ( http://www.tumblr.com/) (support@tumblr.com)] +Parent=Feeds Syndicators +Browser=Tumblr RSS syndication + +[Windows-RSS-Platform/1.0*] +Parent=Feeds Syndicators +Browser=Windows-RSS-Platform +Version=1.0 +MajorVer=1 +MinorVer=0 +Win32=true + +[Wizz RSS News Reader] +Parent=Feeds Syndicators +Browser=Wizz + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; General RSS + +[General RSS] +Parent=DefaultProperties +Browser=General RSS +isSyndicationReader=true + +[AideRSS/1.0 (aiderss.com); * subscribers] +Parent=General RSS +Browser=AideRSS +Version=1.0 +MajorVer=1 +MinorVer=0 + +[CC Metadata Scaper http://wiki.creativecommons.org/Metadata_Scraper] +Parent=General RSS +Browser=CC Metadata Scaper + +[Mozilla/5.0 (compatible) GM RSS Panel] +Parent=General RSS +Browser=RSS Panel + +[Mozilla/5.0 http://www.inclue.com; graeme@inclue.com] +Parent=General RSS +Browser=Inclue + +[Runnk online rss reader : http://www.runnk.com/ : RSS favorites : RSS ranking : RSS aggregator*] +Parent=General RSS +Browser=Ruunk + +[Windows-RSS-Platform/2.0 (MSIE 8.0; Windows NT 6.0)] +Parent=General RSS +Browser=Windows-RSS-Platform +Platform=WinVista + +[Mozilla/5.0 (X11; ?; Linux; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.4] +Parent=Google Code +Browser=Arora +Version=0.4 +MajorVer=0 +MinorVer=4 +Platform=Linux +CssVersion=2 +supportsCSS=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Validation Checkers + +[HTML Validators] +Parent=DefaultProperties +Browser=HTML Validators +Frames=true +IFrames=true +Tables=true +Crawler=true + +[(HTML Validator http://www.searchengineworld.com/validator/)] +Parent=HTML Validators +Browser=Search Engine World HTML Validator + +[FeedValidator/1.3] +Parent=HTML Validators +Browser=FeedValidator +Version=1.3 +MajorVer=1 +MinorVer=3 + +[Jigsaw/* W3C_CSS_Validator_JFouffa/*] +Parent=HTML Validators +Browser=Jigsaw CSS Validator + +[Search Engine World Robots.txt Validator*] +Parent=HTML Validators +Browser=Search Engine World Robots.txt Validator + +[W3C_Validator/*] +Parent=HTML Validators +Browser=W3C Validator + +[W3CLineMode/*] +Parent=HTML Validators +Browser=W3C Line Mode + +[Weblide/2.? beta*] +Parent=HTML Validators +Browser=Weblide +Version=2.0 +MajorVer=2 +MinorVer=0 +Beta=true + +[WebmasterWorld StickyMail Server Header Checker*] +Parent=HTML Validators +Browser=WebmasterWorld Server Header Checker + +[WWWC/*] +Parent=HTML Validators + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Image Crawlers + +[Image Crawlers] +Parent=DefaultProperties +Browser=Image Crawlers +Frames=true +IFrames=true +Tables=true +isBanned=true +Crawler=true + +[*CFNetwork*] +Parent=Image Crawlers +Browser=CFNetwork + +[*PhotoStickies/*] +Parent=Image Crawlers +Browser=PhotoStickies + +[Camcrawler*] +Parent=Image Crawlers +Browser=Camcrawler + +[CydralSpider/*] +Parent=Image Crawlers +Browser=Cydral Web Image Search +isBanned=true + +[Der gro\xdfe BilderSauger*] +Parent=Image Crawlers +Browser=Gallery Grabber + +[Extreme Picture Finder] +Parent=Image Crawlers +Browser=Extreme Picture Finder + +[FLATARTS_FAVICO] +Parent=Image Crawlers +Browser=FlatArts Favorites Icon Tool + +[HTML2JPG Blackbox, http://www.html2jpg.com] +Parent=Image Crawlers +Browser=HTML2JPG + +[IconSurf/2.*] +Parent=Image Crawlers +Browser=IconSurf + +[kalooga/KaloogaBot*] +Parent=Image Crawlers +Browser=KaloogaBot + +[Mister PIX*] +Parent=Image Crawlers +Browser=Mister PIX + +[Mozilla/5.0 (Macintosh; U; *Mac OS X; *) AppleWebKit/* (*) Pandora/2.*] +Parent=Image Crawlers +Browser=Pandora + +[naoFavicon4IE*] +Parent=Image Crawlers +Browser=naoFavicon4IE + +[pixfinder/*] +Parent=Image Crawlers +Browser=pixfinder + +[rssImagesBot/0.1 (*http://herbert.groot.jebbink.nl/?app=rssImages)] +Parent=Image Crawlers +Browser=rssImagesBot + +[Web Image Collector*] +Parent=Image Crawlers +Browser=Web Image Collector + +[WebImages * (?http://herbert.groot.jebbink.nl/?app=WebImages?)] +Parent=Image Crawlers +Browser=WebImages + +[WebPix*] +Parent=Image Crawlers +Browser=Custo + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Link Checkers + +[Link Checkers] +Parent=DefaultProperties +Browser=Link Checkers +Frames=true +IFrames=true +Tables=true +Crawler=true + +[!Susie (http://www.sync2it.com/susie)] +Parent=Link Checkers +Browser=!Susie + +[*AgentName/*] +Parent=Link Checkers +Browser=AgentName + +[*Linkman*] +Parent=Link Checkers +Browser=Linkman + +[*LinksManager.com*] +Parent=Link Checkers +Browser=LinksManager + +[*Powermarks/*] +Parent=Link Checkers +Browser=Powermarks + +[*W3C-checklink/*] +Parent=Link Checkers +Browser=W3C Link Checker + +[*Web Link Validator*] +Parent=Link Checkers +Browser=Web Link Validator + +[*Zeus*] +Parent=Link Checkers +Browser=Zeus +isBanned=true + +[ActiveBookmark *] +Parent=Link Checkers +Browser=ActiveBookmark + +[Bookdog/*] +Parent=Link Checkers +Browser=Bookdog + +[Bookmark Buddy*] +Parent=Link Checkers +Browser=Bookmark Buddy + +[Bookmark Renewal Check Agent*] +Parent=Link Checkers +Browser=Bookmark Renewal Check Agent + +[Bookmark search tool*] +Parent=Link Checkers +Browser=Bookmark search tool + +[Bookmark-Manager] +Parent=Link Checkers +Browser=Bookmark-Manager + +[Checkbot*] +Parent=Link Checkers +Browser=Checkbot + +[CheckLinks/*] +Parent=Link Checkers +Browser=CheckLinks + +[CyberSpyder Link Test/*] +Parent=Link Checkers +Browser=CyberSpyder Link Test + +[DLC/*] +Parent=Link Checkers +Browser=DLC + +[DocWeb Link Crawler (http://doc.php.net)] +Parent=Link Checkers +Browser=DocWeb Link Crawler + +[FavOrg] +Parent=Link Checkers +Browser=FavOrg + +[Favorites Sweeper v.3.*] +Parent=Link Checkers +Browser=Favorites Sweeper + +[FindLinks/*] +Parent=Link Checkers +Browser=FindLinks + +[Funnel Web Profiler*] +Parent=Link Checkers +Browser=Funnel Web Profiler + +[Html Link Validator (www.lithopssoft.com)] +Parent=Link Checkers +Browser=HTML Link Validator + +[IECheck] +Parent=Link Checkers +Browser=IECheck + +[JCheckLinks/*] +Parent=Link Checkers +Browser=JCheckLinks + +[JRTwine Software Check Favorites Utility] +Parent=Link Checkers +Browser=JRTwine + +[Link Valet Online*] +Parent=Link Checkers +Browser=Link Valet +isBanned=true + +[LinkAlarm/*] +Parent=Link Checkers +Browser=LinkAlarm + +[Linkbot*] +Parent=Link Checkers +Browser=Linkbot + +[LinkChecker/*] +Parent=Link Checkers +Browser=LinkChecker + +[LinkextractorPro*] +Parent=Link Checkers +Browser=LinkextractorPro +isBanned=true + +[LinkLint-checkonly/*] +Parent=Link Checkers +Browser=LinkLint + +[LinkScan/*] +Parent=Link Checkers +Browser=LinkScan + +[LinkSweeper/*] +Parent=Link Checkers +Browser=LinkSweeper + +[LinkWalker*] +Parent=Link Checkers +Browser=LinkWalker + +[MetaGer-LinkChecker] +Parent=Link Checkers +Browser=MetaGer-LinkChecker + +[Mozilla/* (compatible; linktiger/*; *http://www.linktiger.com*)] +Parent=Link Checkers +Browser=LinkTiger +isBanned=true + +[Mozilla/4.0 (Compatible); URLBase*] +Parent=Link Checkers +Browser=URLBase + +[Mozilla/4.0 (compatible; Link Utility; http://net-promoter.com)] +Parent=Link Checkers +Browser=NetPromoter Link Utility + +[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98) Web Link Validator*] +Parent=Link Checkers +Browser=Web Link Validator +Win32=true + +[Mozilla/4.0 (compatible; MSIE 7.0; Win32) Link Commander 3.0] +Parent=Link Checkers +Browser=Link Commander +Version=3.0 +MajorVer=3 +MinorVer=0 +Platform=Win32 + +[Mozilla/4.0 (compatible; smartBot/1.*; checking links; *)] +Parent=Link Checkers +Browser=smartBot + +[Mozilla/4.0 (compatible; SuperCleaner*;*)] +Parent=Link Checkers +Browser=SuperCleaner + +[Mozilla/5.0 gURLChecker/*] +Parent=Link Checkers +Browser=gURLChecker +isBanned=true + +[Newsgroupreporter LinkCheck] +Parent=Link Checkers +Browser=Newsgroupreporter LinkCheck + +[onCHECK Linkchecker von www.scientec.de fuer www.onsinn.de] +Parent=Link Checkers +Browser=onCHECK Linkchecker + +[online link validator (http://www.dead-links.com/)] +Parent=Link Checkers +Browser=Dead-Links.com +isBanned=true + +[REL Link Checker*] +Parent=Link Checkers +Browser=REL Link Checker + +[RLinkCheker*] +Parent=Link Checkers +Browser=RLinkCheker + +[Robozilla/*] +Parent=Link Checkers +Browser=Robozilla + +[RPT-HTTPClient/*] +Parent=Link Checkers +Browser=RPT-HTTPClient +isBanned=true + +[SafariBookmarkChecker*(?http://www.coriolis.ch/)] +Parent=Link Checkers +Browser=SafariBookmarkChecker +Platform=MacOSX +CssVersion=2 +supportsCSS=true + +[Simpy/* (Simpy; http://www.simpy.com/?ref=bot; feedback at simpy dot com)] +Parent=Link Checkers +Browser=Simpy + +[SiteBar/*] +Parent=Link Checkers +Browser=SiteBar + +[Susie (http://www.sync2it.com/bms/susie.php] +Parent=Link Checkers +Browser=Susie + +[URLBase/6.*] +Parent=Link Checkers + +[VSE/*] +Parent=Link Checkers +Browser=VSE Link Tester + +[WebTrends Link Analyzer] +Parent=Link Checkers +Browser=WebTrends Link Analyzer + +[WorQmada/*] +Parent=Link Checkers +Browser=WorQmada + +[Xenu* Link Sleuth*] +Parent=Link Checkers +Browser=Xenu's Link Sleuth +isBanned=true + +[Z-Add Link Checker*] +Parent=Link Checkers +Browser=Z-Add Link Checker + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft + +[Microsoft] +Parent=DefaultProperties +Browser=Microsoft +isBanned=true + +[Live (http://www.live.com/)] +Parent=Microsoft +Browser=Microsoft Live +isBanned=false +isSyndicationReader=true + +[MFC Foundation Class Library*] +Parent=Microsoft +Browser=MFC Foundation Class Library + +[MFHttpScan] +Parent=Microsoft +Browser=MFHttpScan + +[Microsoft BITS/*] +Parent=Microsoft +Browser=BITS + +[Microsoft Data Access Internet Publishing Provider Cache Manager] +Parent=Microsoft +Browser=MS IPP + +[Microsoft Data Access Internet Publishing Provider DAV*] +Parent=Microsoft +Browser=MS IPP DAV + +[Microsoft Data Access Internet Publishing Provider Protocol Discovery] +Parent=Microsoft +Browser=MS IPPPD + +[Microsoft Internet Explorer] +Parent=Microsoft +Browser=Fake IE + +[Microsoft Office Existence Discovery] +Parent=Microsoft +Browser=Microsoft Office Existence Discovery + +[Microsoft Office Protocol Discovery] +Parent=Microsoft +Browser=MS OPD + +[Microsoft Office/* (*Picture Manager*)] +Parent=Microsoft +Browser=Microsoft Office Picture Manager + +[Microsoft URL Control*] +Parent=Microsoft +Browser=Microsoft URL Control + +[Microsoft Visio MSIE] +Parent=Microsoft +Browser=Microsoft Visio + +[Microsoft-WebDAV-MiniRedir/*] +Parent=Microsoft +Browser=Microsoft-WebDAV + +[Mozilla/5.0 (Macintosh; Intel Mac OS X) Excel/12.*] +Parent=Microsoft +Browser=Microsoft Excel +Version=12.0 +MajorVer=12 +MinorVer=0 +Platform=MacOSX + +[MSN Feed Manager] +Parent=Microsoft +Browser=MSN Feed Manager +isBanned=false +isSyndicationReader=true + +[MSProxy/*] +Parent=Microsoft +Browser=MS Proxy + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Miscellaneous Browsers + +[Miscellaneous Browsers] +Parent=DefaultProperties +Browser=Miscellaneous Browsers +Frames=true +Tables=true +Cookies=true + +[*Amiga*] +Parent=Miscellaneous Browsers +Browser=Amiga +Platform=Amiga + +[*avantbrowser*] +Parent=Miscellaneous Browsers +Browser=Avant Browser + +[12345] +Parent=Miscellaneous Browsers +Browser=12345 +isBanned=true + +[Ace Explorer] +Parent=Miscellaneous Browsers +Browser=Ace Explorer + +[Enigma Browser*] +Parent=Miscellaneous Browsers +Browser=Enigma Browser + +[EVE-minibrowser/*] +Parent=Miscellaneous Browsers +Browser=EVE-minibrowser +IFrames=false +Tables=false +BackgroundSounds=false +VBScript=false +JavaApplets=false +JavaScript=false +ActiveXControls=false +isBanned=false +Crawler=false + +[Godzilla/* (Basic*; *; Commodore C=64; *; rv:1.*)*] +Parent=Miscellaneous Browsers +Browser=Godzilla + +[GreenBrowser] +Parent=Miscellaneous Browsers +Browser=GreenBrowser +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +CssVersion=2 +supportsCSS=true + +[Kopiczek/* (WyderOS*; *)] +Parent=Miscellaneous Browsers +Browser=Kopiczek +Platform=WyderOS +IFrames=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/* (*) - BrowseX (*)] +Parent=Miscellaneous Browsers +Browser=BrowseX + +[Mozilla/* (Win32;*Escape?*; ?)] +Parent=Miscellaneous Browsers +Browser=Escape +Platform=Win32 + +[Mozilla/4.0 (compatible; ibisBrowser)] +Parent=Miscellaneous Browsers +Browser=ibisBrowser + +[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) AppleWebKit/* (*) HistoryHound/*] +Parent=Miscellaneous Browsers +Browser=HistoryHound + +[NetRecorder*] +Parent=Miscellaneous Browsers +Browser=NetRecorder + +[NetSurfer*] +Parent=Miscellaneous Browsers +Browser=NetSurfer + +[ogeb browser , Version 1.1.0] +Parent=Miscellaneous Browsers +Browser=ogeb browser +Version=1.1 +MajorVer=1 +MinorVer=1 + +[SCEJ PSP BROWSER 0102pspNavigator] +Parent=Miscellaneous Browsers +Browser=Wipeout Pure + +[SlimBrowser] +Parent=Miscellaneous Browsers +Browser=SlimBrowser + +[WWW_Browser/*] +Parent=Miscellaneous Browsers +Browser=WWW Browser +Version=1.69 +MajorVer=1 +MinorVer=69 +Platform=Win16 +CssVersion=3 +supportsCSS=true + +[*Netcraft Webserver Survey*] +Parent=Netcraft +Browser=Netcraft Webserver Survey +isBanned=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Offline Browsers + +[Offline Browsers] +Parent=DefaultProperties +Browser=Offline Browsers +Frames=true +Tables=true +Cookies=true +isBanned=true +Crawler=true + +[*Check&Get*] +Parent=Offline Browsers +Browser=Check&Get + +[*HTTrack*] +Parent=Offline Browsers +Browser=HTTrack + +[*MSIECrawler*] +Parent=Offline Browsers +Browser=IE Offline Browser + +[*TweakMASTER*] +Parent=Offline Browsers +Browser=TweakMASTER + +[BackStreet Browser *] +Parent=Offline Browsers +Browser=BackStreet Browser + +[Go-Ahead-Got-It*] +Parent=Offline Browsers +Browser=Go Ahead Got-It + +[iGetter/*] +Parent=Offline Browsers +Browser=iGetter + +[Teleport*] +Parent=Offline Browsers +Browser=Teleport + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Online Scanners + +[Online Scanners] +Parent=DefaultProperties +Browser=Online Scanners +isBanned=true + +[JoeDog/* (X11; I; Siege *)] +Parent=Online Scanners +Browser=JoeDog +isBanned=false + +[Morfeus Fucking Scanner] +Parent=Online Scanners +Browser=Morfeus Fucking Scanner + +[Mozilla/4.0 (compatible; Trend Micro tmdr 1.*] +Parent=Online Scanners +Browser=Trend Micro + +[Titanium 2005 (4.02.01)] +Parent=Online Scanners +Browser=Panda Antivirus Titanium + +[virus_detector*] +Parent=Online Scanners +Browser=Secure Computing Corporation + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Proxy Servers + +[Proxy Servers] +Parent=DefaultProperties +Browser=Proxy Servers +isBanned=true + +[*squid*] +Parent=Proxy Servers +Browser=Squid + +[Anonymisiert*] +Parent=Proxy Servers +Browser=Anonymizied + +[Anonymizer/*] +Parent=Proxy Servers +Browser=Anonymizer + +[Anonymizied*] +Parent=Proxy Servers +Browser=Anonymizied + +[Anonymous*] +Parent=Proxy Servers +Browser=Anonymous + +[Anonymous/*] +Parent=Proxy Servers +Browser=Anonymous + +[CE-Preload] +Parent=Proxy Servers +Browser=CE-Preload + +[http://Anonymouse.org/*] +Parent=Proxy Servers +Browser=Anonymouse + +[IE/6.01 (CP/M; 8-bit*)] +Parent=Proxy Servers +Browser=Squid + +[Mozilla/* (TuringOS; Turing Machine; 0.0)] +Parent=Proxy Servers +Browser=Anonymizer + +[Mozilla/4.0 (compatible; MSIE ?.0; SaferSurf*)] +Parent=Proxy Servers +Browser=SaferSurf + +[Mozilla/5.0 (compatible; del.icio.us-thumbnails/*; *) KHTML/* (like Gecko)] +Parent=Proxy Servers +Browser=Yahoo! +isBanned=true +Crawler=true + +[Nutscrape] +Parent=Proxy Servers +Browser=Squid + +[Nutscrape/* (CP/M; 8-bit*)] +Parent=Proxy Servers +Browser=Squid + +[Privoxy/*] +Parent=Proxy Servers +Browser=Privoxy + +[ProxyTester*] +Parent=Proxy Servers +Browser=ProxyTester +isBanned=true +Crawler=true + +[SilentSurf*] +Parent=Proxy Servers +Browser=SilentSurf + +[SmallProxy*] +Parent=Proxy Servers +Browser=SmallProxy + +[Space*Bison/*] +Parent=Proxy Servers +Browser=Proxomitron + +[Sqworm/*] +Parent=Proxy Servers +Browser=Websense + +[SurfControl] +Parent=Proxy Servers +Browser=SurfControl + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Research Projects + +[Research Projects] +Parent=DefaultProperties +Browser=Research Projects +isBanned=true +Crawler=true + +[*research*] +Parent=Research Projects + +[AcadiaUniversityWebCensusClient] +Parent=Research Projects +Browser=AcadiaUniversityWebCensusClient + +[Amico Alpha * (*) Gecko/* AmicoAlpha/*] +Parent=Research Projects +Browser=Amico Alpha + +[annotate_google; http://ponderer.org/*] +Parent=Research Projects +Browser=Annotate Google + +[CMS crawler (?http://buytaert.net/crawler/)] +Parent=Research Projects + +[e-SocietyRobot(http://www.yama.info.waseda.ac.jp/~yamana/es/)] +Parent=Research Projects +Browser=e-SocietyRobot + +[Forschungsportal/*] +Parent=Research Projects +Browser=Forschungsportal + +[Gulper Web *] +Parent=Research Projects +Browser=Gulper Web Bot + +[HooWWWer/*] +Parent=Research Projects +Browser=HooWWWer + +[http://buytaert.net/crawler] +Parent=Research Projects + +[inetbot/* (?http://www.inetbot.com/bot.html)] +Parent=Research Projects +Browser=inetbot + +[IRLbot/*] +Parent=Research Projects +Browser=IRLbot + +[Lachesis] +Parent=Research Projects +Browser=Lachesis + +[Mozilla/5.0 (compatible; nextthing.org/*)] +Parent=Research Projects +Browser=nextthing.org +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Mozilla/5.0 (compatible; Theophrastus/*)] +Parent=Research Projects +Browser=Theophrastus + +[Mozilla/5.0 (compatible; Webscan v0.*; http://otc.dyndns.org/webscan/)] +Parent=Research Projects +Browser=Webscan + +[MQbot*] +Parent=Research Projects +Browser=MQbot + +[OutfoxBot/*] +Parent=Research Projects +Browser=OutfoxBot + +[polybot?*] +Parent=Research Projects +Browser=Polybot + +[Shim?Crawler*] +Parent=Research Projects +Browser=Shim Crawler + +[Steeler/*] +Parent=Research Projects +Browser=Steeler + +[Taiga web spider] +Parent=Research Projects +Browser=Taiga + +[Theme Spider*] +Parent=Research Projects +Browser=Theme Spider + +[UofTDB_experiment* (leehyun@cs.toronto.edu)] +Parent=Research Projects +Browser=UofTDB Experiment + +[USyd-NLP-Spider*] +Parent=Research Projects +Browser=USyd-NLP-Spider + +[woriobot*] +Parent=Research Projects +Browser=woriobot + +[wwwster/* (Beta, mailto:gue@cis.uni-muenchen.de)] +Parent=Research Projects +Browser=wwwster +Beta=true + +[Zao-Crawler] +Parent=Research Projects +Browser=Zao-Crawler + +[Zao/*] +Parent=Research Projects +Browser=Zao + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Rippers + +[Rippers] +Parent=DefaultProperties +Browser=Rippers +Frames=true +IFrames=true +Tables=true +isBanned=true +Crawler=true + +[*grub*] +Parent=Rippers +Browser=grub + +[*ickHTTP*] +Parent=Rippers +Browser=IP*Works + +[*java*] +Parent=Rippers + +[*libwww-perl*] +Parent=Rippers +Browser=libwww-perl + +[*WebGrabber*] +Parent=Rippers + +[*WinHttpRequest*] +Parent=Rippers +Browser=WinHttp + +[3D-FTP/*] +Parent=Rippers +Browser=3D-FTP + +[3wGet/*] +Parent=Rippers +Browser=3wGet + +[ActiveRefresh*] +Parent=Rippers +Browser=ActiveRefresh + +[Artera (Version *)] +Parent=Rippers +Browser=Artera + +[AutoHotkey] +Parent=Rippers +Browser=AutoHotkey + +[b2w/*] +Parent=Rippers +Browser=b2w + +[BasicHTTP/*] +Parent=Rippers +Browser=BasicHTTP + +[BlockNote.Net] +Parent=Rippers +Browser=BlockNote.Net + +[CAST] +Parent=Rippers +Browser=CAST + +[CFNetwork/*] +Parent=Rippers +Browser=CFNetwork + +[CFSCHEDULE*] +Parent=Rippers +Browser=ColdFusion Task Scheduler + +[CobWeb/*] +Parent=Rippers +Browser=CobWeb + +[ColdFusion*] +Parent=Rippers +Browser=ColdFusion + +[Crawl_Application] +Parent=Rippers +Browser=Crawl_Application + +[curl/*] +Parent=Rippers +Browser=cURL + +[Custo*] +Parent=Rippers +Browser=Custo + +[DataCha0s/*] +Parent=Rippers +Browser=DataCha0s + +[DeepIndexer*] +Parent=Rippers +Browser=DeepIndexer + +[DISCo Pump *] +Parent=Rippers +Browser=DISCo Pump + +[eStyleSearch * (compatible; MSIE 6.0; Windows NT 5.0)] +Parent=Rippers +Browser=eStyleSearch +Win32=true + +[ezic.com http agent *] +Parent=Rippers +Browser=Ezic.com + +[fetch libfetch/*] +Parent=Rippers + +[FGet*] +Parent=Rippers +Browser=FGet + +[Flaming AttackBot*] +Parent=Rippers +Browser=Flaming AttackBot + +[Foobot*] +Parent=Rippers +Browser=Foobot + +[GameSpyHTTP/*] +Parent=Rippers +Browser=GameSpyHTTP + +[gnome-vfs/*] +Parent=Rippers +Browser=gnome-vfs + +[Harvest/*] +Parent=Rippers +Browser=Harvest + +[hcat/*] +Parent=Rippers +Browser=hcat + +[HLoader] +Parent=Rippers +Browser=HLoader + +[Holmes/*] +Parent=Rippers +Browser=Holmes + +[HTMLParser/*] +Parent=Rippers +Browser=HTMLParser + +[http generic] +Parent=Rippers +Browser=http generic + +[httpclient*] +Parent=Rippers + +[httperf/*] +Parent=Rippers +Browser=httperf + +[HTTPFetch/*] +Parent=Rippers +Browser=HTTPFetch + +[HTTPGrab] +Parent=Rippers +Browser=HTTPGrab + +[HttpSession] +Parent=Rippers +Browser=HttpSession + +[httpunit/*] +Parent=Rippers +Browser=HttpUnit + +[ICE_GetFile] +Parent=Rippers +Browser=ICE_GetFile + +[iexplore.exe] +Parent=Rippers + +[Inet - Eureka App] +Parent=Rippers +Browser=Inet - Eureka App + +[INetURL/*] +Parent=Rippers +Browser=INetURL + +[InetURL:/*] +Parent=Rippers +Browser=InetURL + +[Internet Exploiter/*] +Parent=Rippers + +[Internet Explore *] +Parent=Rippers +Browser=Fake IE + +[Internet Explorer *] +Parent=Rippers +Browser=Fake IE + +[IP*Works!*/*] +Parent=Rippers +Browser=IP*Works! + +[IrssiUrlLog/*] +Parent=Rippers +Browser=IrssiUrlLog + +[JPluck/*] +Parent=Rippers +Browser=JPluck + +[Kapere (http://www.kapere.com)] +Parent=Rippers +Browser=Kapere + +[LeechFTP] +Parent=Rippers +Browser=LeechFTP + +[LeechGet*] +Parent=Rippers +Browser=LeechGet + +[libcurl-agent/*] +Parent=Rippers +Browser=libcurl + +[libWeb/clsHTTP*] +Parent=Rippers +Browser=libWeb/clsHTTP + +[lwp*] +Parent=Rippers + +[MFC_Tear_Sample] +Parent=Rippers +Browser=MFC_Tear_Sample + +[Moozilla] +Parent=Rippers +Browser=Moozilla + +[MovableType/*] +Parent=Rippers +Browser=MovableType Web Log + +[Mozilla/2.0 (compatible; NEWT ActiveX; Win32)] +Parent=Rippers +Browser=NEWT ActiveX +Platform=Win32 + +[Mozilla/3.0 (compatible)] +Parent=Rippers + +[Mozilla/3.0 (compatible; Indy Library)] +Parent=Rippers +Cookies=true + +[Mozilla/3.01 (compatible;)] +Parent=Rippers + +[Mozilla/4.0 (compatible; BorderManager*)] +Parent=Rippers +Browser=Novell BorderManager + +[Mozilla/4.0 (compatible;)] +Parent=Rippers + +[Mozilla/5.0 (compatible; IPCheck Server Monitor*)] +Parent=Rippers +Browser=IPCheck Server Monitor + +[OCN-SOC/*] +Parent=Rippers +Browser=OCN-SOC + +[Offline Explorer*] +Parent=Rippers +Browser=Offline Explorer + +[Open Web Analytics Bot*] +Parent=Rippers +Browser=Open Web Analytics Bot + +[OSSProxy*] +Parent=Rippers +Browser=OSSProxy + +[Pageload*] +Parent=Rippers +Browser=PageLoad + +[PageNest/*] +Parent=Rippers +Browser=PageNest + +[pavuk/*] +Parent=Rippers +Browser=Pavuk + +[PEAR HTTP_Request*] +Parent=Rippers +Browser=PEAR-PHP + +[PHP*] +Parent=Rippers +Browser=PHP + +[PigBlock (Windows NT 5.1; U)*] +Parent=Rippers +Browser=PigBlock +Win32=true + +[Pockey*] +Parent=Rippers +Browser=Pockey-GetHTML + +[POE-Component-Client-HTTP/*] +Parent=Rippers +Browser=POE-Component-Client-HTTP + +[PycURL/*] +Parent=Rippers +Browser=PycURL + +[Python*] +Parent=Rippers +Browser=Python + +[RepoMonkey*] +Parent=Rippers +Browser=RepoMonkey + +[SBL-BOT*] +Parent=Rippers +Browser=BlackWidow + +[ScoutAbout*] +Parent=Rippers +Browser=ScoutAbout + +[sherlock/*] +Parent=Rippers +Browser=Sherlock + +[SiteParser/*] +Parent=Rippers +Browser=SiteParser + +[SiteSnagger*] +Parent=Rippers +Browser=SiteSnagger + +[SiteSucker/*] +Parent=Rippers +Browser=SiteSucker + +[SiteWinder*] +Parent=Rippers +Browser=SiteWinder + +[Snoopy*] +Parent=Rippers +Browser=Snoopy + +[SOFTWING_TEAR_AGENT*] +Parent=Rippers +Browser=AspTear + +[SuperHTTP/*] +Parent=Rippers +Browser=SuperHTTP + +[Tcl http client package*] +Parent=Rippers +Browser=Tcl http client package + +[Twisted PageGetter] +Parent=Rippers +Browser=Twisted PageGetter + +[URL2File/*] +Parent=Rippers +Browser=URL2File + +[UtilMind HTTPGet] +Parent=Rippers +Browser=UtilMind HTTPGet + +[VCI WebViewer*] +Parent=Rippers +Browser=VCI WebViewer + +[W3CRobot/*] +Parent=Rippers +Browser=W3CRobot + +[Web Downloader*] +Parent=Rippers +Browser=Web Downloader + +[Web Downloader/*] +Parent=Rippers +Browser=Web Downloader + +[Web Magnet*] +Parent=Rippers +Browser=Web Magnet + +[WebAuto/*] +Parent=Rippers + +[webbandit/*] +Parent=Rippers +Browser=webbandit + +[WebCopier*] +Parent=Rippers +Browser=WebCopier + +[WebDownloader*] +Parent=Rippers +Browser=WebDownloader + +[WebFetch] +Parent=Rippers +Browser=WebFetch + +[webfetch/*] +Parent=Rippers +Browser=WebFetch + +[WebGatherer*] +Parent=Rippers +Browser=WebGatherer + +[WebGet] +Parent=Rippers +Browser=WebGet + +[WebReaper*] +Parent=Rippers +Browser=WebReaper + +[WebRipper] +Parent=Rippers +Browser=WebRipper + +[WebSauger*] +Parent=Rippers +Browser=WebSauger + +[Website Downloader*] +Parent=Rippers +Browser=Website Downloader + +[Website eXtractor*] +Parent=Rippers +Browser=Website eXtractor + +[Website Quester] +Parent=Rippers +Browser=Website Quester + +[WebsiteExtractor*] +Parent=Rippers +Browser=Website eXtractor + +[WebSnatcher*] +Parent=Rippers +Browser=WebSnatcher + +[Webster Pro*] +Parent=Rippers +Browser=Webster Pro + +[WebStripper*] +Parent=Rippers +Browser=WebStripper + +[WebWhacker*] +Parent=Rippers +Browser=WebWhacker + +[WinScripter iNet Tools] +Parent=Rippers +Browser=WinScripter iNet Tools + +[WWW-Mechanize/*] +Parent=Rippers +Browser=WWW-Mechanize + +[Zend_Http_Client] +Parent=Rippers +Browser=Zend_Http_Client + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Site Monitors + +[Site Monitors] +Parent=DefaultProperties +Browser=Site Monitors +Cookies=true +isBanned=true +Crawler=true + +[*EasyRider*] +Parent=Site Monitors +Browser=EasyRider + +[*maxamine.com--robot*] +Parent=Site Monitors +Browser=maxamine.com--robot +isBanned=true + +[*WebMon ?.*] +Parent=Site Monitors +Browser=WebMon + +[Kenjin Spider*] +Parent=Site Monitors +Browser=Kenjin Spider + +[Kevin http://*] +Parent=Site Monitors +Browser=Kevin +isBanned=true + +[Mozilla/4.0 (compatible; ChangeDetection/*] +Parent=Site Monitors +Browser=ChangeDetection + +[Myst Monitor Service v*] +Parent=Site Monitors +Browser=Myst Monitor Service + +[Net Probe] +Parent=Site Monitors +Browser=Net Probe + +[NetMechanic*] +Parent=Site Monitors +Browser=NetMechanic + +[NetReality*] +Parent=Site Monitors +Browser=NetReality + +[Pingdom GIGRIB*] +Parent=Site Monitors +Browser=Pingdom + +[Site Valet Online*] +Parent=Site Monitors +Browser=Site Valet +isBanned=true + +[SITECHECKER] +Parent=Site Monitors +Browser=SITECHECKER + +[sitemonitor@dnsvr.com/*] +Parent=Site Monitors +Browser=ZoneEdit Failover Monitor +isBanned=false + +[UpTime Checker*] +Parent=Site Monitors +Browser=UpTime Checker + +[URL Control*] +Parent=Site Monitors +Browser=URL Control + +[URL_Access/*] +Parent=Site Monitors + +[URLCHECK] +Parent=Site Monitors +Browser=URLCHECK + +[URLy Warning*] +Parent=Site Monitors +Browser=URLy Warning + +[Webcheck *] +Parent=Site Monitors +Browser=Webcheck +Version=1.0 +MajorVer=1 +MinorVer=0 + +[WebPatrol/*] +Parent=Site Monitors +Browser=WebPatrol + +[websitepulse checker/*] +Parent=Site Monitors +Browser=websitepulse checker + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Social Bookmarkers + +[Social Bookmarkers] +Parent=DefaultProperties +Browser=Social Bookmarkers +Frames=true +Tables=true +Cookies=true +JavaScript=true + +[BookmarkBase(2/;http://bookmarkbase.com)] +Parent=Social Bookmarkers +Browser=BookmarkBase + +[Cocoal.icio.us/1.0 (v43) (Mac OS X; http://www.scifihifi.com/cocoalicious)] +Parent=Social Bookmarkers +Browser=Cocoalicious + +[Mozilla/5.0 (compatible; FriendFeedBot/0.*; Http://friendfeed.com/about/bot)] +Parent=Social Bookmarkers +Browser=FriendFeedBot + +[Twitturly*] +Parent=Social Bookmarkers +Browser=Twitturly + +[WinkBot/*] +Parent=Social Bookmarkers +Browser=WinkBot + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Translators + +[Translators] +Parent=DefaultProperties +Browser=Translators +Frames=true +Tables=true +Cookies=true + +[Seram Server] +Parent=Translators +Browser=Seram Server + +[TeragramWebcrawler/*] +Parent=Translators +Browser=TeragramWebcrawler +Version=1.0 +MajorVer=1 +MinorVer=0 + +[WebIndexer/* (Web Indexer; *)] +Parent=Translators +Browser=WorldLingo + +[WebTrans] +Parent=Translators +Browser=WebTrans + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Version Checkers + +[Version Checkers] +Parent=DefaultProperties +Browser=Version Checkers +Crawler=true + +[Automated Browscap.ini Updater. To report issues contact us at http://www.skycomp.ca] +Parent=Version Checkers +Browser=Automated Browscap.ini Updater + +[BMC Link Validator (http://www.briansmodelcars.com/links/)] +Parent=Version Checkers +Browser=BMC Link Validator +MajorVer=1 +MinorVer=0 +Platform=Win2000 + +[Browscap updater] +Parent=Version Checkers +Browser=Browscap updater + +[BrowscapUpdater1.0] +Parent=Version Checkers + +[Browser Capabilities Project (http://browsers.garykeith.com; http://browsers.garykeith.com/sitemail/contact-me.asp)] +Parent=Version Checkers +Browser=Gary Keith's Version Checker + +[Browser Capabilities Project AutoDownloader] +Parent=Version Checkers +Browser=TKC AutoDownloader + +[browsers.garykeith.com browscap.ini bot BETA] +Parent=Version Checkers + +[Code Sample Web Client] +Parent=Version Checkers +Browser=Code Sample Web Client + +[Desktop Sidebar*] +Parent=Version Checkers +Browser=Desktop Sidebar +isBanned=true + +[Mono Browser Capabilities Updater*] +Parent=Version Checkers +Browser=Mono Browser Capabilities Updater +isBanned=true + +[Rewmi/*] +Parent=Version Checkers +isBanned=true + +[Subtext Version 1.9* - http://subtextproject.com/ (Microsoft Windows NT 5.2.*)] +Parent=Version Checkers +Browser=Subtext + +[TherapeuticResearch] +Parent=Version Checkers +Browser=TherapeuticResearch + +[UpdateBrowscap*] +Parent=Version Checkers +Browser=UpdateBrowscap + +[www.garykeith.com browscap.ini bot*] +Parent=Version Checkers +Browser=clarkson.edu + +[www.substancia.com AutoHTTPAgent (ver *)] +Parent=Version Checkers +Browser=Substância + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Become + +[Become] +Parent=DefaultProperties +Browser=Become +Frames=true +Tables=true +isSyndicationReader=true +Crawler=true + +[*BecomeBot/*] +Parent=Become +Browser=BecomeBot + +[*BecomeBot@exava.com*] +Parent=Become +Browser=BecomeBot + +[*Exabot@exava.com*] +Parent=Become +Browser=Exabot + +[MonkeyCrawl/*] +Parent=Become +Browser=MonkeyCrawl + +[Mozilla/5.0 (compatible; BecomeJPBot/2.3; *)] +Parent=Become +Browser=BecomeJPBot + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Blue Coat Systems + +[Blue Coat Systems] +Parent=DefaultProperties +Browser=Blue Coat Systems +isBanned=true +Crawler=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Abusers + +[Browscap Abusers] +Parent=DefaultProperties +Browser=Browscap Abusers +isBanned=true + +[Apple-PubSub/*] +Parent=Browscap Abusers +Browser=Apple-PubSub + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FeedHub + +[FeedHub] +Parent=DefaultProperties +Browser=FeedHub +isSyndicationReader=true + +[FeedHub FeedDiscovery/1.0 (http://www.feedhub.com)] +Parent=FeedHub +Browser=FeedHub FeedDiscovery +Version=1.0 +MajorVer=1 +MinorVer=0 + +[FeedHub FeedFetcher/1.0 (http://www.feedhub.com)] +Parent=FeedHub +Browser=FeedHub FeedFetcher +Version=1.0 +MajorVer=1 +MinorVer=0 + +[FeedHub MetaDataFetcher/1.0 (http://www.feedhub.com)] +Parent=FeedHub +Browser=FeedHub MetaDataFetcher +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Internet Content Rating Association] +Parent=DefaultProperties +Browser= +Frames=true +IFrames=true +Tables=true +Cookies=true +Crawler=true + +[ICRA_label_generator/1.?] +Parent=Internet Content Rating Association +Browser=ICRA_label_generator + +[ICRA_Semantic_spider/0.?] +Parent=Internet Content Rating Association +Browser=ICRA_Semantic_spider + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NameProtect + +[NameProtect] +Parent=DefaultProperties +Browser=NameProtect +isBanned=true +Crawler=true + +[abot/*] +Parent=NameProtect +Browser=NameProtect + +[NP/*] +Parent=NameProtect +Browser=NameProtect + +[NPBot*] +Parent=NameProtect +Browser=NameProtect + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netcraft + +[Netcraft] +Parent=DefaultProperties +Browser=Netcraft +isBanned=true +Crawler=true + +[*Netcraft Web Server Survey*] +Parent=Netcraft +Browser=Netcraft Webserver Survey +isBanned=true + +[Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; info@netcraft.com)] +Parent=Netcraft +Browser=NetcraftSurveyAgent + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NewsGator + +[NewsGator] +Parent=DefaultProperties +Browser=NewsGator +isSyndicationReader=true + +[MarsEdit*] +Parent=NewsGator +Browser=MarsEdit + +[NetNewsWire*/*] +Parent=NewsGator +Browser=NetNewsWire +Platform=MacOSX + +[NewsFire/*] +Parent=NewsGator +Browser=NewsFire + +[NewsGator FetchLinks extension/*] +Parent=NewsGator +Browser=NewsGator FetchLinks + +[NewsGator/*] +Parent=NewsGator +Browser=NewsGator +isBanned=true + +[NewsGatorOnline/*] +Parent=NewsGator +Browser=NewsGatorOnline + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.2 + +[Chrome 0.2] +Parent=DefaultProperties +Browser=Chrome +Version=0.2 +MinorVer=2 +Beta=true +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*] +Parent=Chrome 0.2 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*] +Parent=Chrome 0.2 +Platform=Win2003 + +[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*] +Parent=Chrome 0.2 +Platform=WinVista + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.3 + +[Chrome 0.3] +Parent=DefaultProperties +Browser=Chrome +Version=0.3 +MinorVer=3 +Beta=true +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*] +Parent=Chrome 0.3 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*] +Parent=Chrome 0.3 +Platform=Win2003 + +[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*] +Parent=Chrome 0.3 +Platform=WinVista + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.4 + +[Chrome 0.4] +Parent=DefaultProperties +Browser=Chrome +Version=0.4 +MinorVer=4 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*] +Parent=Chrome 0.4 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*] +Parent=Chrome 0.4 +Platform=Win2003 + +[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*] +Parent=Chrome 0.4 +Platform=WinVista + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.5 + +[Chrome 0.5] +Parent=DefaultProperties +Browser=Chrome +Version=0.5 +MinorVer=5 +Beta=true +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*] +Parent=Chrome 0.5 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*] +Parent=Chrome 0.5 +Platform=Win2003 + +[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*] +Parent=Chrome 0.5 +Platform=WinVista + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 1.0 + +[Chrome 1.0] +Parent=DefaultProperties +Browser=Chrome +Version=1.0 +MajorVer=1 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*] +Parent=Chrome 1.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*] +Parent=Chrome 1.0 +Platform=Win2003 + +[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*] +Parent=Chrome 1.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*] +Parent=Chrome 1.0 +Platform=Win7 + +[Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*] +Parent=Chrome 1.0 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 2.0 + +[Chrome 2.0] +Parent=DefaultProperties +Browser=Chrome +Version=2.0 +MajorVer=2 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*] +Parent=Chrome 2.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*] +Parent=Chrome 2.0 +Platform=Win2003 + +[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*] +Parent=Chrome 2.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*] +Parent=Chrome 2.0 +Platform=Win7 + +[Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*] +Parent=Chrome 2.0 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 3.0 + +[Chrome 3.0] +Parent=DefaultProperties +Browser=Chrome +Version=3.0 +MajorVer=3 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*] +Parent=Chrome 3.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*] +Parent=Chrome 3.0 +Platform=Win2003 + +[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*] +Parent=Chrome 3.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*] +Parent=Chrome 3.0 +Platform=Win7 + +[Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*] +Parent=Chrome 3.0 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Code + +[Google Code] +Parent=DefaultProperties +Browser=Google Code +Tables=true +Cookies=true +JavaApplets=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.2 + +[Iron 0.2] +Parent=DefaultProperties +Browser=Iron +Version=0.2 +MinorVer=2 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*] +Parent=Iron 0.2 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*] +Parent=Iron 0.2 +Platform=WinVista + +[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*] +Parent=Iron 0.2 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.3 + +[Iron 0.3] +Parent=DefaultProperties +Browser=Iron +Version=0.3 +MinorVer=3 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*] +Parent=Iron 0.3 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*] +Parent=Iron 0.3 +Platform=WinVista + +[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*] +Parent=Iron 0.3 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.4 + +[Iron 0.4] +Parent=DefaultProperties +Browser=Iron +Version=0.4 +MinorVer=4 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*] +Parent=Iron 0.4 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*] +Parent=Iron 0.4 +Platform=WinVista + +[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*] +Parent=Iron 0.4 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iPod + +[iPod] +Parent=DefaultProperties +Browser=iPod +Platform=iPhone OSX +isMobileDevice=true + +[Mozilla/5.0 (iPod; U; *Mac OS X; *) AppleWebKit/* (*) Version/3.0 Mobile/* Safari/*] +Parent=iPod +Version=3.0 +MajorVer=3 +MinorVer=0 +Platform=MacOSX + +[Mozilla/5.0 (iPod; U; CPU iPhone OS 2_2 like Mac OS X; en-us) AppleWebKit/* (KHTML, like Gecko) Mobile/*] +Parent=iPod + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iTunes + +[iTunes] +Parent=DefaultProperties +Browser=iTunes +Platform=iPhone OSX + +[iTunes/* (Windows; ?)] +Parent=iTunes +Browser=iTunes +Platform=Win32 +Win32=true + +[MOT-* iTunes/* MIB/* Profile/MIDP-* Configuration/CLDC-* UP.Link/*] +Parent=iTunes + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Media Players + +[Media Players] +Parent=DefaultProperties +Browser=Media Players +Cookies=true + +[Microsoft NetShow(TM) Player with RealVideo(R)] +Parent=Media Players +Browser=Microsoft NetShow + +[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; *) AppleWebKit/* RealPlayer] +Parent=Media Players +Browser=RealPlayer +Platform=MacOSX + +[MPlayer 0.9*] +Parent=Media Players +Browser=MPlayer +Version=0.9 +MajorVer=0 +MinorVer=9 + +[MPlayer 1.*] +Parent=Media Players +Browser=MPlayer +Version=1.0 +MajorVer=1 +MinorVer=0 + +[MPlayer HEAD CVS] +Parent=Media Players +Browser=MPlayer + +[RealPlayer*] +Parent=Media Players +Browser=RealPlayer + +[RMA/*] +Parent=Media Players +Browser=RMA + +[VLC media player*] +Parent=Media Players +Browser=VLC + +[vobsub] +Parent=Media Players +Browser=vobsub +isBanned=true + +[WinampMPEG/*] +Parent=Media Players +Browser=WinAmp + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nintendo + +[Nintendo Wii] +Parent=DefaultProperties +Browser= +isMobileDevice=true + +[Opera/* (Nintendo DSi; Opera/*; *; *)] +Parent=Nintendo Wii +Browser=DSi + +[Opera/* (Nintendo Wii; U; *)] +Parent=Nintendo Wii +Browser=Wii + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows Media Player + +[Windows Media Player] +Parent=DefaultProperties +Browser=Windows Media Player +Cookies=true + +[NSPlayer/10.*] +Parent=Windows Media Player +Version=10.0 +MajorVer=10 +MinorVer=0 + +[NSPlayer/11.*] +Parent=Windows Media Player +Browser=Windows Media Player +Version=11.0 +MajorVer=11 +MinorVer=0 + +[NSPlayer/4.*] +Parent=Windows Media Player +Browser=Windows Media Player +Version=4.0 +MajorVer=4 +MinorVer=0 + +[NSPlayer/7.*] +Parent=Windows Media Player +Browser=Windows Media Player +Version=7.0 +MajorVer=7 +MinorVer=0 + +[NSPlayer/8.*] +Parent=Windows Media Player +Browser=Windows Media Player +Version=8.0 +MajorVer=8 +MinorVer=0 + +[NSPlayer/9.*] +Parent=Windows Media Player +Browser=Windows Media Player +Version=9.0 +MajorVer=9 +MinorVer=0 + +[Windows-Media-Player/10.*] +Parent=Windows Media Player +Browser=Windows-Media-Player +Version=10.0 +MajorVer=10 +MinorVer=0 +Win32=true + +[Windows-Media-Player/11.*] +Parent=Windows Media Player +Version=11.0 +MajorVer=11 +MinorVer=0 +Win32=true + +[Windows-Media-Player/7.*] +Parent=Windows Media Player +Browser=Windows Media Player +Version=7.0 +MajorVer=7 +MinorVer=0 +Win32=true + +[Windows-Media-Player/8.*] +Parent=Windows Media Player +Browser=Windows Media Player +Version=8.0 +MajorVer=8 +MinorVer=0 +Win32=true + +[Windows-Media-Player/9.*] +Parent=Windows Media Player +Version=9.0 +MajorVer=9 +MinorVer=0 +Win32=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Zune + +[Zune] +Parent=DefaultProperties +Browser=Zune +Cookies=true + +[Mozilla/4.0 (compatible; MSIE ?.0; *Zune 2.0*)*] +Parent=Zune +Version=2.0 +MajorVer=2 +MinorVer=0 + +[Mozilla/4.0 (compatible; MSIE ?.0; *Zune 2.5*)*] +Parent=Zune +Version=2.5 +MajorVer=2 +MinorVer=5 + +[Mozilla/4.0 (compatible; MSIE ?.0; *Zune 3.0*)*] +Parent=Zune +Version=3.0 +MajorVer=3 +MinorVer=0 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.0 + +[QuickTime 7.0] +Parent=DefaultProperties +Browser=QuickTime +Version=7.0 +MajorVer=7 +Cookies=true + +[QuickTime (qtver=7.0*;cpu=PPC;os=Mac 10.*)] +Parent=QuickTime 7.0 +Platform=MacOSX + +[QuickTime (qtver=7.0*;cpu=PPC;os=Mac 9.*)] +Parent=QuickTime 7.0 +Platform=MacPPC + +[QuickTime (qtver=7.0*;os=Windows 95*)] +Parent=QuickTime 7.0 +Platform=Win95 +Win32=true + +[QuickTime (qtver=7.0*;os=Windows 98*)] +Parent=QuickTime 7.0 +Platform=Win98 +Win32=true + +[QuickTime (qtver=7.0*;os=Windows Me*)] +Parent=QuickTime 7.0 +Platform=WinME +Win32=true + +[QuickTime (qtver=7.0*;os=Windows NT 4.0*)] +Parent=QuickTime 7.0 +Platform=WinNT +Win32=true + +[QuickTime (qtver=7.0*;os=Windows NT 5.0*)] +Parent=QuickTime 7.0 +Platform=Win2000 +Win32=true + +[QuickTime (qtver=7.0*;os=Windows NT 5.1*)] +Parent=QuickTime 7.0 +Platform=WinXP +Win32=true + +[QuickTime (qtver=7.0*;os=Windows NT 5.2*)] +Parent=QuickTime 7.0 +Platform=Win2003 +Win32=true + +[QuickTime/7.0.* (qtver=7.0.*;*;os=Mac 10.*)*] +Parent=QuickTime 7.0 +Platform=MacOSX + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.1 + +[QuickTime 7.1] +Parent=DefaultProperties +Browser=QuickTime +Version=7.1 +MajorVer=7 +MinorVer=1 +Cookies=true + +[QuickTime (qtver=7.1*;cpu=PPC;os=Mac 10.*)] +Parent=QuickTime 7.1 +Platform=MacOSX + +[QuickTime (qtver=7.1*;cpu=PPC;os=Mac 9.*)] +Parent=QuickTime 7.1 +Platform=MacPPC + +[QuickTime (qtver=7.1*;os=Windows 98*)] +Parent=QuickTime 7.1 +Platform=Win98 +Win32=true + +[QuickTime (qtver=7.1*;os=Windows NT 4.0*)] +Parent=QuickTime 7.1 +Platform=WinNT +Win32=true + +[QuickTime (qtver=7.1*;os=Windows NT 5.0*)] +Parent=QuickTime 7.1 +Platform=Win2000 +Win32=true + +[QuickTime (qtver=7.1*;os=Windows NT 5.1*)] +Parent=QuickTime 7.1 +Platform=WinXP +Win32=true + +[QuickTime (qtver=7.1*;os=Windows NT 5.2*)] +Parent=QuickTime 7.1 +Platform=Win2003 +Win32=true + +[QuickTime/7.1.* (qtver=7.1.*;*;os=Mac 10.*)*] +Parent=QuickTime 7.1 +Platform=MacOSX + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.2 + +[QuickTime 7.2] +Parent=DefaultProperties +Browser=QuickTime +Version=7.2 +MajorVer=7 +MinorVer=2 +Platform=MacOSX +Cookies=true + +[QuickTime (qtver=7.2*;cpu=PPC;os=Mac 10.*)] +Parent=QuickTime 7.2 +Platform=MacOSX + +[QuickTime (qtver=7.2*;cpu=PPC;os=Mac 9.*)] +Parent=QuickTime 7.2 +Platform=MacPPC + +[QuickTime (qtver=7.2*;os=Windows 98*)] +Parent=QuickTime 7.2 +Platform=Win98 +Win32=true + +[QuickTime (qtver=7.2*;os=Windows NT 4.0*)] +Parent=QuickTime 7.2 +Platform=WinNT +Win32=true + +[QuickTime (qtver=7.2*;os=Windows NT 5.0*)] +Parent=QuickTime 7.2 +Platform=Win2000 +Win32=true + +[QuickTime (qtver=7.2*;os=Windows NT 5.1*)] +Parent=QuickTime 7.2 +Platform=WinXP +Win32=true + +[QuickTime (qtver=7.2*;os=Windows NT 5.2*)] +Parent=QuickTime 7.2 +Platform=Win2003 +Win32=true + +[QuickTime/7.2.* (qtver=7.2.*;*;os=Mac 10.*)*] +Parent=QuickTime 7.2 +Platform=MacOSX + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.3 + +[QuickTime 7.3] +Parent=DefaultProperties +Browser=QuickTime +Version=7.3 +MajorVer=7 +MinorVer=3 +Platform=MacOSX +Cookies=true + +[QuickTime (qtver=7.3*;cpu=PPC;os=Mac 10.*)] +Parent=QuickTime 7.3 +Platform=MacOSX + +[QuickTime (qtver=7.3*;cpu=PPC;os=Mac 9.*)] +Parent=QuickTime 7.3 +Platform=MacPPC + +[QuickTime (qtver=7.3*;os=Windows 98*)] +Parent=QuickTime 7.3 +Platform=Win98 +Win32=true + +[QuickTime (qtver=7.3*;os=Windows NT 4.0*)] +Parent=QuickTime 7.3 +Platform=WinNT +Win32=true + +[QuickTime (qtver=7.3*;os=Windows NT 5.0*)] +Parent=QuickTime 7.3 +Platform=Win2000 +Win32=true + +[QuickTime (qtver=7.3*;os=Windows NT 5.1*)] +Parent=QuickTime 7.3 +Platform=WinXP +Win32=true + +[QuickTime (qtver=7.3*;os=Windows NT 5.2*)] +Parent=QuickTime 7.3 +Platform=Win2003 +Win32=true + +[QuickTime/7.3.* (qtver=7.3.*;*;os=Mac 10.*)*] +Parent=QuickTime 7.3 +Platform=MacOSX + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.4 + +[QuickTime 7.4] +Parent=DefaultProperties +Browser=QuickTime +Version=7.4 +MajorVer=7 +MinorVer=4 +Platform=MacOSX +Cookies=true + +[QuickTime (qtver=7.4*;cpu=PPC;os=Mac 10.*)] +Parent=QuickTime 7.4 +Platform=MacOSX + +[QuickTime (qtver=7.4*;cpu=PPC;os=Mac 9.*)] +Parent=QuickTime 7.4 +Platform=MacPPC + +[QuickTime (qtver=7.4*;os=Windows 98*)] +Parent=QuickTime 7.4 +Platform=Win98 +Win32=true + +[QuickTime (qtver=7.4*;os=Windows NT 4.0*)] +Parent=QuickTime 7.4 +Platform=WinNT +Win32=true + +[QuickTime (qtver=7.4*;os=Windows NT 5.0*)] +Parent=QuickTime 7.4 +Platform=Win2000 +Win32=true + +[QuickTime (qtver=7.4*;os=Windows NT 5.1*)] +Parent=QuickTime 7.4 +Platform=WinXP +Win32=true + +[QuickTime (qtver=7.4*;os=Windows NT 5.2*)] +Parent=QuickTime 7.4 +Platform=Win2003 +Win32=true + +[QuickTime/7.4.* (qtver=7.4.*;*;os=Mac 10.*)*] +Parent=QuickTime 7.4 +Platform=MacOSX + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Android + +[Android] +Parent=DefaultProperties +Browser=Android +Frames=true +Tables=true +Cookies=true +JavaScript=true +isMobileDevice=true + +[Mozilla/5.0 (Linux; U; Android *; *) AppleWebKit/* (KHTML, like Gecko) Safari/*] +Parent=Android +Browser=Android +Platform=Linux +isMobileDevice=true + +[Mozilla/5.0 (Linux; U; Android *; *) AppleWebKit/* (KHTML, like Gecko) Version/3.0.* Mobile Safari/*] +Parent=Android +Browser=Android +Platform=Linux +isMobileDevice=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BlackBerry + +[BlackBerry] +Parent=DefaultProperties +Browser=BlackBerry +Frames=true +Tables=true +Cookies=true +JavaScript=true +isMobileDevice=true + +[*BlackBerry*] +Parent=BlackBerry + +[*BlackBerrySimulator/*] +Parent=BlackBerry + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Handspring Blazer + +[Blazer] +Parent=DefaultProperties +Browser=Handspring Blazer +Platform=Palm +Frames=true +Tables=true +Cookies=true +isMobileDevice=true + +[Mozilla/4.0 (compatible; MSIE 6.0; Windows 95; PalmSource; Blazer 3.0) 16;160x160] +Parent=Blazer +Version=3.0 +MajorVer=3 +MinorVer=0 + +[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.0) 16;320x448] +Parent=Blazer +Version=4.0 +MajorVer=4 +MinorVer=0 + +[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.1) 16;320x320] +Parent=Blazer +Version=4.1 +MajorVer=4 +MinorVer=1 + +[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.2) 16;320x320] +Parent=Blazer +Version=4.2 +MajorVer=4 +MinorVer=2 + +[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.4) 16;320x320] +Parent=Blazer +Version=4.4 +MajorVer=4 +MinorVer=4 + +[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.5) 16;320x320] +Parent=Blazer +Version=4.5 +MajorVer=4 +MinorVer=5 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DoCoMo + +[DoCoMo] +Parent=DefaultProperties +Browser=DoCoMo +Frames=true +Tables=true +Cookies=true +JavaScript=true +isMobileDevice=true + +[DoCoMo/1.0*] +Parent=DoCoMo +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=WAP + +[DoCoMo/2.0*] +Parent=DoCoMo +Version=2.0 +MajorVer=2 +MinorVer=0 +Platform=WAP + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile + +[IEMobile] +Parent=DefaultProperties +Browser=IEMobile +Platform=WinCE +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +VBScript=true +JavaScript=true +ActiveXControls=true +isMobileDevice=true +CssVersion=2 +supportsCSS=true + +[Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.*)*] +Parent=IEMobile +Version=6.0 +MajorVer=6 +MinorVer=0 + +[Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.*)*] +Parent=IEMobile +Version=7.0 +MajorVer=7 +MinorVer=0 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iPhone + +[iPhone] +Parent=DefaultProperties +Browser=iPhone +Platform=iPhone OSX +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +isMobileDevice=true +CssVersion=3 +supportsCSS=true + +[Mozilla/4.0 (iPhone; *)] +Parent=iPhone + +[Mozilla/4.0 (iPhone; U; CPU like Mac OS X; *)] +Parent=iPhone + +[Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*] +Parent=iPhone +Browser=iPhone Simulator +Version=3.1 +MajorVer=3 +MinorVer=1 + +[Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_0_1 like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*] +Parent=iPhone +Browser=iPhone Simulator +Version=3.1 +MajorVer=3 +MinorVer=1 + +[Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_1 like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*] +Parent=iPhone +Browser=iPhone Simulator +Version=3.1 +MajorVer=3 +MinorVer=1 + +[Mozilla/5.0 (iPhone)] +Parent=iPhone + +[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)] +Parent=iPhone +Version=3.1 +MajorVer=3 +MinorVer=1 + +[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*] +Parent=iPhone +Version=3.1 +MajorVer=3 +MinorVer=1 + +[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_0* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*] +Parent=iPhone +Version=3.1 +MajorVer=3 +MinorVer=1 + +[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_0_2 like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)] +Parent=iPhone + +[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_1 like Mac OS X; *)*] +Parent=iPhone + +[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_2_1 like Mac OS X; *)] +Parent=iPhone + +[Mozilla/5.0 (iPhone; U; CPU like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.0 Mobile/* Safari/*] +Parent=iPhone +Version=3.0 +MajorVer=3 +MinorVer=0 + +[Mozilla/5.0 (iPod; U; *Mac OS X; *) AppleWebKit/* (*) Version/* Mobile/*] +Parent=iPhone +Browser=iTouch + +[Mozilla/5.0 (iPod; U; CPU iPhone OS 2_2* like Mac OS X; *)*] +Parent=iPhone +Browser=iTouch +Version=2.2 +MajorVer=2 +MinorVer=2 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; KDDI + +[KDDI] +Parent=DefaultProperties +Browser=KDDI +Frames=true +Tables=true +Cookies=true +BackgroundSounds=true +VBScript=true +JavaScript=true +ActiveXControls=true +isMobileDevice=true +CssVersion=1 +supportsCSS=true + +[KDDI-* UP.Browser/* (GUI) MMP/*] +Parent=KDDI + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Miscellaneous Mobile + +[Miscellaneous Mobile] +Parent=DefaultProperties +Browser= +IFrames=true +Tables=true +Cookies=true +JavaScript=true +isMobileDevice=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (X11; *; CentOS; *) AppleWebKit/* (KHTML, like Gecko) Bolt/0.* Version/3.0 Safari/*] +Parent=Miscellaneous Mobile +Browser=Bolt + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Motorola Internet Browser + +[Motorola Internet Browser] +Parent=DefaultProperties +Browser=Motorola Internet Browser +Frames=true +Tables=true +Cookies=true +isMobileDevice=true + +[MOT-*/*] +Parent=Motorola Internet Browser + +[MOT-1*/* UP.Browser/*] +Parent=Motorola Internet Browser + +[MOT-8700_/* UP.Browser/*] +Parent=Motorola Internet Browser + +[MOT-A-0A/* UP.Browser/*] +Parent=Motorola Internet Browser + +[MOT-A-2B/* UP.Browser/*] +Parent=Motorola Internet Browser + +[MOT-A-88/* UP.Browser/*] +Parent=Motorola Internet Browser + +[MOT-C???/* MIB/*] +Parent=Motorola Internet Browser + +[MOT-GATW_/* UP.Browser/*] +Parent=Motorola Internet Browser + +[MOT-L6/* MIB/*] +Parent=Motorola Internet Browser + +[MOT-L7/* MIB/*] +Parent=Motorola Internet Browser + +[MOT-M*/* UP.Browser/*] +Parent=Motorola Internet Browser + +[MOT-MP*/* Mozilla/* (compatible; MSIE *; Windows CE; *)] +Parent=Motorola Internet Browser +Win32=true + +[MOT-MP*/* Mozilla/4.0 (compatible; MSIE *; Windows CE; *)] +Parent=Motorola Internet Browser +Win32=true + +[MOT-SAP4_/* UP.Browser/*] +Parent=Motorola Internet Browser + +[MOT-T*/*] +Parent=Motorola Internet Browser + +[MOT-T7*/* MIB/*] +Parent=Motorola Internet Browser + +[MOT-T721*] +Parent=Motorola Internet Browser + +[MOT-TA02/* MIB/*] +Parent=Motorola Internet Browser + +[MOT-V*/*] +Parent=Motorola Internet Browser + +[MOT-V*/* MIB/*] +Parent=Motorola Internet Browser + +[MOT-V*/* UP.Browser/*] +Parent=Motorola Internet Browser + +[MOT-V3/* MIB/*] +Parent=Motorola Internet Browser + +[MOT-V4*/* MIB/*] +Parent=Motorola Internet Browser + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN Mobile Proxy + +[MSN Mobile Proxy] +Parent=DefaultProperties +Browser=MSN Mobile Proxy +Win32=true +Frames=true +Tables=true +Cookies=true +JavaScript=true +ActiveXControls=true +isMobileDevice=true + +[Mozilla/* (compatible; MSIE *; Windows*; MSN Mobile Proxy)] +Parent=MSN Mobile Proxy + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetFront + +[NetFront] +Parent=DefaultProperties +Browser=NetFront +Frames=true +Tables=true +Cookies=true +JavaScript=true +isMobileDevice=true + +[*NetFront/*] +Parent=NetFront + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia + +[Nokia] +Parent=DefaultProperties +Browser=Nokia +Tables=true +Cookies=true +isMobileDevice=true + +[*Nokia*/*] +Parent=Nokia + +[Mozilla/* (SymbianOS/*; ?; *) AppleWebKit/* (KHTML, like Gecko) Safari/*] +Parent=Nokia +Platform=SymbianOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Openwave Mobile Browser + +[Openwave Mobile Browser] +Parent=DefaultProperties +Browser=Openwave Mobile Browser +Alpha=true +Win32=true +Win64=true +Frames=true +Tables=true +Cookies=true +isMobileDevice=true + +[*UP.Browser/*] +Parent=Openwave Mobile Browser + +[*UP.Link/*] +Parent=Openwave Mobile Browser + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini + +[Opera Mini] +Parent=DefaultProperties +Browser=Opera Mini +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaScript=true +isMobileDevice=true + +[Opera/* (J2ME/MIDP; Opera Mini/1.0*)*] +Parent=Opera Mini +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Opera/* (J2ME/MIDP; Opera Mini/1.1*)*] +Parent=Opera Mini +Version=1.1 +MajorVer=1 +MinorVer=1 + +[Opera/* (J2ME/MIDP; Opera Mini/1.2*)*] +Parent=Opera Mini +Version=1.2 +MajorVer=1 +MinorVer=2 + +[Opera/* (J2ME/MIDP; Opera Mini/2.0*)*] +Parent=Opera Mini +Version=2.0 +MajorVer=2 +MinorVer=0 + +[Opera/* (J2ME/MIDP; Opera Mini/3.0*)*] +Parent=Opera Mini +Version=3.0 +MajorVer=3 +MinorVer=0 + +[Opera/* (J2ME/MIDP; Opera Mini/3.1*)*] +Parent=Opera Mini +Version=3.1 +MajorVer=3 +MinorVer=1 + +[Opera/* (J2ME/MIDP; Opera Mini/4.0*)*] +Parent=Opera Mini +Version=4.0 +MajorVer=4 +MinorVer=0 + +[Opera/* (J2ME/MIDP; Opera Mini/4.1*)*] +Parent=Opera Mini +Version=4.1 +MajorVer=4 +MinorVer=1 + +[Opera/* (J2ME/MIDP; Opera Mini/4.2*)*] +Parent=Opera Mini +Version=4.2 +MajorVer=4 +MinorVer=2 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile + +[Opera Mobile] +Parent=DefaultProperties +Browser=Opera Mobi +Frames=true +Tables=true +Cookies=true +isMobileDevice=true + +[Opera/9.5 (Microsoft Windows; PPC; *Opera Mobile/*)] +Parent=Opera Mobile +Version=9.5 +MajorVer=9 +MinorVer=5 + +[Opera/9.5 (Microsoft Windows; PPC; Opera Mobi/*)] +Parent=Opera Mobile +Version=9.5 +MajorVer=9 +MinorVer=5 + +[Opera/9.51 Beta (Microsoft Windows; PPC; Opera Mobi/*)*] +Parent=Opera Mobile +Version=9.51 +MajorVer=9 +MinorVer=51 +Beta=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Playstation + +[Playstation] +Parent=DefaultProperties +Browser=Playstation +Platform=WAP +Frames=true +Tables=true +Cookies=true +isMobileDevice=true + +[Mozilla/* (PLAYSTATION *; *)] +Parent=Playstation +Browser=PlayStation 3 +Frames=false + +[Mozilla/* (PSP (PlayStation Portable); *)] +Parent=Playstation + +[Sony PS2 (Linux)] +Parent=Playstation +Browser=Sony PS2 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Pocket PC + +[Pocket PC] +Parent=DefaultProperties +Browser=Pocket PC +Platform=WinCE +Win32=true +Frames=true +Tables=true +Cookies=true +JavaScript=true +ActiveXControls=true +isMobileDevice=true +CssVersion=1 +supportsCSS=true + +[*(compatible; MSIE *.*; Windows CE; PPC; *)] +Parent=Pocket PC + +[HTC-*/* Mozilla/* (compatible; MSIE *.*; Windows CE*)*] +Parent=Pocket PC +Win32=true + +[Mozilla/* (compatible; MSPIE *.*; *Windows CE*)*] +Parent=Pocket PC +Win32=true + +[T-Mobile* Mozilla/* (compatible; MSIE *.*; Windows CE; *)] +Parent=Pocket PC + +[Vodafone* Mozilla/* (compatible; MSIE *.*; Windows CE; *)*] +Parent=Pocket PC + +[Windows CE (Pocket PC) - Version *.*] +Parent=Pocket PC +Win32=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SEMC Browser + +[SEMC Browser] +Parent=DefaultProperties +Browser=SEMC Browser +Platform=JAVA +Tables=true +isMobileDevice=true +CssVersion=1 +supportsCSS=true + +[*SEMC-Browser/*] +Parent=SEMC Browser + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SonyEricsson + +[SonyEricsson] +Parent=DefaultProperties +Browser=SonyEricsson +Frames=true +Tables=true +Cookies=true +JavaScript=true +isMobileDevice=true +CssVersion=1 +supportsCSS=true + +[*Ericsson*] +Parent=SonyEricsson + +[*SonyEricsson*] +Parent=SonyEricsson + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netbox + +[Netbox] +Parent=DefaultProperties +Browser=Netbox +Frames=true +Tables=true +Cookies=true +JavaScript=true +CssVersion=1 +supportsCSS=true + +[Mozilla/3.01 (compatible; Netbox/*; Linux*)] +Parent=Netbox +Browser=Netbox +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PowerTV + +[PowerTV] +Parent=DefaultProperties +Browser=PowerTV +Platform=PowerTV +Frames=true +Tables=true +Cookies=true +JavaScript=true + +[Mozilla/4.0 PowerTV/1.5 (Compatible; Spyglass DM 3.2.1, EXPLORER)] +Parent=PowerTV +Version=1.5 +MajorVer=1 +MinorVer=5 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WebTV/MSNTV + +[WebTV] +Parent=DefaultProperties +Browser=WebTV/MSNTV +Platform=WebTV +Frames=true +Tables=true +Cookies=true +JavaScript=true + +[Mozilla/3.0 WebTV/1.*(compatible; MSIE 2.0)] +Parent=WebTV +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Mozilla/4.0 WebTV/2.0*(compatible; MSIE 3.0)] +Parent=WebTV +Version=2.0 +MajorVer=2 +MinorVer=0 + +[Mozilla/4.0 WebTV/2.1*(compatible; MSIE 3.0)] +Parent=WebTV +Version=2.1 +MajorVer=2 +MinorVer=1 + +[Mozilla/4.0 WebTV/2.2*(compatible; MSIE 3.0)] +Parent=WebTV +Version=2.2 +MajorVer=2 +MinorVer=2 + +[Mozilla/4.0 WebTV/2.3*(compatible; MSIE 3.0)] +Parent=WebTV +Version=2.3 +MajorVer=2 +MinorVer=3 + +[Mozilla/4.0 WebTV/2.4*(compatible; MSIE 3.0)] +Parent=WebTV +Version=2.4 +MajorVer=2 +MinorVer=4 + +[Mozilla/4.0 WebTV/2.5*(compatible; MSIE 4.0)] +Parent=WebTV +Version=2.5 +MajorVer=2 +MinorVer=5 +CssVersion=1 +supportsCSS=true + +[Mozilla/4.0 WebTV/2.6*(compatible; MSIE 4.0)] +Parent=WebTV +Version=2.6 +MajorVer=2 +MinorVer=6 +CssVersion=1 +supportsCSS=true + +[Mozilla/4.0 WebTV/2.7*(compatible; MSIE 4.0)] +Parent=WebTV +Version=2.7 +MajorVer=2 +MinorVer=7 +CssVersion=1 +supportsCSS=true + +[Mozilla/4.0 WebTV/2.8*(compatible; MSIE 4.0)] +Parent=WebTV +Version=2.8 +MajorVer=2 +MinorVer=8 +JavaApplets=true +CssVersion=1 +supportsCSS=true + +[Mozilla/4.0 WebTV/2.9*(compatible; MSIE 4.0)] +Parent=WebTV +Version=2.9 +MajorVer=2 +MinorVer=9 +JavaApplets=true +CssVersion=1 +supportsCSS=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Amaya + +[Amaya] +Parent=DefaultProperties +Browser=Amaya +Tables=true +Cookies=true + +[amaya/7.*] +Parent=Amaya +Version=7.0 +MajorVer=7 +MinorVer=0 + +[amaya/8.0*] +Parent=Amaya +Version=8.0 +MajorVer=8 +MinorVer=0 +CssVersion=2 +supportsCSS=true + +[amaya/8.1*] +Parent=Amaya +Version=8.1 +MajorVer=8 +MinorVer=1 +CssVersion=2 +supportsCSS=true + +[amaya/8.2*] +Parent=Amaya +Version=8.2 +MajorVer=8 +MinorVer=2 +CssVersion=2 +supportsCSS=true + +[amaya/8.3*] +Parent=Amaya +Version=8.3 +MajorVer=8 +MinorVer=3 +CssVersion=2 +supportsCSS=true + +[amaya/8.4*] +Parent=Amaya +Version=8.4 +MajorVer=8 +MinorVer=4 +CssVersion=2 +supportsCSS=true + +[amaya/8.5*] +Parent=Amaya +Version=8.5 +MajorVer=8 +MinorVer=5 +CssVersion=2 +supportsCSS=true + +[amaya/8.6*] +Parent=Amaya +Version=8.6 +MajorVer=8 +MinorVer=6 +CssVersion=2 +supportsCSS=true + +[amaya/8.7*] +Parent=Amaya +Version=8.7 +MajorVer=8 +MinorVer=7 +CssVersion=2 +supportsCSS=true + +[amaya/8.8*] +Parent=Amaya +Version=8.8 +MajorVer=8 +MinorVer=8 +CssVersion=2 +supportsCSS=true + +[amaya/8.9*] +Parent=Amaya +Version=8.9 +MajorVer=8 +MinorVer=9 +CssVersion=2 +supportsCSS=true + +[amaya/9.0*] +Parent=Amaya +Version=9.0 +MajorVer=8 +MinorVer=0 +CssVersion=2 +supportsCSS=true + +[amaya/9.1*] +Parent=Amaya +Version=9.1 +MajorVer=9 +MinorVer=1 +CssVersion=2 +supportsCSS=true + +[amaya/9.2*] +Parent=Amaya +Version=9.2 +MajorVer=9 +MinorVer=2 +CssVersion=2 +supportsCSS=true + +[amaya/9.3*] +Parent=Amaya +Version=9.3 +MajorVer=9 +MinorVer=3 + +[amaya/9.4*] +Parent=Amaya +Version=9.4 +MajorVer=9 +MinorVer=4 + +[amaya/9.5*] +Parent=Amaya +Version=9.5 +MajorVer=9 +MinorVer=5 + +[Emacs-w3m/*] +Parent=Emacs/W3 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Links + +[Links] +Parent=DefaultProperties +Browser=Links +Frames=true +Tables=true + +[Links (0.9*; CYGWIN_NT-5.1*)] +Parent=Links +Browser=Links +Version=0.9 +MajorVer=0 +MinorVer=9 +Platform=WinXP + +[Links (0.9*; Darwin*)] +Parent=Links +Version=0.9 +MajorVer=0 +MinorVer=9 +Platform=MacPPC + +[Links (0.9*; FreeBSD*)] +Parent=Links +Browser=Links +Version=0.9 +MajorVer=0 +MinorVer=9 +Platform=FreeBSD + +[Links (0.9*; Linux*)] +Parent=Links +Browser=Links +Version=0.9 +MajorVer=0 +MinorVer=9 +Platform=Linux + +[Links (0.9*; OS/2*)] +Parent=Links +Browser=Links +Version=0.9 +MajorVer=0 +MinorVer=9 +Platform=OS/2 + +[Links (0.9*; Unix*)] +Parent=Links +Browser=Links +Version=0.9 +MajorVer=0 +MinorVer=9 +Platform=Unix + +[Links (0.9*; Win32*)] +Parent=Links +Browser=Links +Version=0.9 +MajorVer=0 +MinorVer=9 +Platform=Win32 +Win32=true + +[Links (1.0*; CYGWIN_NT-5.1*)] +Parent=Links +Browser=Links +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=WinXP + +[Links (1.0*; FreeBSD*)] +Parent=Links +Browser=Links +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=FreeBSD + +[Links (1.0*; Linux*)] +Parent=Links +Browser=Links +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Linux + +[Links (1.0*; OS/2*)] +Parent=Links +Browser=Links +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=OS/2 + +[Links (1.0*; Unix*)] +Parent=Links +Browser=Links +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Unix + +[Links (1.0*; Win32*)] +Parent=Links +Browser=Links +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win32 +Win32=true + +[Links (2.0*; Linux*)] +Parent=Links +Browser=Links +Version=2.0 +MajorVer=2 +MinorVer=0 +Platform=Linux + +[Links (2.1*; FreeBSD*)] +Parent=Links +Browser=Links +Version=2.1 +MajorVer=2 +MinorVer=1 +Platform=FreeBSD + +[Links (2.1*; Linux *)] +Parent=Links +Browser=Links +Version=2.1 +MajorVer=2 +MinorVer=1 +Platform=Linux + +[Links (2.1*; OpenBSD*)] +Parent=Links +Browser=Links +Version=2.1 +MajorVer=2 +MinorVer=1 +Platform=OpenBSD + +[Links (2.2*; FreeBSD*)] +Parent=Links +Version=2.2 +MajorVer=2 +MinorVer=2 +Platform=FreeBSD + +[Links (2.2*; Linux *)] +Parent=Links +Version=2.2 +MajorVer=2 +MinorVer=2 +Platform=Linux + +[Links (2.2*; OpenBSD*)] +Parent=Links +Version=2.2 +MajorVer=2 +MinorVer=2 +Platform=OpenBSD + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lynx + +[Lynx] +Parent=DefaultProperties +Browser=Lynx +Frames=true +Tables=true + +[Lynx *] +Parent=Lynx +Browser=Lynx + +[Lynx/2.3*] +Parent=Lynx +Browser=Lynx +Version=2.3 +MajorVer=2 +MinorVer=3 + +[Lynx/2.4*] +Parent=Lynx +Browser=Lynx +Version=2.4 +MajorVer=2 +MinorVer=4 + +[Lynx/2.5*] +Parent=Lynx +Browser=Lynx +Version=2.5 +MajorVer=2 +MinorVer=5 + +[Lynx/2.6*] +Parent=Lynx +Browser=Lynx +Version=2.6 +MajorVer=2 +MinorVer=6 + +[Lynx/2.7*] +Parent=Lynx +Browser=Lynx +Version=2.7 +MajorVer=2 +MinorVer=7 + +[Lynx/2.8*] +Parent=Lynx +Browser=Lynx +Version=2.8 +MajorVer=2 +MinorVer=8 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NCSA Mosaic + +[Mosaic] +Parent=DefaultProperties +Browser=Mosaic + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; w3m + +[w3m] +Parent=DefaultProperties +Browser=w3m +Frames=true +Tables=true + +[w3m/0.1*] +Parent=w3m +Browser=w3m +Version=0.1 +MajorVer=0 +MinorVer=1 + +[w3m/0.2*] +Parent=w3m +Browser=w3m +Version=0.2 +MajorVer=0 +MinorVer=2 + +[w3m/0.3*] +Parent=w3m +Browser=w3m +Version=0.3 +MajorVer=0 +MinorVer=3 + +[w3m/0.4*] +Parent=w3m +Browser=w3m +Version=0.4 +MajorVer=0 +MinorVer=4 +Cookies=true + +[w3m/0.5*] +Parent=w3m +Browser=w3m +Version=0.5 +MajorVer=0 +MinorVer=5 +Cookies=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.10 + +[ELinks 0.10] +Parent=DefaultProperties +Browser=ELinks +Version=0.10 +MinorVer=10 +Frames=true +Tables=true + +[ELinks (0.10*; *AIX*)] +Parent=ELinks 0.10 +Platform=AIX + +[ELinks (0.10*; *BeOS*)] +Parent=ELinks 0.10 +Platform=BeOS + +[ELinks (0.10*; *CygWin*)] +Parent=ELinks 0.10 +Platform=CygWin + +[ELinks (0.10*; *Darwin*)] +Parent=ELinks 0.10 +Platform=Darwin + +[ELinks (0.10*; *Digital Unix*)] +Parent=ELinks 0.10 +Platform=Digital Unix + +[ELinks (0.10*; *FreeBSD*)] +Parent=ELinks 0.10 +Platform=FreeBSD + +[ELinks (0.10*; *HPUX*)] +Parent=ELinks 0.10 +Platform=HP-UX + +[ELinks (0.10*; *IRIX*)] +Parent=ELinks 0.10 +Platform=IRIX + +[ELinks (0.10*; *Linux*)] +Parent=ELinks 0.10 +Platform=Linux + +[ELinks (0.10*; *NetBSD*)] +Parent=ELinks 0.10 +Platform=NetBSD + +[ELinks (0.10*; *OpenBSD*)] +Parent=ELinks 0.10 +Platform=OpenBSD + +[ELinks (0.10*; *OS/2*)] +Parent=ELinks 0.10 +Platform=OS/2 + +[ELinks (0.10*; *RISC*)] +Parent=ELinks 0.10 +Platform=RISC OS + +[ELinks (0.10*; *Solaris*)] +Parent=ELinks 0.10 +Platform=Solaris + +[ELinks (0.10*; *Unix*)] +Parent=ELinks 0.10 +Platform=Unix + +[ELinks/0.10* (*AIX*)] +Parent=ELinks 0.10 +Platform=AIX + +[ELinks/0.10* (*BeOS*)] +Parent=ELinks 0.10 +Platform=BeOS + +[ELinks/0.10* (*CygWin*)] +Parent=ELinks 0.10 +Platform=CygWin + +[ELinks/0.10* (*Darwin*)] +Parent=ELinks 0.10 +Platform=Darwin + +[ELinks/0.10* (*Digital Unix*)] +Parent=ELinks 0.10 +Platform=Digital Unix + +[ELinks/0.10* (*FreeBSD*)] +Parent=ELinks 0.10 +Platform=FreeBSD + +[ELinks/0.10* (*HPUX*)] +Parent=ELinks 0.10 +Platform=HP-UX + +[ELinks/0.10* (*IRIX*)] +Parent=ELinks 0.10 +Platform=IRIX + +[ELinks/0.10* (*Linux*)] +Parent=ELinks 0.10 +Platform=Linux + +[ELinks/0.10* (*NetBSD*)] +Parent=ELinks 0.10 +Platform=NetBSD + +[ELinks/0.10* (*OpenBSD*)] +Parent=ELinks 0.10 +Platform=OpenBSD + +[ELinks/0.10* (*OS/2*)] +Parent=ELinks 0.10 +Platform=OS/2 + +[ELinks/0.10* (*RISC*)] +Parent=ELinks 0.10 +Platform=RISC OS + +[ELinks/0.10* (*Solaris*)] +Parent=ELinks 0.10 +Platform=Solaris + +[ELinks/0.10* (*Unix*)] +Parent=ELinks 0.10 +Platform=Unix + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.11 + +[ELinks 0.11] +Parent=DefaultProperties +Browser=ELinks +Version=0.11 +MinorVer=11 +Frames=true +Tables=true + +[ELinks (0.11*; *AIX*)] +Parent=ELinks 0.11 +Platform=AIX + +[ELinks (0.11*; *BeOS*)] +Parent=ELinks 0.11 +Platform=BeOS + +[ELinks (0.11*; *CygWin*)] +Parent=ELinks 0.11 +Platform=CygWin + +[ELinks (0.11*; *Darwin*)] +Parent=ELinks 0.11 +Platform=Darwin + +[ELinks (0.11*; *Digital Unix*)] +Parent=ELinks 0.11 +Platform=Digital Unix + +[ELinks (0.11*; *FreeBSD*)] +Parent=ELinks 0.11 +Platform=FreeBSD + +[ELinks (0.11*; *HPUX*)] +Parent=ELinks 0.11 +Platform=HP-UX + +[ELinks (0.11*; *IRIX*)] +Parent=ELinks 0.11 +Platform=IRIX + +[ELinks (0.11*; *Linux*)] +Parent=ELinks 0.11 +Platform=Linux + +[ELinks (0.11*; *NetBSD*)] +Parent=ELinks 0.11 +Platform=NetBSD + +[ELinks (0.11*; *OpenBSD*)] +Parent=ELinks 0.11 +Platform=OpenBSD + +[ELinks (0.11*; *OS/2*)] +Parent=ELinks 0.11 +Platform=OS/2 + +[ELinks (0.11*; *RISC*)] +Parent=ELinks 0.11 +Platform=RISC OS + +[ELinks (0.11*; *Solaris*)] +Parent=ELinks 0.11 +Platform=Solaris + +[ELinks (0.11*; *Unix*)] +Parent=ELinks 0.11 +Platform=Unix + +[ELinks/0.11* (*AIX*)] +Parent=ELinks 0.11 +Platform=AIX + +[ELinks/0.11* (*BeOS*)] +Parent=ELinks 0.11 +Platform=BeOS + +[ELinks/0.11* (*CygWin*)] +Parent=ELinks 0.11 +Platform=CygWin + +[ELinks/0.11* (*Darwin*)] +Parent=ELinks 0.11 +Platform=Darwin + +[ELinks/0.11* (*Digital Unix*)] +Parent=ELinks 0.11 +Platform=Digital Unix + +[ELinks/0.11* (*FreeBSD*)] +Parent=ELinks 0.11 +Platform=FreeBSD + +[ELinks/0.11* (*HPUX*)] +Parent=ELinks 0.11 +Platform=HP-UX + +[ELinks/0.11* (*IRIX*)] +Parent=ELinks 0.11 +Platform=IRIX + +[ELinks/0.11* (*Linux*)] +Parent=ELinks 0.11 +Platform=Linux + +[ELinks/0.11* (*NetBSD*)] +Parent=ELinks 0.11 +Platform=NetBSD + +[ELinks/0.11* (*OpenBSD*)] +Parent=ELinks 0.11 +Platform=OpenBSD + +[ELinks/0.11* (*OS/2*)] +Parent=ELinks 0.11 +Platform=OS/2 + +[ELinks/0.11* (*RISC*)] +Parent=ELinks 0.11 +Platform=RISC OS + +[ELinks/0.11* (*Solaris*)] +Parent=ELinks 0.11 +Platform=Solaris + +[ELinks/0.11* (*Unix*)] +Parent=ELinks 0.11 +Platform=Unix + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.12 + +[ELinks 0.12] +Parent=DefaultProperties +Browser=ELinks +Version=0.12 +MinorVer=12 +Frames=true +Tables=true + +[ELinks (0.12*; *AIX*)] +Parent=ELinks 0.12 +Platform=AIX + +[ELinks (0.12*; *BeOS*)] +Parent=ELinks 0.12 +Platform=BeOS + +[ELinks (0.12*; *CygWin*)] +Parent=ELinks 0.12 +Platform=CygWin + +[ELinks (0.12*; *Darwin*)] +Parent=ELinks 0.12 +Platform=Darwin + +[ELinks (0.12*; *Digital Unix*)] +Parent=ELinks 0.12 +Platform=Digital Unix + +[ELinks (0.12*; *FreeBSD*)] +Parent=ELinks 0.12 +Platform=FreeBSD + +[ELinks (0.12*; *HPUX*)] +Parent=ELinks 0.12 +Platform=HP-UX + +[ELinks (0.12*; *IRIX*)] +Parent=ELinks 0.12 +Platform=IRIX + +[ELinks (0.12*; *Linux*)] +Parent=ELinks 0.12 +Platform=Linux + +[ELinks (0.12*; *NetBSD*)] +Parent=ELinks 0.12 +Platform=NetBSD + +[ELinks (0.12*; *OpenBSD*)] +Parent=ELinks 0.12 +Platform=OpenBSD + +[ELinks (0.12*; *OS/2*)] +Parent=ELinks 0.12 +Platform=OS/2 + +[ELinks (0.12*; *RISC*)] +Parent=ELinks 0.12 +Platform=RISC OS + +[ELinks (0.12*; *Solaris*)] +Parent=ELinks 0.12 +Platform=Solaris + +[ELinks (0.12*; *Unix*)] +Parent=ELinks 0.12 +Platform=Unix + +[ELinks/0.12* (*AIX*)] +Parent=ELinks 0.12 +Platform=AIX + +[ELinks/0.12* (*BeOS*)] +Parent=ELinks 0.12 +Platform=BeOS + +[ELinks/0.12* (*CygWin*)] +Parent=ELinks 0.12 +Platform=CygWin + +[ELinks/0.12* (*Darwin*)] +Parent=ELinks 0.12 +Platform=Darwin + +[ELinks/0.12* (*Digital Unix*)] +Parent=ELinks 0.12 +Platform=Digital Unix + +[ELinks/0.12* (*FreeBSD*)] +Parent=ELinks 0.12 +Platform=FreeBSD + +[ELinks/0.12* (*HPUX*)] +Parent=ELinks 0.12 +Platform=HP-UX + +[ELinks/0.12* (*IRIX*)] +Parent=ELinks 0.12 +Platform=IRIX + +[ELinks/0.12* (*Linux*)] +Parent=ELinks 0.12 +Platform=Linux + +[ELinks/0.12* (*NetBSD*)] +Parent=ELinks 0.12 +Platform=NetBSD + +[ELinks/0.12* (*OpenBSD*)] +Parent=ELinks 0.12 +Platform=OpenBSD + +[ELinks/0.12* (*OS/2*)] +Parent=ELinks 0.12 +Platform=OS/2 + +[ELinks/0.12* (*RISC*)] +Parent=ELinks 0.12 +Platform=RISC OS + +[ELinks/0.12* (*Solaris*)] +Parent=ELinks 0.12 +Platform=Solaris + +[ELinks/0.12* (*Unix*)] +Parent=ELinks 0.12 +Platform=Unix + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.9 + +[ELinks 0.9] +Parent=DefaultProperties +Browser=ELinks +Version=0.9 +MinorVer=9 +Frames=true +Tables=true + +[ELinks (0.9*; *AIX*)] +Parent=ELinks 0.9 +Platform=AIX + +[ELinks (0.9*; *BeOS*)] +Parent=ELinks 0.9 +Platform=BeOS + +[ELinks (0.9*; *CygWin*)] +Parent=ELinks 0.9 +Platform=CygWin + +[ELinks (0.9*; *Darwin*)] +Parent=ELinks 0.9 +Platform=Darwin + +[ELinks (0.9*; *Digital Unix*)] +Parent=ELinks 0.9 +Platform=Digital Unix + +[ELinks (0.9*; *FreeBSD*)] +Parent=ELinks 0.9 +Platform=FreeBSD + +[ELinks (0.9*; *HPUX*)] +Parent=ELinks 0.9 +Platform=HP-UX + +[ELinks (0.9*; *IRIX*)] +Parent=ELinks 0.9 +Platform=IRIX + +[ELinks (0.9*; *Linux*)] +Parent=ELinks 0.9 +Platform=Linux + +[ELinks (0.9*; *NetBSD*)] +Parent=ELinks 0.9 +Platform=NetBSD + +[ELinks (0.9*; *OpenBSD*)] +Parent=ELinks 0.9 +Platform=OpenBSD + +[ELinks (0.9*; *OS/2*)] +Parent=ELinks 0.9 +Platform=OS/2 + +[ELinks (0.9*; *RISC*)] +Parent=ELinks 0.9 +Platform=RISC OS + +[ELinks (0.9*; *Solaris*)] +Parent=ELinks 0.9 +Platform=Solaris + +[ELinks (0.9*; *Unix*)] +Parent=ELinks 0.9 +Platform=Unix + +[ELinks/0.9* (*AIX*)] +Parent=ELinks 0.9 +Platform=AIX + +[ELinks/0.9* (*BeOS*)] +Parent=ELinks 0.9 +Platform=BeOS + +[ELinks/0.9* (*CygWin*)] +Parent=ELinks 0.9 +Platform=CygWin + +[ELinks/0.9* (*Darwin*)] +Parent=ELinks 0.9 +Platform=Darwin + +[ELinks/0.9* (*Digital Unix*)] +Parent=ELinks 0.9 +Platform=Digital Unix + +[ELinks/0.9* (*FreeBSD*)] +Parent=ELinks 0.9 +Platform=FreeBSD + +[ELinks/0.9* (*HPUX*)] +Parent=ELinks 0.9 +Platform=HP-UX + +[ELinks/0.9* (*IRIX*)] +Parent=ELinks 0.9 +Platform=IRIX + +[ELinks/0.9* (*Linux*)] +Parent=ELinks 0.9 +Platform=Linux + +[ELinks/0.9* (*NetBSD*)] +Parent=ELinks 0.9 +Platform=NetBSD + +[ELinks/0.9* (*OpenBSD*)] +Parent=ELinks 0.9 +Platform=OpenBSD + +[ELinks/0.9* (*OS/2*)] +Parent=ELinks 0.9 +Platform=OS/2 + +[ELinks/0.9* (*RISC*)] +Parent=ELinks 0.9 +Platform=RISC OS + +[ELinks/0.9* (*Solaris*)] +Parent=ELinks 0.9 +Platform=Solaris + +[ELinks/0.9* (*Unix*)] +Parent=ELinks 0.9 +Platform=Unix + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AppleWebKit + +[AppleWebKit] +Parent=DefaultProperties +Browser=AppleWebKit +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (KHTML, like Gecko)] +Parent=AppleWebKit + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Camino + +[Camino] +Parent=DefaultProperties +Browser=Camino +Platform=MacOSX +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.7*] +Parent=Camino +Version=0.7 +MajorVer=0 +MinorVer=7 +Beta=true + +[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.8*] +Parent=Camino +Version=0.8 +MajorVer=0 +MinorVer=8 +Beta=true + +[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.9*] +Parent=Camino +Version=0.9 +MajorVer=0 +MinorVer=9 +Beta=true + +[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.0*] +Parent=Camino +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.2*] +Parent=Camino +Version=1.2 +MajorVer=1 +MinorVer=2 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.3*] +Parent=Camino +Version=1.3 +MajorVer=1 +MinorVer=3 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.4*] +Parent=Camino +Version=1.4 +MajorVer=1 +MinorVer=4 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.5*] +Parent=Camino +Version=1.5 +MajorVer=1 +MinorVer=5 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.6*] +Parent=Camino +Version=1.6 +MajorVer=1 +MinorVer=6 +Platform=MacOSX + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chimera + +[Chimera] +Parent=DefaultProperties +Browser=Chimera +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true + +[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Chimera/*] +Parent=Chimera +Platform=MacOSX + +[Mozilla/5.0 Gecko/* Chimera/*] +Parent=Chimera + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dillo + +[Dillo] +Parent=DefaultProperties +Browser=Dillo +Platform=Linux +Frames=true +IFrames=true +Tables=true +Cookies=true +CssVersion=2 +supportsCSS=true + +[Dillo/0.6*] +Parent=Dillo +Version=0.6 +MajorVer=0 +MinorVer=6 + +[Dillo/0.7*] +Parent=Dillo +Version=0.7 +MajorVer=0 +MinorVer=7 + +[Dillo/0.8*] +Parent=Dillo +Version=0.8 +MajorVer=0 +MinorVer=8 + +[Dillo/2.0] +Parent=Dillo +Version=2.0 +MajorVer=2 +MinorVer=0 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Emacs/W3 + +[Emacs/W3] +Parent=DefaultProperties +Browser=Emacs/W3 +Frames=true +Tables=true +Cookies=true + +[Emacs/W3/2.* (Unix*] +Parent=Emacs/W3 +Version=2.0 +MajorVer=2 +MinorVer=0 +Platform=Unix + +[Emacs/W3/2.* (X11*] +Parent=Emacs/W3 +Version=2.0 +MajorVer=2 +MinorVer=0 +Platform=Linux + +[Emacs/W3/3.* (Unix*] +Parent=Emacs/W3 +Version=3.0 +MajorVer=3 +MinorVer=0 +Platform=Unix + +[Emacs/W3/3.* (X11*] +Parent=Emacs/W3 +Version=3.0 +MajorVer=3 +MinorVer=0 +Platform=Linux + +[Emacs/W3/4.* (Unix*] +Parent=Emacs/W3 +Version=4.0 +MajorVer=4 +MinorVer=0 +Platform=Unix + +[Emacs/W3/4.* (X11*] +Parent=Emacs/W3 +Version=4.0 +MajorVer=4 +MinorVer=0 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; fantomas + +[fantomas] +Parent=DefaultProperties +Browser=fantomas +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaScript=true + +[Mozilla/4.0 (cloakBrowser)] +Parent=fantomas +Browser=fantomas cloakBrowser + +[Mozilla/4.0 (fantomas shadowMaker Browser)] +Parent=fantomas +Browser=fantomas shadowMaker Browser + +[Mozilla/4.0 (fantomBrowser)] +Parent=fantomas +Browser=fantomas fantomBrowser + +[Mozilla/4.0 (fantomCrew Browser)] +Parent=fantomas +Browser=fantomas fantomCrew Browser + +[Mozilla/4.0 (stealthBrowser)] +Parent=fantomas +Browser=fantomas stealthBrowser + +[multiBlocker browser*] +Parent=fantomas +Browser=fantomas multiBlocker browser + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FrontPage + +[FrontPage] +Parent=DefaultProperties +Browser=FrontPage +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaScript=true + +[Mozilla/?* (compatible; MS FrontPage*)] +Parent=FrontPage + +[MSFrontPage/*] +Parent=FrontPage + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Galeon + +[Galeon] +Parent=DefaultProperties +Browser=Galeon +Platform=Linux +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/1.*] +Parent=Galeon +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/2.*] +Parent=Galeon +Version=2.0 +MajorVer=2 +MinorVer=0 + +[Mozilla/5.0 Galeon/1.* (X11; Linux*)*] +Parent=Galeon +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Mozilla/5.0 Galeon/2.* (X11; Linux*)*] +Parent=Galeon +Version=2.0 +MajorVer=2 +MinorVer=0 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; HP Secure Web Browser + +[HP Secure Web Browser] +Parent=DefaultProperties +Browser=HP Secure Web Browser +Platform=OpenVMS +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.0*) Gecko/*] +Parent=HP Secure Web Browser +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.1*) Gecko/*] +Parent=HP Secure Web Browser +Version=1.1 +MajorVer=1 +MinorVer=1 + +[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.2*) Gecko/*] +Parent=HP Secure Web Browser +Version=1.2 +MajorVer=1 +MinorVer=2 + +[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.3*) Gecko/*] +Parent=HP Secure Web Browser +Version=1.3 +MajorVer=1 +MinorVer=3 + +[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.4*) Gecko/*] +Parent=HP Secure Web Browser +Version=1.4 +MajorVer=1 +MinorVer=4 + +[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.5*) Gecko/*] +Parent=HP Secure Web Browser +Version=1.5 +MajorVer=1 +MinorVer=5 + +[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.6*) Gecko/*] +Parent=HP Secure Web Browser +Version=1.6 +MajorVer=1 +MinorVer=6 + +[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.7*) Gecko/*] +Parent=HP Secure Web Browser +Version=1.7 +MajorVer=1 +MinorVer=7 + +[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.8*) Gecko/*] +Parent=HP Secure Web Browser +Version=1.8 +MajorVer=1 +MinorVer=8 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IBrowse + +[IBrowse] +Parent=DefaultProperties +Browser=IBrowse +Platform=Amiga +Frames=true +Tables=true +Cookies=true +JavaScript=true + +[Arexx (compatible; MSIE 6.0; AmigaOS5.0) IBrowse 4.0] +Parent=IBrowse +Version=4.0 +MajorVer=4 +MinorVer=0 + +[IBrowse/1.22 (AmigaOS *)] +Parent=IBrowse +Version=1.22 +MajorVer=1 +MinorVer=22 + +[IBrowse/2.1 (AmigaOS *)] +Parent=IBrowse +Version=2.1 +MajorVer=2 +MinorVer=1 + +[IBrowse/2.2 (AmigaOS *)] +Parent=IBrowse +Version=2.2 +MajorVer=2 +MinorVer=2 + +[IBrowse/2.3 (AmigaOS *)] +Parent=IBrowse +Version=2.2 +MajorVer=2 +MinorVer=3 + +[Mozilla/* (Win98; I) IBrowse/2.1 (AmigaOS 3.1)] +Parent=IBrowse +Version=2.1 +MajorVer=2 +MinorVer=1 + +[Mozilla/* (Win98; I) IBrowse/2.2 (AmigaOS 3.1)] +Parent=IBrowse +Version=2.2 +MajorVer=2 +MinorVer=2 + +[Mozilla/* (Win98; I) IBrowse/2.3 (AmigaOS 3.1)] +Parent=IBrowse +Version=2.3 +MajorVer=2 +MinorVer=3 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iCab + +[iCab] +Parent=DefaultProperties +Browser=iCab +Frames=true +Tables=true +Cookies=true +JavaScript=true +CssVersion=1 +supportsCSS=true + +[iCab/2.7* (Macintosh; ?; 68K*)] +Parent=iCab +Version=2.7 +MajorVer=2 +MinorVer=7 +Platform=Mac68K + +[iCab/2.7* (Macintosh; ?; PPC*)] +Parent=iCab +Version=2.7 +MajorVer=2 +MinorVer=7 +Platform=MacPPC + +[iCab/2.8* (Macintosh; ?; *Mac OS X*)] +Parent=iCab +Version=2.8 +MajorVer=2 +MinorVer=8 +Platform=MacOSX + +[iCab/2.8* (Macintosh; ?; 68K*)] +Parent=iCab +Version=2.8 +MajorVer=2 +MinorVer=8 +Platform=Mac68K + +[iCab/2.8* (Macintosh; ?; PPC)] +Parent=iCab +Version=2.8 +MajorVer=2 +MinorVer=8 +Platform=MacPPC + +[iCab/2.9* (Macintosh; ?; *Mac OS X*)] +Parent=iCab +Version=2.9 +MajorVer=2 +MinorVer=9 +Platform=MacOSX + +[iCab/2.9* (Macintosh; ?; 68K*)] +Parent=iCab +Version=2.9 +MajorVer=2 +MinorVer=9 +Platform=Mac68K + +[iCab/2.9* (Macintosh; ?; PPC*)] +Parent=iCab +Version=2.9 +MajorVer=2 +MinorVer=9 +Platform=MacPPC + +[iCab/3.0* (Macintosh; ?; *Mac OS X*)] +Parent=iCab +Version=3.0 +MajorVer=3 +MinorVer=0 +Platform=MacOSX +CssVersion=2 +supportsCSS=true + +[iCab/3.0* (Macintosh; ?; PPC*)] +Parent=iCab +Version=3.0 +MajorVer=3 +MinorVer=0 +Platform=MacPPC +CssVersion=2 +supportsCSS=true + +[iCab/4.0 (Macintosh; U; *Mac OS X)] +Parent=iCab +Version=4.0 +MajorVer=4 +MinorVer=0 +Platform=MacOSX + +[Mozilla/* (compatible; iCab 3.0*; Macintosh; *Mac OS X*)] +Parent=iCab +Version=3.0 +MajorVer=3 +MinorVer=0 +Platform=MacOSX +CssVersion=2 +supportsCSS=true + +[Mozilla/* (compatible; iCab 3.0*; Macintosh; ?; PPC*)] +Parent=iCab +Version=3.0 +MajorVer=3 +MinorVer=0 +Platform=MacPPC +CssVersion=2 +supportsCSS=true + +[Mozilla/4.5 (compatible; iCab 2.7*; Macintosh; ?; 68K*)] +Parent=iCab +Version=2.7 +MajorVer=2 +MinorVer=7 +Platform=Mac68K + +[Mozilla/4.5 (compatible; iCab 2.7*; Macintosh; ?; PPC*)] +Parent=iCab +Version=2.7 +MajorVer=2 +MinorVer=7 +Platform=MacPPC + +[Mozilla/4.5 (compatible; iCab 2.8*; Macintosh; ?; *Mac OS X*)] +Parent=iCab +Version=2.8 +MajorVer=2 +MinorVer=8 +Platform=MacOSX + +[Mozilla/4.5 (compatible; iCab 2.8*; Macintosh; ?; PPC*)] +Parent=iCab +Version=2.8 +MajorVer=2 +MinorVer=8 +Platform=MacPPC + +[Mozilla/4.5 (compatible; iCab 2.9*; Macintosh; *Mac OS X*)] +Parent=iCab +Version=2.9 +MajorVer=2 +MinorVer=9 +Platform=MacOSX + +[Mozilla/4.5 (compatible; iCab 2.9*; Macintosh; ?; PPC*)] +Parent=iCab +Version=2.9 +MajorVer=2 +MinorVer=9 +Platform=MacPPC + +[Mozilla/4.5 (compatible; iCab 4.2*; Macintosh; *Mac OS X*)] +Parent=iCab +Version=4.2 +MajorVer=4 +MinorVer=2 +Platform=MacOSX + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iSiloX + +[iSiloX] +Parent=DefaultProperties +Browser=iSiloX +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaScript=true +Crawler=true +CssVersion=2 +supportsCSS=true + +[iSiloX/4.0* MacOS] +Parent=iSiloX +Version=4.0 +MajorVer=4 +MinorVer=0 +Platform=MacPPC + +[iSiloX/4.0* Windows/32] +Parent=iSiloX +Version=4.0 +MajorVer=4 +MinorVer=0 +Platform=Win32 +Win32=true + +[iSiloX/4.1* MacOS] +Parent=iSiloX +Version=4.1 +MajorVer=4 +MinorVer=1 +Platform=MacPPC + +[iSiloX/4.1* Windows/32] +Parent=iSiloX +Version=4.1 +MajorVer=4 +MinorVer=1 +Platform=Win32 +Win32=true + +[iSiloX/4.2* MacOS] +Parent=iSiloX +Version=4.2 +MajorVer=4 +MinorVer=2 +Platform=MacPPC + +[iSiloX/4.2* Windows/32] +Parent=iSiloX +Version=4.2 +MajorVer=4 +MinorVer=2 +Platform=Win32 +Win32=true + +[iSiloX/4.3* MacOS] +Parent=iSiloX +Version=4.3 +MajorVer=4 +MinorVer=4 +Platform=MacOSX + +[iSiloX/4.3* Windows/32] +Parent=iSiloX +Version=4.3 +MajorVer=4 +MinorVer=3 +Platform=Win32 +Win32=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycoris Desktop/LX + +[Lycoris Desktop/LX] +Parent=DefaultProperties +Browser=Lycoris Desktop/LX +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +Crawler=true + +[Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.*: Desktop/LX Amethyst) Gecko/*] +Parent=Lycoris Desktop/LX +Version=1.1 +MajorVer=1 +MinorVer=1 +Platform=Linux + +[Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.*; Desktop/LX Amethyst) Gecko/*] +Parent=Lycoris Desktop/LX +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mosaic + +[Mosaic] +Parent=DefaultProperties +Browser=Mosaic +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true + +[Mozilla/4.0 (VMS_Mosaic)] +Parent=Mosaic +Platform=OpenVMS + +[VMS_Mosaic/3.7*] +Parent=Mosaic +Version=3.7 +MajorVer=3 +MinorVer=7 +Platform=OpenVMS + +[VMS_Mosaic/3.8*] +Parent=Mosaic +Version=3.8 +MajorVer=3 +MinorVer=8 +Platform=OpenVMS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetPositive + +[NetPositive] +Parent=DefaultProperties +Browser=NetPositive +Platform=BeOS +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true + +[*NetPositive/2.2*] +Parent=NetPositive +Version=2.2 +MajorVer=2 +MinorVer=2 + +[*NetPositive/2.2*BeOS*] +Parent=NetPositive +Version=2.2 +MajorVer=2 +MinorVer=2 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb + +[OmniWeb] +Parent=DefaultProperties +Browser=OmniWeb +Platform=MacOSX +Frames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +isMobileDevice=true +CssVersion=2 +supportsCSS=true + +[Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v4*] +Parent=OmniWeb +Version=4.5 +MajorVer=4 +MinorVer=5 +Platform=MacOSX + +[Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v5*] +Parent=OmniWeb +Version=5. +MajorVer=5 +MinorVer=0 +Platform=MacOSX + +[Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v6*] +Parent=OmniWeb +Version=6.0 +MajorVer=6 +MinorVer=0 +Platform=MacOSX + +[Mozilla/* (Macintosh; ?; PPC) OmniWeb/4*] +Parent=OmniWeb +Version=4.0 +MajorVer=4 +MinorVer=0 +Platform=MacPPC + +[Mozilla/* (Macintosh; ?; PPC) OmniWeb/5*] +Parent=OmniWeb +Version=5.0 +MajorVer=5 +MinorVer=0 +Platform=MacOSX + +[Mozilla/* (Macintosh; ?; PPC) OmniWeb/6*] +Parent=OmniWeb +Version=6.0 +MajorVer=6 +MinorVer=0 +Platform=MacPPC + +[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.34] +Parent=OmniWeb +Version=5.1 +MajorVer=5 +MinorVer=1 + +[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.34] +Parent=OmniWeb +Version=5.1 +MajorVer=5 +MinorVer=1 + +[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/420+ (KHTML, like Gecko, Safari/420) OmniWeb/v607] +Parent=OmniWeb +Version=5.5 +MajorVer=5 +MinorVer=5 + +[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/420+ (KHTML, like Gecko, Safari/420) OmniWeb/v607] +Parent=OmniWeb +Version=5.5 +MajorVer=5 +MinorVer=5 + +[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/522+ (KHTML, like Gecko, Safari/522) OmniWeb/v613] +Parent=OmniWeb +Version=5.6 +MajorVer=5 +MinorVer=6 + +[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/522+ (KHTML, like Gecko, Safari/522) OmniWeb/v613] +Parent=OmniWeb +Version=5.6 +MajorVer=5 +MinorVer=6 + +[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/85 (KHTML, like Gecko) OmniWeb/v496] +Parent=OmniWeb +Version=4.5 +MajorVer=4 +MinorVer=5 + +[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/85 (KHTML, like Gecko) OmniWeb/v558.36 ] +Parent=OmniWeb +Version=5.0 +MajorVer=5 +MinorVer=0 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Shiira + +[Shiira] +Parent=DefaultProperties +Browser=Shiira +Platform=MacOSX +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/0.9*] +Parent=Shiira +Version=0.9 +MajorVer=0 +MinorVer=9 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.0*] +Parent=Shiira +Version=1.0 +MajorVer=1 +MinorVer=0 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.1*] +Parent=Shiira +Version=1.1 +MajorVer=1 +MinorVer=1 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.2*] +Parent=Shiira +Version=1.2 +MajorVer=1 +MinorVer=2 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/2.1*] +Parent=Shiira +Version=2.1 +MajorVer=2 +MinorVer=1 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/2.2*] +Parent=Shiira +Version=2.2 +MajorVer=2 +MinorVer=2 + +[Windows Maker] +Parent=DefaultProperties +Browser=WMaker +Platform=Linux +Frames=true +IFrames=true +Tables=true +Cookies=true +VBScript=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[WMaker*] +Parent=Windows Maker + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.0 + +[K-Meleon 1.0] +Parent=DefaultProperties +Browser=K-Meleon +Version=1.0 +MajorVer=1 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.0*] +Parent=K-Meleon 1.0 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.0*] +Parent=K-Meleon 1.0 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.0*] +Parent=K-Meleon 1.0 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.0*] +Parent=K-Meleon 1.0 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.0*] +Parent=K-Meleon 1.0 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.0*] +Parent=K-Meleon 1.0 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=WinNT +Win32=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.1 + +[K-Meleon 1.1] +Parent=DefaultProperties +Browser=K-Meleon +Version=1.1 +MajorVer=1 +MinorVer=1 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.1*] +Parent=K-Meleon 1.1 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.1*] +Parent=K-Meleon 1.1 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.1*] +Parent=K-Meleon 1.1 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.1*] +Parent=K-Meleon 1.1 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.1*] +Parent=K-Meleon 1.1 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.1*] +Parent=K-Meleon 1.1 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=WinNT +Win32=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.5 + +[K-Meleon 1.5] +Parent=DefaultProperties +Browser=K-Meleon +Version=1.5 +MajorVer=1 +MinorVer=5 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.5*] +Parent=K-Meleon 1.5 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.5*] +Parent=K-Meleon 1.5 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.5*] +Parent=K-Meleon 1.5 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.5*] +Parent=K-Meleon 1.5 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.5*] +Parent=K-Meleon 1.5 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* K-Meleon/1.5*] +Parent=K-Meleon 1.5 +Platform=WinVista + +[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* K-Meleon/1.5*] +Parent=K-Meleon 1.5 +Platform=Win7 + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.5*] +Parent=K-Meleon 1.5 +Version=1.0 +MajorVer=1 +MinorVer=0 +Platform=WinNT +Win32=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 3.0 + +[Konqueror 3.0] +Parent=DefaultProperties +Browser=Konqueror +Platform=Linux +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[*Konqueror/3.0*] +Parent=Konqueror 3.0 +Version=3.0 +MajorVer=3 +MinorVer=0 +IFrames=false + +[*Konqueror/3.0*FreeBSD*] +Parent=Konqueror 3.0 +Version=3.0 +MajorVer=3 +MinorVer=0 +Platform=FreeBSD +IFrames=false + +[*Konqueror/3.0*Linux*] +Parent=Konqueror 3.0 +Version=3.0 +MajorVer=3 +MinorVer=0 +Platform=Linux +IFrames=false + +[*Konqueror/3.1*] +Parent=Konqueror 3.0 +Version=3.1 +MajorVer=3 +MinorVer=1 + +[*Konqueror/3.1*FreeBSD*] +Parent=Konqueror 3.0 +Version=3.1 +MajorVer=3 +MinorVer=1 +Platform=FreeBSD + +[*Konqueror/3.1*Linux*] +Parent=Konqueror 3.0 +Version=3.1 +MajorVer=3 +MinorVer=1 + +[*Konqueror/3.2*] +Parent=Konqueror 3.0 +Version=3.2 +MajorVer=3 +MinorVer=2 + +[*Konqueror/3.2*FreeBSD*] +Parent=Konqueror 3.0 +Version=3.2 +MajorVer=3 +MinorVer=2 +Platform=FreeBSD + +[*Konqueror/3.2*Linux*] +Parent=Konqueror 3.0 +Version=3.2 +MajorVer=3 +MinorVer=2 +Platform=Linux + +[*Konqueror/3.3*] +Parent=Konqueror 3.0 +Version=3.3 +MajorVer=3 +MinorVer=3 + +[*Konqueror/3.3*FreeBSD*] +Parent=Konqueror 3.0 +Version=3.3 +MajorVer=3 +MinorVer=3 +Platform=FreeBSD + +[*Konqueror/3.3*Linux*] +Parent=Konqueror 3.0 +Version=3.3 +MajorVer=3 +MinorVer=3 +Platform=Linux + +[*Konqueror/3.3*OpenBSD*] +Parent=Konqueror 3.0 +Version=3.3 +MajorVer=3 +MinorVer=3 +Platform=OpenBSD + +[*Konqueror/3.4*] +Parent=Konqueror 3.0 +Version=3.4 +MajorVer=3 +MinorVer=4 + +[*Konqueror/3.4*FreeBSD*] +Parent=Konqueror 3.0 +Version=3.4 +MajorVer=3 +MinorVer=4 +Platform=FreeBSD + +[*Konqueror/3.4*Linux*] +Parent=Konqueror 3.0 +Version=3.4 +MajorVer=3 +MinorVer=4 +Platform=Linux + +[*Konqueror/3.4*OpenBSD*] +Parent=Konqueror 3.0 +Version=3.4 +MajorVer=3 +MinorVer=4 +Platform=OpenBSD + +[*Konqueror/3.5*] +Parent=Konqueror 3.0 +Version=3.5 +MajorVer=3 +MinorVer=5 + +[*Konqueror/3.5*FreeBSD*] +Parent=Konqueror 3.0 +Version=3.5 +MajorVer=3 +MinorVer=5 +Platform=FreeBSD + +[*Konqueror/3.5*Linux*] +Parent=Konqueror 3.0 +Version=3.5 +MajorVer=3 +MinorVer=5 +Platform=Linux + +[*Konqueror/3.5*OpenBSD*] +Parent=Konqueror 3.0 +Version=3.5 +MajorVer=3 +MinorVer=5 +Platform=OpenBSD + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.0 + +[Konqueror 4.0] +Parent=DefaultProperties +Browser=Konqueror +Version=4.0 +MajorVer=4 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (compatible; Konqueror/4.0*; Debian) KHTML/4.* (like Gecko)] +Parent=Konqueror 4.0 +Platform=Debian + +[Mozilla/5.0 (compatible; Konqueror/4.0.*; *Linux) KHTML/4.* (like Gecko)] +Parent=Konqueror 4.0 +Platform=Linux + +[Mozilla/5.0 (compatible; Konqueror/4.0.*; FreeBSD) KHTML/4.* (like Gecko)] +Parent=Konqueror 4.0 +Platform=FreeBSD + +[Mozilla/5.0 (compatible; Konqueror/4.0.*; NetBSD) KHTML/4.* (like Gecko)] +Parent=Konqueror 4.0 +Platform=NetBSD + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.1 + +[Konqueror 4.1] +Parent=DefaultProperties +Browser=Konqueror +Version=4.1 +MajorVer=4 +MinorVer=1 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (compatible; Konqueror/4.1*; *Linux*) KHTML/4.* (like Gecko)*] +Parent=Konqueror 4.1 +Platform=Linux + +[Mozilla/5.0 (compatible; Konqueror/4.1*; Debian) KHTML/4.* (like Gecko)*] +Parent=Konqueror 4.1 +Platform=Debian + +[Mozilla/5.0 (compatible; Konqueror/4.1*; FreeBSD) KHTML/4.* (like Gecko)*] +Parent=Konqueror 4.1 +Platform=FreeBSD + +[Mozilla/5.0 (compatible; Konqueror/4.1*; NetBSD) KHTML/4.* (like Gecko)*] +Parent=Konqueror 4.1 +Platform=NetBSD + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.2 + +[Konqueror 4.2] +Parent=DefaultProperties +Browser=Konqueror +Version=4.2 +MajorVer=4 +MinorVer=2 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (compatible; Konqueror/4.2*; *Linux*) KHTML/4.* (like Gecko)*] +Parent=Konqueror 4.2 +Platform=Linux + +[Mozilla/5.0 (compatible; Konqueror/4.2*; Debian) KHTML/4.* (like Gecko)*] +Parent=Konqueror 4.2 +Platform=Debian + +[Mozilla/5.0 (compatible; Konqueror/4.2*; FreeBSD) KHTML/4.* (like Gecko)*] +Parent=Konqueror 4.2 +Platform=FreeBSD + +[Mozilla/5.0 (compatible; Konqueror/4.2*; NetBSD) KHTML/4.* (like Gecko)*] +Parent=Konqueror 4.2 +Platform=NetBSD + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari + +[Safari] +Parent=DefaultProperties +Browser=Safari +Platform=MacOSX +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.3 +w3cdomversion=1.0 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/100*] +Parent=Safari +Version=1.1 +MajorVer=1 +MinorVer=1 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/125*] +Parent=Safari +Version=1.2 +MajorVer=1 +MinorVer=2 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/312*] +Parent=Safari +Version=1.3 +MajorVer=1 +MinorVer=3 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/412*] +Parent=Safari +Version=2.0 +MajorVer=2 +MinorVer=0 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/416*] +Parent=Safari +Version=2.0 +MajorVer=2 +MinorVer=0 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/417*] +Parent=Safari +Version=2.0 +MajorVer=2 +MinorVer=0 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/418*] +Parent=Safari +Version=2.0 +MajorVer=2 +MinorVer=0 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/419*] +Parent=Safari +Version=2.0 +MajorVer=2 +MinorVer=0 + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/52*] +Parent=Safari +Beta=true + +[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/85*] +Parent=Safari +Version=1.0 +MajorVer=1 +MinorVer=0 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.0 + +[Safari 3.0] +Parent=DefaultProperties +Browser=Safari +Version=3.0 +MajorVer=3 +Platform=MacOSX +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.0* Safari/*] +Parent=Safari 3.0 +Platform=MacOSX + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.0* Safari/*] +Parent=Safari 3.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.0* Safari/*] +Parent=Safari 3.0 +Platform=Win2003 + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.0* Safari/*] +Parent=Safari 3.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.0* Safari/*] +Parent=Safari 3.0 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.1 + +[Safari 3.1] +Parent=DefaultProperties +Browser=Safari +Version=3.1 +MajorVer=3 +MinorVer=1 +Platform=MacOSX +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.1* Safari/*] +Parent=Safari 3.1 +Platform=MacOSX + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.1* Safari/*] +Parent=Safari 3.1 +Platform=WinXP + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.1* Safari/*] +Parent=Safari 3.1 +Platform=Win2003 + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.1* Safari/*] +Parent=Safari 3.1 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.1* Safari/*] +Parent=Safari 3.1 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.2 + +[Safari 3.2] +Parent=DefaultProperties +Browser=Safari +Version=3.2 +MajorVer=3 +MinorVer=2 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.2* Safari/*] +Parent=Safari 3.2 +Platform=MacOSX + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.2* Safari/*] +Parent=Safari 3.2 +Platform=WinXP + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.2* Safari/*] +Parent=Safari 3.2 +Platform=Win2003 + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.2* Safari/*] +Parent=Safari 3.2 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.2* Safari/*] +Parent=Safari 3.2 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 4.0 + +[Safari 4.0] +Parent=DefaultProperties +Browser=Safari +Version=4.0 +MajorVer=4 +Beta=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Version/4.0* Safari/*] +Parent=Safari 4.0 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Version/4 Public Beta Safari/*] +Parent=Safari 4.0 + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*] +Parent=Safari 4.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/4.0* Safari/*] +Parent=Safari 4.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*] +Parent=Safari 4.0 +Platform=Win2003 + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/4.0* Safari/*] +Parent=Safari 4.0 +Platform=Win2003 + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*] +Parent=Safari 4.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/4.0* Safari/*] +Parent=Safari 4.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*] +Parent=Safari 4.0 +Platform=Win7 + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/4.0* Safari/*] +Parent=Safari 4.0 +Platform=Win7 + +[Mozilla/5.0 (Windows; ?; Windows NT 7.0; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*] +Parent=Safari 4.0 +Platform=Win7 + +[Mozilla/5.0 (Windows; ?; Windows NT 7.0; *) AppleWebKit/* (*) Version/4.0* Safari/*] +Parent=Safari 4.0 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.0 + +[Opera 10.0] +Parent=DefaultProperties +Browser=Opera +Version=10.0 +MajorVer=10 +Alpha=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/* (compatible; MSIE*; Linux*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 10.0*] +Parent=Opera 10.0 +Platform=MacOSX + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 10.0*] +Parent=Opera 10.0 +Platform=MacPPC + +[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Win95 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Win98 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 10.0*] +Parent=Opera 10.0 +Platform=WinCE +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 10.0*] +Parent=Opera 10.0 +Platform=WinME +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 10.0*] +Parent=Opera 10.0 +Platform=WinNT +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 10.0*] +Parent=Opera 10.0 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Win2003 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 10.0*] +Parent=Opera 10.0 +Platform=WinVista +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Win7 + +[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 10.0*] +Parent=Opera 10.0 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 10.0*] +Parent=Opera 10.0 +Platform=FreeBSD + +[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 10.0*] +Parent=Opera 10.0 +Platform=SunOS + +[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 10.0*] +Parent=Opera 10.0 +Platform=MacOSX + +[Mozilla/* (Windows 2000;*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows 95;*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Win95 +Win32=true + +[Mozilla/* (Windows 98;*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Win98 +Win32=true + +[Mozilla/* (Windows ME;*) Opera 10.0*] +Parent=Opera 10.0 +Platform=WinME +Win32=true + +[Mozilla/* (Windows NT 4.0;*) Opera 10.0*] +Parent=Opera 10.0 +Platform=WinNT +Win32=true + +[Mozilla/* (Windows NT 5.0;*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows NT 5.1;*) Opera 10.0*] +Parent=Opera 10.0 +Platform=WinXP +Win32=true + +[Mozilla/* (Windows NT 5.2;*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Win2003 +Win32=true + +[Mozilla/* (Windows NT 6.0;*) Opera 10.0*] +Parent=Opera 10.0 +Platform=WinVista + +[Mozilla/* (Windows NT 6.1;*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Win7 + +[Mozilla/* (X11; Linux*) Opera 10.0*] +Parent=Opera 10.0 +Platform=Linux + +[Opera/10.0* (Linux*)*] +Parent=Opera 10.0 +Platform=Linux + +[Opera/10.0* (Macintosh; *Mac OS X;*)*] +Parent=Opera 10.0 +Platform=MacOSX + +[Opera/10.0* (Windows 95*)*] +Parent=Opera 10.0 +Platform=Win95 +Win32=true + +[Opera/10.0* (Windows 98*)*] +Parent=Opera 10.0 +Platform=Win98 +Win32=true + +[Opera/10.0* (Windows CE*)*] +Parent=Opera 10.0 +Platform=WinCE +Win32=true + +[Opera/10.0* (Windows ME*)*] +Parent=Opera 10.0 +Platform=WinME +Win32=true + +[Opera/10.0* (Windows NT 4.0*)*] +Parent=Opera 10.0 +Platform=WinNT +Win32=true + +[Opera/10.0* (Windows NT 5.0*)*] +Parent=Opera 10.0 +Platform=Win2000 +Win32=true + +[Opera/10.0* (Windows NT 5.1*)*] +Parent=Opera 10.0 +Platform=WinXP +Win32=true + +[Opera/10.0* (Windows NT 5.2*)*] +Parent=Opera 10.0 +Platform=Win2003 +Win32=true + +[Opera/10.0* (Windows NT 6.0*)*] +Parent=Opera 10.0 +Platform=WinVista +Win32=true + +[Opera/10.0* (Windows NT 6.1*)*] +Parent=Opera 10.0 +Platform=Win7 + +[Opera/10.0* (Windows XP*)*] +Parent=Opera 10.0 +Platform=WinXP +Win32=true + +[Opera/10.0* (X11; FreeBSD*)*] +Parent=Opera 10.0 +Platform=FreeBSD + +[Opera/10.0* (X11; Linux*)*] +Parent=Opera 10.0 +Platform=Linux + +[Opera/10.0* (X11; SunOS*)*] +Parent=Opera 10.0 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.0 + +[Opera 7.0] +Parent=DefaultProperties +Browser=Opera +Version=7.0 +MajorVer=7 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/3.0 (Windows 2000; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win2000 +Win32=true + +[Mozilla/3.0 (Windows 95; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win95 +Win32=true + +[Mozilla/3.0 (Windows 98; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win98 +Win32=true + +[Mozilla/3.0 (Windows ME; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinME +Win32=true + +[Mozilla/3.0 (Windows NT 4.0; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinNT +Win32=true + +[Mozilla/3.0 (Windows XP; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinXP +Win32=true + +[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 2000) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win2000 +Win32=true + +[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 95) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win95 +Win32=true + +[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 98) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win98 +Win32=true + +[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows ME) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinME +Win32=true + +[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 4.0) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinNT +Win32=true + +[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.0) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win2000 +Win32=true + +[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.1) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinXP +Win32=true + +[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows XP) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinXP +Win32=true + +[Mozilla/4.78 (Windows 2000; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win2000 +Win32=true + +[Mozilla/4.78 (Windows 95; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win95 +Win32=true + +[Mozilla/4.78 (Windows 98; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win98 +Win32=true + +[Mozilla/4.78 (Windows ME; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinME +Win32=true + +[Mozilla/4.78 (Windows NT 4.0; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinNT +Win32=true + +[Mozilla/4.78 (Windows NT 5.1; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinXP +Win32=true + +[Mozilla/4.78 (Windows Windows NT 5.0; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win2000 +Win32=true + +[Mozilla/4.78 (Windows XP; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows 2000; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows 95; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows 98; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows ME; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows NT 4.0; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows NT 5.1; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows XP; ?) Opera 7.0*] +Parent=Opera 7.0 +Platform=WinXP +Win32=true + +[Opera/7.0* (Windows 2000; ?)*] +Parent=Opera 7.0 +Platform=Win2000 +Win32=true + +[Opera/7.0* (Windows 95; ?)*] +Parent=Opera 7.0 +Platform=Win95 +Win32=true + +[Opera/7.0* (Windows 98; ?)*] +Parent=Opera 7.0 +Platform=Win98 +Win32=true + +[Opera/7.0* (Windows ME; ?)*] +Parent=Opera 7.0 +Platform=WinME +Win32=true + +[Opera/7.0* (Windows NT 4.0; ?)*] +Parent=Opera 7.0 +Platform=WinNT +Win32=true + +[Opera/7.0* (Windows NT 5.0; ?)*] +Parent=Opera 7.0 +Platform=Win2000 +Win32=true + +[Opera/7.0* (Windows NT 5.1; ?)*] +Parent=Opera 7.0 +Platform=WinXP +Win32=true + +[Opera/7.0* (Windows XP; ?)*] +Parent=Opera 7.0 +Platform=WinXP +Win32=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.1 + +[Opera 7.1] +Parent=DefaultProperties +Browser=Opera +Version=7.1 +MajorVer=7 +MinorVer=1 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.1*] +Parent=Opera 7.1 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.1*] +Parent=Opera 7.1 +Platform=Win95 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.1*] +Parent=Opera 7.1 +Platform=Win98 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.1*] +Parent=Opera 7.1 +Platform=WinME +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.1*] +Parent=Opera 7.1 +Platform=WinNT +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.1*] +Parent=Opera 7.1 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.1*] +Parent=Opera 7.1 +Platform=WinXP +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.1*] +Parent=Opera 7.1 +Platform=WinXP +Win32=true + +[Mozilla/?.* (Windows 2000; ?) Opera 7.1*] +Parent=Opera 7.1 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows 95; ?) Opera 7.1*] +Parent=Opera 7.1 +Platform=Win95 +Win32=true + +[Mozilla/?.* (Windows 98; ?) Opera 7.1*] +Parent=Opera 7.1 +Platform=Win98 +Win32=true + +[Mozilla/?.* (Windows ME; ?) Opera 7.1*] +Parent=Opera 7.1 +Platform=WinME +Win32=true + +[Mozilla/?.* (Windows NT 4.0; U) Opera 7.1*] +Parent=Opera 7.1 +Platform=WinNT +Win32=true + +[Mozilla/?.* (Windows NT 5.0; U) Opera 7.1*] +Parent=Opera 7.1 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows NT 5.1; ?) Opera 7.1*] +Parent=Opera 7.1 +Platform=WinXP +Win32=true + +[Opera/7.1* (Linux*; ?)*] +Parent=Opera 7.1 +Platform=Linux + +[Opera/7.1* (Windows 95; ?)*] +Parent=Opera 7.1 +Platform=Win95 +Win32=true + +[Opera/7.1* (Windows 98; ?)*] +Parent=Opera 7.1 +Platform=Win98 +Win32=true + +[Opera/7.1* (Windows ME; ?)*] +Parent=Opera 7.1 +Platform=WinME +Win32=true + +[Opera/7.1* (Windows NT 4.0; ?)*] +Parent=Opera 7.1 +Platform=WinNT +Win32=true + +[Opera/7.1* (Windows NT 5.0; ?)*] +Parent=Opera 7.1 +Platform=Win2000 +Win32=true + +[Opera/7.1* (Windows NT 5.1; ?)*] +Parent=Opera 7.1 +Platform=WinXP +Win32=true + +[Opera/7.1* (Windows XP; ?)*] +Parent=Opera 7.1 +Platform=WinXP +Win32=true + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.2 + +[Opera 7.2] +Parent=DefaultProperties +Browser=Opera +Version=7.2 +MajorVer=7 +MinorVer=2 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.2*] +Parent=Opera 7.2 +Platform=Linux + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.2*] +Parent=Opera 7.2 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.2*] +Parent=Opera 7.2 +Platform=Win95 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.2*] +Parent=Opera 7.2 +Platform=Win98 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.2*] +Parent=Opera 7.2 +Platform=WinME +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.2*] +Parent=Opera 7.2 +Platform=WinNT +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.2*] +Parent=Opera 7.2 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.2*] +Parent=Opera 7.2 +Platform=WinXP +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.2*] +Parent=Opera 7.2 +Platform=Win2003 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.2*] +Parent=Opera 7.2 +Platform=WinXP +Win32=true + +[Mozilla/?.* (Windows 2000; ?) Opera 7.2*] +Parent=Opera 7.2 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows 95; ?) Opera 7.2*] +Parent=Opera 7.2 +Platform=Win95 +Win32=true + +[Mozilla/?.* (Windows 98; ?) Opera 7.2*] +Parent=Opera 7.2 +Platform=Win98 +Win32=true + +[Mozilla/?.* (Windows ME; ?) Opera 7.2*] +Parent=Opera 7.2 +Platform=WinME +Win32=true + +[Mozilla/?.* (Windows NT 4.0; U) Opera 7.2*] +Parent=Opera 7.2 +Platform=WinNT +Win32=true + +[Mozilla/?.* (Windows NT 5.0; U) Opera 7.2*] +Parent=Opera 7.2 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows NT 5.1; ?) Opera 7.2*] +Parent=Opera 7.2 +Platform=WinXP +Win32=true + +[Mozilla/?.* (Windows NT 5.2; ?) Opera 7.2*] +Parent=Opera 7.2 +Platform=Win2003 +Win32=true + +[Opera/7.2* (Linux*; ?)*] +Parent=Opera 7.2 +Platform=Linux + +[Opera/7.2* (Windows 95; ?)*] +Parent=Opera 7.2 +Platform=Win95 +Win32=true + +[Opera/7.2* (Windows 98; ?)*] +Parent=Opera 7.2 +Platform=Win98 +Win32=true + +[Opera/7.2* (Windows ME; ?)*] +Parent=Opera 7.2 +Platform=WinME +Win32=true + +[Opera/7.2* (Windows NT 4.0; ?)*] +Parent=Opera 7.2 +Platform=WinNT +Win32=true + +[Opera/7.2* (Windows NT 5.0; ?)*] +Parent=Opera 7.2 +Platform=Win2000 +Win32=true + +[Opera/7.2* (Windows NT 5.1; ?)*] +Parent=Opera 7.2 +Platform=WinXP +Win32=true + +[Opera/7.2* (Windows NT 5.2; ?)*] +Parent=Opera 7.2 +Platform=Win2003 +Win32=true + +[Opera/7.2* (Windows XP; ?)*] +Parent=Opera 7.2 +Platform=WinXP +Win32=true + +[Opera/7.2* (X11; FreeBSD*; ?)*] +Parent=Opera 7.2 +Platform=FreeBSD + +[Opera/7.2* (X11; Linux*; ?)*] +Parent=Opera 7.2 +Platform=Linux + +[Opera/7.2* (X11; SunOS*)*] +Parent=Opera 7.2 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.5 + +[Opera 7.5] +Parent=DefaultProperties +Browser=Opera +Version=7.5 +MajorVer=7 +MinorVer=5 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.5*] +Parent=Opera 7.5 +Platform=Linux + +[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 7.5*] +Parent=Opera 7.5 +Platform=MacPPC + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.5*] +Parent=Opera 7.5 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.5*] +Parent=Opera 7.5 +Platform=Win95 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.5*] +Parent=Opera 7.5 +Platform=Win98 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.5*] +Parent=Opera 7.5 +Platform=WinME +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.5*] +Parent=Opera 7.5 +Platform=WinNT +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.5*] +Parent=Opera 7.5 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.5*] +Parent=Opera 7.5 +Platform=WinXP +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.5*] +Parent=Opera 7.5 +Platform=Win2003 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.5*] +Parent=Opera 7.5 +Platform=WinXP +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 7.5*] +Parent=Opera 7.5 +Platform=Linux + +[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 7.5*] +Parent=Opera 7.5 +Platform=MacOSX + +[Mozilla/?.* (Windows 2000; ?) Opera 7.5*] +Parent=Opera 7.5 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows 95; ?) Opera 7.5*] +Parent=Opera 7.5 +Platform=Win95 +Win32=true + +[Mozilla/?.* (Windows 98; ?) Opera 7.5*] +Parent=Opera 7.5 +Platform=Win98 +Win32=true + +[Mozilla/?.* (Windows ME; ?) Opera 7.5*] +Parent=Opera 7.5 +Platform=WinME +Win32=true + +[Mozilla/?.* (Windows NT 4.0; U) Opera 7.5*] +Parent=Opera 7.5 +Platform=WinNT +Win32=true + +[Mozilla/?.* (Windows NT 5.0; U) Opera 7.5*] +Parent=Opera 7.5 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows NT 5.1; ?) Opera 7.5*] +Parent=Opera 7.5 +Platform=WinXP +Win32=true + +[Mozilla/?.* (Windows NT 5.2; ?) Opera 7.5*] +Parent=Opera 7.5 +Platform=Win2003 +Win32=true + +[Mozilla/?.* (X11; Linux*; ?) Opera 7.5*] +Parent=Opera 7.5 +Platform=Linux + +[Opera/7.5* (Linux*; ?)*] +Parent=Opera 7.5 +Platform=Linux + +[Opera/7.5* (Macintosh; *Mac OS X; ?)*] +Parent=Opera 7.5 +Platform=MacOSX + +[Opera/7.5* (Windows 95; ?)*] +Parent=Opera 7.5 +Platform=Win95 +Win32=true + +[Opera/7.5* (Windows 98; ?)*] +Parent=Opera 7.5 +Platform=Win98 +Win32=true + +[Opera/7.5* (Windows ME; ?)*] +Parent=Opera 7.5 +Platform=WinME +Win32=true + +[Opera/7.5* (Windows NT 4.0; ?)*] +Parent=Opera 7.5 +Platform=WinNT +Win32=true + +[Opera/7.5* (Windows NT 5.0; ?)*] +Parent=Opera 7.5 +Platform=Win2000 +Win32=true + +[Opera/7.5* (Windows NT 5.1; ?)*] +Parent=Opera 7.5 +Platform=WinXP +Win32=true + +[Opera/7.5* (Windows NT 5.2; ?)*] +Parent=Opera 7.5 +Platform=Win2003 +Win32=true + +[Opera/7.5* (Windows XP; ?)*] +Parent=Opera 7.5 +Platform=WinXP +Win32=true + +[Opera/7.5* (X11; FreeBSD*; ?)*] +Parent=Opera 7.5 +Platform=FreeBSD + +[Opera/7.5* (X11; Linux*; ?)*] +Parent=Opera 7.5 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.6 + +[Opera 7.6] +Parent=DefaultProperties +Browser=Opera +Version=7.6 +MajorVer=7 +MinorVer=6 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.6*] +Parent=Opera 7.6 +Platform=Linux + +[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 7.6*] +Parent=Opera 7.6 +Platform=MacPPC + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.6*] +Parent=Opera 7.6 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.6*] +Parent=Opera 7.6 +Platform=Win95 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.6*] +Parent=Opera 7.6 +Platform=Win98 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.6*] +Parent=Opera 7.6 +Platform=WinME +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.6*] +Parent=Opera 7.6 +Platform=WinNT +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.6*] +Parent=Opera 7.6 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.6*] +Parent=Opera 7.6 +Platform=WinXP +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.6*] +Parent=Opera 7.6 +Platform=Win2003 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.6*] +Parent=Opera 7.6 +Platform=WinXP +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 7.6*] +Parent=Opera 7.6 +Platform=Linux + +[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 7.6*] +Parent=Opera 7.6 +Platform=MacOSX + +[Mozilla/?.* (Windows 2000; ?) Opera 7.6*] +Parent=Opera 7.6 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows 95; ?) Opera 7.6*] +Parent=Opera 7.6 +Platform=Win95 +Win32=true + +[Mozilla/?.* (Windows 98; ?) Opera 7.6*] +Parent=Opera 7.6 +Platform=Win98 +Win32=true + +[Mozilla/?.* (Windows ME; ?) Opera 7.6*] +Parent=Opera 7.6 +Platform=WinME +Win32=true + +[Mozilla/?.* (Windows NT 4.0; U) Opera 7.6*] +Parent=Opera 7.6 +Platform=WinNT +Win32=true + +[Mozilla/?.* (Windows NT 5.0; U) Opera 7.6*] +Parent=Opera 7.6 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows NT 5.1; ?) Opera 7.6*] +Parent=Opera 7.6 +Platform=WinXP +Win32=true + +[Mozilla/?.* (Windows NT 5.2; ?) Opera 7.6*] +Parent=Opera 7.6 +Platform=Win2003 +Win32=true + +[Mozilla/?.* (X11; Linux*; ?) Opera 7.6*] +Parent=Opera 7.6 +Platform=Linux + +[Opera/7.6* (Linux*)*] +Parent=Opera 7.6 +Platform=Linux + +[Opera/7.6* (Macintosh; *Mac OS X; ?)*] +Parent=Opera 7.6 +Platform=MacOSX + +[Opera/7.6* (Windows 95*)*] +Parent=Opera 7.6 +Platform=Win95 +Win32=true + +[Opera/7.6* (Windows 98*)*] +Parent=Opera 7.6 +Platform=Win98 +Win32=true + +[Opera/7.6* (Windows ME*)*] +Parent=Opera 7.6 +Platform=WinME +Win32=true + +[Opera/7.6* (Windows NT 4.0*)*] +Parent=Opera 7.6 +Platform=WinNT +Win32=true + +[Opera/7.6* (Windows NT 5.0*)*] +Parent=Opera 7.6 +Platform=Win2000 +Win32=true + +[Opera/7.6* (Windows NT 5.1*)*] +Parent=Opera 7.6 +Platform=WinXP +Win32=true + +[Opera/7.6* (Windows NT 5.2*)*] +Parent=Opera 7.6 +Platform=Win2003 +Win32=true + +[Opera/7.6* (Windows XP*)*] +Parent=Opera 7.6 +Platform=WinXP +Win32=true + +[Opera/7.6* (X11; FreeBSD*)*] +Parent=Opera 7.6 +Platform=FreeBSD + +[Opera/7.6* (X11; Linux*)*] +Parent=Opera 7.6 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.0 + +[Opera 8.0] +Parent=DefaultProperties +Browser=Opera +Version=8.0 +MajorVer=8 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.0*] +Parent=Opera 8.0 +Platform=Linux + +[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC Mac OS X; *) Opera 8.0*] +Parent=Opera 8.0 +Platform=MacOSX + +[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.0*] +Parent=Opera 8.0 +Platform=MacPPC + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.0*] +Parent=Opera 8.0 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.0*] +Parent=Opera 8.0 +Platform=Win95 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.0*] +Parent=Opera 8.0 +Platform=Win98 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.0*] +Parent=Opera 8.0 +Platform=WinCE +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.0*] +Parent=Opera 8.0 +Platform=WinME +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.0*] +Parent=Opera 8.0 +Platform=WinNT +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.0*] +Parent=Opera 8.0 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.0*] +Parent=Opera 8.0 +Platform=WinXP +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.0*] +Parent=Opera 8.0 +Platform=Win2003 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.0*] +Parent=Opera 8.0 +Platform=WinXP +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.0*] +Parent=Opera 8.0 +Platform=FreeBSD + +[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.0*] +Parent=Opera 8.0 +Platform=Linux + +[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.0*] +Parent=Opera 8.0 +Platform=MacOSX + +[Mozilla/?.* (Windows 2000; *) Opera 8.0*] +Parent=Opera 8.0 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows 95; *) Opera 8.0*] +Parent=Opera 8.0 +Platform=Win95 +Win32=true + +[Mozilla/?.* (Windows 98; *) Opera 8.0*] +Parent=Opera 8.0 +Platform=Win98 +Win32=true + +[Mozilla/?.* (Windows ME; *) Opera 8.0*] +Parent=Opera 8.0 +Platform=WinME +Win32=true + +[Mozilla/?.* (Windows NT 4.0; *) Opera 8.0*] +Parent=Opera 8.0 +Platform=WinNT +Win32=true + +[Mozilla/?.* (Windows NT 5.0; *) Opera 8.0*] +Parent=Opera 8.0 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows NT 5.1; *) Opera 8.0*] +Parent=Opera 8.0 +Platform=WinXP +Win32=true + +[Mozilla/?.* (Windows NT 5.2; *) Opera 8.0*] +Parent=Opera 8.0 +Platform=Win2003 +Win32=true + +[Mozilla/?.* (X11; Linux*; *) Opera 8.0*] +Parent=Opera 8.0 +Platform=Linux + +[Opera/8.0* (Linux*)*] +Parent=Opera 8.0 +Platform=Linux + +[Opera/8.0* (Macintosh; *Mac OS X; *)*] +Parent=Opera 8.0 +Platform=MacOSX + +[Opera/8.0* (Windows 95*)*] +Parent=Opera 8.0 +Platform=Win95 +Win32=true + +[Opera/8.0* (Windows 98*)*] +Parent=Opera 8.0 +Platform=Win98 +Win32=true + +[Opera/8.0* (Windows CE*)*] +Parent=Opera 8.0 +Platform=WinCE +Win32=true + +[Opera/8.0* (Windows ME*)*] +Parent=Opera 8.0 +Platform=WinME +Win32=true + +[Opera/8.0* (Windows NT 4.0*)*] +Parent=Opera 8.0 +Platform=WinNT +Win32=true + +[Opera/8.0* (Windows NT 5.0*)*] +Parent=Opera 8.0 +Platform=Win2000 +Win32=true + +[Opera/8.0* (Windows NT 5.1*)*] +Parent=Opera 8.0 +Platform=WinXP +Win32=true + +[Opera/8.0* (Windows NT 5.2*)*] +Parent=Opera 8.0 +Platform=Win2003 +Win32=true + +[Opera/8.0* (Windows XP*)*] +Parent=Opera 8.0 +Platform=WinXP +Win32=true + +[Opera/8.0* (X11; FreeBSD*)*] +Parent=Opera 8.0 +Platform=FreeBSD + +[Opera/8.0* (X11; Linux*)*] +Parent=Opera 8.0 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.1 + +[Opera 8.1] +Parent=DefaultProperties +Browser=Opera +Version=8.1 +MajorVer=8 +MinorVer=1 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.1*] +Parent=Opera 8.1 +Platform=Linux + +[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.1*] +Parent=Opera 8.1 +Platform=MacPPC + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.1*] +Parent=Opera 8.1 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.1*] +Parent=Opera 8.1 +Platform=Win95 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.1*] +Parent=Opera 8.1 +Platform=Win98 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.1*] +Parent=Opera 8.1 +Platform=WinCE +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.1*] +Parent=Opera 8.1 +Platform=WinME +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.1*] +Parent=Opera 8.1 +Platform=WinNT +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.1*] +Parent=Opera 8.1 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.1*] +Parent=Opera 8.1 +Platform=WinXP +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.1*] +Parent=Opera 8.1 +Platform=Win2003 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.1*] +Parent=Opera 8.1 +Platform=WinXP +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.1*] +Parent=Opera 8.1 +Platform=FreeBSD + +[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.1*] +Parent=Opera 8.1 +Platform=Linux + +[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.1*] +Parent=Opera 8.1 +Platform=MacOSX + +[Mozilla/?.* (Windows 2000; *) Opera 8.1*] +Parent=Opera 8.1 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows 95; *) Opera 8.1*] +Parent=Opera 8.1 +Platform=Win95 +Win32=true + +[Mozilla/?.* (Windows 98; *) Opera 8.1*] +Parent=Opera 8.1 +Platform=Win98 +Win32=true + +[Mozilla/?.* (Windows ME; *) Opera 8.1*] +Parent=Opera 8.1 +Platform=WinME +Win32=true + +[Mozilla/?.* (Windows NT 4.0; *) Opera 8.1*] +Parent=Opera 8.1 +Platform=WinNT +Win32=true + +[Mozilla/?.* (Windows NT 5.0; *) Opera 8.1*] +Parent=Opera 8.1 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows NT 5.1; *) Opera 8.1*] +Parent=Opera 8.1 +Platform=WinXP +Win32=true + +[Mozilla/?.* (Windows NT 5.2; *) Opera 8.1*] +Parent=Opera 8.1 +Platform=Win2003 +Win32=true + +[Mozilla/?.* (X11; Linux*; *) Opera 8.1*] +Parent=Opera 8.1 +Platform=Linux + +[Opera/8.1* (Linux*)*] +Parent=Opera 8.1 +Platform=Linux + +[Opera/8.1* (Macintosh; *Mac OS X; *)*] +Parent=Opera 8.1 +Platform=MacOSX + +[Opera/8.1* (Windows 95*)*] +Parent=Opera 8.1 +Platform=Win95 +Win32=true + +[Opera/8.1* (Windows 98*)*] +Parent=Opera 8.1 +Platform=Win98 +Win32=true + +[Opera/8.1* (Windows CE*)*] +Parent=Opera 8.1 +Platform=WinCE +Win32=true + +[Opera/8.1* (Windows ME*)*] +Parent=Opera 8.1 +Platform=WinME +Win32=true + +[Opera/8.1* (Windows NT 4.0*)*] +Parent=Opera 8.1 +Platform=WinNT +Win32=true + +[Opera/8.1* (Windows NT 5.0*)*] +Parent=Opera 8.1 +Platform=Win2000 +Win32=true + +[Opera/8.1* (Windows NT 5.1*)*] +Parent=Opera 8.1 +Platform=WinXP +Win32=true + +[Opera/8.1* (Windows NT 5.2*)*] +Parent=Opera 8.1 +Platform=Win2003 +Win32=true + +[Opera/8.1* (Windows XP*)*] +Parent=Opera 8.1 +Platform=WinXP +Win32=true + +[Opera/8.1* (X11; FreeBSD*)*] +Parent=Opera 8.1 +Platform=FreeBSD + +[Opera/8.1* (X11; Linux*)*] +Parent=Opera 8.1 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.5 + +[Opera 8.5] +Parent=DefaultProperties +Browser=Opera +Version=8.5 +MajorVer=8 +MinorVer=5 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.3 +w3cdomversion=1.0 + +[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.5*] +Parent=Opera 8.5 +Platform=Linux + +[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC Mac OS X;*) Opera 8.5*] +Parent=Opera 8.5 +Platform=MacOSX + +[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.5*] +Parent=Opera 8.5 +Platform=MacPPC + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.5*] +Parent=Opera 8.5 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.5*] +Parent=Opera 8.5 +Platform=Win95 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.5*] +Parent=Opera 8.5 +Platform=Win98 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.5*] +Parent=Opera 8.5 +Platform=WinCE +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.5*] +Parent=Opera 8.5 +Platform=WinME +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.5*] +Parent=Opera 8.5 +Platform=WinNT +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.5*] +Parent=Opera 8.5 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.5*] +Parent=Opera 8.5 +Platform=WinXP +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.5*] +Parent=Opera 8.5 +Platform=Win2003 +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.5*] +Parent=Opera 8.5 +Platform=WinXP +Win32=true + +[Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.5*] +Parent=Opera 8.5 +Platform=FreeBSD + +[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.5*] +Parent=Opera 8.5 +Platform=Linux + +[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.5*] +Parent=Opera 8.5 +Platform=MacOSX + +[Mozilla/?.* (Macintosh; PPC Mac OS X;*) Opera 8.5*] +Parent=Opera 8.5 +Platform=MacOSX + +[Mozilla/?.* (Windows 2000; *) Opera 8.5*] +Parent=Opera 8.5 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows 95; *) Opera 8.5*] +Parent=Opera 8.5 +Platform=Win95 +Win32=true + +[Mozilla/?.* (Windows 98; *) Opera 8.5*] +Parent=Opera 8.5 +Platform=Win98 +Win32=true + +[Mozilla/?.* (Windows ME; *) Opera 8.5*] +Parent=Opera 8.5 +Platform=WinME +Win32=true + +[Mozilla/?.* (Windows NT 4.0; *) Opera 8.5*] +Parent=Opera 8.5 +Platform=WinNT +Win32=true + +[Mozilla/?.* (Windows NT 5.0; *) Opera 8.5*] +Parent=Opera 8.5 +Platform=Win2000 +Win32=true + +[Mozilla/?.* (Windows NT 5.1; *) Opera 8.5*] +Parent=Opera 8.5 +Platform=WinXP +Win32=true + +[Mozilla/?.* (Windows NT 5.2; *) Opera 8.5*] +Parent=Opera 8.5 +Platform=Win2003 +Win32=true + +[Mozilla/?.* (X11; Linux*; *) Opera 8.5*] +Parent=Opera 8.5 +Platform=Linux + +[Opera/8.5* (Linux*)*] +Parent=Opera 8.5 +Platform=Linux + +[Opera/8.5* (Macintosh; *Mac OS X; *)*] +Parent=Opera 8.5 +Platform=MacOSX + +[Opera/8.5* (Windows 95*)*] +Parent=Opera 8.5 +Platform=Win95 +Win32=true + +[Opera/8.5* (Windows 98*)*] +Parent=Opera 8.5 +Platform=Win98 +Win32=true + +[Opera/8.5* (Windows CE*)*] +Parent=Opera 8.5 +Platform=WinCE +Win32=true + +[Opera/8.5* (Windows ME*)*] +Parent=Opera 8.5 +Platform=WinME +Win32=true + +[Opera/8.5* (Windows NT 4.0*)*] +Parent=Opera 8.5 +Platform=WinNT +Win32=true + +[Opera/8.5* (Windows NT 5.0*)*] +Parent=Opera 8.5 +Platform=Win2000 +Win32=true + +[Opera/8.5* (Windows NT 5.1*)*] +Parent=Opera 8.5 +Platform=WinXP +Win32=true + +[Opera/8.5* (Windows NT 5.2*)*] +Parent=Opera 8.5 +Platform=Win2003 +Win32=true + +[Opera/8.5* (Windows XP*)*] +Parent=Opera 8.5 +Platform=WinXP +Win32=true + +[Opera/8.5* (X11; FreeBSD*)*] +Parent=Opera 8.5 +Platform=FreeBSD + +[Opera/8.5* (X11; Linux*)*] +Parent=Opera 8.5 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.0 + +[Opera 9.0] +Parent=DefaultProperties +Browser=Opera +Version=9.0 +MajorVer=9 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.5 +w3cdomversion=1.0 + +[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.0*] +Parent=Opera 9.0 +Platform=MacOSX + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.0*] +Parent=Opera 9.0 +Platform=MacPPC + +[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Win95 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Win98 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.0*] +Parent=Opera 9.0 +Platform=WinCE +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.0*] +Parent=Opera 9.0 +Platform=WinME +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.0*] +Parent=Opera 9.0 +Platform=WinNT +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.0*] +Parent=Opera 9.0 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Win2003 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.0*] +Parent=Opera 9.0 +Platform=WinVista +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.0*] +Parent=Opera 9.0 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.0*] +Parent=Opera 9.0 +Platform=FreeBSD + +[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.0*] +Parent=Opera 9.0 +Platform=SunOS + +[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.0*] +Parent=Opera 9.0 +Platform=MacOSX + +[Mozilla/* (Windows 2000;*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows 95;*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Win95 +Win32=true + +[Mozilla/* (Windows 98;*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Win98 +Win32=true + +[Mozilla/* (Windows ME;*) Opera 9.0*] +Parent=Opera 9.0 +Platform=WinME +Win32=true + +[Mozilla/* (Windows NT 4.0;*) Opera 9.0*] +Parent=Opera 9.0 +Platform=WinNT +Win32=true + +[Mozilla/* (Windows NT 5.0;*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows NT 5.1;*) Opera 9.0*] +Parent=Opera 9.0 +Platform=WinXP +Win32=true + +[Mozilla/* (Windows NT 5.2;*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Win2003 +Win32=true + +[Mozilla/* (X11; Linux*) Opera 9.0*] +Parent=Opera 9.0 +Platform=Linux + +[Opera/9.0* (Linux*)*] +Parent=Opera 9.0 +Platform=Linux + +[Opera/9.0* (Macintosh; *Mac OS X;*)*] +Parent=Opera 9.0 +Platform=MacOSX + +[Opera/9.0* (Windows 95*)*] +Parent=Opera 9.0 +Platform=Win95 +Win32=true + +[Opera/9.0* (Windows 98*)*] +Parent=Opera 9.0 +Platform=Win98 +Win32=true + +[Opera/9.0* (Windows CE*)*] +Parent=Opera 9.0 +Platform=WinCE +Win32=true + +[Opera/9.0* (Windows ME*)*] +Parent=Opera 9.0 +Platform=WinME +Win32=true + +[Opera/9.0* (Windows NT 4.0*)*] +Parent=Opera 9.0 +Platform=WinNT +Win32=true + +[Opera/9.0* (Windows NT 5.0*)*] +Parent=Opera 9.0 +Platform=Win2000 +Win32=true + +[Opera/9.0* (Windows NT 5.1*)*] +Parent=Opera 9.0 +Platform=WinXP +Win32=true + +[Opera/9.0* (Windows NT 5.2*)*] +Parent=Opera 9.0 +Platform=Win2003 +Win32=true + +[Opera/9.0* (Windows NT 6.0*)*] +Parent=Opera 9.0 +Platform=WinVista +Win32=true + +[Opera/9.0* (Windows XP*)*] +Parent=Opera 9.0 +Platform=WinXP +Win32=true + +[Opera/9.0* (X11; FreeBSD*)*] +Parent=Opera 9.0 +Platform=FreeBSD + +[Opera/9.0* (X11; Linux*)*] +Parent=Opera 9.0 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.1 + +[Opera 9.1] +Parent=DefaultProperties +Browser=Opera +Version=9.1 +MajorVer=9 +MinorVer=1 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.1*] +Parent=Opera 9.1 +Platform=MacOSX + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC;*) Opera 9.1*] +Parent=Opera 9.1 +Platform=MacPPC + +[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Win95 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Win98 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.1*] +Parent=Opera 9.1 +Platform=WinCE +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.1*] +Parent=Opera 9.1 +Platform=WinME +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.1*] +Parent=Opera 9.1 +Platform=WinNT +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.1*] +Parent=Opera 9.1 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Win2003 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.1*] +Parent=Opera 9.1 +Platform=WinVista +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.1*] +Parent=Opera 9.1 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.1*] +Parent=Opera 9.1 +Platform=FreeBSD + +[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.1*] +Parent=Opera 9.1 +Platform=SunOS + +[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.1*] +Parent=Opera 9.1 +Platform=MacOSX + +[Mozilla/* (Windows 2000;*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows 95;*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Win95 +Win32=true + +[Mozilla/* (Windows 98;*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Win98 +Win32=true + +[Mozilla/* (Windows ME;*) Opera 9.1*] +Parent=Opera 9.1 +Platform=WinME +Win32=true + +[Mozilla/* (Windows NT 4.0;*) Opera 9.1*] +Parent=Opera 9.1 +Platform=WinNT +Win32=true + +[Mozilla/* (Windows NT 5.0;*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows NT 5.1;*) Opera 9.1*] +Parent=Opera 9.1 +Platform=WinXP +Win32=true + +[Mozilla/* (Windows NT 5.2;*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Win2003 +Win32=true + +[Mozilla/* (X11; Linux*) Opera 9.1*] +Parent=Opera 9.1 +Platform=Linux + +[Opera/9.1* (Linux*)*] +Parent=Opera 9.1 +Platform=Linux + +[Opera/9.1* (Macintosh; *Mac OS X;*)*] +Parent=Opera 9.1 +Platform=MacOSX + +[Opera/9.1* (Windows 95*)*] +Parent=Opera 9.1 +Platform=Win95 +Win32=true + +[Opera/9.1* (Windows 98*)*] +Parent=Opera 9.1 +Platform=Win98 +Win32=true + +[Opera/9.1* (Windows CE*)*] +Parent=Opera 9.1 +Platform=WinCE +Win32=true + +[Opera/9.1* (Windows ME*)*] +Parent=Opera 9.1 +Platform=WinME +Win32=true + +[Opera/9.1* (Windows NT 4.0*)*] +Parent=Opera 9.1 +Platform=WinNT +Win32=true + +[Opera/9.1* (Windows NT 5.0*)*] +Parent=Opera 9.1 +Platform=Win2000 +Win32=true + +[Opera/9.1* (Windows NT 5.1*)*] +Parent=Opera 9.1 +Platform=WinXP +Win32=true + +[Opera/9.1* (Windows NT 5.2*)*] +Parent=Opera 9.1 +Platform=Win2003 +Win32=true + +[Opera/9.1* (Windows NT 6.0*)*] +Parent=Opera 9.1 +Platform=WinVista +Win32=true + +[Opera/9.1* (Windows XP*)*] +Parent=Opera 9.1 +Platform=WinXP +Win32=true + +[Opera/9.1* (X11; FreeBSD*)*] +Parent=Opera 9.1 +Platform=FreeBSD + +[Opera/9.1* (X11; Linux*)*] +Parent=Opera 9.1 +Platform=Linux + +[Opera/9.1* (X11; SunOS*)*] +Parent=Opera 9.1 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.2 + +[Opera 9.2] +Parent=DefaultProperties +Browser=Opera +Version=9.2 +MajorVer=9 +MinorVer=2 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.2*] +Parent=Opera 9.2 +Platform=MacOSX + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.2*] +Parent=Opera 9.2 +Platform=MacPPC + +[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Win95 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Win98 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.2*] +Parent=Opera 9.2 +Platform=WinCE +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.2*] +Parent=Opera 9.2 +Platform=WinME +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.2*] +Parent=Opera 9.2 +Platform=WinNT +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.2*] +Parent=Opera 9.2 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Win2003 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.2*] +Parent=Opera 9.2 +Platform=WinVista +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Win7 + +[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.2*] +Parent=Opera 9.2 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.2*] +Parent=Opera 9.2 +Platform=FreeBSD + +[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.2*] +Parent=Opera 9.2 +Platform=SunOS + +[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.2*] +Parent=Opera 9.2 +Platform=MacOSX + +[Mozilla/* (Windows 2000;*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows 95;*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Win95 +Win32=true + +[Mozilla/* (Windows 98;*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Win98 +Win32=true + +[Mozilla/* (Windows ME;*) Opera 9.2*] +Parent=Opera 9.2 +Platform=WinME +Win32=true + +[Mozilla/* (Windows NT 4.0;*) Opera 9.2*] +Parent=Opera 9.2 +Platform=WinNT +Win32=true + +[Mozilla/* (Windows NT 5.0;*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows NT 5.1;*) Opera 9.2*] +Parent=Opera 9.2 +Platform=WinXP +Win32=true + +[Mozilla/* (Windows NT 5.2;*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Win2003 +Win32=true + +[Mozilla/* (Windows NT 6.0;*) Opera 9.2*] +Parent=Opera 9.2 +Platform=WinVista + +[Mozilla/* (Windows NT 6.1;*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Win7 + +[Mozilla/* (X11; Linux*) Opera 9.2*] +Parent=Opera 9.2 +Platform=Linux + +[Opera/9.2* (Linux*)*] +Parent=Opera 9.2 +Platform=Linux + +[Opera/9.2* (Macintosh; *Mac OS X;*)*] +Parent=Opera 9.2 +Platform=MacOSX + +[Opera/9.2* (Windows 95*)*] +Parent=Opera 9.2 +Platform=Win95 +Win32=true + +[Opera/9.2* (Windows 98*)*] +Parent=Opera 9.2 +Platform=Win98 +Win32=true + +[Opera/9.2* (Windows CE*)*] +Parent=Opera 9.2 +Platform=WinCE +Win32=true + +[Opera/9.2* (Windows ME*)*] +Parent=Opera 9.2 +Platform=WinME +Win32=true + +[Opera/9.2* (Windows NT 4.0*)*] +Parent=Opera 9.2 +Platform=WinNT +Win32=true + +[Opera/9.2* (Windows NT 5.0*)*] +Parent=Opera 9.2 +Platform=Win2000 +Win32=true + +[Opera/9.2* (Windows NT 5.1*)*] +Parent=Opera 9.2 +Platform=WinXP +Win32=true + +[Opera/9.2* (Windows NT 5.2*)*] +Parent=Opera 9.2 +Platform=Win2003 +Win32=true + +[Opera/9.2* (Windows NT 6.0*)*] +Parent=Opera 9.2 +Platform=WinVista +Win32=true + +[Opera/9.2* (Windows NT 6.1*)*] +Parent=Opera 9.2 +Platform=Win7 + +[Opera/9.2* (Windows XP*)*] +Parent=Opera 9.2 +Platform=WinXP +Win32=true + +[Opera/9.2* (X11; FreeBSD*)*] +Parent=Opera 9.2 +Platform=FreeBSD + +[Opera/9.2* (X11; Linux*)*] +Parent=Opera 9.2 +Platform=Linux + +[Opera/9.2* (X11; SunOS*)*] +Parent=Opera 9.2 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.3 + +[Opera 9.3] +Parent=DefaultProperties +Browser=Opera +Version=9.3 +MajorVer=9 +MinorVer=3 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.3*] +Parent=Opera 9.3 +Platform=MacOSX + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.3*] +Parent=Opera 9.3 +Platform=MacPPC + +[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Win95 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Win98 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.3*] +Parent=Opera 9.3 +Platform=WinCE +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.3*] +Parent=Opera 9.3 +Platform=WinME +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.3*] +Parent=Opera 9.3 +Platform=WinNT +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.3*] +Parent=Opera 9.3 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Win2003 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.3*] +Parent=Opera 9.3 +Platform=WinVista +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Win7 + +[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.3*] +Parent=Opera 9.3 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.3*] +Parent=Opera 9.3 +Platform=FreeBSD + +[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.3*] +Parent=Opera 9.3 +Platform=SunOS + +[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.3*] +Parent=Opera 9.3 +Platform=MacOSX + +[Mozilla/* (Windows 2000;*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows 95;*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Win95 +Win32=true + +[Mozilla/* (Windows 98;*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Win98 +Win32=true + +[Mozilla/* (Windows ME;*) Opera 9.3*] +Parent=Opera 9.3 +Platform=WinME +Win32=true + +[Mozilla/* (Windows NT 4.0;*) Opera 9.3*] +Parent=Opera 9.3 +Platform=WinNT +Win32=true + +[Mozilla/* (Windows NT 5.0;*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows NT 5.1;*) Opera 9.3*] +Parent=Opera 9.3 +Platform=WinXP +Win32=true + +[Mozilla/* (Windows NT 5.2;*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Win2003 +Win32=true + +[Mozilla/* (Windows NT 6.0;*) Opera 9.3*] +Parent=Opera 9.3 +Platform=WinVista + +[Mozilla/* (Windows NT 6.1;*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Win7 + +[Mozilla/* (X11; Linux*) Opera 9.3*] +Parent=Opera 9.3 +Platform=Linux + +[Opera/9.3* (Linux*)*] +Parent=Opera 9.3 +Platform=Linux + +[Opera/9.3* (Macintosh; *Mac OS X;*)*] +Parent=Opera 9.3 +Platform=MacOSX + +[Opera/9.3* (Windows 95*)*] +Parent=Opera 9.3 +Platform=Win95 +Win32=true + +[Opera/9.3* (Windows 98*)*] +Parent=Opera 9.3 +Platform=Win98 +Win32=true + +[Opera/9.3* (Windows CE*)*] +Parent=Opera 9.3 +Platform=WinCE +Win32=true + +[Opera/9.3* (Windows ME*)*] +Parent=Opera 9.3 +Platform=WinME +Win32=true + +[Opera/9.3* (Windows NT 4.0*)*] +Parent=Opera 9.3 +Platform=WinNT +Win32=true + +[Opera/9.3* (Windows NT 5.0*)*] +Parent=Opera 9.3 +Platform=Win2000 +Win32=true + +[Opera/9.3* (Windows NT 5.1*)*] +Parent=Opera 9.3 +Platform=WinXP +Win32=true + +[Opera/9.3* (Windows NT 5.2*)*] +Parent=Opera 9.3 +Platform=Win2003 +Win32=true + +[Opera/9.3* (Windows NT 6.0*)*] +Parent=Opera 9.3 +Platform=WinVista +Win32=true + +[Opera/9.3* (Windows NT 6.1*)*] +Parent=Opera 9.3 +Platform=Win7 + +[Opera/9.3* (Windows XP*)*] +Parent=Opera 9.3 +Platform=WinXP +Win32=true + +[Opera/9.3* (X11; FreeBSD*)*] +Parent=Opera 9.3 +Platform=FreeBSD + +[Opera/9.3* (X11; Linux*)*] +Parent=Opera 9.3 +Platform=Linux + +[Opera/9.3* (X11; SunOS*)*] +Parent=Opera 9.3 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.4 + +[Opera 9.4] +Parent=DefaultProperties +Browser=Opera +Version=9.4 +MajorVer=9 +MinorVer=4 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.4*] +Parent=Opera 9.4 +Platform=MacOSX + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.4*] +Parent=Opera 9.4 +Platform=MacPPC + +[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Win95 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Win98 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.4*] +Parent=Opera 9.4 +Platform=WinCE +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.4*] +Parent=Opera 9.4 +Platform=WinME +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.4*] +Parent=Opera 9.4 +Platform=WinNT +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.4*] +Parent=Opera 9.4 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Win2003 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.4*] +Parent=Opera 9.4 +Platform=WinVista +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Win7 + +[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.4*] +Parent=Opera 9.4 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.4*] +Parent=Opera 9.4 +Platform=FreeBSD + +[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.4*] +Parent=Opera 9.4 +Platform=SunOS + +[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.4*] +Parent=Opera 9.4 +Platform=MacOSX + +[Mozilla/* (Windows 2000;*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows 95;*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Win95 +Win32=true + +[Mozilla/* (Windows 98;*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Win98 +Win32=true + +[Mozilla/* (Windows ME;*) Opera 9.4*] +Parent=Opera 9.4 +Platform=WinME +Win32=true + +[Mozilla/* (Windows NT 4.0;*) Opera 9.4*] +Parent=Opera 9.4 +Platform=WinNT +Win32=true + +[Mozilla/* (Windows NT 5.0;*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows NT 5.1;*) Opera 9.4*] +Parent=Opera 9.4 +Platform=WinXP +Win32=true + +[Mozilla/* (Windows NT 5.2;*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Win2003 +Win32=true + +[Mozilla/* (Windows NT 6.0;*) Opera 9.4*] +Parent=Opera 9.4 +Platform=WinVista + +[Mozilla/* (Windows NT 6.1;*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Win7 + +[Mozilla/* (X11; Linux*) Opera 9.4*] +Parent=Opera 9.4 +Platform=Linux + +[Opera/9.4* (Linux*)*] +Parent=Opera 9.4 +Platform=Linux + +[Opera/9.4* (Macintosh; *Mac OS X;*)*] +Parent=Opera 9.4 +Platform=MacOSX + +[Opera/9.4* (Windows 95*)*] +Parent=Opera 9.4 +Platform=Win95 +Win32=true + +[Opera/9.4* (Windows 98*)*] +Parent=Opera 9.4 +Platform=Win98 +Win32=true + +[Opera/9.4* (Windows CE*)*] +Parent=Opera 9.4 +Platform=WinCE +Win32=true + +[Opera/9.4* (Windows ME*)*] +Parent=Opera 9.4 +Platform=WinME +Win32=true + +[Opera/9.4* (Windows NT 4.0*)*] +Parent=Opera 9.4 +Platform=WinNT +Win32=true + +[Opera/9.4* (Windows NT 5.0*)*] +Parent=Opera 9.4 +Platform=Win2000 +Win32=true + +[Opera/9.4* (Windows NT 5.1*)*] +Parent=Opera 9.4 +Platform=WinXP +Win32=true + +[Opera/9.4* (Windows NT 5.2*)*] +Parent=Opera 9.4 +Platform=Win2003 +Win32=true + +[Opera/9.4* (Windows NT 6.0*)*] +Parent=Opera 9.4 +Platform=WinVista +Win32=true + +[Opera/9.4* (Windows NT 6.1*)*] +Parent=Opera 9.4 +Platform=Win7 + +[Opera/9.4* (Windows XP*)*] +Parent=Opera 9.4 +Platform=WinXP +Win32=true + +[Opera/9.4* (X11; FreeBSD*)*] +Parent=Opera 9.4 +Platform=FreeBSD + +[Opera/9.4* (X11; Linux*)*] +Parent=Opera 9.4 +Platform=Linux + +[Opera/9.4* (X11; SunOS*)*] +Parent=Opera 9.4 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.5 + +[Opera 9.5] +Parent=DefaultProperties +Browser=Opera +Version=9.5 +MajorVer=9 +MinorVer=5 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.5*] +Parent=Opera 9.5 +Platform=MacOSX + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.5*] +Parent=Opera 9.5 +Platform=MacPPC + +[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Win95 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Win98 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.5*] +Parent=Opera 9.5 +Platform=WinCE +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.5*] +Parent=Opera 9.5 +Platform=WinME +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.5*] +Parent=Opera 9.5 +Platform=WinNT +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.5*] +Parent=Opera 9.5 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Win2003 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.5*] +Parent=Opera 9.5 +Platform=WinVista +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Win7 + +[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.5*] +Parent=Opera 9.5 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.5*] +Parent=Opera 9.5 +Platform=FreeBSD + +[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.5*] +Parent=Opera 9.5 +Platform=SunOS + +[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.5*] +Parent=Opera 9.5 +Platform=MacOSX + +[Mozilla/* (Windows 2000;*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows 95;*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Win95 +Win32=true + +[Mozilla/* (Windows 98;*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Win98 +Win32=true + +[Mozilla/* (Windows ME;*) Opera 9.5*] +Parent=Opera 9.5 +Platform=WinME +Win32=true + +[Mozilla/* (Windows NT 4.0;*) Opera 9.5*] +Parent=Opera 9.5 +Platform=WinNT +Win32=true + +[Mozilla/* (Windows NT 5.0;*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows NT 5.1;*) Opera 9.5*] +Parent=Opera 9.5 +Platform=WinXP +Win32=true + +[Mozilla/* (Windows NT 5.2;*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Win2003 +Win32=true + +[Mozilla/* (Windows NT 6.0;*) Opera 9.5*] +Parent=Opera 9.5 +Platform=WinVista + +[Mozilla/* (Windows NT 6.1;*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Win7 + +[Mozilla/* (X11; Linux*) Opera 9.5*] +Parent=Opera 9.5 +Platform=Linux + +[Opera/9.5* (Linux*)*] +Parent=Opera 9.5 +Platform=Linux + +[Opera/9.5* (Macintosh; *Mac OS X;*)*] +Parent=Opera 9.5 +Platform=MacOSX + +[Opera/9.5* (Windows 95*)*] +Parent=Opera 9.5 +Platform=Win95 +Win32=true + +[Opera/9.5* (Windows 98*)*] +Parent=Opera 9.5 +Platform=Win98 +Win32=true + +[Opera/9.5* (Windows CE*)*] +Parent=Opera 9.5 +Platform=WinCE +Win32=true + +[Opera/9.5* (Windows ME*)*] +Parent=Opera 9.5 +Platform=WinME +Win32=true + +[Opera/9.5* (Windows NT 4.0*)*] +Parent=Opera 9.5 +Platform=WinNT +Win32=true + +[Opera/9.5* (Windows NT 5.0*)*] +Parent=Opera 9.5 +Platform=Win2000 +Win32=true + +[Opera/9.5* (Windows NT 5.1*)*] +Parent=Opera 9.5 +Platform=WinXP +Win32=true + +[Opera/9.5* (Windows NT 5.2*)*] +Parent=Opera 9.5 +Platform=Win2003 +Win32=true + +[Opera/9.5* (Windows NT 6.0*)*] +Parent=Opera 9.5 +Platform=WinVista +Win32=true + +[Opera/9.5* (Windows NT 6.1*)*] +Parent=Opera 9.5 +Platform=Win7 + +[Opera/9.5* (Windows XP*)*] +Parent=Opera 9.5 +Platform=WinXP +Win32=true + +[Opera/9.5* (X11; FreeBSD*)*] +Parent=Opera 9.5 +Platform=FreeBSD + +[Opera/9.5* (X11; Linux*)*] +Parent=Opera 9.5 +Platform=Linux + +[Opera/9.5* (X11; SunOS*)*] +Parent=Opera 9.5 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.6 + +[Opera 9.6] +Parent=DefaultProperties +Browser=Opera +Version=9.6 +MajorVer=9 +MinorVer=6 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.6*] +Parent=Opera 9.6 +Platform=MacOSX + +[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.6*] +Parent=Opera 9.6 +Platform=MacPPC + +[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Win95 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Win98 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.6*] +Parent=Opera 9.6 +Platform=WinCE +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.6*] +Parent=Opera 9.6 +Platform=WinME +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.6*] +Parent=Opera 9.6 +Platform=WinNT +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Win2000 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.6*] +Parent=Opera 9.6 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Win2003 +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.6*] +Parent=Opera 9.6 +Platform=WinVista +Win32=true + +[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Win7 + +[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.6*] +Parent=Opera 9.6 +Platform=WinXP +Win32=true + +[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.6*] +Parent=Opera 9.6 +Platform=FreeBSD + +[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Linux + +[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.6*] +Parent=Opera 9.6 +Platform=SunOS + +[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.6*] +Parent=Opera 9.6 +Platform=MacOSX + +[Mozilla/* (Windows 2000;*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows 95;*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Win95 +Win32=true + +[Mozilla/* (Windows 98;*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Win98 +Win32=true + +[Mozilla/* (Windows ME;*) Opera 9.6*] +Parent=Opera 9.6 +Platform=WinME +Win32=true + +[Mozilla/* (Windows NT 4.0;*) Opera 9.6*] +Parent=Opera 9.6 +Platform=WinNT +Win32=true + +[Mozilla/* (Windows NT 5.0;*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Win2000 +Win32=true + +[Mozilla/* (Windows NT 5.1;*) Opera 9.6*] +Parent=Opera 9.6 +Platform=WinXP +Win32=true + +[Mozilla/* (Windows NT 5.2;*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Win2003 +Win32=true + +[Mozilla/* (Windows NT 6.0;*) Opera 9.6*] +Parent=Opera 9.6 +Platform=WinVista + +[Mozilla/* (Windows NT 6.1;*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Win7 + +[Mozilla/* (X11; Linux*) Opera 9.6*] +Parent=Opera 9.6 +Platform=Linux + +[Opera/9.6* (Linux*)*] +Parent=Opera 9.6 +Platform=Linux + +[Opera/9.6* (Macintosh; *Mac OS X;*)*] +Parent=Opera 9.6 +Platform=MacOSX + +[Opera/9.6* (Windows 95*)*] +Parent=Opera 9.6 +Platform=Win95 +Win32=true + +[Opera/9.6* (Windows 98*)*] +Parent=Opera 9.6 +Platform=Win98 +Win32=true + +[Opera/9.6* (Windows CE*)*] +Parent=Opera 9.6 +Platform=WinCE +Win32=true + +[Opera/9.6* (Windows ME*)*] +Parent=Opera 9.6 +Platform=WinME +Win32=true + +[Opera/9.6* (Windows NT 4.0*)*] +Parent=Opera 9.6 +Platform=WinNT +Win32=true + +[Opera/9.6* (Windows NT 5.0*)*] +Parent=Opera 9.6 +Platform=Win2000 +Win32=true + +[Opera/9.6* (Windows NT 5.1*)*] +Parent=Opera 9.6 +Platform=WinXP +Win32=true + +[Opera/9.6* (Windows NT 5.2*)*] +Parent=Opera 9.6 +Platform=Win2003 +Win32=true + +[Opera/9.6* (Windows NT 6.0*)*] +Parent=Opera 9.6 +Platform=WinVista +Win32=true + +[Opera/9.6* (Windows NT 6.1*)*] +Parent=Opera 9.6 +Platform=Win7 + +[Opera/9.6* (Windows XP*)*] +Parent=Opera 9.6 +Platform=WinXP +Win32=true + +[Opera/9.6* (X11; FreeBSD*)*] +Parent=Opera 9.6 +Platform=FreeBSD + +[Opera/9.6* (X11; Linux*)*] +Parent=Opera 9.6 +Platform=Linux + +[Opera/9.6* (X11; SunOS*)*] +Parent=Opera 9.6 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.0 + +[Netscape 4.0] +Parent=DefaultProperties +Browser=Netscape +Version=4.0 +MajorVer=4 +Frames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=1 +supportsCSS=true + +[Mozilla/4.0*(Macintosh*] +Parent=Netscape 4.0 +Version=4.03 +MinorVer=03 +Platform=MacPPC + +[Mozilla/4.0*(Win95;*] +Parent=Netscape 4.0 +Platform=Win95 + +[Mozilla/4.0*(Win98;*] +Parent=Netscape 4.0 +Version=4.03 +MinorVer=03 +Platform=Win98 + +[Mozilla/4.0*(WinNT*] +Parent=Netscape 4.0 +Version=4.03 +MinorVer=03 +Platform=WinNT + +[Mozilla/4.0*(X11;*)] +Parent=Netscape 4.0 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.5 + +[Netscape 4.5] +Parent=DefaultProperties +Browser=Netscape +Version=4.5 +MajorVer=4 +MinorVer=5 +Frames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=1 +supportsCSS=true + +[Mozilla/4.5*(Macintosh; ?; PPC)] +Parent=Netscape 4.5 +Platform=MacPPC + +[Mozilla/4.5*(Win2000; ?)] +Parent=Netscape 4.5 +Platform=Win2000 + +[Mozilla/4.5*(Win95; ?)] +Parent=Netscape 4.5 +Platform=Win95 + +[Mozilla/4.5*(Win98; ?)] +Parent=Netscape 4.5 +Platform=Win98 + +[Mozilla/4.5*(WinME; ?)] +Parent=Netscape 4.5 +Platform=WinME + +[Mozilla/4.5*(WinNT; ?)] +Parent=Netscape 4.5 +Platform=WinNT + +[Mozilla/4.5*(WinXP; ?)] +Parent=Netscape 4.5 +Platform=WinXP + +[Mozilla/4.5*(X11*)] +Parent=Netscape 4.5 +Platform=Linux + +[Mozilla/4.51*(Macintosh; ?; PPC)] +Parent=Netscape 4.5 +Version=4.51 +MinorVer=51 + +[Mozilla/4.51*(Win2000; ?)] +Parent=Netscape 4.5 +Version=4.51 +MinorVer=51 +Platform=Win2000 + +[Mozilla/4.51*(Win95; ?)] +Parent=Netscape 4.5 +Version=4.51 +MinorVer=51 +Platform=Win95 + +[Mozilla/4.51*(Win98; ?)] +Parent=Netscape 4.5 +Version=4.51 +MinorVer=51 +Platform=Win98 + +[Mozilla/4.51*(WinME; ?)] +Parent=Netscape 4.5 +Version=4.51 +MinorVer=51 +Platform=WinME + +[Mozilla/4.51*(WinNT; ?)] +Parent=Netscape 4.5 +Version=4.51 +MinorVer=51 +Platform=WinNT + +[Mozilla/4.51*(WinXP; ?)] +Parent=Netscape 4.5 +Version=4.51 +MinorVer=51 +Platform=WinXP + +[Mozilla/4.51*(X11*)] +Parent=Netscape 4.5 +Version=4.51 +MinorVer=51 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.6 + +[Netscape 4.6] +Parent=DefaultProperties +Browser=Netscape +Version=4.6 +MajorVer=4 +MinorVer=6 +Frames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=1 +supportsCSS=true + +[Mozilla/4.6 * (OS/2; ?)] +Parent=Netscape 4.6 +Platform=OS/2 + +[Mozilla/4.6*(Macintosh; ?; PPC)] +Parent=Netscape 4.6 +Platform=MacPPC + +[Mozilla/4.6*(Win95; ?)] +Parent=Netscape 4.6 +Platform=Win95 + +[Mozilla/4.6*(Win98; ?)] +Parent=Netscape 4.6 +Platform=Win98 + +[Mozilla/4.6*(WinNT; ?)] +Parent=Netscape 4.6 +Platform=WinNT + +[Mozilla/4.61*(Macintosh; ?; PPC)] +Parent=Netscape 4.6 +Version=4.61 +MajorVer=4 +MinorVer=61 +Platform=MacPPC + +[Mozilla/4.61*(OS/2; ?)] +Parent=Netscape 4.6 +Version=4.61 +MajorVer=4 +MinorVer=61 +Platform=OS/2 + +[Mozilla/4.61*(Win95; ?)] +Parent=Netscape 4.6 +Version=4.61 +MajorVer=4 +MinorVer=61 +Platform=Win95 + +[Mozilla/4.61*(Win98; ?)] +Parent=Netscape 4.6 +Version=4.61 +Platform=Win98 + +[Mozilla/4.61*(WinNT; ?)] +Parent=Netscape 4.6 +Version=4.61 +MajorVer=4 +MinorVer=61 +Platform=WinNT + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.7 + +[Netscape 4.7] +Parent=DefaultProperties +Browser=Netscape +Version=4.7 +MajorVer=4 +MinorVer=7 +Frames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=1 +supportsCSS=true + +[Mozilla/4.7 * (Win2000; ?)] +Parent=Netscape 4.7 +Platform=Win2000 + +[Mozilla/4.7*(Macintosh; ?; PPC)*] +Parent=Netscape 4.7 +MinorVer=7 +Platform=MacPPC + +[Mozilla/4.7*(Win95; ?)*] +Parent=Netscape 4.7 +MinorVer=7 +Platform=Win95 + +[Mozilla/4.7*(Win98; ?)*] +Parent=Netscape 4.7 +MinorVer=7 +Platform=Win98 + +[Mozilla/4.7*(Windows NT 4.0; ?)*] +Parent=Netscape 4.7 +MinorVer=7 +Platform=WinNT +Win32=true + +[Mozilla/4.7*(Windows NT 5.0; ?)*] +Parent=Netscape 4.7 +MinorVer=7 +Platform=Win2000 +Win32=true + +[Mozilla/4.7*(Windows NT 5.1; ?)*] +Parent=Netscape 4.7 +MinorVer=7 +Platform=WinXP +Win32=true + +[Mozilla/4.7*(WinNT; ?)*] +Parent=Netscape 4.7 +Platform=WinNT + +[Mozilla/4.7*(X11*)*] +Parent=Netscape 4.7 +Platform=Linux + +[Mozilla/4.7*(X11; ?; SunOS*)*] +Parent=Netscape 4.7 +Platform=SunOS + +[Mozilla/4.71*(Macintosh; ?; PPC)*] +Parent=Netscape 4.7 +Version=4.71 +MinorVer=71 +Platform=MacPPC + +[Mozilla/4.71*(Win95; ?)*] +Parent=Netscape 4.7 +Version=4.71 +MinorVer=71 +Platform=Win95 + +[Mozilla/4.71*(Win98; ?)*] +Parent=Netscape 4.7 +Version=4.71 +MinorVer=71 +Platform=Win98 + +[Mozilla/4.71*(Windows NT 4.0; ?)*] +Parent=Netscape 4.7 +Version=4.71 +MinorVer=71 +Platform=WinNT +Win32=true + +[Mozilla/4.71*(Windows NT 5.0; ?)*] +Parent=Netscape 4.7 +Version=4.71 +MinorVer=71 +Platform=Win2000 +Win32=true + +[Mozilla/4.71*(Windows NT 5.1; ?)*] +Parent=Netscape 4.7 +Version=4.71 +MinorVer=71 +Platform=WinXP +Win32=true + +[Mozilla/4.71*(WinNT; ?)*] +Parent=Netscape 4.7 +Version=4.71 +MinorVer=71 +Platform=WinNT + +[Mozilla/4.71*(X11*)*] +Parent=Netscape 4.7 +Version=4.71 +MinorVer=71 +Platform=Linux + +[Mozilla/4.71*(X11; ?; SunOS*)*] +Parent=Netscape 4.7 +Version=4.71 +MinorVer=71 +Platform=SunOS + +[Mozilla/4.72*(Macintosh; ?; PPC)*] +Parent=Netscape 4.7 +MinorVer=72 +Platform=MacPPC + +[Mozilla/4.72*(Win95; ?)*] +Parent=Netscape 4.7 +MinorVer=72 +Platform=Win95 + +[Mozilla/4.72*(Win98; ?)*] +Parent=Netscape 4.7 +MinorVer=72 +Platform=Win98 + +[Mozilla/4.72*(Windows NT 4.0; ?)*] +Parent=Netscape 4.7 +MinorVer=72 +Platform=WinNT +Win32=true + +[Mozilla/4.72*(Windows NT 5.0; ?)*] +Parent=Netscape 4.7 +MinorVer=72 +Platform=Win2000 +Win32=true + +[Mozilla/4.72*(Windows NT 5.1; ?)*] +Parent=Netscape 4.7 +MinorVer=72 +Platform=WinXP +Win32=true + +[Mozilla/4.72*(WinNT; ?)*] +Parent=Netscape 4.7 +MinorVer=72 +Platform=WinNT + +[Mozilla/4.72*(X11*)*] +Parent=Netscape 4.7 +MinorVer=72 +Platform=Linux + +[Mozilla/4.72*(X11; ?; SunOS*)*] +Parent=Netscape 4.7 +MinorVer=72 +Platform=SunOS + +[Mozilla/4.73*(Macintosh; ?; PPC)*] +Parent=Netscape 4.7 +MinorVer=73 +Platform=MacPPC + +[Mozilla/4.73*(Win95; ?)*] +Parent=Netscape 4.7 +MinorVer=73 +Platform=Win95 + +[Mozilla/4.73*(Win98; ?)*] +Parent=Netscape 4.7 +MinorVer=73 +Platform=Win98 + +[Mozilla/4.73*(Windows NT 4.0; ?)*] +Parent=Netscape 4.7 +MinorVer=73 +Platform=WinNT +Win32=true + +[Mozilla/4.73*(Windows NT 5.0; ?)*] +Parent=Netscape 4.7 +MinorVer=73 +Platform=Win2000 +Win32=true + +[Mozilla/4.73*(Windows NT 5.1; ?)*] +Parent=Netscape 4.7 +MinorVer=73 +Platform=WinXP +Win32=true + +[Mozilla/4.73*(WinNT; ?)*] +Parent=Netscape 4.7 +MinorVer=73 +Platform=WinNT + +[Mozilla/4.73*(X11*)*] +Parent=Netscape 4.7 +MinorVer=73 +Platform=Linux + +[Mozilla/4.73*(X11; ?; SunOS*)*] +Parent=Netscape 4.7 +MinorVer=73 +Platform=SunOS + +[Mozilla/4.74*(Macintosh; ?; PPC)*] +Parent=Netscape 4.7 +MinorVer=74 +Platform=MacPPC + +[Mozilla/4.74*(Win95; ?)*] +Parent=Netscape 4.7 +MinorVer=74 +Platform=Win95 + +[Mozilla/4.74*(Win98; ?)*] +Parent=Netscape 4.7 +MinorVer=74 +Platform=Win98 + +[Mozilla/4.74*(Windows NT 4.0; ?)*] +Parent=Netscape 4.7 +MinorVer=74 +Platform=WinNT +Win32=true + +[Mozilla/4.74*(Windows NT 5.0; ?)*] +Parent=Netscape 4.7 +MinorVer=74 +Platform=Win2000 +Win32=true + +[Mozilla/4.74*(Windows NT 5.1; ?)*] +Parent=Netscape 4.7 +MinorVer=74 +Platform=WinXP +Win32=true + +[Mozilla/4.74*(WinNT; ?)*] +Parent=Netscape 4.7 +MinorVer=74 +Platform=WinNT + +[Mozilla/4.74*(X11*)*] +Parent=Netscape 4.7 +MinorVer=74 +Platform=Linux + +[Mozilla/4.74*(X11; ?; SunOS*)*] +Parent=Netscape 4.7 +MinorVer=74 +Platform=SunOS + +[Mozilla/4.75*(Macintosh; ?; PPC)*] +Parent=Netscape 4.7 +MinorVer=75 +Platform=MacPPC + +[Mozilla/4.75*(Win95; ?)*] +Parent=Netscape 4.7 +MinorVer=75 +Platform=Win95 + +[Mozilla/4.75*(Win98; ?)*] +Parent=Netscape 4.7 +MinorVer=75 +Platform=Win98 + +[Mozilla/4.75*(Windows NT 4.0; ?)*] +Parent=Netscape 4.7 +MinorVer=75 +Platform=WinNT +Win32=true + +[Mozilla/4.75*(Windows NT 5.0; ?)*] +Parent=Netscape 4.7 +MinorVer=75 +Platform=Win2000 +Win32=true + +[Mozilla/4.75*(Windows NT 5.1; ?)*] +Parent=Netscape 4.7 +MinorVer=75 +Platform=WinXP +Win32=true + +[Mozilla/4.75*(WinNT; ?)*] +Parent=Netscape 4.7 +MinorVer=75 +Platform=WinNT + +[Mozilla/4.75*(X11*)*] +Parent=Netscape 4.7 +MinorVer=75 +Platform=Linux + +[Mozilla/4.75*(X11; ?; SunOS*)*] +Parent=Netscape 4.7 +MinorVer=75 +Platform=SunOS + +[Mozilla/4.76*(Macintosh; ?; PPC)*] +Parent=Netscape 4.7 +MinorVer=76 +Platform=MacPPC + +[Mozilla/4.76*(Win95; ?)*] +Parent=Netscape 4.7 +MinorVer=76 +Platform=Win95 + +[Mozilla/4.76*(Win98; ?)*] +Parent=Netscape 4.7 +MinorVer=76 +Platform=Win98 + +[Mozilla/4.76*(Windows NT 4.0; ?)*] +Parent=Netscape 4.7 +MinorVer=76 +Platform=WinNT +Win32=true + +[Mozilla/4.76*(Windows NT 5.0; ?)*] +Parent=Netscape 4.7 +MinorVer=76 +Platform=Win2000 +Win32=true + +[Mozilla/4.76*(Windows NT 5.1; ?)*] +Parent=Netscape 4.7 +MinorVer=76 +Platform=WinXP +Win32=true + +[Mozilla/4.76*(WinNT; ?)*] +Parent=Netscape 4.7 +MinorVer=76 +Platform=WinNT + +[Mozilla/4.76*(X11*)*] +Parent=Netscape 4.7 +MinorVer=76 +Platform=Linux + +[Mozilla/4.76*(X11; ?; SunOS*)*] +Parent=Netscape 4.7 +MinorVer=76 +Platform=SunOS + +[Mozilla/4.77*(Macintosh; ?; PPC)*] +Parent=Netscape 4.7 +MinorVer=77 +Platform=MacPPC + +[Mozilla/4.77*(Win95; ?)*] +Parent=Netscape 4.7 +MinorVer=77 +Platform=Win95 + +[Mozilla/4.77*(Win98; ?)*] +Parent=Netscape 4.7 +MinorVer=77 +Platform=Win98 + +[Mozilla/4.77*(Windows NT 4.0; ?)*] +Parent=Netscape 4.7 +MinorVer=77 +Platform=WinNT +Win32=true + +[Mozilla/4.77*(Windows NT 5.0; ?)*] +Parent=Netscape 4.7 +MinorVer=77 +Platform=Win2000 +Win32=true + +[Mozilla/4.77*(Windows NT 5.1; ?)*] +Parent=Netscape 4.7 +MinorVer=77 +Platform=WinXP +Win32=true + +[Mozilla/4.77*(WinNT; ?)*] +Parent=Netscape 4.7 +MinorVer=77 +Platform=WinNT + +[Mozilla/4.77*(X11*)*] +Parent=Netscape 4.7 +MinorVer=77 +Platform=Linux + +[Mozilla/4.77*(X11; ?; SunOS*)*] +Parent=Netscape 4.7 +MinorVer=77 +Platform=SunOS + +[Mozilla/4.78*(Macintosh; ?; PPC)*] +Parent=Netscape 4.7 +MinorVer=78 +Platform=MacPPC + +[Mozilla/4.78*(Win95; ?)*] +Parent=Netscape 4.7 +MinorVer=78 +Platform=Win95 + +[Mozilla/4.78*(Win98; ?)*] +Parent=Netscape 4.7 +MinorVer=78 +Platform=Win98 + +[Mozilla/4.78*(Windows NT 4.0; ?)*] +Parent=Netscape 4.7 +MinorVer=78 +Platform=WinNT +Win32=true + +[Mozilla/4.78*(Windows NT 5.0; ?)*] +Parent=Netscape 4.7 +MinorVer=78 +Platform=Win2000 +Win32=true + +[Mozilla/4.78*(Windows NT 5.1; ?)*] +Parent=Netscape 4.7 +MinorVer=78 +Platform=WinXP +Win32=true + +[Mozilla/4.78*(WinNT; ?)*] +Parent=Netscape 4.7 +MinorVer=78 +Platform=WinNT + +[Mozilla/4.78*(X11*)*] +Parent=Netscape 4.7 +MinorVer=78 +Platform=Linux + +[Mozilla/4.78*(X11; ?; SunOS*)*] +Parent=Netscape 4.7 +MinorVer=78 +Platform=SunOS + +[Mozilla/4.79*(Macintosh; ?; PPC)*] +Parent=Netscape 4.7 +Version=4.79 +MinorVer=79 +Platform=MacPPC + +[Mozilla/4.79*(Win95; ?)*] +Parent=Netscape 4.7 +Version=4.79 +MinorVer=79 +Platform=Win95 + +[Mozilla/4.79*(Win98; ?)*] +Parent=Netscape 4.7 +Version=4.79 +MinorVer=79 +Platform=Win98 + +[Mozilla/4.79*(Windows NT 4.0; ?)*] +Parent=Netscape 4.7 +Version=4.79 +MinorVer=79 +Platform=WinNT +Win32=true + +[Mozilla/4.79*(Windows NT 5.0; ?)*] +Parent=Netscape 4.7 +Version=4.79 +MinorVer=79 +Platform=Win2000 +Win32=true + +[Mozilla/4.79*(Windows NT 5.1; ?)*] +Parent=Netscape 4.7 +Version=4.79 +MinorVer=79 +Platform=WinXP +Win32=true + +[Mozilla/4.79*(WinNT; ?)*] +Parent=Netscape 4.7 +Version=4.79 +MinorVer=79 +Platform=WinNT + +[Mozilla/4.79*(X11*)*] +Parent=Netscape 4.7 +Version=4.79 +MinorVer=79 +Platform=Linux + +[Mozilla/4.79*(X11; ?; SunOS*)*] +Parent=Netscape 4.7 +Version=4.79 +MinorVer=79 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.8 + +[Netscape 4.8] +Parent=DefaultProperties +Browser=Netscape +Version=4.8 +MajorVer=4 +MinorVer=8 +Frames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=1 +supportsCSS=true + +[Mozilla/4.8*(Macintosh; ?; MacPPC)*] +Parent=Netscape 4.8 +Platform=MacPPC + +[Mozilla/4.8*(Macintosh; ?; PPC Mac OS X*] +Parent=Netscape 4.8 +Platform=MacOSX + +[Mozilla/4.8*(Macintosh; ?; PPC)*] +Parent=Netscape 4.8 +Platform=MacPPC + +[Mozilla/4.8*(Win95; *)*] +Parent=Netscape 4.8 + +[Mozilla/4.8*(Win98; *)*] +Parent=Netscape 4.8 +Platform=Win98 + +[Mozilla/4.8*(Windows NT 4.0; *)*] +Parent=Netscape 4.8 +Platform=WinNT +Win32=true + +[Mozilla/4.8*(Windows NT 5.0; *)*] +Parent=Netscape 4.8 +Platform=Win2000 +Win32=true + +[Mozilla/4.8*(Windows NT 5.1; *)*] +Parent=Netscape 4.8 +Platform=WinXP +Win32=true + +[Mozilla/4.8*(WinNT; *)*] +Parent=Netscape 4.8 +Platform=WinNT + +[Mozilla/4.8*(X11; *)*] +Parent=Netscape 4.8 +Platform=Linux + +[Mozilla/4.8*(X11; *SunOS*)*] +Parent=Netscape 4.8 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.0 + +[Netscape 6.0] +Parent=DefaultProperties +Browser=Netscape +Version=6.0 +MajorVer=6 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=MacPPC + +[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=Win7 + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=Win7 + +[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.0*] +Parent=Netscape 6.0 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.1 + +[Netscape 6.1] +Parent=DefaultProperties +Browser=Netscape +Version=6.1 +MajorVer=6 +MinorVer=1 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=MacPPC + +[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=WinXP + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=Win7 + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=WinXP + +[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=Win7 + +[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.1*] +Parent=Netscape 6.1 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.2 + +[Netscape 6.2] +Parent=DefaultProperties +Browser=Netscape +Version=6.2 +MajorVer=6 +MinorVer=2 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X*) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=MacPPC + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=Win7 + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=Win7 + +[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.2*] +Parent=Netscape 6.2 +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.0 + +[Netscape 7.0] +Parent=DefaultProperties +Browser=Netscape +Version=7.0 +MajorVer=7 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=MacPPC + +[Mozilla/5.0 (Windows; ?; Win*9x 4.90; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=Win7 + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=Win7 + +[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=Linux + +[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.0*] +Parent=Netscape 7.0 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.1 + +[Netscape 7.1] +Parent=DefaultProperties +Browser=Netscape +Version=7.1 +MajorVer=7 +MinorVer=1 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/7.1] +Parent=Netscape 7.1 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=MacPPC + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=Win7 + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=Win7 + +[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=Linux + +[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.1*] +Parent=Netscape 7.1 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.2 + +[Netscape 7.2] +Parent=DefaultProperties +Browser=Netscape +Version=7.2 +MajorVer=7 +MinorVer=2 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=MacPPC + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=Win7 + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=Win7 + +[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=Linux + +[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.2*] +Parent=Netscape 7.2 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 8.0 + +[Netscape 8.0] +Parent=DefaultProperties +Browser=Netscape +Version=8.0 +MajorVer=8 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=MacPPC + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=Win7 + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=Win7 + +[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=Linux + +[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/8.0*] +Parent=Netscape 8.0 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 8.1 + +[Netscape 8.1] +Parent=DefaultProperties +Browser=Netscape +Version=8.1 +MajorVer=8 +MinorVer=1 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=MacPPC + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=WinVista +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=Win7 + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=WinVista +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=Win7 + +[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=Linux + +[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/8.1*] +Parent=Netscape 8.1 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.0 + +[SeaMonkey 1.0] +Parent=DefaultProperties +Browser=SeaMonkey +Version=1.0 +MajorVer=1 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] +Parent=SeaMonkey 1.0 +Platform=MacOSX + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] +Parent=SeaMonkey 1.0 +Platform=WinME + +[Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] +Parent=SeaMonkey 1.0 +Platform=Win98 + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] +Parent=SeaMonkey 1.0 +Platform=Win2000 + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] +Parent=SeaMonkey 1.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] +Parent=SeaMonkey 1.0 +Platform=Win2003 + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] +Parent=SeaMonkey 1.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] +Parent=SeaMonkey 1.0 +Platform=Win7 + +[Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] +Parent=SeaMonkey 1.0 +Platform=FreeBSD + +[Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/20060221 SeaMonkey/1.0*] +Parent=SeaMonkey 1.0 +Platform=Linux + +[Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] +Parent=SeaMonkey 1.0 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.1 + +[SeaMonkey 1.1] +Parent=DefaultProperties +Browser=SeaMonkey +Version=1.1 +MajorVer=1 +MinorVer=1 +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] +Parent=SeaMonkey 1.1 +Platform=MacOSX + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] +Parent=SeaMonkey 1.1 +Platform=WinME + +[Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] +Parent=SeaMonkey 1.1 +Platform=Win98 + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] +Parent=SeaMonkey 1.1 +Platform=Win2000 + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] +Parent=SeaMonkey 1.1 +Platform=WinXP + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] +Parent=SeaMonkey 1.1 +Platform=Win2003 + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] +Parent=SeaMonkey 1.1 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] +Parent=SeaMonkey 1.1 +Platform=Win7 + +[Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] +Parent=SeaMonkey 1.1 +Platform=FreeBSD + +[Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/20060221 SeaMonkey/1.1*] +Parent=SeaMonkey 1.1 +Platform=Linux + +[Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] +Parent=SeaMonkey 1.1 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 2.0 + +[SeaMonkey 2.0] +Parent=DefaultProperties +Browser=SeaMonkey +Version=2.0 +MajorVer=2 +Alpha=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] +Parent=SeaMonkey 2.0 +Platform=MacOSX + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] +Parent=SeaMonkey 2.0 +Platform=WinME + +[Mozilla/5.0 (Windows; ?; Win98; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] +Parent=SeaMonkey 2.0 +Platform=Win98 + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] +Parent=SeaMonkey 2.0 +Platform=Win2000 + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] +Parent=SeaMonkey 2.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] +Parent=SeaMonkey 2.0 +Platform=Win2003 + +[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] +Parent=SeaMonkey 2.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] +Parent=SeaMonkey 2.0 +Platform=Win7 + +[Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] +Parent=SeaMonkey 2.0 +Platform=FreeBSD + +[Mozilla/5.0 (X11; ?; Linux*; *; rv:1.9*) Gecko/20060221 SeaMonkey/2.0*] +Parent=SeaMonkey 2.0 +Platform=Linux + +[Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] +Parent=SeaMonkey 2.0 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 1.0 + +[Flock 1.0] +Parent=DefaultProperties +Browser=Flock +Version=1.0 +MajorVer=1 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] +Parent=Flock 1.0 +Platform=MacOSX + +[Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] +Parent=Flock 1.0 +Platform=WinME + +[Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] +Parent=Flock 1.0 +Platform=Win2000 + +[Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] +Parent=Flock 1.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] +Parent=Flock 1.0 +Platform=Win2003 + +[Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] +Parent=Flock 1.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] +Parent=Flock 1.0 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 2.0 + +[Flock 2.0] +Parent=DefaultProperties +Browser=Flock +Version=2.0 +MajorVer=2 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] +Parent=Flock 2.0 +Platform=MacOSX + +[Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] +Parent=Flock 2.0 +Platform=WinME + +[Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] +Parent=Flock 2.0 +Platform=Win2000 + +[Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] +Parent=Flock 2.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] +Parent=Flock 2.0 +Platform=Win2003 + +[Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] +Parent=Flock 2.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] +Parent=Flock 2.0 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sleipnir 2.0 + +[Sleipnir] +Parent=DefaultProperties +Browser=Sleipnir +Version=2.0 +MajorVer=2 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.0*) Sleipnir/2.*] +Parent=Sleipnir +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.1*) Sleipnir/2.*] +Parent=Sleipnir +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.2*) Sleipnir/2.*] +Parent=Sleipnir +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.0*) Sleipnir/2.*] +Parent=Sleipnir +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.1*) Sleipnir/2.*] +Parent=Sleipnir +Platform=Win7 + +[Sleipnir*] +Parent=Sleipnir + +[Sleipnir/2.*] +Parent=Sleipnir + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 1.0 + +[Fennec 1.0] +Parent=DefaultProperties +Browser=Firefox Mobile +Version=1.0 +MajorVer=1 +Alpha=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9*) Gecko/* Fennec/1.0*] +Parent=Fennec 1.0 +Platform=WinXP + +[Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9*) Gecko/* Fennec/1.0*] +Parent=Fennec 1.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9*) Gecko/* Fennec/1.0*] +Parent=Fennec 1.0 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firebird + +[Firebird] +Parent=DefaultProperties +Browser=Firebird +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Linux; *; rv:1.*) Gecko/* Mozilla Firebird/0.*] +Parent=Firebird + +[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firebird/0.*] +Parent=Firebird + +[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*] +Parent=Firebird + +[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firebird/0.*] +Parent=Firebird + +[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firebird/0.*] +Parent=Firebird +Win32=true + +[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Mozilla Firebird/0.*] +Parent=Firebird +Win32=true + +[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firebird/0.*] +Parent=Firebird +Win32=true + +[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firebird/0.*] +Parent=Firebird +Win32=true + +[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Mozilla Firebird/0.*] +Parent=Firebird +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Firebird Browser/0.*] +Parent=Firebird +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Firebird/0.*] +Parent=Firebird +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Mozilla Firebird/0.*] +Parent=Firebird +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.?; rv:1.*) Gecko/* Firebird/0.*] +Parent=Firebird +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.*; *; rv:1.*) Gecko/* Firebird/0.*] +Parent=Firebird +Win32=true + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firebird/0.*] +Parent=Firebird +Win32=true + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Mozilla Firebird/0.*] +Parent=Firebird +Win32=true + +[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firebird/0.*] +Parent=Firebird + +[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*] +Parent=Firebird + +[Mozilla/5.0 (X11; *; IRIX*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*] +Parent=Firebird + +[Mozilla/5.0 (X11; *; Linux*; *; rv:1.*) Gecko/* Firebird/0.*] +Parent=Firebird + +[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*] +Parent=Firebird + +[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firebird/0.*] +Parent=Firebird + +[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*] +Parent=Firebird + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox + +[Firefox] +Parent=DefaultProperties +Browser=Firefox +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.3 +w3cdomversion=1.0 + +[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Platform=MacOSX + +[Mozilla/5.0 (Macintosh; *; *Mac OS X*; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox + +[Mozilla/5.0 (OS/2; *; Warp*; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox + +[Mozilla/5.0 (Windows NT 5.?; ?; rv:1.*) Gecko/* Firefox] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; *; Win 9x 4.90; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; *; Win95; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; *; Win98; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.*; *; rv:1.*) Gecko/* Deer Park/Alpha*] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Firefox/10.5] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.0; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Platform=WinVista +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.0*; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; *; WinNT4.0; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Win32=true + +[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Platform=FreeBSD + +[Mozilla/5.0 (X11; *; FreeBSD*; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox + +[Mozilla/5.0 (X11; *; HP-UX*; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Platform=HP-UX + +[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Platform=IRIX64 + +[Mozilla/5.0 (X11; *; Linux*; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox + +[Mozilla/5.0 (X11; *; Linux*; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox + +[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Platform=OpenBSD + +[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/0.*] +Parent=Firefox +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.0 + +[Firefox 1.0] +Parent=DefaultProperties +Browser=Firefox +Version=1.0 +MajorVer=1 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.3 +w3cdomversion=1.0 + +[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=MacPPC + +[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=MacOSX + +[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=OS/2 + +[Mozilla/5.0 (Windows; *; Win 9x 4.90*; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=WinVista +Win32=true + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=Linux + +[Mozilla/5.0 (X11; *; *Linux*; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=Linux + +[Mozilla/5.0 (X11; *; DragonFly*; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 + +[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=HP-UX + +[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=IRIX64 + +[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.0*] +Parent=Firefox 1.0 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.4 + +[Firefox 1.4] +Parent=DefaultProperties +Browser=Firefox +Version=1.4 +MajorVer=1 +MinorVer=4 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.3 +w3cdomversion=1.0 + +[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=Linux + +[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=MacOSX + +[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=OS/2 + +[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; *; Win95*; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=WinVista +Win32=true + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=Linux + +[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=HP-UX + +[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=IRIX64 + +[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.4*] +Parent=Firefox 1.4 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.5 + +[Firefox 1.5] +Parent=DefaultProperties +Browser=Firefox +Version=1.5 +MajorVer=1 +MinorVer=5 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.5 +w3cdomversion=1.0 + +[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=Linux + +[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=MacOSX + +[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=OS/2 + +[Mozilla/5.0 (rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 + +[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2 x64; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=WinVista +Win32=true + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=Linux + +[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=HP-UX + +[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=IRIX64 + +[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.5*] +Parent=Firefox 1.5 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.0 + +[Firefox 2.0] +Parent=DefaultProperties +Browser=Firefox +Version=2.0 +MajorVer=2 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.5 +w3cdomversion=1.0 + +[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=Linux + +[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=MacOSX + +[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=OS/2 + +[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; *; Win95; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; *; Win98; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=WinVista +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=Win7 + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=Linux + +[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=HP-UX + +[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=IRIX64 + +[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.8*) Gecko/* Firefox/2.0*] +Parent=Firefox 2.0 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.0 + +[Firefox 3.0] +Parent=DefaultProperties +Browser=Firefox +Version=3.0 +MajorVer=3 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true +ecmascriptversion=1.5 +w3cdomversion=1.0 + +[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=MacOSX + +[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=Win2000 + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=WinVista +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=Win7 + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=WinXP +Win32=false +Win64=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=Win2003 +Win32=false +Win64=true + +[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=WinVista + +[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=Win7 + +[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=Linux + +[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=HP-UX + +[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=IRIX64 + +[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.0*] +Parent=Firefox 3.0 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.1 + +[Firefox 3.1] +Parent=DefaultProperties +Browser=Firefox +Version=3.1 +MajorVer=3 +MinorVer=1 +Beta=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=MacOSX + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=WinVista +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=Win7 + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=WinXP +Win32=false +Win64=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=Win2003 +Win32=false +Win64=true + +[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=WinVista + +[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=Win7 + +[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=Linux + +[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=HP-UX + +[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=IRIX64 + +[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.1*] +Parent=Firefox 3.1 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.5 + +[Firefox 3.5] +Parent=DefaultProperties +Browser=Firefox +Version=3.5 +MajorVer=3 +MinorVer=5 +Beta=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=3 +supportsCSS=true + +[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=MacOSX + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=WinVista +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=Win7 + +[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=WinXP +Win32=false +Win64=true + +[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=Win2003 +Win32=false +Win64=true + +[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=WinVista + +[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=Win7 + +[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=Linux + +[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=HP-UX + +[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=IRIX64 + +[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9.*) Gecko/* Firefox/3.5b*] +Parent=Firefox 3.5 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Phoenix + +[Phoenix] +Parent=DefaultProperties +Browser=Phoenix +Version=0.5 +MinorVer=5 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.4*) Gecko/* Phoenix/0.5*] +Parent=Phoenix +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; *; Win98; *; rv:1.4*) Gecko/* Phoenix/0.5*] +Parent=Phoenix +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.0*; *; rv:1.4*) Gecko/* Phoenix/0.5*] +Parent=Phoenix +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.4*) Gecko/* Phoenix/0.5*] +Parent=Phoenix +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; *; Windows NT 5.2*; *; rv:1.4*) Gecko/* Phoenix/0.5*] +Parent=Phoenix +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (X11; *; Linux*; *; rv:1.4*) Gecko/* Phoenix/0.5*] +Parent=Phoenix +Platform=Linux + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iceweasel + +[Iceweasel] +Parent=DefaultProperties +Browser=Iceweasel +Platform=Linux +Beta=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (X11; U; Linux*; *; rv:1.8*) Gecko/* Iceweasel/2.0* (Debian-*)] +Parent=Iceweasel +Version=2.0 +MajorVer=2 +MinorVer=0 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.0 + +[Mozilla 1.0] +Parent=DefaultProperties +Browser=Mozilla +Version=1.0 +MajorVer=1 +Beta=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (*rv:1.0.*) Gecko/*] +Parent=Mozilla 1.0 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.1 + +[Mozilla 1.1] +Parent=DefaultProperties +Browser=Mozilla +Version=1.1 +MajorVer=1 +MinorVer=1 +Beta=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (*rv:1.1.*) Gecko/*] +Parent=Mozilla 1.1 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.2 + +[Mozilla 1.2] +Parent=DefaultProperties +Browser=Mozilla +Version=1.2 +MajorVer=1 +MinorVer=2 +Beta=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (*rv:1.2.*) Gecko/*] +Parent=Mozilla 1.2 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.3 + +[Mozilla 1.3] +Parent=DefaultProperties +Browser=Mozilla +Version=1.3 +MajorVer=1 +MinorVer=3 +Beta=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (*rv:1.3.*) Gecko/*] +Parent=Mozilla 1.3 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.4 + +[Mozilla 1.4] +Parent=DefaultProperties +Browser=Mozilla +Version=1.4 +MajorVer=1 +MinorVer=4 +Beta=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (*rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=MacOSX + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=Win31 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=Win31 +Win16=true +Win32=true + +[Mozilla/5.0 (Windows; ?; Win95; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *Linux*; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=Linux + +[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *SunOS*; *rv:1.4*) Gecko/*] +Parent=Mozilla 1.4 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.5 + +[Mozilla 1.5] +Parent=DefaultProperties +Browser=Mozilla +Version=1.5 +MajorVer=1 +MinorVer=5 +Beta=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (*rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=MacOSX + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=Win31 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=Win31 +Win16=true +Win32=true + +[Mozilla/5.0 (Windows; ?; Win95; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *Linux*; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=Linux + +[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *SunOS*; *rv:1.5*) Gecko/*] +Parent=Mozilla 1.5 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.6 + +[Mozilla 1.6] +Parent=DefaultProperties +Browser=Mozilla +Version=1.6 +MajorVer=1 +MinorVer=6 +Beta=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (*rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=MacOSX + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=Win31 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=Win31 +Win16=true +Win32=true + +[Mozilla/5.0 (Windows; ?; Win95; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *Linux*; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=Linux + +[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *SunOS*; *rv:1.6*) Gecko/*] +Parent=Mozilla 1.6 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.7 + +[Mozilla 1.7] +Parent=DefaultProperties +Browser=Mozilla +Version=1.7 +MajorVer=1 +MinorVer=7 +Beta=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.5 +w3cdomversion=1.0 + +[Mozilla/5.0 (*rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=MacOSX + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=Win31 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=Win31 +Win16=true +Win32=true + +[Mozilla/5.0 (Windows; ?; Win95; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *Linux*; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=Linux + +[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *SunOS*; *rv:1.7*) Gecko/*] +Parent=Mozilla 1.7 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.8 + +[Mozilla 1.8] +Parent=DefaultProperties +Browser=Mozilla +Version=1.8 +MajorVer=1 +MinorVer=8 +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.5 +w3cdomversion=1.0 + +[Mozilla/5.0 (*rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=MacOSX + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=Win31 +Win16=true +Win32=true + +[Mozilla/5.0 (Windows; ?; Win95; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *Linux*; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=Linux + +[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *SunOS*; *rv:1.8*) Gecko/*] +Parent=Mozilla 1.8 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.9 + +[Mozilla 1.9] +Parent=DefaultProperties +Browser=Mozilla +Version=1.9 +MajorVer=1 +MinorVer=9 +Alpha=true +Frames=true +IFrames=true +Tables=true +Cookies=true +JavaApplets=true +JavaScript=true +CssVersion=2 +supportsCSS=true + +[Mozilla/5.0 (*rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 + +[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=MacOSX + +[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=WinME +Win32=true + +[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=Win31 +Win16=true +Win32=true + +[Mozilla/5.0 (Windows; ?; Win95; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=Win95 +Win32=true + +[Mozilla/5.0 (Windows; ?; Win98; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=Win98 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=Win2000 +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=WinXP +Win32=true + +[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=Win2003 +Win32=true + +[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=WinNT +Win32=true + +[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=FreeBSD + +[Mozilla/5.0 (X11; *Linux*; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=Linux + +[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=OpenBSD + +[Mozilla/5.0 (X11; *SunOS*; *rv:1.9*) Gecko/*] +Parent=Mozilla 1.9 +Platform=SunOS + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE Mac + +[IE Mac] +Parent=DefaultProperties +Browser=IE +Platform=MacPPC +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +JavaApplets=true +JavaScript=true +CssVersion=1 +supportsCSS=true + +[Mozilla/?.? (compatible; MSIE 4.0*; *Mac_PowerPC*] +Parent=IE Mac +Version=4.0 +MajorVer=4 +MinorVer=0 + +[Mozilla/?.? (compatible; MSIE 4.5*; *Mac_PowerPC*] +Parent=IE Mac +Version=4.5 +MajorVer=4 +MinorVer=5 + +[Mozilla/?.? (compatible; MSIE 5.0*; *Mac_PowerPC*] +Parent=IE Mac +Version=5.0 +MajorVer=5 +MinorVer=0 + +[Mozilla/?.? (compatible; MSIE 5.1*; *Mac_PowerPC*] +Parent=IE Mac +Version=5.1 +MajorVer=5 +MinorVer=1 + +[Mozilla/?.? (compatible; MSIE 5.2*; *Mac_PowerPC*] +Parent=IE Mac +Version=5.2 +MajorVer=5 +MinorVer=2 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 5.5 + +[AOL 9.0/IE 5.5] +Parent=DefaultProperties +Browser=AOL +Version=5.5 +MajorVer=5 +MinorVer=5 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +CssVersion=2 +supportsCSS=true +AOL=true +aolVersion=9.0 +ecmascriptversion=1.3 +w3cdomversion=1.0 + +[Mozilla/?.* (?compatible; *MSIE 5.5; *AOL 9.0*)*] +Parent=AOL 9.0/IE 5.5 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Win 9x 4.90*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 95*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win95 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win98 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +CssVersion=2 +supportsCSS=true + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 4.0*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinNT + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 5.5 +Platform=WinVista + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 6.0 + +[AOL 9.0/IE 6.0] +Parent=DefaultProperties +Browser=AOL +Version=6.0 +MajorVer=6 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +CssVersion=2 +supportsCSS=true +AOL=true +aolVersion=9.0 +ecmascriptversion=1.3 +w3cdomversion=1.0 + +[Mozilla/?.* (?compatible; *MSIE 6.0; *AOL 9.0*)*] +Parent=AOL 9.0/IE 6.0 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Win 9x 4.90*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 95*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win95 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win98 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +CssVersion=2 +supportsCSS=true + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 4.0*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinNT + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 6.0 +Platform=WinVista + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 7.0 + +[AOL 9.0/IE 7.0] +Parent=DefaultProperties +Browser=AOL +Version=7.0 +MajorVer=7 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +CssVersion=2 +supportsCSS=true +AOL=true +aolVersion=9.0 + +[Mozilla/?.* (?compatible; *MSIE 7.0; *AOL 9.0*)*] +Parent=AOL 9.0/IE 7.0 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Win 9x 4.90*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 95*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win95 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win98 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +CssVersion=2 +supportsCSS=true + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 4.0*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinNT + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*] +Parent=AOL 9.0/IE 7.0 +Platform=WinVista + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant Browser + +[Avant Browser] +Parent=DefaultProperties +Browser=Avant Browser +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +CssVersion=2 +supportsCSS=true + +[Advanced Browser (http://www.avantbrowser.com)] +Parent=Avant Browser + +[Avant Browser*] +Parent=Avant Browser + +[Avant Browser/*] +Parent=Avant Browser + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 4.01 + +[IE 4.01] +Parent=DefaultProperties +Browser=IE +Version=4.01 +MajorVer=4 +MinorVer=01 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +CssVersion=2 +supportsCSS=true + +[Mozilla/?.* (?compatible; *MSIE 4.01*)*] +Parent=IE 4.01 + +[Mozilla/4.0 (compatible; MSIE 4.01; *Windows 95*)*] +Parent=IE 4.01 +Platform=Win95 + +[Mozilla/4.0 (compatible; MSIE 4.01; *Windows 98*)*] +Parent=IE 4.01 +Platform=Win98 + +[Mozilla/4.0 (compatible; MSIE 4.01; *Windows 98; Win 9x 4.90;*)*] +Parent=IE 4.01 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 4.0*)*] +Parent=IE 4.01 +Platform=WinNT + +[Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 5.0*)*] +Parent=IE 4.01 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 5.01*)*] +Parent=IE 4.01 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 4.01; Windows NT)] +Parent=IE 4.01 +Platform=WinNT + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.0 + +[IE 5.0] +Parent=DefaultProperties +Browser=IE +Version=5.0 +MajorVer=5 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +CssVersion=2 +supportsCSS=true + +[Mozilla/?.* (?compatible; *MSIE 5.0*)*] +Parent=IE 5.0 + +[Mozilla/4.0 (compatible; MSIE 5.0; *Windows 95*)*] +Parent=IE 5.0 +Platform=Win95 + +[Mozilla/4.0 (compatible; MSIE 5.0; *Windows 98*)*] +Parent=IE 5.0 +Platform=Win98 + +[Mozilla/4.0 (compatible; MSIE 5.0; *Windows 98; Win 9x 4.90;*)*] +Parent=IE 5.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 4.0*)*] +Parent=IE 5.0 +Platform=WinNT + +[Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 5.0*)*] +Parent=IE 5.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 5.01*)*] +Parent=IE 5.0 +Platform=Win2000 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.01 + +[IE 5.01] +Parent=DefaultProperties +Browser=IE +Version=5.01 +MajorVer=5 +MinorVer=01 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +CssVersion=2 +supportsCSS=true + +[Mozilla/?.* (?compatible; *MSIE 5.01*)*] +Parent=IE 5.01 + +[Mozilla/4.0 (compatible; MSIE 5.01; *Windows 95*)*] +Parent=IE 5.01 +Platform=Win95 + +[Mozilla/4.0 (compatible; MSIE 5.01; *Windows 98*)*] +Parent=IE 5.01 +Platform=Win98 + +[Mozilla/4.0 (compatible; MSIE 5.01; *Windows 98; Win 9x 4.90;*)*] +Parent=IE 5.01 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 4.0*)*] +Parent=IE 5.01 +Platform=WinNT + +[Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 5.0*)*] +Parent=IE 5.01 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 5.01*)*] +Parent=IE 5.01 +Platform=Win2000 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.5 + +[IE 5.5] +Parent=DefaultProperties +Browser=IE +Version=5.5 +MajorVer=5 +MinorVer=5 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.2 +w3cdomversion=1.0 + +[Mozilla/?.* (?compatible; *MSIE 5.5*)*] +Parent=IE 5.5 + +[Mozilla/4.0 (compatible; MSIE 5.5; *Windows 95*)*] +Parent=IE 5.5 +Platform=Win95 + +[Mozilla/4.0 (compatible; MSIE 5.5; *Windows 98*)*] +Parent=IE 5.5 +Platform=Win98 + +[Mozilla/4.0 (compatible; MSIE 5.5; *Windows 98; Win 9x 4.90*)*] +Parent=IE 5.5 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 4.0*)*] +Parent=IE 5.5 +Platform=WinNT + +[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.0*)*] +Parent=IE 5.5 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.01*)*] +Parent=IE 5.5 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.1*)*] +Parent=IE 5.5 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.2*)*] +Parent=IE 5.5 +Platform=Win2003 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 6.0 + +[IE 6.0] +Parent=DefaultProperties +Browser=IE +Version=6.0 +MajorVer=6 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.2 +w3cdomversion=1.0 +msdomversion=6.0 + +[Mozilla/?.* (?compatible; *MSIE 6.0*)*] +Parent=IE 6.0 + +[Mozilla/4.0 (compatible; MSIE 6.0; *Windows 95*)*] +Parent=IE 6.0 +Platform=Win95 + +[Mozilla/4.0 (compatible; MSIE 6.0; *Windows 98*)*] +Parent=IE 6.0 +Platform=Win98 + +[Mozilla/4.0 (compatible; MSIE 6.0; *Windows 98; Win 9x 4.90*)*] +Parent=IE 6.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 4.0*)*] +Parent=IE 6.0 +Platform=WinNT + +[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.0*)*] +Parent=IE 6.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.01*)*] +Parent=IE 6.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.1*)*] +Parent=IE 6.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2*)*] +Parent=IE 6.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2;*Win64;*)*] +Parent=IE 6.0 +Platform=WinXP +Win32=false +Win64=true + +[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2;*WOW64;*)*] +Parent=IE 6.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.0*)*] +Parent=IE 6.0 +Platform=WinVista + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 7.0 + +[IE 7.0] +Parent=DefaultProperties +Browser=IE +Version=7.0 +MajorVer=7 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +CssVersion=2 +supportsCSS=true +ecmascriptversion=1.2 +msdomversion=7.0 +w3cdomversion=1.0 + +[Mozilla/?.* (?compatible; *MSIE 7.0*)*] +Parent=IE 7.0 + +[Mozilla/4.0 (compatible; MSIE 7.0; *Windows 98*)*] +Parent=IE 7.0 +Platform=Win98 + +[Mozilla/4.0 (compatible; MSIE 7.0; *Windows 98; Win 9x 4.90;*)*] +Parent=IE 7.0 +Platform=WinME + +[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 4.0*)*] +Parent=IE 7.0 +Platform=WinNT + +[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0*)*] +Parent=IE 7.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.01*)*] +Parent=IE 7.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*)*] +Parent=IE 7.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*)*] +Parent=IE 7.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64;*)*] +Parent=IE 7.0 +Platform=WinXP +Win32=false +Win64=true + +[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*WOW64;*)*] +Parent=IE 7.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*)*] +Parent=IE 7.0 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*)*] +Parent=IE 7.0 +Platform=Win7 + +[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; *)*] +Parent=IE 7.0 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 8.0 + +[IE 8.0] +Parent=DefaultProperties +Browser=IE +Version=8.0 +MajorVer=8 +Win32=true +Frames=true +IFrames=true +Tables=true +Cookies=true +BackgroundSounds=true +CDF=true +VBScript=true +JavaApplets=true +JavaScript=true +ActiveXControls=true +CssVersion=3 +supportsCSS=true +ecmascriptversion=1.2 +msdomversion=8.0 +w3cdomversion=1.0 + +[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0*)*] +Parent=IE 8.0 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 8.0; Win32*)*] +Parent=IE 8.0 +Platform=Win32 + +[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.0*)*] +Parent=IE 8.0 +Platform=Win2000 + +[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1*)*] +Parent=IE 8.0 +Platform=WinXP + +[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2*)*] +Parent=IE 8.0 +Platform=Win2003 + +[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0*)*] +Parent=IE 8.0 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0*)*] +Parent=IE 8.0 +Platform=WinVista + +[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0*)*] +Parent=IE 8.0 +Platform=WinVista +Win32=false +Win64=true + +[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0*)*] +Parent=IE 8.0 +Platform=WinVista +Win64=false + +[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1*)*] +Parent=IE 8.0 +Platform=Win7 + +[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0*)*] +Parent=IE 8.0 +Platform=Win7 + +[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0*)*] +Parent=IE 8.0 +Platform=Win7 +Win32=false +Win64=true + +[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0*)*] +Parent=IE 8.0 +Platform=Win7 +Win64=false + +[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 7.0; Trident/4.0*)*] +Parent=IE 8.0 +Platform=Win7 + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Default Browser + +[*] +Browser=Default Browser +Version=0 +MajorVer=0 +MinorVer=0 +Platform=unknown +Alpha=false +Beta=false +Win16=false +Win32=false +Win64=false +Frames=true +IFrames=false +Tables=true +Cookies=false +BackgroundSounds=false +CDF=false +VBScript=false +JavaApplets=false +JavaScript=false +ActiveXControls=false +Stripper=false +isBanned=false +isMobileDevice=false +isSyndicationReader=false +Crawler=false +CssVersion=0 +supportsCSS=false +AOL=false +aolVersion=0 +AuthenticodeUpdate=0 +CSS=0 +WAP=false +netCLR=false +ClrVersion=0 +ECMAScriptVersion=0.0 +W3CDOMVersion=0.0 diff --git a/MonoBleedingEdge/etc/mono/config b/MonoBleedingEdge/etc/mono/config new file mode 100644 index 00000000..240eb73e --- /dev/null +++ b/MonoBleedingEdge/etc/mono/config @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MonoBleedingEdge/etc/mono/mconfig/config.xml b/MonoBleedingEdge/etc/mono/mconfig/config.xml new file mode 100644 index 00000000..a3df3b5e --- /dev/null +++ b/MonoBleedingEdge/etc/mono/mconfig/config.xml @@ -0,0 +1,616 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + + +]]> + + + + + + +
+
+
+ + + + + +
+ +
+
+
+
+ + + +]]> + + + + + +
+
+
+
+
+
+
+ + + + + +]]> + + + + + +
+
+
+
+
+
+
+ + + + + + + + +]]> + + + + + +
+
+
+
+
+ + + + + + + +]]> + + + + + +
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+
+
+ + + + + + + + + + + + +]]> + + + + + +
+
+
+ + + + + + + + + + + + + +]]> + + + + + +
+
+
+ + + + + + + + + + + + + + + + + +]]> + + + + + + + +
+
+
+ + + + + +
+ +
+
+
+ + + + ]]> + + + + + +
+
+
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+
+
+ + + + + + + +]]> + + + + + +
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+ + + + + + + + + + + + + + + +]]> + + + + + +
+
+
+ + + + + + + + + + + + + +]]> + + + + + + +
+
+
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+
+
+
+
+ + + + + + + + + + + +]]> + + + + + +
+
+
+
+
+ + + + +]]> + + + + + + + + ]]> + + + + + + ]]> + + + + + + ]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + +
+
+
+
+
+
+ + diff --git a/Packages/manifest.json b/Packages/manifest.json index bb7a9875..acbd83f6 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -1,17 +1,17 @@ { "dependencies": { "com.unity.2d.sprite": "1.0.0", - "com.unity.collab-proxy": "1.2.16", - "com.unity.ext.nunit": "1.0.0", - "com.unity.ide.rider": "1.1.4", - "com.unity.ide.visualstudio": "1.0.11", - "com.unity.ide.vscode": "1.2.0", - "com.unity.test-framework": "1.1.13", - "com.unity.textmeshpro": "2.0.1", + "com.unity.collab-proxy": "1.3.9", + "com.unity.ext.nunit": "1.0.6", + "com.unity.ide.rider": "2.0.7", + "com.unity.ide.visualstudio": "2.0.5", + "com.unity.ide.vscode": "1.2.3", + "com.unity.test-framework": "1.1.22", + "com.unity.textmeshpro": "3.0.1", "com.unity.timeline": "1.2.6", "com.unity.ugui": "1.0.0", - "com.unity.xr.management": "3.2.9", - "com.unity.xr.oculus": "1.3.3", + "com.unity.xr.management": "3.2.13", + "com.unity.xr.oculus": "1.7.0", "com.unity.modules.ai": "1.0.0", "com.unity.modules.androidjni": "1.0.0", "com.unity.modules.animation": "1.0.0", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json new file mode 100644 index 00000000..4556311a --- /dev/null +++ b/Packages/packages-lock.json @@ -0,0 +1,374 @@ +{ + "dependencies": { + "com.unity.2d.sprite": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.collab-proxy": { + "version": "1.3.9", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ext.nunit": { + "version": "1.0.6", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ide.rider": { + "version": "2.0.7", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.1" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.visualstudio": { + "version": "2.0.5", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ide.vscode": { + "version": "1.2.3", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.subsystemregistration": { + "version": "1.0.6", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.test-framework": { + "version": "1.1.22", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "1.0.6", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.textmeshpro": { + "version": "3.0.1", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.timeline": { + "version": "1.2.6", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ugui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0" + } + }, + "com.unity.xr.legacyinputhelpers": { + "version": "2.1.7", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.modules.vr": "1.0.0", + "com.unity.modules.xr": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.xr.management": { + "version": "3.2.16", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.xr.legacyinputhelpers": "2.1.2", + "com.unity.subsystemregistration": "1.0.6" + }, + "url": "https://packages.unity.com" + }, + "com.unity.xr.oculus": { + "version": "1.7.0", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.xr.management": "3.2.16", + "com.unity.ugui": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.modules.ai": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.androidjni": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.animation": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.assetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.audio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.cloth": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.director": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.animation": "1.0.0" + } + }, + "com.unity.modules.imageconversion": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imgui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.jsonserialize": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.particlesystem": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics2d": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.screencapture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.subsystems": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.terrain": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.terrainphysics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.modules.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics2d": "1.0.0" + } + }, + "com.unity.modules.ui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.uielements": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.uielementsnative": "1.0.0" + } + }, + "com.unity.modules.uielementsnative": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.umbra": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unityanalytics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.unitywebrequest": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unitywebrequestassetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestaudio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.audio": "1.0.0" + } + }, + "com.unity.modules.unitywebrequesttexture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestwww": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.vehicles": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.video": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.vr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } + }, + "com.unity.modules.wind": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.xr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.subsystems": "1.0.0" + } + } + } +} diff --git a/ProjectSettings/PackageManagerSettings.asset b/ProjectSettings/PackageManagerSettings.asset new file mode 100644 index 00000000..be4a7974 --- /dev/null +++ b/ProjectSettings/PackageManagerSettings.asset @@ -0,0 +1,43 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_EnablePreviewPackages: 0 + m_EnablePackageDependencies: 0 + m_AdvancedSettingsExpanded: 1 + m_ScopedRegistriesSettingsExpanded: 1 + oneTimeWarningShown: 0 + m_Registries: + - m_Id: main + m_Name: + m_Url: https://packages.unity.com + m_Scopes: [] + m_IsDefault: 1 + m_Capabilities: 7 + m_UserSelectedRegistryName: + m_UserAddingNewScopedRegistry: 0 + m_RegistryInfoDraft: + m_ErrorMessage: + m_Original: + m_Id: + m_Name: + m_Url: + m_Scopes: [] + m_IsDefault: 0 + m_Capabilities: 0 + m_Modified: 0 + m_Name: + m_Url: + m_Scopes: + - + m_SelectedScopeIndex: 0 diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 0929ec12..0532f31e 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -3,7 +3,7 @@ --- !u!129 &1 PlayerSettings: m_ObjectHideFlags: 0 - serializedVersion: 20 + serializedVersion: 22 productGUID: e3d713ba598c59c439233f4da5f7221d AndroidProfiler: 0 AndroidFilterTouchesWhenObscured: 0 @@ -49,7 +49,9 @@ PlayerSettings: m_StereoRenderingPath: 1 m_ActiveColorSpace: 1 m_MTRendering: 1 - m_StackTraceTypes: 010000000100000001000000010000000100000001000000 + mipStripping: 0 + numberOfMipsStripped: 0 + m_StackTraceTypes: 010000000100000001000000000000000100000001000000 iosShowActivityIndicatorOnLoading: -1 androidShowActivityIndicatorOnLoading: -1 iosUseCustomAppBackgroundBehavior: 0 @@ -111,49 +113,30 @@ PlayerSettings: switchNVNShaderPoolsGranularity: 33554432 switchNVNDefaultPoolsGranularity: 16777216 switchNVNOtherPoolsGranularity: 16777216 + switchNVNMaxPublicTextureIDCount: 0 + switchNVNMaxPublicSamplerIDCount: 0 + stadiaPresentMode: 0 + stadiaTargetFramerate: 0 vulkanNumSwapchainBuffers: 3 vulkanEnableSetSRGBWrite: 0 + vulkanEnablePreTransform: 0 + vulkanEnableLateAcquireNextImage: 0 m_SupportedAspectRatios: 4:3: 1 5:4: 1 16:10: 1 16:9: 1 Others: 1 - bundleVersion: 0.11.1 + bundleVersion: 0.12 preloadedAssets: - - {fileID: -8332471933877474197, guid: 2be630b98a6f0a248ac3849f76251ed9, type: 2} - {fileID: 11400000, guid: 497e8cda6e724d341b6eeb4df763826d, type: 2} + - {fileID: -8332471933877474197, guid: 2be630b98a6f0a248ac3849f76251ed9, type: 2} metroInputSource: 0 wsaTransparentSwapchain: 0 m_HolographicPauseOnTrackingLoss: 1 xboxOneDisableKinectGpuReservation: 1 xboxOneEnable7thCore: 1 vrSettings: - cardboard: - depthFormat: 0 - enableTransitionView: 0 - daydream: - depthFormat: 0 - useSustainedPerformanceMode: 0 - enableVideoLayer: 0 - useProtectedVideoMemory: 0 - minimumSupportedHeadTracking: 0 - maximumSupportedHeadTracking: 1 - hololens: - depthFormat: 1 - depthBufferSharingEnabled: 1 - lumin: - depthFormat: 0 - frameTiming: 2 - enableGLCache: 0 - glCacheMaxBlobSize: 524288 - glCacheMaxFileSize: 8388608 - oculus: - sharedDepthBuffer: 1 - dashSupport: 1 - lowOverheadMode: 0 - protectedContext: 0 - v2Signing: 1 enable360StereoCapture: 0 isWsaHolographicRemotingEnabled: 0 enableFrameTimingStats: 0 @@ -167,7 +150,11 @@ PlayerSettings: applicationIdentifier: Android: aaa.QuestAppLauncher.App Standalone: com.DefaultCompany.QuestAppLauncher - buildNumber: {} + buildNumber: + Standalone: 0 + iPhone: 0 + tvOS: 0 + overrideDefaultApplicationIdentifier: 1 AndroidBundleVersionCode: 1 AndroidMinSdkVersion: 25 AndroidTargetSdkVersion: 0 @@ -184,32 +171,16 @@ PlayerSettings: StripUnusedMeshComponents: 1 VertexChannelCompressionMask: 4054 iPhoneSdkVersion: 988 - iOSTargetOSVersionString: 10.0 + iOSTargetOSVersionString: 11.0 tvOSSdkVersion: 0 tvOSRequireExtendedGameController: 0 - tvOSTargetOSVersionString: 10.0 + tvOSTargetOSVersionString: 11.0 uIPrerenderedIcon: 0 uIRequiresPersistentWiFi: 0 uIRequiresFullScreen: 1 uIStatusBarHidden: 1 uIExitOnSuspend: 0 uIStatusBarStyle: 0 - iPhoneSplashScreen: {fileID: 0} - iPhoneHighResSplashScreen: {fileID: 0} - iPhoneTallHighResSplashScreen: {fileID: 0} - iPhone47inSplashScreen: {fileID: 0} - iPhone55inPortraitSplashScreen: {fileID: 0} - iPhone55inLandscapeSplashScreen: {fileID: 0} - iPhone58inPortraitSplashScreen: {fileID: 0} - iPhone58inLandscapeSplashScreen: {fileID: 0} - iPadPortraitSplashScreen: {fileID: 0} - iPadHighResPortraitSplashScreen: {fileID: 0} - iPadLandscapeSplashScreen: {fileID: 0} - iPadHighResLandscapeSplashScreen: {fileID: 0} - iPhone65inPortraitSplashScreen: {fileID: 0} - iPhone65inLandscapeSplashScreen: {fileID: 0} - iPhone61inPortraitSplashScreen: {fileID: 0} - iPhone61inLandscapeSplashScreen: {fileID: 0} appleTVSplashScreen: {fileID: 0} appleTVSplashScreen2x: {fileID: 0} tvOSSmallIconLayers: [] @@ -237,8 +208,8 @@ PlayerSettings: iOSLaunchScreeniPadFillPct: 100 iOSLaunchScreeniPadSize: 100 iOSLaunchScreeniPadCustomXibPath: - iOSUseLaunchScreenStoryboard: 0 iOSLaunchScreenCustomStoryboardPath: + iOSLaunchScreeniPadCustomStoryboardPath: iOSDeviceRequirements: [] iOSURLSchemes: [] iOSBackgroundModes: 0 @@ -246,6 +217,7 @@ PlayerSettings: metalEditorSupport: 1 metalAPIValidation: 1 iOSRenderExtraFrameOnPause: 0 + iosCopyPluginsCodeInsteadOfSymlink: 0 appleDeveloperTeamID: iOSManualSigningProvisioningProfileID: tvOSManualSigningProvisioningProfileID: @@ -255,9 +227,17 @@ PlayerSettings: iOSRequireARKit: 0 iOSAutomaticallyDetectAndAddCapabilities: 1 appleEnableProMotion: 0 + shaderPrecisionModel: 0 clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea templatePackageId: com.unity.template.3d@3.1.0 templateDefaultScene: Assets/Scenes/SampleScene.unity + useCustomMainManifest: 1 + useCustomLauncherManifest: 0 + useCustomMainGradleTemplate: 0 + useCustomLauncherGradleManifest: 0 + useCustomBaseGradleTemplate: 0 + useCustomGradlePropertiesTemplate: 0 + useCustomProguardFile: 0 AndroidTargetArchitectures: 1 AndroidSplashScreenScale: 0 androidSplashScreen: {fileID: 0} @@ -275,6 +255,9 @@ PlayerSettings: height: 180 banner: {fileID: 0} androidGamepadSupportLevel: 0 + AndroidMinifyWithR8: 0 + AndroidMinifyRelease: 0 + AndroidMinifyDebug: 0 AndroidValidateAppBundleSize: 1 AndroidAppBundleSizeToValidate: 150 m_BuildTargetIcons: [] @@ -442,7 +425,7 @@ PlayerSettings: m_Automatic: 1 - m_BuildTarget: AppleTVSupport m_APIs: 10000000 - m_Automatic: 0 + m_Automatic: 1 - m_BuildTarget: WebGLSupport m_APIs: 0b000000 m_Automatic: 1 @@ -467,6 +450,7 @@ PlayerSettings: - m_BuildTarget: Android m_EncodingQuality: 1 m_BuildTargetGroupLightmapSettings: [] + m_BuildTargetNormalMapEncoding: [] playModeTestRunnerEnabled: 0 runPlayModeTestAsEditModeTest: 0 actionOnDotNetUnhandledException: 1 @@ -476,12 +460,14 @@ PlayerSettings: cameraUsageDescription: locationUsageDescription: microphoneUsageDescription: + switchNMETAOverride: switchNetLibKey: switchSocketMemoryPoolSize: 6144 switchSocketAllocatorPoolSize: 128 switchSocketConcurrencyLimit: 14 switchScreenResolutionBehavior: 2 switchUseCPUProfiler: 0 + switchUseGOLDLinker: 0 switchApplicationID: 0x01004b9000490000 switchNSODependencies: switchTitleNames_0: @@ -606,6 +592,7 @@ PlayerSettings: switchSocketInitializeEnabled: 1 switchNetworkInterfaceManagerInitializeEnabled: 1 switchPlayerConnectionEnabled: 1 + switchUseNewStyleFilepaths: 0 ps4NPAgeRating: 12 ps4NPTitleSecret: ps4NPTrophyPackPath: @@ -632,6 +619,7 @@ PlayerSettings: ps4ShareFilePath: ps4ShareOverlayImagePath: ps4PrivacyGuardImagePath: + ps4ExtraSceSysFile: ps4NPtitleDatPath: ps4RemotePlayKeyAssignment: -1 ps4RemotePlayKeyMappingDir: @@ -674,6 +662,8 @@ PlayerSettings: ps4disableAutoHideSplash: 0 ps4videoRecordingFeaturesUsed: 0 ps4contentSearchFeaturesUsed: 0 + ps4CompatibilityPS5: 0 + ps4GPU800MHz: 1 ps4attribEyeToEyeDistanceSettingVR: 0 ps4IncludedModules: [] ps4attribVROutputEnabled: 0 @@ -693,19 +683,27 @@ PlayerSettings: webGLAnalyzeBuildSize: 0 webGLUseEmbeddedResources: 0 webGLCompressionFormat: 1 + webGLWasmArithmeticExceptions: 0 webGLLinkerTarget: 1 webGLThreadsSupport: 0 - webGLWasmStreaming: 0 + webGLDecompressionFallback: 0 scriptingDefineSymbols: {} + additionalCompilerArguments: {} platformArchitecture: {} - scriptingBackend: {} + scriptingBackend: + Android: 0 il2cppCompilerConfiguration: {} managedStrippingLevel: {} incrementalIl2cppBuild: {} + suppressCommonWarnings: 1 allowUnsafeCode: 0 + useDeterministicCompilation: 1 + useReferenceAssemblies: 1 + enableRoslynAnalyzers: 1 additionalIl2CppArgs: scriptingRuntimeVersion: 1 gcIncremental: 0 + assemblyVersionValidation: 1 gcWBarrierValidation: 0 apiCompatibilityLevelPerPlatform: Android: 3 @@ -756,6 +754,7 @@ PlayerSettings: XboxOneCapability: [] XboxOneGameRating: {} XboxOneIsContentPackage: 0 + XboxOneEnhancedXboxCompatibilityMode: 0 XboxOneEnableGPUVariability: 1 XboxOneSockets: {} XboxOneSplashScreen: {fileID: 0} @@ -764,10 +763,7 @@ PlayerSettings: XboxOneXTitleMemory: 8 XboxOneOverrideIdentityName: XboxOneOverrideIdentityPublisher: - vrEditorSettings: - daydream: - daydreamIconForeground: {fileID: 0} - daydreamIconBackground: {fileID: 0} + vrEditorSettings: {} cloudServicesEnabled: UNet: 1 luminIcon: @@ -782,11 +778,12 @@ PlayerSettings: m_VersionCode: 1 m_VersionName: apiCompatibilityLevel: 6 + activeInputHandler: 0 cloudProjectId: framebufferDepthMemorylessMode: 0 + qualitySettingsNames: [] projectName: organizationId: cloudEnabled: 0 - enableNativePlatformBackendsForNewInputSystem: 0 - disableOldInputManagerSupport: 0 legacyClampBlendShapeWeights: 1 + virtualTexturingSupportEnabled: 0 diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt index 99a0e87f..6943671b 100644 --- a/ProjectSettings/ProjectVersion.txt +++ b/ProjectSettings/ProjectVersion.txt @@ -1,2 +1,2 @@ -m_EditorVersion: 2019.3.12f1 -m_EditorVersionWithRevision: 2019.3.12f1 (84b23722532d) +m_EditorVersion: 2020.2.5f1 +m_EditorVersionWithRevision: 2020.2.5f1 (e2c53f129de5) diff --git a/ProjectSettings/VersionControlSettings.asset b/ProjectSettings/VersionControlSettings.asset new file mode 100644 index 00000000..dca28814 --- /dev/null +++ b/ProjectSettings/VersionControlSettings.asset @@ -0,0 +1,8 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!890905787 &1 +VersionControlSettings: + m_ObjectHideFlags: 0 + m_Mode: Visible Meta Files + m_CollabEditorSettings: + inProgressEnabled: 1 diff --git a/UnityCrashHandler64.exe b/UnityCrashHandler64.exe new file mode 100644 index 00000000..c0ba9af5 Binary files /dev/null and b/UnityCrashHandler64.exe differ diff --git a/UnityPlayer.dll b/UnityPlayer.dll new file mode 100644 index 00000000..86a24323 Binary files /dev/null and b/UnityPlayer.dll differ diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset new file mode 100644 index 00000000..1f606115 --- /dev/null +++ b/UserSettings/EditorUserSettings.asset @@ -0,0 +1,24 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!162 &1 +EditorUserSettings: + m_ObjectHideFlags: 0 + serializedVersion: 4 + m_ConfigSettings: + RecentlyUsedScenePath-0: + value: 22424703114646680e0b0227036c6e0513040c0b3c380a3138271e3be7f27a2decee22f0 + flags: 0 + vcSharedLogLevel: + value: 0d5e400f0650 + flags: 0 + m_VCAutomaticAdd: 1 + m_VCDebugCom: 0 + m_VCDebugCmd: 0 + m_VCDebugOut: 0 + m_SemanticMergeMode: 2 + m_VCShowFailedCheckout: 1 + m_VCOverwriteFailedCheckoutAssets: 1 + m_VCProjectOverlayIcons: 1 + m_VCHierarchyOverlayIcons: 1 + m_VCOtherOverlayIcons: 1 + m_VCAllowAsyncUpdate: 1